diff options
| author | Markus Armbruster <armbru@redhat.com> | 2021-09-17 16:31:14 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2021-09-25 06:55:54 +0200 |
| commit | 3cda299dda578c64b06fcd20e4510b10a7a64bd9 (patch) | |
| tree | 0f3f04342b7e3efd302f85a33c4138ff5b1e2044 | |
| parent | 8ebc3120e161424911ba6d8725e77da32fbb25e5 (diff) | |
| download | focaccia-qemu-3cda299dda578c64b06fcd20e4510b10a7a64bd9.tar.gz focaccia-qemu-3cda299dda578c64b06fcd20e4510b10a7a64bd9.zip | |
qapi: Convert simple union KeyValue to flat one
Simple unions predate flat unions. Having both complicates the QAPI schema language and the QAPI generator. We haven't been using simple unions in new code for a long time, because they are less flexible and somewhat awkward on the wire. To prepare for their removal, convert simple union KeyValue to an equivalent flat one. Adds some boilerplate to the schema, which is a bit ugly, but a lot easier to maintain than the simple union feature. Cc: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20210917143134.412106-4-armbru@redhat.com>
| -rw-r--r-- | qapi/ui.json | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/qapi/ui.json b/qapi/ui.json index b2cf7a6759..9e04f9d65d 100644 --- a/qapi/ui.json +++ b/qapi/ui.json @@ -825,6 +825,30 @@ 'lang1', 'lang2' ] } ## +# @KeyValueKind: +# +# Since: 1.3 +## +{ 'enum': 'KeyValueKind', + 'data': [ 'number', 'qcode' ] } + +## +# @IntWrapper: +# +# Since: 1.3 +## +{ 'struct': 'IntWrapper', + 'data': { 'data': 'int' } } + +## +# @QKeyCodeWrapper: +# +# Since: 1.3 +## +{ 'struct': 'QKeyCodeWrapper', + 'data': { 'data': 'QKeyCode' } } + +## # @KeyValue: # # Represents a keyboard key. @@ -832,9 +856,11 @@ # Since: 1.3 ## { 'union': 'KeyValue', + 'base': { 'type': 'KeyValueKind' }, + 'discriminator': 'type', 'data': { - 'number': 'int', - 'qcode': 'QKeyCode' } } + 'number': 'IntWrapper', + 'qcode': 'QKeyCodeWrapper' } } ## # @send-key: |