diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-19 22:58:49 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-19 22:58:49 +0000 |
commit | fc8e0dff519d3c5a0a15f483ec094b9aa7f011e9 (patch) | |
tree | d935886fc801d1a6da20a6d17002e9e8d69d3a20 /ethereal_be.py | |
parent | cc18ae2d70235423c93e67a2eb6b998d74d5f74c (diff) | |
download | wireshark-fc8e0dff519d3c5a0a15f483ec094b9aa7f011e9.tar.gz wireshark-fc8e0dff519d3c5a0a15f483ec094b9aa7f011e9.tar.bz2 wireshark-fc8e0dff519d3c5a0a15f483ec094b9aa7f011e9.zip |
From Frank Singleton:
- find all union/struct references and store in lists.
This includes embedded unions and structs.
- pass the struct and union lists onto ethereal_gen.py
- print all found nodes at DEBUG
svn path=/trunk/; revision=4226
Diffstat (limited to 'ethereal_be.py')
-rw-r--r-- | ethereal_be.py | 182 |
1 files changed, 164 insertions, 18 deletions
diff --git a/ethereal_be.py b/ethereal_be.py index 920ba7c05d..4863137ef3 100644 --- a/ethereal_be.py +++ b/ethereal_be.py @@ -1,6 +1,6 @@ # -*- python -*- # -# $Id: ethereal_be.py,v 1.5 2001/10/12 17:14:41 guy Exp $ +# $Id: ethereal_be.py,v 1.6 2001/11/19 22:58:49 guy Exp $ # # File : ethereal_be.py # @@ -45,14 +45,17 @@ # # Strategy. # -# Crawl all the way down all branches until I hit "Operation" nodes -# and "Attribute" nodes. Then store the "operation" nodes in oplist[] -# and "attribute" nodes in atlist[]. +# Crawl all the way down all branches until I hit "Operation", "Enum", "Attribute", +# "Struct" and "Union" nodes. Then store these nodes in lists. # -# Pass the obj.oplist[] and obj.atlist[](via an object ref) to the src code +# Pass these lists (via an object ref) to the src code # generator (ethereal_gen) class and let it do the hard work ! # # +# Dont forget structs can contain embedded structs etc .. so dont forget +# to peek inside and check :-) +# +# """Ethereal IDL compiler back-end.""" @@ -63,20 +66,28 @@ from os import path from ethereal_gen import ethereal_gen_C # -# This class finds the "Operation" nodes and "Attribute" nodes, and hands them off -# to an instance of the source code generator class "ethereal_gen" +# This class finds the "Operation" nodes ,Enum Nodes, "Attribute" nodes, Struct Nodes +# and Union Nodes. Then it hands them off to an instance of the source code generator +# class "ethereal_gen" # class EtherealVisitor: + + DEBUG = 0 # debug flag def __init__(self, st): self.st = st self.oplist = [] # list of operation nodes self.enlist = [] # list of enum nodes self.atlist = [] # list of attribute nodes + self.stlist = [] # list of struct nodes + self.unlist = [] # list of union nodes def visitAST(self, node): + if self.DEBUG: + print "XXX visitAST() node = ", node + for n in node.declarations(): if isinstance(n, idlast.Module): self.visitModule(n) @@ -88,9 +99,21 @@ class EtherealVisitor: self.visitAttribute(n) if isinstance(n, idlast.Enum): self.visitEnum(n) - + if isinstance(n, idlast.Struct): + self.visitStruct(n) + if isinstance(n, idlast.Union): + self.visitUnion(n) + # Check for Typedef structs and unions + + if isinstance(n, idlast.Typedef): + self.visitTypedef(n) # who are you ? + + def visitModule(self, node): + if self.DEBUG: + print "XXX visitModule() node = ", node + for n in node.definitions(): if isinstance(n, idlast.Module): self.visitModule(n) @@ -102,9 +125,21 @@ class EtherealVisitor: self.visitAttribute(n) if isinstance(n, idlast.Enum): self.visitEnum(n) - + if isinstance(n, idlast.Struct): + self.visitStruct(n) + if isinstance(n, idlast.Union): + self.visitUnion(n) + + # Check for Typedef structs and unions + + if isinstance(n, idlast.Typedef): + self.visitTypedef(n) # who are you ? + + def visitInterface(self, node): - #if node.mainFile(): + if self.DEBUG: + print "XXX visitInterface() node = ", node + for c in node.callables(): if isinstance(c, idlast.Operation): self.visitOperation(c) @@ -113,7 +148,22 @@ class EtherealVisitor: for d in node.contents(): if isinstance(d, idlast.Enum): - self.visitEnum(d) + self.visitEnum(d) + + if isinstance(d, idlast.Struct): + self.visitStruct(d) + + if isinstance(d, idlast.Union): + self.visitUnion(d) + + # Check for Typedef structs and unions + + if isinstance(d, idlast.Typedef): + self.visitTypedef(d) # who are you ? + + + + # # visitOperation # @@ -122,7 +172,8 @@ class EtherealVisitor: # def visitOperation(self,opnode): - self.oplist.append(opnode) # store operation node + if not opnode in self.oplist: + self.oplist.append(opnode) # store operation node # # visitAttribute @@ -132,21 +183,100 @@ class EtherealVisitor: # def visitAttribute(self,atnode): - self.atlist.append(atnode) # store attribute node + if not atnode in self.atlist: + self.atlist.append(atnode) # store attribute node + # # visitEnum # - # populates the enum node list "enumlist" + # populates the Enum node list "enlist" # # def visitEnum(self,enode): - #print "XXX - enum found" , enode - self.enlist.append(enode) # store enum node + if not enode in self.enlist: + self.enlist.append(enode) # store enum node if unique + + # + # visitTypedef + # + # Search to see if its a typedef'd struct, union, or enum + # + # eg: typdef enum colors {red, green, blue } mycolors; + # + + def visitTypedef(self,td): + d = td.aliasType() # get Type, possibly Declared + if isinstance(d,idltype.Declared): + self.visitDeclared(d) + + + # + # visitDeclared + # + # Search to see if its a struct, union, or enum + # + # + + def visitDeclared(self,d): + if isinstance(d,idltype.Declared): + sue = d.decl() # grab the struct or union or enum + + if isinstance(sue, idlast.Struct): + self.visitStruct(sue) + if isinstance(sue, idlast.Union): + self.visitUnion(sue) + if isinstance(sue, idlast.Enum): + self.visitEnum(sue) + + + # + # visitStruct + # + # populates the struct node list "stlist" + # and checks its members also + # + # + + def visitStruct(self,stnode): + if not stnode in self.stlist: + self.stlist.append(stnode) # store struct node if unique and avoid recursive loops + # if we come across recursive structs + + for m in stnode.members(): # find embedded struct definitions within this + mt = m.memberType() + if isinstance(mt,idltype.Declared): + self.visitDeclared(mt) # if declared, then check it out + + + + # + # visitUnion + # + # populates the struct node list "unlist" + # and checks its members also + # + # + + def visitUnion(self,unnode): + if not unnode in self.unlist: + self.unlist.append(unnode) # store union node if unique + + if unnode.constrType(): # enum defined within switch type + if isinstance(unnode.switchType(),idltype.Declared): + self.visitDeclared(unnode.switchType()) + + for c in unnode.cases(): + ct = c.caseType() + if isinstance(ct,idltype.Declared): + self.visitDeclared(ct) # if declared, then check it out + + + def run(tree, args): st = output.Stream(sys.stdout, 4) # set indent for stream @@ -159,16 +289,32 @@ def run(tree, args): # # Assumption: Name is of the form abcdefg.xyz (eg: CosNaming.idl) # - + fname = path.basename(tree.file()) # grab basename only, dont care about path nl = string.split(fname,".")[0] # split name of main IDL file using "." as separator # and grab first field (eg: CosNaming) + if ev.DEBUG: + for i in ev.oplist: + print "XXX - Operation node ", i, " repoId() = ", i.repoId() + for i in ev.atlist: + print "XXX - Attribute node ", i, " identifiers() = ", i.identifiers() + for i in ev.enlist: + print "XXX - Enum node ", i, " repoId() = ", i.repoId() + for i in ev.stlist: + print "XXX - Struct node ", i, " repoId() = ", i.repoId() + for i in ev.unlist: + print "XXX - Union node ", i, " repoId() = ", i.repoId() + + # create a C generator object # and generate some C code + + + eg = ethereal_gen_C(ev.st, string.upper(nl), string.lower(nl), string.capitalize(nl) + " Dissector Using GIOP API") - eg.genCode(ev.oplist, ev.atlist, ev.enlist) # pass them onto the C generator + eg.genCode(ev.oplist, ev.atlist, ev.enlist, ev.stlist, ev.unlist) # pass them onto the C generator |