docs/system/arm/mps2.rst: Document the new mps3-an547 board
[qemu/ar7.git] / monitor / qmp-cmds-control.c
blob509ae870bd31ffc7f53e6fc07d579663a9ea7a7c
1 /*
2 * QMP commands related to the monitor (common to sysemu and tools)
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
27 #include "monitor-internal.h"
28 #include "qemu-version.h"
29 #include "qapi/error.h"
30 #include "qapi/qapi-commands-control.h"
31 #include "qapi/qapi-emit-events.h"
32 #include "qapi/qapi-introspect.h"
35 * Accept QMP capabilities in @list for @mon.
36 * On success, set mon->qmp.capab[], and return true.
37 * On error, set @errp, and return false.
39 static bool qmp_caps_accept(MonitorQMP *mon, QMPCapabilityList *list,
40 Error **errp)
42 GString *unavailable = NULL;
43 bool capab[QMP_CAPABILITY__MAX];
45 memset(capab, 0, sizeof(capab));
47 for (; list; list = list->next) {
48 if (!mon->capab_offered[list->value]) {
49 if (!unavailable) {
50 unavailable = g_string_new(QMPCapability_str(list->value));
51 } else {
52 g_string_append_printf(unavailable, ", %s",
53 QMPCapability_str(list->value));
56 capab[list->value] = true;
59 if (unavailable) {
60 error_setg(errp, "Capability %s not available", unavailable->str);
61 g_string_free(unavailable, true);
62 return false;
65 memcpy(mon->capab, capab, sizeof(capab));
66 return true;
69 void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable,
70 Error **errp)
72 Monitor *cur_mon = monitor_cur();
73 MonitorQMP *mon;
75 assert(monitor_is_qmp(cur_mon));
76 mon = container_of(cur_mon, MonitorQMP, common);
78 if (mon->commands == &qmp_commands) {
79 error_set(errp, ERROR_CLASS_COMMAND_NOT_FOUND,
80 "Capabilities negotiation is already complete, command "
81 "ignored");
82 return;
85 if (!qmp_caps_accept(mon, enable, errp)) {
86 return;
89 mon->commands = &qmp_commands;
92 VersionInfo *qmp_query_version(Error **errp)
94 VersionInfo *info = g_new0(VersionInfo, 1);
96 info->qemu = g_new0(VersionTriple, 1);
97 info->qemu->major = QEMU_VERSION_MAJOR;
98 info->qemu->minor = QEMU_VERSION_MINOR;
99 info->qemu->micro = QEMU_VERSION_MICRO;
100 info->package = g_strdup(QEMU_PKGVERSION);
102 return info;
105 static void query_commands_cb(const QmpCommand *cmd, void *opaque)
107 CommandInfo *info;
108 CommandInfoList **list = opaque;
110 if (!cmd->enabled) {
111 return;
114 info = g_malloc0(sizeof(*info));
115 info->name = g_strdup(cmd->name);
116 QAPI_LIST_PREPEND(*list, info);
119 CommandInfoList *qmp_query_commands(Error **errp)
121 CommandInfoList *list = NULL;
122 Monitor *cur_mon = monitor_cur();
123 MonitorQMP *mon;
125 assert(monitor_is_qmp(cur_mon));
126 mon = container_of(cur_mon, MonitorQMP, common);
128 qmp_for_each_command(mon->commands, query_commands_cb, &list);
130 return list;
133 EventInfoList *qmp_query_events(Error **errp)
136 * TODO This deprecated command is the only user of
137 * QAPIEvent_str() and QAPIEvent_lookup[]. When the command goes,
138 * they should go, too.
140 EventInfoList *ev_list = NULL;
141 QAPIEvent e;
143 for (e = 0 ; e < QAPI_EVENT__MAX ; e++) {
144 const char *event_name = QAPIEvent_str(e);
145 EventInfo *info;
147 assert(event_name != NULL);
148 info = g_malloc0(sizeof(*info));
149 info->name = g_strdup(event_name);
151 QAPI_LIST_PREPEND(ev_list, info);
154 return ev_list;
158 * Minor hack: generated marshalling suppressed for this command
159 * ('gen': false in the schema) so we can parse the JSON string
160 * directly into QObject instead of first parsing it with
161 * visit_type_SchemaInfoList() into a SchemaInfoList, then marshal it
162 * to QObject with generated output marshallers, every time. Instead,
163 * we do it in test-qobject-input-visitor.c, just to make sure
164 * qapi-gen.py's output actually conforms to the schema.
166 void qmp_query_qmp_schema(QDict *qdict, QObject **ret_data,
167 Error **errp)
169 *ret_data = qobject_from_qlit(&qmp_schema_qlit);