author | etisserant |
Tue, 19 Feb 2008 14:52:40 +0100 | |
changeset 401 | 2c90876b9751 |
parent 366 | 47763dd15e00 |
child 418 | 64a8c24b61a5 |
permissions | -rw-r--r-- |
0 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
73 | 3 |
|
4 |
#This file is part of CanFestival, a library implementing CanOpen Stack. |
|
5 |
# |
|
6 |
#Copyright (C): Edouard TISSERANT and Francis DUPIN |
|
7 |
# |
|
8 |
#See COPYING file for copyrights details. |
|
9 |
# |
|
10 |
#This library is free software; you can redistribute it and/or |
|
11 |
#modify it under the terms of the GNU Lesser General Public |
|
12 |
#License as published by the Free Software Foundation; either |
|
13 |
#version 2.1 of the License, or (at your option) any later version. |
|
14 |
# |
|
15 |
#This library is distributed in the hope that it will be useful, |
|
16 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
18 |
#Lesser General Public License for more details. |
|
19 |
# |
|
20 |
#You should have received a copy of the GNU Lesser General Public |
|
21 |
#License along with this library; if not, write to the Free Software |
|
22 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
0 | 23 |
|
24 |
from node import * |
|
25 |
from types import * |
|
26 |
||
27 |
import re, os |
|
28 |
||
29 |
word_model = re.compile('([a-zA-Z_0-9]*)') |
|
30 |
type_model = re.compile('([\_A-Z]*)([0-9]*)') |
|
31 |
range_model = re.compile('([\_A-Z]*)([0-9]*)\[([\-0-9]*)-([\-0-9]*)\]') |
|
32 |
||
33 |
categories = [("SDO_SVR", 0x1200, 0x127F), ("SDO_CLT", 0x1280, 0x12FF), |
|
34 |
("PDO_RCV", 0x1400, 0x15FF), ("PDO_RCV_MAP", 0x1600, 0x17FF), |
|
35 |
("PDO_TRS", 0x1800, 0x19FF), ("PDO_TRS_MAP", 0x1A00, 0x1BFF)] |
|
36 |
index_categories = ["firstIndex", "lastIndex"] |
|
37 |
||
38 |
generated_tag = """\n/* File generated by gen_cfile.py. Should not be modified. */\n""" |
|
39 |
||
188 | 40 |
internal_types = {} |
41 |
||
0 | 42 |
# Format a string for making a C++ variable |
43 |
def FormatName(name): |
|
44 |
wordlist = [word for word in word_model.findall(name) if word != ''] |
|
227 | 45 |
return "_".join(wordlist) |
0 | 46 |
|
47 |
# Extract the informations from a given type name |
|
48 |
def GetValidTypeInfos(typename): |
|
188 | 49 |
if typename in internal_types: |
50 |
return internal_types[typename] |
|
51 |
else: |
|
52 |
result = type_model.match(typename) |
|
53 |
if result: |
|
54 |
values = result.groups() |
|
55 |
if values[0] == "UNSIGNED" and int(values[1]) in [i * 8 for i in xrange(1, 9)]: |
|
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
56 |
typeinfos = ("UNS%s"%values[1], "", "uint%s"%values[1], True) |
188 | 57 |
elif values[0] == "INTEGER" and int(values[1]) in [i * 8 for i in xrange(1, 9)]: |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
58 |
typeinfos = ("INTEGER%s"%values[1], "", "int%s"%values[1], False) |
188 | 59 |
elif values[0] == "REAL" and int(values[1]) in (32, 64): |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
60 |
typeinfos = ("%s%s"%(values[0], values[1]), "", "real%s"%values[1], False) |
188 | 61 |
elif values[0] == "VISIBLE_STRING": |
62 |
if values[1] == "": |
|
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
63 |
typeinfos = ("UNS8", "[10]", "visible_string", False) |
188 | 64 |
else: |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
65 |
typeinfos = ("UNS8", "[%s]"%values[1], "visible_string", False) |
188 | 66 |
elif values[0] == "DOMAIN": |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
67 |
typeinfos = ("UNS8*", "", "domain", True) |
188 | 68 |
elif values[0] == "BOOLEAN": |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
69 |
typeinfos = ("UNS8", "", "boolean", True) |
188 | 70 |
else: |
71 |
raise ValueError, """!!! %s isn't a valid type for CanFestival."""%typename |
|
72 |
internal_types[typename] = typeinfos |
|
73 |
else: |
|
74 |
raise ValueError, """!!! %s isn't a valid type for CanFestival."""%typename |
|
75 |
return typeinfos |
|
0 | 76 |
|
77 |
def WriteFile(filepath, content): |
|
78 |
cfile = open(filepath,"w") |
|
79 |
cfile.write(content) |
|
80 |
cfile.close() |
|
81 |
||
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
82 |
def GenerateFileContent(Node, headerfilepath): |
0 | 83 |
global type |
188 | 84 |
global internal_types |
0 | 85 |
texts = {} |
86 |
texts["maxPDOtransmit"] = 0 |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
87 |
texts["NodeName"] = Node.GetNodeName() |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
88 |
texts["NodeID"] = Node.GetNodeID() |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
89 |
texts["NodeType"] = Node.GetNodeType() |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
90 |
texts["Description"] = Node.GetNodeDescription() |
0 | 91 |
texts["iam_a_slave"] = 0 |
92 |
if (texts["NodeType"] == "slave"): |
|
93 |
texts["iam_a_slave"] = 1 |
|
94 |
||
95 |
# Compiling lists of indexes |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
96 |
rangelist = [idx for idx in Node.GetIndexes() if 0 <= idx <= 0x260] |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
97 |
listIndex = [idx for idx in Node.GetIndexes() if 0x1000 <= idx <= 0xFFFF] |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
98 |
communicationlist = [idx for idx in Node.GetIndexes() if 0x1000 <= idx <= 0x11FF] |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
99 |
sdolist = [idx for idx in Node.GetIndexes() if 0x1200 <= idx <= 0x12FF] |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
100 |
pdolist = [idx for idx in Node.GetIndexes() if 0x1400 <= idx <= 0x1BFF] |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
101 |
variablelist = [idx for idx in Node.GetIndexes() if 0x2000 <= idx <= 0xBFFF] |
0 | 102 |
|
103 |
#------------------------------------------------------------------------------- |
|
104 |
# Declaration of the value range types |
|
105 |
#------------------------------------------------------------------------------- |
|
106 |
||
107 |
valueRangeContent = "" |
|
286
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
108 |
strDefine = "\n#define valueRange_EMC 0x9F /* Type for index 0x1003 subindex 0x00 (only set of value 0 is possible) */" |
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
109 |
strSwitch = """ case valueRange_EMC: |
288 | 110 |
if (*(UNS8*)value != (UNS8)0) return OD_VALUE_RANGE_EXCEEDED; |
286
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
111 |
break;\n""" |
313 | 112 |
internal_types["valueRange_EMC"] = ("UNS8", "", "valueRange_EMC", True) |
0 | 113 |
num = 0 |
114 |
for index in rangelist: |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
115 |
rangename = Node.GetEntryName(index) |
0 | 116 |
result = range_model.match(rangename) |
117 |
if result: |
|
118 |
num += 1 |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
119 |
typeindex = Node.GetEntry(index, 1) |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
120 |
typename = Node.GetTypeName(typeindex) |
0 | 121 |
typeinfos = GetValidTypeInfos(typename) |
188 | 122 |
internal_types[rangename] = (typeinfos[0], typeinfos[1], "valueRange_%d"%num) |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
123 |
minvalue = Node.GetEntry(index, 2) |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
124 |
maxvalue = Node.GetEntry(index, 3) |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
125 |
strDefine += "\n#define valueRange_%d 0x%02X /* Type %s, %s < value < %s */"%(num,index,typeinfos[0],str(minvalue),str(maxvalue)) |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
126 |
strSwitch += " case valueRange_%d:\n"%(num) |
313 | 127 |
if typeinfos[3] and minvalue <= 0: |
289
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
128 |
strSwitch += " /* Negative or null low limit ignored because of unsigned type */;\n" |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
129 |
else: |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
130 |
strSwitch += " if (*(%s*)value < (%s)%s) return OD_VALUE_TOO_LOW;\n"%(typeinfos[0],typeinfos[0],str(minvalue)) |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
131 |
strSwitch += " if (*(%s*)value > (%s)%s) return OD_VALUE_TOO_HIGH;\n"%(typeinfos[0],typeinfos[0],str(maxvalue)) |
a22ce0314063
Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents:
288
diff
changeset
|
132 |
strSwitch += " break;\n" |
0 | 133 |
|
134 |
valueRangeContent += strDefine |
|
135 |
valueRangeContent += "\nUNS32 %(NodeName)s_valueRangeTest (UNS8 typeValue, void * value)\n{"%texts |
|
136 |
valueRangeContent += "\n switch (typeValue) {\n" |
|
137 |
valueRangeContent += strSwitch |
|
138 |
valueRangeContent += " }\n return 0;\n}\n" |
|
139 |
||
140 |
#------------------------------------------------------------------------------- |
|
141 |
# Creation of the mapped variables and object dictionary |
|
142 |
#------------------------------------------------------------------------------- |
|
143 |
||
144 |
mappedVariableContent = "" |
|
145 |
strDeclareHeader = "" |
|
146 |
strDeclareCallback = "" |
|
147 |
indexContents = {} |
|
148 |
indexCallbacks = {} |
|
149 |
for index in listIndex: |
|
150 |
texts["index"] = index |
|
151 |
strIndex = "" |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
152 |
entry_infos = Node.GetEntryInfos(index) |
229 | 153 |
texts["EntryName"] = entry_infos["name"].encode('ascii','replace') |
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
154 |
values = Node.GetEntry(index) |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
155 |
callbacks = Node.HasEntryCallbacks(index) |
0 | 156 |
if index in variablelist: |
157 |
strIndex += "\n/* index 0x%(index)04X : Mapped variable %(EntryName)s */\n"%texts |
|
158 |
else: |
|
159 |
strIndex += "\n/* index 0x%(index)04X : %(EntryName)s. */\n"%texts |
|
160 |
||
161 |
# Entry type is VAR |
|
162 |
if type(values) != ListType: |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
163 |
subentry_infos = Node.GetSubentryInfos(index, 0) |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
164 |
typename = Node.GetTypeName(subentry_infos["type"]) |
0 | 165 |
typeinfos = GetValidTypeInfos(typename) |
166 |
texts["subIndexType"] = typeinfos[0] |
|
167 |
texts["suffixe"] = typeinfos[1] |
|
168 |
if typeinfos[2] == "visible_string": |
|
169 |
texts["value"] = "\"%s\""%values |
|
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
170 |
texts["comment"] = "" |
223 | 171 |
elif typeinfos[2] == "domain": |
172 |
texts["value"] = "\"%s\""%''.join(["\\x%2.2x"%ord(char) for char in value]) |
|
173 |
texts["comment"] = "" |
|
0 | 174 |
else: |
175 |
texts["value"] = "0x%X"%values |
|
76 | 176 |
texts["comment"] = "\t/* %s */"%str(values) |
0 | 177 |
if index in variablelist: |
178 |
texts["name"] = FormatName(subentry_infos["name"]) |
|
76 | 179 |
strDeclareHeader += "extern %(subIndexType)s %(name)s%(suffixe)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x00*/\n"%texts |
0 | 180 |
if callbacks: |
76 | 181 |
strDeclareHeader += "extern ODCallback_t %(name)s_callbacks[];\t\t/* Callbacks of index0x%(index)04X */\n"%texts |
182 |
mappedVariableContent += "%(subIndexType)s %(name)s%(suffixe)s = %(value)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x00 */\n"%texts |
|
0 | 183 |
else: |
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
184 |
strIndex += " %(subIndexType)s %(NodeName)s_obj%(index)04X%(suffixe)s = %(value)s;%(comment)s\n"%texts |
0 | 185 |
values = [values] |
186 |
else: |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
187 |
subentry_infos = Node.GetSubentryInfos(index, 0) |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
188 |
typename = Node.GetTypeName(subentry_infos["type"]) |
188 | 189 |
typeinfos = GetValidTypeInfos(typename) |
286
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
190 |
if index == 0x1003: |
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
191 |
texts["value"] = 0 |
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
192 |
else: |
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
193 |
texts["value"] = values[0] |
188 | 194 |
texts["subIndexType"] = typeinfos[0] |
195 |
strIndex += " %(subIndexType)s %(NodeName)s_highestSubIndex_obj%(index)04X = %(value)d; /* number of subindex - 1*/\n"%texts |
|
0 | 196 |
|
197 |
# Entry type is RECORD |
|
198 |
if entry_infos["struct"] & OD_IdenticalSubindexes: |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
199 |
subentry_infos = Node.GetSubentryInfos(index, 1) |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
200 |
typename = Node.GetTypeName(subentry_infos["type"]) |
0 | 201 |
typeinfos = GetValidTypeInfos(typename) |
202 |
texts["subIndexType"] = typeinfos[0] |
|
203 |
texts["suffixe"] = typeinfos[1] |
|
204 |
texts["length"] = values[0] |
|
205 |
if index in variablelist: |
|
206 |
texts["name"] = FormatName(entry_infos["name"]) |
|
76 | 207 |
strDeclareHeader += "extern %(subIndexType)s %(name)s[%(length)d]%(suffixe)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x01 - 0x%(length)02X */\n"%texts |
0 | 208 |
if callbacks: |
76 | 209 |
strDeclareHeader += "extern ODCallback_t %(name)s_callbacks[];\t\t/* Callbacks of index0x%(index)04X */\n"%texts |
210 |
mappedVariableContent += "%(subIndexType)s %(name)s[] =\t\t/* Mapped at index 0x%(index)04X, subindex 0x01 - 0x%(length)02X */\n {\n"%texts |
|
0 | 211 |
for subIndex, value in enumerate(values): |
212 |
sep = "," |
|
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
213 |
comment = "" |
0 | 214 |
if subIndex > 0: |
215 |
if subIndex == len(values)-1: |
|
216 |
sep = "" |
|
217 |
if typeinfos[2] == "visible_string": |
|
218 |
value = "\"%s\""%value |
|
223 | 219 |
elif typeinfos[2] == "domain": |
220 |
value = "\"%s\""%''.join(["\\x%2.2x"%ord(char) for char in value]) |
|
227 | 221 |
else: |
76 | 222 |
comment = "\t/* %s */"%str(value) |
0 | 223 |
value = "0x%X"%value |
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
224 |
mappedVariableContent += " %s%s%s\n"%(value, sep, comment) |
28 | 225 |
mappedVariableContent += " };\n" |
0 | 226 |
else: |
227 |
strIndex += " %(subIndexType)s %(NodeName)s_obj%(index)04X[] = \n {\n"%texts |
|
228 |
for subIndex, value in enumerate(values): |
|
229 |
sep = "," |
|
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
230 |
comment = "" |
0 | 231 |
if subIndex > 0: |
232 |
if subIndex == len(values)-1: |
|
233 |
sep = "" |
|
234 |
if typeinfos[2] == "visible_string": |
|
235 |
value = "\"%s\""%value |
|
182
988f2b302aa6
Adding support for importing and exporting EDS files
lbessard
parents:
176
diff
changeset
|
236 |
elif typeinfos[2] == "domain": |
176 | 237 |
value = "\"%s\""%''.join(["\\x%2.2x"%ord(char) for char in value]) |
0 | 238 |
else: |
76 | 239 |
comment = "\t/* %s */"%str(value) |
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
240 |
value = "0x%X"%value |
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
241 |
strIndex += " %s%s%s\n"%(value, sep, comment) |
0 | 242 |
strIndex += " };\n" |
243 |
else: |
|
244 |
||
66
94212a58c097
gen_cfile.py modified for avoiding possible conflict in mapped variable names
lbessard
parents:
64
diff
changeset
|
245 |
texts["parent"] = FormatName(entry_infos["name"]) |
0 | 246 |
# Entry type is ARRAY |
247 |
for subIndex, value in enumerate(values): |
|
248 |
texts["subIndex"] = subIndex |
|
249 |
if subIndex > 0: |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
250 |
subentry_infos = Node.GetSubentryInfos(index, subIndex) |
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
251 |
typename = Node.GetTypeName(subentry_infos["type"]) |
0 | 252 |
typeinfos = GetValidTypeInfos(typename) |
253 |
texts["subIndexType"] = typeinfos[0] |
|
254 |
texts["suffixe"] = typeinfos[1] |
|
255 |
if typeinfos[2] == "visible_string": |
|
256 |
texts["value"] = "\"%s\""%value |
|
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
257 |
texts["comment"] = "" |
223 | 258 |
elif typeinfos[2] == "domain": |
259 |
texts["value"] = "\"%s\""%''.join(["\\x%2.2x"%ord(char) for char in value]) |
|
260 |
texts["comment"] = "" |
|
227 | 261 |
else: |
0 | 262 |
texts["value"] = "0x%X"%value |
76 | 263 |
texts["comment"] = "\t/* %s */"%str(value) |
0 | 264 |
texts["name"] = FormatName(subentry_infos["name"]) |
265 |
if index in variablelist: |
|
76 | 266 |
strDeclareHeader += "extern %(subIndexType)s %(parent)s_%(name)s%(suffixe)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x%(subIndex)02X */\n"%texts |
267 |
mappedVariableContent += "%(subIndexType)s %(parent)s_%(name)s%(suffixe)s = %(value)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x%(subIndex)02X */\n"%texts |
|
0 | 268 |
else: |
5
e4365e7d47f0
Bug on number in hexa computed by gen_cfile corrected
lbessard
parents:
0
diff
changeset
|
269 |
strIndex += " %(subIndexType)s %(NodeName)s_obj%(index)04X_%(name)s%(suffixe)s = %(value)s;%(comment)s\n"%texts |
0 | 270 |
if callbacks: |
76 | 271 |
strDeclareHeader += "extern ODCallback_t %(parent)s_callbacks[];\t\t/* Callbacks of index0x%(index)04X */\n"%texts |
0 | 272 |
|
273 |
# Generating Dictionary C++ entry |
|
274 |
if callbacks: |
|
275 |
if index in variablelist: |
|
276 |
name = FormatName(entry_infos["name"]) |
|
277 |
else: |
|
278 |
name = "%(NodeName)s_Index%(index)04X"%texts |
|
279 |
strIndex += " ODCallback_t %s_callbacks[] = \n {\n"%name |
|
280 |
for subIndex in xrange(len(values)): |
|
281 |
strIndex += " NULL,\n" |
|
282 |
strIndex += " };\n" |
|
283 |
indexCallbacks[index] = "*callbacks = %s_callbacks; "%name |
|
284 |
else: |
|
285 |
indexCallbacks[index] = "" |
|
286 |
strIndex += " subindex %(NodeName)s_Index%(index)04X[] = \n {\n"%texts |
|
287 |
for subIndex in xrange(len(values)): |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
288 |
subentry_infos = Node.GetSubentryInfos(index, subIndex) |
0 | 289 |
if subIndex < len(values) - 1: |
290 |
sep = "," |
|
291 |
else: |
|
292 |
sep = "" |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
293 |
typename = Node.GetTypeName(subentry_infos["type"]) |
0 | 294 |
typeinfos = GetValidTypeInfos(typename) |
295 |
if subIndex == 0: |
|
286
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
296 |
if index == 0x1003: |
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
297 |
typeinfos = GetValidTypeInfos("valueRange_EMC") |
0 | 298 |
if entry_infos["struct"] & OD_MultipleSubindexes: |
299 |
name = "%(NodeName)s_highestSubIndex_obj%(index)04X"%texts |
|
300 |
elif index in variablelist: |
|
301 |
name = FormatName(subentry_infos["name"]) |
|
302 |
else: |
|
303 |
name = FormatName("%s_obj%04X"%(texts["NodeName"], texts["index"])) |
|
304 |
elif entry_infos["struct"] & OD_IdenticalSubindexes: |
|
305 |
if index in variablelist: |
|
306 |
name = "%s[%d]"%(FormatName(entry_infos["name"]), subIndex - 1) |
|
307 |
else: |
|
308 |
name = "%s_obj%04X[%d]"%(texts["NodeName"], texts["index"], subIndex - 1) |
|
309 |
else: |
|
310 |
if index in variablelist: |
|
70 | 311 |
name = FormatName("%s_%s"%(entry_infos["name"],subentry_infos["name"])) |
0 | 312 |
else: |
313 |
name = "%s_obj%04X_%s"%(texts["NodeName"], texts["index"], FormatName(subentry_infos["name"])) |
|
188 | 314 |
if typeinfos[2] in ["visible_string", "domain"]: |
176 | 315 |
sizeof = str(len(values[subIndex])) |
316 |
else: |
|
317 |
sizeof = "sizeof (%s)"%typeinfos[0] |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
318 |
params = Node.GetParamsEntry(index, subIndex) |
0 | 319 |
if params["save"]: |
320 |
save = "|TO_BE_SAVE" |
|
321 |
else: |
|
322 |
save = "" |
|
188 | 323 |
strIndex += " { %s%s, %s, %s, (void*)&%s }%s\n"%(subentry_infos["access"].upper(),save,typeinfos[2],sizeof,name,sep) |
0 | 324 |
strIndex += " };\n" |
325 |
indexContents[index] = strIndex |
|
326 |
||
327 |
#------------------------------------------------------------------------------- |
|
328 |
# Declaration of Particular Parameters |
|
329 |
#------------------------------------------------------------------------------- |
|
330 |
||
284 | 331 |
if 0x1003 not in communicationlist: |
332 |
entry_infos = Node.GetEntryInfos(0x1003) |
|
333 |
texts["EntryName"] = entry_infos["name"] |
|
334 |
indexContents[0x1003] = """\n/* index 0x1003 : %(EntryName)s */ |
|
335 |
UNS8 %(NodeName)s_highestSubIndex_obj1003 = 0; /* number of subindex - 1*/ |
|
336 |
UNS32 %(NodeName)s_obj1003[] = |
|
337 |
{ |
|
338 |
0x0 /* 0 */ |
|
339 |
}; |
|
340 |
ODCallback_t %(NodeName)s_Index1003_callbacks[] = |
|
341 |
{ |
|
342 |
NULL, |
|
343 |
NULL, |
|
344 |
}; |
|
345 |
subindex %(NodeName)s_Index1003[] = |
|
346 |
{ |
|
286
85d5361179f3
Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents:
284
diff
changeset
|
347 |
{ RW, valueRange_EMC, sizeof (UNS8), (void*)&%(NodeName)s_highestSubIndex_obj1003 }, |
284 | 348 |
{ RO, uint32, sizeof (UNS32), (void*)&%(NodeName)s_obj1003[0] } |
349 |
}; |
|
350 |
"""%texts |
|
351 |
||
261
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
352 |
if 0x1005 not in communicationlist: |
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
353 |
entry_infos = Node.GetEntryInfos(0x1005) |
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
354 |
texts["EntryName"] = entry_infos["name"] |
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
355 |
indexContents[0x1005] = """\n/* index 0x1005 : %(EntryName)s */ |
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
356 |
UNS32 %(NodeName)s_obj1005 = 0x0; /* 0 */ |
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
357 |
"""%texts |
dbcd80bcab82
Prevent potential problem with missing 0x1005 OD entry
etisserant
parents:
245
diff
changeset
|
358 |
|
0 | 359 |
if 0x1006 not in communicationlist: |
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
360 |
entry_infos = Node.GetEntryInfos(0x1006) |
0 | 361 |
texts["EntryName"] = entry_infos["name"] |
362 |
indexContents[0x1006] = """\n/* index 0x1006 : %(EntryName)s */ |
|
76 | 363 |
UNS32 %(NodeName)s_obj1006 = 0x0; /* 0 */ |
0 | 364 |
"""%texts |
365 |
||
314
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
366 |
if 0x1014 not in communicationlist: |
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
367 |
entry_infos = Node.GetEntryInfos(0x1014) |
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
368 |
texts["EntryName"] = entry_infos["name"] |
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
369 |
indexContents[0x1014] = """\n/* index 0x1014 : %(EntryName)s */ |
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
370 |
UNS32 %(NodeName)s_obj1014 = 0x0; /* 0 */ |
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
371 |
"""%texts |
68e83c3ffbb5
Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents:
313
diff
changeset
|
372 |
|
0 | 373 |
if 0x1016 in communicationlist: |
325 | 374 |
texts["heartBeatTimers_number"] = Node.GetEntry(0x1016, 0) |
0 | 375 |
else: |
325 | 376 |
texts["heartBeatTimers_number"] = 0 |
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
377 |
entry_infos = Node.GetEntryInfos(0x1016) |
0 | 378 |
texts["EntryName"] = entry_infos["name"] |
379 |
indexContents[0x1016] = """\n/* index 0x1016 : %(EntryName)s */ |
|
380 |
UNS8 %(NodeName)s_highestSubIndex_obj1016 = 0; |
|
91
ed2612282988
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents:
76
diff
changeset
|
381 |
UNS32 %(NodeName)s_obj1016[]={0}; |
0 | 382 |
"""%texts |
325 | 383 |
|
0 | 384 |
if 0x1017 not in communicationlist: |
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
385 |
entry_infos = Node.GetEntryInfos(0x1017) |
0 | 386 |
texts["EntryName"] = entry_infos["name"] |
387 |
indexContents[0x1017] = """\n/* index 0x1017 : %(EntryName)s */ |
|
76 | 388 |
UNS16 %(NodeName)s_obj1017 = 0x0; /* 0 */ |
0 | 389 |
"""%texts |
390 |
||
391 |
#------------------------------------------------------------------------------- |
|
392 |
# Declaration of navigation in the Object Dictionary |
|
393 |
#------------------------------------------------------------------------------- |
|
394 |
||
395 |
strDeclareIndex = "" |
|
396 |
strDeclareSwitch = "" |
|
397 |
strQuickIndex = "" |
|
398 |
quick_index = {} |
|
399 |
for index_cat in index_categories: |
|
400 |
quick_index[index_cat] = {} |
|
401 |
for cat, idx_min, idx_max in categories: |
|
402 |
quick_index[index_cat][cat] = 0 |
|
403 |
maxPDOtransmit = 0 |
|
404 |
for i, index in enumerate(listIndex): |
|
405 |
texts["index"] = index |
|
406 |
strDeclareIndex += " { (subindex*)%(NodeName)s_Index%(index)04X,sizeof(%(NodeName)s_Index%(index)04X)/sizeof(%(NodeName)s_Index%(index)04X[0]), 0x%(index)04X},\n"%texts |
|
407 |
strDeclareSwitch += " case 0x%04X: i = %d;%sbreak;\n"%(index, i, indexCallbacks[index]) |
|
408 |
for cat, idx_min, idx_max in categories: |
|
409 |
if idx_min <= index <= idx_max: |
|
410 |
quick_index["lastIndex"][cat] = i |
|
411 |
if quick_index["firstIndex"][cat] == 0: |
|
412 |
quick_index["firstIndex"][cat] = i |
|
413 |
if cat == "PDO_TRS": |
|
414 |
maxPDOtransmit += 1 |
|
415 |
texts["maxPDOtransmit"] = max(1, maxPDOtransmit) |
|
416 |
for index_cat in index_categories: |
|
417 |
strQuickIndex += "\nquick_index %s_%s = {\n"%(texts["NodeName"], index_cat) |
|
418 |
sep = "," |
|
419 |
for i, (cat, idx_min, idx_max) in enumerate(categories): |
|
420 |
if i == len(categories) - 1: |
|
421 |
sep = "" |
|
76 | 422 |
strQuickIndex += " %d%s /* %s */\n"%(quick_index[index_cat][cat],sep,cat) |
0 | 423 |
strQuickIndex += "};\n" |
424 |
||
425 |
#------------------------------------------------------------------------------- |
|
426 |
# Write File Content |
|
427 |
#------------------------------------------------------------------------------- |
|
428 |
||
73 | 429 |
fileContent = generated_tag + """ |
0 | 430 |
#include "%s" |
431 |
"""%(headerfilepath) |
|
432 |
||
433 |
fileContent += """ |
|
434 |
/**************************************************************************/ |
|
435 |
/* Declaration of the mapped variables */ |
|
436 |
/**************************************************************************/ |
|
437 |
""" + mappedVariableContent |
|
438 |
||
439 |
fileContent += """ |
|
440 |
/**************************************************************************/ |
|
441 |
/* Declaration of the value range types */ |
|
442 |
/**************************************************************************/ |
|
443 |
""" + valueRangeContent |
|
444 |
||
445 |
fileContent += """ |
|
446 |
/**************************************************************************/ |
|
447 |
/* The node id */ |
|
448 |
/**************************************************************************/ |
|
449 |
/* node_id default value.*/ |
|
450 |
UNS8 %(NodeName)s_bDeviceNodeId = 0x%(NodeID)02X; |
|
451 |
||
76 | 452 |
/**************************************************************************/ |
0 | 453 |
/* Array of message processing information */ |
454 |
||
455 |
const UNS8 %(NodeName)s_iam_a_slave = %(iam_a_slave)d; |
|
456 |
||
457 |
"""%texts |
|
325 | 458 |
if texts["heartBeatTimers_number"] > 0: |
459 |
fileContent += "TIMER_HANDLE %(NodeName)s_heartBeatTimers[%(heartBeatTimers_number)d] = {TIMER_NONE,};\n"%texts |
|
460 |
else: |
|
461 |
fileContent += "TIMER_HANDLE %(NodeName)s_heartBeatTimers[1];\n"%texts |
|
0 | 462 |
|
463 |
fileContent += """ |
|
76 | 464 |
/* |
465 |
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ |
|
466 |
||
467 |
OBJECT DICTIONARY |
|
468 |
||
469 |
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ |
|
470 |
*/ |
|
0 | 471 |
"""%texts |
472 |
contentlist = indexContents.keys() |
|
473 |
contentlist.sort() |
|
474 |
for index in contentlist: |
|
475 |
fileContent += indexContents[index] |
|
476 |
||
477 |
fileContent += """ |
|
478 |
const indextable %(NodeName)s_objdict[] = |
|
479 |
{ |
|
480 |
"""%texts |
|
481 |
fileContent += strDeclareIndex |
|
482 |
fileContent += """}; |
|
483 |
||
484 |
const indextable * %(NodeName)s_scanIndexOD (UNS16 wIndex, UNS32 * errorCode, ODCallback_t **callbacks) |
|
485 |
{ |
|
486 |
int i; |
|
487 |
*callbacks = NULL; |
|
488 |
switch(wIndex){ |
|
489 |
"""%texts |
|
490 |
fileContent += strDeclareSwitch |
|
491 |
fileContent += """ default: |
|
492 |
*errorCode = OD_NO_SUCH_OBJECT; |
|
493 |
return NULL; |
|
494 |
} |
|
495 |
*errorCode = OD_SUCCESSFUL; |
|
496 |
return &%(NodeName)s_objdict[i]; |
|
497 |
} |
|
498 |
||
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
229
diff
changeset
|
499 |
/* |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
229
diff
changeset
|
500 |
* To count at which received SYNC a PDO must be sent. |
76 | 501 |
* Even if no pdoTransmit are defined, at least one entry is computed |
502 |
* for compilations issues. |
|
503 |
*/ |
|
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
229
diff
changeset
|
504 |
s_PDO_status %(NodeName)s_PDO_status[%(maxPDOtransmit)d] = {"""%texts |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
229
diff
changeset
|
505 |
|
366 | 506 |
fileContent += ",".join(["s_PDO_status_Initializer"]*texts["maxPDOtransmit"]) + """}; |
235
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
229
diff
changeset
|
507 |
""" |
f812bf6b7237
Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents:
229
diff
changeset
|
508 |
|
0 | 509 |
fileContent += strQuickIndex |
510 |
fileContent += """ |
|
511 |
UNS16 %(NodeName)s_ObjdictSize = sizeof(%(NodeName)s_objdict)/sizeof(%(NodeName)s_objdict[0]); |
|
512 |
||
513 |
CO_Data %(NodeName)s_Data = CANOPEN_NODE_DATA_INITIALIZER(%(NodeName)s); |
|
514 |
||
515 |
"""%texts |
|
516 |
||
517 |
#------------------------------------------------------------------------------- |
|
518 |
# Write Header File Content |
|
519 |
#------------------------------------------------------------------------------- |
|
520 |
||
223 | 521 |
texts["file_include_name"] = headerfilepath.replace(".", "_").upper() |
73 | 522 |
HeaderFileContent = generated_tag + """ |
224 | 523 |
#ifndef %(file_include_name)s |
223 | 524 |
#define %(file_include_name)s |
525 |
||
0 | 526 |
#include "data.h" |
527 |
||
76 | 528 |
/* Prototypes of function provided by object dictionnary */ |
63
2be18e405e40
Bug on map variable type changing and on comments with special characters corrected
lbessard
parents:
60
diff
changeset
|
529 |
UNS32 %(NodeName)s_valueRangeTest (UNS8 typeValue, void * value); |
2be18e405e40
Bug on map variable type changing and on comments with special characters corrected
lbessard
parents:
60
diff
changeset
|
530 |
const indextable * %(NodeName)s_scanIndexOD (UNS16 wIndex, UNS32 * errorCode, ODCallback_t **callbacks); |
2be18e405e40
Bug on map variable type changing and on comments with special characters corrected
lbessard
parents:
60
diff
changeset
|
531 |
|
76 | 532 |
/* Master node data struct */ |
0 | 533 |
extern CO_Data %(NodeName)s_Data; |
534 |
"""%texts |
|
535 |
HeaderFileContent += strDeclareHeader |
|
536 |
||
223 | 537 |
HeaderFileContent += "\n#endif // %(file_include_name)s\n"%texts |
538 |
||
0 | 539 |
return fileContent,HeaderFileContent |
540 |
||
541 |
#------------------------------------------------------------------------------- |
|
542 |
# Main Function |
|
543 |
#------------------------------------------------------------------------------- |
|
544 |
||
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
545 |
def GenerateFile(filepath, node): |
188 | 546 |
try: |
547 |
headerfilepath = os.path.splitext(filepath)[0]+".h" |
|
245
d43ebbed895f
Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents:
235
diff
changeset
|
548 |
content, header = GenerateFileContent(node, os.path.split(headerfilepath)[1]) |
188 | 549 |
WriteFile(filepath, content) |
550 |
WriteFile(headerfilepath, header) |
|
551 |
return None |
|
552 |
except ValueError, message: |
|
553 |
return "Unable to Generate C File\n%s"%message |
|
554 |