提交 5aca919b 编写于 作者: J Ján Tomko

Introduce qemuMonitorJSONFindLinkPath

When traversing through the QOM tree, we're looking for
a link to a device, e.g.:
link<virtio-balloon-pci>

Introduce a helper that will format the link name at the start,
instead of doing it every time while recursing through the tree.
上级 88710cee
...@@ -1111,7 +1111,7 @@ qemuMonitorFindBalloonObjectPath(qemuMonitorPtr mon, ...@@ -1111,7 +1111,7 @@ qemuMonitorFindBalloonObjectPath(qemuMonitorPtr mon,
return -1; return -1;
} }
if (qemuMonitorJSONFindObjectPath(mon, curpath, "virtio-balloon-pci", &path) < 0) if (qemuMonitorJSONFindLinkPath(mon, curpath, "virtio-balloon-pci", &path) < 0)
return -1; return -1;
nprops = qemuMonitorJSONGetObjectListPaths(mon, path, &bprops); nprops = qemuMonitorJSONGetObjectListPaths(mon, path, &bprops);
...@@ -1160,7 +1160,7 @@ qemuMonitorUpdateVideoMemorySize(qemuMonitorPtr mon, ...@@ -1160,7 +1160,7 @@ qemuMonitorUpdateVideoMemorySize(qemuMonitorPtr mon,
QEMU_CHECK_MONITOR(mon); QEMU_CHECK_MONITOR(mon);
if (mon->json) { if (mon->json) {
ret = qemuMonitorJSONFindObjectPath(mon, "/", videoName, &path); ret = qemuMonitorJSONFindLinkPath(mon, "/", videoName, &path);
if (ret < 0) { if (ret < 0) {
if (ret == -2) if (ret == -2)
virReportError(VIR_ERR_INTERNAL_ERROR, virReportError(VIR_ERR_INTERNAL_ERROR,
......
...@@ -6645,21 +6645,18 @@ qemuMonitorJSONGetMemoryDeviceInfo(qemuMonitorPtr mon, ...@@ -6645,21 +6645,18 @@ qemuMonitorJSONGetMemoryDeviceInfo(qemuMonitorPtr mon,
/** /**
* Search the qom objects by it's known name. The name is compared against * Recursively search for a QOM object link.
* filed 'type' formatted as 'link<%name>'.
* *
* This procedure will be call recursively until found or the qom-list is * For @name, this function finds the first QOM object
* exhausted. * named @name, recursively going through all the "child<>"
* entries, starting from @curpath.
* *
* Returns: * Returns:
*
* 0 - Found * 0 - Found
* -1 - Error bail out * -1 - Error - bail out
* -2 - Not found * -2 - Not found
*
* NOTE: This assumes we have already called qemuDomainObjEnterMonitor()
*/ */
int static int
qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon, qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon,
const char *curpath, const char *curpath,
const char *name, const char *name,
...@@ -6668,13 +6665,9 @@ qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon, ...@@ -6668,13 +6665,9 @@ qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon,
ssize_t i, npaths = 0; ssize_t i, npaths = 0;
int ret = -2; int ret = -2;
char *nextpath = NULL; char *nextpath = NULL;
char *type = NULL;
qemuMonitorJSONListPathPtr *paths = NULL; qemuMonitorJSONListPathPtr *paths = NULL;
if (virAsprintf(&type, "link<%s>", name) < 0) VIR_DEBUG("Searching for '%s' Object Path starting at '%s'", name, curpath);
return -1;
VIR_DEBUG("Searching for '%s' Object Path starting at '%s'", type, curpath);
npaths = qemuMonitorJSONGetObjectListPaths(mon, curpath, &paths); npaths = qemuMonitorJSONGetObjectListPaths(mon, curpath, &paths);
if (npaths < 0) if (npaths < 0)
...@@ -6682,8 +6675,8 @@ qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon, ...@@ -6682,8 +6675,8 @@ qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon,
for (i = 0; i < npaths && ret == -2; i++) { for (i = 0; i < npaths && ret == -2; i++) {
if (STREQ_NULLABLE(paths[i]->type, type)) { if (STREQ_NULLABLE(paths[i]->type, name)) {
VIR_DEBUG("Path to '%s' is '%s/%s'", type, curpath, paths[i]->name); VIR_DEBUG("Path to '%s' is '%s/%s'", name, curpath, paths[i]->name);
ret = 0; ret = 0;
if (virAsprintf(path, "%s/%s", curpath, paths[i]->name) < 0) { if (virAsprintf(path, "%s/%s", curpath, paths[i]->name) < 0) {
*path = NULL; *path = NULL;
...@@ -6711,6 +6704,34 @@ qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon, ...@@ -6711,6 +6704,34 @@ qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon,
qemuMonitorJSONListPathFree(paths[i]); qemuMonitorJSONListPathFree(paths[i]);
VIR_FREE(paths); VIR_FREE(paths);
VIR_FREE(nextpath); VIR_FREE(nextpath);
VIR_FREE(type); return ret;
}
/**
* Recursively search for a QOM object link.
*
* For @name, this function finds the first QOM object
* pointed to by a link in the form of 'link<@name>'
*
* Returns:
* 0 - Found
* -1 - Error
* -2 - Not found
*/
int
qemuMonitorJSONFindLinkPath(qemuMonitorPtr mon,
const char *curpath,
const char *name,
char **path)
{
char *linkname = NULL;
int ret = -1;
if (virAsprintf(&linkname, "link<%s>", name) < 0)
return -1;
ret = qemuMonitorJSONFindObjectPath(mon, curpath, linkname, path);
VIR_FREE(linkname);
return ret; return ret;
} }
...@@ -482,8 +482,9 @@ int qemuMonitorJSONGetMemoryDeviceInfo(qemuMonitorPtr mon, ...@@ -482,8 +482,9 @@ int qemuMonitorJSONGetMemoryDeviceInfo(qemuMonitorPtr mon,
virHashTablePtr info) virHashTablePtr info)
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2); ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
int qemuMonitorJSONFindObjectPath(qemuMonitorPtr mon, int qemuMonitorJSONFindLinkPath(qemuMonitorPtr mon,
const char *curpath, const char *curpath,
const char *name, const char *name,
char **path); char **path)
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4);
#endif /* QEMU_MONITOR_JSON_H */ #endif /* QEMU_MONITOR_JSON_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册