author | Laurent Bessard |
Thu, 29 Aug 2013 19:20:14 +0200 | |
changeset 1295 | 2ad168756c5e |
parent 1294 | f02ba5b83811 |
child 1298 | f034fb2b1aab |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
4 |
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor |
|
5 |
#based on the plcopen standard. |
|
6 |
# |
|
7 |
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
|
8 |
# |
|
9 |
#See COPYING file for copyrights details. |
|
10 |
# |
|
11 |
#This library is free software; you can redistribute it and/or |
|
12 |
#modify it under the terms of the GNU General Public |
|
13 |
#License as published by the Free Software Foundation; either |
|
14 |
#version 2.1 of the License, or (at your option) any later version. |
|
15 |
# |
|
16 |
#This library is distributed in the hope that it will be useful, |
|
17 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
18 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
19 |
#General Public License for more details. |
|
20 |
# |
|
21 |
#You should have received a copy of the GNU General Public |
|
22 |
#License along with this library; if not, write to the Free Software |
|
23 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
24 |
||
25 |
from xmlclass import * |
|
26 |
from structures import * |
|
27 |
from types import * |
|
28 |
import os, re |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
29 |
from lxml import etree |
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
30 |
from collections import OrderedDict |
814 | 31 |
""" |
32 |
Dictionary that makes the relation between var names in plcopen and displayed values |
|
33 |
""" |
|
34 |
VarTypes = {"Local" : "localVars", "Temp" : "tempVars", "Input" : "inputVars", |
|
35 |
"Output" : "outputVars", "InOut" : "inOutVars", "External" : "externalVars", |
|
36 |
"Global" : "globalVars", "Access" : "accessVars"} |
|
37 |
||
38 |
searchResultVarTypes = { |
|
39 |
"inputVars": "var_input", |
|
40 |
"outputVars": "var_output", |
|
41 |
"inOutVars": "var_inout" |
|
42 |
} |
|
43 |
||
44 |
""" |
|
45 |
Define in which order var types must be displayed |
|
46 |
""" |
|
47 |
VarOrder = ["Local","Temp","Input","Output","InOut","External","Global","Access"] |
|
48 |
||
49 |
""" |
|
50 |
Define which action qualifier must be associated with a duration |
|
51 |
""" |
|
52 |
QualifierList = {"N" : False, "R" : False, "S" : False, "L" : True, "D" : True, |
|
53 |
"P" : False, "P0" : False, "P1" : False, "SD" : True, "DS" : True, "SL" : True} |
|
54 |
||
55 |
||
56 |
FILTER_ADDRESS_MODEL = "(%%[IQM](?:[XBWDL])?)(%s)((?:\.[0-9]+)*)" |
|
57 |
||
58 |
def update_address(address, address_model, new_leading): |
|
59 |
result = address_model.match(address) |
|
60 |
if result is None: |
|
61 |
return address |
|
62 |
groups = result.groups() |
|
63 |
return groups[0] + new_leading + groups[2] |
|
64 |
||
65 |
def _init_and_compare(function, v1, v2): |
|
66 |
if v1 is None: |
|
67 |
return v2 |
|
68 |
if v2 is not None: |
|
69 |
return function(v1, v2) |
|
70 |
return v1 |
|
71 |
||
72 |
""" |
|
73 |
Helper class for bounding_box calculation |
|
74 |
""" |
|
75 |
class rect: |
|
76 |
||
77 |
def __init__(self, x=None, y=None, width=None, height=None): |
|
78 |
self.x_min = x |
|
79 |
self.x_max = None |
|
80 |
self.y_min = y |
|
81 |
self.y_max = None |
|
82 |
if width is not None and x is not None: |
|
83 |
self.x_max = x + width |
|
84 |
if height is not None and y is not None: |
|
85 |
self.y_max = y + height |
|
86 |
||
87 |
def update(self, x, y): |
|
88 |
self.x_min = _init_and_compare(min, self.x_min, x) |
|
89 |
self.x_max = _init_and_compare(max, self.x_max, x) |
|
90 |
self.y_min = _init_and_compare(min, self.y_min, y) |
|
91 |
self.y_max = _init_and_compare(max, self.y_max, y) |
|
92 |
||
93 |
def union(self, rect): |
|
94 |
self.x_min = _init_and_compare(min, self.x_min, rect.x_min) |
|
95 |
self.x_max = _init_and_compare(max, self.x_max, rect.x_max) |
|
96 |
self.y_min = _init_and_compare(min, self.y_min, rect.y_min) |
|
97 |
self.y_max = _init_and_compare(max, self.y_max, rect.y_max) |
|
98 |
||
99 |
def bounding_box(self): |
|
100 |
width = height = None |
|
101 |
if self.x_min is not None and self.x_max is not None: |
|
102 |
width = self.x_max - self.x_min |
|
103 |
if self.y_min is not None and self.y_max is not None: |
|
104 |
height = self.y_max - self.y_min |
|
105 |
return self.x_min, self.y_min, width, height |
|
106 |
||
107 |
def TextLenInRowColumn(text): |
|
108 |
if text == "": |
|
109 |
return (0, 0) |
|
110 |
lines = text.split("\n") |
|
111 |
return len(lines) - 1, len(lines[-1]) |
|
112 |
||
113 |
def TestTextElement(text, criteria): |
|
114 |
lines = text.splitlines() |
|
115 |
if not criteria["case_sensitive"]: |
|
116 |
text = text.upper() |
|
117 |
test_result = [] |
|
118 |
result = criteria["pattern"].search(text) |
|
119 |
while result is not None: |
|
120 |
start = TextLenInRowColumn(text[:result.start()]) |
|
121 |
end = TextLenInRowColumn(text[:result.end() - 1]) |
|
122 |
test_result.append((start, end, "\n".join(lines[start[0]:end[0] + 1]))) |
|
123 |
result = criteria["pattern"].search(text, result.end()) |
|
124 |
return test_result |
|
125 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
126 |
PLCOpenParser = GenerateParserFromXSD(os.path.join(os.path.split(__file__)[0], "tc6_xml_v201.xsd")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
127 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
128 |
def LoadProject(filepath): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
129 |
project_file = open(filepath) |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
130 |
project_xml = project_file.read().replace( |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
131 |
"http://www.plcopen.org/xml/tc6.xsd", |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
132 |
"http://www.plcopen.org/xml/tc6_0201") |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
133 |
for cre, repl in [ |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
134 |
(re.compile("(?<!<xhtml:p>)(?:<!\[CDATA\[)"), "<xhtml:p><![CDATA["), |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
135 |
(re.compile("(?:]]>)(?!</xhtml:p>)"), "]]></xhtml:p>")]: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
136 |
project_xml = cre.sub(repl, project_xml) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
137 |
project_file.close() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
138 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
139 |
return etree.fromstring(project_xml, PLCOpenParser) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
140 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
141 |
def SaveProject(project, filepath): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
142 |
project_file = open(filepath, 'w') |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
143 |
project_file.write(etree.tostring( |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
144 |
project, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
145 |
pretty_print=True, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
146 |
xml_declaration=True, |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
147 |
encoding='utf-8')) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
148 |
project_file.close() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
149 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
150 |
cls = PLCOpenParser.GetElementClass("formattedText") |
814 | 151 |
if cls: |
152 |
def updateElementName(self, old_name, new_name): |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
153 |
text = self.getanyText() |
814 | 154 |
index = text.find(old_name) |
155 |
while index != -1: |
|
156 |
if index > 0 and (text[index - 1].isalnum() or text[index - 1] == "_"): |
|
157 |
index = text.find(old_name, index + len(old_name)) |
|
158 |
elif index < len(text) - len(old_name) and (text[index + len(old_name)].isalnum() or text[index + len(old_name)] == "_"): |
|
159 |
index = text.find(old_name, index + len(old_name)) |
|
160 |
else: |
|
161 |
text = text[:index] + new_name + text[index + len(old_name):] |
|
162 |
index = text.find(old_name, index + len(new_name)) |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
163 |
self.setanyText(text) |
814 | 164 |
setattr(cls, "updateElementName", updateElementName) |
165 |
||
166 |
def updateElementAddress(self, address_model, new_leading): |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
167 |
text = self.getanyText() |
814 | 168 |
startpos = 0 |
169 |
result = address_model.search(text, startpos) |
|
170 |
while result is not None: |
|
171 |
groups = result.groups() |
|
172 |
new_address = groups[0] + new_leading + groups[2] |
|
173 |
text = text[:result.start()] + new_address + text[result.end():] |
|
174 |
startpos = result.start() + len(new_address) |
|
175 |
result = address_model.search(self.text, startpos) |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
176 |
self.setanyText(text) |
814 | 177 |
setattr(cls, "updateElementAddress", updateElementAddress) |
178 |
||
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
179 |
def hasblock(self, block_type): |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
180 |
text = self.getanyText().upper() |
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
181 |
index = text.find(block_type.upper()) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
182 |
while index != -1: |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
183 |
if (not (index > 0 and (text[index - 1].isalnum() or text[index - 1] == "_")) and |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
184 |
not (index < len(text) - len(block_type) and text[index + len(block_type)] != "(")): |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
185 |
return True |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
186 |
index = text.find(block_type.upper(), index + len(block_type)) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
187 |
return False |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
188 |
setattr(cls, "hasblock", hasblock) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
189 |
|
814 | 190 |
def Search(self, criteria, parent_infos): |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
191 |
return [(tuple(parent_infos),) + result for result in TestTextElement(self.getanyText(), criteria)] |
814 | 192 |
setattr(cls, "Search", Search) |
193 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
194 |
cls = PLCOpenParser.GetElementClass("project") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
195 |
if cls: |
814 | 196 |
cls.EnumeratedDataTypeValues = {} |
197 |
cls.CustomDataTypeRange = {} |
|
198 |
cls.CustomTypeHierarchy = {} |
|
199 |
cls.ElementUsingTree = {} |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
200 |
cls.CustomBlockTypes = OrderedDict() |
814 | 201 |
|
202 |
def setname(self, name): |
|
203 |
self.contentHeader.setname(name) |
|
204 |
setattr(cls, "setname", setname) |
|
205 |
||
206 |
def getname(self): |
|
207 |
return self.contentHeader.getname() |
|
208 |
setattr(cls, "getname", getname) |
|
209 |
||
210 |
def getfileHeader(self): |
|
211 |
fileheader = {} |
|
212 |
for name, value in [("companyName", self.fileHeader.getcompanyName()), |
|
213 |
("companyURL", self.fileHeader.getcompanyURL()), |
|
214 |
("productName", self.fileHeader.getproductName()), |
|
215 |
("productVersion", self.fileHeader.getproductVersion()), |
|
216 |
("productRelease", self.fileHeader.getproductRelease()), |
|
217 |
("creationDateTime", self.fileHeader.getcreationDateTime()), |
|
218 |
("contentDescription", self.fileHeader.getcontentDescription())]: |
|
219 |
if value is not None: |
|
220 |
fileheader[name] = value |
|
221 |
else: |
|
222 |
fileheader[name] = "" |
|
223 |
return fileheader |
|
224 |
setattr(cls, "getfileHeader", getfileHeader) |
|
225 |
||
226 |
def setfileHeader(self, fileheader): |
|
227 |
if fileheader.has_key("companyName"): |
|
228 |
self.fileHeader.setcompanyName(fileheader["companyName"]) |
|
229 |
if fileheader.has_key("companyURL"): |
|
230 |
self.fileHeader.setcompanyURL(fileheader["companyURL"]) |
|
231 |
if fileheader.has_key("productName"): |
|
232 |
self.fileHeader.setproductName(fileheader["productName"]) |
|
233 |
if fileheader.has_key("productVersion"): |
|
234 |
self.fileHeader.setproductVersion(fileheader["productVersion"]) |
|
235 |
if fileheader.has_key("productRelease"): |
|
236 |
self.fileHeader.setproductRelease(fileheader["productRelease"]) |
|
237 |
if fileheader.has_key("creationDateTime"): |
|
238 |
self.fileHeader.setcreationDateTime(fileheader["creationDateTime"]) |
|
239 |
if fileheader.has_key("contentDescription"): |
|
240 |
self.fileHeader.setcontentDescription(fileheader["contentDescription"]) |
|
241 |
setattr(cls, "setfileHeader", setfileHeader) |
|
242 |
||
243 |
def getcontentHeader(self): |
|
244 |
contentheader = {} |
|
245 |
for name, value in [("projectName", self.contentHeader.getname()), |
|
246 |
("projectVersion", self.contentHeader.getversion()), |
|
247 |
("modificationDateTime", self.contentHeader.getmodificationDateTime()), |
|
248 |
("organization", self.contentHeader.getorganization()), |
|
249 |
("authorName", self.contentHeader.getauthor()), |
|
250 |
("language", self.contentHeader.getlanguage())]: |
|
251 |
if value is not None: |
|
252 |
contentheader[name] = value |
|
253 |
else: |
|
254 |
contentheader[name] = "" |
|
255 |
contentheader["pageSize"] = self.contentHeader.getpageSize() |
|
256 |
contentheader["scaling"] = self.contentHeader.getscaling() |
|
257 |
return contentheader |
|
258 |
setattr(cls, "getcontentHeader", getcontentHeader) |
|
259 |
||
260 |
def setcontentHeader(self, contentheader): |
|
261 |
if contentheader.has_key("projectName"): |
|
262 |
self.contentHeader.setname(contentheader["projectName"]) |
|
263 |
if contentheader.has_key("projectVersion"): |
|
264 |
self.contentHeader.setversion(contentheader["projectVersion"]) |
|
265 |
if contentheader.has_key("modificationDateTime"): |
|
266 |
self.contentHeader.setmodificationDateTime(contentheader["modificationDateTime"]) |
|
267 |
if contentheader.has_key("organization"): |
|
268 |
self.contentHeader.setorganization(contentheader["organization"]) |
|
269 |
if contentheader.has_key("authorName"): |
|
270 |
self.contentHeader.setauthor(contentheader["authorName"]) |
|
271 |
if contentheader.has_key("language"): |
|
272 |
self.contentHeader.setlanguage(contentheader["language"]) |
|
273 |
if contentheader.has_key("pageSize"): |
|
274 |
self.contentHeader.setpageSize(*contentheader["pageSize"]) |
|
275 |
if contentheader.has_key("scaling"): |
|
276 |
self.contentHeader.setscaling(contentheader["scaling"]) |
|
277 |
setattr(cls, "setcontentHeader", setcontentHeader) |
|
278 |
||
279 |
def getdataTypes(self): |
|
280 |
return self.types.getdataTypeElements() |
|
281 |
setattr(cls, "getdataTypes", getdataTypes) |
|
282 |
||
283 |
def getdataType(self, name): |
|
284 |
return self.types.getdataTypeElement(name) |
|
285 |
setattr(cls, "getdataType", getdataType) |
|
286 |
||
287 |
def appenddataType(self, name): |
|
288 |
if self.CustomTypeHierarchy.has_key(name): |
|
289 |
raise ValueError, "\"%s\" Data Type already exists !!!"%name |
|
290 |
self.types.appenddataTypeElement(name) |
|
291 |
self.AddCustomDataType(self.getdataType(name)) |
|
292 |
setattr(cls, "appenddataType", appenddataType) |
|
293 |
||
294 |
def insertdataType(self, index, datatype): |
|
295 |
self.types.insertdataTypeElement(index, datatype) |
|
296 |
self.AddCustomDataType(datatype) |
|
297 |
setattr(cls, "insertdataType", insertdataType) |
|
298 |
||
299 |
def removedataType(self, name): |
|
300 |
self.types.removedataTypeElement(name) |
|
301 |
self.RefreshDataTypeHierarchy() |
|
302 |
self.RefreshElementUsingTree() |
|
303 |
setattr(cls, "removedataType", removedataType) |
|
304 |
||
305 |
def getpous(self): |
|
306 |
return self.types.getpouElements() |
|
307 |
setattr(cls, "getpous", getpous) |
|
308 |
||
309 |
def getpou(self, name): |
|
310 |
return self.types.getpouElement(name) |
|
311 |
setattr(cls, "getpou", getpou) |
|
312 |
||
313 |
def appendpou(self, name, pou_type, body_type): |
|
314 |
self.types.appendpouElement(name, pou_type, body_type) |
|
315 |
self.AddCustomBlockType(self.getpou(name)) |
|
316 |
setattr(cls, "appendpou", appendpou) |
|
317 |
||
318 |
def insertpou(self, index, pou): |
|
319 |
self.types.insertpouElement(index, pou) |
|
320 |
self.AddCustomBlockType(pou) |
|
321 |
setattr(cls, "insertpou", insertpou) |
|
322 |
||
323 |
def removepou(self, name): |
|
324 |
self.types.removepouElement(name) |
|
325 |
self.RefreshCustomBlockTypes() |
|
326 |
self.RefreshElementUsingTree() |
|
327 |
setattr(cls, "removepou", removepou) |
|
328 |
||
329 |
def getconfigurations(self): |
|
330 |
configurations = self.instances.configurations.getconfiguration() |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
331 |
if configurations is not None: |
814 | 332 |
return configurations |
333 |
return [] |
|
334 |
setattr(cls, "getconfigurations", getconfigurations) |
|
335 |
||
336 |
def getconfiguration(self, name): |
|
337 |
for configuration in self.instances.configurations.getconfiguration(): |
|
338 |
if configuration.getname() == name: |
|
339 |
return configuration |
|
340 |
return None |
|
341 |
setattr(cls, "getconfiguration", getconfiguration) |
|
342 |
||
343 |
def addconfiguration(self, name): |
|
344 |
for configuration in self.instances.configurations.getconfiguration(): |
|
345 |
if configuration.getname() == name: |
|
346 |
raise ValueError, _("\"%s\" configuration already exists !!!")%name |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
347 |
new_configuration = PLCOpenParser.CreateElement("configuration", "configurations") |
814 | 348 |
new_configuration.setname(name) |
349 |
self.instances.configurations.appendconfiguration(new_configuration) |
|
350 |
setattr(cls, "addconfiguration", addconfiguration) |
|
351 |
||
352 |
def removeconfiguration(self, name): |
|
353 |
found = False |
|
354 |
for idx, configuration in enumerate(self.instances.configurations.getconfiguration()): |
|
355 |
if configuration.getname() == name: |
|
356 |
self.instances.configurations.removeconfiguration(idx) |
|
357 |
found = True |
|
358 |
break |
|
359 |
if not found: |
|
360 |
raise ValueError, ("\"%s\" configuration doesn't exist !!!")%name |
|
361 |
setattr(cls, "removeconfiguration", removeconfiguration) |
|
362 |
||
363 |
def getconfigurationResource(self, config_name, name): |
|
364 |
configuration = self.getconfiguration(config_name) |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
365 |
if configuration is not None: |
814 | 366 |
for resource in configuration.getresource(): |
367 |
if resource.getname() == name: |
|
368 |
return resource |
|
369 |
return None |
|
370 |
setattr(cls, "getconfigurationResource", getconfigurationResource) |
|
371 |
||
372 |
def addconfigurationResource(self, config_name, name): |
|
373 |
configuration = self.getconfiguration(config_name) |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
374 |
if configuration is not None: |
814 | 375 |
for resource in configuration.getresource(): |
376 |
if resource.getname() == name: |
|
377 |
raise ValueError, _("\"%s\" resource already exists in \"%s\" configuration !!!")%(name, config_name) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
378 |
new_resource = PLCOpenParser.CreateElement("resource", "configuration") |
814 | 379 |
new_resource.setname(name) |
380 |
configuration.appendresource(new_resource) |
|
381 |
setattr(cls, "addconfigurationResource", addconfigurationResource) |
|
382 |
||
383 |
def removeconfigurationResource(self, config_name, name): |
|
384 |
configuration = self.getconfiguration(config_name) |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
385 |
if configuration is not None: |
814 | 386 |
found = False |
387 |
for idx, resource in enumerate(configuration.getresource()): |
|
388 |
if resource.getname() == name: |
|
389 |
configuration.removeresource(idx) |
|
390 |
found = True |
|
391 |
break |
|
392 |
if not found: |
|
393 |
raise ValueError, _("\"%s\" resource doesn't exist in \"%s\" configuration !!!")%(name, config_name) |
|
394 |
setattr(cls, "removeconfigurationResource", removeconfigurationResource) |
|
395 |
||
396 |
def updateElementName(self, old_name, new_name): |
|
397 |
for datatype in self.types.getdataTypeElements(): |
|
398 |
datatype.updateElementName(old_name, new_name) |
|
399 |
for pou in self.types.getpouElements(): |
|
400 |
pou.updateElementName(old_name, new_name) |
|
401 |
for configuration in self.instances.configurations.getconfiguration(): |
|
402 |
configuration.updateElementName(old_name, new_name) |
|
403 |
setattr(cls, "updateElementName", updateElementName) |
|
404 |
||
405 |
def updateElementAddress(self, old_leading, new_leading): |
|
406 |
address_model = re.compile(FILTER_ADDRESS_MODEL % old_leading) |
|
407 |
for pou in self.types.getpouElements(): |
|
408 |
pou.updateElementAddress(address_model, new_leading) |
|
409 |
for configuration in self.instances.configurations.getconfiguration(): |
|
410 |
configuration.updateElementAddress(address_model, new_leading) |
|
411 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
412 |
||
413 |
def removeVariableByAddress(self, address): |
|
414 |
for pou in self.types.getpouElements(): |
|
415 |
pou.removeVariableByAddress(address) |
|
416 |
for configuration in self.instances.configurations.getconfiguration(): |
|
417 |
configuration.removeVariableByAddress(address) |
|
418 |
setattr(cls, "removeVariableByAddress", removeVariableByAddress) |
|
419 |
||
420 |
def removeVariableByFilter(self, leading): |
|
421 |
address_model = re.compile(FILTER_ADDRESS_MODEL % leading) |
|
422 |
for pou in self.types.getpouElements(): |
|
423 |
pou.removeVariableByFilter(address_model) |
|
424 |
for configuration in self.instances.configurations.getconfiguration(): |
|
425 |
configuration.removeVariableByFilter(address_model) |
|
426 |
setattr(cls, "removeVariableByFilter", removeVariableByFilter) |
|
427 |
||
428 |
def RefreshDataTypeHierarchy(self): |
|
429 |
self.EnumeratedDataTypeValues = {} |
|
430 |
self.CustomDataTypeRange = {} |
|
431 |
self.CustomTypeHierarchy = {} |
|
432 |
for datatype in self.getdataTypes(): |
|
433 |
self.AddCustomDataType(datatype) |
|
434 |
setattr(cls, "RefreshDataTypeHierarchy", RefreshDataTypeHierarchy) |
|
435 |
||
436 |
def AddCustomDataType(self, datatype): |
|
437 |
name = datatype.getname() |
|
438 |
basetype_content = datatype.getbaseType().getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
439 |
basetype_content_name = basetype_content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
440 |
if basetype_content.__class__ == DefaultElementClass: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
441 |
self.CustomTypeHierarchy[name] = basetype_content_name |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
442 |
elif basetype_content_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
443 |
self.CustomTypeHierarchy[name] = basetype_content_name.upper() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
444 |
elif basetype_content_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
445 |
self.CustomTypeHierarchy[name] = basetype_content.getname() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
446 |
elif basetype_content_name in ["subrangeSigned", "subrangeUnsigned"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
447 |
range = (basetype_content.range.getlower(), |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
448 |
basetype_content.range.getupper()) |
814 | 449 |
self.CustomDataTypeRange[name] = range |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
450 |
base_type = basetype_content.baseType.getcontent() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
451 |
if base_type.__class__ == DefaultElementClass: |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
452 |
self.CustomTypeHierarchy[name] = base_type.getLocalTag() |
814 | 453 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
454 |
self.CustomTypeHierarchy[name] = base_type.getname() |
814 | 455 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
456 |
if basetype_content_name == "enum": |
814 | 457 |
values = [] |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
458 |
for value in basetype_content.xpath("ppx:values/ppx:value", namespaces=PLCOpenParser.NSMAP): |
814 | 459 |
values.append(value.getname()) |
460 |
self.EnumeratedDataTypeValues[name] = values |
|
461 |
self.CustomTypeHierarchy[name] = "ANY_DERIVED" |
|
462 |
setattr(cls, "AddCustomDataType", AddCustomDataType) |
|
463 |
||
464 |
# Update Block types with user-defined pou added |
|
465 |
def RefreshCustomBlockTypes(self): |
|
466 |
# Reset the tree of user-defined pou cross-use |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
467 |
self.CustomBlockTypes = OrderedDict() |
814 | 468 |
for pou in self.getpous(): |
469 |
self.AddCustomBlockType(pou) |
|
470 |
setattr(cls, "RefreshCustomBlockTypes", RefreshCustomBlockTypes) |
|
471 |
||
472 |
def AddCustomBlockType(self, pou): |
|
473 |
pou_name = pou.getname() |
|
474 |
pou_type = pou.getpouType() |
|
475 |
block_infos = {"name" : pou_name, "type" : pou_type, "extensible" : False, |
|
476 |
"inputs" : [], "outputs" : [], "comment" : pou.getdescription(), |
|
477 |
"generate" : generate_block, "initialise" : initialise_block} |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
478 |
if pou.interface is not None: |
814 | 479 |
return_type = pou.interface.getreturnType() |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
480 |
if return_type is not None: |
814 | 481 |
var_type = return_type.getcontent() |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
482 |
var_type_name = var_type.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
483 |
if var_type_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
484 |
block_infos["outputs"].append(("OUT", var_type.getname(), "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
485 |
elif var_type_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
486 |
block_infos["outputs"].append(("OUT", var_type_name.upper(), "none")) |
814 | 487 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
488 |
block_infos["outputs"].append(("OUT", var_type_name, "none")) |
814 | 489 |
for type, varlist in pou.getvars(): |
490 |
if type == "InOut": |
|
491 |
for var in varlist.getvariable(): |
|
492 |
var_type = var.type.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
493 |
var_type_name = var_type.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
494 |
if var_type_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
495 |
block_infos["inputs"].append((var.getname(), var_type.getname(), "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
496 |
block_infos["outputs"].append((var.getname(), var_type.getname(), "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
497 |
elif var_type_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
498 |
block_infos["inputs"].append((var.getname(), var_type_name.upper(), "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
499 |
block_infos["outputs"].append((var.getname(), var_type_name.upper(), "none")) |
814 | 500 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
501 |
block_infos["inputs"].append((var.getname(), var_type_name, "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
502 |
block_infos["outputs"].append((var.getname(), var_type_name, "none")) |
814 | 503 |
elif type == "Input": |
504 |
for var in varlist.getvariable(): |
|
505 |
var_type = var.type.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
506 |
var_type_name = var_type.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
507 |
if var_type_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
508 |
block_infos["inputs"].append((var.getname(), var_type.getname(), "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
509 |
elif var_type_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
510 |
block_infos["inputs"].append((var.getname(), var_type_name.upper(), "none")) |
814 | 511 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
512 |
block_infos["inputs"].append((var.getname(), var_type_name, "none")) |
814 | 513 |
elif type == "Output": |
514 |
for var in varlist.getvariable(): |
|
515 |
var_type = var.type.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
516 |
var_type_name = var_type.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
517 |
if var_type_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
518 |
block_infos["outputs"].append((var.getname(), var_type.getname(), "none")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
519 |
elif var_type_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
520 |
block_infos["outputs"].append((var.getname(), var_type_name.upper(), "none")) |
814 | 521 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
522 |
block_infos["outputs"].append((var.getname(), var_type_name, "none")) |
814 | 523 |
block_infos["usage"] = "\n (%s) => (%s)" % (", ".join(["%s:%s" % (input[1], input[0]) for input in block_infos["inputs"]]), |
524 |
", ".join(["%s:%s" % (output[1], output[0]) for output in block_infos["outputs"]])) |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
525 |
self.CustomBlockTypes[pou_name]=block_infos |
814 | 526 |
setattr(cls, "AddCustomBlockType", AddCustomBlockType) |
527 |
||
1276
29bfd39e8e7a
Fixed bug instance choice list empty for standard and extension functions block types
Laurent Bessard
parents:
1261
diff
changeset
|
528 |
def AddElementUsingTreeInstance(self, name, type_infos): |
29bfd39e8e7a
Fixed bug instance choice list empty for standard and extension functions block types
Laurent Bessard
parents:
1261
diff
changeset
|
529 |
typename = type_infos.getname() |
1281 | 530 |
elements = self.ElementUsingTree.setdefault(typename, set()) |
531 |
elements.add(name) |
|
1276
29bfd39e8e7a
Fixed bug instance choice list empty for standard and extension functions block types
Laurent Bessard
parents:
1261
diff
changeset
|
532 |
setattr(cls, "AddElementUsingTreeInstance", AddElementUsingTreeInstance) |
29bfd39e8e7a
Fixed bug instance choice list empty for standard and extension functions block types
Laurent Bessard
parents:
1261
diff
changeset
|
533 |
|
814 | 534 |
def RefreshElementUsingTree(self): |
535 |
# Reset the tree of user-defined element cross-use |
|
536 |
self.ElementUsingTree = {} |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
537 |
|
814 | 538 |
# Analyze each datatype |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
539 |
for datatype in self.getdataTypes(): |
814 | 540 |
name = datatype.getname() |
541 |
basetype_content = datatype.baseType.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
542 |
basetype_content_name = basetype_content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
543 |
if basetype_content_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
544 |
self.AddElementUsingTreeInstance(name, basetype_content) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
545 |
elif basetype_content_name in ["subrangeSigned", "subrangeUnsigned", "array"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
546 |
base_type = basetype_content.baseType.getcontent() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
547 |
if base_type.getLocalTag() == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
548 |
self.AddElementUsingTreeInstance(name, base_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
549 |
elif basetype_content_name == "struct": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
550 |
for element in basetype_content.getvariable(): |
814 | 551 |
type_content = element.type.getcontent() |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
552 |
if type_content.getLocalTag() == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
553 |
self.AddElementUsingTreeInstance(name, type_content) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
554 |
|
814 | 555 |
# Analyze each pou |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
556 |
for pou in self.getpous(): |
814 | 557 |
name = pou.getname() |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
558 |
if pou.interface is not None: |
814 | 559 |
# Extract variables from every varLists |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
560 |
for varlist_type, varlist in pou.getvars(): |
814 | 561 |
for var in varlist.getvariable(): |
562 |
vartype_content = var.gettype().getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
563 |
if vartype_content.getLocalTag() == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
564 |
self.AddElementUsingTreeInstance(name, vartype_content) |
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
565 |
|
814 | 566 |
setattr(cls, "RefreshElementUsingTree", RefreshElementUsingTree) |
567 |
||
568 |
def GetParentType(self, type): |
|
569 |
if self.CustomTypeHierarchy.has_key(type): |
|
570 |
return self.CustomTypeHierarchy[type] |
|
571 |
elif TypeHierarchy.has_key(type): |
|
572 |
return TypeHierarchy[type] |
|
573 |
return None |
|
574 |
setattr(cls, "GetParentType", GetParentType) |
|
575 |
||
576 |
def GetBaseType(self, type): |
|
577 |
parent_type = self.GetParentType(type) |
|
578 |
if parent_type is not None: |
|
579 |
if parent_type.startswith("ANY"): |
|
580 |
return type |
|
581 |
else: |
|
582 |
return self.GetBaseType(parent_type) |
|
583 |
return None |
|
584 |
setattr(cls, "GetBaseType", GetBaseType) |
|
585 |
||
586 |
def GetSubrangeBaseTypes(self, exclude): |
|
587 |
derived = [] |
|
588 |
for type in self.CustomTypeHierarchy.keys(): |
|
589 |
for base_type in DataTypeRange.keys(): |
|
590 |
if self.IsOfType(type, base_type) and not self.IsOfType(type, exclude): |
|
591 |
derived.append(type) |
|
592 |
break |
|
593 |
return derived |
|
594 |
setattr(cls, "GetSubrangeBaseTypes", GetSubrangeBaseTypes) |
|
595 |
||
596 |
""" |
|
597 |
returns true if the given data type is the same that "reference" meta-type or one of its types. |
|
598 |
""" |
|
599 |
def IsOfType(self, type, reference): |
|
600 |
if reference is None: |
|
601 |
return True |
|
602 |
elif type == reference: |
|
603 |
return True |
|
604 |
else: |
|
605 |
parent_type = self.GetParentType(type) |
|
606 |
if parent_type is not None: |
|
607 |
return self.IsOfType(parent_type, reference) |
|
608 |
return False |
|
609 |
setattr(cls, "IsOfType", IsOfType) |
|
610 |
||
611 |
# Return if pou given by name is used by another pou |
|
612 |
def ElementIsUsed(self, name): |
|
1281 | 613 |
elements = self.ElementUsingTree.get(name, None) |
614 |
return elements is not None |
|
814 | 615 |
setattr(cls, "ElementIsUsed", ElementIsUsed) |
616 |
||
617 |
def DataTypeIsDerived(self, name): |
|
618 |
return name in self.CustomTypeHierarchy.values() |
|
619 |
setattr(cls, "DataTypeIsDerived", DataTypeIsDerived) |
|
620 |
||
621 |
# Return if pou given by name is directly or undirectly used by the reference pou |
|
622 |
def ElementIsUsedBy(self, name, reference): |
|
1281 | 623 |
elements = self.ElementUsingTree.get(name, set()) |
624 |
# Test if pou is directly used by reference |
|
625 |
if reference in elements: |
|
626 |
return True |
|
627 |
else: |
|
628 |
# Test if pou is undirectly used by reference, by testing if pous |
|
629 |
# that directly use pou is directly or undirectly used by reference |
|
630 |
selffn = self.ElementIsUsedBy |
|
631 |
for element in elements: |
|
632 |
if selffn(element, reference): |
|
633 |
return True |
|
814 | 634 |
return False |
635 |
setattr(cls, "ElementIsUsedBy", ElementIsUsedBy) |
|
636 |
||
637 |
def GetDataTypeRange(self, type): |
|
638 |
if self.CustomDataTypeRange.has_key(type): |
|
639 |
return self.CustomDataTypeRange[type] |
|
640 |
elif DataTypeRange.has_key(type): |
|
641 |
return DataTypeRange[type] |
|
642 |
else: |
|
643 |
parent_type = self.GetParentType(type) |
|
644 |
if parent_type is not None: |
|
645 |
return self.GetDataTypeRange(parent_type) |
|
646 |
return None |
|
647 |
setattr(cls, "GetDataTypeRange", GetDataTypeRange) |
|
648 |
||
649 |
def GetEnumeratedDataTypeValues(self, type = None): |
|
650 |
if type is None: |
|
651 |
all_values = [] |
|
652 |
for values in self.EnumeratedDataTypeValues.values(): |
|
653 |
all_values.extend(values) |
|
654 |
return all_values |
|
655 |
elif self.EnumeratedDataTypeValues.has_key(type): |
|
656 |
return self.EnumeratedDataTypeValues[type] |
|
657 |
return [] |
|
658 |
setattr(cls, "GetEnumeratedDataTypeValues", GetEnumeratedDataTypeValues) |
|
659 |
||
660 |
# Function that returns the block definition associated to the block type given |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
661 |
def GetCustomBlockType(self, typename, inputs = None): |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
662 |
customblocktype = self.CustomBlockTypes.get(typename,None) |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
663 |
if customblocktype is not None: |
814 | 664 |
if inputs is not None and inputs != "undefined": |
665 |
customblock_inputs = tuple([var_type for name, var_type, modifier in customblocktype["inputs"]]) |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
666 |
if inputs == customblock_inputs: |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
667 |
return customblocktype |
814 | 668 |
else: |
669 |
return customblocktype |
|
670 |
return None |
|
671 |
setattr(cls, "GetCustomBlockType", GetCustomBlockType) |
|
672 |
||
673 |
# Return Block types checking for recursion |
|
1281 | 674 |
def GetCustomBlockTypes(self, exclude = None, onlyfunctions = False): |
675 |
if exclude is not None: |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
676 |
return [customblocktype for name,customblocktype in self.CustomBlockTypes.iteritems() |
1281 | 677 |
if (customblocktype["type"] != "program" |
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
678 |
and name != exclude |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
679 |
and not self.ElementIsUsedBy(exclude, name) |
1281 | 680 |
and not (onlyfunctions and customblocktype["type"] != "function"))] |
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
681 |
return [customblocktype for customblocktype in self.CustomBlockTypes.itervalues() |
1281 | 682 |
if (customblocktype["type"] != "program" |
683 |
and not (onlyfunctions and customblocktype["type"] != "function"))] |
|
814 | 684 |
setattr(cls, "GetCustomBlockTypes", GetCustomBlockTypes) |
685 |
||
686 |
# Return Function Block types checking for recursion |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
687 |
def GetCustomFunctionBlockTypes(self, exclude = None): |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
688 |
if exclude is not None: |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
689 |
return [customblocktype for name,customblocktype in self.CustomBlockTypes.iteritems() |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
690 |
if (customblocktype["type"] == "functionBlock" |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
691 |
and name != exclude |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
692 |
and not self.ElementIsUsedBy(exclude, name))] |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
693 |
return [customblocktype for customblocktype in self.CustomBlockTypes.itervalues() |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
694 |
if customblocktype["type"] == "functionBlock"] |
814 | 695 |
setattr(cls, "GetCustomFunctionBlockTypes", GetCustomFunctionBlockTypes) |
696 |
||
697 |
# Return Block types checking for recursion |
|
698 |
def GetCustomBlockResource(self): |
|
1283
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
699 |
return [customblocktype for customblocktype in self.CustomBlockTypes.itervalues() |
f3cfe1ff917e
More optimization attemps in type handling
Edouard Tisserant
parents:
1281
diff
changeset
|
700 |
if customblocktype["type"] == "program"] |
814 | 701 |
setattr(cls, "GetCustomBlockResource", GetCustomBlockResource) |
702 |
||
703 |
# Return Data Types checking for recursion |
|
704 |
def GetCustomDataTypes(self, exclude = "", only_locatable = False): |
|
705 |
customdatatypes = [] |
|
706 |
for customdatatype in self.getdataTypes(): |
|
707 |
if not only_locatable or self.IsLocatableType(customdatatype): |
|
708 |
customdatatype_name = customdatatype.getname() |
|
709 |
if customdatatype_name != exclude and not self.ElementIsUsedBy(exclude, customdatatype_name): |
|
710 |
customdatatypes.append({"name": customdatatype_name, "infos": customdatatype}) |
|
711 |
return customdatatypes |
|
712 |
setattr(cls, "GetCustomDataTypes", GetCustomDataTypes) |
|
713 |
||
714 |
# Return if Data Type can be used for located variables |
|
715 |
def IsLocatableType(self, datatype): |
|
716 |
basetype_content = datatype.baseType.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
717 |
basetype_content_name = basetype_content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
718 |
if basetype_content_name in ["enum", "struct"]: |
814 | 719 |
return False |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
720 |
elif basetype_content_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
721 |
base_type = self.getdataType(basetype_content.getname()) |
814 | 722 |
if base_type is not None: |
723 |
return self.IsLocatableType(base_type) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
724 |
elif basetype_content_name == "array": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
725 |
array_base_type = basetype_content.baseType.getcontent() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
726 |
if array_base_type == DefaultElementClass and array_base_type.getLocalTag() not in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
727 |
base_type = self.getdataType(array_base_type.getname()) |
814 | 728 |
if base_type is not None: |
729 |
return self.IsLocatableType(base_type) |
|
730 |
return True |
|
731 |
setattr(cls, "IsLocatableType", IsLocatableType) |
|
732 |
||
733 |
def Search(self, criteria, parent_infos=[]): |
|
734 |
result = self.types.Search(criteria, parent_infos) |
|
735 |
for configuration in self.instances.configurations.getconfiguration(): |
|
736 |
result.extend(configuration.Search(criteria, parent_infos)) |
|
737 |
return result |
|
738 |
setattr(cls, "Search", Search) |
|
739 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
740 |
cls = PLCOpenParser.GetElementClass("contentHeader", "project") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
741 |
if cls: |
814 | 742 |
|
743 |
def setpageSize(self, width, height): |
|
744 |
self.coordinateInfo.setpageSize(width, height) |
|
745 |
setattr(cls, "setpageSize", setpageSize) |
|
746 |
||
747 |
def getpageSize(self): |
|
748 |
return self.coordinateInfo.getpageSize() |
|
749 |
setattr(cls, "getpageSize", getpageSize) |
|
750 |
||
751 |
def setscaling(self, scaling): |
|
752 |
for language, (x, y) in scaling.items(): |
|
753 |
self.coordinateInfo.setscaling(language, x, y) |
|
754 |
setattr(cls, "setscaling", setscaling) |
|
755 |
||
756 |
def getscaling(self): |
|
757 |
scaling = {} |
|
758 |
scaling["FBD"] = self.coordinateInfo.getscaling("FBD") |
|
759 |
scaling["LD"] = self.coordinateInfo.getscaling("LD") |
|
760 |
scaling["SFC"] = self.coordinateInfo.getscaling("SFC") |
|
761 |
return scaling |
|
762 |
setattr(cls, "getscaling", getscaling) |
|
763 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
764 |
cls = PLCOpenParser.GetElementClass("coordinateInfo", "contentHeader") |
814 | 765 |
if cls: |
766 |
def setpageSize(self, width, height): |
|
767 |
if width == 0 and height == 0: |
|
768 |
self.deletepageSize() |
|
769 |
else: |
|
770 |
if self.pageSize is None: |
|
771 |
self.addpageSize() |
|
772 |
self.pageSize.setx(width) |
|
773 |
self.pageSize.sety(height) |
|
774 |
setattr(cls, "setpageSize", setpageSize) |
|
775 |
||
776 |
def getpageSize(self): |
|
777 |
if self.pageSize is not None: |
|
778 |
return self.pageSize.getx(), self.pageSize.gety() |
|
779 |
return 0, 0 |
|
780 |
setattr(cls, "getpageSize", getpageSize) |
|
781 |
||
782 |
def setscaling(self, language, x, y): |
|
783 |
if language == "FBD": |
|
784 |
self.fbd.scaling.setx(x) |
|
785 |
self.fbd.scaling.sety(y) |
|
786 |
elif language == "LD": |
|
787 |
self.ld.scaling.setx(x) |
|
788 |
self.ld.scaling.sety(y) |
|
789 |
elif language == "SFC": |
|
790 |
self.sfc.scaling.setx(x) |
|
791 |
self.sfc.scaling.sety(y) |
|
792 |
setattr(cls, "setscaling", setscaling) |
|
793 |
||
794 |
def getscaling(self, language): |
|
795 |
if language == "FBD": |
|
796 |
return self.fbd.scaling.getx(), self.fbd.scaling.gety() |
|
797 |
elif language == "LD": |
|
798 |
return self.ld.scaling.getx(), self.ld.scaling.gety() |
|
799 |
elif language == "SFC": |
|
800 |
return self.sfc.scaling.getx(), self.sfc.scaling.gety() |
|
801 |
return 0, 0 |
|
802 |
setattr(cls, "getscaling", getscaling) |
|
803 |
||
804 |
def _Search(attributes, criteria, parent_infos): |
|
805 |
search_result = [] |
|
806 |
for attr, value in attributes: |
|
807 |
if value is not None: |
|
808 |
search_result.extend([(tuple(parent_infos + [attr]),) + result for result in TestTextElement(value, criteria)]) |
|
809 |
return search_result |
|
810 |
||
811 |
def _updateConfigurationResourceElementName(self, old_name, new_name): |
|
812 |
for varlist in self.getglobalVars(): |
|
813 |
for var in varlist.getvariable(): |
|
814 |
var_address = var.getaddress() |
|
815 |
if var_address is not None: |
|
816 |
if var_address == old_name: |
|
817 |
var.setaddress(new_name) |
|
818 |
if var.getname() == old_name: |
|
819 |
var.setname(new_name) |
|
820 |
||
821 |
def _updateConfigurationResourceElementAddress(self, address_model, new_leading): |
|
822 |
for varlist in self.getglobalVars(): |
|
823 |
for var in varlist.getvariable(): |
|
824 |
var_address = var.getaddress() |
|
825 |
if var_address is not None: |
|
826 |
var.setaddress(update_address(var_address, address_model, new_leading)) |
|
827 |
||
828 |
def _removeConfigurationResourceVariableByAddress(self, address): |
|
829 |
for varlist in self.getglobalVars(): |
|
830 |
variables = varlist.getvariable() |
|
831 |
for i in xrange(len(variables)-1, -1, -1): |
|
832 |
if variables[i].getaddress() == address: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
833 |
variables.remove(variables[i]) |
814 | 834 |
|
835 |
def _removeConfigurationResourceVariableByFilter(self, address_model): |
|
836 |
for varlist in self.getglobalVars(): |
|
837 |
variables = varlist.getvariable() |
|
838 |
for i in xrange(len(variables)-1, -1, -1): |
|
839 |
var_address = variables[i].getaddress() |
|
840 |
if var_address is not None: |
|
841 |
result = address_model.match(var_address) |
|
842 |
if result is not None: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
843 |
variables.remove(variables[i]) |
814 | 844 |
|
845 |
def _SearchInConfigurationResource(self, criteria, parent_infos=[]): |
|
846 |
search_result = _Search([("name", self.getname())], criteria, parent_infos) |
|
847 |
var_number = 0 |
|
848 |
for varlist in self.getglobalVars(): |
|
849 |
variable_type = searchResultVarTypes.get("globalVars", "var_local") |
|
850 |
variables = varlist.getvariable() |
|
851 |
for modifier, has_modifier in [("constant", varlist.getconstant()), |
|
852 |
("retain", varlist.getretain()), |
|
853 |
("non_retain", varlist.getnonretain())]: |
|
854 |
if has_modifier: |
|
855 |
for result in TestTextElement(modifier, criteria): |
|
856 |
search_result.append((tuple(parent_infos + [variable_type, (var_number, var_number + len(variables)), modifier]),) + result) |
|
857 |
break |
|
858 |
for variable in variables: |
|
859 |
search_result.extend(variable.Search(criteria, parent_infos + [variable_type, var_number])) |
|
860 |
var_number += 1 |
|
861 |
return search_result |
|
862 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
863 |
cls = PLCOpenParser.GetElementClass("configuration", "configurations") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
864 |
if cls: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
865 |
|
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
866 |
def addglobalVar(self, var_type, name, location="", description=""): |
1171
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
867 |
globalvars = self.getglobalVars() |
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
868 |
if len(globalvars) == 0: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
869 |
globalvars.append(PLCOpenParser.CreateElement("varList")) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
870 |
var = PLCOpenParser.CreateElement("variable", "varListPlain") |
1171
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
871 |
var.setname(name) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
872 |
var_type_obj = PLCOpenParser.CreateElement("dataType") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
873 |
if var_type in [x for x,y in TypeHierarchy_list if not x.startswith("ANY")]: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
874 |
var_type_obj.setcontent(PLCOpenParser.CreateElement( |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
875 |
var_type.lower() if var_type in ["STRING", "WSTRING"] |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
876 |
else vartype, "dataType")) |
1171
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
877 |
else: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
878 |
derived_type = PLCOpenParser.CreateElement("derived", "dataType") |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
879 |
derived_type.setname(var_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
880 |
var_type_obj.setcontent(derived_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
881 |
var.settype(var_type_obj) |
1171
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
882 |
if location != "": |
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
883 |
var.setaddress(location) |
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
884 |
if description != "": |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
885 |
ft = PLCOpenParser.CreateElement("documentation", "variable") |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
886 |
ft.setanyText(description) |
1171
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
887 |
var.setdocumentation(ft) |
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
888 |
globalvars[-1].appendvariable(var) |
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
889 |
setattr(cls, "addglobalVar", addglobalVar) |
a506e4de8f84
Add support for Drag'n dropping located variables to function block creating global located variable in configuration and external variable in function block
Laurent Bessard
parents:
1142
diff
changeset
|
890 |
|
814 | 891 |
def updateElementName(self, old_name, new_name): |
892 |
_updateConfigurationResourceElementName(self, old_name, new_name) |
|
893 |
for resource in self.getresource(): |
|
894 |
resource.updateElementName(old_name, new_name) |
|
895 |
setattr(cls, "updateElementName", updateElementName) |
|
896 |
||
897 |
def updateElementAddress(self, address_model, new_leading): |
|
898 |
_updateConfigurationResourceElementAddress(self, address_model, new_leading) |
|
899 |
for resource in self.getresource(): |
|
900 |
resource.updateElementAddress(address_model, new_leading) |
|
901 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
902 |
||
903 |
setattr(cls, "removeVariableByAddress", _removeConfigurationResourceVariableByAddress) |
|
904 |
setattr(cls, "removeVariableByFilter", _removeConfigurationResourceVariableByFilter) |
|
905 |
||
906 |
def Search(self, criteria, parent_infos=[]): |
|
907 |
search_result = [] |
|
908 |
parent_infos = parent_infos + ["C::%s" % self.getname()] |
|
909 |
filter = criteria["filter"] |
|
910 |
if filter == "all" or "configuration" in filter: |
|
911 |
search_result = _SearchInConfigurationResource(self, criteria, parent_infos) |
|
912 |
for resource in self.getresource(): |
|
913 |
search_result.extend(resource.Search(criteria, parent_infos)) |
|
914 |
return search_result |
|
915 |
setattr(cls, "Search", Search) |
|
916 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
917 |
cls = PLCOpenParser.GetElementClass("resource", "configuration") |
814 | 918 |
if cls: |
919 |
def updateElementName(self, old_name, new_name): |
|
920 |
_updateConfigurationResourceElementName(self, old_name, new_name) |
|
921 |
for instance in self.getpouInstance(): |
|
922 |
instance.updateElementName(old_name, new_name) |
|
923 |
for task in self.gettask(): |
|
924 |
task.updateElementName(old_name, new_name) |
|
925 |
setattr(cls, "updateElementName", updateElementName) |
|
926 |
||
927 |
def updateElementAddress(self, address_model, new_leading): |
|
928 |
_updateConfigurationResourceElementAddress(self, address_model, new_leading) |
|
929 |
for task in self.gettask(): |
|
930 |
task.updateElementAddress(address_model, new_leading) |
|
931 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
932 |
||
933 |
setattr(cls, "removeVariableByAddress", _removeConfigurationResourceVariableByAddress) |
|
934 |
setattr(cls, "removeVariableByFilter", _removeConfigurationResourceVariableByFilter) |
|
935 |
||
936 |
def Search(self, criteria, parent_infos=[]): |
|
937 |
parent_infos = parent_infos[:-1] + ["R::%s::%s" % (parent_infos[-1].split("::")[1], self.getname())] |
|
938 |
search_result = _SearchInConfigurationResource(self, criteria, parent_infos) |
|
939 |
task_number = 0 |
|
940 |
instance_number = 0 |
|
941 |
for task in self.gettask(): |
|
942 |
results = TestTextElement(task.getname(), criteria) |
|
943 |
for result in results: |
|
944 |
search_result.append((tuple(parent_infos + ["task", task_number, "name"]),) + result) |
|
945 |
search_result.extend(task.Search(criteria, parent_infos + ["task", task_number])) |
|
946 |
task_number += 1 |
|
947 |
for instance in task.getpouInstance(): |
|
948 |
search_result.extend(task.Search(criteria, parent_infos + ["instance", instance_number])) |
|
949 |
for result in results: |
|
950 |
search_result.append((tuple(parent_infos + ["instance", instance_number, "task"]),) + result) |
|
951 |
instance_number += 1 |
|
952 |
for instance in self.getpouInstance(): |
|
953 |
search_result.extend(instance.Search(criteria, parent_infos + ["instance", instance_number])) |
|
954 |
instance_number += 1 |
|
955 |
return search_result |
|
956 |
setattr(cls, "Search", Search) |
|
957 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
958 |
cls = PLCOpenParser.GetElementClass("task", "resource") |
814 | 959 |
if cls: |
960 |
def compatibility(self, tree): |
|
961 |
if tree.hasAttribute("interval"): |
|
962 |
interval = GetAttributeValue(tree._attrs["interval"]) |
|
963 |
result = time_model.match(interval) |
|
964 |
if result is not None: |
|
965 |
values = result.groups() |
|
966 |
time_values = [int(v) for v in values[:2]] |
|
967 |
seconds = float(values[2]) |
|
968 |
time_values.extend([int(seconds), int((seconds % 1) * 1000000)]) |
|
969 |
text = "t#" |
|
970 |
if time_values[0] != 0: |
|
971 |
text += "%dh"%time_values[0] |
|
972 |
if time_values[1] != 0: |
|
973 |
text += "%dm"%time_values[1] |
|
974 |
if time_values[2] != 0: |
|
975 |
text += "%ds"%time_values[2] |
|
976 |
if time_values[3] != 0: |
|
977 |
if time_values[3] % 1000 != 0: |
|
978 |
text += "%.3fms"%(float(time_values[3]) / 1000) |
|
979 |
else: |
|
980 |
text += "%dms"%(time_values[3] / 1000) |
|
981 |
NodeSetAttr(tree, "interval", text) |
|
982 |
setattr(cls, "compatibility", compatibility) |
|
983 |
||
984 |
def updateElementName(self, old_name, new_name): |
|
985 |
if self.single == old_name: |
|
986 |
self.single = new_name |
|
987 |
if self.interval == old_name: |
|
988 |
self.interval = new_name |
|
989 |
for instance in self.getpouInstance(): |
|
990 |
instance.updateElementName(old_name, new_name) |
|
991 |
setattr(cls, "updateElementName", updateElementName) |
|
992 |
||
993 |
def updateElementAddress(self, address_model, new_leading): |
|
994 |
if self.single is not None: |
|
995 |
self.single = update_address(self.single, address_model, new_leading) |
|
996 |
if self.interval is not None: |
|
997 |
self.interval = update_address(self.interval, address_model, new_leading) |
|
998 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
999 |
||
1000 |
def Search(self, criteria, parent_infos=[]): |
|
1001 |
return _Search([("single", self.getsingle()), |
|
1002 |
("interval", self.getinterval()), |
|
1003 |
("priority", str(self.getpriority()))], |
|
1004 |
criteria, parent_infos) |
|
1005 |
setattr(cls, "Search", Search) |
|
1006 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1007 |
cls = PLCOpenParser.GetElementClass("pouInstance") |
814 | 1008 |
if cls: |
1009 |
def compatibility(self, tree): |
|
1010 |
if tree.hasAttribute("type"): |
|
1011 |
NodeRenameAttr(tree, "type", "typeName") |
|
1012 |
setattr(cls, "compatibility", compatibility) |
|
1013 |
||
1014 |
def updateElementName(self, old_name, new_name): |
|
1015 |
if self.typeName == old_name: |
|
1016 |
self.typeName = new_name |
|
1017 |
setattr(cls, "updateElementName", updateElementName) |
|
1018 |
||
1019 |
def Search(self, criteria, parent_infos=[]): |
|
1020 |
return _Search([("name", self.getname()), |
|
1021 |
("type", self.gettypeName())], |
|
1022 |
criteria, parent_infos) |
|
1023 |
setattr(cls, "Search", Search) |
|
1024 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1025 |
cls = PLCOpenParser.GetElementClass("variable", "varListPlain") |
814 | 1026 |
if cls: |
1027 |
def gettypeAsText(self): |
|
1028 |
vartype_content = self.gettype().getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1029 |
vartype_content_name = vartype_content.getLocalTag() |
814 | 1030 |
# Variable type is a user data type |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1031 |
if vartype_content_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1032 |
return vartype_content.getname() |
814 | 1033 |
# Variable type is a string type |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1034 |
elif vartype_content_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1035 |
return vartype_content_name.upper() |
814 | 1036 |
# Variable type is an array |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1037 |
elif vartype_content_name == "array": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1038 |
base_type = vartype_content.baseType.getcontent() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1039 |
base_type_name = base_type.getLocalTag() |
814 | 1040 |
# Array derived directly from a user defined type |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1041 |
if base_type_name == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1042 |
basetype_name = base_type.getname() |
814 | 1043 |
# Array derived directly from a string type |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1044 |
elif base_type_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1045 |
basetype_name = base_type_name.upper() |
814 | 1046 |
# Array derived directly from an elementary type |
1047 |
else: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1048 |
basetype_name = base_type_name |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1049 |
return "ARRAY [%s] OF %s" % (",".join(map(lambda x : "%s..%s" % (x.getlower(), x.getupper()), vartype_content.getdimension())), basetype_name) |
814 | 1050 |
# Variable type is an elementary type |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1051 |
return vartype_content_name |
814 | 1052 |
setattr(cls, "gettypeAsText", gettypeAsText) |
1053 |
||
1054 |
def Search(self, criteria, parent_infos=[]): |
|
1055 |
search_result = _Search([("name", self.getname()), |
|
1056 |
("type", self.gettypeAsText()), |
|
1057 |
("location", self.getaddress())], |
|
1058 |
criteria, parent_infos) |
|
1059 |
initial = self.getinitialValue() |
|
1060 |
if initial is not None: |
|
1061 |
search_result.extend(_Search([("initial value", initial.getvalue())], criteria, parent_infos)) |
|
1062 |
doc = self.getdocumentation() |
|
1063 |
if doc is not None: |
|
1064 |
search_result.extend(doc.Search(criteria, parent_infos + ["documentation"])) |
|
1065 |
return search_result |
|
1066 |
setattr(cls, "Search", Search) |
|
1067 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1068 |
cls = PLCOpenParser.GetElementClass("types", "project") |
814 | 1069 |
if cls: |
1070 |
def getdataTypeElements(self): |
|
1071 |
return self.dataTypes.getdataType() |
|
1072 |
setattr(cls, "getdataTypeElements", getdataTypeElements) |
|
1073 |
||
1074 |
def getdataTypeElement(self, name): |
|
1075 |
elements = self.dataTypes.getdataType() |
|
1076 |
for element in elements: |
|
1077 |
if element.getname() == name: |
|
1078 |
return element |
|
1079 |
return None |
|
1080 |
setattr(cls, "getdataTypeElement", getdataTypeElement) |
|
1081 |
||
1082 |
def appenddataTypeElement(self, name): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1083 |
new_datatype = PLCOpenParser.CreateElement("dataType", "dataTypes") |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1084 |
self.dataTypes.appenddataType(new_datatype) |
814 | 1085 |
new_datatype.setname(name) |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1086 |
new_datatype.baseType.setcontent(PLCOpenParser.CreateElement("BOOL", "dataType")) |
814 | 1087 |
setattr(cls, "appenddataTypeElement", appenddataTypeElement) |
1088 |
||
1089 |
def insertdataTypeElement(self, index, dataType): |
|
1090 |
self.dataTypes.insertdataType(index, dataType) |
|
1091 |
setattr(cls, "insertdataTypeElement", insertdataTypeElement) |
|
1092 |
||
1093 |
def removedataTypeElement(self, name): |
|
1094 |
found = False |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1095 |
for element in self.dataTypes.getdataType(): |
814 | 1096 |
if element.getname() == name: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1097 |
self.dataTypes.remove(element) |
814 | 1098 |
found = True |
1099 |
break |
|
1100 |
if not found: |
|
1101 |
raise ValueError, _("\"%s\" Data Type doesn't exist !!!")%name |
|
1102 |
setattr(cls, "removedataTypeElement", removedataTypeElement) |
|
1103 |
||
1104 |
def getpouElements(self): |
|
1105 |
return self.pous.getpou() |
|
1106 |
setattr(cls, "getpouElements", getpouElements) |
|
1107 |
||
1108 |
def getpouElement(self, name): |
|
1109 |
elements = self.pous.getpou() |
|
1110 |
for element in elements: |
|
1111 |
if element.getname() == name: |
|
1112 |
return element |
|
1113 |
return None |
|
1114 |
setattr(cls, "getpouElement", getpouElement) |
|
1115 |
||
1116 |
def appendpouElement(self, name, pou_type, body_type): |
|
1117 |
for element in self.pous.getpou(): |
|
1118 |
if element.getname() == name: |
|
1119 |
raise ValueError, _("\"%s\" POU already exists !!!")%name |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1120 |
new_pou = PLCOpenParser.CreateElement("pou", "pous") |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1121 |
self.pous.appendpou(new_pou) |
814 | 1122 |
new_pou.setname(name) |
1123 |
new_pou.setpouType(pou_type) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1124 |
new_pou.appendbody(PLCOpenParser.CreateElement("body", "pou")) |
814 | 1125 |
new_pou.setbodyType(body_type) |
1126 |
setattr(cls, "appendpouElement", appendpouElement) |
|
1127 |
||
1128 |
def insertpouElement(self, index, pou): |
|
1129 |
self.pous.insertpou(index, pou) |
|
1130 |
setattr(cls, "insertpouElement", insertpouElement) |
|
1131 |
||
1132 |
def removepouElement(self, name): |
|
1133 |
found = False |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1134 |
for element in self.pous.getpou(): |
814 | 1135 |
if element.getname() == name: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1136 |
self.pous.remove(element) |
814 | 1137 |
found = True |
1138 |
break |
|
1139 |
if not found: |
|
1140 |
raise ValueError, _("\"%s\" POU doesn't exist !!!")%name |
|
1141 |
setattr(cls, "removepouElement", removepouElement) |
|
1142 |
||
1143 |
def Search(self, criteria, parent_infos=[]): |
|
1144 |
search_result = [] |
|
1145 |
filter = criteria["filter"] |
|
1146 |
for datatype in self.dataTypes.getdataType(): |
|
1147 |
search_result.extend(datatype.Search(criteria, parent_infos)) |
|
1148 |
for pou in self.pous.getpou(): |
|
1149 |
search_result.extend(pou.Search(criteria, parent_infos)) |
|
1150 |
return search_result |
|
1151 |
setattr(cls, "Search", Search) |
|
1152 |
||
1153 |
def _updateBaseTypeElementName(self, old_name, new_name): |
|
1154 |
self.baseType.updateElementName(old_name, new_name) |
|
1155 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1156 |
cls = PLCOpenParser.GetElementClass("dataType", "dataTypes") |
814 | 1157 |
if cls: |
1158 |
setattr(cls, "updateElementName", _updateBaseTypeElementName) |
|
1159 |
||
1160 |
def Search(self, criteria, parent_infos=[]): |
|
1161 |
search_result = [] |
|
1162 |
filter = criteria["filter"] |
|
1163 |
if filter == "all" or "datatype" in filter: |
|
1164 |
parent_infos = parent_infos + ["D::%s" % self.getname()] |
|
1165 |
search_result.extend(_Search([("name", self.getname())], criteria, parent_infos)) |
|
1166 |
search_result.extend(self.baseType.Search(criteria, parent_infos)) |
|
1167 |
if self.initialValue is not None: |
|
1168 |
search_result.extend(_Search([("initial", self.initialValue.getvalue())], criteria, parent_infos)) |
|
1169 |
return search_result |
|
1170 |
setattr(cls, "Search", Search) |
|
1171 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1172 |
cls = PLCOpenParser.GetElementClass("dataType") |
814 | 1173 |
if cls: |
1174 |
||
1175 |
def updateElementName(self, old_name, new_name): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1176 |
content_name = self.content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1177 |
if content_name in ["derived", "array", "subrangeSigned", "subrangeUnsigned"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1178 |
self.content.updateElementName(old_name, new_name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1179 |
elif content_name == "struct": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1180 |
for element in self.content.getvariable(): |
814 | 1181 |
element_type = element.type.updateElementName(old_name, new_name) |
1182 |
setattr(cls, "updateElementName", updateElementName) |
|
1183 |
||
1184 |
def Search(self, criteria, parent_infos=[]): |
|
1185 |
search_result = [] |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1186 |
content_name = self.content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1187 |
if content_name in ["derived", "array", "enum", "subrangeSigned", "subrangeUnsigned"]: |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1188 |
search_result.extend(self.content.Search(criteria, parent_infos + ["base"])) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1189 |
elif content_name == "struct": |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1190 |
for i, element in enumerate(self.content.getvariable()): |
814 | 1191 |
search_result.extend(element.Search(criteria, parent_infos + ["struct", i])) |
1192 |
else: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1193 |
if content_name in ["string", "wstring"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1194 |
content_name = content_name.upper() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1195 |
search_result.extend(_Search([("base", content_name)], criteria, parent_infos)) |
814 | 1196 |
return search_result |
1197 |
setattr(cls, "Search", Search) |
|
1198 |
||
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1199 |
cls = PLCOpenParser.GetElementClass("derived", "dataType") |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1200 |
if cls: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1201 |
def updateElementName(self, old_name, new_name): |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1202 |
if self.name == old_name: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1203 |
self.name = new_name |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1204 |
setattr(cls, "updateElementName", updateElementName) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1205 |
|
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1206 |
def Search(self, criteria, parent_infos=[]): |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1207 |
return [(tuple(parent_infos),) + result for result in TestTextElement(self.name, criteria)] |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1208 |
setattr(cls, "Search", Search) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1209 |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1210 |
cls = PLCOpenParser.GetElementClass("array", "dataType") |
814 | 1211 |
if cls: |
1212 |
setattr(cls, "updateElementName", _updateBaseTypeElementName) |
|
1213 |
||
1214 |
def Search(self, criteria, parent_infos=[]): |
|
1215 |
search_result = self.baseType.Search(criteria, parent_infos) |
|
1216 |
for i, dimension in enumerate(self.getdimension()): |
|
1217 |
search_result.extend(_Search([("lower", dimension.getlower()), |
|
1218 |
("upper", dimension.getupper())], |
|
1219 |
criteria, parent_infos + ["range", i])) |
|
1220 |
return search_result |
|
1221 |
setattr(cls, "Search", Search) |
|
1222 |
||
1223 |
def _SearchInSubrange(self, criteria, parent_infos=[]): |
|
1224 |
search_result = self.baseType.Search(criteria, parent_infos) |
|
1225 |
search_result.extend(_Search([("lower", self.range.getlower()), |
|
1226 |
("upper", self.range.getupper())], |
|
1227 |
criteria, parent_infos)) |
|
1228 |
return search_result |
|
1229 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1230 |
cls = PLCOpenParser.GetElementClass("subrangeSigned", "dataType") |
814 | 1231 |
if cls: |
1232 |
setattr(cls, "updateElementName", _updateBaseTypeElementName) |
|
1233 |
setattr(cls, "Search", _SearchInSubrange) |
|
1234 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1235 |
cls = PLCOpenParser.GetElementClass("subrangeUnsigned", "dataType") |
814 | 1236 |
if cls: |
1237 |
setattr(cls, "updateElementName", _updateBaseTypeElementName) |
|
1238 |
setattr(cls, "Search", _SearchInSubrange) |
|
1239 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1240 |
cls = PLCOpenParser.GetElementClass("enum", "dataType") |
814 | 1241 |
if cls: |
1242 |
||
1243 |
def updateElementName(self, old_name, new_name): |
|
1244 |
pass |
|
1245 |
setattr(cls, "updateElementName", updateElementName) |
|
1246 |
||
1247 |
def Search(self, criteria, parent_infos=[]): |
|
1248 |
search_result = [] |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1249 |
for i, value in enumerate(self.xpath("ppx:values/ppx:value", namespaces=PLCOpenParser.NSMAP)): |
814 | 1250 |
for result in TestTextElement(value.getname(), criteria): |
1251 |
search_result.append((tuple(parent_infos + ["value", i]),) + result) |
|
1252 |
return search_result |
|
1253 |
setattr(cls, "Search", Search) |
|
1254 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1255 |
cls = PLCOpenParser.GetElementClass("pou", "pous") |
814 | 1256 |
if cls: |
1257 |
||
1258 |
def setdescription(self, description): |
|
1259 |
doc = self.getdocumentation() |
|
1260 |
if doc is None: |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1261 |
doc = PLCOpenParser.CreateElement("documentation", "pou") |
814 | 1262 |
self.setdocumentation(doc) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1263 |
doc.setanyText(description) |
814 | 1264 |
setattr(cls, "setdescription", setdescription) |
1265 |
||
1266 |
def getdescription(self): |
|
1267 |
doc = self.getdocumentation() |
|
1268 |
if doc is not None: |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1269 |
return doc.getanyText() |
814 | 1270 |
return "" |
1271 |
setattr(cls, "getdescription", getdescription) |
|
1272 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1273 |
def setbodyType(self, body_type): |
814 | 1274 |
if len(self.body) > 0: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1275 |
if body_type in ["IL", "ST", "LD", "FBD", "SFC"]: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1276 |
self.body[0].setcontent(PLCOpenParser.CreateElement(body_type, "body")) |
814 | 1277 |
else: |
1278 |
raise ValueError, "%s isn't a valid body type!"%type |
|
1279 |
setattr(cls, "setbodyType", setbodyType) |
|
1280 |
||
1281 |
def getbodyType(self): |
|
1282 |
if len(self.body) > 0: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1283 |
return self.body[0].getcontent().getLocalTag() |
814 | 1284 |
setattr(cls, "getbodyType", getbodyType) |
1285 |
||
1286 |
def resetexecutionOrder(self): |
|
1287 |
if len(self.body) > 0: |
|
1288 |
self.body[0].resetexecutionOrder() |
|
1289 |
setattr(cls, "resetexecutionOrder", resetexecutionOrder) |
|
1290 |
||
1291 |
def compileexecutionOrder(self): |
|
1292 |
if len(self.body) > 0: |
|
1293 |
self.body[0].compileexecutionOrder() |
|
1294 |
setattr(cls, "compileexecutionOrder", compileexecutionOrder) |
|
1295 |
||
1296 |
def setelementExecutionOrder(self, instance, new_executionOrder): |
|
1297 |
if len(self.body) > 0: |
|
1298 |
self.body[0].setelementExecutionOrder(instance, new_executionOrder) |
|
1299 |
setattr(cls, "setelementExecutionOrder", setelementExecutionOrder) |
|
1300 |
||
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1301 |
def addinstance(self, instance): |
814 | 1302 |
if len(self.body) > 0: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1303 |
self.body[0].appendcontentInstance(instance) |
814 | 1304 |
setattr(cls, "addinstance", addinstance) |
1305 |
||
1306 |
def getinstances(self): |
|
1307 |
if len(self.body) > 0: |
|
1308 |
return self.body[0].getcontentInstances() |
|
1309 |
return [] |
|
1310 |
setattr(cls, "getinstances", getinstances) |
|
1311 |
||
1312 |
def getinstance(self, id): |
|
1313 |
if len(self.body) > 0: |
|
1314 |
return self.body[0].getcontentInstance(id) |
|
1315 |
return None |
|
1316 |
setattr(cls, "getinstance", getinstance) |
|
1317 |
||
1318 |
def getrandomInstance(self, exclude): |
|
1319 |
if len(self.body) > 0: |
|
1320 |
return self.body[0].getcontentRandomInstance(exclude) |
|
1321 |
return None |
|
1322 |
setattr(cls, "getrandomInstance", getrandomInstance) |
|
1323 |
||
1324 |
def getinstanceByName(self, name): |
|
1325 |
if len(self.body) > 0: |
|
1326 |
return self.body[0].getcontentInstanceByName(name) |
|
1327 |
return None |
|
1328 |
setattr(cls, "getinstanceByName", getinstanceByName) |
|
1329 |
||
1330 |
def removeinstance(self, id): |
|
1331 |
if len(self.body) > 0: |
|
1332 |
self.body[0].removecontentInstance(id) |
|
1333 |
setattr(cls, "removeinstance", removeinstance) |
|
1334 |
||
1335 |
def settext(self, text): |
|
1336 |
if len(self.body) > 0: |
|
1337 |
self.body[0].settext(text) |
|
1338 |
setattr(cls, "settext", settext) |
|
1339 |
||
1340 |
def gettext(self): |
|
1341 |
if len(self.body) > 0: |
|
1342 |
return self.body[0].gettext() |
|
1343 |
return "" |
|
1344 |
setattr(cls, "gettext", gettext) |
|
1345 |
||
1346 |
def getvars(self): |
|
1347 |
vars = [] |
|
1348 |
if self.interface is not None: |
|
1349 |
reverse_types = {} |
|
1350 |
for name, value in VarTypes.items(): |
|
1351 |
reverse_types[value] = name |
|
1352 |
for varlist in self.interface.getcontent(): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1353 |
vars.append((reverse_types[varlist.getLocalTag()], varlist)) |
814 | 1354 |
return vars |
1355 |
setattr(cls, "getvars", getvars) |
|
1356 |
||
1357 |
def setvars(self, vars): |
|
1358 |
if self.interface is None: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1359 |
self.interface = PLCOpenParser.CreateElement("interface", "pou") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1360 |
self.interface.setcontent(vars) |
814 | 1361 |
setattr(cls, "setvars", setvars) |
1362 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1363 |
def addpouLocalVar(self, var_type, name, location="", description=""): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1364 |
self.addpouVar(var_type, name, location=location, description=description) |
814 | 1365 |
setattr(cls, "addpouLocalVar", addpouLocalVar) |
1366 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1367 |
def addpouExternalVar(self, var_type, name): |
814 | 1368 |
self.addpouVar(type, name, "externalVars") |
1369 |
setattr(cls, "addpouExternalVar", addpouExternalVar) |
|
1370 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1371 |
def addpouVar(self, var_type, name, var_class="localVars", location="", description=""): |
814 | 1372 |
if self.interface is None: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1373 |
self.interface = PLCOpenParser.CreateElement("interface", "pou") |
814 | 1374 |
content = self.interface.getcontent() |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1375 |
if len(content) == 0: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1376 |
varlist = PLCOpenParser.CreateElement(var_class, "interface") |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1377 |
self.interface.setcontent([varlist]) |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1378 |
elif content[-1] != var_class: |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1379 |
varlist = PLCOpenParser.CreateElement(var_class, "interface") |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1380 |
content[-1].addnext(varlist) |
814 | 1381 |
else: |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1382 |
varlist = content[-1] |
814 | 1383 |
variables = varlist.getvariable() |
1384 |
if varlist.getconstant() or varlist.getretain() or len(variables) > 0 and variables[0].getaddress(): |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1385 |
varlist = PLCOpenParser.CreateElement(var_class, "interface") |
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1386 |
content[-1].addnext(varlist) |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1387 |
var = PLCOpenParser.CreateElement("variable", "varListPlain") |
814 | 1388 |
var.setname(name) |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1389 |
var_type_obj = PLCOpenParser.CreateElement("type", "variable") |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1390 |
if var_type in [x for x,y in TypeHierarchy_list if not x.startswith("ANY")]: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1391 |
var_type_obj.setcontent(PLCOpenParser.CreateElement( |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1392 |
var_type.lower() if var_type in ["STRING", "WSTRING"] |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1393 |
else var_type, "dataType")) |
814 | 1394 |
else: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1395 |
derived_type = PLCOpenParser.CreateElement("derived", "dataType") |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1396 |
derived_type.setname(var_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1397 |
var_type_obj.setcontent(derived_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1398 |
var.settype(var_type_obj) |
814 | 1399 |
if location != "": |
1400 |
var.setaddress(location) |
|
1401 |
if description != "": |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1402 |
ft = PLCOpenParser.CreateElement("documentation", "variable") |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1403 |
ft.setanyText(description) |
814 | 1404 |
var.setdocumentation(ft) |
1405 |
||
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1406 |
varlist.appendvariable(var) |
814 | 1407 |
setattr(cls, "addpouVar", addpouVar) |
1408 |
||
1409 |
def changepouVar(self, old_type, old_name, new_type, new_name): |
|
1410 |
if self.interface is not None: |
|
1411 |
content = self.interface.getcontent() |
|
1412 |
for varlist in content: |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1413 |
variables = varlist.getvariable() |
814 | 1414 |
for var in variables: |
1415 |
if var.getname() == old_name: |
|
1416 |
vartype_content = var.gettype().getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1417 |
if vartype_content.getLocalTag() == "derived" and vartype_content.getname() == old_type: |
814 | 1418 |
var.setname(new_name) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1419 |
vartype_content.setname(new_type) |
814 | 1420 |
return |
1421 |
setattr(cls, "changepouVar", changepouVar) |
|
1422 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1423 |
def removepouVar(self, var_type, name): |
814 | 1424 |
if self.interface is not None: |
1425 |
content = self.interface.getcontent() |
|
1426 |
for varlist in content: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1427 |
for var in varlist.getvariable(): |
814 | 1428 |
if var.getname() == name: |
1429 |
vartype_content = var.gettype().getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1430 |
if vartype_content.getLocalTag() == "derived" and vartype_content.getname() == var_type: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1431 |
varlist.remove(var) |
814 | 1432 |
break |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1433 |
if len(varlist.getvariable()) == 0: |
814 | 1434 |
content.remove(varlist) |
1435 |
break |
|
1436 |
setattr(cls, "removepouVar", removepouVar) |
|
1437 |
||
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1438 |
def hasblock(self, name=None, block_type=None): |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1439 |
if self.getbodyType() in ["FBD", "LD", "SFC"]: |
814 | 1440 |
for instance in self.getinstances(): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1441 |
if (isinstance(instance, PLCOpenParser.GetElementClass("block", "fbdObjects")) and |
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1442 |
(name and instance.getinstanceName() == name or |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1443 |
block_type and instance.gettypeName() == block_type)): |
814 | 1444 |
return True |
1445 |
if self.transitions: |
|
1446 |
for transition in self.transitions.gettransition(): |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1447 |
result = transition.hasblock(name, block_type) |
814 | 1448 |
if result: |
1449 |
return result |
|
1450 |
if self.actions: |
|
1451 |
for action in self.actions.getaction(): |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1452 |
result = action.hasblock(name, block_type) |
814 | 1453 |
if result: |
1454 |
return result |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1455 |
elif block_type is not None and len(self.body) > 0: |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1456 |
return self.body[0].hasblock(block_type) |
814 | 1457 |
return False |
1458 |
setattr(cls, "hasblock", hasblock) |
|
1459 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1460 |
def addtransition(self, name, body_type): |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1461 |
if self.transitions is None: |
814 | 1462 |
self.addtransitions() |
1463 |
self.transitions.settransition([]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1464 |
transition = PLCOpenParser.CreateElement("transition", "transitions") |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1465 |
self.transitions.appendtransition(transition) |
814 | 1466 |
transition.setname(name) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1467 |
transition.setbodyType(body_type) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1468 |
if body_type == "ST": |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1469 |
transition.setanyText(":= ;") |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1470 |
elif body_type == "IL": |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1471 |
transition.setanyText("\tST\t%s"%name) |
814 | 1472 |
setattr(cls, "addtransition", addtransition) |
1473 |
||
1474 |
def gettransition(self, name): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1475 |
if self.transitions is not None: |
814 | 1476 |
for transition in self.transitions.gettransition(): |
1477 |
if transition.getname() == name: |
|
1478 |
return transition |
|
1479 |
return None |
|
1480 |
setattr(cls, "gettransition", gettransition) |
|
1481 |
||
1482 |
def gettransitionList(self): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1483 |
if self.transitions is not None: |
814 | 1484 |
return self.transitions.gettransition() |
1485 |
return [] |
|
1486 |
setattr(cls, "gettransitionList", gettransitionList) |
|
1487 |
||
1488 |
def removetransition(self, name): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1489 |
if self.transitions is not None: |
814 | 1490 |
removed = False |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1491 |
for transition in self.transitions.gettransition(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1492 |
if transition.getname() == name: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1493 |
if transition.getbodyType() in ["FBD", "LD", "SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1494 |
for instance in transition.getinstances(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1495 |
if isinstance(instance, PLCOpenParser.GetElementClass("block", "fbdObjects")): |
824
be669f4c51c4
Fix bug in SFC function block declarations from transition and action not removed when transition or action is deleted
laurent
parents:
814
diff
changeset
|
1496 |
self.removepouVar(instance.gettypeName(), |
be669f4c51c4
Fix bug in SFC function block declarations from transition and action not removed when transition or action is deleted
laurent
parents:
814
diff
changeset
|
1497 |
instance.getinstanceName()) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1498 |
self.transitions.remove(transition) |
814 | 1499 |
removed = True |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1500 |
break |
814 | 1501 |
if not removed: |
1502 |
raise ValueError, _("Transition with name %s doesn't exist!")%name |
|
1503 |
setattr(cls, "removetransition", removetransition) |
|
1504 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1505 |
def addaction(self, name, body_type): |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1506 |
if self.actions is None: |
814 | 1507 |
self.addactions() |
1508 |
self.actions.setaction([]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1509 |
action = PLCOpenParser.CreateElement("action", "actions") |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1510 |
self.actions.appendaction(action) |
814 | 1511 |
action.setname(name) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1512 |
action.setbodyType(body_type) |
814 | 1513 |
setattr(cls, "addaction", addaction) |
1514 |
||
1515 |
def getaction(self, name): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1516 |
if self.actions is not None: |
814 | 1517 |
for action in self.actions.getaction(): |
1518 |
if action.getname() == name: |
|
1519 |
return action |
|
1520 |
return None |
|
1521 |
setattr(cls, "getaction", getaction) |
|
1522 |
||
1523 |
def getactionList(self): |
|
1524 |
if self.actions: |
|
1525 |
return self.actions.getaction() |
|
1526 |
return [] |
|
1527 |
setattr(cls, "getactionList", getactionList) |
|
824
be669f4c51c4
Fix bug in SFC function block declarations from transition and action not removed when transition or action is deleted
laurent
parents:
814
diff
changeset
|
1528 |
|
814 | 1529 |
def removeaction(self, name): |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1530 |
if self.actions is not None: |
814 | 1531 |
removed = False |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1532 |
for action in self.actions.getaction(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1533 |
if action.getname() == name: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1534 |
if action.getbodyType() in ["FBD", "LD", "SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1535 |
for instance in action.getinstances(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1536 |
if isinstance(instance, PLCOpenParser.GetElementClass("block", "fbdObjects")): |
824
be669f4c51c4
Fix bug in SFC function block declarations from transition and action not removed when transition or action is deleted
laurent
parents:
814
diff
changeset
|
1537 |
self.removepouVar(instance.gettypeName(), |
be669f4c51c4
Fix bug in SFC function block declarations from transition and action not removed when transition or action is deleted
laurent
parents:
814
diff
changeset
|
1538 |
instance.getinstanceName()) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1539 |
self.actions.remove(action) |
814 | 1540 |
removed = True |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1541 |
break |
814 | 1542 |
if not removed: |
1543 |
raise ValueError, _("Action with name %s doesn't exist!")%name |
|
1544 |
setattr(cls, "removeaction", removeaction) |
|
1545 |
||
1546 |
def updateElementName(self, old_name, new_name): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1547 |
if self.interface is not None: |
814 | 1548 |
for content in self.interface.getcontent(): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1549 |
for var in content.getvariable(): |
814 | 1550 |
var_address = var.getaddress() |
1551 |
if var_address is not None: |
|
1552 |
if var_address == old_name: |
|
1553 |
var.setaddress(new_name) |
|
1554 |
if var.getname() == old_name: |
|
1555 |
var.setname(new_name) |
|
1556 |
var_type_content = var.gettype().getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1557 |
if var_type_content.getLocalTag() == "derived": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1558 |
if var_type_content.getname() == old_name: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1559 |
var_type_content.setname(new_name) |
814 | 1560 |
self.body[0].updateElementName(old_name, new_name) |
1561 |
for action in self.getactionList(): |
|
1562 |
action.updateElementName(old_name, new_name) |
|
1563 |
for transition in self.gettransitionList(): |
|
1564 |
transition.updateElementName(old_name, new_name) |
|
1565 |
setattr(cls, "updateElementName", updateElementName) |
|
1566 |
||
1567 |
def updateElementAddress(self, address_model, new_leading): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1568 |
if self.interface is not None: |
814 | 1569 |
for content in self.interface.getcontent(): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1570 |
for var in content.getvariable(): |
814 | 1571 |
var_address = var.getaddress() |
1572 |
if var_address is not None: |
|
1573 |
var.setaddress(update_address(var_address, address_model, new_leading)) |
|
1574 |
self.body[0].updateElementAddress(address_model, new_leading) |
|
1575 |
for action in self.getactionList(): |
|
1576 |
action.updateElementAddress(address_model, new_leading) |
|
1577 |
for transition in self.gettransitionList(): |
|
1578 |
transition.updateElementAddress(address_model, new_leading) |
|
1579 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
1580 |
||
1581 |
def removeVariableByAddress(self, address): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1582 |
if self.interface is not None: |
814 | 1583 |
for content in self.interface.getcontent(): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1584 |
for variable in content.getvariable(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1585 |
if variable.getaddress() == address: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1586 |
content.remove(variable) |
814 | 1587 |
setattr(cls, "removeVariableByAddress", removeVariableByAddress) |
1588 |
||
1589 |
def removeVariableByFilter(self, address_model): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1590 |
if self.interface is not None: |
814 | 1591 |
for content in self.interface.getcontent(): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1592 |
for variable in content.getvariable(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1593 |
var_address = variable.getaddress() |
814 | 1594 |
if var_address is not None: |
1595 |
result = address_model.match(var_address) |
|
1596 |
if result is not None: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1597 |
content.remove(variable) |
814 | 1598 |
setattr(cls, "removeVariableByFilter", removeVariableByFilter) |
1599 |
||
1600 |
def Search(self, criteria, parent_infos=[]): |
|
1601 |
search_result = [] |
|
1602 |
filter = criteria["filter"] |
|
1603 |
if filter == "all" or self.getpouType() in filter: |
|
1604 |
parent_infos = parent_infos + ["P::%s" % self.getname()] |
|
1605 |
search_result.extend(_Search([("name", self.getname())], criteria, parent_infos)) |
|
1606 |
if self.interface is not None: |
|
1607 |
var_number = 0 |
|
1608 |
for content in self.interface.getcontent(): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1609 |
variable_type = searchResultVarTypes.get(content, "var_local") |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1610 |
variables = content.getvariable() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1611 |
for modifier, has_modifier in [("constant", content.getconstant()), |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1612 |
("retain", content.getretain()), |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1613 |
("non_retain", content.getnonretain())]: |
814 | 1614 |
if has_modifier: |
1615 |
for result in TestTextElement(modifier, criteria): |
|
1616 |
search_result.append((tuple(parent_infos + [variable_type, (var_number, var_number + len(variables)), modifier]),) + result) |
|
1617 |
break |
|
1618 |
for variable in variables: |
|
1619 |
search_result.extend(variable.Search(criteria, parent_infos + [variable_type, var_number])) |
|
1620 |
var_number += 1 |
|
1621 |
if len(self.body) > 0: |
|
1622 |
search_result.extend(self.body[0].Search(criteria, parent_infos)) |
|
1623 |
for action in self.getactionList(): |
|
1624 |
search_result.extend(action.Search(criteria, parent_infos)) |
|
1625 |
for transition in self.gettransitionList(): |
|
1626 |
search_result.extend(transition.Search(criteria, parent_infos)) |
|
1627 |
return search_result |
|
1628 |
setattr(cls, "Search", Search) |
|
1629 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1630 |
def setbodyType(self, body_type): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1631 |
if body_type in ["IL", "ST", "LD", "FBD", "SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1632 |
self.body.setcontent(PLCOpenParser.CreateElement(body_type, "body")) |
814 | 1633 |
else: |
1634 |
raise ValueError, "%s isn't a valid body type!"%type |
|
1635 |
||
1636 |
def getbodyType(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1637 |
return self.body.getcontent().getLocalTag() |
814 | 1638 |
|
1639 |
def resetexecutionOrder(self): |
|
1640 |
self.body.resetexecutionOrder() |
|
1641 |
||
1642 |
def compileexecutionOrder(self): |
|
1643 |
self.body.compileexecutionOrder() |
|
1644 |
||
1645 |
def setelementExecutionOrder(self, instance, new_executionOrder): |
|
1646 |
self.body.setelementExecutionOrder(instance, new_executionOrder) |
|
1647 |
||
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1648 |
def addinstance(self, instance): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1649 |
self.body.appendcontentInstance(instance) |
814 | 1650 |
|
1651 |
def getinstances(self): |
|
1652 |
return self.body.getcontentInstances() |
|
1653 |
||
1654 |
def getinstance(self, id): |
|
1655 |
return self.body.getcontentInstance(id) |
|
1656 |
||
1657 |
def getrandomInstance(self, exclude): |
|
1658 |
return self.body.getcontentRandomInstance(exclude) |
|
1659 |
||
1660 |
def getinstanceByName(self, name): |
|
1661 |
return self.body.getcontentInstanceByName(name) |
|
1662 |
||
1663 |
def removeinstance(self, id): |
|
1664 |
self.body.removecontentInstance(id) |
|
1665 |
||
1666 |
def settext(self, text): |
|
1667 |
self.body.settext(text) |
|
1668 |
||
1669 |
def gettext(self): |
|
1670 |
return self.body.gettext() |
|
1671 |
||
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1672 |
def hasblock(self, name=None, block_type=None): |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1673 |
if self.getbodyType() in ["FBD", "LD", "SFC"]: |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1674 |
for instance in self.getinstances(): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1675 |
if (isinstance(instance, PLCOpenParser.GetElementClass("block", "fbdObjects")) and |
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1676 |
(name and instance.getinstanceName() == name or |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1677 |
block_type and instance.gettypeName() == block_type)): |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1678 |
return True |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1679 |
elif block_type is not None: |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1680 |
return self.body.hasblock(block_type) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1681 |
return False |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1682 |
|
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1683 |
def updateElementName(self, old_name, new_name): |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1684 |
self.body.updateElementName(old_name, new_name) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1685 |
|
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1686 |
def updateElementAddress(self, address_model, new_leading): |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1687 |
self.body.updateElementAddress(address_model, new_leading) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1688 |
|
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1689 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1690 |
cls = PLCOpenParser.GetElementClass("transition", "transitions") |
814 | 1691 |
if cls: |
1692 |
setattr(cls, "setbodyType", setbodyType) |
|
1693 |
setattr(cls, "getbodyType", getbodyType) |
|
1694 |
setattr(cls, "resetexecutionOrder", resetexecutionOrder) |
|
1695 |
setattr(cls, "compileexecutionOrder", compileexecutionOrder) |
|
1696 |
setattr(cls, "setelementExecutionOrder", setelementExecutionOrder) |
|
1697 |
setattr(cls, "addinstance", addinstance) |
|
1698 |
setattr(cls, "getinstances", getinstances) |
|
1699 |
setattr(cls, "getinstance", getinstance) |
|
1700 |
setattr(cls, "getrandomInstance", getrandomInstance) |
|
1701 |
setattr(cls, "getinstanceByName", getinstanceByName) |
|
1702 |
setattr(cls, "removeinstance", removeinstance) |
|
1703 |
setattr(cls, "settext", settext) |
|
1704 |
setattr(cls, "gettext", gettext) |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1705 |
setattr(cls, "hasblock", hasblock) |
814 | 1706 |
setattr(cls, "updateElementName", updateElementName) |
1707 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1708 |
|
814 | 1709 |
def Search(self, criteria, parent_infos): |
1710 |
search_result = [] |
|
1711 |
parent_infos = parent_infos[:-1] + ["T::%s::%s" % (parent_infos[-1].split("::")[1], self.getname())] |
|
1712 |
for result in TestTextElement(self.getname(), criteria): |
|
1713 |
search_result.append((tuple(parent_infos + ["name"]),) + result) |
|
1714 |
search_result.extend(self.body.Search(criteria, parent_infos)) |
|
1715 |
return search_result |
|
1716 |
setattr(cls, "Search", Search) |
|
1717 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1718 |
cls = PLCOpenParser.GetElementClass("action", "actions") |
814 | 1719 |
if cls: |
1720 |
setattr(cls, "setbodyType", setbodyType) |
|
1721 |
setattr(cls, "getbodyType", getbodyType) |
|
1722 |
setattr(cls, "resetexecutionOrder", resetexecutionOrder) |
|
1723 |
setattr(cls, "compileexecutionOrder", compileexecutionOrder) |
|
1724 |
setattr(cls, "setelementExecutionOrder", setelementExecutionOrder) |
|
1725 |
setattr(cls, "addinstance", addinstance) |
|
1726 |
setattr(cls, "getinstances", getinstances) |
|
1727 |
setattr(cls, "getinstance", getinstance) |
|
1728 |
setattr(cls, "getrandomInstance", getrandomInstance) |
|
1729 |
setattr(cls, "getinstanceByName", getinstanceByName) |
|
1730 |
setattr(cls, "removeinstance", removeinstance) |
|
1731 |
setattr(cls, "settext", settext) |
|
1732 |
setattr(cls, "gettext", gettext) |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1733 |
setattr(cls, "hasblock", hasblock) |
814 | 1734 |
setattr(cls, "updateElementName", updateElementName) |
1735 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1736 |
|
814 | 1737 |
def Search(self, criteria, parent_infos): |
1738 |
search_result = [] |
|
1739 |
parent_infos = parent_infos[:-1] + ["A::%s::%s" % (parent_infos[-1].split("::")[1], self.getname())] |
|
1740 |
for result in TestTextElement(self.getname(), criteria): |
|
1741 |
search_result.append((tuple(parent_infos + ["name"]),) + result) |
|
1742 |
search_result.extend(self.body.Search(criteria, parent_infos)) |
|
1743 |
return search_result |
|
1744 |
setattr(cls, "Search", Search) |
|
1745 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1746 |
cls = PLCOpenParser.GetElementClass("body") |
814 | 1747 |
if cls: |
1748 |
cls.currentExecutionOrderId = 0 |
|
1749 |
||
1750 |
def resetcurrentExecutionOrderId(self): |
|
1751 |
object.__setattr__(self, "currentExecutionOrderId", 0) |
|
1752 |
setattr(cls, "resetcurrentExecutionOrderId", resetcurrentExecutionOrderId) |
|
1753 |
||
1754 |
def getnewExecutionOrderId(self): |
|
1755 |
object.__setattr__(self, "currentExecutionOrderId", self.currentExecutionOrderId + 1) |
|
1756 |
return self.currentExecutionOrderId |
|
1757 |
setattr(cls, "getnewExecutionOrderId", getnewExecutionOrderId) |
|
1758 |
||
1759 |
def resetexecutionOrder(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1760 |
if self.content.getLocalTag() == "FBD": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1761 |
for element in self.content.getcontent(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1762 |
if not isinstance(element, (PLCOpenParser.GetElementClass("comment", "commonObjects"), |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1763 |
PLCOpenParser.GetElementClass("connector", "commonObjects"), |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1764 |
PLCOpenParser.GetElementClass("continuation", "commonObjects"))): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1765 |
element.setexecutionOrderId(0) |
814 | 1766 |
else: |
1767 |
raise TypeError, _("Can only generate execution order on FBD networks!") |
|
1768 |
setattr(cls, "resetexecutionOrder", resetexecutionOrder) |
|
1769 |
||
1770 |
def compileexecutionOrder(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1771 |
if self.content.getLocalTag() == "FBD": |
814 | 1772 |
self.resetexecutionOrder() |
1773 |
self.resetcurrentExecutionOrderId() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1774 |
for element in self.content.getcontent(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1775 |
if isinstance(element, PLCOpenParser.GetElementClass("outVariable", "fbdObjects")) and element.getexecutionOrderId() == 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1776 |
connections = element.connectionPointIn.getconnections() |
814 | 1777 |
if connections and len(connections) == 1: |
1778 |
self.compileelementExecutionOrder(connections[0]) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1779 |
element.setexecutionOrderId(self.getnewExecutionOrderId()) |
814 | 1780 |
else: |
1781 |
raise TypeError, _("Can only generate execution order on FBD networks!") |
|
1782 |
setattr(cls, "compileexecutionOrder", compileexecutionOrder) |
|
1783 |
||
1784 |
def compileelementExecutionOrder(self, link): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1785 |
if self.content.getLocalTag() == "FBD": |
814 | 1786 |
localid = link.getrefLocalId() |
1787 |
instance = self.getcontentInstance(localid) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1788 |
if isinstance(instance, PLCOpenParser.GetElementClass("block", "fbdObjects")) and instance.getexecutionOrderId() == 0: |
814 | 1789 |
for variable in instance.inputVariables.getvariable(): |
1790 |
connections = variable.connectionPointIn.getconnections() |
|
1791 |
if connections and len(connections) == 1: |
|
1792 |
self.compileelementExecutionOrder(connections[0]) |
|
1793 |
instance.setexecutionOrderId(self.getnewExecutionOrderId()) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1794 |
elif isinstance(instance, PLCOpenParser.GetElementClass("continuation", "commonObjects")) and instance.getexecutionOrderId() == 0: |
814 | 1795 |
name = instance.getname() |
1796 |
for tmp_instance in self.getcontentInstances(): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1797 |
if isinstance(tmp_instance, PLCOpenParser.GetElementClass("connector", "commonObjects")) and tmp_instance.getname() == name and tmp_instance.getexecutionOrderId() == 0: |
814 | 1798 |
connections = tmp_instance.connectionPointIn.getconnections() |
1799 |
if connections and len(connections) == 1: |
|
1800 |
self.compileelementExecutionOrder(connections[0]) |
|
1801 |
else: |
|
1802 |
raise TypeError, _("Can only generate execution order on FBD networks!") |
|
1803 |
setattr(cls, "compileelementExecutionOrder", compileelementExecutionOrder) |
|
1804 |
||
1805 |
def setelementExecutionOrder(self, instance, new_executionOrder): |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
1806 |
if self.content.getLocalTag() == "FBD": |
814 | 1807 |
old_executionOrder = instance.getexecutionOrderId() |
1808 |
if old_executionOrder is not None and old_executionOrder != 0 and new_executionOrder != 0: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1809 |
for element in self.content.getcontent(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1810 |
if element != instance and not isinstance(element, PLCOpenParser.GetElementClass("comment", "commonObjects")): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1811 |
element_executionOrder = element.getexecutionOrderId() |
814 | 1812 |
if old_executionOrder <= element_executionOrder <= new_executionOrder: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1813 |
element.setexecutionOrderId(element_executionOrder - 1) |
814 | 1814 |
if new_executionOrder <= element_executionOrder <= old_executionOrder: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1815 |
element.setexecutionOrderId(element_executionOrder + 1) |
814 | 1816 |
instance.setexecutionOrderId(new_executionOrder) |
1817 |
else: |
|
1818 |
raise TypeError, _("Can only generate execution order on FBD networks!") |
|
1819 |
setattr(cls, "setelementExecutionOrder", setelementExecutionOrder) |
|
1820 |
||
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1821 |
def appendcontentInstance(self, instance): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1822 |
if self.content.getLocalTag() in ["LD","FBD","SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1823 |
self.content.appendcontent(instance) |
814 | 1824 |
else: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1825 |
raise TypeError, _("%s body don't have instances!")%self.content.getLocalTag() |
814 | 1826 |
setattr(cls, "appendcontentInstance", appendcontentInstance) |
1827 |
||
1828 |
def getcontentInstances(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1829 |
if self.content.getLocalTag() in ["LD","FBD","SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1830 |
return self.content.getcontent() |
814 | 1831 |
else: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1832 |
raise TypeError, _("%s body don't have instances!")%self.content.getLocalTag() |
814 | 1833 |
setattr(cls, "getcontentInstances", getcontentInstances) |
1834 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1835 |
def getcontentInstance(self, local_id): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1836 |
if self.content.getLocalTag() in ["LD","FBD","SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1837 |
instance = self.content.xpath("*[@localId=%d]" % local_id) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1838 |
if len(instance) > 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1839 |
return instance[0] |
814 | 1840 |
return None |
1841 |
else: |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1842 |
raise TypeError, _("%s body don't have instances!")%self.content.getLocalTag() |
814 | 1843 |
setattr(cls, "getcontentInstance", getcontentInstance) |
1844 |
||
1845 |
def getcontentRandomInstance(self, exclude): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1846 |
if self.content.getLocalTag() in ["LD","FBD","SFC"]: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1847 |
instance = self.content.xpath("*%s[position()=1]" % |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1848 |
("[not(%s)]" % " or ".join( |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1849 |
map(lambda x: "@localId=%d" % x, exclude)) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1850 |
if len(exclude) > 0 else "")) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1851 |
if len(instance) > 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1852 |
return instance[0] |
814 | 1853 |
return None |
1854 |
else: |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1855 |
raise TypeError, _("%s body don't have instances!")%self.content.getLocalTag() |
814 | 1856 |
setattr(cls, "getcontentRandomInstance", getcontentRandomInstance) |
1857 |
||
1858 |
def getcontentInstanceByName(self, name): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1859 |
if self.content.getLocalTag() in ["LD","FBD","SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1860 |
instance = self.content.xpath("ppx:block[@instanceName=%s]" % name, namespaces=PLCOpenParser.NSMAP) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1861 |
if len(instance) > 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1862 |
return instance[0] |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1863 |
return None |
814 | 1864 |
else: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1865 |
raise TypeError, _("%s body don't have instances!")%self.content.getLocalTag() |
814 | 1866 |
setattr(cls, "getcontentInstanceByName", getcontentInstanceByName) |
1867 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1868 |
def removecontentInstance(self, local_id): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1869 |
if self.content.getLocalTag() in ["LD","FBD","SFC"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1870 |
instance = self.content.xpath("*[@localId=%d]" % local_id) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1871 |
if len(instance) > 0: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1872 |
self.content.remove(instance[0]) |
1232
b6894285d4cc
Added support for speed up loading graphic viewers
Laurent Bessard
parents:
1171
diff
changeset
|
1873 |
else: |
814 | 1874 |
raise ValueError, _("Instance with id %d doesn't exist!")%id |
1875 |
else: |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1876 |
raise TypeError, "%s body don't have instances!"%self.content.getLocalTag() |
814 | 1877 |
setattr(cls, "removecontentInstance", removecontentInstance) |
1878 |
||
1879 |
def settext(self, text): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1880 |
if self.content.getLocalTag() in ["IL","ST"]: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1881 |
self.content.setanyText(text) |
814 | 1882 |
else: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1883 |
raise TypeError, _("%s body don't have text!")%self.content.getLocalTag() |
814 | 1884 |
setattr(cls, "settext", settext) |
1885 |
||
1886 |
def gettext(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1887 |
if self.content.getLocalTag() in ["IL","ST"]: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
1888 |
return self.content.getanyText() |
814 | 1889 |
else: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1890 |
raise TypeError, _("%s body don't have text!")%self.content.getLocalTag() |
814 | 1891 |
setattr(cls, "gettext", gettext) |
1892 |
||
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1893 |
def hasblock(self, block_type): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1894 |
if self.content.getLocalTag() in ["IL","ST"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1895 |
return self.content.hasblock(block_type) |
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1896 |
else: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
1897 |
raise TypeError, _("%s body don't have text!")%self.content.getLocalTag() |
1142
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1898 |
setattr(cls, "hasblock", hasblock) |
8ded55ada6d6
Fixed functions used by one or more POU not showing question dialog when trying to delete
Laurent Bessard
parents:
990
diff
changeset
|
1899 |
|
814 | 1900 |
def updateElementName(self, old_name, new_name): |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1901 |
if self.content.getLocalTag() in ["IL", "ST"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1902 |
self.content.updateElementName(old_name, new_name) |
814 | 1903 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1904 |
for element in self.content.getcontent(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1905 |
element.updateElementName(old_name, new_name) |
814 | 1906 |
setattr(cls, "updateElementName", updateElementName) |
1907 |
||
1908 |
def updateElementAddress(self, address_model, new_leading): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1909 |
if self.content.getLocalTag() in ["IL", "ST"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1910 |
self.content.updateElementAddress(address_model, new_leading) |
814 | 1911 |
else: |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1912 |
for element in self.content.getcontent(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1913 |
element.updateElementAddress(address_model, new_leading) |
814 | 1914 |
setattr(cls, "updateElementAddress", updateElementAddress) |
1915 |
||
1916 |
def Search(self, criteria, parent_infos=[]): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1917 |
if self.content.getLocalTag() in ["IL", "ST"]: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1918 |
search_result = self.content.Search(criteria, parent_infos + ["body", 0]) |
814 | 1919 |
else: |
1920 |
search_result = [] |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1921 |
for element in self.content.getcontent(): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1922 |
search_result.extend(element.Search(criteria, parent_infos)) |
814 | 1923 |
return search_result |
1924 |
setattr(cls, "Search", Search) |
|
1925 |
||
1926 |
def getx(self): |
|
1927 |
return self.position.getx() |
|
1928 |
||
1929 |
def gety(self): |
|
1930 |
return self.position.gety() |
|
1931 |
||
1932 |
def setx(self, x): |
|
1933 |
self.position.setx(x) |
|
1934 |
||
1935 |
def sety(self, y): |
|
1936 |
self.position.sety(y) |
|
1937 |
||
1938 |
def _getBoundingBox(self): |
|
1939 |
return rect(self.getx(), self.gety(), self.getwidth(), self.getheight()) |
|
1940 |
||
1941 |
def _getConnectionsBoundingBox(connectionPointIn): |
|
1942 |
bbox = rect() |
|
1943 |
connections = connectionPointIn.getconnections() |
|
1944 |
if connections is not None: |
|
1945 |
for connection in connections: |
|
1946 |
for x, y in connection.getpoints(): |
|
1947 |
bbox.update(x, y) |
|
1948 |
return bbox |
|
1949 |
||
1950 |
def _getBoundingBoxSingle(self): |
|
1951 |
bbox = _getBoundingBox(self) |
|
1952 |
if self.connectionPointIn is not None: |
|
1953 |
bbox.union(_getConnectionsBoundingBox(self.connectionPointIn)) |
|
1954 |
return bbox |
|
1955 |
||
1956 |
def _getBoundingBoxMultiple(self): |
|
1957 |
bbox = _getBoundingBox(self) |
|
1958 |
for connectionPointIn in self.getconnectionPointIn(): |
|
1959 |
bbox.union(_getConnectionsBoundingBox(connectionPointIn)) |
|
1960 |
return bbox |
|
1961 |
||
1962 |
def _filterConnections(connectionPointIn, localId, connections): |
|
1963 |
in_connections = connectionPointIn.getconnections() |
|
1964 |
if in_connections is not None: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1965 |
for connection in in_connections: |
814 | 1966 |
connected = connection.getrefLocalId() |
1967 |
if not connections.has_key((localId, connected)) and \ |
|
1968 |
not connections.has_key((connected, localId)): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1969 |
connectionPointIn.remove(connection) |
814 | 1970 |
|
1971 |
def _filterConnectionsSingle(self, connections): |
|
1972 |
if self.connectionPointIn is not None: |
|
1973 |
_filterConnections(self.connectionPointIn, self.localId, connections) |
|
1974 |
||
1975 |
def _filterConnectionsMultiple(self, connections): |
|
1976 |
for connectionPointIn in self.getconnectionPointIn(): |
|
1977 |
_filterConnections(connectionPointIn, self.localId, connections) |
|
1978 |
||
1979 |
def _getconnectionsdefinition(instance, connections_end): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1980 |
local_id = instance.getlocalId() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
1981 |
return dict([((local_id, end), True) for end in connections_end]) |
814 | 1982 |
|
1983 |
def _updateConnectionsId(connectionPointIn, translation): |
|
1984 |
connections_end = [] |
|
1985 |
connections = connectionPointIn.getconnections() |
|
1986 |
if connections is not None: |
|
1987 |
for connection in connections: |
|
1988 |
refLocalId = connection.getrefLocalId() |
|
1989 |
new_reflocalId = translation.get(refLocalId, refLocalId) |
|
1990 |
connection.setrefLocalId(new_reflocalId) |
|
1991 |
connections_end.append(new_reflocalId) |
|
1992 |
return connections_end |
|
1993 |
||
1994 |
def _updateConnectionsIdSingle(self, translation): |
|
1995 |
connections_end = [] |
|
1996 |
if self.connectionPointIn is not None: |
|
1997 |
connections_end = _updateConnectionsId(self.connectionPointIn, translation) |
|
1998 |
return _getconnectionsdefinition(self, connections_end) |
|
1999 |
||
2000 |
def _updateConnectionsIdMultiple(self, translation): |
|
2001 |
connections_end = [] |
|
2002 |
for connectionPointIn in self.getconnectionPointIn(): |
|
2003 |
connections_end.extend(_updateConnectionsId(connectionPointIn, translation)) |
|
2004 |
return _getconnectionsdefinition(self, connections_end) |
|
2005 |
||
2006 |
def _translate(self, dx, dy): |
|
2007 |
self.setx(self.getx() + dx) |
|
2008 |
self.sety(self.gety() + dy) |
|
2009 |
||
2010 |
def _translateConnections(connectionPointIn, dx, dy): |
|
2011 |
connections = connectionPointIn.getconnections() |
|
2012 |
if connections is not None: |
|
2013 |
for connection in connections: |
|
2014 |
for position in connection.getposition(): |
|
2015 |
position.setx(position.getx() + dx) |
|
2016 |
position.sety(position.gety() + dy) |
|
2017 |
||
2018 |
def _translateSingle(self, dx, dy): |
|
2019 |
_translate(self, dx, dy) |
|
2020 |
if self.connectionPointIn is not None: |
|
2021 |
_translateConnections(self.connectionPointIn, dx, dy) |
|
2022 |
||
2023 |
def _translateMultiple(self, dx, dy): |
|
2024 |
_translate(self, dx, dy) |
|
2025 |
for connectionPointIn in self.getconnectionPointIn(): |
|
2026 |
_translateConnections(connectionPointIn, dx, dy) |
|
2027 |
||
2028 |
def _updateElementName(self, old_name, new_name): |
|
2029 |
pass |
|
2030 |
||
2031 |
def _updateElementAddress(self, address_model, new_leading): |
|
2032 |
pass |
|
2033 |
||
2034 |
def _SearchInElement(self, criteria, parent_infos=[]): |
|
2035 |
return [] |
|
2036 |
||
2037 |
_connectionsFunctions = { |
|
2038 |
"bbox": {"none": _getBoundingBox, |
|
2039 |
"single": _getBoundingBoxSingle, |
|
2040 |
"multiple": _getBoundingBoxMultiple}, |
|
2041 |
"translate": {"none": _translate, |
|
2042 |
"single": _translateSingle, |
|
2043 |
"multiple": _translateMultiple}, |
|
2044 |
"filter": {"none": lambda self, connections: None, |
|
2045 |
"single": _filterConnectionsSingle, |
|
2046 |
"multiple": _filterConnectionsMultiple}, |
|
2047 |
"update": {"none": lambda self, translation: {}, |
|
2048 |
"single": _updateConnectionsIdSingle, |
|
2049 |
"multiple": _updateConnectionsIdMultiple}, |
|
2050 |
} |
|
2051 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2052 |
def _initElementClass(name, parent, connectionPointInType="none"): |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2053 |
cls = PLCOpenParser.GetElementClass(name, parent) |
814 | 2054 |
if cls: |
2055 |
setattr(cls, "getx", getx) |
|
2056 |
setattr(cls, "gety", gety) |
|
2057 |
setattr(cls, "setx", setx) |
|
2058 |
setattr(cls, "sety", sety) |
|
2059 |
setattr(cls, "updateElementName", _updateElementName) |
|
2060 |
setattr(cls, "updateElementAddress", _updateElementAddress) |
|
2061 |
setattr(cls, "getBoundingBox", _connectionsFunctions["bbox"][connectionPointInType]) |
|
2062 |
setattr(cls, "translate", _connectionsFunctions["translate"][connectionPointInType]) |
|
2063 |
setattr(cls, "filterConnections", _connectionsFunctions["filter"][connectionPointInType]) |
|
2064 |
setattr(cls, "updateConnectionsId", _connectionsFunctions["update"][connectionPointInType]) |
|
2065 |
setattr(cls, "Search", _SearchInElement) |
|
2066 |
return cls |
|
2067 |
||
2068 |
def _getexecutionOrder(instance, specific_values): |
|
2069 |
executionOrder = instance.getexecutionOrderId() |
|
2070 |
if executionOrder is None: |
|
2071 |
executionOrder = 0 |
|
2072 |
specific_values["executionOrder"] = executionOrder |
|
2073 |
||
2074 |
def _getdefaultmodifiers(instance, infos): |
|
2075 |
infos["negated"] = instance.getnegated() |
|
2076 |
infos["edge"] = instance.getedge() |
|
2077 |
||
2078 |
def _getinputmodifiers(instance, infos): |
|
2079 |
infos["negated"] = instance.getnegatedIn() |
|
2080 |
infos["edge"] = instance.getedgeIn() |
|
2081 |
||
2082 |
def _getoutputmodifiers(instance, infos): |
|
2083 |
infos["negated"] = instance.getnegatedOut() |
|
2084 |
infos["edge"] = instance.getedgeOut() |
|
2085 |
||
2086 |
MODIFIERS_FUNCTIONS = {"default": _getdefaultmodifiers, |
|
2087 |
"input": _getinputmodifiers, |
|
2088 |
"output": _getoutputmodifiers} |
|
2089 |
||
2090 |
def _getconnectioninfos(instance, connection, links=False, modifiers=None, parameter=False): |
|
2091 |
infos = {"position": connection.getrelPositionXY()} |
|
2092 |
if parameter: |
|
2093 |
infos["name"] = instance.getformalParameter() |
|
2094 |
MODIFIERS_FUNCTIONS.get(modifiers, lambda x, y: None)(instance, infos) |
|
2095 |
if links: |
|
2096 |
infos["links"] = [] |
|
2097 |
connections = connection.getconnections() |
|
2098 |
if connections is not None: |
|
2099 |
for link in connections: |
|
2100 |
dic = {"refLocalId": link.getrefLocalId(), |
|
2101 |
"points": link.getpoints(), |
|
2102 |
"formalParameter": link.getformalParameter()} |
|
2103 |
infos["links"].append(dic) |
|
2104 |
return infos |
|
2105 |
||
2106 |
def _getelementinfos(instance): |
|
2107 |
return {"id": instance.getlocalId(), |
|
2108 |
"x": instance.getx(), |
|
2109 |
"y": instance.gety(), |
|
2110 |
"height": instance.getheight(), |
|
2111 |
"width": instance.getwidth(), |
|
2112 |
"specific_values": {}, |
|
2113 |
"inputs": [], |
|
2114 |
"outputs": []} |
|
2115 |
||
2116 |
def _getvariableinfosFunction(type, input, output): |
|
2117 |
def getvariableinfos(self): |
|
2118 |
infos = _getelementinfos(self) |
|
2119 |
infos["type"] = type |
|
2120 |
specific_values = infos["specific_values"] |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2121 |
specific_values["name"] = self.getexpression().text |
814 | 2122 |
_getexecutionOrder(self, specific_values) |
2123 |
if input and output: |
|
2124 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True, "input")) |
|
2125 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut, False, "output")) |
|
2126 |
elif input: |
|
2127 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True, "default")) |
|
2128 |
elif output: |
|
2129 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut, False, "default")) |
|
2130 |
return infos |
|
2131 |
return getvariableinfos |
|
2132 |
||
2133 |
def _getconnectorinfosFunction(type): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2134 |
def getconnectorinfos(self): |
814 | 2135 |
infos = _getelementinfos(self) |
2136 |
infos["type"] = type |
|
2137 |
infos["specific_values"]["name"] = self.getname() |
|
2138 |
if type == "connector": |
|
2139 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
|
2140 |
elif type == "continuation": |
|
2141 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut)) |
|
2142 |
return infos |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2143 |
return getconnectorinfos |
814 | 2144 |
|
2145 |
def _getpowerrailinfosFunction(type): |
|
2146 |
def getpowerrailinfos(self): |
|
2147 |
infos = _getelementinfos(self) |
|
2148 |
infos["type"] = type |
|
2149 |
if type == "rightPowerRail": |
|
2150 |
for connectionPointIn in self.getconnectionPointIn(): |
|
2151 |
infos["inputs"].append(_getconnectioninfos(self, connectionPointIn, True)) |
|
2152 |
infos["specific_values"]["connectors"] = len(infos["inputs"]) |
|
2153 |
elif type == "leftPowerRail": |
|
2154 |
for connectionPointOut in self.getconnectionPointOut(): |
|
2155 |
infos["outputs"].append(_getconnectioninfos(self, connectionPointOut)) |
|
2156 |
infos["specific_values"]["connectors"] = len(infos["outputs"]) |
|
2157 |
return infos |
|
2158 |
return getpowerrailinfos |
|
2159 |
||
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2160 |
def _getldelementinfosFunction(ld_element_type): |
814 | 2161 |
def getldelementinfos(self): |
2162 |
infos = _getelementinfos(self) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2163 |
infos["type"] = ld_element_type |
814 | 2164 |
specific_values = infos["specific_values"] |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2165 |
specific_values["name"] = self.getvariable().text |
814 | 2166 |
_getexecutionOrder(self, specific_values) |
2167 |
specific_values["negated"] = self.getnegated() |
|
2168 |
specific_values["edge"] = self.getedge() |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
2169 |
if ld_element_type == "coil": |
814 | 2170 |
specific_values["storage"] = self.getstorage() |
2171 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
|
2172 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut)) |
|
2173 |
return infos |
|
2174 |
return getldelementinfos |
|
2175 |
||
2176 |
DIVERGENCE_TYPES = {(True, True): "simultaneousDivergence", |
|
2177 |
(True, False): "selectionDivergence", |
|
2178 |
(False, True): "simultaneousConvergence", |
|
2179 |
(False, False): "selectionConvergence"} |
|
2180 |
||
2181 |
def _getdivergenceinfosFunction(divergence, simultaneous): |
|
2182 |
def getdivergenceinfos(self): |
|
2183 |
infos = _getelementinfos(self) |
|
2184 |
infos["type"] = DIVERGENCE_TYPES[(divergence, simultaneous)] |
|
2185 |
if divergence: |
|
2186 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
|
2187 |
for connectionPointOut in self.getconnectionPointOut(): |
|
2188 |
infos["outputs"].append(_getconnectioninfos(self, connectionPointOut)) |
|
2189 |
infos["specific_values"]["connectors"] = len(infos["outputs"]) |
|
2190 |
else: |
|
2191 |
for connectionPointIn in self.getconnectionPointIn(): |
|
2192 |
infos["inputs"].append(_getconnectioninfos(self, connectionPointIn, True)) |
|
2193 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut)) |
|
2194 |
infos["specific_values"]["connectors"] = len(infos["inputs"]) |
|
2195 |
return infos |
|
2196 |
return getdivergenceinfos |
|
2197 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2198 |
cls = _initElementClass("comment", "commonObjects") |
814 | 2199 |
if cls: |
2200 |
def getinfos(self): |
|
2201 |
infos = _getelementinfos(self) |
|
2202 |
infos["type"] = "comment" |
|
2203 |
infos["specific_values"]["content"] = self.getcontentText() |
|
2204 |
return infos |
|
2205 |
setattr(cls, "getinfos", getinfos) |
|
2206 |
||
2207 |
def setcontentText(self, text): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2208 |
self.content.setanyText(text) |
814 | 2209 |
setattr(cls, "setcontentText", setcontentText) |
2210 |
||
2211 |
def getcontentText(self): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2212 |
return self.content.getanyText() |
814 | 2213 |
setattr(cls, "getcontentText", getcontentText) |
2214 |
||
2215 |
def updateElementName(self, old_name, new_name): |
|
2216 |
self.content.updateElementName(old_name, new_name) |
|
2217 |
setattr(cls, "updateElementName", updateElementName) |
|
2218 |
||
2219 |
def updateElementAddress(self, address_model, new_leading): |
|
2220 |
self.content.updateElementAddress(address_model, new_leading) |
|
2221 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
2222 |
||
2223 |
def Search(self, criteria, parent_infos=[]): |
|
2224 |
return self.content.Search(criteria, parent_infos + ["comment", self.getlocalId(), "content"]) |
|
2225 |
setattr(cls, "Search", Search) |
|
2226 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2227 |
cls = _initElementClass("block", "fbdObjects") |
814 | 2228 |
if cls: |
2229 |
def getBoundingBox(self): |
|
2230 |
bbox = _getBoundingBox(self) |
|
2231 |
for input in self.inputVariables.getvariable(): |
|
2232 |
bbox.union(_getConnectionsBoundingBox(input.connectionPointIn)) |
|
2233 |
return bbox |
|
2234 |
setattr(cls, "getBoundingBox", getBoundingBox) |
|
2235 |
||
2236 |
def getinfos(self): |
|
2237 |
infos = _getelementinfos(self) |
|
2238 |
infos["type"] = self.gettypeName() |
|
2239 |
specific_values = infos["specific_values"] |
|
2240 |
specific_values["name"] = self.getinstanceName() |
|
2241 |
_getexecutionOrder(self, specific_values) |
|
2242 |
for variable in self.inputVariables.getvariable(): |
|
2243 |
infos["inputs"].append(_getconnectioninfos(variable, variable.connectionPointIn, True, "default", True)) |
|
2244 |
for variable in self.outputVariables.getvariable(): |
|
2245 |
infos["outputs"].append(_getconnectioninfos(variable, variable.connectionPointOut, False, "default", True)) |
|
2246 |
return infos |
|
2247 |
setattr(cls, "getinfos", getinfos) |
|
2248 |
||
2249 |
def updateElementName(self, old_name, new_name): |
|
2250 |
if self.typeName == old_name: |
|
2251 |
self.typeName = new_name |
|
2252 |
setattr(cls, "updateElementName", updateElementName) |
|
2253 |
||
2254 |
def filterConnections(self, connections): |
|
2255 |
for input in self.inputVariables.getvariable(): |
|
2256 |
_filterConnections(input.connectionPointIn, self.localId, connections) |
|
2257 |
setattr(cls, "filterConnections", filterConnections) |
|
2258 |
||
2259 |
def updateConnectionsId(self, translation): |
|
2260 |
connections_end = [] |
|
2261 |
for input in self.inputVariables.getvariable(): |
|
2262 |
connections_end.extend(_updateConnectionsId(input.connectionPointIn, translation)) |
|
2263 |
return _getconnectionsdefinition(self, connections_end) |
|
2264 |
setattr(cls, "updateConnectionsId", updateConnectionsId) |
|
2265 |
||
2266 |
def translate(self, dx, dy): |
|
2267 |
_translate(self, dx, dy) |
|
2268 |
for input in self.inputVariables.getvariable(): |
|
2269 |
_translateConnections(input.connectionPointIn, dx, dy) |
|
2270 |
setattr(cls, "translate", translate) |
|
2271 |
||
2272 |
def Search(self, criteria, parent_infos=[]): |
|
2273 |
parent_infos = parent_infos + ["block", self.getlocalId()] |
|
2274 |
search_result = _Search([("name", self.getinstanceName()), |
|
2275 |
("type", self.gettypeName())], |
|
2276 |
criteria, parent_infos) |
|
2277 |
for i, variable in enumerate(self.inputVariables.getvariable()): |
|
2278 |
for result in TestTextElement(variable.getformalParameter(), criteria): |
|
2279 |
search_result.append((tuple(parent_infos + ["input", i]),) + result) |
|
2280 |
for i, variable in enumerate(self.outputVariables.getvariable()): |
|
2281 |
for result in TestTextElement(variable.getformalParameter(), criteria): |
|
2282 |
search_result.append((tuple(parent_infos + ["output", i]),) + result) |
|
2283 |
return search_result |
|
2284 |
setattr(cls, "Search", Search) |
|
2285 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2286 |
cls = _initElementClass("leftPowerRail", "ldObjects") |
814 | 2287 |
if cls: |
2288 |
setattr(cls, "getinfos", _getpowerrailinfosFunction("leftPowerRail")) |
|
2289 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2290 |
cls = _initElementClass("rightPowerRail", "ldObjects", "multiple") |
814 | 2291 |
if cls: |
2292 |
setattr(cls, "getinfos", _getpowerrailinfosFunction("rightPowerRail")) |
|
2293 |
||
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2294 |
def _UpdateLDElementName(self, old_name, new_name): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2295 |
if self.variable.text == old_name: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2296 |
self.variable.text = new_name |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2297 |
|
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2298 |
def _UpdateLDElementAddress(self, address_model, new_leading): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2299 |
self.variable.text = update_address(self.variable.text, address_model, new_leading) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2300 |
|
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2301 |
def _getSearchInLDElement(ld_element_type): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2302 |
def SearchInLDElement(self, criteria, parent_infos=[]): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2303 |
return _Search([("reference", self.variable.text)], criteria, parent_infos + [ld_element_type, self.getlocalId()]) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2304 |
return SearchInLDElement |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2305 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2306 |
cls = _initElementClass("contact", "ldObjects", "single") |
814 | 2307 |
if cls: |
2308 |
setattr(cls, "getinfos", _getldelementinfosFunction("contact")) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2309 |
setattr(cls, "updateElementName", _UpdateLDElementName) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2310 |
setattr(cls, "updateElementAddress", _UpdateLDElementAddress) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2311 |
setattr(cls, "Search", _getSearchInLDElement("contact")) |
814 | 2312 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2313 |
cls = _initElementClass("coil", "ldObjects", "single") |
814 | 2314 |
if cls: |
2315 |
setattr(cls, "getinfos", _getldelementinfosFunction("coil")) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2316 |
setattr(cls, "updateElementName", _UpdateLDElementName) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2317 |
setattr(cls, "updateElementAddress", _UpdateLDElementAddress) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2318 |
setattr(cls, "Search", _getSearchInLDElement("coil")) |
814 | 2319 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2320 |
cls = _initElementClass("step", "sfcObjects", "single") |
814 | 2321 |
if cls: |
2322 |
def getinfos(self): |
|
2323 |
infos = _getelementinfos(self) |
|
2324 |
infos["type"] = "step" |
|
2325 |
specific_values = infos["specific_values"] |
|
2326 |
specific_values["name"] = self.getname() |
|
2327 |
specific_values["initial"] = self.getinitialStep() |
|
2328 |
if self.connectionPointIn: |
|
2329 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
|
2330 |
if self.connectionPointOut: |
|
2331 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut)) |
|
2332 |
if self.connectionPointOutAction: |
|
2333 |
specific_values["action"] = _getconnectioninfos(self, self.connectionPointOutAction) |
|
2334 |
return infos |
|
2335 |
setattr(cls, "getinfos", getinfos) |
|
2336 |
||
2337 |
def Search(self, criteria, parent_infos=[]): |
|
2338 |
return _Search([("name", self.getname())], criteria, parent_infos + ["step", self.getlocalId()]) |
|
2339 |
setattr(cls, "Search", Search) |
|
2340 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2341 |
cls = PLCOpenParser.GetElementClass("condition", "transition") |
814 | 2342 |
if cls: |
2343 |
def compatibility(self, tree): |
|
2344 |
connections = [] |
|
2345 |
for child in tree.childNodes: |
|
2346 |
if child.nodeName == "connection": |
|
2347 |
connections.append(child) |
|
2348 |
if len(connections) > 0: |
|
2349 |
node = CreateNode("connectionPointIn") |
|
2350 |
relPosition = CreateNode("relPosition") |
|
2351 |
NodeSetAttr(relPosition, "x", "0") |
|
2352 |
NodeSetAttr(relPosition, "y", "0") |
|
2353 |
node.childNodes.append(relPosition) |
|
2354 |
node.childNodes.extend(connections) |
|
2355 |
tree.childNodes = [node] |
|
2356 |
setattr(cls, "compatibility", compatibility) |
|
2357 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2358 |
cls = _initElementClass("transition", "sfcObjects") |
814 | 2359 |
if cls: |
2360 |
def getinfos(self): |
|
2361 |
infos = _getelementinfos(self) |
|
2362 |
infos["type"] = "transition" |
|
2363 |
specific_values = infos["specific_values"] |
|
2364 |
priority = self.getpriority() |
|
2365 |
if priority is None: |
|
2366 |
priority = 0 |
|
2367 |
specific_values["priority"] = priority |
|
2368 |
condition = self.getconditionContent() |
|
2369 |
specific_values["condition_type"] = condition["type"] |
|
2370 |
if specific_values["condition_type"] == "connection": |
|
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
2371 |
specific_values["connection"] = _getconnectioninfos(self, condition, True) |
814 | 2372 |
else: |
1294
f02ba5b83811
Fixed datatype and configuration editing in xmlclass refactoring
Laurent Bessard
parents:
1293
diff
changeset
|
2373 |
specific_values["condition"] = condition |
814 | 2374 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
2375 |
infos["outputs"].append(_getconnectioninfos(self, self.connectionPointOut)) |
|
2376 |
return infos |
|
2377 |
setattr(cls, "getinfos", getinfos) |
|
2378 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2379 |
def setconditionContent(self, condition_type, value): |
814 | 2380 |
if not self.condition: |
2381 |
self.addcondition() |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2382 |
if condition_type == "connection": |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2383 |
condition = PLCOpenParser.CreateElement("connectionPointIn", "condition") |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2384 |
else: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2385 |
condition = PLCOpenParser.CreateElement(condition_type, "condition") |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2386 |
self.condition.setcontent(condition) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2387 |
if condition_type == "reference": |
814 | 2388 |
condition.setname(value) |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2389 |
elif condition_type == "inline": |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2390 |
condition.setcontent(PLCOpenParser.CreateElement("ST", "inline")) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2391 |
condition.settext(value) |
814 | 2392 |
setattr(cls, "setconditionContent", setconditionContent) |
2393 |
||
2394 |
def getconditionContent(self): |
|
2395 |
if self.condition: |
|
2396 |
content = self.condition.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2397 |
values = {"type" : content.getLocalTag()} |
814 | 2398 |
if values["type"] == "reference": |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2399 |
values["value"] = content.getname() |
814 | 2400 |
elif values["type"] == "inline": |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2401 |
values["value"] = content.gettext() |
814 | 2402 |
elif values["type"] == "connectionPointIn": |
2403 |
values["type"] = "connection" |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2404 |
values["value"] = content |
814 | 2405 |
return values |
2406 |
return "" |
|
2407 |
setattr(cls, "getconditionContent", getconditionContent) |
|
2408 |
||
891
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2409 |
def getconditionConnection(self): |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2410 |
if self.condition: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2411 |
content = self.condition.getcontent() |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2412 |
if content.getLocalTag() == "connection": |
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2413 |
return content |
891
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2414 |
return None |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2415 |
setattr(cls, "getconditionConnection", getconditionConnection) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2416 |
|
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2417 |
def getBoundingBox(self): |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2418 |
bbox = _getBoundingBoxSingle(self) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2419 |
condition_connection = self.getconditionConnection() |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2420 |
if condition_connection: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2421 |
bbox.union(_getConnectionsBoundingBox(condition_connection)) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2422 |
return bbox |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2423 |
setattr(cls, "getBoundingBox", getBoundingBox) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2424 |
|
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2425 |
def translate(self, dx, dy): |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2426 |
_translateSingle(self, dx, dy) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2427 |
condition_connection = self.getconditionConnection() |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2428 |
if condition_connection: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2429 |
_translateConnections(condition_connection, dx, dy) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2430 |
setattr(cls, "translate", translate) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2431 |
|
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2432 |
def filterConnections(self, connections): |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2433 |
_filterConnectionsSingle(self, connections) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2434 |
condition_connection = self.getconditionConnection() |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2435 |
if condition_connection: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2436 |
_filterConnections(condition_connection, self.localId, connections) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2437 |
setattr(cls, "filterConnections", filterConnections) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2438 |
|
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2439 |
def updateConnectionsId(self, translation): |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2440 |
connections_end = [] |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2441 |
if self.connectionPointIn is not None: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2442 |
connections_end = _updateConnectionsId(self.connectionPointIn, translation) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2443 |
condition_connection = self.getconditionConnection() |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2444 |
if condition_connection: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2445 |
connections_end.extend(_updateConnectionsId(condition_connection, translation)) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2446 |
return _getconnectionsdefinition(self, connections_end) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2447 |
setattr(cls, "updateConnectionsId", updateConnectionsId) |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2448 |
|
814 | 2449 |
def updateElementName(self, old_name, new_name): |
2450 |
if self.condition: |
|
2451 |
content = self.condition.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2452 |
content_name = content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2453 |
if content_name == "reference": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2454 |
if content.getname() == old_name: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2455 |
content.setname(new_name) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2456 |
elif content_name == "inline": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2457 |
content.updateElementName(old_name, new_name) |
814 | 2458 |
setattr(cls, "updateElementName", updateElementName) |
2459 |
||
2460 |
def updateElementAddress(self, address_model, new_leading): |
|
2461 |
if self.condition: |
|
2462 |
content = self.condition.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2463 |
content_name = content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2464 |
if content_name == "reference": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2465 |
content.setname(update_address(content.getname(), address_model, new_leading)) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2466 |
elif content_name == "inline": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2467 |
content.updateElementAddress(address_model, new_leading) |
814 | 2468 |
setattr(cls, "updateElementAddress", updateElementAddress) |
2469 |
||
2470 |
def getconnections(self): |
|
891
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2471 |
condition_connection = self.getconditionConnection() |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2472 |
if condition_connection: |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2473 |
return condition_connection.getconnections() |
39f355a535d8
Fix bug when copying transition and the connected FBD or LD diagram
Laurent Bessard
parents:
854
diff
changeset
|
2474 |
return None |
814 | 2475 |
setattr(cls, "getconnections", getconnections) |
2476 |
||
2477 |
def Search(self, criteria, parent_infos=[]): |
|
2478 |
parent_infos = parent_infos + ["transition", self.getlocalId()] |
|
2479 |
search_result = [] |
|
2480 |
content = self.condition.getcontent() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2481 |
content_name = content.getLocalTag() |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2482 |
if content_name == "reference": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2483 |
search_result.extend(_Search([("reference", content.getname())], criteria, parent_infos)) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2484 |
elif content_name == "inline": |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2485 |
search_result.extend(content.Search(criteria, parent_infos + ["inline"])) |
814 | 2486 |
return search_result |
2487 |
setattr(cls, "Search", Search) |
|
2488 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2489 |
cls = _initElementClass("selectionDivergence", "sfcObjects", "single") |
814 | 2490 |
if cls: |
2491 |
setattr(cls, "getinfos", _getdivergenceinfosFunction(True, False)) |
|
2492 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2493 |
cls = _initElementClass("selectionConvergence", "sfcObjects", "multiple") |
814 | 2494 |
if cls: |
2495 |
setattr(cls, "getinfos", _getdivergenceinfosFunction(False, False)) |
|
2496 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2497 |
cls = _initElementClass("simultaneousDivergence", "sfcObjects", "single") |
814 | 2498 |
if cls: |
2499 |
setattr(cls, "getinfos", _getdivergenceinfosFunction(True, True)) |
|
2500 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2501 |
cls = _initElementClass("simultaneousConvergence", "sfcObjects", "multiple") |
814 | 2502 |
if cls: |
2503 |
setattr(cls, "getinfos", _getdivergenceinfosFunction(False, True)) |
|
2504 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2505 |
cls = _initElementClass("jumpStep", "sfcObjects", "single") |
814 | 2506 |
if cls: |
2507 |
def getinfos(self): |
|
2508 |
infos = _getelementinfos(self) |
|
2509 |
infos["type"] = "jump" |
|
2510 |
infos["specific_values"]["target"] = self.gettargetName() |
|
2511 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
|
2512 |
return infos |
|
2513 |
setattr(cls, "getinfos", getinfos) |
|
2514 |
||
2515 |
def Search(self, criteria, parent_infos): |
|
2516 |
return _Search([("target", self.gettargetName())], criteria, parent_infos + ["jump", self.getlocalId()]) |
|
2517 |
setattr(cls, "Search", Search) |
|
2518 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2519 |
cls = PLCOpenParser.GetElementClass("action", "actionBlock") |
814 | 2520 |
if cls: |
2521 |
def compatibility(self, tree): |
|
2522 |
relPosition = reduce(lambda x, y: x | (y.nodeName == "relPosition"), tree.childNodes, False) |
|
2523 |
if not tree.hasAttribute("localId"): |
|
2524 |
NodeSetAttr(tree, "localId", "0") |
|
2525 |
if not relPosition: |
|
2526 |
node = CreateNode("relPosition") |
|
2527 |
NodeSetAttr(node, "x", "0") |
|
2528 |
NodeSetAttr(node, "y", "0") |
|
2529 |
tree.childNodes.insert(0, node) |
|
2530 |
setattr(cls, "compatibility", compatibility) |
|
2531 |
||
2532 |
def setreferenceName(self, name): |
|
2533 |
if self.reference: |
|
2534 |
self.reference.setname(name) |
|
2535 |
setattr(cls, "setreferenceName", setreferenceName) |
|
2536 |
||
2537 |
def getreferenceName(self): |
|
2538 |
if self.reference: |
|
2539 |
return self.reference.getname() |
|
2540 |
return None |
|
2541 |
setattr(cls, "getreferenceName", getreferenceName) |
|
2542 |
||
2543 |
def setinlineContent(self, content): |
|
2544 |
if self.inline: |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2545 |
self.inline.setcontent(PLCOpenParser.CreateElement("ST", "action")) |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2546 |
self.inline.setanyText(content) |
814 | 2547 |
setattr(cls, "setinlineContent", setinlineContent) |
2548 |
||
2549 |
def getinlineContent(self): |
|
2550 |
if self.inline: |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2551 |
return self.inline.getanyText() |
814 | 2552 |
return None |
2553 |
setattr(cls, "getinlineContent", getinlineContent) |
|
2554 |
||
2555 |
def updateElementName(self, old_name, new_name): |
|
2556 |
if self.reference and self.reference.getname() == old_name: |
|
2557 |
self.reference.setname(new_name) |
|
2558 |
if self.inline: |
|
2559 |
self.inline.updateElementName(old_name, new_name) |
|
2560 |
setattr(cls, "updateElementName", updateElementName) |
|
2561 |
||
2562 |
def updateElementAddress(self, address_model, new_leading): |
|
2563 |
if self.reference: |
|
2564 |
self.reference.setname(update_address(self.reference.getname(), address_model, new_leading)) |
|
2565 |
if self.inline: |
|
2566 |
self.inline.updateElementAddress(address_model, new_leading) |
|
2567 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
2568 |
||
2569 |
def Search(self, criteria, parent_infos=[]): |
|
2570 |
qualifier = self.getqualifier() |
|
2571 |
if qualifier is None: |
|
2572 |
qualifier = "N" |
|
2573 |
return _Search([("inline", self.getinlineContent()), |
|
2574 |
("reference", self.getreferenceName()), |
|
2575 |
("qualifier", qualifier), |
|
2576 |
("duration", self.getduration()), |
|
2577 |
("indicator", self.getindicator())], |
|
2578 |
criteria, parent_infos) |
|
2579 |
setattr(cls, "Search", Search) |
|
2580 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2581 |
cls = _initElementClass("actionBlock", "commonObjects", "single") |
814 | 2582 |
if cls: |
2583 |
def compatibility(self, tree): |
|
2584 |
for child in tree.childNodes[:]: |
|
2585 |
if child.nodeName == "connectionPointOut": |
|
2586 |
tree.childNodes.remove(child) |
|
2587 |
setattr(cls, "compatibility", compatibility) |
|
2588 |
||
2589 |
def getinfos(self): |
|
2590 |
infos = _getelementinfos(self) |
|
2591 |
infos["type"] = "actionBlock" |
|
2592 |
infos["specific_values"]["actions"] = self.getactions() |
|
2593 |
infos["inputs"].append(_getconnectioninfos(self, self.connectionPointIn, True)) |
|
2594 |
return infos |
|
2595 |
setattr(cls, "getinfos", getinfos) |
|
2596 |
||
2597 |
def setactions(self, actions): |
|
2598 |
self.action = [] |
|
2599 |
for params in actions: |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2600 |
action = PLCOpenParser.GetElementClass("action", "actionBlock")() |
814 | 2601 |
action.setqualifier(params["qualifier"]) |
2602 |
if params["type"] == "reference": |
|
2603 |
action.addreference() |
|
2604 |
action.setreferenceName(params["value"]) |
|
2605 |
else: |
|
2606 |
action.addinline() |
|
2607 |
action.setinlineContent(params["value"]) |
|
2608 |
if params.has_key("duration"): |
|
2609 |
action.setduration(params["duration"]) |
|
2610 |
if params.has_key("indicator"): |
|
2611 |
action.setindicator(params["indicator"]) |
|
2612 |
self.action.append(action) |
|
2613 |
setattr(cls, "setactions", setactions) |
|
2614 |
||
2615 |
def getactions(self): |
|
2616 |
actions = [] |
|
2617 |
for action in self.action: |
|
2618 |
params = {} |
|
2619 |
params["qualifier"] = action.getqualifier() |
|
2620 |
if params["qualifier"] is None: |
|
2621 |
params["qualifier"] = "N" |
|
2622 |
if action.getreference(): |
|
2623 |
params["type"] = "reference" |
|
2624 |
params["value"] = action.getreferenceName() |
|
2625 |
elif action.getinline(): |
|
2626 |
params["type"] = "inline" |
|
2627 |
params["value"] = action.getinlineContent() |
|
2628 |
duration = action.getduration() |
|
2629 |
if duration: |
|
2630 |
params["duration"] = duration |
|
2631 |
indicator = action.getindicator() |
|
2632 |
if indicator: |
|
2633 |
params["indicator"] = indicator |
|
2634 |
actions.append(params) |
|
2635 |
return actions |
|
2636 |
setattr(cls, "getactions", getactions) |
|
2637 |
||
2638 |
def updateElementName(self, old_name, new_name): |
|
2639 |
for action in self.action: |
|
2640 |
action.updateElementName(old_name, new_name) |
|
2641 |
setattr(cls, "updateElementName", updateElementName) |
|
2642 |
||
2643 |
def updateElementAddress(self, address_model, new_leading): |
|
2644 |
for action in self.action: |
|
2645 |
action.updateElementAddress(address_model, new_leading) |
|
2646 |
setattr(cls, "updateElementAddress", updateElementAddress) |
|
2647 |
||
2648 |
def Search(self, criteria, parent_infos=[]): |
|
2649 |
parent_infos = parent_infos + ["action_block", self.getlocalId()] |
|
2650 |
search_result = [] |
|
2651 |
for idx, action in enumerate(self.action): |
|
2652 |
search_result.extend(action.Search(criteria, parent_infos + ["action", idx])) |
|
2653 |
return search_result |
|
2654 |
setattr(cls, "Search", Search) |
|
2655 |
||
2656 |
def _SearchInIOVariable(self, criteria, parent_infos=[]): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2657 |
return _Search([("expression", self.expression.text)], criteria, parent_infos + ["io_variable", self.getlocalId()]) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2658 |
|
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2659 |
def _UpdateIOElementName(self, old_name, new_name): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2660 |
if self.expression.text == old_name: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2661 |
self.expression.text = new_name |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2662 |
|
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2663 |
def _UpdateIOElementAddress(self, old_name, new_name): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2664 |
self.expression.text = update_address(self.expression.text, address_model, new_leading) |
814 | 2665 |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2666 |
cls = _initElementClass("inVariable", "fbdObjects") |
814 | 2667 |
if cls: |
2668 |
setattr(cls, "getinfos", _getvariableinfosFunction("input", False, True)) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2669 |
setattr(cls, "updateElementName", _UpdateIOElementName) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2670 |
setattr(cls, "updateElementAddress", _UpdateIOElementAddress) |
814 | 2671 |
setattr(cls, "Search", _SearchInIOVariable) |
2672 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2673 |
cls = _initElementClass("outVariable", "fbdObjects", "single") |
814 | 2674 |
if cls: |
2675 |
setattr(cls, "getinfos", _getvariableinfosFunction("output", True, False)) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2676 |
setattr(cls, "updateElementName", _UpdateIOElementName) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2677 |
setattr(cls, "updateElementAddress", _UpdateIOElementAddress) |
814 | 2678 |
setattr(cls, "Search", _SearchInIOVariable) |
2679 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2680 |
cls = _initElementClass("inOutVariable", "fbdObjects", "single") |
814 | 2681 |
if cls: |
2682 |
setattr(cls, "getinfos", _getvariableinfosFunction("inout", True, True)) |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2683 |
setattr(cls, "updateElementName", _UpdateIOElementName) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2684 |
setattr(cls, "updateElementAddress", _UpdateIOElementAddress) |
814 | 2685 |
setattr(cls, "Search", _SearchInIOVariable) |
2686 |
||
2687 |
||
2688 |
def _SearchInConnector(self, criteria, parent_infos=[]): |
|
2689 |
return _Search([("name", self.getname())], criteria, parent_infos + ["connector", self.getlocalId()]) |
|
2690 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2691 |
cls = _initElementClass("continuation", "commonObjects") |
814 | 2692 |
if cls: |
2693 |
setattr(cls, "getinfos", _getconnectorinfosFunction("continuation")) |
|
2694 |
setattr(cls, "Search", _SearchInConnector) |
|
2695 |
||
2696 |
def updateElementName(self, old_name, new_name): |
|
2697 |
if self.name == old_name: |
|
2698 |
self.name = new_name |
|
2699 |
setattr(cls, "updateElementName", updateElementName) |
|
2700 |
||
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2701 |
cls = _initElementClass("connector", "commonObjects", "single") |
814 | 2702 |
if cls: |
2703 |
setattr(cls, "getinfos", _getconnectorinfosFunction("connector")) |
|
2704 |
setattr(cls, "Search", _SearchInConnector) |
|
2705 |
||
2706 |
def updateElementName(self, old_name, new_name): |
|
2707 |
if self.name == old_name: |
|
2708 |
self.name = new_name |
|
2709 |
setattr(cls, "updateElementName", updateElementName) |
|
2710 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2711 |
cls = PLCOpenParser.GetElementClass("connection") |
814 | 2712 |
if cls: |
2713 |
def setpoints(self, points): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2714 |
positions = [] |
814 | 2715 |
for point in points: |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2716 |
position = PLCOpenParser.CreateElement("position", "connection") |
814 | 2717 |
position.setx(point.x) |
2718 |
position.sety(point.y) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2719 |
positions.append(position) |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2720 |
self.position = positions |
814 | 2721 |
setattr(cls, "setpoints", setpoints) |
2722 |
||
2723 |
def getpoints(self): |
|
2724 |
points = [] |
|
2725 |
for position in self.position: |
|
2726 |
points.append((position.getx(),position.gety())) |
|
2727 |
return points |
|
2728 |
setattr(cls, "getpoints", getpoints) |
|
2729 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2730 |
cls = PLCOpenParser.GetElementClass("connectionPointIn") |
814 | 2731 |
if cls: |
2732 |
def setrelPositionXY(self, x, y): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2733 |
self.relPosition = PLCOpenParser.CreateElement("relPosition", "connectionPointIn") |
814 | 2734 |
self.relPosition.setx(x) |
2735 |
self.relPosition.sety(y) |
|
2736 |
setattr(cls, "setrelPositionXY", setrelPositionXY) |
|
2737 |
||
2738 |
def getrelPositionXY(self): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2739 |
if self.relPosition is not None: |
814 | 2740 |
return self.relPosition.getx(), self.relPosition.gety() |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2741 |
return self.relPosition |
814 | 2742 |
setattr(cls, "getrelPositionXY", getrelPositionXY) |
2743 |
||
2744 |
def addconnection(self): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2745 |
self.append(PLCOpenParser.CreateElement("connection", "connectionPointIn")) |
814 | 2746 |
setattr(cls, "addconnection", addconnection) |
2747 |
||
2748 |
def removeconnection(self, idx): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2749 |
if len(self.content) > idx: |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2750 |
self.remove(self.content[idx]) |
814 | 2751 |
setattr(cls, "removeconnection", removeconnection) |
2752 |
||
2753 |
def removeconnections(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2754 |
self.content = None |
814 | 2755 |
setattr(cls, "removeconnections", removeconnections) |
2756 |
||
2757 |
def getconnections(self): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2758 |
return self.xpath("ppx:connection", namespaces=PLCOpenParser.NSMAP) |
814 | 2759 |
setattr(cls, "getconnections", getconnections) |
2760 |
||
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2761 |
def getconnection(self, idx): |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2762 |
connection = self.xpath("ppx:connection[position()=%d]" % (idx + 1), |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2763 |
namespaces=PLCOpenParser.NSMAP) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2764 |
if len(connection) > 0: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2765 |
return connection[0] |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2766 |
return None |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2767 |
setattr(cls, "getconnection", getconnection) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2768 |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2769 |
def setconnectionId(self, idx, local_id): |
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2770 |
connection = self.getconnection(idx) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2771 |
if connection is not None: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2772 |
connection.setrefLocalId(local_id) |
814 | 2773 |
setattr(cls, "setconnectionId", setconnectionId) |
2774 |
||
2775 |
def getconnectionId(self, idx): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2776 |
connection = self.getconnection(idx) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2777 |
if connection is not None: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2778 |
return connection.getrefLocalId() |
814 | 2779 |
return None |
2780 |
setattr(cls, "getconnectionId", getconnectionId) |
|
2781 |
||
2782 |
def setconnectionPoints(self, idx, points): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2783 |
connection = self.getconnection(idx) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2784 |
if connection is not None: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2785 |
connection.setpoints(points) |
814 | 2786 |
setattr(cls, "setconnectionPoints", setconnectionPoints) |
2787 |
||
2788 |
def getconnectionPoints(self, idx): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2789 |
connection = self.getconnection(idx) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2790 |
if connection is not None: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2791 |
return connection.getpoints() |
1285
fa77f3b8f182
Fixed bug when no connection defined for connectionPointIn
Laurent Bessard
parents:
1283
diff
changeset
|
2792 |
return [] |
814 | 2793 |
setattr(cls, "getconnectionPoints", getconnectionPoints) |
2794 |
||
2795 |
def setconnectionParameter(self, idx, parameter): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2796 |
connection = self.getconnection(idx) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2797 |
if connection is not None: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2798 |
connection.setformalParameter(parameter) |
814 | 2799 |
setattr(cls, "setconnectionParameter", setconnectionParameter) |
2800 |
||
2801 |
def getconnectionParameter(self, idx): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2802 |
connection = self.getconnection(idx) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2803 |
if connection is not None: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2804 |
return connection.getformalParameter() |
814 | 2805 |
return None |
2806 |
setattr(cls, "getconnectionParameter", getconnectionParameter) |
|
2807 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2808 |
cls = PLCOpenParser.GetElementClass("connectionPointOut") |
814 | 2809 |
if cls: |
2810 |
def setrelPositionXY(self, x, y): |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2811 |
self.relPosition = PLCOpenParser.CreateElement("relPosition", "connectionPointOut") |
814 | 2812 |
self.relPosition.setx(x) |
2813 |
self.relPosition.sety(y) |
|
2814 |
setattr(cls, "setrelPositionXY", setrelPositionXY) |
|
2815 |
||
2816 |
def getrelPositionXY(self): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2817 |
if self.relPosition is not None: |
814 | 2818 |
return self.relPosition.getx(), self.relPosition.gety() |
2819 |
return self.relPosition |
|
2820 |
setattr(cls, "getrelPositionXY", getrelPositionXY) |
|
2821 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2822 |
cls = PLCOpenParser.GetElementClass("value") |
814 | 2823 |
if cls: |
2824 |
def setvalue(self, value): |
|
2825 |
value = value.strip() |
|
2826 |
if value.startswith("[") and value.endswith("]"): |
|
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2827 |
content = PLCOpenParser.CreateElement("arrayValue", "value") |
814 | 2828 |
elif value.startswith("(") and value.endswith(")"): |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2829 |
content = PLCOpenParser.CreateElement("structValue", "value") |
814 | 2830 |
else: |
1291
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2831 |
content = PLCOpenParser.CreateElement("simpleValue", "value") |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2832 |
content.setvalue(value) |
42ea51d083ce
Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully
Laurent Bessard
parents:
1290
diff
changeset
|
2833 |
self.setcontent(content) |
814 | 2834 |
setattr(cls, "setvalue", setvalue) |
2835 |
||
2836 |
def getvalue(self): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2837 |
return self.content.getvalue() |
814 | 2838 |
setattr(cls, "getvalue", getvalue) |
2839 |
||
2840 |
def extractValues(values): |
|
2841 |
items = values.split(",") |
|
2842 |
i = 1 |
|
2843 |
while i < len(items): |
|
2844 |
opened = items[i - 1].count("(") + items[i - 1].count("[") |
|
2845 |
closed = items[i - 1].count(")") + items[i - 1].count("]") |
|
2846 |
if opened > closed: |
|
2847 |
items[i - 1] = ','.join([items[i - 1], items.pop(i)]) |
|
2848 |
elif opened == closed: |
|
2849 |
i += 1 |
|
2850 |
else: |
|
2851 |
raise ValueError, _("\"%s\" is an invalid value!")%value |
|
2852 |
return items |
|
2853 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2854 |
cls = PLCOpenParser.GetElementClass("arrayValue", "value") |
814 | 2855 |
if cls: |
2856 |
arrayValue_model = re.compile("([0-9]*)\((.*)\)$") |
|
2857 |
||
2858 |
def setvalue(self, value): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2859 |
elements = [] |
814 | 2860 |
for item in extractValues(value[1:-1]): |
2861 |
item = item.strip() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2862 |
element = PLCOpenParser.CreateElement("value", "arrayValue") |
814 | 2863 |
result = arrayValue_model.match(item) |
2864 |
if result is not None: |
|
2865 |
groups = result.groups() |
|
2866 |
element.setrepetitionValue(groups[0]) |
|
2867 |
element.setvalue(groups[1].strip()) |
|
2868 |
else: |
|
2869 |
element.setvalue(item) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2870 |
elements.append(element) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2871 |
self.value = elements |
814 | 2872 |
setattr(cls, "setvalue", setvalue) |
2873 |
||
2874 |
def getvalue(self): |
|
2875 |
values = [] |
|
2876 |
for element in self.value: |
|
1293
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2877 |
try: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2878 |
repetition = int(element.getrepetitionValue()) |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2879 |
except: |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2880 |
repetition = 1 |
40117d02601b
Fixed diagram editing in xmlclass refactoring
Laurent Bessard
parents:
1291
diff
changeset
|
2881 |
if repetition > 1: |
814 | 2882 |
value = element.getvalue() |
2883 |
if value is None: |
|
2884 |
value = "" |
|
2885 |
values.append("%s(%s)"%(repetition, value)) |
|
2886 |
else: |
|
2887 |
values.append(element.getvalue()) |
|
2888 |
return "[%s]"%", ".join(values) |
|
2889 |
setattr(cls, "getvalue", getvalue) |
|
2890 |
||
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2891 |
cls = PLCOpenParser.GetElementClass("structValue", "value") |
814 | 2892 |
if cls: |
2893 |
structValue_model = re.compile("(.*):=(.*)") |
|
2894 |
||
2895 |
def setvalue(self, value): |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2896 |
elements = [] |
814 | 2897 |
for item in extractValues(value[1:-1]): |
2898 |
result = structValue_model.match(item) |
|
2899 |
if result is not None: |
|
2900 |
groups = result.groups() |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2901 |
element = PLCOpenParser.CreateElement("value", "structValue") |
814 | 2902 |
element.setmember(groups[0].strip()) |
2903 |
element.setvalue(groups[1].strip()) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2904 |
elements.append(element) |
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2905 |
self.value = elements |
814 | 2906 |
setattr(cls, "setvalue", setvalue) |
2907 |
||
2908 |
def getvalue(self): |
|
2909 |
values = [] |
|
2910 |
for element in self.value: |
|
2911 |
values.append("%s := %s"%(element.getmember(), element.getvalue())) |
|
2912 |
return "(%s)"%", ".join(values) |
|
2913 |
setattr(cls, "getvalue", getvalue) |
|
1290
13ee5f4ab612
First stage of xmlclass refactoring using lxml
Laurent Bessard
parents:
1285
diff
changeset
|
2914 |