summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJán Tomko <jtomko@redhat.com>2015-06-03 12:22:53 +0200
committerJán Tomko <jtomko@redhat.com>2015-06-05 15:55:22 +0200
commit88710cee75af72b388fd66186a2f984dc940d74f (patch)
tree7f8ae83416797d3203fe8f053b26eff3b7c5f524
parentccb05762ad0b0b324ecf7c95dd4b4b7c04c79ca6 (diff)
downloadlibvirt-88710cee75af72b388fd66186a2f984dc940d74f.tar.gz
Move qemuMonitorFindObjectPath to qemu_monitor_json
This function is specific to the JSON monitor.
-rw-r--r--src/qemu/qemu_monitor.c76
-rw-r--r--src/qemu/qemu_monitor_json.c72
-rw-r--r--src/qemu/qemu_monitor_json.h4
3 files changed, 78 insertions, 74 deletions
diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c
index e9c57f1897..d761f51fe9 100644
--- a/src/qemu/qemu_monitor.c
+++ b/src/qemu/qemu_monitor.c
@@ -1069,78 +1069,6 @@ qemuMonitorSetOptions(qemuMonitorPtr mon, virJSONValuePtr options)
/**
- * Search the qom objects by it's known name. The name is compared against
- * filed 'type' formatted as 'link<%name>'.
- *
- * This procedure will be call recursively until found or the qom-list is
- * exhausted.
- *
- * Returns:
- *
- * 0 - Found
- * -1 - Error bail out
- * -2 - Not found
- *
- * NOTE: This assumes we have already called qemuDomainObjEnterMonitor()
- */
-static int
-qemuMonitorFindObjectPath(qemuMonitorPtr mon,
- const char *curpath,
- const char *name,
- char **path)
-{
- ssize_t i, npaths = 0;
- int ret = -2;
- char *nextpath = NULL;
- char *type = NULL;
- qemuMonitorJSONListPathPtr *paths = NULL;
-
- if (virAsprintf(&type, "link<%s>", name) < 0)
- return -1;
-
- VIR_DEBUG("Searching for '%s' Object Path starting at '%s'", type, curpath);
-
- npaths = qemuMonitorJSONGetObjectListPaths(mon, curpath, &paths);
- if (npaths < 0)
- goto cleanup;
-
- for (i = 0; i < npaths && ret == -2; i++) {
-
- if (STREQ_NULLABLE(paths[i]->type, type)) {
- VIR_DEBUG("Path to '%s' is '%s/%s'", type, curpath, paths[i]->name);
- ret = 0;
- if (virAsprintf(path, "%s/%s", curpath, paths[i]->name) < 0) {
- *path = NULL;
- ret = -1;
- }
- goto cleanup;
- }
-
- /* Type entries that begin with "child<" are a branch that can be
- * traversed looking for more entries
- */
- if (paths[i]->type && STRPREFIX(paths[i]->type, "child<")) {
- if (virAsprintf(&nextpath, "%s/%s", curpath, paths[i]->name) < 0) {
- ret = -1;
- goto cleanup;
- }
-
- ret = qemuMonitorFindObjectPath(mon, nextpath, name, path);
- VIR_FREE(nextpath);
- }
- }
-
- cleanup:
- for (i = 0; i < npaths; i++)
- qemuMonitorJSONListPathFree(paths[i]);
- VIR_FREE(paths);
- VIR_FREE(nextpath);
- VIR_FREE(type);
- return ret;
-}
-
-
-/**
* Search the qom objects for the balloon driver object by it's known name
* of "virtio-balloon-pci". The entry for the driver will be found by using
* function "qemuMonitorFindObjectPath".
@@ -1183,7 +1111,7 @@ qemuMonitorFindBalloonObjectPath(qemuMonitorPtr mon,
return -1;
}
- if (qemuMonitorFindObjectPath(mon, curpath, "virtio-balloon-pci", &path) < 0)
+ if (qemuMonitorJSONFindObjectPath(mon, curpath, "virtio-balloon-pci", &path) < 0)
return -1;
nprops = qemuMonitorJSONGetObjectListPaths(mon, path, &bprops);
@@ -1232,7 +1160,7 @@ qemuMonitorUpdateVideoMemorySize(qemuMonitorPtr mon,
QEMU_CHECK_MONITOR(mon);
if (mon->json) {
- ret = qemuMonitorFindObjectPath(mon, "/", videoName, &path);
+ ret = qemuMonitorJSONFindObjectPath(mon, "/", videoName, &path);
if (ret < 0) {
if (ret == -2)
virReportError(VIR_ERR_INTERNAL_ERROR,
diff --git a/src/qemu/qemu_monitor_json.c b/src/qemu/qemu_monitor_json.c
index e6da804aeb..69c342d819 100644
--- a/src/qemu/qemu_monitor_json.c
+++ b/src/qemu/qemu_monitor_json.c
@@ -6642,3 +6642,75 @@ qemuMonitorJSONGetMemoryDeviceInfo(qemuMonitorPtr mon,
virJSONValueFree(reply);
return ret;
}
+
+
+/**
+ * Search the qom objects by it's known name. The name is compared against
+ * filed 'type' formatted as 'link<%name>'.
+ *
+ * This procedure will be call recursively until found or the qom-list is
+ * exhausted.
+ *
+ * Returns:
+ *
+ * 0 - Found
+ * -1 - Error bail out
+ * -2 - Not found
+ *
+ * NOTE: This assumes we have already called qemuDomainObjEnterMonitor()
+ */
+int
+qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon,
+ const char *curpath,
+ const char *name,
+ char **path)
+{
+ ssize_t i, npaths = 0;
+ int ret = -2;
+ char *nextpath = NULL;
+ char *type = NULL;
+ qemuMonitorJSONListPathPtr *paths = NULL;
+
+ if (virAsprintf(&type, "link<%s>", name) < 0)
+ return -1;
+
+ VIR_DEBUG("Searching for '%s' Object Path starting at '%s'", type, curpath);
+
+ npaths = qemuMonitorJSONGetObjectListPaths(mon, curpath, &paths);
+ if (npaths < 0)
+ goto cleanup;
+
+ for (i = 0; i < npaths && ret == -2; i++) {
+
+ if (STREQ_NULLABLE(paths[i]->type, type)) {
+ VIR_DEBUG("Path to '%s' is '%s/%s'", type, curpath, paths[i]->name);
+ ret = 0;
+ if (virAsprintf(path, "%s/%s", curpath, paths[i]->name) < 0) {
+ *path = NULL;
+ ret = -1;
+ }
+ goto cleanup;
+ }
+
+ /* Type entries that begin with "child<" are a branch that can be
+ * traversed looking for more entries
+ */
+ if (paths[i]->type && STRPREFIX(paths[i]->type, "child<")) {
+ if (virAsprintf(&nextpath, "%s/%s", curpath, paths[i]->name) < 0) {
+ ret = -1;
+ goto cleanup;
+ }
+
+ ret = qemuMonitorJSONFindObjectPath(mon, nextpath, name, path);
+ VIR_FREE(nextpath);
+ }
+ }
+
+ cleanup:
+ for (i = 0; i < npaths; i++)
+ qemuMonitorJSONListPathFree(paths[i]);
+ VIR_FREE(paths);
+ VIR_FREE(nextpath);
+ VIR_FREE(type);
+ return ret;
+}
diff --git a/src/qemu/qemu_monitor_json.h b/src/qemu/qemu_monitor_json.h
index 05c9b29f58..fcc2c86968 100644
--- a/src/qemu/qemu_monitor_json.h
+++ b/src/qemu/qemu_monitor_json.h
@@ -482,4 +482,8 @@ int qemuMonitorJSONGetMemoryDeviceInfo(qemuMonitorPtr mon,
virHashTablePtr info)
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
+int qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon,
+ const char *curpath,
+ const char *name,
+ char **path);
#endif /* QEMU_MONITOR_JSON_H */