diff options
author | Wenchao Xia <wenchaoqemu@gmail.com> | 2014-06-18 08:43:28 +0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-06-23 11:01:25 -0400 |
commit | 21cd70dfc1a6dc90511bae55a460a3a55461339a (patch) | |
tree | ecde7d3f4f60d0d0e70982d215ccc67043ebb11f /tests | |
parent | f882126024dae3df45adb8bdd0f8ca9d63787fa0 (diff) | |
download | qemu-21cd70dfc1a6dc90511bae55a460a3a55461339a.zip qemu-21cd70dfc1a6dc90511bae55a460a3a55461339a.tar.gz qemu-21cd70dfc1a6dc90511bae55a460a3a55461339a.tar.bz2 |
qapi script: add event support
qapi-event.py will parse the schema and generate qapi-event.c, then
the API in qapi-event.c can be used to handle events in qemu code.
All API have prefix "qapi_event".
The script mainly includes two parts: generate API for each event
define, generate an enum type for all defined events.
Since in some cases the real emit behavior may change, for example,
qemu-img would not send a event, a callback layer is used to
control the behavior. As a result, the stubs at compile time
can be saved, the binding of block layer code and monitor code
will become looser.
Signed-off-by: Wenchao Xia <wenchaoqemu@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 2 | ||||
-rw-r--r-- | tests/qapi-schema/event-nest-struct.err | 1 | ||||
-rw-r--r-- | tests/qapi-schema/event-nest-struct.exit | 1 | ||||
-rw-r--r-- | tests/qapi-schema/event-nest-struct.json | 2 | ||||
-rw-r--r-- | tests/qapi-schema/event-nest-struct.out | 0 |
5 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 4caf7de..1fa38a1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -199,7 +199,7 @@ check-qapi-schema-y := $(addprefix tests/qapi-schema/, \ include-simple.json include-relpath.json include-format-err.json \ include-non-file.json include-no-file.json include-before-err.json \ include-nested-err.json include-self-cycle.json include-cycle.json \ - include-repetition.json) + include-repetition.json event-nest-struct.json) GENERATED_HEADERS += tests/test-qapi-types.h tests/test-qapi-visit.h tests/test-qmp-commands.h diff --git a/tests/qapi-schema/event-nest-struct.err b/tests/qapi-schema/event-nest-struct.err new file mode 100644 index 0000000..e4a0faa --- /dev/null +++ b/tests/qapi-schema/event-nest-struct.err @@ -0,0 +1 @@ +tests/qapi-schema/event-nest-struct.json:1: Nested structure define in event is not supported now, event 'EVENT_A', argname 'a' diff --git a/tests/qapi-schema/event-nest-struct.exit b/tests/qapi-schema/event-nest-struct.exit new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/tests/qapi-schema/event-nest-struct.exit @@ -0,0 +1 @@ +1 diff --git a/tests/qapi-schema/event-nest-struct.json b/tests/qapi-schema/event-nest-struct.json new file mode 100644 index 0000000..ee6f3ec --- /dev/null +++ b/tests/qapi-schema/event-nest-struct.json @@ -0,0 +1,2 @@ +{ 'event': 'EVENT_A', + 'data': { 'a' : { 'string' : 'str', 'integer': 'int' }, 'b' : 'str' } } diff --git a/tests/qapi-schema/event-nest-struct.out b/tests/qapi-schema/event-nest-struct.out new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/qapi-schema/event-nest-struct.out |