[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 3/8] qapi script: clean up in scripts
From: |
Luiz Capitulino |
Subject: |
[Qemu-devel] [PULL 3/8] qapi script: clean up in scripts |
Date: |
Fri, 27 Jun 2014 15:41:58 -0400 |
From: Wenchao Xia <address@hidden>
This patch improve docs and uses c_type(argentry, is_param=True)
in script.
Signed-off-by: Wenchao Xia <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
Signed-off-by: Luiz Capitulino <address@hidden>
---
docs/qapi-code-gen.txt | 8 ++++----
scripts/qapi-event.py | 5 ++---
scripts/qapi.py | 2 +-
tests/qapi-schema/event-nest-struct.err | 2 +-
4 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/docs/qapi-code-gen.txt b/docs/qapi-code-gen.txt
index 3a0c99e..a6197a9 100644
--- a/docs/qapi-code-gen.txt
+++ b/docs/qapi-code-gen.txt
@@ -218,10 +218,10 @@ An example command is:
=== Events ===
Events are defined with the keyword 'event'. When 'data' is also specified,
-additional info will be carried on. Finally there will be C API generated
-in qapi-event.h; when called by QEMU code, a message with timestamp will
-be emitted on the wire. If timestamp is -1, it means failure to retrieve host
-time.
+additional info will be included in the event. Finally there will be C API
+generated in qapi-event.h; when called by QEMU code, a message with timestamp
+will be emitted on the wire. If timestamp is -1, it means failure to retrieve
+host time.
An example event is:
diff --git a/scripts/qapi-event.py b/scripts/qapi-event.py
index 3a1cd61..601e307 100644
--- a/scripts/qapi-event.py
+++ b/scripts/qapi-event.py
@@ -26,9 +26,8 @@ def _generate_event_api_name(event_name, params):
api_name += "bool has_%s,\n" % c_var(argname)
api_name += "".ljust(l)
- if argentry == "str":
- api_name += "const "
- api_name += "%s %s,\n" % (c_type(argentry), c_var(argname))
+ api_name += "%s %s,\n" % (c_type(argentry, is_param=True),
+ c_var(argname))
api_name += "".ljust(l)
api_name += "Error **errp)"
diff --git a/scripts/qapi.py b/scripts/qapi.py
index 54b97cb..f2c6d1f 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -255,7 +255,7 @@ def check_event(expr, expr_info):
if structured:
raise QAPIExprError(expr_info,
"Nested structure define in event is not "
- "supported now, event '%s', argname '%s'"
+ "supported, event '%s', argname '%s'"
% (expr['event'], argname))
def check_union(expr, expr_info):
diff --git a/tests/qapi-schema/event-nest-struct.err
b/tests/qapi-schema/event-nest-struct.err
index e4a0faa..91bde1c 100644
--- a/tests/qapi-schema/event-nest-struct.err
+++ b/tests/qapi-schema/event-nest-struct.err
@@ -1 +1 @@
-tests/qapi-schema/event-nest-struct.json:1: Nested structure define in event
is not supported now, event 'EVENT_A', argname 'a'
+tests/qapi-schema/event-nest-struct.json:1: Nested structure define in event
is not supported, event 'EVENT_A', argname 'a'
--
1.9.3
- [Qemu-devel] [PULL for-2.1 0/8] QMP queue, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 3/8] qapi script: clean up in scripts,
Luiz Capitulino <=
- [Qemu-devel] [PULL 1/8] qapi: move event defines, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 2/8] qapi: ignore generated event files, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 4/8] qapi event: clean up in callers, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 8/8] docs/qmp: Fix documentation of BLOCK_JOB_READY to match code, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 5/8] qmp: add qmp-events.txt back, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 6/8] virtio-serial: report frontend connection state via monitor, Luiz Capitulino, 2014/06/27
- [Qemu-devel] [PULL 7/8] char: report frontend open/closed state in 'query-chardev', Luiz Capitulino, 2014/06/27
- Re: [Qemu-devel] [PULL for-2.1 0/8] QMP queue, Peter Maydell, 2014/06/29