author | lbessard |
Tue, 22 Jan 2008 10:53:34 +0100 | |
changeset 150 | f7832baaad84 |
parent 147 | 5ef987c1b927 |
child 151 | aaa80b48bead |
permissions | -rw-r--r-- |
0 | 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 |
# |
|
58 | 7 |
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
0 | 8 |
# |
9 |
#See COPYING file for copyrights details. |
|
10 |
# |
|
11 |
#This library is free software; you can redistribute it and/or |
|
2 | 12 |
#modify it under the terms of the GNU General Public |
0 | 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 |
|
58 | 19 |
#General Public License for more details. |
0 | 20 |
# |
2 | 21 |
#You should have received a copy of the GNU General Public |
0 | 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 |
||
2 | 25 |
from xmlclass import * |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
26 |
from types import * |
77
346a43f179a5
xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents:
74
diff
changeset
|
27 |
import os |
0 | 28 |
|
29 |
""" |
|
30 |
Dictionary that makes the relation between var names in plcopen and displayed values |
|
31 |
""" |
|
32 |
VarTypes = {"Local" : "localVars", "Temp" : "tempVars", "Input" : "inputVars", |
|
33 |
"Output" : "outputVars", "InOut" : "inOutVars", "External" : "externalVars", |
|
34 |
"Global" : "globalVars", "Access" : "accessVars"} |
|
35 |
||
36 |
""" |
|
37 |
Define in which order var types must be displayed |
|
38 |
""" |
|
39 |
VarOrder = ["Local","Temp","Input","Output","InOut","External","Global","Access"] |
|
40 |
||
41 |
""" |
|
42 |
Define which action qualifier must be associated with a duration |
|
43 |
""" |
|
44 |
QualifierList = {"N" : False, "R" : False, "S" : False, "L" : True, "D" : True, |
|
45 |
"P" : False, "P0" : False, "P1" : False, "SD" : True, "DS" : True, "SL" : True} |
|
46 |
||
77
346a43f179a5
xmlclass modified for allowing class definitions for multiple XSD files and indicating which classes are the base classes
lbessard
parents:
74
diff
changeset
|
47 |
PLCOpenClasses, PLCOpenTypes = GenerateClassesFromXSD(os.path.join(os.path.split(__file__)[0], "TC6_XML_V10_B.xsd")) |
2 | 48 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
49 |
cls = PLCOpenClasses.get("formattedText", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
50 |
if cls: |
2 | 51 |
cls.text = "" |
52 |
||
53 |
def getText(self): |
|
54 |
return self.text |
|
55 |
setattr(cls, "getText", getText) |
|
56 |
||
57 |
def setText(self, text): |
|
58 |
self.text = text |
|
59 |
setattr(cls, "setText", setText) |
|
60 |
||
61 |
def loadXMLTree(self, tree): |
|
62 |
self.text = GetAttributeValue(tree) |
|
63 |
if len(self.text.splitlines()) > 1: |
|
64 |
self.text = self.text[1:].rstrip() |
|
65 |
setattr(cls, "loadXMLTree", loadXMLTree) |
|
66 |
||
67 |
def generateXMLText(self, name, indent, extras = {}): |
|
68 |
ind1, ind2 = getIndent(indent, name) |
|
69 |
if len(self.text.splitlines()) > 1: |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
70 |
text = ind1 + "<%s>\n<![CDATA[\n"%name |
2 | 71 |
text += "%s\n"%self.text |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
72 |
text += "]]>\n" + ind1 + "</%s>\n"%name |
0 | 73 |
return text |
2 | 74 |
else: |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
75 |
return ind1 + "<%s><![CDATA[%s]]></%s>\n"%(name, self.text, name) |
2 | 76 |
setattr(cls, "generateXMLText", generateXMLText) |
77 |
||
58 | 78 |
def updateElementName(self, old_name, new_name): |
79 |
index = self.text.find(old_name) |
|
80 |
while index != -1: |
|
81 |
if index > 0 and (self.text[index - 1].isalnum() or self.text[index - 1] == "_"): |
|
82 |
index = self.text.find(old_name, index + len(old_name)) |
|
83 |
elif index < len(self.text) - len(old_name) and (self.text[index + len(old_name)].isalnum() or self.text[index + len(old_name)] == "_"): |
|
84 |
index = self.text.find(old_name, index + len(old_name)) |
|
85 |
else: |
|
86 |
self.text = self.text[:index] + new_name + self.text[index + len(old_name):] |
|
87 |
index = self.text.find(old_name, index + len(new_name)) |
|
88 |
setattr(cls, "updateElementName", updateElementName) |
|
89 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
90 |
cls = PLCOpenClasses.get("project", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
91 |
if cls: |
2 | 92 |
cls.singleLineAttributes = False |
93 |
||
145 | 94 |
def setName(self, name): |
95 |
self.contentHeader.setName(name) |
|
96 |
setattr(cls, "setName", setName) |
|
97 |
||
98 |
def getName(self): |
|
99 |
return self.contentHeader.getName() |
|
100 |
setattr(cls, "getName", getName) |
|
101 |
||
2 | 102 |
def getFileHeader(self): |
103 |
fileheader = {} |
|
104 |
fileheader["companyName"] = self.fileHeader.getCompanyName() |
|
105 |
if self.fileHeader.getCompanyURL(): |
|
106 |
fileheader["companyURL"] = self.fileHeader.getCompanyURL() |
|
107 |
fileheader["productName"] = self.fileHeader.getProductName() |
|
108 |
fileheader["productVersion"] = self.fileHeader.getProductVersion() |
|
109 |
if self.fileHeader.getProductRelease(): |
|
110 |
fileheader["productRelease"] = self.fileHeader.getProductRelease() |
|
111 |
fileheader["creationDateTime"] = self.fileHeader.getCreationDateTime() |
|
112 |
if self.fileHeader.getContentDescription(): |
|
113 |
fileheader["contentDescription"] = self.fileHeader.getContentDescription() |
|
114 |
return fileheader |
|
115 |
setattr(cls, "getFileHeader", getFileHeader) |
|
116 |
||
117 |
def setFileHeader(self, fileheader): |
|
118 |
self.fileHeader.setCompanyName(fileheader["companyName"]) |
|
119 |
if "companyURL" in fileheader: |
|
120 |
self.fileHeader.setCompanyURL(fileheader["companyURL"]) |
|
121 |
self.fileHeader.setProductName(fileheader["productName"]) |
|
122 |
self.fileHeader.setProductVersion(fileheader["productVersion"]) |
|
123 |
if "productRelease" in fileheader: |
|
124 |
self.fileHeader.setProductRelease(fileheader["productRelease"]) |
|
125 |
self.fileHeader.setCreationDateTime(fileheader["creationDateTime"]) |
|
126 |
if "contentDescription" in fileheader: |
|
127 |
self.fileHeader.setContentDescription(fileheader["contentDescription"]) |
|
128 |
setattr(cls, "setFileHeader", setFileHeader) |
|
129 |
||
145 | 130 |
def getContentHeader(self): |
131 |
contentheader = {} |
|
132 |
contentheader["projectName"] = self.contentHeader.getName() |
|
133 |
if self.contentHeader.getVersion(): |
|
134 |
contentheader["projectVersion"] = self.contentHeader.getVersion() |
|
135 |
if self.contentHeader.getModificationDateTime(): |
|
136 |
contentheader["modificationDateTime"] = self.contentHeader.getModificationDateTime() |
|
137 |
if self.contentHeader.getOrganization(): |
|
138 |
contentheader["organization"] = self.contentHeader.getOrganization() |
|
139 |
if self.contentHeader.getAuthor(): |
|
140 |
contentheader["authorName"] = self.contentHeader.getAuthor() |
|
141 |
if self.contentHeader.getLanguage(): |
|
142 |
contentheader["language"] = self.contentHeader.getLanguage() |
|
143 |
contentheader["pageSize"] = self.contentHeader.getPageSize() |
|
144 |
contentheader["scaling"] = self.contentHeader.getScaling() |
|
145 |
return contentheader |
|
146 |
setattr(cls, "getContentHeader", getContentHeader) |
|
147 |
||
148 |
def setContentHeader(self, contentheader): |
|
149 |
self.contentHeader.setName(contentheader["projectName"]) |
|
150 |
if "projectVersion" in contentheader: |
|
151 |
self.contentHeader.setVersion(contentheader["projectVersion"]) |
|
152 |
if "modificationDateTime" in contentheader: |
|
153 |
self.contentHeader.setModificationDateTime(contentheader["modificationDateTime"]) |
|
154 |
if "organization" in contentheader: |
|
155 |
self.contentHeader.setOrganization(contentheader["organization"]) |
|
156 |
if "authorName" in contentheader: |
|
157 |
self.contentHeader.setAuthor(contentheader["authorName"]) |
|
158 |
if "language" in contentheader: |
|
159 |
self.contentHeader.setLanguage(contentheader["language"]) |
|
160 |
self.contentHeader.setPageSize(*contentheader["pageSize"]) |
|
161 |
self.contentHeader.setScaling(contentheader["scaling"]) |
|
162 |
setattr(cls, "setContentHeader", setContentHeader) |
|
163 |
||
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
164 |
def getDataTypes(self): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
165 |
return self.types.getDataTypeElements() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
166 |
setattr(cls, "getDataTypes", getDataTypes) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
167 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
168 |
def getDataType(self, name): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
169 |
return self.types.getDataTypeElement(name) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
170 |
setattr(cls, "getDataType", getDataType) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
171 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
172 |
def appendDataType(self, name): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
173 |
self.types.appendDataTypeElement(name) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
174 |
setattr(cls, "appendDataType", appendDataType) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
175 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
176 |
def insertDataType(self, index, datatype): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
177 |
self.types.insertDataTypeElement(index, datatype) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
178 |
setattr(cls, "insertDataType", insertDataType) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
179 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
180 |
def removeDataType(self, name): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
181 |
self.types.removeDataTypeElement(name) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
182 |
setattr(cls, "removeDataType", removeDataType) |
2 | 183 |
|
184 |
def getPous(self): |
|
185 |
return self.types.getPouElements() |
|
186 |
setattr(cls, "getPous", getPous) |
|
187 |
||
188 |
def getPou(self, name): |
|
189 |
return self.types.getPouElement(name) |
|
190 |
setattr(cls, "getPou", getPou) |
|
191 |
||
192 |
def appendPou(self, name, pou_type, body_type): |
|
193 |
self.types.appendPouElement(name, pou_type, body_type) |
|
194 |
setattr(cls, "appendPou", appendPou) |
|
0 | 195 |
|
2 | 196 |
def insertPou(self, index, pou): |
197 |
self.types.insertPouElement(index, pou) |
|
198 |
setattr(cls, "insertPou", insertPou) |
|
199 |
||
200 |
def removePou(self, name): |
|
201 |
self.types.removePouElement(name) |
|
202 |
setattr(cls, "removePou", removePou) |
|
203 |
||
204 |
def getConfigurations(self): |
|
205 |
configurations = self.instances.configurations.getConfiguration() |
|
206 |
if configurations: |
|
207 |
return configurations |
|
208 |
return [] |
|
209 |
setattr(cls, "getConfigurations", getConfigurations) |
|
210 |
||
211 |
def getConfiguration(self, name): |
|
212 |
for configuration in self.instances.configurations.getConfiguration(): |
|
213 |
if configuration.getName() == name: |
|
214 |
return configuration |
|
215 |
return None |
|
216 |
setattr(cls, "getConfiguration", getConfiguration) |
|
217 |
||
218 |
def addConfiguration(self, name): |
|
219 |
for configuration in self.instances.configurations.getConfiguration(): |
|
220 |
if configuration.getName() == name: |
|
221 |
raise ValueError, "\"%s\" configuration already exists !!!"%name |
|
222 |
new_configuration = PLCOpenClasses["configurations_configuration"]() |
|
223 |
new_configuration.setName(name) |
|
224 |
self.instances.configurations.appendConfiguration(new_configuration) |
|
225 |
setattr(cls, "addConfiguration", addConfiguration) |
|
226 |
||
227 |
def removeConfiguration(self, name): |
|
228 |
found = False |
|
229 |
for idx, configuration in enumerate(self.instances.configurations.getConfiguration()): |
|
230 |
if configuration.getName() == name: |
|
231 |
self.instances.configurations.removeConfiguration(idx) |
|
232 |
found = True |
|
233 |
break |
|
234 |
if not found: |
|
235 |
raise ValueError, "\"%s\" configuration doesn't exist !!!"%name |
|
236 |
setattr(cls, "removeConfiguration", removeConfiguration) |
|
237 |
||
238 |
def getConfigurationResource(self, config_name, name): |
|
239 |
configuration = self.getConfiguration(config_name) |
|
240 |
if configuration: |
|
241 |
for resource in configuration.getResource(): |
|
242 |
if resource.getName() == name: |
|
243 |
return resource |
|
244 |
return None |
|
245 |
setattr(cls, "getConfigurationResource", getConfigurationResource) |
|
246 |
||
247 |
def addConfigurationResource(self, config_name, name): |
|
248 |
configuration = self.getConfiguration(config_name) |
|
249 |
if configuration: |
|
250 |
for resource in configuration.getResource(): |
|
251 |
if resource.getName() == name: |
|
252 |
raise ValueError, "\"%s\" resource already exists in \"%s\" configuration !!!"%(name, config_name) |
|
253 |
new_resource = PLCOpenClasses["configuration_resource"]() |
|
254 |
new_resource.setName(name) |
|
255 |
configuration.appendResource(new_resource) |
|
145 | 256 |
setattr(cls, "addConfigurationResource", addConfigurationResource) |
2 | 257 |
|
258 |
def removeConfigurationResource(self, config_name, name): |
|
259 |
configuration = self.getConfiguration(config_name) |
|
260 |
if configuration: |
|
0 | 261 |
found = False |
2 | 262 |
for idx, resource in enumerate(configuration.getResource()): |
263 |
if resource.getName() == name: |
|
264 |
configuration.removeResource(idx) |
|
0 | 265 |
found = True |
266 |
break |
|
267 |
if not found: |
|
2 | 268 |
raise ValueError, "\"%s\" resource doesn't exist in \"%s\" configuration !!!"%(name, config_name) |
269 |
setattr(cls, "removeConfigurationResource", removeConfigurationResource) |
|
270 |
||
58 | 271 |
def updateElementName(self, old_name, new_name): |
272 |
for pou in self.types.getPouElements(): |
|
273 |
pou.updateElementName(old_name, new_name) |
|
274 |
for configuration in self.instances.configurations.getConfiguration(): |
|
275 |
configuration.updateElementName(old_name, new_name) |
|
276 |
setattr(cls, "updateElementName", updateElementName) |
|
277 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
278 |
cls = PLCOpenClasses.get("project_fileHeader", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
279 |
if cls: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
280 |
cls.singleLineAttributes = False |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
281 |
|
145 | 282 |
cls = PLCOpenClasses.get("project_contentHeader", None) |
283 |
if cls: |
|
284 |
cls.singleLineAttributes = False |
|
285 |
||
286 |
def setPageSize(self, width, height): |
|
287 |
self.coordinateInfo.setPageSize(width, height) |
|
288 |
setattr(cls, "setPageSize", setPageSize) |
|
289 |
||
290 |
def getPageSize(self): |
|
291 |
return self.coordinateInfo.getPageSize() |
|
292 |
setattr(cls, "getPageSize", getPageSize) |
|
293 |
||
294 |
def setScaling(self, scaling): |
|
295 |
for language, (x, y) in scaling.items(): |
|
296 |
self.coordinateInfo.setScaling(language, x, y) |
|
297 |
setattr(cls, "setScaling", setScaling) |
|
298 |
||
299 |
def getScaling(self): |
|
300 |
scaling = {} |
|
301 |
scaling["FBD"] = self.coordinateInfo.getScaling("FBD") |
|
302 |
scaling["LD"] = self.coordinateInfo.getScaling("LD") |
|
303 |
scaling["SFC"] = self.coordinateInfo.getScaling("SFC") |
|
304 |
return scaling |
|
305 |
setattr(cls, "getScaling", getScaling) |
|
306 |
||
307 |
cls = PLCOpenClasses.get("contentHeader_coordinateInfo", None) |
|
308 |
if cls: |
|
309 |
def setPageSize(self, width, height): |
|
310 |
if width == 0 and height == 0: |
|
311 |
self.deletePageSize() |
|
312 |
else: |
|
313 |
if self.pageSize is None: |
|
314 |
self.addPageSize() |
|
315 |
self.pageSize.setX(width) |
|
316 |
self.pageSize.setY(height) |
|
317 |
setattr(cls, "setPageSize", setPageSize) |
|
318 |
||
319 |
def getPageSize(self): |
|
320 |
if self.pageSize is not None: |
|
321 |
return self.pageSize.getX(), self.pageSize.getY() |
|
322 |
return 0, 0 |
|
323 |
setattr(cls, "getPageSize", getPageSize) |
|
324 |
||
325 |
def setScaling(self, language, x, y): |
|
326 |
if language == "FBD": |
|
327 |
self.fbd.scaling.setX(x) |
|
328 |
self.fbd.scaling.setY(y) |
|
329 |
elif language == "LD": |
|
330 |
self.ld.scaling.setX(x) |
|
331 |
self.ld.scaling.setY(y) |
|
332 |
elif language == "SFC": |
|
333 |
self.sfc.scaling.setX(x) |
|
334 |
self.sfc.scaling.setY(y) |
|
335 |
setattr(cls, "setScaling", setScaling) |
|
336 |
||
337 |
def getScaling(self, language): |
|
338 |
if language == "FBD": |
|
339 |
return self.fbd.scaling.getX(), self.fbd.scaling.getY() |
|
340 |
elif language == "LD": |
|
341 |
return self.ld.scaling.getX(), self.ld.scaling.getY() |
|
342 |
elif language == "SFC": |
|
343 |
return self.sfc.scaling.getX(), self.sfc.scaling.getY() |
|
344 |
return 0, 0 |
|
345 |
setattr(cls, "getScaling", getScaling) |
|
346 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
347 |
cls = PLCOpenClasses.get("configurations_configuration", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
348 |
if cls: |
58 | 349 |
def updateElementName(self, old_name, new_name): |
350 |
for resource in self.getResource(): |
|
351 |
resource.updateElementName(old_name, new_name) |
|
352 |
setattr(cls, "updateElementName", updateElementName) |
|
353 |
||
354 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
355 |
cls = PLCOpenClasses.get("configuration_resource", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
356 |
if cls: |
58 | 357 |
def updateElementName(self, old_name, new_name): |
358 |
for instance in self.getPouInstance(): |
|
359 |
instance.updateElementName(old_name, new_name) |
|
360 |
for task in self.getTask(): |
|
361 |
task.updateElementName(old_name, new_name) |
|
362 |
setattr(cls, "updateElementName", updateElementName) |
|
363 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
364 |
cls = PLCOpenClasses.get("resource_task", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
365 |
if cls: |
58 | 366 |
def updateElementName(self, old_name, new_name): |
367 |
if self.single == old_name: |
|
368 |
self.single = new_name |
|
369 |
for instance in self.getPouInstance(): |
|
370 |
instance.updateElementName(old_name, new_name) |
|
371 |
setattr(cls, "updateElementName", updateElementName) |
|
372 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
373 |
cls = PLCOpenClasses.get("pouInstance", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
374 |
if cls: |
58 | 375 |
def updateElementName(self, old_name, new_name): |
376 |
if self.type == old_name: |
|
377 |
self.type = new_name |
|
378 |
setattr(cls, "updateElementName", updateElementName) |
|
379 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
380 |
cls = PLCOpenClasses.get("project_types", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
381 |
if cls: |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
382 |
def getDataTypeElements(self): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
383 |
return self.dataTypes.getDataType() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
384 |
setattr(cls, "getDataTypeElements", getDataTypeElements) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
385 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
386 |
def getDataTypeElement(self, name): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
387 |
elements = self.dataTypes.getDataType() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
388 |
for element in elements: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
389 |
if element.getName() == name: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
390 |
return element |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
391 |
return None |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
392 |
setattr(cls, "getDataTypeElement", getDataTypeElement) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
393 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
394 |
def appendDataTypeElement(self, name): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
395 |
for element in self.dataTypes.getDataType(): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
396 |
if element.getName() == name: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
397 |
raise ValueError, "\"%s\" Data Type already exists !!!"%name |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
398 |
new_datatype = PLCOpenClasses["dataTypes_dataType"]() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
399 |
new_datatype.setName(name) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
400 |
new_datatype.baseType.setContent("BOOL", None) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
401 |
self.dataTypes.appendDataType(new_datatype) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
402 |
setattr(cls, "appendDataTypeElement", appendDataTypeElement) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
403 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
404 |
def insertDataTypeElement(self, index, datatype): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
405 |
self.dataTypes.insertDataType(index, datatype) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
406 |
setattr(cls, "insertDataTypeElement", insertDataTypeElement) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
407 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
408 |
def removeDataTypeElement(self, name): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
409 |
found = False |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
410 |
for idx, element in enumerate(self.dataTypes.getDataType()): |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
411 |
if element.getName() == name: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
412 |
self.dataTypes.removeDataType(idx) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
413 |
found = True |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
414 |
break |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
415 |
if not found: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
416 |
raise ValueError, "\"%s\" Data Type doesn't exist !!!"%name |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
417 |
setattr(cls, "removeDataTypeElement", removeDataTypeElement) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
418 |
|
2 | 419 |
def getPouElements(self): |
420 |
return self.pous.getPou() |
|
421 |
setattr(cls, "getPouElements", getPouElements) |
|
422 |
||
423 |
def getPouElement(self, name): |
|
424 |
elements = self.pous.getPou() |
|
425 |
for element in elements: |
|
426 |
if element.getName() == name: |
|
427 |
return element |
|
428 |
return None |
|
429 |
setattr(cls, "getPouElement", getPouElement) |
|
430 |
||
431 |
def appendPouElement(self, name, pou_type, body_type): |
|
432 |
for element in self.pous.getPou(): |
|
433 |
if element.getName() == name: |
|
434 |
raise ValueError, "\"%s\" POU already exists !!!"%name |
|
435 |
new_pou = PLCOpenClasses["pous_pou"]() |
|
436 |
new_pou.setName(name) |
|
437 |
new_pou.pouType.setValue(pou_type) |
|
438 |
new_pou.setBody(PLCOpenClasses["body"]()) |
|
439 |
new_pou.setBodyType(body_type) |
|
440 |
self.pous.appendPou(new_pou) |
|
441 |
setattr(cls, "appendPouElement", appendPouElement) |
|
442 |
||
443 |
def insertPouElement(self, index, pou): |
|
444 |
self.pous.insertPou(index, pou) |
|
445 |
setattr(cls, "insertPouElement", insertPouElement) |
|
446 |
||
447 |
def removePouElement(self, name): |
|
448 |
found = False |
|
449 |
for idx, element in enumerate(self.pous.getPou()): |
|
450 |
if element.getName() == name: |
|
451 |
self.pous.removePou(idx) |
|
452 |
found = True |
|
453 |
break |
|
454 |
if not found: |
|
455 |
raise ValueError, "\"%s\" POU doesn't exist !!!"%name |
|
456 |
setattr(cls, "removePouElement", removePouElement) |
|
457 |
||
458 |
def setBodyType(self, type): |
|
459 |
if type == "IL": |
|
460 |
self.body.setContent("IL", PLCOpenClasses["formattedText"]()) |
|
461 |
elif type == "ST": |
|
462 |
self.body.setContent("ST", PLCOpenClasses["formattedText"]()) |
|
463 |
elif type == "LD": |
|
464 |
self.body.setContent("LD", PLCOpenClasses["body_LD"]()) |
|
465 |
elif type == "FBD": |
|
466 |
self.body.setContent("FBD", PLCOpenClasses["body_FBD"]()) |
|
467 |
elif type == "SFC": |
|
468 |
self.body.setContent("SFC", PLCOpenClasses["body_SFC"]()) |
|
469 |
else: |
|
470 |
raise ValueError, "%s isn't a valid body type!"%type |
|
471 |
||
472 |
def getBodyType(self): |
|
473 |
return self.body.getContent()["name"] |
|
474 |
||
118
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
475 |
def resetExecutionOrder(self): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
476 |
self.body.resetExecutionOrder() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
477 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
478 |
def compileExecutionOrder(self): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
479 |
self.body.compileExecutionOrder() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
480 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
481 |
def setElementExecutionOrder(self, instance, new_executionOrder): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
482 |
self.body.setElementExecutionOrder(instance, new_executionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
483 |
|
2 | 484 |
def addInstance(self, name, instance): |
485 |
self.body.appendContentInstance(name, instance) |
|
486 |
||
487 |
def getInstances(self): |
|
488 |
return self.body.getContentInstances() |
|
489 |
||
490 |
def getInstance(self, id): |
|
491 |
return self.body.getContentInstance(id) |
|
492 |
||
493 |
def getRandomInstance(self, exclude): |
|
494 |
return self.body.getContentRandomInstance(exclude) |
|
495 |
||
496 |
def getInstanceByName(self, name): |
|
497 |
return self.body.getContentInstanceByName(name) |
|
498 |
||
499 |
def removeInstance(self, id): |
|
500 |
self.body.removeContentInstance(id) |
|
501 |
||
502 |
def setText(self, text): |
|
503 |
self.body.setText(text) |
|
504 |
||
505 |
def getText(self): |
|
506 |
return self.body.getText() |
|
507 |
setattr(cls, "getText", getText) |
|
508 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
509 |
cls = PLCOpenClasses.get("pous_pou", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
510 |
if cls: |
2 | 511 |
setattr(cls, "setBodyType", setBodyType) |
512 |
setattr(cls, "getBodyType", getBodyType) |
|
118
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
513 |
setattr(cls, "resetExecutionOrder", resetExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
514 |
setattr(cls, "compileExecutionOrder", compileExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
515 |
setattr(cls, "setElementExecutionOrder", setElementExecutionOrder) |
2 | 516 |
setattr(cls, "addInstance", addInstance) |
517 |
setattr(cls, "getInstances", getInstances) |
|
518 |
setattr(cls, "getInstance", getInstance) |
|
519 |
setattr(cls, "getRandomInstance", getRandomInstance) |
|
520 |
setattr(cls, "getInstanceByName", getInstanceByName) |
|
521 |
setattr(cls, "removeInstance", removeInstance) |
|
522 |
setattr(cls, "setText", setText) |
|
523 |
setattr(cls, "getText", getText) |
|
524 |
||
525 |
def getVars(self): |
|
526 |
vars = [] |
|
527 |
reverse_types = {} |
|
528 |
for name, value in VarTypes.items(): |
|
529 |
reverse_types[value] = name |
|
530 |
for varlist in self.interface.getContent(): |
|
531 |
vars.append((reverse_types[varlist["name"]], varlist["value"])) |
|
532 |
return vars |
|
533 |
setattr(cls, "getVars", getVars) |
|
534 |
||
535 |
def setVars(self, vars): |
|
536 |
self.interface.setContent([]) |
|
537 |
for vartype, varlist in vars: |
|
538 |
self.interface.appendContent(VarTypes[vartype], varlist) |
|
539 |
setattr(cls, "setVars", setVars) |
|
540 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
541 |
def addPouVar(self, type, name): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
542 |
content = self.interface.getContent() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
543 |
if len(content) == 0 or content[-1]["name"] != "localVars": |
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
544 |
content.append({"name" : "localVars", "value" : PLCOpenClasses["varList"]()}) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
545 |
else: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
546 |
varlist = content[-1]["value"] |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
547 |
variables = varlist.getVariable() |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
548 |
if varlist.getConstant() or varlist.getRetain() or len(variables) > 0 and variables[0].getAddress(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
549 |
content.append({"name" : "localVars", "value" : PLCOpenClasses["varList"]()}) |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
550 |
var = PLCOpenClasses["varListPlain_variable"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
551 |
var.setName(name) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
552 |
var_type = PLCOpenClasses["dataType"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
553 |
derived_type = PLCOpenClasses["derived"]() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
554 |
derived_type.setName(type) |
143
015a34da60eb
Bug on FunctionBlock type variables management fixed
lbessard
parents:
141
diff
changeset
|
555 |
var_type.setContent("derived", derived_type) |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
556 |
var.setType(var_type) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
557 |
content[-1]["value"].appendVariable(var) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
558 |
setattr(cls, "addPouVar", addPouVar) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
559 |
|
94 | 560 |
def changePouVar(self, old_type, old_name, new_type, new_name): |
561 |
content = self.interface.getContent() |
|
562 |
for varlist in content: |
|
563 |
variables = varlist["value"].getVariable() |
|
564 |
for var in variables: |
|
565 |
if var.getName() == old_name: |
|
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
566 |
vartype_content = var.getType().getContent() |
141 | 567 |
if vartype_content["name"] == "derived" and vartype_content["value"].getName() == old_type: |
94 | 568 |
var.setName(new_name) |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
569 |
vartype_content["value"].setName(new_type) |
94 | 570 |
return |
571 |
setattr(cls, "changePouVar", changePouVar) |
|
572 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
573 |
def removePouVar(self, type, name): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
574 |
content = self.interface.getContent() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
575 |
for varlist in content: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
576 |
variables = varlist["value"].getVariable() |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
577 |
for var in variables: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
578 |
if var.getName() == name: |
143
015a34da60eb
Bug on FunctionBlock type variables management fixed
lbessard
parents:
141
diff
changeset
|
579 |
vartype_content = var.getType().getContent() |
015a34da60eb
Bug on FunctionBlock type variables management fixed
lbessard
parents:
141
diff
changeset
|
580 |
if vartype_content["name"] == "derived" and vartype_content["value"].getName() == type: |
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
581 |
variables.remove(var) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
582 |
break |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
583 |
if len(varlist["value"].getVariable()) == 0: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
584 |
content.remove(varlist) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
585 |
break |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
586 |
setattr(cls, "removePouVar", removePouVar) |
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
587 |
|
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
588 |
def hasBlock(self, name): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
589 |
if self.getBodyType() in ["FBD", "LD", "SFC"]: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
590 |
for instance in self.getInstances(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
591 |
if isinstance(instance, PLCOpenClasses["block"]) and instance.getInstanceName() == name: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
592 |
return True |
89 | 593 |
if self.transitions: |
594 |
for transition in self.transitions.getTransition(): |
|
595 |
result = transition.hasBlock(name) |
|
596 |
if result: |
|
597 |
return result |
|
598 |
if self.actions: |
|
599 |
for action in self.actions.getAction(): |
|
600 |
result = action.hasBlock(name) |
|
601 |
if result: |
|
602 |
return result |
|
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
603 |
return False |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
604 |
setattr(cls, "hasBlock", hasBlock) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
605 |
|
2 | 606 |
def addTransition(self, name, type): |
607 |
if not self.transitions: |
|
608 |
self.addTransitions() |
|
609 |
self.transitions.setTransition([]) |
|
610 |
transition = PLCOpenClasses["transitions_transition"]() |
|
611 |
transition.setName(name) |
|
612 |
transition.setBodyType(type) |
|
613 |
self.transitions.appendTransition(transition) |
|
614 |
setattr(cls, "addTransition", addTransition) |
|
615 |
||
616 |
def getTransition(self, name): |
|
617 |
if self.transitions: |
|
618 |
for transition in self.transitions.getTransition(): |
|
619 |
if transition.getName() == name: |
|
620 |
return transition |
|
621 |
return None |
|
622 |
setattr(cls, "getTransition", getTransition) |
|
623 |
||
624 |
def getTransitionList(self): |
|
625 |
if self.transitions: |
|
626 |
return self.transitions.getTransition() |
|
627 |
return [] |
|
628 |
setattr(cls, "getTransitionList", getTransitionList) |
|
629 |
||
630 |
def removeTransition(self, name): |
|
631 |
if self.transitions: |
|
632 |
transitions = self.transitions.getTransition() |
|
633 |
i = 0 |
|
634 |
removed = False |
|
635 |
while i < len(transitions) and not removed: |
|
636 |
if transitions[i].getName() == name: |
|
46 | 637 |
transitions.pop(i) |
2 | 638 |
removed = True |
639 |
i += 1 |
|
640 |
if not removed: |
|
641 |
raise ValueError, "Transition with name %s doesn't exists!"%name |
|
642 |
setattr(cls, "removeTransition", removeTransition) |
|
643 |
||
644 |
def addAction(self, name, type): |
|
645 |
if not self.actions: |
|
646 |
self.addActions() |
|
647 |
self.actions.setAction([]) |
|
648 |
action = PLCOpenClasses["actions_action"]() |
|
649 |
action.setName(name) |
|
650 |
action.setBodyType(type) |
|
651 |
self.actions.appendAction(action) |
|
652 |
setattr(cls, "addAction", addAction) |
|
653 |
||
654 |
def getAction(self, name): |
|
655 |
if self.actions: |
|
656 |
for action in self.actions.getAction(): |
|
657 |
if action.getName() == name: |
|
658 |
return action |
|
659 |
return None |
|
660 |
setattr(cls, "getAction", getAction) |
|
661 |
||
662 |
def getActionList(self): |
|
663 |
if self.actions: |
|
664 |
return self.actions.getAction() |
|
665 |
return [] |
|
666 |
setattr(cls, "getActionList", getActionList) |
|
667 |
||
668 |
def removeAction(self, name): |
|
669 |
if self.actions: |
|
670 |
actions = self.actions.getAction() |
|
671 |
i = 0 |
|
672 |
removed = False |
|
673 |
while i < len(actions) and not removed: |
|
674 |
if actions[i].getName() == name: |
|
46 | 675 |
actions.pop(i) |
2 | 676 |
removed = True |
677 |
i += 1 |
|
678 |
if not removed: |
|
679 |
raise ValueError, "Action with name %s doesn't exists!"%name |
|
680 |
setattr(cls, "removeAction", removeAction) |
|
681 |
||
58 | 682 |
def updateElementName(self, old_name, new_name): |
683 |
self.body.updateElementName(old_name, new_name) |
|
684 |
for action in self.getActionList(): |
|
685 |
action.updateElementName(old_name, new_name) |
|
686 |
for transition in self.getTransitionList(): |
|
687 |
transition.updateElementName(old_name, new_name) |
|
688 |
setattr(cls, "updateElementName", updateElementName) |
|
689 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
690 |
cls = PLCOpenClasses.get("transitions_transition", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
691 |
if cls: |
2 | 692 |
setattr(cls, "setBodyType", setBodyType) |
693 |
setattr(cls, "getBodyType", getBodyType) |
|
118
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
694 |
setattr(cls, "resetExecutionOrder", resetExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
695 |
setattr(cls, "compileExecutionOrder", compileExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
696 |
setattr(cls, "setElementExecutionOrder", setElementExecutionOrder) |
2 | 697 |
setattr(cls, "addInstance", addInstance) |
698 |
setattr(cls, "getInstances", getInstances) |
|
699 |
setattr(cls, "getInstance", getInstance) |
|
700 |
setattr(cls, "getRandomInstance", getRandomInstance) |
|
701 |
setattr(cls, "getInstanceByName", getInstanceByName) |
|
702 |
setattr(cls, "removeInstance", removeInstance) |
|
703 |
setattr(cls, "setText", setText) |
|
704 |
setattr(cls, "getText", getText) |
|
705 |
||
58 | 706 |
def updateElementName(self, old_name, new_name): |
707 |
self.body.updateElementName(old_name, new_name) |
|
708 |
setattr(cls, "updateElementName", updateElementName) |
|
709 |
||
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
710 |
def hasBlock(self, name): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
711 |
if self.getBodyType() in ["FBD", "LD", "SFC"]: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
712 |
for instance in self.getInstances(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
713 |
if isinstance(instance, PLCOpenClasses["block"]) and instance.getInstanceName() == name: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
714 |
return True |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
715 |
return False |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
716 |
setattr(cls, "hasBlock", hasBlock) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
717 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
718 |
cls = PLCOpenClasses.get("actions_action", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
719 |
if cls: |
2 | 720 |
setattr(cls, "setBodyType", setBodyType) |
721 |
setattr(cls, "getBodyType", getBodyType) |
|
118
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
722 |
setattr(cls, "resetExecutionOrder", resetExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
723 |
setattr(cls, "compileExecutionOrder", compileExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
724 |
setattr(cls, "setElementExecutionOrder", setElementExecutionOrder) |
2 | 725 |
setattr(cls, "addInstance", addInstance) |
726 |
setattr(cls, "getInstances", getInstances) |
|
727 |
setattr(cls, "getInstance", getInstance) |
|
728 |
setattr(cls, "getRandomInstance", getRandomInstance) |
|
729 |
setattr(cls, "getInstanceByName", getInstanceByName) |
|
730 |
setattr(cls, "removeInstance", removeInstance) |
|
731 |
setattr(cls, "setText", setText) |
|
732 |
setattr(cls, "getText", getText) |
|
733 |
||
58 | 734 |
def updateElementName(self, old_name, new_name): |
735 |
self.body.updateElementName(old_name, new_name) |
|
736 |
setattr(cls, "updateElementName", updateElementName) |
|
737 |
||
68
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
738 |
def hasBlock(self, name): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
739 |
if self.getBodyType() in ["FBD", "LD", "SFC"]: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
740 |
for instance in self.getInstances(): |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
741 |
if isinstance(instance, PLCOpenClasses["block"]) and instance.getInstanceName() == name: |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
742 |
return True |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
743 |
return False |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
744 |
setattr(cls, "hasBlock", hasBlock) |
66308e07402c
Adding support for allowing declarations of function block into POU interface
lbessard
parents:
67
diff
changeset
|
745 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
746 |
cls = PLCOpenClasses.get("body", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
747 |
if cls: |
118
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
748 |
cls.currentExecutionOrderId = 0 |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
749 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
750 |
def resetCurrentExecutionOrderId(self): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
751 |
self.currentExecutionOrderId = 0 |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
752 |
setattr(cls, "resetCurrentExecutionOrderId", resetCurrentExecutionOrderId) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
753 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
754 |
def getNewExecutionOrderId(self): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
755 |
self.currentExecutionOrderId += 1 |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
756 |
return self.currentExecutionOrderId |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
757 |
setattr(cls, "getNewExecutionOrderId", getNewExecutionOrderId) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
758 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
759 |
def resetExecutionOrder(self): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
760 |
if self.content["name"] == "FBD": |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
761 |
for element in self.content["value"].getContent(): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
762 |
if not isinstance(element["value"], (PLCOpenClasses.get("comment", None), PLCOpenClasses.get("connector", None), PLCOpenClasses.get("continuation", None))): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
763 |
element["value"].setExecutionOrderId(0) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
764 |
else: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
765 |
raise TypeError, "Can only generate execution order on FBD networks!" |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
766 |
setattr(cls, "resetExecutionOrder", resetExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
767 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
768 |
def compileExecutionOrder(self): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
769 |
if self.content["name"] == "FBD": |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
770 |
self.resetExecutionOrder() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
771 |
self.resetCurrentExecutionOrderId() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
772 |
for element in self.content["value"].getContent(): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
773 |
if isinstance(element["value"], PLCOpenClasses.get("outVariable", None)) and element["value"].getExecutionOrderId() == 0: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
774 |
connections = element["value"].connectionPointIn.getConnections() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
775 |
if connections and len(connections) == 1: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
776 |
self.compileElementExecutionOrder(connections[0]) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
777 |
element["value"].setExecutionOrderId(self.getNewExecutionOrderId()) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
778 |
else: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
779 |
raise TypeError, "Can only generate execution order on FBD networks!" |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
780 |
setattr(cls, "compileExecutionOrder", compileExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
781 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
782 |
def compileElementExecutionOrder(self, link): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
783 |
if self.content["name"] == "FBD": |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
784 |
localid = link.getRefLocalId() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
785 |
instance = self.getContentInstance(localid) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
786 |
if isinstance(instance, PLCOpenClasses.get("block", None)) and instance.getExecutionOrderId() == 0: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
787 |
for variable in instance.inputVariables.getVariable(): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
788 |
connections = variable.connectionPointIn.getConnections() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
789 |
if connections and len(connections) == 1: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
790 |
self.compileElementExecutionOrder(connections[0]) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
791 |
instance.setExecutionOrderId(self.getNewExecutionOrderId()) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
792 |
elif isinstance(instance, PLCOpenClasses.get("continuation", None)) and instance.getExecutionOrderId() == 0: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
793 |
name = instance.getName() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
794 |
for tmp_instance in self.getContentInstances(): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
795 |
if isinstance(tmp_instance, PLCOpenClasses.get("connector", None)) and tmp_instance.getName() == name and tmp_instance.getExecutionOrderId() == 0: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
796 |
connections = tmp_instance.connectionPointIn.getConnections() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
797 |
if connections and len(connections) == 1: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
798 |
self.compileElementExecutionOrder(connections[0]) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
799 |
else: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
800 |
raise TypeError, "Can only generate execution order on FBD networks!" |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
801 |
setattr(cls, "compileElementExecutionOrder", compileElementExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
802 |
|
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
803 |
def setElementExecutionOrder(self, instance, new_executionOrder): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
804 |
if self.content["name"] == "FBD": |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
805 |
old_executionOrder = instance.getExecutionOrderId() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
806 |
if old_executionOrder is not None and old_executionOrder != 0 and new_executionOrder != 0: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
807 |
for element in self.content["value"].getContent(): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
808 |
if element["value"] != instance and not isinstance(element["value"], PLCOpenClasses.get("comment", None)): |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
809 |
element_executionOrder = element["value"].getExecutionOrderId() |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
810 |
if old_executionOrder <= element_executionOrder <= new_executionOrder: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
811 |
element["value"].setExecutionOrderId(element_executionOrder - 1) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
812 |
if new_executionOrder <= element_executionOrder <= old_executionOrder: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
813 |
element["value"].setExecutionOrderId(element_executionOrder + 1) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
814 |
instance.setExecutionOrderId(new_executionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
815 |
else: |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
816 |
raise TypeError, "Can only generate execution order on FBD networks!" |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
817 |
setattr(cls, "setElementExecutionOrder", setElementExecutionOrder) |
0c53d6a36013
Add support for defining execution order in FBD networks (related ST code not generated yet)
lbessard
parents:
108
diff
changeset
|
818 |
|
2 | 819 |
def appendContentInstance(self, name, instance): |
820 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
821 |
self.content["value"].appendContent(name, instance) |
|
822 |
else: |
|
823 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
824 |
setattr(cls, "appendContentInstance", appendContentInstance) |
|
825 |
||
826 |
def getContentInstances(self): |
|
827 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
828 |
instances = [] |
|
829 |
for element in self.content["value"].getContent(): |
|
830 |
instances.append(element["value"]) |
|
831 |
return instances |
|
832 |
else: |
|
833 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
834 |
setattr(cls, "getContentInstances", getContentInstances) |
|
835 |
||
836 |
def getContentInstance(self, id): |
|
837 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
838 |
for element in self.content["value"].getContent(): |
|
839 |
if element["value"].getLocalId() == id: |
|
840 |
return element["value"] |
|
0 | 841 |
return None |
2 | 842 |
else: |
843 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
844 |
setattr(cls, "getContentInstance", getContentInstance) |
|
845 |
||
846 |
def getContentRandomInstance(self, exclude): |
|
847 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
848 |
for element in self.content["value"].getContent(): |
|
849 |
if element["value"].getLocalId() not in exclude: |
|
850 |
return element["value"] |
|
851 |
return None |
|
852 |
else: |
|
853 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
854 |
setattr(cls, "getContentRandomInstance", getContentRandomInstance) |
|
855 |
||
856 |
def getContentInstanceByName(self, name): |
|
857 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
858 |
for element in self.content["value"].getContent(): |
|
859 |
if element["value"].getLocalId() == name: |
|
860 |
return element["value"] |
|
861 |
else: |
|
862 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
863 |
setattr(cls, "getContentInstanceByName", getContentInstanceByName) |
|
864 |
||
865 |
def removeContentInstance(self, id): |
|
866 |
if self.content["name"] in ["LD","FBD","SFC"]: |
|
867 |
i = 0 |
|
868 |
removed = False |
|
869 |
elements = self.content["value"].getContent() |
|
870 |
while i < len(elements) and not removed: |
|
871 |
if elements[i]["value"].getLocalId() == id: |
|
872 |
self.content["value"].removeContent(i) |
|
873 |
removed = True |
|
874 |
i += 1 |
|
875 |
if not removed: |
|
876 |
raise ValueError, "Instance with id %d doesn't exists!"%id |
|
877 |
else: |
|
878 |
raise TypeError, "%s body don't have instances!"%self.content["name"] |
|
879 |
setattr(cls, "removeContentInstance", removeContentInstance) |
|
880 |
||
881 |
def setText(self, text): |
|
882 |
if self.content["name"] in ["IL","ST"]: |
|
883 |
self.content["value"].setText(text) |
|
884 |
else: |
|
885 |
raise TypeError, "%s body don't have text!"%self.content["name"] |
|
886 |
setattr(cls, "setText", setText) |
|
887 |
||
888 |
def getText(self): |
|
889 |
if self.content["name"] in ["IL","ST"]: |
|
890 |
return self.content["value"].getText() |
|
891 |
else: |
|
892 |
raise TypeError, "%s body don't have text!"%self.content["name"] |
|
893 |
setattr(cls, "getText", getText) |
|
58 | 894 |
|
895 |
def updateElementName(self, old_name, new_name): |
|
896 |
if self.content["name"] in ["IL", "ST"]: |
|
897 |
self.content["value"].updateElementName(old_name, new_name) |
|
898 |
else: |
|
899 |
for element in self.content["value"].getContent(): |
|
900 |
element["value"].updateElementName(old_name, new_name) |
|
901 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 902 |
|
903 |
def getX(self): |
|
904 |
return self.position.getX() |
|
905 |
||
906 |
def getY(self): |
|
907 |
return self.position.getY() |
|
908 |
||
909 |
def setX(self, x): |
|
910 |
self.position.setX(x) |
|
911 |
||
912 |
def setY(self, y): |
|
913 |
self.position.setY(y) |
|
914 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
915 |
cls = PLCOpenClasses.get("comment", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
916 |
if cls: |
2 | 917 |
setattr(cls, "getX", getX) |
918 |
setattr(cls, "getY", getY) |
|
919 |
setattr(cls, "setX", setX) |
|
920 |
setattr(cls, "setY", setY) |
|
921 |
||
922 |
def setContentText(self, text): |
|
923 |
self.content.setText(text) |
|
924 |
setattr(cls, "setContentText", setContentText) |
|
0 | 925 |
|
2 | 926 |
def getContentText(self): |
927 |
return self.content.getText() |
|
928 |
setattr(cls, "getContentText", getContentText) |
|
58 | 929 |
|
930 |
def updateElementName(self, old_name, new_name): |
|
931 |
self.content.updateElementName(old_name, new_name) |
|
932 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 933 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
934 |
cls = PLCOpenClasses.get("block", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
935 |
if cls: |
2 | 936 |
setattr(cls, "getX", getX) |
937 |
setattr(cls, "getY", getY) |
|
938 |
setattr(cls, "setX", setX) |
|
939 |
setattr(cls, "setY", setY) |
|
940 |
||
58 | 941 |
def updateElementName(self, old_name, new_name): |
942 |
if self.typeName == old_name: |
|
943 |
self.typeName = new_name |
|
944 |
setattr(cls, "updateElementName", updateElementName) |
|
945 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
946 |
cls = PLCOpenClasses.get("inputVariables_variable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
947 |
if cls: |
2 | 948 |
def setConnectorEdge(self, edge): |
949 |
if not self.edge: |
|
950 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
951 |
self.edge.setValue(edge) |
|
952 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
953 |
||
954 |
def getConnectorEdge(self): |
|
955 |
if self.edge: |
|
956 |
return self.edge.getValue() |
|
957 |
return None |
|
958 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
959 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
960 |
cls = PLCOpenClasses.get("outputVariables_variable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
961 |
if cls: |
2 | 962 |
def setConnectorEdge(self, edge): |
963 |
if not self.edge: |
|
964 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
965 |
self.edge.setValue(edge) |
|
966 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
967 |
||
968 |
def getConnectorEdge(self): |
|
969 |
if self.edge: |
|
970 |
return self.edge.getValue() |
|
971 |
return None |
|
972 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
973 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
974 |
cls = PLCOpenClasses.get("leftPowerRail", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
975 |
if cls: |
2 | 976 |
setattr(cls, "getX", getX) |
977 |
setattr(cls, "getY", getY) |
|
978 |
setattr(cls, "setX", setX) |
|
979 |
setattr(cls, "setY", setY) |
|
980 |
||
58 | 981 |
def updateElementName(self, old_name, new_name): |
982 |
pass |
|
983 |
setattr(cls, "updateElementName", updateElementName) |
|
984 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
985 |
cls = PLCOpenClasses.get("rightPowerRail", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
986 |
if cls: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
987 |
setattr(cls, "getX", getX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
988 |
setattr(cls, "getY", getY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
989 |
setattr(cls, "setX", setX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
990 |
setattr(cls, "setY", setY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
991 |
|
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
992 |
def updateElementName(self, old_name, new_name): |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
993 |
pass |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
994 |
setattr(cls, "updateElementName", updateElementName) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
995 |
|
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
996 |
cls = PLCOpenClasses.get("contact", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
997 |
if cls: |
2 | 998 |
setattr(cls, "getX", getX) |
999 |
setattr(cls, "getY", getY) |
|
1000 |
setattr(cls, "setX", setX) |
|
1001 |
setattr(cls, "setY", setY) |
|
1002 |
||
1003 |
def setContactEdge(self, edge): |
|
1004 |
if not self.edge: |
|
1005 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
1006 |
self.edge.setValue(edge) |
|
1007 |
setattr(cls, "setContactEdge", setContactEdge) |
|
1008 |
||
1009 |
def getContactEdge(self): |
|
1010 |
if self.edge: |
|
1011 |
return self.edge.getValue() |
|
1012 |
return None |
|
1013 |
setattr(cls, "getContactEdge", getContactEdge) |
|
1014 |
||
58 | 1015 |
def updateElementName(self, old_name, new_name): |
1016 |
if self.variable == old_name: |
|
1017 |
self.variable = new_name |
|
1018 |
setattr(cls, "updateElementName", updateElementName) |
|
1019 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1020 |
cls = PLCOpenClasses.get("coil", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1021 |
if cls: |
2 | 1022 |
setattr(cls, "getX", getX) |
1023 |
setattr(cls, "getY", getY) |
|
1024 |
setattr(cls, "setX", setX) |
|
1025 |
setattr(cls, "setY", setY) |
|
1026 |
||
1027 |
def setCoilStorage(self, edge): |
|
1028 |
if not self.storage: |
|
1029 |
self.storage = PLCOpenClasses["storageModifierType"]() |
|
1030 |
self.storage.setValue(edge) |
|
1031 |
setattr(cls, "setCoilStorage", setCoilStorage) |
|
1032 |
||
1033 |
def getCoilStorage(self): |
|
1034 |
if self.storage: |
|
1035 |
return self.storage.getValue() |
|
1036 |
return None |
|
1037 |
setattr(cls, "getCoilStorage", getCoilStorage) |
|
1038 |
||
58 | 1039 |
def updateElementName(self, old_name, new_name): |
1040 |
if self.variable == old_name: |
|
1041 |
self.variable = new_name |
|
1042 |
setattr(cls, "updateElementName", updateElementName) |
|
1043 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1044 |
cls = PLCOpenClasses.get("step", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1045 |
if cls: |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1046 |
setattr(cls, "getX", getX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1047 |
setattr(cls, "getY", getY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1048 |
setattr(cls, "setX", setX) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1049 |
setattr(cls, "setY", setY) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1050 |
|
58 | 1051 |
def updateElementName(self, old_name, new_name): |
1052 |
pass |
|
1053 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1054 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1055 |
cls = PLCOpenClasses.get("transition", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1056 |
if cls: |
2 | 1057 |
setattr(cls, "getX", getX) |
1058 |
setattr(cls, "getY", getY) |
|
1059 |
setattr(cls, "setX", setX) |
|
1060 |
setattr(cls, "setY", setY) |
|
1061 |
||
1062 |
def setConditionContent(self, type, value): |
|
1063 |
if not self.condition: |
|
1064 |
self.addCondition() |
|
1065 |
if type == "reference": |
|
1066 |
condition = PLCOpenClasses["condition_reference"]() |
|
1067 |
condition.setName(value) |
|
1068 |
elif type == "inline": |
|
1069 |
condition = PLCOpenClasses["condition_inline"]() |
|
1070 |
condition.setContent("ST", PLCOpenClasses["formattedText"]()) |
|
1071 |
condition.setText(value) |
|
69 | 1072 |
elif type == "connection": |
1073 |
condition = [] |
|
2 | 1074 |
self.condition.setContent(type, condition) |
1075 |
setattr(cls, "setConditionContent", setConditionContent) |
|
0 | 1076 |
|
2 | 1077 |
def getConditionContent(self): |
1078 |
if self.condition: |
|
1079 |
content = self.condition.getContent() |
|
1080 |
values = {"type" : content["name"]} |
|
1081 |
if values["type"] == "reference": |
|
1082 |
values["value"] = content["value"].getName() |
|
1083 |
elif values["type"] == "inline": |
|
1084 |
values["value"] = content["value"].getText() |
|
1085 |
return values |
|
1086 |
return "" |
|
1087 |
setattr(cls, "getConditionContent", getConditionContent) |
|
1088 |
||
58 | 1089 |
def updateElementName(self, old_name, new_name): |
1090 |
if self.condition: |
|
1091 |
content = self.condition.getContent() |
|
1092 |
if content["name"] == "reference": |
|
1093 |
if content["value"].getName() == old_name: |
|
1094 |
content["value"].setName(new_name) |
|
1095 |
elif content["name"] == "inline": |
|
1096 |
content["value"].updateElementName(old_name, new_name) |
|
1097 |
setattr(cls, "updateElementName", updateElementName) |
|
1098 |
||
63
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1099 |
def addConnection(self): |
69 | 1100 |
if self.condition: |
63
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1101 |
content = self.condition.getContent() |
69 | 1102 |
if content["name"] != "connection": |
1103 |
self.condition.setContent("connection", []) |
|
1104 |
content = self.condition.getContent() |
|
1105 |
content["value"].append(PLCOpenClasses["connection"]()) |
|
63
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1106 |
setattr(cls, "addConnection", addConnection) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1107 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1108 |
def removeConnection(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1109 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1110 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1111 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1112 |
content["value"].pop(idx) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1113 |
setattr(cls, "removeConnection", removeConnection) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1114 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1115 |
def removeConnections(self): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1116 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1117 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1118 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1119 |
content["value"] = [] |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1120 |
setattr(cls, "removeConnections", removeConnections) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1121 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1122 |
def getConnections(self): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1123 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1124 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1125 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1126 |
return content["value"] |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1127 |
setattr(cls, "getConnections", getConnections) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1128 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1129 |
def setConnectionId(self, idx, id): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1130 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1131 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1132 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1133 |
content["value"][idx].setRefLocalId(id) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1134 |
setattr(cls, "setConnectionId", setConnectionId) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1135 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1136 |
def getConnectionId(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1137 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1138 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1139 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1140 |
return content["value"][idx].getRefLocalId() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1141 |
return None |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1142 |
setattr(cls, "getConnectionId", getConnectionId) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1143 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1144 |
def setConnectionPoints(self, idx, points): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1145 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1146 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1147 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1148 |
content["value"][idx].setPoints(points) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1149 |
setattr(cls, "setConnectionPoints", setConnectionPoints) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1150 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1151 |
def getConnectionPoints(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1152 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1153 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1154 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1155 |
return content["value"][idx].getPoints() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1156 |
return None |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1157 |
setattr(cls, "getConnectionPoints", getConnectionPoints) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1158 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1159 |
def setConnectionParameter(self, idx, parameter): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1160 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1161 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1162 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1163 |
content["value"][idx].setFormalParameter(parameter) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1164 |
setattr(cls, "setConnectionParameter", setConnectionParameter) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1165 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1166 |
def getConnectionParameter(self, idx): |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1167 |
if self.condition: |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1168 |
content = self.condition.getContent() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1169 |
if content["name"] == "connection": |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1170 |
return content["value"][idx].getFormalParameter() |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1171 |
return None |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1172 |
setattr(cls, "getConnectionParameter", getConnectionParameter) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1173 |
|
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1174 |
setattr(cls, "addConnection", addConnection) |
04a02b4b2a57
Adding support for connecting transition to LD rung and FBD network
lbessard
parents:
58
diff
changeset
|
1175 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1176 |
cls = PLCOpenClasses.get("selectionDivergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1177 |
if cls: |
2 | 1178 |
setattr(cls, "getX", getX) |
1179 |
setattr(cls, "getY", getY) |
|
1180 |
setattr(cls, "setX", setX) |
|
1181 |
setattr(cls, "setY", setY) |
|
1182 |
||
58 | 1183 |
def updateElementName(self, old_name, new_name): |
1184 |
pass |
|
1185 |
setattr(cls, "updateElementName", updateElementName) |
|
1186 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1187 |
cls = PLCOpenClasses.get("selectionConvergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1188 |
if cls: |
2 | 1189 |
setattr(cls, "getX", getX) |
1190 |
setattr(cls, "getY", getY) |
|
1191 |
setattr(cls, "setX", setX) |
|
1192 |
setattr(cls, "setY", setY) |
|
1193 |
||
58 | 1194 |
def updateElementName(self, old_name, new_name): |
1195 |
pass |
|
1196 |
setattr(cls, "updateElementName", updateElementName) |
|
1197 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1198 |
cls = PLCOpenClasses.get("simultaneousDivergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1199 |
if cls: |
2 | 1200 |
setattr(cls, "getX", getX) |
1201 |
setattr(cls, "getY", getY) |
|
1202 |
setattr(cls, "setX", setX) |
|
1203 |
setattr(cls, "setY", setY) |
|
1204 |
||
58 | 1205 |
def updateElementName(self, old_name, new_name): |
1206 |
pass |
|
1207 |
setattr(cls, "updateElementName", updateElementName) |
|
1208 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1209 |
cls = PLCOpenClasses.get("simultaneousConvergence", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1210 |
if cls: |
2 | 1211 |
setattr(cls, "getX", getX) |
1212 |
setattr(cls, "getY", getY) |
|
1213 |
setattr(cls, "setX", setX) |
|
1214 |
setattr(cls, "setY", setY) |
|
58 | 1215 |
|
1216 |
def updateElementName(self, old_name, new_name): |
|
1217 |
pass |
|
1218 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1219 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1220 |
cls = PLCOpenClasses.get("jumpStep", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1221 |
if cls: |
2 | 1222 |
setattr(cls, "getX", getX) |
1223 |
setattr(cls, "getY", getY) |
|
1224 |
setattr(cls, "setX", setX) |
|
1225 |
setattr(cls, "setY", setY) |
|
58 | 1226 |
|
1227 |
def updateElementName(self, old_name, new_name): |
|
1228 |
pass |
|
1229 |
setattr(cls, "updateElementName", updateElementName) |
|
1230 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1231 |
cls = PLCOpenClasses.get("actionBlock_action", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1232 |
if cls: |
2 | 1233 |
def setQualifierValue(self, value): |
1234 |
if self.qualifier: |
|
1235 |
self.qualifier.setValue(value) |
|
1236 |
setattr(cls, "setQualifierValue", setQualifierValue) |
|
1237 |
||
1238 |
def getQualifierValue(self): |
|
1239 |
if self.qualifier: |
|
1240 |
return self.qualifier.getValue() |
|
1241 |
return None |
|
1242 |
setattr(cls, "getQualifierValue", getQualifierValue) |
|
1243 |
||
1244 |
def setReferenceName(self, name): |
|
1245 |
if self.reference: |
|
1246 |
self.reference.setName(name) |
|
1247 |
setattr(cls, "setReferenceName", setReferenceName) |
|
1248 |
||
1249 |
def getReferenceName(self): |
|
1250 |
if self.reference: |
|
1251 |
return self.reference.getName() |
|
1252 |
return None |
|
1253 |
setattr(cls, "getReferenceName", getReferenceName) |
|
1254 |
||
1255 |
def setInlineContent(self, content): |
|
1256 |
if self.inline: |
|
1257 |
self.inline.setContent("ST", PLCOpenClasses["formattedText"]()) |
|
1258 |
self.inline.setText(content) |
|
1259 |
setattr(cls, "setInlineContent", setInlineContent) |
|
1260 |
||
1261 |
def getInlineContent(self): |
|
1262 |
if self.inline: |
|
1263 |
return self.inline.getText() |
|
1264 |
return None |
|
1265 |
setattr(cls, "getInlineContent", getInlineContent) |
|
1266 |
||
58 | 1267 |
def updateElementName(self, old_name, new_name): |
1268 |
if self.reference and self.reference.getName() == old_name: |
|
1269 |
self.reference.setName(new_name) |
|
1270 |
if self.inline: |
|
1271 |
self.inline.updateElementName(old_name, new_name) |
|
1272 |
setattr(cls, "updateElementName", updateElementName) |
|
1273 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1274 |
cls = PLCOpenClasses.get("actionBlock", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1275 |
if cls: |
2 | 1276 |
setattr(cls, "getX", getX) |
1277 |
setattr(cls, "getY", getY) |
|
1278 |
setattr(cls, "setX", setX) |
|
1279 |
setattr(cls, "setY", setY) |
|
1280 |
||
1281 |
def setActions(self, actions): |
|
1282 |
self.action = [] |
|
1283 |
for params in actions: |
|
1284 |
action = PLCOpenClasses["actionBlock_action"]() |
|
1285 |
action.addQualifier() |
|
1286 |
action.setQualifierValue(params["qualifier"]) |
|
1287 |
if params["type"] == "reference": |
|
1288 |
action.addReference() |
|
1289 |
action.setReferenceName(params["value"]) |
|
0 | 1290 |
else: |
2 | 1291 |
action.addInline() |
1292 |
action.setInlineContent(params["value"]) |
|
1293 |
if "duration" in params: |
|
1294 |
action.setDuration(params["duration"]) |
|
1295 |
if "indicator" in params: |
|
1296 |
action.setIndicator(params["indicator"]) |
|
1297 |
self.action.append(action) |
|
1298 |
setattr(cls, "setActions", setActions) |
|
1299 |
||
1300 |
def getActions(self): |
|
1301 |
actions = [] |
|
1302 |
for action in self.action: |
|
1303 |
params = {} |
|
1304 |
params["qualifier"] = action.getQualifierValue() |
|
108 | 1305 |
if params["qualifier"] is None: |
1306 |
params["qualifier"] = "N" |
|
2 | 1307 |
if action.getReference(): |
1308 |
params["type"] = "reference" |
|
1309 |
params["value"] = action.getReferenceName() |
|
1310 |
elif action.getInline(): |
|
1311 |
params["type"] = "inline" |
|
1312 |
params["value"] = action.getInlineContent() |
|
1313 |
duration = action.getDuration() |
|
1314 |
if duration: |
|
1315 |
params["duration"] = duration |
|
1316 |
indicator = action.getIndicator() |
|
1317 |
if indicator: |
|
1318 |
params["indicator"] = indicator |
|
1319 |
actions.append(params) |
|
1320 |
return actions |
|
1321 |
setattr(cls, "getActions", getActions) |
|
1322 |
||
58 | 1323 |
def updateElementName(self, old_name, new_name): |
1324 |
for action in self.action: |
|
1325 |
action.updateElementName(old_name, new_name) |
|
1326 |
setattr(cls, "updateElementName", updateElementName) |
|
1327 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1328 |
cls = PLCOpenClasses.get("inVariable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1329 |
if cls: |
2 | 1330 |
setattr(cls, "getX", getX) |
1331 |
setattr(cls, "getY", getY) |
|
1332 |
setattr(cls, "setX", setX) |
|
1333 |
setattr(cls, "setY", setY) |
|
1334 |
||
1335 |
def setConnectorEdge(self, edge): |
|
1336 |
if not self.edge: |
|
1337 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
1338 |
self.edge.setValue(edge) |
|
1339 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
1340 |
||
1341 |
def getConnectorEdge(self): |
|
1342 |
if self.edge: |
|
1343 |
return self.edge.getValue() |
|
1344 |
return None |
|
1345 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
58 | 1346 |
|
1347 |
def updateElementName(self, old_name, new_name): |
|
1348 |
if self.expression == old_name: |
|
1349 |
self.expression = new_name |
|
1350 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1351 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1352 |
cls = PLCOpenClasses.get("outVariable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1353 |
if cls: |
2 | 1354 |
setattr(cls, "getX", getX) |
1355 |
setattr(cls, "getY", getY) |
|
1356 |
setattr(cls, "setX", setX) |
|
1357 |
setattr(cls, "setY", setY) |
|
1358 |
||
1359 |
def setConnectorEdge(self, edge): |
|
1360 |
if not self.edge: |
|
1361 |
self.edge = PLCOpenClasses["edgeModifierType"]() |
|
1362 |
self.edge.setValue(edge) |
|
1363 |
setattr(cls, "setConnectorEdge", setConnectorEdge) |
|
1364 |
||
1365 |
def getConnectorEdge(self): |
|
1366 |
if self.edge: |
|
1367 |
return self.edge.getValue() |
|
1368 |
return None |
|
1369 |
setattr(cls, "getConnectorEdge", getConnectorEdge) |
|
1370 |
||
58 | 1371 |
def updateElementName(self, old_name, new_name): |
1372 |
if self.expression == old_name: |
|
1373 |
self.expression = new_name |
|
1374 |
setattr(cls, "updateElementName", updateElementName) |
|
1375 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1376 |
cls = PLCOpenClasses.get("inOutVariable", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1377 |
if cls: |
2 | 1378 |
setattr(cls, "getX", getX) |
1379 |
setattr(cls, "getY", getY) |
|
1380 |
setattr(cls, "setX", setX) |
|
1381 |
setattr(cls, "setY", setY) |
|
1382 |
||
1383 |
def setInputEdge(self, edge): |
|
1384 |
if not self.edgeIn: |
|
1385 |
self.edgeIn = PLCOpenClasses["edgeModifierType"]() |
|
1386 |
self.edgeIn.setValue(edge) |
|
1387 |
setattr(cls, "setInputEdge", setInputEdge) |
|
1388 |
||
1389 |
def getInputEdge(self): |
|
1390 |
if self.edgeIn: |
|
1391 |
return self.edgeIn.getValue() |
|
1392 |
return None |
|
1393 |
setattr(cls, "getInputEdge", getInputEdge) |
|
1394 |
||
1395 |
def setOutputEdge(self, edge): |
|
1396 |
if not self.edgeOut: |
|
1397 |
self.edgeOut = PLCOpenClasses["edgeModifierType"]() |
|
1398 |
self.edgeOut.setValue(edge) |
|
1399 |
setattr(cls, "setInputEdge", setInputEdge) |
|
1400 |
||
1401 |
def getOutputEdge(self): |
|
1402 |
if self.edgeOut: |
|
1403 |
return self.edgeOut.getValue() |
|
1404 |
return None |
|
1405 |
setattr(cls, "getOutputEdge", getOutputEdge) |
|
1406 |
||
58 | 1407 |
def updateElementName(self, old_name, new_name): |
1408 |
if self.expression == old_name: |
|
1409 |
self.expression = new_name |
|
1410 |
setattr(cls, "updateElementName", updateElementName) |
|
1411 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1412 |
cls = PLCOpenClasses.get("continuation", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1413 |
if cls: |
2 | 1414 |
setattr(cls, "getX", getX) |
1415 |
setattr(cls, "getY", getY) |
|
1416 |
setattr(cls, "setX", setX) |
|
1417 |
setattr(cls, "setY", setY) |
|
58 | 1418 |
|
1419 |
def updateElementName(self, old_name, new_name): |
|
1420 |
pass |
|
1421 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1422 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1423 |
cls = PLCOpenClasses.get("connector", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1424 |
if cls: |
2 | 1425 |
setattr(cls, "getX", getX) |
1426 |
setattr(cls, "getY", getY) |
|
1427 |
setattr(cls, "setX", setX) |
|
1428 |
setattr(cls, "setY", setY) |
|
58 | 1429 |
|
1430 |
def updateElementName(self, old_name, new_name): |
|
1431 |
pass |
|
1432 |
setattr(cls, "updateElementName", updateElementName) |
|
2 | 1433 |
|
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1434 |
cls = PLCOpenClasses.get("connection", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1435 |
if cls: |
2 | 1436 |
def setPoints(self, points): |
1437 |
self.position = [] |
|
1438 |
for point in points: |
|
1439 |
position = PLCOpenClasses["position"]() |
|
1440 |
position.setX(point.x) |
|
1441 |
position.setY(point.y) |
|
1442 |
self.position.append(position) |
|
1443 |
setattr(cls, "setPoints", setPoints) |
|
1444 |
||
1445 |
def getPoints(self): |
|
1446 |
points = [] |
|
1447 |
for position in self.position: |
|
1448 |
points.append((position.getX(),position.getY())) |
|
1449 |
return points |
|
1450 |
setattr(cls, "getPoints", getPoints) |
|
1451 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1452 |
cls = PLCOpenClasses.get("connectionPointIn", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1453 |
if cls: |
2 | 1454 |
def setRelPosition(self, x, y): |
1455 |
self.relPosition = PLCOpenClasses["position"]() |
|
1456 |
self.relPosition.setX(x) |
|
1457 |
self.relPosition.setY(y) |
|
1458 |
setattr(cls, "setRelPosition", setRelPosition) |
|
1459 |
||
1460 |
def getRelPosition(self): |
|
1461 |
if self.relPosition: |
|
1462 |
return self.relPosition.getX(), self.relPosition.getY() |
|
1463 |
else: |
|
0 | 1464 |
return self.relPosition |
2 | 1465 |
setattr(cls, "getRelPosition", getRelPosition) |
1466 |
||
1467 |
def addConnection(self): |
|
1468 |
if not self.content: |
|
1469 |
self.content = {"name":"connection","value":[PLCOpenClasses["connection"]()]} |
|
1470 |
else: |
|
1471 |
self.content["value"].append(PLCOpenClasses["connection"]()) |
|
1472 |
setattr(cls, "addConnection", addConnection) |
|
1473 |
||
1474 |
def removeConnection(self, idx): |
|
1475 |
if self.content: |
|
1476 |
self.content["value"].pop(idx) |
|
1477 |
if len(self.content["value"]) == 0: |
|
1478 |
self.content = None |
|
1479 |
setattr(cls, "removeConnection", removeConnection) |
|
1480 |
||
1481 |
def removeConnections(self): |
|
1482 |
if self.content: |
|
1483 |
self.content = None |
|
1484 |
setattr(cls, "removeConnections", removeConnections) |
|
1485 |
||
1486 |
def getConnections(self): |
|
1487 |
if self.content: |
|
1488 |
return self.content["value"] |
|
1489 |
setattr(cls, "getConnections", getConnections) |
|
1490 |
||
1491 |
def setConnectionId(self, idx, id): |
|
1492 |
if self.content: |
|
1493 |
self.content["value"][idx].setRefLocalId(id) |
|
1494 |
setattr(cls, "setConnectionId", setConnectionId) |
|
1495 |
||
1496 |
def getConnectionId(self, idx): |
|
1497 |
if self.content: |
|
1498 |
return self.content["value"][idx].getRefLocalId() |
|
1499 |
return None |
|
1500 |
setattr(cls, "getConnectionId", getConnectionId) |
|
1501 |
||
1502 |
def setConnectionPoints(self, idx, points): |
|
1503 |
if self.content: |
|
1504 |
self.content["value"][idx].setPoints(points) |
|
1505 |
setattr(cls, "setConnectionPoints", setConnectionPoints) |
|
1506 |
||
1507 |
def getConnectionPoints(self, idx): |
|
1508 |
if self.content: |
|
1509 |
return self.content["value"][idx].getPoints() |
|
1510 |
return None |
|
1511 |
setattr(cls, "getConnectionPoints", getConnectionPoints) |
|
1512 |
||
27 | 1513 |
def setConnectionParameter(self, idx, parameter): |
1514 |
if self.content: |
|
1515 |
self.content["value"][idx].setFormalParameter(parameter) |
|
1516 |
setattr(cls, "setConnectionParameter", setConnectionParameter) |
|
1517 |
||
1518 |
def getConnectionParameter(self, idx): |
|
1519 |
if self.content: |
|
1520 |
return self.content["value"][idx].getFormalParameter() |
|
1521 |
return None |
|
1522 |
setattr(cls, "getConnectionParameter", getConnectionParameter) |
|
1523 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1524 |
cls = PLCOpenClasses.get("connectionPointOut", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1525 |
if cls: |
2 | 1526 |
def setRelPosition(self, x, y): |
1527 |
self.relPosition = PLCOpenClasses["position"]() |
|
1528 |
self.relPosition.setX(x) |
|
1529 |
self.relPosition.setY(y) |
|
1530 |
setattr(cls, "setRelPosition", setRelPosition) |
|
1531 |
||
1532 |
def getRelPosition(self): |
|
1533 |
if self.relPosition: |
|
1534 |
return self.relPosition.getX(), self.relPosition.getY() |
|
1535 |
return self.relPosition |
|
1536 |
setattr(cls, "getRelPosition", getRelPosition) |
|
1537 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1538 |
cls = PLCOpenClasses.get("value", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1539 |
if cls: |
2 | 1540 |
def setValue(self, value): |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1541 |
if value.startswith("[") and value.endswith("]"): |
2 | 1542 |
arrayValue = PLCOpenClasses["value_arrayValue"]() |
1543 |
self.content = {"name":"arrayValue","value":arrayValue} |
|
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1544 |
elif value.startswith("(") and value.endswith(")"): |
2 | 1545 |
structValue = PLCOpenClasses["value_structValue"]() |
1546 |
self.content = {"name":"structValue","value":structValue} |
|
1547 |
else: |
|
1548 |
simpleValue = PLCOpenClasses["value_simpleValue"]() |
|
1549 |
self.content = {"name":"simpleValue","value":simpleValue} |
|
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1550 |
self.content["value"].setValue(value) |
2 | 1551 |
setattr(cls, "setValue", setValue) |
1552 |
||
1553 |
def getValue(self): |
|
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1554 |
return self.content["value"].getValue() |
2 | 1555 |
setattr(cls, "getValue", getValue) |
1556 |
||
147 | 1557 |
def extractValues(values): |
145 | 1558 |
items = values.split(",") |
1559 |
i = 1 |
|
1560 |
while i < len(items): |
|
1561 |
opened = items[i - 1].count("(") + items[i - 1].count("[") |
|
1562 |
closed = items[i - 1].count(")") + items[i - 1].count("]") |
|
1563 |
if opened > closed: |
|
1564 |
items[i - 1] = ','.join([items[i - 1], items.pop(i)]) |
|
1565 |
elif opened == closed: |
|
1566 |
i += 1 |
|
1567 |
else: |
|
1568 |
raise ValueError, "\"%s\" is an invalid value!"%value |
|
1569 |
return items |
|
1570 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1571 |
cls = PLCOpenClasses.get("value_arrayValue", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1572 |
if cls: |
145 | 1573 |
arrayValue_model = re.compile("([0-9]*)\((.*)\)$") |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1574 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1575 |
def setValue(self, value): |
2 | 1576 |
self.value = [] |
145 | 1577 |
for item in extractValues(value[1:-1]): |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1578 |
item = item.strip() |
2 | 1579 |
element = PLCOpenClasses["arrayValue_value"]() |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1580 |
result = arrayValue_model.match(item) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1581 |
if result is not None: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1582 |
groups = result.groups() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1583 |
element.setRepetitionValue(int(groups[0])) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1584 |
element.setValue(groups[1].strip()) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1585 |
else: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1586 |
element.setValue(item) |
2 | 1587 |
self.value.append(element) |
1588 |
setattr(cls, "setValue", setValue) |
|
1589 |
||
1590 |
def getValue(self): |
|
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1591 |
values = [] |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1592 |
for element in self.value: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1593 |
repetition = element.getRepetitionValue() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1594 |
if repetition is not None and repetition > 1: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1595 |
values.append("%d(%s)"%(repetition, element.getValue())) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1596 |
else: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1597 |
values.append(element.getValue()) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1598 |
return "[%s]"%", ".join(values) |
2 | 1599 |
setattr(cls, "getValue", getValue) |
1600 |
||
67
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1601 |
cls = PLCOpenClasses.get("value_structValue", None) |
3a1b0afdaf84
Adding support for automatically generate function blocks in interface when a block is added
lbessard
parents:
63
diff
changeset
|
1602 |
if cls: |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1603 |
structValue_model = re.compile("(.*):=(.*)") |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1604 |
|
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1605 |
def setValue(self, value): |
2 | 1606 |
self.value = [] |
145 | 1607 |
for item in extractValues(value[1:-1]): |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1608 |
result = arrayValue_model.match(item) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1609 |
if result is not None: |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1610 |
groups = result.groups() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1611 |
element = PLCOpenClasses["structValue_value"]() |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1612 |
element.setMember(groups[0].strip()) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1613 |
element.setValue(groups[1].strip()) |
2 | 1614 |
self.value.append(element) |
1615 |
setattr(cls, "setValue", setValue) |
|
1616 |
||
1617 |
def getValue(self): |
|
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1618 |
values = [] |
2 | 1619 |
for element in self.value: |
125
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1620 |
values.append("%s := %s"%(element.getMember(), element.getValue())) |
394d9f168258
Adding support for execution order in PLCGenerator
lbessard
parents:
118
diff
changeset
|
1621 |
return "(%s)"%", ".join(values) |
2 | 1622 |
setattr(cls, "getValue", getValue) |