aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2007-02-25 17:20:51 +0000
committerEwan Mellor <ewan@xensource.com>2007-02-25 17:20:51 +0000
commit5baa3458c54ea77ce40bf9148b7a99425810d62a (patch)
treef92aa8a71ee63ec37e6b83d803c8e8421a683d82 /tools
parentb0a0faf30a762700fb51d1ac9f7aa28624797151 (diff)
downloadxen-5baa3458c54ea77ce40bf9148b7a99425810d62a.tar.gz
xen-5baa3458c54ea77ce40bf9148b7a99425810d62a.tar.bz2
xen-5baa3458c54ea77ce40bf9148b7a99425810d62a.zip
Added host.API_version_{major,minor,vendor,vendor_implementation} fields.
Fix missing host.other_config from the record returned by Xend. Improve the error diagnosis when we catch TypeError. Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/libxen/include/xen_host.h32
-rw-r--r--tools/libxen/src/xen_host.c80
-rw-r--r--tools/python/xen/xend/XendAPI.py49
-rw-r--r--tools/python/xen/xend/XendAPIVersion.py22
4 files changed, 169 insertions, 14 deletions
diff --git a/tools/libxen/include/xen_host.h b/tools/libxen/include/xen_host.h
index 568973a464..8f84dc37ad 100644
--- a/tools/libxen/include/xen_host.h
+++ b/tools/libxen/include/xen_host.h
@@ -72,6 +72,10 @@ typedef struct xen_host_record
char *uuid;
char *name_label;
char *name_description;
+ int64_t api_version_major;
+ int64_t api_version_minor;
+ char *api_version_vendor;
+ xen_string_string_map *api_version_vendor_implementation;
xen_string_string_map *software_version;
xen_string_string_map *other_config;
struct xen_string_set *supported_bootloaders;
@@ -207,6 +211,34 @@ xen_host_get_name_description(xen_session *session, char **result, xen_host host
/**
+ * Get the API_version/major field of the given host.
+ */
+extern bool
+xen_host_get_api_version_major(xen_session *session, int64_t *result, xen_host host);
+
+
+/**
+ * Get the API_version/minor field of the given host.
+ */
+extern bool
+xen_host_get_api_version_minor(xen_session *session, int64_t *result, xen_host host);
+
+
+/**
+ * Get the API_version/vendor field of the given host.
+ */
+extern bool
+xen_host_get_api_version_vendor(xen_session *session, char **result, xen_host host);
+
+
+/**
+ * Get the API_version/vendor_implementation field of the given host.
+ */
+extern bool
+xen_host_get_api_version_vendor_implementation(xen_session *session, xen_string_string_map **result, xen_host host);
+
+
+/**
* Get the software_version field of the given host.
*/
extern bool
diff --git a/tools/libxen/src/xen_host.c b/tools/libxen/src/xen_host.c
index 24cc4140cc..04b8452e5d 100644
--- a/tools/libxen/src/xen_host.c
+++ b/tools/libxen/src/xen_host.c
@@ -52,6 +52,18 @@ static const struct_member xen_host_record_struct_members[] =
{ .key = "name_description",
.type = &abstract_type_string,
.offset = offsetof(xen_host_record, name_description) },
+ { .key = "API_version_major",
+ .type = &abstract_type_int,
+ .offset = offsetof(xen_host_record, api_version_major) },
+ { .key = "API_version_minor",
+ .type = &abstract_type_int,
+ .offset = offsetof(xen_host_record, api_version_minor) },
+ { .key = "API_version_vendor",
+ .type = &abstract_type_string,
+ .offset = offsetof(xen_host_record, api_version_vendor) },
+ { .key = "API_version_vendor_implementation",
+ .type = &abstract_type_string_string_map,
+ .offset = offsetof(xen_host_record, api_version_vendor_implementation) },
{ .key = "software_version",
.type = &abstract_type_string_string_map,
.offset = offsetof(xen_host_record, software_version) },
@@ -108,6 +120,8 @@ xen_host_record_free(xen_host_record *record)
free(record->uuid);
free(record->name_label);
free(record->name_description);
+ free(record->api_version_vendor);
+ xen_string_string_map_free(record->api_version_vendor_implementation);
xen_string_string_map_free(record->software_version);
xen_string_string_map_free(record->other_config);
xen_string_set_free(record->supported_bootloaders);
@@ -215,6 +229,72 @@ xen_host_get_name_description(xen_session *session, char **result, xen_host host
bool
+xen_host_get_api_version_major(xen_session *session, int64_t *result, xen_host host)
+{
+ abstract_value param_values[] =
+ {
+ { .type = &abstract_type_string,
+ .u.string_val = host }
+ };
+
+ abstract_type result_type = abstract_type_int;
+
+ XEN_CALL_("host.get_API_version_major");
+ return session->ok;
+}
+
+
+bool
+xen_host_get_api_version_minor(xen_session *session, int64_t *result, xen_host host)
+{
+ abstract_value param_values[] =
+ {
+ { .type = &abstract_type_string,
+ .u.string_val = host }
+ };
+
+ abstract_type result_type = abstract_type_int;
+
+ XEN_CALL_("host.get_API_version_minor");
+ return session->ok;
+}
+
+
+bool
+xen_host_get_api_version_vendor(xen_session *session, char **result, xen_host host)
+{
+ abstract_value param_values[] =
+ {
+ { .type = &abstract_type_string,
+ .u.string_val = host }
+ };
+
+ abstract_type result_type = abstract_type_string;
+
+ *result = NULL;
+ XEN_CALL_("host.get_API_version_vendor");
+ return session->ok;
+}
+
+
+bool
+xen_host_get_api_version_vendor_implementation(xen_session *session, xen_string_string_map **result, xen_host host)
+{
+ abstract_value param_values[] =
+ {
+ { .type = &abstract_type_string,
+ .u.string_val = host }
+ };
+
+ abstract_type result_type = abstract_type_string_string_map;
+
+ *result = NULL;
+ XEN_CALL_("host.get_API_version_vendor_implementation");
+ return session->ok;
+}
+
+
+bool
xen_host_get_software_version(xen_session *session, xen_string_string_map **result, xen_host host)
{
abstract_value param_values[] =
diff --git a/tools/python/xen/xend/XendAPI.py b/tools/python/xen/xend/XendAPI.py
index 277ef3b4c0..70bd93c99f 100644
--- a/tools/python/xen/xend/XendAPI.py
+++ b/tools/python/xen/xend/XendAPI.py
@@ -25,6 +25,7 @@ import threading
from xen.xend import XendDomain, XendDomainInfo, XendNode, XendDmesg
from xen.xend import XendLogging, XendTaskManager
+from xen.xend.XendAPIVersion import *
from xen.xend.XendAuthSessions import instance as auth_manager
from xen.xend.XendError import *
from xen.xend.XendClient import ERROR_INVALID_DOMAIN
@@ -104,20 +105,22 @@ def catch_typeerror(func):
except TypeError, exn:
#log.exception('catch_typeerror')
if hasattr(func, 'api') and func.api in argcounts:
- # Assume that if the exception was thrown inside this
- # file, then it is due to an invalid call from the client,
- # but if it was thrown elsewhere, then it's an internal
+ # Assume that if the argument count was wrong and if the
+ # exception was thrown inside this file, then it is due to an
+ # invalid call from the client, otherwise it's an internal
# error (which will be handled further up).
- tb = sys.exc_info()[2]
- try:
- sourcefile = traceback.extract_tb(tb)[-1][0]
- if sourcefile == inspect.getsourcefile(XendAPI):
- return xen_api_error(
- ['MESSAGE_PARAMETER_COUNT_MISMATCH',
- func.api, argcounts[func.api],
- len(args) + len(kwargs)])
- finally:
- del tb
+ expected = argcounts[func.api]
+ actual = len(args) + len(kwargs)
+ if expected != actual:
+ tb = sys.exc_info()[2]
+ try:
+ sourcefile = traceback.extract_tb(tb)[-1][0]
+ if sourcefile == inspect.getsourcefile(XendAPI):
+ return xen_api_error(
+ ['MESSAGE_PARAMETER_COUNT_MISMATCH',
+ func.api, expected, actual])
+ finally:
+ del tb
raise
return f
@@ -627,7 +630,11 @@ class XendAPI(object):
'resident_VMs',
'host_CPUs',
'metrics',
- 'supported_bootloaders']
+ 'supported_bootloaders',
+ 'API_version_major',
+ 'API_version_minor',
+ 'API_version_vendor',
+ 'API_version_vendor_implementation']
host_attr_rw = ['name_label',
'name_description',
@@ -671,6 +678,14 @@ class XendAPI(object):
del node.other_config[key]
node.save()
return xen_api_success_void()
+ def host_get_API_version_major(self, _, ref):
+ return xen_api_success(XEN_API_VERSION_MAJOR)
+ def host_get_API_version_minor(self, _, ref):
+ return xen_api_success(XEN_API_VERSION_MINOR)
+ def host_get_API_version_vendor(self, _, ref):
+ return xen_api_success(XEN_API_VERSION_VENDOR)
+ def host_get_API_version_vendor_implementation(self, _, ref):
+ return xen_api_success(XEN_API_VERSION_VENDOR_IMPLEMENTATION)
def host_get_software_version(self, session, host_ref):
return xen_api_success(XendNode.instance().xen_version())
def host_get_resident_VMs(self, session, host_ref):
@@ -707,7 +722,13 @@ class XendAPI(object):
record = {'uuid': node.uuid,
'name_label': node.name,
'name_description': '',
+ 'API_version_major': XEN_API_VERSION_MAJOR,
+ 'API_version_minor': XEN_API_VERSION_MINOR,
+ 'API_version_vendor': XEN_API_VERSION_VENDOR,
+ 'API_version_vendor_implemention':
+ XEN_API_VERSION_VENDOR_IMPLEMENTATION,
'software_version': node.xen_version(),
+ 'other_config': node.other_config,
'resident_VMs': dom.get_domain_refs(),
'host_CPUs': node.get_host_cpu_refs(),
'metrics': node.host_metrics_uuid,
diff --git a/tools/python/xen/xend/XendAPIVersion.py b/tools/python/xen/xend/XendAPIVersion.py
new file mode 100644
index 0000000000..82cc51af30
--- /dev/null
+++ b/tools/python/xen/xend/XendAPIVersion.py
@@ -0,0 +1,22 @@
+#============================================================================
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of version 2.1 of the GNU Lesser General Public
+# License as published by the Free Software Foundation.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#============================================================================
+# Copyright (c) 2007 XenSource Inc.
+#============================================================================
+
+
+XEN_API_VERSION_MAJOR = 0
+XEN_API_VERSION_MINOR = 5
+XEN_API_VERSION_VENDOR = 'xenbits'
+XEN_API_VERSION_VENDOR_IMPLEMENTATION = {}