diff options
| author | David Wragg <dpw@lshift.net> | 2010-04-15 17:20:57 +0100 |
|---|---|---|
| committer | David Wragg <dpw@lshift.net> | 2010-04-15 17:20:57 +0100 |
| commit | 369fdd03cdc8225ecbaa562aec975b489af015e0 (patch) | |
| tree | 451f80322dd892926d4a006154522cbc9caef017 /codegen.py | |
| parent | 52bc28f38f5a60c4bfd4570690bd1aed2e2c2c75 (diff) | |
| parent | 5c5c868ba1e4e1f64cda44ec5d5b6e51241f0964 (diff) | |
| download | rabbitmq-server-git-369fdd03cdc8225ecbaa562aec975b489af015e0.tar.gz | |
Merge from default
Diffstat (limited to 'codegen.py')
| -rw-r--r-- | codegen.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/codegen.py b/codegen.py index 96109610ad..91c70e8196 100644 --- a/codegen.py +++ b/codegen.py @@ -126,7 +126,7 @@ def printFileHeader(): %% %% Contributor(s): ______________________________________. %%""" - + def genErl(spec): def erlType(domain): return erlangTypeMap[spec.resolveDomain(domain)] @@ -151,7 +151,7 @@ def genErl(spec): def genMethodHasContent(m): print "method_has_content(%s) -> %s;" % (m.erlangName(), str(m.hasContent).lower()) - + def genMethodIsSynchronous(m): hasNoWait = "nowait" in fieldNameList(m.arguments) if m.isSynchronous and hasNoWait: @@ -219,6 +219,9 @@ def genErl(spec): else: pass + def genMethodRecord(m): + print "method_record(%s) -> #%s{};" % (m.erlangName(), m.erlangName()) + def genDecodeMethodFields(m): packedFields = packMethodFields(m.arguments) binaryPattern = ', '.join([methodFieldFragment(f) for f in packedFields]) @@ -299,6 +302,7 @@ def genErl(spec): -export([method_id/1]). -export([method_has_content/1]). -export([is_method_synchronous/1]). +-export([method_record/1]). -export([method_fieldnames/1]). -export([decode_method_fields/2]). -export([decode_properties/2]). @@ -323,6 +327,9 @@ bitvalue(undefined) -> 0. for m in methods: genMethodIsSynchronous(m) print "is_method_synchronous(Name) -> exit({unknown_method_name, Name})." + for m in methods: genMethodRecord(m) + print "method_record(Name) -> exit({unknown_method_name, Name})." + for m in methods: genMethodFieldNames(m) print "method_fieldnames(Name) -> exit({unknown_method_name, Name})." @@ -362,7 +369,7 @@ def genHrl(spec): result += ' = ' + conv_fn(field.defaultvalue) return result return ', '.join([fillField(f) for f in fields]) - + methods = spec.allMethods() printFileHeader() @@ -386,7 +393,7 @@ def generateErl(specPath): def generateHrl(specPath): genHrl(AmqpSpec(specPath)) - + if __name__ == "__main__": do_main(generateHrl, generateErl) |
