hw/gpio/omap_gpio: Use CamelCase for TYPE_OMAP1_GPIO type name
[qemu.git] / qapi / introspect.json
blob183148b2e9ba4cbd11f4dc28d56484802378e42f
1 # -*- Mode: Python -*-
2 # vim: filetype=python
4 # Copyright (C) 2015 Red Hat, Inc.
6 # Authors:
7 #  Markus Armbruster <armbru@redhat.com>
9 # This work is licensed under the terms of the GNU GPL, version 2 or later.
10 # See the COPYING file in the top-level directory.
13 # = QMP introspection
17 # @query-qmp-schema:
19 # Command query-qmp-schema exposes the QMP wire ABI as an array of
20 # SchemaInfo.  This lets QMP clients figure out what commands and
21 # events are available in this QEMU, and their parameters and results.
23 # However, the SchemaInfo can't reflect all the rules and restrictions
24 # that apply to QMP.  It's interface introspection (figuring out
25 # what's there), not interface specification.  The specification is in
26 # the QAPI schema.
28 # Furthermore, while we strive to keep the QMP wire format
29 # backwards-compatible across qemu versions, the introspection output
30 # is not guaranteed to have the same stability.  For example, one
31 # version of qemu may list an object member as an optional
32 # non-variant, while another lists the same member only through the
33 # object's variants; or the type of a member may change from a generic
34 # string into a specific enum or from one specific type into an
35 # alternate that includes the original type alongside something else.
37 # Returns: array of @SchemaInfo, where each element describes an
38 #          entity in the ABI: command, event, type, ...
40 #          The order of the various SchemaInfo is unspecified; however, all
41 #          names are guaranteed to be unique (no name will be duplicated with
42 #          different meta-types).
44 # Note: the QAPI schema is also used to help define *internal*
45 #       interfaces, by defining QAPI types.  These are not part of the QMP
46 #       wire ABI, and therefore not returned by this command.
48 # Since: 2.5
50 { 'command': 'query-qmp-schema',
51   'returns': [ 'SchemaInfo' ],
52   'allow-preconfig': true }
55 # @SchemaMetaType:
57 # This is a @SchemaInfo's meta type, i.e. the kind of entity it
58 # describes.
60 # @builtin: a predefined type such as 'int' or 'bool'.
62 # @enum: an enumeration type
64 # @array: an array type
66 # @object: an object type (struct or union)
68 # @alternate: an alternate type
70 # @command: a QMP command
72 # @event: a QMP event
74 # Since: 2.5
76 { 'enum': 'SchemaMetaType',
77   'data': [ 'builtin', 'enum', 'array', 'object', 'alternate',
78             'command', 'event' ] }
81 # @SchemaInfo:
83 # @name: the entity's name, inherited from @base.
84 #        The SchemaInfo is always referenced by this name.
85 #        Commands and events have the name defined in the QAPI schema.
86 #        Unlike command and event names, type names are not part of
87 #        the wire ABI.  Consequently, type names are meaningless
88 #        strings here, although they are still guaranteed unique
89 #        regardless of @meta-type.
91 # @meta-type: the entity's meta type, inherited from @base.
93 # @features: names of features associated with the entity, in no
94 #            particular order.
95 #            (since 4.1 for object types, 4.2 for commands, 5.0 for
96 #            the rest)
98 # Additional members depend on the value of @meta-type.
100 # Since: 2.5
102 { 'union': 'SchemaInfo',
103   'base': { 'name': 'str', 'meta-type': 'SchemaMetaType',
104             '*features': [ 'str' ] },
105   'discriminator': 'meta-type',
106   'data': {
107       'builtin': 'SchemaInfoBuiltin',
108       'enum': 'SchemaInfoEnum',
109       'array': 'SchemaInfoArray',
110       'object': 'SchemaInfoObject',
111       'alternate': 'SchemaInfoAlternate',
112       'command': 'SchemaInfoCommand',
113       'event': 'SchemaInfoEvent' } }
116 # @SchemaInfoBuiltin:
118 # Additional SchemaInfo members for meta-type 'builtin'.
120 # @json-type: the JSON type used for this type on the wire.
122 # Since: 2.5
124 { 'struct': 'SchemaInfoBuiltin',
125   'data': { 'json-type': 'JSONType' } }
128 # @JSONType:
130 # The four primitive and two structured types according to RFC 8259
131 # section 1, plus 'int' (split off 'number'), plus the obvious top
132 # type 'value'.
134 # Since: 2.5
136 { 'enum': 'JSONType',
137   'data': [ 'string', 'number', 'int', 'boolean', 'null',
138             'object', 'array', 'value' ] }
141 # @SchemaInfoEnum:
143 # Additional SchemaInfo members for meta-type 'enum'.
145 # @members: the enum type's members, in no particular order
146 #           (since 6.2).
148 # @values: the enumeration type's member names, in no particular order.
149 #          Redundant with @members.  Just for backward compatibility.
151 # Features:
152 # @deprecated: Member @values is deprecated.  Use @members instead.
154 # Values of this type are JSON string on the wire.
156 # Since: 2.5
158 { 'struct': 'SchemaInfoEnum',
159   'data': { 'members': [ 'SchemaInfoEnumMember' ],
160             'values': { 'type': [ 'str' ],
161                         'features': [ 'deprecated' ] } } }
164 # @SchemaInfoEnumMember:
166 # An object member.
168 # @name: the member's name, as defined in the QAPI schema.
170 # @features: names of features associated with the member, in no
171 #            particular order.
173 # Since: 6.2
175 { 'struct': 'SchemaInfoEnumMember',
176   'data': { 'name': 'str', '*features': [ 'str' ] } }
179 # @SchemaInfoArray:
181 # Additional SchemaInfo members for meta-type 'array'.
183 # @element-type: the array type's element type.
185 # Values of this type are JSON array on the wire.
187 # Since: 2.5
189 { 'struct': 'SchemaInfoArray',
190   'data': { 'element-type': 'str' } }
193 # @SchemaInfoObject:
195 # Additional SchemaInfo members for meta-type 'object'.
197 # @members: the object type's (non-variant) members, in no particular order.
199 # @tag: the name of the member serving as type tag.
200 #       An element of @members with this name must exist.
202 # @variants: variant members, i.e. additional members that
203 #            depend on the type tag's value.  Present exactly when
204 #            @tag is present.  The variants are in no particular order,
205 #            and may even differ from the order of the values of the
206 #            enum type of the @tag.
208 # Values of this type are JSON object on the wire.
210 # Since: 2.5
212 { 'struct': 'SchemaInfoObject',
213   'data': { 'members': [ 'SchemaInfoObjectMember' ],
214             '*tag': 'str',
215             '*variants': [ 'SchemaInfoObjectVariant' ] } }
218 # @SchemaInfoObjectMember:
220 # An object member.
222 # @name: the member's name, as defined in the QAPI schema.
224 # @type: the name of the member's type.
226 # @default: default when used as command parameter.
227 #           If absent, the parameter is mandatory.
228 #           If present, the value must be null.  The parameter is
229 #           optional, and behavior when it's missing is not specified
230 #           here.
231 #           Future extension: if present and non-null, the parameter
232 #           is optional, and defaults to this value.
234 # @features: names of features associated with the member, in no
235 #            particular order.  (since 5.0)
237 # Since: 2.5
239 { 'struct': 'SchemaInfoObjectMember',
240   'data': { 'name': 'str', 'type': 'str', '*default': 'any',
241 # @default's type must be null or match @type
242             '*features': [ 'str' ] } }
245 # @SchemaInfoObjectVariant:
247 # The variant members for a value of the type tag.
249 # @case: a value of the type tag.
251 # @type: the name of the object type that provides the variant members
252 #        when the type tag has value @case.
254 # Since: 2.5
256 { 'struct': 'SchemaInfoObjectVariant',
257   'data': { 'case': 'str', 'type': 'str' } }
260 # @SchemaInfoAlternate:
262 # Additional SchemaInfo members for meta-type 'alternate'.
264 # @members: the alternate type's members, in no particular order.
265 #           The members' wire encoding is distinct, see
266 #           docs/devel/qapi-code-gen.txt section Alternate types.
268 # On the wire, this can be any of the members.
270 # Since: 2.5
272 { 'struct': 'SchemaInfoAlternate',
273   'data': { 'members': [ 'SchemaInfoAlternateMember' ] } }
276 # @SchemaInfoAlternateMember:
278 # An alternate member.
280 # @type: the name of the member's type.
282 # Since: 2.5
284 { 'struct': 'SchemaInfoAlternateMember',
285   'data': { 'type': 'str' } }
288 # @SchemaInfoCommand:
290 # Additional SchemaInfo members for meta-type 'command'.
292 # @arg-type: the name of the object type that provides the command's
293 #            parameters.
295 # @ret-type: the name of the command's result type.
297 # @allow-oob: whether the command allows out-of-band execution,
298 #             defaults to false (Since: 2.12)
300 # TODO: @success-response (currently irrelevant, because it's QGA, not QMP)
302 # Since: 2.5
304 { 'struct': 'SchemaInfoCommand',
305   'data': { 'arg-type': 'str', 'ret-type': 'str',
306             '*allow-oob': 'bool' } }
309 # @SchemaInfoEvent:
311 # Additional SchemaInfo members for meta-type 'event'.
313 # @arg-type: the name of the object type that provides the event's
314 #            parameters.
316 # Since: 2.5
318 { 'struct': 'SchemaInfoEvent',
319   'data': { 'arg-type': 'str' } }