mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Fix qapi code generation fix
The fixes to qapi code generation had multiple bugs: - the Null class used to drop output was missing some methods - in some scripts it was never instantiated, leading to a None return, which is missing even more methods - the --source and --header options were swapped Luckily, all those bugs were hidden by a makefile bug which caused the old behaviour (with the race) to be invoked. Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
73a511decc
commit
19bf7c8708
4 changed files with 15 additions and 23 deletions
2
Makefile
2
Makefile
|
@ -177,7 +177,7 @@ qapi-dir := $(BUILD_DIR)/qapi-generated
|
|||
test-qmp-input-visitor.o test-qmp-output-visitor.o test-qmp-commands.o qemu-ga$(EXESUF): QEMU_CFLAGS += -I $(qapi-dir)
|
||||
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
|
||||
|
||||
gen-out-type = $(subst .,-,$@)
|
||||
gen-out-type = $(subst .,-,$(suffix $@))
|
||||
|
||||
$(qapi-dir)/test-qapi-types.c $(qapi-dir)/test-qapi-types.h :\
|
||||
$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py
|
||||
|
|
|
@ -399,9 +399,9 @@ def gen_command_def_prologue(prefix="", proxy=False):
|
|||
elif o in ("-m", "--middle"):
|
||||
middle_mode = True
|
||||
elif o in ("-c", "--source"):
|
||||
do_h = True
|
||||
elif o in ("-h", "--header"):
|
||||
do_c = True
|
||||
elif o in ("-h", "--header"):
|
||||
do_h = True
|
||||
|
||||
if not do_c and not do_h:
|
||||
do_c = True
|
||||
|
@ -411,15 +411,11 @@ def gen_command_def_prologue(prefix="", proxy=False):
|
|||
h_file = output_dir + prefix + h_file
|
||||
|
||||
def maybe_open(really, name, opt):
|
||||
class Null(object):
|
||||
def write(self, str):
|
||||
pass
|
||||
def read(self):
|
||||
return ''
|
||||
if really:
|
||||
return open(name, opt)
|
||||
else:
|
||||
return Null()
|
||||
import StringIO
|
||||
return StringIO.StringIO()
|
||||
|
||||
try:
|
||||
os.makedirs(output_dir)
|
||||
|
|
|
@ -183,9 +183,9 @@ def generate_type_cleanup(name):
|
|||
elif o in ("-o", "--output-dir"):
|
||||
output_dir = a + "/"
|
||||
elif o in ("-c", "--source"):
|
||||
do_h = True
|
||||
elif o in ("-h", "--header"):
|
||||
do_c = True
|
||||
elif o in ("-h", "--header"):
|
||||
do_h = True
|
||||
|
||||
if not do_c and not do_h:
|
||||
do_c = True
|
||||
|
@ -201,13 +201,11 @@ def generate_type_cleanup(name):
|
|||
raise
|
||||
|
||||
def maybe_open(really, name, opt):
|
||||
class Null(object):
|
||||
def write(self, str):
|
||||
pass
|
||||
def read(self):
|
||||
return ''
|
||||
if really:
|
||||
return open(name, opt)
|
||||
else:
|
||||
import StringIO
|
||||
return StringIO.StringIO()
|
||||
|
||||
fdef = maybe_open(do_c, c_file, 'w')
|
||||
fdecl = maybe_open(do_h, h_file, 'w')
|
||||
|
|
|
@ -159,9 +159,9 @@ def generate_decl_enum(name, members, genlist=True):
|
|||
elif o in ("-o", "--output-dir"):
|
||||
output_dir = a + "/"
|
||||
elif o in ("-c", "--source"):
|
||||
do_h = True
|
||||
elif o in ("-h", "--header"):
|
||||
do_c = True
|
||||
elif o in ("-h", "--header"):
|
||||
do_h = True
|
||||
|
||||
if not do_c and not do_h:
|
||||
do_c = True
|
||||
|
@ -177,13 +177,11 @@ def generate_decl_enum(name, members, genlist=True):
|
|||
raise
|
||||
|
||||
def maybe_open(really, name, opt):
|
||||
class Null(object):
|
||||
def write(self, str):
|
||||
pass
|
||||
def read(self):
|
||||
return ''
|
||||
if really:
|
||||
return open(name, opt)
|
||||
else:
|
||||
import StringIO
|
||||
return StringIO.StringIO()
|
||||
|
||||
fdef = maybe_open(do_c, c_file, 'w')
|
||||
fdecl = maybe_open(do_h, h_file, 'w')
|
||||
|
|
Loading…
Reference in a new issue