2021-02-01 22:37:39 +03:00
|
|
|
module ./builtin
|
2018-02-11 12:35:54 +03:00
|
|
|
object q_empty
|
2018-12-13 15:37:05 +03:00
|
|
|
enum QType
|
2018-02-11 12:35:54 +03:00
|
|
|
prefix QTYPE
|
2018-12-13 15:37:05 +03:00
|
|
|
member none
|
|
|
|
member qnull
|
|
|
|
member qnum
|
|
|
|
member qstring
|
|
|
|
member qdict
|
|
|
|
member qlist
|
|
|
|
member qbool
|
2018-02-11 12:35:55 +03:00
|
|
|
module doc-good.json
|
2018-12-13 15:37:05 +03:00
|
|
|
enum Enum
|
|
|
|
member one
|
2021-08-04 11:31:05 +03:00
|
|
|
if IFONE
|
2021-10-25 07:24:02 +03:00
|
|
|
feature enum-member-feat
|
2018-12-13 15:37:05 +03:00
|
|
|
member two
|
2021-08-04 11:31:05 +03:00
|
|
|
if IFCOND
|
2020-03-17 14:54:37 +03:00
|
|
|
feature enum-feat
|
2017-03-20 16:11:54 +03:00
|
|
|
object Base
|
|
|
|
member base1: Enum optional=False
|
tests/qapi-schema: Hide OrderedDict in test output
Since commit 5d83b9a130 "qapi: replace if condition list with dict
{'all': [...]}", we represent if conditionals as trees consisting of
OrderedDict, list and str. This results in less than legible test
output. For instance:
if OrderedDict([('not', OrderedDict([('any', [OrderedDict([('not', 'TEST_IF_EVT')]), OrderedDict([('not', 'TEST_IF_STRUCT')])])]))])
We intend to replace OrderedDict by dict when we get Python 3.7, which
will result in more legible output:
if {'not': {'any': [{'not': 'TEST_IF_EVT'}, {'not': 'TEST_IF_STRUCT'}]}}
Can't wait: put in a hack to get that now, with a comment to revert it
when we replace OrderedDict.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210831123809.1107782-11-armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
2021-08-31 15:38:07 +03:00
|
|
|
if {'all': ['IFALL1', 'IFALL2']}
|
2018-02-11 12:35:54 +03:00
|
|
|
object Variant1
|
|
|
|
member var1: str optional=False
|
2021-08-04 11:31:05 +03:00
|
|
|
if IFSTR
|
2020-03-17 14:54:45 +03:00
|
|
|
feature member-feat
|
2019-10-18 11:14:53 +03:00
|
|
|
feature variant1-feat
|
2018-02-11 12:35:54 +03:00
|
|
|
object Variant2
|
2017-03-20 16:11:54 +03:00
|
|
|
object Object
|
|
|
|
base Base
|
|
|
|
tag base1
|
|
|
|
case one: Variant1
|
|
|
|
case two: Variant2
|
tests/qapi-schema: Hide OrderedDict in test output
Since commit 5d83b9a130 "qapi: replace if condition list with dict
{'all': [...]}", we represent if conditionals as trees consisting of
OrderedDict, list and str. This results in less than legible test
output. For instance:
if OrderedDict([('not', OrderedDict([('any', [OrderedDict([('not', 'TEST_IF_EVT')]), OrderedDict([('not', 'TEST_IF_STRUCT')])])]))])
We intend to replace OrderedDict by dict when we get Python 3.7, which
will result in more legible output:
if {'not': {'any': [{'not': 'TEST_IF_EVT'}, {'not': 'TEST_IF_STRUCT'}]}}
Can't wait: put in a hack to get that now, with a comment to revert it
when we replace OrderedDict.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210831123809.1107782-11-armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
2021-08-31 15:38:07 +03:00
|
|
|
if {'any': ['IFONE', 'IFTWO']}
|
2020-03-17 14:54:37 +03:00
|
|
|
feature union-feat1
|
2019-10-24 14:02:21 +03:00
|
|
|
alternate Alternate
|
|
|
|
tag type
|
|
|
|
case i: int
|
|
|
|
case b: bool
|
tests/qapi-schema: Hide OrderedDict in test output
Since commit 5d83b9a130 "qapi: replace if condition list with dict
{'all': [...]}", we represent if conditionals as trees consisting of
OrderedDict, list and str. This results in less than legible test
output. For instance:
if OrderedDict([('not', OrderedDict([('any', [OrderedDict([('not', 'TEST_IF_EVT')]), OrderedDict([('not', 'TEST_IF_STRUCT')])])]))])
We intend to replace OrderedDict by dict when we get Python 3.7, which
will result in more legible output:
if {'not': {'any': [{'not': 'TEST_IF_EVT'}, {'not': 'TEST_IF_STRUCT'}]}}
Can't wait: put in a hack to get that now, with a comment to revert it
when we replace OrderedDict.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210831123809.1107782-11-armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
2021-08-31 15:38:07 +03:00
|
|
|
if {'not': {'any': ['IFONE', 'IFTWO']}}
|
2020-03-17 14:54:37 +03:00
|
|
|
feature alt-feat
|
2017-03-20 16:11:54 +03:00
|
|
|
object q_obj_cmd-arg
|
|
|
|
member arg1: int optional=False
|
|
|
|
member arg2: str optional=True
|
|
|
|
member arg3: bool optional=False
|
2018-02-11 12:35:54 +03:00
|
|
|
command cmd q_obj_cmd-arg -> Object
|
2019-10-18 11:14:50 +03:00
|
|
|
gen=True success_response=True boxed=False oob=False preconfig=False
|
2019-10-18 11:14:53 +03:00
|
|
|
feature cmd-feat1
|
|
|
|
feature cmd-feat2
|
2018-02-11 12:35:54 +03:00
|
|
|
command cmd-boxed Object -> None
|
2019-10-18 11:14:50 +03:00
|
|
|
gen=True success_response=True boxed=True oob=False preconfig=False
|
2019-10-18 11:14:53 +03:00
|
|
|
feature cmd-feat1
|
|
|
|
feature cmd-feat2
|
2021-03-23 12:40:10 +03:00
|
|
|
event EVT_BOXED Object
|
2019-10-24 14:02:20 +03:00
|
|
|
boxed=True
|
2020-03-17 14:54:37 +03:00
|
|
|
feature feat3
|
2017-03-20 16:11:54 +03:00
|
|
|
doc freeform
|
|
|
|
body=
|
|
|
|
= Section
|
2020-03-20 12:18:05 +03:00
|
|
|
doc freeform
|
|
|
|
body=
|
2017-03-20 16:11:54 +03:00
|
|
|
== Subsection
|
|
|
|
|
2020-09-25 19:23:07 +03:00
|
|
|
*with emphasis*
|
2017-03-20 16:11:54 +03:00
|
|
|
@var {in braces}
|
2020-09-25 19:22:58 +03:00
|
|
|
|
2017-03-20 16:11:54 +03:00
|
|
|
* List item one
|
2020-09-25 19:22:58 +03:00
|
|
|
* Two, multiple
|
2020-09-25 19:22:59 +03:00
|
|
|
lines
|
2017-03-20 16:11:54 +03:00
|
|
|
|
2020-09-25 19:22:58 +03:00
|
|
|
* Three
|
2020-09-25 19:22:59 +03:00
|
|
|
Still in list
|
2017-03-20 16:11:54 +03:00
|
|
|
|
|
|
|
Not in list
|
2020-09-25 19:22:58 +03:00
|
|
|
|
2017-03-20 16:11:54 +03:00
|
|
|
- Second list
|
2020-09-25 19:22:59 +03:00
|
|
|
Note: still in list
|
2017-03-20 16:11:54 +03:00
|
|
|
|
|
|
|
Note: not in list
|
2020-09-25 19:22:58 +03:00
|
|
|
|
2017-03-20 16:11:54 +03:00
|
|
|
1. Third list
|
2020-09-25 19:22:59 +03:00
|
|
|
is numbered
|
2017-03-20 16:11:54 +03:00
|
|
|
|
2020-09-25 19:22:58 +03:00
|
|
|
2. another item
|
2017-03-20 16:11:54 +03:00
|
|
|
|
|
|
|
Returns: the King
|
|
|
|
Since: the first age
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
1. Lorem ipsum dolor sit amet
|
|
|
|
|
|
|
|
2. Ut enim ad minim veniam
|
|
|
|
|
|
|
|
Duis aute irure dolor
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> in
|
|
|
|
<- out
|
|
|
|
Examples:
|
|
|
|
- *verbatim*
|
|
|
|
- {braces}
|
|
|
|
doc symbol=Enum
|
|
|
|
body=
|
2017-10-02 17:13:35 +03:00
|
|
|
|
2017-03-20 16:11:54 +03:00
|
|
|
arg=one
|
|
|
|
The _one_ {and only}
|
|
|
|
arg=two
|
|
|
|
|
2020-03-17 14:54:37 +03:00
|
|
|
feature=enum-feat
|
|
|
|
Also _one_ {and only}
|
2021-10-25 07:24:02 +03:00
|
|
|
feature=enum-member-feat
|
|
|
|
a member feature
|
2017-10-02 17:13:37 +03:00
|
|
|
section=None
|
2017-03-20 16:11:54 +03:00
|
|
|
@two is undocumented
|
|
|
|
doc symbol=Base
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=base1
|
|
|
|
the first member
|
|
|
|
doc symbol=Variant1
|
|
|
|
body=
|
|
|
|
A paragraph
|
|
|
|
|
|
|
|
Another paragraph (but no @var: line)
|
|
|
|
arg=var1
|
|
|
|
|
2019-10-24 14:02:22 +03:00
|
|
|
feature=variant1-feat
|
|
|
|
a feature
|
2020-03-17 14:54:45 +03:00
|
|
|
feature=member-feat
|
|
|
|
a member feature
|
2017-03-20 16:11:54 +03:00
|
|
|
doc symbol=Variant2
|
|
|
|
body=
|
|
|
|
|
|
|
|
doc symbol=Object
|
|
|
|
body=
|
|
|
|
|
2020-03-17 14:54:37 +03:00
|
|
|
feature=union-feat1
|
|
|
|
a feature
|
2019-10-24 14:02:21 +03:00
|
|
|
doc symbol=Alternate
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=i
|
|
|
|
an integer
|
2020-09-25 19:23:00 +03:00
|
|
|
@b is undocumented
|
2019-10-24 14:02:21 +03:00
|
|
|
arg=b
|
|
|
|
|
2020-03-17 14:54:37 +03:00
|
|
|
feature=alt-feat
|
|
|
|
a feature
|
2017-03-20 16:11:54 +03:00
|
|
|
doc freeform
|
|
|
|
body=
|
|
|
|
== Another subsection
|
|
|
|
doc symbol=cmd
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=arg1
|
|
|
|
the first argument
|
|
|
|
arg=arg2
|
|
|
|
the second
|
2020-09-25 19:23:00 +03:00
|
|
|
argument
|
2017-03-20 16:11:54 +03:00
|
|
|
arg=arg3
|
|
|
|
|
2019-10-24 14:02:22 +03:00
|
|
|
feature=cmd-feat1
|
|
|
|
a feature
|
|
|
|
feature=cmd-feat2
|
|
|
|
another feature
|
2017-03-20 16:11:54 +03:00
|
|
|
section=Note
|
|
|
|
@arg3 is undocumented
|
|
|
|
section=Returns
|
|
|
|
@Object
|
|
|
|
section=TODO
|
|
|
|
frobnicate
|
|
|
|
section=Notes
|
|
|
|
- Lorem ipsum dolor sit amet
|
|
|
|
- Ut enim ad minim veniam
|
|
|
|
|
|
|
|
Duis aute irure dolor
|
|
|
|
section=Example
|
|
|
|
-> in
|
|
|
|
<- out
|
|
|
|
section=Examples
|
|
|
|
- *verbatim*
|
|
|
|
- {braces}
|
|
|
|
section=Since
|
|
|
|
2.10
|
|
|
|
doc symbol=cmd-boxed
|
|
|
|
body=
|
|
|
|
If you're bored enough to read this, go see a video of boxed cats
|
2019-10-24 14:02:22 +03:00
|
|
|
feature=cmd-feat1
|
|
|
|
a feature
|
|
|
|
feature=cmd-feat2
|
|
|
|
another feature
|
2017-03-20 16:11:54 +03:00
|
|
|
section=Example
|
|
|
|
-> in
|
|
|
|
|
|
|
|
<- out
|
2021-03-23 12:40:10 +03:00
|
|
|
doc symbol=EVT_BOXED
|
2019-10-24 14:02:20 +03:00
|
|
|
body=
|
2019-10-24 14:02:24 +03:00
|
|
|
|
2020-03-17 14:54:37 +03:00
|
|
|
feature=feat3
|
|
|
|
a feature
|