diff options
author | Matthew Sackman <matthew@lshift.net> | 2010-02-16 14:48:29 +0000 |
---|---|---|
committer | Matthew Sackman <matthew@lshift.net> | 2010-02-16 14:48:29 +0000 |
commit | 756aef9f9f8b4995352bbe62a57b44e0284a9448 (patch) | |
tree | 120a6e285151e3dcf43a904bb9eccb43cdd4799a /codegen.py | |
parent | d2c03b01f8f9afcc66ec30a5151e3030c32ef128 (diff) | |
parent | 0564f1071aa62ae82fd0eb59c87a6a168c723ad6 (diff) | |
download | rabbitmq-server-756aef9f9f8b4995352bbe62a57b44e0284a9448.tar.gz |
Merging default ? bug 16653
Diffstat (limited to 'codegen.py')
-rw-r--r-- | codegen.py | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -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) |