From f7bd98578a27c34889447cb8cc5b506ee8262a6a Mon Sep 17 00:00:00 2001 From: Sven Gestegard Robertz <sven.robertz@cs.lth.se> Date: Mon, 25 May 2015 14:28:49 +0200 Subject: [PATCH] Python refactoring: changed name to dict --- compiler/2014/Python_CodeGen.jrag | 27 ++++++++++++++++++++++----- lib/python/labcomm2014/LabComm.py | 25 +++++++++++++++++-------- 2 files changed, 39 insertions(+), 13 deletions(-) diff --git a/compiler/2014/Python_CodeGen.jrag b/compiler/2014/Python_CodeGen.jrag index ac74601..c2aa961 100644 --- a/compiler/2014/Python_CodeGen.jrag +++ b/compiler/2014/Python_CodeGen.jrag @@ -115,9 +115,11 @@ aspect PythonTypes { public void TypeDecl.Python_genSignatureAndTypedef(Python_env env) { env.println("class " + getName() + "(object):"); env.indent(); - env.println("typedef = labcomm2014.typedef('" + getName() + "',"); + env.print("typedef = labcomm2014.typedef("); + Python_genIntentions(env); + env.println(","); env.indent(); - getDataType().Python_genTypedef(env); + getTypeInstance().Python_genTypedef(env); env.unindent(); env.println(")"); env.unindent(); @@ -127,19 +129,34 @@ aspect PythonTypes { public void SampleDecl.Python_genSignatureAndTypedef(Python_env env) { env.println("class " + getName() + "(object):"); env.indent(); - env.println("signature = labcomm2014.sample('" + getName() + "', "); + env.print("signature = labcomm2014.sample("); + Python_genIntentions(env); + env.println(","); env.indent(); getDataType().Python_genSignature(env); env.unindent(); env.println(")"); - env.println("typedef = labcomm2014.sample('" + getName() + "', "); + env.print("typedef = labcomm2014.sample("); + Python_genIntentions(env); + env.println(","); env.indent(); - getDataType().Python_genTypedef(env); + getTypeInstance().Python_genTypedef(env); env.unindent(); env.println(")"); env.unindent(); env.println(); } + public void Decl.Python_genIntentions(Python_env env) { + getTypeInstance().Python_genIntentions(env); + } + + public void TypeInstance.Python_genIntentions(Python_env env) { + env.print("{'':'"+getName()+"'}"); + } + + public void TypeInstance.Python_genTypedef(Python_env env) { + getDataType().Python_genTypedef(env); + } public void UserType.Python_genSignature(Python_env env) { lookupType(getName()).getDataType().Python_genSignature(env); diff --git a/lib/python/labcomm2014/LabComm.py b/lib/python/labcomm2014/LabComm.py index 9fdaf79..7e6cba7 100644 --- a/lib/python/labcomm2014/LabComm.py +++ b/lib/python/labcomm2014/LabComm.py @@ -393,8 +393,11 @@ class SAMPLE(primitive): # Aggregate types # class sampledef_or_sampleref_or_typedef(type_decl): - def __init__(self, name=None, decl=None): - self.name = name + def __init__(self, intentions=None, decl=None): + if intentions is not None and '' in intentions: + self.name = intentions[''] + else: + self.name = None self.decl = decl def encode_decl(self, encoder): @@ -418,7 +421,7 @@ class sampledef_or_sampleref_or_typedef(type_decl): length = decoder.decode_packed32() decl = decoder.decode_decl() result = self.__class__.__new__(self.__class__) - result.__init__(name=name, decl=decl) + result.__init__(intentions={'':name}, decl=decl) self.add_index(decoder, index, result) return result @@ -455,17 +458,23 @@ class sample_def(sampledef_or_sampleref_or_typedef): decoder.add_decl(decl, index) def rename(self, name): - return sample_def(name=name, decl=self.decl) + newIntentions = intentions.copy() + newIntentions['']=name + return sample_def(newIntentions, decl=self.decl) class sample_ref(sampledef_or_sampleref_or_typedef): type_index = i_SAMPLE_REF type_name = 'sample_ref' - def __init__(self, name=None, decl=None, sample=None): - self.name = name + def __init__(self, intentions=None, decl=None, sample=None): + if intentions is not None and '' in intentions: + self.name = intentions[''] + print "sampleref: name = %d" % self.name + else: + self.name = None self.decl = decl - if sample == None and name != None and decl != None: - self.sample = sample_def(name, decl) + if sample == None and self.name != None and decl != None: + self.sample = sample_def(intentions, decl) else: self.sample = sample -- GitLab