v2: * PATCH v1 05: Dropped * PATCH 01,05,07-11,16: New * PATCH 03: - Commit message typo fixed - Assertions tightened * PATCH 04: - Document member name 'u' is reserved - Drop an accidental change to section "Enumeration types" - Typo fixed * PATCH 06: - Outlaw anything but printable ASCII, not just control characters * PATCH 15: - Adopt more convenient terminology: directive, definition - Explanation of grammar notation missed grouping - Drop a more text redundant with the grammar - Drop more text redundant with section "Naming rules and reserved names" - Turn "boxed needs data: STRING" into syntax - Improve section "Documentation comments" some more - Minor phrasing tweaks
Markus Armbruster (16): scripts/git.orderfile: Match QAPI schema more precisely qapi: Drop check_type()'s redundant parameter @allow_optional qapi: Drop support for boxed alternate arguments docs/devel/qapi-code-gen: Minor specification fixes tests/qapi-schema: Demonstrate bad reporting of funny characters qapi: Restrict strings to printable ASCII qapi: Drop support for escape sequences other than \\ qapi: Permit 'boxed' with empty type qapi: Permit alternates with just one branch qapi: Permit omitting all flat union branches qapi: Adjust frontend errors to say enum value, not member docs/devel/qapi-code-gen: Reorder sections for readability docs/devel/qapi-code-gen: Rewrite compatibility considerations docs/devel/qapi-code-gen: Rewrite introduction to schema docs/devel/qapi-code-gen: Improve QAPI schema language doc qapi: Tweak code to match docs/devel/qapi-code-gen.txt docs/devel/qapi-code-gen.txt | 1068 ++++++++++------- tests/test-qmp-cmds.c | 4 + scripts/git.orderfile | 4 +- scripts/qapi/commands.py | 4 +- scripts/qapi/common.py | 144 +-- scripts/qapi/events.py | 10 +- tests/Makefile.include | 7 +- tests/qapi-schema/alternate-empty.err | 2 +- tests/qapi-schema/alternate-empty.json | 4 +- tests/qapi-schema/args-boxed-empty.err | 1 - tests/qapi-schema/args-boxed-empty.json | 3 - tests/qapi-schema/args-invalid.err | 2 +- tests/qapi-schema/doc-missing.err | 2 +- tests/qapi-schema/doc-no-symbol.err | 2 +- tests/qapi-schema/enum-bad-name.err | 2 +- tests/qapi-schema/enum-bad-name.json | 3 +- tests/qapi-schema/enum-clash-member.err | 2 +- .../qapi-schema/enum-dict-member-unknown.err | 2 +- tests/qapi-schema/enum-member-case.err | 2 +- tests/qapi-schema/escape-outside-string.err | 1 - tests/qapi-schema/escape-outside-string.json | 3 - tests/qapi-schema/escape-too-big.err | 1 - tests/qapi-schema/escape-too-big.exit | 1 - tests/qapi-schema/escape-too-big.json | 3 - tests/qapi-schema/escape-too-big.out | 0 tests/qapi-schema/escape-too-short.err | 1 - tests/qapi-schema/escape-too-short.exit | 1 - tests/qapi-schema/escape-too-short.json | 3 - tests/qapi-schema/escape-too-short.out | 0 tests/qapi-schema/flat-union-empty.err | 2 +- tests/qapi-schema/flat-union-empty.json | 2 +- tests/qapi-schema/ident-with-escape.err | 1 + tests/qapi-schema/ident-with-escape.exit | 2 +- tests/qapi-schema/ident-with-escape.json | 2 +- tests/qapi-schema/ident-with-escape.out | 16 - tests/qapi-schema/pragma-non-dict.err | 2 +- tests/qapi-schema/qapi-schema-test.json | 13 +- tests/qapi-schema/qapi-schema-test.out | 21 +- tests/qapi-schema/string-code-point-127.err | 1 + ...-empty.exit => string-code-point-127.exit} | 0 tests/qapi-schema/string-code-point-127.json | 2 + ...ed-empty.out => string-code-point-127.out} | 0 tests/qapi-schema/string-code-point-31.err | 1 + ...-string.exit => string-code-point-31.exit} | 0 tests/qapi-schema/string-code-point-31.json | 2 + ...de-string.out => string-code-point-31.out} | 0 tests/qapi-schema/struct-data-invalid.err | 2 +- tests/qapi-schema/unicode-str.err | 1 - tests/qapi-schema/unicode-str.exit | 1 - tests/qapi-schema/unicode-str.json | 2 - tests/qapi-schema/unicode-str.out | 0 tests/qapi-schema/union-empty.err | 2 +- tests/qapi-schema/union-empty.json | 2 +- tests/qapi-schema/unknown-escape.json | 2 +- 54 files changed, 737 insertions(+), 624 deletions(-) delete mode 100644 tests/qapi-schema/args-boxed-empty.err delete mode 100644 tests/qapi-schema/args-boxed-empty.json delete mode 100644 tests/qapi-schema/escape-outside-string.err delete mode 100644 tests/qapi-schema/escape-outside-string.json delete mode 100644 tests/qapi-schema/escape-too-big.err delete mode 100644 tests/qapi-schema/escape-too-big.exit delete mode 100644 tests/qapi-schema/escape-too-big.json delete mode 100644 tests/qapi-schema/escape-too-big.out delete mode 100644 tests/qapi-schema/escape-too-short.err delete mode 100644 tests/qapi-schema/escape-too-short.exit delete mode 100644 tests/qapi-schema/escape-too-short.json delete mode 100644 tests/qapi-schema/escape-too-short.out create mode 100644 tests/qapi-schema/string-code-point-127.err rename tests/qapi-schema/{args-boxed-empty.exit => string-code-point-127.exit} (100%) create mode 100644 tests/qapi-schema/string-code-point-127.json rename tests/qapi-schema/{args-boxed-empty.out => string-code-point-127.out} (100%) create mode 100644 tests/qapi-schema/string-code-point-31.err rename tests/qapi-schema/{escape-outside-string.exit => string-code-point-31.exit} (100%) create mode 100644 tests/qapi-schema/string-code-point-31.json rename tests/qapi-schema/{escape-outside-string.out => string-code-point-31.out} (100%) delete mode 100644 tests/qapi-schema/unicode-str.err delete mode 100644 tests/qapi-schema/unicode-str.exit delete mode 100644 tests/qapi-schema/unicode-str.json delete mode 100644 tests/qapi-schema/unicode-str.out -- 2.21.0