forked from Juniper/contrail-generateDS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ccmap.py
187 lines (162 loc) · 7.65 KB
/
ccmap.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#
# Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
#
import idl_parser
from ifmap_model import IFMapIdentifier, IFMapMetadata, ElementXsdType
from ifmap_classgen import IFMapClassGenerator, IFMapImplGenerator
from ifmap_parser import IFMapParserGenerator
from ifmap_frontend import IFMapApiGenerator
from java_api import JavaApiGenerator
from golang_api import GoLangApiGenerator
class IFMapGenerator(object):
""" IFMap generator
Step 1. Build a list of data structures to be generated.
Step 2. Generate C++ classes.
Step 3. Generate C++ decoder
Step 4. Generate xsd corresponding to data structures.
"""
def __init__(self, parser, genCategory):
self._Parser = parser
self._idl_parser = None
self._Identifiers = {}
self._Metadata = {}
# elements to be processed after first pass
self._DeferredElements = []
self._cTypesDict = {}
self._genCategory = genCategory
def _BuildDataModel(self, children):
for child in children:
if not child.complexType:
#print 'element: ' + child.getCleanName()
self._ProcessElement(child)
# Handle 'all' and any other deferred metadata
for defer_info in self._DeferredElements:
(element, annotation) = defer_info
if self._idl_parser.IsAllProperty(annotation):
meta = self._MetadataLocate(element, annotation)
meta.SetSchemaElement(element)
meta.setParent('all')
for identifier in self._Identifiers.values():
identifier.SetProperty(meta)
for idn in self._Identifiers.values():
idn.Resolve(self._Parser.ElementDict, self._cTypesDict)
for meta in self._Metadata.values():
meta.Resolve(self._Parser.ElementDict, self._cTypesDict)
def _ProcessElement(self, element):
""" Process an element from the schema. This can be either an
identifier or meta-data element.
"""
if element.getSchemaType() == 'IdentityType':
self._ProcessIdentifier(element)
else:
annotation = self._idl_parser.Find(element.getName())
self._ProcessMetadata(element, annotation)
def _ProcessIdentifier(self, element):
identifier = self._IdentifierLocate(element.getName())
identifier.SetSchemaElement(element)
def _ProcessMetadata(self, element, annotation):
if not annotation:
print "WARNING: no annotation for element " + str(element)
return
if self._idl_parser.IsAllProperty(annotation):
self._DeferredElements.append((element, annotation))
return
meta = self._MetadataLocate(element, annotation)
meta.SetSchemaElement(element)
if self._idl_parser.IsProperty(annotation):
for ident_name in annotation[1]:
identifier = self._IdentifierLocate(ident_name)
meta.setParent(identifier)
identifier.SetProperty(meta)
else:
(from_name, to_name, attrs) = \
self._idl_parser.GetLinkInfo(element.getName())
from_ident = self._IdentifierLocate(from_name)
to_ident = self._IdentifierLocate(to_name)
from_ident.addLinkInfo(meta, to_ident, attrs)
to_ident.addBackLinkInfo(meta, from_ident, attrs)
def _IdentifierLocate(self, name):
if name in self._Identifiers:
return self._Identifiers[name]
identifier = IFMapIdentifier(name)
self._Identifiers[name] = identifier
return identifier
def _MetadataLocate(self, element, annotation):
name = element.getName()
if name in self._Metadata:
return self._Metadata[name]
typename = ElementXsdType(element)
# generate a link in case this is an empty complex type.
if typename and typename in self._Parser.ElementDict:
xtype = self._Parser.ElementDict[typename]
if xtype and xtype.isComplex() and len(xtype.getChildren()) == 0:
typename = None
meta = IFMapMetadata.Create(name,
self._idl_parser.IsProperty(annotation),
annotation, typename)
self._Metadata[name] = meta
return meta
def _GenerateBackendClassDefinitions(self):
hfilename = self._Parser.outFilename + '_types.h'
hfile = self._Parser.makeFile(hfilename)
classgen = IFMapClassGenerator(self._cTypesDict)
classgen.Generate(hfile, self._Identifiers, self._Metadata)
def _GenerateBackendClassImpl(self):
hfilename = self._Parser.outFilename + '_types.h'
filename = self._Parser.outFilename + '_types.cc'
cfile = self._Parser.makeFile(filename)
classgen = IFMapImplGenerator(self._cTypesDict)
classgen.Generate(cfile, hfilename, self._Identifiers, self._Metadata)
filename = self._Parser.outFilename + '_server.cc'
sfile = self._Parser.makeFile(filename)
classgen.GenerateServer(sfile, hfilename,
self._Identifiers, self._Metadata)
filename = self._Parser.outFilename + '_client.cc'
clntfile = self._Parser.makeFile(filename)
classgen.GenerateClient(clntfile, hfilename,
self._Identifiers, self._Metadata)
filename = self._Parser.outFilename + '_agent.cc'
clntfile = self._Parser.makeFile(filename)
classgen.GenerateAgent(clntfile, hfilename,
self._Identifiers, self._Metadata)
def _GenerateBackendParsers(self):
hfilename = self._Parser.outFilename + '_types.h'
cfilename = self._Parser.outFilename + '_parser.cc'
cfile = self._Parser.makeFile(cfilename)
parsergen = IFMapParserGenerator(self._cTypesDict)
parsergen.Generate(cfile, hfilename, self._Identifiers, self._Metadata)
sfilename = self._Parser.outFilename + '_server.cc'
sfile = open(sfilename, 'a')
parsergen.GenerateServer(sfile, self._Metadata)
sfilename = self._Parser.outFilename + '_agent.cc'
sfile = open(sfilename, 'a')
parsergen.GenerateAgent(sfile, self._Identifiers, self._Metadata)
def _GenerateFrontendClassDefinitions(self, xsd_root):
apigen = IFMapApiGenerator(self._Parser, xsd_root,
self._Identifiers, self._Metadata)
apigen.Generate(self._Parser.outFilename)
def _GenerateJavaApi(self, xsd_root):
apigen = JavaApiGenerator(self._Parser, self._cTypesDict,
self._Identifiers, self._Metadata)
apigen.Generate(self._Parser.outFilename)
def _GenerateGoLangApi(self, xsd_root):
apigen = GoLangApiGenerator(self._Parser, self._cTypesDict,
self._Identifiers, self._Metadata)
apigen.Generate(self._Parser.outFilename)
def setLanguage(self, lang):
pass
def generate(self, root, infile, outFilename):
self._idl_parser = idl_parser.IDLParser()
self._idl_parser.Parse(infile)
children = root.getChildren()
self._BuildDataModel(children)
if self._genCategory == 'ifmap-backend':
self._GenerateBackendClassDefinitions()
self._GenerateBackendClassImpl()
self._GenerateBackendParsers()
elif self._genCategory == 'ifmap-frontend':
self._GenerateFrontendClassDefinitions(root)
elif self._genCategory == 'java-api':
self._GenerateJavaApi(root)
elif self._genCategory == 'golang-api':
self._GenerateGoLangApi(root)