]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
qapi script: clean up in scripts
authorWenchao Xia <wenchaoqemu@gmail.com>
Tue, 24 Jun 2014 23:33:59 +0000 (16:33 -0700)
committerLuiz Capitulino <lcapitulino@redhat.com>
Fri, 27 Jun 2014 13:27:56 +0000 (09:27 -0400)
This patch improve docs and uses c_type(argentry, is_param=True)
in script.

Signed-off-by: Wenchao Xia <wenchaoqemu@gmail.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
docs/qapi-code-gen.txt
scripts/qapi-event.py
scripts/qapi.py
tests/qapi-schema/event-nest-struct.err

index 3a0c99e1dac6f759efa75e38f94fd0ef3fc43087..a6197a9133f2c5ceae4c3bef3ebb8b4f2c52740d 100644 (file)
@@ -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:
 
index 3a1cd6191485e7fde07feb586df9c93a9fff6cff..601e3076abafe679d4acf13414ba2bd6d9aa1065 100644 (file)
@@ -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)"
index 54b97cb48e1c5774b689b7f83b5127a508cc8f86..f2c6d1f840a4de93de976a720e81ee0ced1e0436 100644 (file)
@@ -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):
index e4a0faac9c4fa492cd6a31a84e71e36aab95d344..91bde1c9678e3b7468da089c9a5e88fc56ad6698 100644 (file)
@@ -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'