mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 21:55:25 +00:00
qemu_monitor: Introduce handler for 'query-current-machine' command
So far, this command returns a structure with only one member: 'wakeup-suspend-support'. But that's okay. It's what we are after anyway. Based-on-work-of: Daniel Henrique Barboza <danielhb413@gmail.com> Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
dca1b1d007
commit
70a4e3ee07
@ -4472,3 +4472,13 @@ qemuMonitorGetPRManagerInfo(qemuMonitorPtr mon,
|
||||
virHashFree(info);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
qemuMonitorGetCurrentMachineInfo(qemuMonitorPtr mon,
|
||||
qemuMonitorCurrentMachineInfoPtr info)
|
||||
{
|
||||
QEMU_CHECK_MONITOR(mon);
|
||||
|
||||
return qemuMonitorJSONGetCurrentMachineInfo(mon, info);
|
||||
}
|
||||
|
@ -1221,4 +1221,13 @@ struct _qemuMonitorPRManagerInfo {
|
||||
int qemuMonitorGetPRManagerInfo(qemuMonitorPtr mon,
|
||||
virHashTablePtr *retinfo);
|
||||
|
||||
typedef struct _qemuMonitorCurrentMachineInfo qemuMonitorCurrentMachineInfo;
|
||||
typedef qemuMonitorCurrentMachineInfo *qemuMonitorCurrentMachineInfoPtr;
|
||||
struct _qemuMonitorCurrentMachineInfo {
|
||||
bool wakeupSuspendSupport;
|
||||
};
|
||||
|
||||
int qemuMonitorGetCurrentMachineInfo(qemuMonitorPtr mon,
|
||||
qemuMonitorCurrentMachineInfoPtr info);
|
||||
|
||||
#endif /* LIBVIRT_QEMU_MONITOR_H */
|
||||
|
@ -8459,3 +8459,53 @@ qemuMonitorJSONGetPRManagerInfo(qemuMonitorPtr mon,
|
||||
return ret;
|
||||
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
qemuMonitorJSONExtractCurrentMachineInfo(virJSONValuePtr reply,
|
||||
qemuMonitorCurrentMachineInfoPtr info)
|
||||
{
|
||||
virJSONValuePtr data;
|
||||
|
||||
data = virJSONValueObjectGetObject(reply, "return");
|
||||
if (!data)
|
||||
goto malformed;
|
||||
|
||||
if (virJSONValueObjectGetBoolean(data, "wakeup-suspend-support",
|
||||
&info->wakeupSuspendSupport) < 0)
|
||||
goto malformed;
|
||||
|
||||
return 0;
|
||||
|
||||
malformed:
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||
_("malformed qemu-current-machine reply"));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
qemuMonitorJSONGetCurrentMachineInfo(qemuMonitorPtr mon,
|
||||
qemuMonitorCurrentMachineInfoPtr info)
|
||||
{
|
||||
int ret = -1;
|
||||
virJSONValuePtr cmd;
|
||||
virJSONValuePtr reply = NULL;
|
||||
|
||||
if (!(cmd = qemuMonitorJSONMakeCommand("query-current-machine",
|
||||
NULL)))
|
||||
return -1;
|
||||
|
||||
if (qemuMonitorJSONCommand(mon, cmd, &reply) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (qemuMonitorJSONCheckReply(cmd, reply, VIR_JSON_TYPE_OBJECT) < 0)
|
||||
goto cleanup;
|
||||
|
||||
ret = qemuMonitorJSONExtractCurrentMachineInfo(reply, info);
|
||||
|
||||
cleanup:
|
||||
virJSONValueFree(cmd);
|
||||
virJSONValueFree(reply);
|
||||
return ret;
|
||||
}
|
||||
|
@ -576,4 +576,9 @@ int qemuMonitorJSONGetPRManagerInfo(qemuMonitorPtr mon,
|
||||
virHashTablePtr info)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
||||
|
||||
int
|
||||
qemuMonitorJSONGetCurrentMachineInfo(qemuMonitorPtr mon,
|
||||
qemuMonitorCurrentMachineInfoPtr info)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
||||
|
||||
#endif /* LIBVIRT_QEMU_MONITOR_JSON_H */
|
||||
|
Loading…
Reference in New Issue
Block a user