summaryrefslogtreecommitdiff
path: root/scripts/qapi.py
AgeCommit message (Expand)AuthorFilesLines
2015-09-14qapi: Fix cgen() for Python older than 2.7Markus Armbruster1-1/+3
2015-09-04qapi: Generators crash when --output-dir isn't given, fixMarkus Armbruster1-5/+6
2015-09-04qapi: Simplify error reporting for array typesMarkus Armbruster1-4/+2
2015-09-04qapi: Fix errors for non-string, non-dictionary membersMarkus Armbruster1-4/+6
2015-09-04qapi: Drop one of two "simple union must not have base" checksMarkus Armbruster1-8/+0
2015-09-04qapi: Command returning anonymous type doesn't work, outlawMarkus Armbruster1-1/+1
2015-09-04qapi: Fix to reject union command and event argumentsMarkus Armbruster1-2/+2
2015-09-04qapi: Document flaws in checking of namesMarkus Armbruster1-0/+4
2015-09-04qapi: Drop unused and useless parameters and variablesMarkus Armbruster1-1/+0
2015-09-04qapi: Reject -p arguments that break qapi-event.pyMarkus Armbruster1-0/+6
2015-09-04qapi: Simplify guardname()Markus Armbruster1-7/+3
2015-09-04qapi: Clean up cgen() and mcgen()Markus Armbruster1-6/+11
2015-06-18qapi: Catch and reject flat union branch of array typeMarkus Armbruster1-1/+1
2015-06-18qapi: Better separate the different kinds of helpersMarkus Armbruster1-54/+74
2015-06-18qapi: Move exprs checking from parse_schema() to check_exprs()Markus Armbruster1-76/+66
2015-06-18qapi: Fix to reject stray 't', 'f' and 'n'Markus Armbruster1-14/+12
2015-06-18qapi: Simplify inclusion cycle detectionMarkus Armbruster1-10/+8
2015-06-18qapi: Fix file name in error messages for included filesMarkus Armbruster1-4/+3
2015-06-18qapi: Improve a couple of confusing variable namesMarkus Armbruster1-22/+23
2015-06-18qapi: Eliminate superfluous QAPISchema attribute input_dirMarkus Armbruster1-2/+2
2015-05-14qapi: Drop pointless flush() before close()Markus Armbruster1-4/+0
2015-05-14qapi: Factor open_output(), close_output() out of generatorsMarkus Armbruster1-0/+50
2015-05-14qapi: Turn generators' mandatory option -i into an argumentMarkus Armbruster1-7/+5
2015-05-14qapi: Fix generators to report command line errors decentlyMarkus Armbruster1-1/+5
2015-05-14qapi: Factor parse_command_line() out of the generatorsMarkus Armbruster1-0/+40
2015-05-14qapi: Make c_type() consistently convert qapi namesEric Blake1-4/+29
2015-05-14qapi: Tidy c_type() logicEric Blake1-28/+30
2015-05-14qapi: Move camel_to_upper(), c_enum_const() to closely related codeMarkus Armbruster1-25/+25
2015-05-14qapi: Use c_enum_const() in generate_alternate_qtypes()Markus Armbruster1-11/+0
2015-05-14qapi: Simplify c_enum_const()Markus Armbruster1-3/+1
2015-05-14qapi: Rename generate_enum_full_value() to c_enum_const()Markus Armbruster1-3/+3
2015-05-14qapi: Rename _generate_enum_string() to camel_to_upper()Markus Armbruster1-6/+6
2015-05-14qapi: Rename identical c_fun()/c_var() into c_name()Eric Blake1-7/+4
2015-05-14qapi: Fix C identifiers generated for names containing '.'Markus Armbruster1-2/+5
2015-05-05qapi: Check for member name conflicts with a base classEric Blake1-1/+22
2015-05-05qapi: Support (subset of) \u escapes in stringsEric Blake1-1/+35
2015-05-05qapi: Drop support for inline nested typesEric Blake1-13/+7
2015-05-05qapi: Forbid 'type' in schemaEric Blake1-14/+0
2015-05-05qapi: Prefer 'struct' over 'type' in generatorEric Blake1-17/+29
2015-05-05qapi: More rigorous checking for type safety bypassEric Blake1-5/+17
2015-05-05qapi: Whitelist commands that don't return dictionaryEric Blake1-3/+28
2015-05-05qapi: Require valid namesEric Blake1-17/+46
2015-05-05qapi: More rigourous checking of typesEric Blake1-9/+87
2015-05-05qapi: Allow true, false and null in schema jsonFam Zheng1-3/+18
2015-05-05qapi: Better error messages for duplicated expressionsEric Blake1-14/+49
2015-05-05qapi: Better error messages for bad expressionsEric Blake1-7/+37
2015-05-05qapi: Use 'alternate' to replace anonymous unionEric Blake1-18/+14
2015-05-05qapi: Segregate anonymous unions into alternates in generatorEric Blake1-33/+55
2015-05-05qapi: Prepare for catching more semantic parse errorsEric Blake1-17/+20
2015-05-05qapi: Tighten checking of unionsEric Blake1-17/+72