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