author | Edouard TISSERANT <edouard.tisserant@gmail.com> |
Sun, 29 Nov 2009 18:57:49 +0100 | |
changeset 441 | 379c66468cf6 |
parent 440 | f122eb4248b6 |
child 443 | 34c9788bd933 |
child 446 | 1edde533db19 |
permissions | -rw-r--r-- |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
1 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
2 |
Base definitions for beremiz plugins |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
3 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
4 |
|
178
2390b409eb93
Added PLC tick alignement on external synchronization source feature.
etisserant
parents:
176
diff
changeset
|
5 |
import os,sys,traceback |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
6 |
import time |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
7 |
import plugins |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
8 |
import types |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
9 |
import shutil |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
10 |
from xml.dom import minidom |
22 | 11 |
import wx |
20 | 12 |
|
13 |
#Quick hack to be able to find Beremiz IEC tools. Should be config params. |
|
14 |
base_folder = os.path.split(sys.path[0])[0] |
|
126 | 15 |
|
16 |
from docpdf import * |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
17 |
from xmlclass import GenerateClassesFromXSDstring |
110
a05e8b30c024
Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents:
109
diff
changeset
|
18 |
from wxPopen import ProcessLogger |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
19 |
|
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
20 |
from PLCControler import PLCControler, LOCATION_PLUGIN, LOCATION_MODULE, LOCATION_GROUP, LOCATION_VAR_INPUT, LOCATION_VAR_OUTPUT, LOCATION_VAR_MEMORY |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
21 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
22 |
_BaseParamsClass = GenerateClassesFromXSDstring("""<?xml version="1.0" encoding="ISO-8859-1" ?> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
23 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
24 |
<xsd:element name="BaseParams"> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
25 |
<xsd:complexType> |
86 | 26 |
<xsd:attribute name="Name" type="xsd:string" use="optional" default="__unnamed__"/> |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
27 |
<xsd:attribute name="IEC_Channel" type="xsd:integer" use="required"/> |
86 | 28 |
<xsd:attribute name="Enabled" type="xsd:boolean" use="optional" default="true"/> |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
29 |
</xsd:complexType> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
30 |
</xsd:element> |
86 | 31 |
</xsd:schema>""")["BaseParams"] |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
32 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
33 |
NameTypeSeparator = '@' |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
34 |
|
65 | 35 |
class MiniTextControler: |
36 |
||
37 |
def __init__(self, filepath): |
|
38 |
self.FilePath = filepath |
|
39 |
||
74 | 40 |
def SetEditedElementText(self, tagname, text): |
65 | 41 |
file = open(self.FilePath, "w") |
42 |
file.write(text) |
|
43 |
file.close() |
|
44 |
||
273 | 45 |
def GetEditedElementText(self, tagname, debug = False): |
65 | 46 |
if os.path.isfile(self.FilePath): |
47 |
file = open(self.FilePath, "r") |
|
48 |
text = file.read() |
|
49 |
file.close() |
|
50 |
return text |
|
51 |
return "" |
|
52 |
||
273 | 53 |
def GetEditedElementInterfaceVars(self, tagname, debug = False): |
74 | 54 |
return [] |
55 |
||
273 | 56 |
def GetEditedElementType(self, tagname, debug = False): |
74 | 57 |
return "program" |
58 |
||
273 | 59 |
def GetBlockTypes(self, tagname = "", debug = False): |
74 | 60 |
return [] |
61 |
||
273 | 62 |
def GetEnumeratedDataValues(self, debug = False): |
74 | 63 |
return [] |
64 |
||
65 | 65 |
def StartBuffering(self): |
66 |
pass |
|
67 |
||
68 |
def EndBuffering(self): |
|
69 |
pass |
|
70 |
||
71 |
def BufferProject(self): |
|
72 |
pass |
|
73 |
||
203 | 74 |
# helper func to get path to images |
75 |
def opjimg(imgname): |
|
76 |
return os.path.join("images",imgname) |
|
427 | 77 |
|
78 |
# helper func to check path write permission |
|
79 |
def CheckPathPerm(path): |
|
80 |
if path is None or not os.path.isdir(path): |
|
81 |
return False |
|
82 |
for root, dirs, files in os.walk(path): |
|
83 |
for name in files: |
|
84 |
if os.access(root, os.W_OK) is not True or os.access(os.path.join(root, name), os.W_OK) is not True: |
|
85 |
return False |
|
86 |
return True |
|
87 |
||
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
88 |
class PlugTemplate: |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
89 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
90 |
This class is the one that define plugins. |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
91 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
92 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
93 |
XSD = None |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
94 |
PlugChildsTypes = [] |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
95 |
PlugMaxCount = None |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
96 |
PluginMethods = [] |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
97 |
LibraryControler = None |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
98 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
99 |
def _AddParamsMembers(self): |
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
100 |
self.PlugParams = None |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
101 |
if self.XSD: |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
102 |
self.Classes = GenerateClassesFromXSDstring(self.XSD) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
103 |
Classes = [(name, XSDclass) for name, XSDclass in self.Classes.items() if XSDclass.IsBaseClass] |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
104 |
if len(Classes) == 1: |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
105 |
name, XSDclass = Classes[0] |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
106 |
obj = XSDclass() |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
107 |
self.PlugParams = (name, obj) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
108 |
setattr(self, name, obj) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
109 |
|
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
110 |
def __init__(self): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
111 |
# Create BaseParam |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
112 |
self.BaseParams = _BaseParamsClass() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
113 |
self.MandatoryParams = ("BaseParams", self.BaseParams) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
114 |
self._AddParamsMembers() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
115 |
self.PluggedChilds = {} |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
116 |
# copy PluginMethods so that it can be later customized |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
117 |
self.PluginMethods = [dic.copy() for dic in self.PluginMethods] |
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
118 |
self.LoadSTLibrary() |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
119 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
120 |
def PluginBaseXmlFilePath(self, PlugName=None): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
121 |
return os.path.join(self.PlugPath(PlugName), "baseplugin.xml") |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
122 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
123 |
def PluginXmlFilePath(self, PlugName=None): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
124 |
return os.path.join(self.PlugPath(PlugName), "plugin.xml") |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
125 |
|
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
126 |
def PluginLibraryFilePath(self): |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
127 |
return os.path.join(self.PluginPath(), "pous.xml") |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
128 |
|
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
129 |
def PluginPath(self): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
130 |
return os.path.join(self.PlugParent.PluginPath(), self.PlugType) |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
131 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
132 |
def PlugPath(self,PlugName=None): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
133 |
if not PlugName: |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
134 |
PlugName = self.BaseParams.getName() |
203 | 135 |
return os.path.join(self.PlugParent.PlugPath(), |
136 |
PlugName + NameTypeSeparator + self.PlugType) |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
137 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
138 |
def PlugTestModified(self): |
118 | 139 |
return self.ChangesToSave |
140 |
||
141 |
def ProjectTestModified(self): |
|
142 |
""" |
|
143 |
recursively check modified status |
|
144 |
""" |
|
145 |
if self.PlugTestModified(): |
|
146 |
return True |
|
147 |
||
148 |
for PlugChild in self.IterChilds(): |
|
149 |
if PlugChild.ProjectTestModified(): |
|
150 |
return True |
|
151 |
||
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
152 |
return False |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
153 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
154 |
def OnPlugSave(self): |
20 | 155 |
#Default, do nothing and return success |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
156 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
157 |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
158 |
def GetParamsAttributes(self, path = None): |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
159 |
if path: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
160 |
parts = path.split(".", 1) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
161 |
if self.MandatoryParams and parts[0] == self.MandatoryParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
162 |
return self.MandatoryParams[1].getElementInfos(parts[0], parts[1]) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
163 |
elif self.PlugParams and parts[0] == self.PlugParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
164 |
return self.PlugParams[1].getElementInfos(parts[0], parts[1]) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
165 |
else: |
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
166 |
params = [] |
82
d7b4dd1f543f
Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents:
81
diff
changeset
|
167 |
if wx.VERSION < (2, 8, 0) and self.MandatoryParams: |
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
168 |
params.append(self.MandatoryParams[1].getElementInfos(self.MandatoryParams[0])) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
169 |
if self.PlugParams: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
170 |
params.append(self.PlugParams[1].getElementInfos(self.PlugParams[0])) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
171 |
return params |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
172 |
|
203 | 173 |
def SetParamsAttribute(self, path, value): |
118 | 174 |
self.ChangesToSave = True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
175 |
# Filter IEC_Channel and Name, that have specific behavior |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
176 |
if path == "BaseParams.IEC_Channel": |
203 | 177 |
return self.FindNewIEC_Channel(value), True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
178 |
elif path == "BaseParams.Name": |
203 | 179 |
res = self.FindNewName(value) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
180 |
self.PlugRequestSave() |
118 | 181 |
return res, True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
182 |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
183 |
parts = path.split(".", 1) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
184 |
if self.MandatoryParams and parts[0] == self.MandatoryParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
185 |
self.MandatoryParams[1].setElementValue(parts[1], value) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
186 |
elif self.PlugParams and parts[0] == self.PlugParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
187 |
self.PlugParams[1].setElementValue(parts[1], value) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
188 |
return value, False |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
189 |
|
395 | 190 |
def PlugMakeDir(self): |
191 |
os.mkdir(self.PlugPath()) |
|
192 |
||
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
193 |
def PlugRequestSave(self): |
427 | 194 |
if self.GetPlugRoot().CheckProjectPathPerm(False): |
195 |
# If plugin do not have corresponding directory |
|
196 |
plugpath = self.PlugPath() |
|
197 |
if not os.path.isdir(plugpath): |
|
198 |
# Create it |
|
199 |
os.mkdir(plugpath) |
|
200 |
||
201 |
# generate XML for base XML parameters controller of the plugin |
|
202 |
if self.MandatoryParams: |
|
203 |
BaseXMLFile = open(self.PluginBaseXmlFilePath(),'w') |
|
204 |
BaseXMLFile.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n") |
|
430 | 205 |
BaseXMLFile.write(self.MandatoryParams[1].generateXMLText(self.MandatoryParams[0], 0).encode("utf-8")) |
427 | 206 |
BaseXMLFile.close() |
207 |
||
208 |
# generate XML for XML parameters controller of the plugin |
|
209 |
if self.PlugParams: |
|
210 |
XMLFile = open(self.PluginXmlFilePath(),'w') |
|
211 |
XMLFile.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n") |
|
430 | 212 |
XMLFile.write(self.PlugParams[1].generateXMLText(self.PlugParams[0], 0).encode("utf-8")) |
427 | 213 |
XMLFile.close() |
214 |
||
215 |
# Call the plugin specific OnPlugSave method |
|
216 |
result = self.OnPlugSave() |
|
217 |
if not result: |
|
218 |
return _("Error while saving \"%s\"\n")%self.PlugPath() |
|
219 |
||
220 |
# mark plugin as saved |
|
221 |
self.ChangesToSave = False |
|
222 |
# go through all childs and do the same |
|
223 |
for PlugChild in self.IterChilds(): |
|
224 |
result = PlugChild.PlugRequestSave() |
|
225 |
if result: |
|
226 |
return result |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
227 |
return None |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
228 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
229 |
def PlugImport(self, src_PlugPath): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
230 |
shutil.copytree(src_PlugPath, self.PlugPath) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
231 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
232 |
|
203 | 233 |
def PlugGenerate_C(self, buildpath, locations): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
234 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
235 |
Generate C code |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
236 |
@param locations: List of complete variables locations \ |
22 | 237 |
[{"IEC_TYPE" : the IEC type (i.e. "INT", "STRING", ...) |
238 |
"NAME" : name of the variable (generally "__IW0_1_2" style) |
|
239 |
"DIR" : direction "Q","I" or "M" |
|
240 |
"SIZE" : size "X", "B", "W", "D", "L" |
|
241 |
"LOC" : tuple of interger for IEC location (0,1,2,...) |
|
242 |
}, ...] |
|
18 | 243 |
@return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND |
244 |
""" |
|
421 | 245 |
self.GetPlugRoot().logger.write_warning(".".join(map(lambda x:str(x), self.GetCurrentLocation())) + " -> Nothing to do\n") |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
246 |
return [],"",False |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
247 |
|
203 | 248 |
def _Generate_C(self, buildpath, locations): |
249 |
# Generate plugins [(Cfiles, CFLAGS)], LDFLAGS, DoCalls, extra_files |
|
250 |
# extra_files = [(fname,fobject), ...] |
|
251 |
gen_result = self.PlugGenerate_C(buildpath, locations) |
|
252 |
PlugCFilesAndCFLAGS, PlugLDFLAGS, DoCalls = gen_result[:3] |
|
253 |
extra_files = gen_result[3:] |
|
361 | 254 |
# if some files have been generated put them in the list with their location |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
255 |
if PlugCFilesAndCFLAGS: |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
256 |
LocationCFilesAndCFLAGS = [(self.GetCurrentLocation(), PlugCFilesAndCFLAGS, DoCalls)] |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
257 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
258 |
LocationCFilesAndCFLAGS = [] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
259 |
|
115 | 260 |
# plugin asks for some LDFLAGS |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
261 |
if PlugLDFLAGS: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
262 |
# LDFLAGS can be either string |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
263 |
if type(PlugLDFLAGS)==type(str()): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
264 |
LDFLAGS=[PlugLDFLAGS] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
265 |
#or list of strings |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
266 |
elif type(PlugLDFLAGS)==type(list()): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
267 |
LDFLAGS=PlugLDFLAGS[:] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
268 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
269 |
LDFLAGS=[] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
270 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
271 |
# recurse through all childs, and stack their results |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
272 |
for PlugChild in self.IECSortedChilds(): |
24 | 273 |
new_location = PlugChild.GetCurrentLocation() |
274 |
# How deep are we in the tree ? |
|
275 |
depth=len(new_location) |
|
203 | 276 |
_LocationCFilesAndCFLAGS, _LDFLAGS, _extra_files = \ |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
277 |
PlugChild._Generate_C( |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
278 |
#keep the same path |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
279 |
buildpath, |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
280 |
# filter locations that start with current IEC location |
203 | 281 |
[loc for loc in locations if loc["LOC"][0:depth] == new_location ]) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
282 |
# stack the result |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
283 |
LocationCFilesAndCFLAGS += _LocationCFilesAndCFLAGS |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
284 |
LDFLAGS += _LDFLAGS |
203 | 285 |
extra_files += _extra_files |
286 |
||
287 |
return LocationCFilesAndCFLAGS, LDFLAGS, extra_files |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
288 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
289 |
def BlockTypesFactory(self): |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
290 |
if self.LibraryControler is not None: |
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
291 |
return [{"name" : "%s POUs" % self.PlugType, "list": self.LibraryControler.Project.GetCustomBlockTypes()}] |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
292 |
return [] |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
293 |
|
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
294 |
def ParentsBlockTypesFactory(self): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
295 |
return self.PlugParent.ParentsBlockTypesFactory() + self.BlockTypesFactory() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
296 |
|
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
297 |
def PluginsBlockTypesFactory(self): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
298 |
list = self.BlockTypesFactory() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
299 |
for PlugChild in self.IterChilds(): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
300 |
list += PlugChild.PluginsBlockTypesFactory() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
301 |
return list |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
302 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
303 |
def STLibraryFactory(self): |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
304 |
if self.LibraryControler is not None: |
309
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
305 |
program, errors, warnings = self.LibraryControler.GenerateProgram() |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
306 |
return program + "\n" |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
307 |
return "" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
308 |
|
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
309 |
def PluginsSTLibraryFactory(self): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
310 |
program = self.STLibraryFactory() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
311 |
for PlugChild in self.IECSortedChilds(): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
312 |
program += PlugChild.PluginsSTLibraryFactory() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
313 |
return program |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
314 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
315 |
def IterChilds(self): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
316 |
for PlugType, PluggedChilds in self.PluggedChilds.items(): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
317 |
for PlugInstance in PluggedChilds: |
250 | 318 |
yield PlugInstance |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
319 |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
320 |
def IECSortedChilds(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
321 |
# reorder childs by IEC_channels |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
322 |
ordered = [(chld.BaseParams.getIEC_Channel(),chld) for chld in self.IterChilds()] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
323 |
if ordered: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
324 |
ordered.sort() |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
325 |
return zip(*ordered)[1] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
326 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
327 |
return [] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
328 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
329 |
def _GetChildBySomething(self, something, toks): |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
330 |
for PlugInstance in self.IterChilds(): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
331 |
# if match component of the name |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
332 |
if getattr(PlugInstance.BaseParams, something) == toks[0]: |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
333 |
# if Name have other components |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
334 |
if len(toks) >= 2: |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
335 |
# Recurse in order to find the latest object |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
336 |
return PlugInstance._GetChildBySomething( something, toks[1:]) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
337 |
# No sub name -> found |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
338 |
return PlugInstance |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
339 |
# Not found |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
340 |
return None |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
341 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
342 |
def GetChildByName(self, Name): |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
343 |
if Name: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
344 |
toks = Name.split('.') |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
345 |
return self._GetChildBySomething("Name", toks) |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
346 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
347 |
return self |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
348 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
349 |
def GetChildByIECLocation(self, Location): |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
350 |
if Location: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
351 |
return self._GetChildBySomething("IEC_Channel", Location) |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
352 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
353 |
return self |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
354 |
|
23 | 355 |
def GetCurrentLocation(self): |
24 | 356 |
""" |
357 |
@return: Tupple containing plugin IEC location of current plugin : %I0.0.4.5 => (0,0,4,5) |
|
358 |
""" |
|
23 | 359 |
return self.PlugParent.GetCurrentLocation() + (self.BaseParams.getIEC_Channel(),) |
360 |
||
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
361 |
def GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
362 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
363 |
@return: String "ParentParentName.ParentName.Name" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
364 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
365 |
return self.PlugParent._GetCurrentName() + self.BaseParams.getName() |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
366 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
367 |
def _GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
368 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
369 |
@return: String "ParentParentName.ParentName.Name." |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
370 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
371 |
return self.PlugParent._GetCurrentName() + self.BaseParams.getName() + "." |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
372 |
|
23 | 373 |
def GetPlugRoot(self): |
374 |
return self.PlugParent.GetPlugRoot() |
|
375 |
||
97 | 376 |
def GetFullIEC_Channel(self): |
377 |
return ".".join([str(i) for i in self.GetCurrentLocation()]) + ".x" |
|
378 |
||
379 |
def GetLocations(self): |
|
380 |
location = self.GetCurrentLocation() |
|
381 |
return [loc for loc in self.PlugParent.GetLocations() if loc["LOC"][0:len(location)] == location] |
|
382 |
||
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
383 |
def GetVariableLocationTree(self): |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
384 |
''' |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
385 |
This function is meant to be overridden by plugins. |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
386 |
|
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
387 |
It should returns an list of dictionaries |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
388 |
|
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
389 |
- IEC_type is an IEC type like BOOL/BYTE/SINT/... |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
390 |
- location is a string of this variable's location, like "%IX0.0.0" |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
391 |
''' |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
392 |
children = [] |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
393 |
for child in self.IECSortedChilds(): |
402
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
394 |
children.append(child.GetVariableLocationTree()) |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
395 |
return {"name": self.BaseParams.getName(), |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
396 |
"type": LOCATION_PLUGIN, |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
397 |
"location": self.GetFullIEC_Channel(), |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
398 |
"children": children} |
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
399 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
400 |
def GetPlugInfos(self): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
401 |
childs = [] |
33
59b84ab7bf8b
Enhanced bahavior of plugin tree representation when changing IEC channel
etisserant
parents:
29
diff
changeset
|
402 |
# reorder childs by IEC_channels |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
403 |
for child in self.IECSortedChilds(): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
404 |
childs.append(child.GetPlugInfos()) |
82
d7b4dd1f543f
Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents:
81
diff
changeset
|
405 |
if wx.VERSION < (2, 8, 0): |
d7b4dd1f543f
Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents:
81
diff
changeset
|
406 |
return {"name" : "%d-%s"%(self.BaseParams.getIEC_Channel(),self.BaseParams.getName()), "type" : self.BaseParams.getName(), "values" : childs} |
d7b4dd1f543f
Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents:
81
diff
changeset
|
407 |
else: |
d7b4dd1f543f
Beremiz layout improved for wx2.8 by inserting all control in TreeCtrl
lbessard
parents:
81
diff
changeset
|
408 |
return {"name" : self.BaseParams.getName(), "channel" : self.BaseParams.getIEC_Channel(), "enabled" : self.BaseParams.getEnabled(), "parent" : len(self.PlugChildsTypes) > 0, "type" : self.BaseParams.getName(), "values" : childs} |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
409 |
|
203 | 410 |
def FindNewName(self, DesiredName): |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
411 |
""" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
412 |
Changes Name to DesiredName if available, Name-N if not. |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
413 |
@param DesiredName: The desired Name (string) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
414 |
""" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
415 |
# Get Current Name |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
416 |
CurrentName = self.BaseParams.getName() |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
417 |
# Do nothing if no change |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
418 |
#if CurrentName == DesiredName: return CurrentName |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
419 |
# Build a list of used Name out of parent's PluggedChilds |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
420 |
AllNames=[] |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
421 |
for PlugInstance in self.PlugParent.IterChilds(): |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
422 |
if PlugInstance != self: |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
423 |
AllNames.append(PlugInstance.BaseParams.getName()) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
424 |
|
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
425 |
# Find a free name, eventually appending digit |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
426 |
res = DesiredName |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
427 |
suffix = 1 |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
428 |
while res in AllNames: |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
429 |
res = "%s-%d"%(DesiredName, suffix) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
430 |
suffix += 1 |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
431 |
|
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
432 |
# Get old path |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
433 |
oldname = self.PlugPath() |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
434 |
# Check previous plugin existance |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
435 |
dontexist = self.BaseParams.getName() == "__unnamed__" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
436 |
# Set the new name |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
437 |
self.BaseParams.setName(res) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
438 |
# Rename plugin dir if exist |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
439 |
if not dontexist: |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
440 |
shutil.move(oldname, self.PlugPath()) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
441 |
# warn user he has two left hands |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
442 |
if DesiredName != res: |
421 | 443 |
self.GetPlugRoot().logger.write_warning(_("A child names \"%s\" already exist -> \"%s\"\n")%(DesiredName,res)) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
444 |
return res |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
445 |
|
203 | 446 |
def FindNewIEC_Channel(self, DesiredChannel): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
447 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
448 |
Changes IEC Channel number to DesiredChannel if available, nearest available if not. |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
449 |
@param DesiredChannel: The desired IEC channel (int) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
450 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
451 |
# Get Current IEC channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
452 |
CurrentChannel = self.BaseParams.getIEC_Channel() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
453 |
# Do nothing if no change |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
454 |
#if CurrentChannel == DesiredChannel: return CurrentChannel |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
455 |
# Build a list of used Channels out of parent's PluggedChilds |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
456 |
AllChannels=[] |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
457 |
for PlugInstance in self.PlugParent.IterChilds(): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
458 |
if PlugInstance != self: |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
459 |
AllChannels.append(PlugInstance.BaseParams.getIEC_Channel()) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
460 |
AllChannels.sort() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
461 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
462 |
# Now, try to guess the nearest available channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
463 |
res = DesiredChannel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
464 |
while res in AllChannels: # While channel not free |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
465 |
if res < CurrentChannel: # Want to go down ? |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
466 |
res -= 1 # Test for n-1 |
33
59b84ab7bf8b
Enhanced bahavior of plugin tree representation when changing IEC channel
etisserant
parents:
29
diff
changeset
|
467 |
if res < 0 : |
421 | 468 |
self.GetPlugRoot().logger.write_warning(_("Cannot find lower free IEC channel than %d\n")%CurrentChannel) |
33
59b84ab7bf8b
Enhanced bahavior of plugin tree representation when changing IEC channel
etisserant
parents:
29
diff
changeset
|
469 |
return CurrentChannel # Can't go bellow 0, do nothing |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
470 |
else : # Want to go up ? |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
471 |
res += 1 # Test for n-1 |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
472 |
# Finally set IEC Channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
473 |
self.BaseParams.setIEC_Channel(res) |
203 | 474 |
if DesiredChannel != res: |
421 | 475 |
self.GetPlugRoot().logger.write_warning(_("A child with IEC channel %d already exist -> %d\n")%(DesiredChannel,res)) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
476 |
return res |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
477 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
478 |
def OnPlugClose(self): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
479 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
480 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
481 |
def _doRemoveChild(self, PlugInstance): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
482 |
# Remove all childs of child |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
483 |
for SubPlugInstance in PlugInstance.IterChilds(): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
484 |
PlugInstance._doRemoveChild(SubPlugInstance) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
485 |
# Call the OnCloseMethod |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
486 |
PlugInstance.OnPlugClose() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
487 |
# Delete plugin dir |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
488 |
shutil.rmtree(PlugInstance.PlugPath()) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
489 |
# Remove child of PluggedChilds |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
490 |
self.PluggedChilds[PlugInstance.PlugType].remove(PlugInstance) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
491 |
# Forget it... (View have to refresh) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
492 |
|
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
493 |
def PlugRemove(self): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
494 |
# Fetch the plugin |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
495 |
#PlugInstance = self.GetChildByName(PlugName) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
496 |
# Ask to his parent to remove it |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
497 |
self.PlugParent._doRemoveChild(self) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
498 |
|
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
499 |
def PlugAddChild(self, PlugName, PlugType, IEC_Channel=0): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
500 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
501 |
Create the plugins that may be added as child to this node self |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
502 |
@param PlugType: string desining the plugin class name (get name from PlugChildsTypes) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
503 |
@param PlugName: string for the name of the plugin instance |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
504 |
""" |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
505 |
# reorgabize self.PlugChildsTypes tuples from (name, PlugClass, Help) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
506 |
# to ( name, (PlugClass, Help)), an make a dict |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
507 |
transpose = zip(*self.PlugChildsTypes) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
508 |
PlugChildsTypes = dict(zip(transpose[0],zip(transpose[1],transpose[2]))) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
509 |
# Check that adding this plugin is allowed |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
510 |
try: |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
511 |
PlugClass, PlugHelp = PlugChildsTypes[PlugType] |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
512 |
except KeyError: |
361 | 513 |
raise Exception, _("Cannot create child %s of type %s ")%(PlugName, PlugType) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
514 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
515 |
# if PlugClass is a class factory, call it. (prevent unneeded imports) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
516 |
if type(PlugClass) == types.FunctionType: |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
517 |
PlugClass = PlugClass() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
518 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
519 |
# Eventualy Initialize child instance list for this class of plugin |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
520 |
PluggedChildsWithSameClass = self.PluggedChilds.setdefault(PlugType, list()) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
521 |
# Check count |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
522 |
if getattr(PlugClass, "PlugMaxCount", None) and len(PluggedChildsWithSameClass) >= PlugClass.PlugMaxCount: |
361 | 523 |
raise Exception, _("Max count (%d) reached for this plugin of type %s ")%(PlugClass.PlugMaxCount, PlugType) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
524 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
525 |
# create the final class, derived of provided plugin and template |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
526 |
class FinalPlugClass(PlugClass, PlugTemplate): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
527 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
528 |
Plugin class is derivated into FinalPlugClass before being instanciated |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
529 |
This way __init__ is overloaded to ensure PlugTemplate.__init__ is called |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
530 |
before PlugClass.__init__, and to do the file related stuff. |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
531 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
532 |
def __init__(_self): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
533 |
# self is the parent |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
534 |
_self.PlugParent = self |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
535 |
# Keep track of the plugin type name |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
536 |
_self.PlugType = PlugType |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
537 |
# remind the help string, for more fancy display |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
538 |
_self.PlugHelp = PlugHelp |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
539 |
# Call the base plugin template init - change XSD into class members |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
540 |
PlugTemplate.__init__(_self) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
541 |
# check name is unique |
203 | 542 |
NewPlugName = _self.FindNewName(PlugName) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
543 |
# If dir have already be made, and file exist |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
544 |
if os.path.isdir(_self.PlugPath(NewPlugName)): #and os.path.isfile(_self.PluginXmlFilePath(PlugName)): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
545 |
#Load the plugin.xml file into parameters members |
203 | 546 |
_self.LoadXMLParams(NewPlugName) |
20 | 547 |
# Basic check. Better to fail immediately. |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
548 |
if (_self.BaseParams.getName() != NewPlugName): |
361 | 549 |
raise Exception, _("Project tree layout do not match plugin.xml %s!=%s ")%(NewPlugName, _self.BaseParams.getName()) |
20 | 550 |
|
551 |
# Now, self.PlugPath() should be OK |
|
552 |
||
15
7a473efc4530
More precise design for plugins.... to be continued...
etisserant
parents:
14
diff
changeset
|
553 |
# Check that IEC_Channel is not already in use. |
203 | 554 |
_self.FindNewIEC_Channel(_self.BaseParams.getIEC_Channel()) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
555 |
# Call the plugin real __init__ |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
556 |
if getattr(PlugClass, "__init__", None): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
557 |
PlugClass.__init__(_self) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
558 |
#Load and init all the childs |
203 | 559 |
_self.LoadChilds() |
118 | 560 |
#just loaded, nothing to saved |
561 |
_self.ChangesToSave = False |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
562 |
else: |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
563 |
# If plugin do not have corresponding file/dirs - they will be created on Save |
395 | 564 |
_self.PlugMakeDir() |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
565 |
# Find an IEC number |
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
566 |
_self.FindNewIEC_Channel(IEC_Channel) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
567 |
# Call the plugin real __init__ |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
568 |
if getattr(PlugClass, "__init__", None): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
569 |
PlugClass.__init__(_self) |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
570 |
_self.PlugRequestSave() |
118 | 571 |
#just created, must be saved |
572 |
_self.ChangesToSave = True |
|
403 | 573 |
|
77
7de69369373e
Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents:
75
diff
changeset
|
574 |
def _getBuildPath(_self): |
7de69369373e
Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents:
75
diff
changeset
|
575 |
return self._getBuildPath() |
7de69369373e
Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents:
75
diff
changeset
|
576 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
577 |
# Create the object out of the resulting class |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
578 |
newPluginOpj = FinalPlugClass() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
579 |
# Store it in PluggedChils |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
580 |
PluggedChildsWithSameClass.append(newPluginOpj) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
581 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
582 |
return newPluginOpj |
403 | 583 |
|
584 |
def ClearPluggedChilds(self): |
|
585 |
for child in self.IterChilds(): |
|
586 |
child.ClearPluggedChilds() |
|
587 |
self.PluggedChilds = {} |
|
588 |
||
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
589 |
def LoadSTLibrary(self): |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
590 |
# Get library blocks if plcopen library exist |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
591 |
library_path = self.PluginLibraryFilePath() |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
592 |
if os.path.isfile(library_path): |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
593 |
self.LibraryControler = PLCControler() |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
594 |
self.LibraryControler.OpenXMLFile(library_path) |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
595 |
self.LibraryControler.ClearPluginTypes() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
596 |
self.LibraryControler.AddPluginBlockList(self.ParentsBlockTypesFactory()) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
597 |
|
203 | 598 |
def LoadXMLParams(self, PlugName = None): |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
599 |
methode_name = os.path.join(self.PlugPath(PlugName), "methods.py") |
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
600 |
if os.path.isfile(methode_name): |
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
601 |
execfile(methode_name) |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
602 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
603 |
# Get the base xml tree |
20 | 604 |
if self.MandatoryParams: |
203 | 605 |
try: |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
606 |
basexmlfile = open(self.PluginBaseXmlFilePath(PlugName), 'r') |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
607 |
basetree = minidom.parse(basexmlfile) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
608 |
self.MandatoryParams[1].loadXMLTree(basetree.childNodes[0]) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
609 |
basexmlfile.close() |
203 | 610 |
except Exception, exc: |
421 | 611 |
self.GetPlugRoot().logger.write_error(_("Couldn't load plugin base parameters %s :\n %s") % (PlugName, str(exc))) |
612 |
self.GetPlugRoot().logger.write_error(traceback.format_exc()) |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
613 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
614 |
# Get the xml tree |
20 | 615 |
if self.PlugParams: |
203 | 616 |
try: |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
617 |
xmlfile = open(self.PluginXmlFilePath(PlugName), 'r') |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
618 |
tree = minidom.parse(xmlfile) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
619 |
self.PlugParams[1].loadXMLTree(tree.childNodes[0]) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
620 |
xmlfile.close() |
203 | 621 |
except Exception, exc: |
421 | 622 |
self.GetPlugRoot().logger.write_error(_("Couldn't load plugin parameters %s :\n %s") % (PlugName, str(exc))) |
623 |
self.GetPlugRoot().logger.write_error(traceback.format_exc()) |
|
203 | 624 |
|
625 |
def LoadChilds(self): |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
626 |
# Iterate over all PlugName@PlugType in plugin directory, and try to open them |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
627 |
for PlugDir in os.listdir(self.PlugPath()): |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
628 |
if os.path.isdir(os.path.join(self.PlugPath(), PlugDir)) and \ |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
629 |
PlugDir.count(NameTypeSeparator) == 1: |
24 | 630 |
pname, ptype = PlugDir.split(NameTypeSeparator) |
203 | 631 |
try: |
632 |
self.PlugAddChild(pname, ptype) |
|
633 |
except Exception, exc: |
|
421 | 634 |
self.GetPlugRoot().logger.write_error(_("Could not add child \"%s\", type %s :\n%s\n")%(pname, ptype, str(exc))) |
635 |
self.GetPlugRoot().logger.write_error(traceback.format_exc()) |
|
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
636 |
|
109
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
637 |
def EnableMethod(self, method, value): |
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
638 |
for d in self.PluginMethods: |
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
639 |
if d["method"]==method: |
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
640 |
d["enabled"]=value |
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
641 |
return True |
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
642 |
return False |
f27ca37b6e7a
Added enable/disable of plugin method buttons. Fixed alpha graying problem with disabled buttons. Updated debug dialog message with bug report path
etisserant
parents:
108
diff
changeset
|
643 |
|
203 | 644 |
def ShowMethod(self, method, value): |
645 |
for d in self.PluginMethods: |
|
646 |
if d["method"]==method: |
|
647 |
d["shown"]=value |
|
648 |
return True |
|
649 |
return False |
|
650 |
||
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
651 |
def _GetClassFunction(name): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
652 |
def GetRootClass(): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
653 |
return getattr(__import__("plugins." + name), name).RootClass |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
654 |
return GetRootClass |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
655 |
|
20 | 656 |
|
657 |
#################################################################################### |
|
658 |
#################################################################################### |
|
659 |
#################################################################################### |
|
660 |
################################### ROOT ###################################### |
|
661 |
#################################################################################### |
|
662 |
#################################################################################### |
|
663 |
#################################################################################### |
|
664 |
||
81 | 665 |
if wx.Platform == '__WXMSW__': |
75 | 666 |
exe_ext=".exe" |
667 |
else: |
|
668 |
exe_ext="" |
|
669 |
||
20 | 670 |
# import for project creation timestamping |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
671 |
from threading import Timer, Lock, Thread, Semaphore |
20 | 672 |
from time import localtime |
673 |
from datetime import datetime |
|
674 |
# import necessary stuff from PLCOpenEditor |
|
675 |
from PLCOpenEditor import PLCOpenEditor, ProjectDialog |
|
676 |
from TextViewer import TextViewer |
|
203 | 677 |
from plcopen.structures import IEC_KEYWORDS, TypeHierarchy_list |
678 |
||
679 |
# Construct debugger natively supported types |
|
680 |
DebugTypes = [t for t in zip(*TypeHierarchy_list)[0] if not t.startswith("ANY")] + \ |
|
681 |
["STEP","TRANSITION","ACTION"] |
|
335
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
682 |
DebugTypesSize = {"BOOL" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
683 |
"STEP" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
684 |
"TRANSITION" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
685 |
"ACTION" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
686 |
"SINT" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
687 |
"USINT" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
688 |
"BYTE" : 1, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
689 |
"STRING" : 128, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
690 |
"INT" : 2, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
691 |
"UINT" : 2, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
692 |
"WORD" : 2, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
693 |
"WSTRING" : 0, #TODO |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
694 |
"DINT" : 4, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
695 |
"UDINT" : 4, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
696 |
"DWORD" : 4, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
697 |
"LINT" : 4, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
698 |
"ULINT" : 8, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
699 |
"LWORD" : 8, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
700 |
"REAL" : 4, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
701 |
"LREAL" : 8, |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
702 |
} |
203 | 703 |
|
427 | 704 |
import re, tempfile |
203 | 705 |
import targets |
706 |
import connectors |
|
707 |
from discovery import DiscoveryDialog |
|
235 | 708 |
from weakref import WeakKeyDictionary |
20 | 709 |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
710 |
MATIEC_ERROR_MODEL = re.compile(".*\.st:(\d+)-(\d+)\.\.(\d+)-(\d+): error : (.*)$") |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
711 |
|
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
712 |
class PluginsRoot(PlugTemplate, PLCControler): |
20 | 713 |
""" |
714 |
This class define Root object of the plugin tree. |
|
715 |
It is responsible of : |
|
716 |
- Managing project directory |
|
717 |
- Building project |
|
718 |
- Handling PLCOpenEditor controler and view |
|
719 |
- Loading user plugins and instanciante them as childs |
|
720 |
- ... |
|
721 |
||
722 |
""" |
|
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
723 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
724 |
# For root object, available Childs Types are modules of the plugin packages. |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
725 |
PlugChildsTypes = [(name, _GetClassFunction(name), help) for name, help in zip(plugins.__all__,plugins.helps)] |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
726 |
|
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
727 |
XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
728 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
729 |
<xsd:element name="BeremizRoot"> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
730 |
<xsd:complexType> |
86 | 731 |
<xsd:sequence> |
732 |
<xsd:element name="TargetType"> |
|
733 |
<xsd:complexType> |
|
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
734 |
<xsd:choice minOccurs="0"> |
203 | 735 |
"""+targets.targetchoices+""" |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
736 |
</xsd:choice> |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
737 |
</xsd:complexType> |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
738 |
</xsd:element> |
86 | 739 |
</xsd:sequence> |
204
f572ab819769
remove URI_location from XSD targets and add to pluginroot XSD
greg
parents:
203
diff
changeset
|
740 |
<xsd:attribute name="URI_location" type="xsd:string" use="optional" default=""/> |
338 | 741 |
<xsd:attribute name="Enable_Plugins" type="xsd:boolean" use="optional" default="true"/> |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
742 |
</xsd:complexType> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
743 |
</xsd:element> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
744 |
</xsd:schema> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
745 |
""" |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
746 |
|
290
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
288
diff
changeset
|
747 |
def __init__(self, frame, logger): |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
748 |
PLCControler.__init__(self) |
227
48c13b84505c
- Some improovements in debug data feedback data
etisserant
parents:
222
diff
changeset
|
749 |
|
20 | 750 |
self.MandatoryParams = None |
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
751 |
self.SetAppFrame(frame, logger) |
203 | 752 |
self._builder = None |
753 |
self._connector = None |
|
395 | 754 |
self.Deleting = False |
203 | 755 |
|
418 | 756 |
self.iec2c_path = os.path.join(base_folder, "matiec", "iec2c"+exe_ext) |
757 |
self.ieclib_path = os.path.join(base_folder, "matiec", "lib") |
|
758 |
||
203 | 759 |
# Setup debug information |
227
48c13b84505c
- Some improovements in debug data feedback data
etisserant
parents:
222
diff
changeset
|
760 |
self.IECdebug_datas = {} |
48c13b84505c
- Some improovements in debug data feedback data
etisserant
parents:
222
diff
changeset
|
761 |
self.IECdebug_lock = Lock() |
222
d0f7d36bf241
Added lock to avoid variable subsciption concurrent to transmission to PLC
etisserant
parents:
217
diff
changeset
|
762 |
|
235 | 763 |
self.DebugTimer=None |
203 | 764 |
self.ResetIECProgramsAndVariables() |
765 |
||
766 |
#This method are not called here... but in NewProject and OpenProject |
|
767 |
#self._AddParamsMembers() |
|
768 |
#self.PluggedChilds = {} |
|
769 |
||
118 | 770 |
# In both new or load scenario, no need to save |
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
771 |
self.ChangesToSave = False |
23 | 772 |
# root have no parent |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
773 |
self.PlugParent = None |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
774 |
# Keep track of the plugin type name |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
775 |
self.PlugType = "Beremiz" |
20 | 776 |
# After __init__ root plugin is not valid |
777 |
self.ProjectPath = None |
|
427 | 778 |
self._setBuildPath(None) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
779 |
self.DebugThread = None |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
780 |
self.debug_break = False |
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
781 |
self.previous_plcstate = None |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
782 |
self.StatusPrint = {"Broken": self.logger.write_error, |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
783 |
None: lambda x: None} |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
784 |
# copy PluginMethods so that it can be later customized |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
785 |
self.PluginMethods = [dic.copy() for dic in self.PluginMethods] |
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
786 |
self.LoadSTLibrary() |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
787 |
|
395 | 788 |
def __del__(self): |
789 |
self.Deleting = True |
|
790 |
||
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
791 |
def SetAppFrame(self, frame, logger): |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
792 |
self.AppFrame = frame |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
793 |
self.logger = logger |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
794 |
self.StatusTimer = None |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
795 |
|
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
796 |
if frame is not None: |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
797 |
# Timer to pull PLC status |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
798 |
ID_STATUSTIMER = wx.NewId() |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
799 |
self.StatusTimer = wx.Timer(self.AppFrame, ID_STATUSTIMER) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
800 |
self.AppFrame.Bind(wx.EVT_TIMER, self.PullPLCStatusProc, self.StatusTimer) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
801 |
|
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
802 |
def ResetAppFrame(self, logger): |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
803 |
if self.AppFrame is not None: |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
804 |
self.AppFrame.Unbind(wx.EVT_TIMER, self.StatusTimer) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
805 |
self.StatusTimer = None |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
806 |
self.AppFrame = None |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
807 |
|
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
808 |
self.logger = logger |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
809 |
|
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
810 |
def PluginLibraryFilePath(self): |
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
811 |
return os.path.join(os.path.split(__file__)[0], "pous.xml") |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
812 |
|
118 | 813 |
def PlugTestModified(self): |
814 |
return self.ChangesToSave or not self.ProjectIsSaved() |
|
815 |
||
23 | 816 |
def GetPlugRoot(self): |
817 |
return self |
|
818 |
||
418 | 819 |
def GetIECLibPath(self): |
820 |
return self.ieclib_path |
|
821 |
||
822 |
def GetIEC2cPath(self): |
|
823 |
return self.iec2c_path |
|
824 |
||
23 | 825 |
def GetCurrentLocation(self): |
826 |
return () |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
827 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
828 |
def GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
829 |
return "" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
830 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
831 |
def _GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
832 |
return "" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
833 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
834 |
def GetProjectPath(self): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
835 |
return self.ProjectPath |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
836 |
|
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
837 |
def GetProjectName(self): |
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
838 |
return os.path.split(self.ProjectPath)[1] |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
839 |
|
20 | 840 |
def GetPlugInfos(self): |
841 |
childs = [] |
|
842 |
for child in self.IterChilds(): |
|
843 |
childs.append(child.GetPlugInfos()) |
|
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
844 |
return {"name" : "PLC (%s)"%self.GetProjectName(), "type" : None, "values" : childs} |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
845 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
846 |
def GetDefaultTarget(self): |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
847 |
target = self.Classes["BeremizRoot_TargetType"]() |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
848 |
if wx.Platform == '__WXMSW__': |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
849 |
target.setcontent({"name": "Win32", "value": self.Classes["TargetType_Win32"]()}) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
850 |
else: |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
851 |
target.setcontent({"name": "Linux", "value": self.Classes["TargetType_Linux"]()}) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
852 |
return target |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
853 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
854 |
def GetParamsAttributes(self, path = None): |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
855 |
params = PlugTemplate.GetParamsAttributes(self, path) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
856 |
if params[0]["name"] == "BeremizRoot": |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
857 |
for child in params[0]["children"]: |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
858 |
if child["name"] == "TargetType" and child["value"] == '': |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
859 |
child.update(self.GetDefaultTarget().getElementInfos("TargetType")) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
860 |
return params |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
861 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
862 |
def SetParamsAttribute(self, path, value): |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
863 |
if path.startswith("BeremizRoot.TargetType.") and self.BeremizRoot.getTargetType().getcontent() is None: |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
864 |
self.BeremizRoot.setTargetType(self.GetDefaultTarget()) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
865 |
return PlugTemplate.SetParamsAttribute(self, path, value) |
427 | 866 |
|
867 |
# helper func to check project path write permission |
|
868 |
def CheckProjectPathPerm(self, dosave=True): |
|
869 |
if CheckPathPerm(self.ProjectPath): |
|
870 |
return True |
|
871 |
dialog = wx.MessageDialog(self.AppFrame, |
|
428
ea09f33ce717
Update internationalization for new functionalities.
laurent
parents:
427
diff
changeset
|
872 |
_('You must have permission to work on the project\nWork on a project copy ?'), |
427 | 873 |
_('Error'), |
874 |
wx.YES_NO | wx.NO_DEFAULT | wx.ICON_QUESTION) |
|
875 |
answer = dialog.ShowModal() |
|
876 |
dialog.Destroy() |
|
877 |
if answer == wx.ID_YES: |
|
878 |
if self.SaveProjectAs(): |
|
879 |
self.AppFrame.RefreshAll() |
|
880 |
self.AppFrame.RefreshTitle() |
|
881 |
return True |
|
882 |
return False |
|
20 | 883 |
|
256 | 884 |
def NewProject(self, ProjectPath, BuildPath=None): |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
885 |
""" |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
886 |
Create a new project in an empty folder |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
887 |
@param ProjectPath: path of the folder where project have to be created |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
888 |
@param PLCParams: properties of the PLCOpen program created |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
889 |
""" |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
890 |
# Verify that chosen folder is empty |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
891 |
if not os.path.isdir(ProjectPath) or len(os.listdir(ProjectPath)) > 0: |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
892 |
return _("Chosen folder isn't empty. You can't use it for a new project!") |
20 | 893 |
|
894 |
dialog = ProjectDialog(self.AppFrame) |
|
895 |
if dialog.ShowModal() == wx.ID_OK: |
|
896 |
values = dialog.GetValues() |
|
897 |
values["creationDateTime"] = datetime(*localtime()[:6]) |
|
898 |
dialog.Destroy() |
|
899 |
else: |
|
900 |
dialog.Destroy() |
|
361 | 901 |
return _("Project not created") |
20 | 902 |
|
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
903 |
# Create PLCOpen program |
113 | 904 |
self.CreateNewProject(values) |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
905 |
# Change XSD into class members |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
906 |
self._AddParamsMembers() |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
907 |
self.PluggedChilds = {} |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
908 |
# Keep track of the root plugin (i.e. project path) |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
909 |
self.ProjectPath = ProjectPath |
427 | 910 |
self._setBuildPath(BuildPath) |
114
2e3d8d4480e7
Now .xml files are automatically created when creating a new project no need to save explicitely.
etisserant
parents:
113
diff
changeset
|
911 |
# get plugins bloclist (is that usefull at project creation?) |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
912 |
self.RefreshPluginsBlockLists() |
114
2e3d8d4480e7
Now .xml files are automatically created when creating a new project no need to save explicitely.
etisserant
parents:
113
diff
changeset
|
913 |
# this will create files base XML files |
2e3d8d4480e7
Now .xml files are automatically created when creating a new project no need to save explicitely.
etisserant
parents:
113
diff
changeset
|
914 |
self.SaveProject() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
915 |
return None |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
916 |
|
256 | 917 |
def LoadProject(self, ProjectPath, BuildPath=None): |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
918 |
""" |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
919 |
Load a project contained in a folder |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
920 |
@param ProjectPath: path of the project folder |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
921 |
""" |
190 | 922 |
if os.path.basename(ProjectPath) == "": |
923 |
ProjectPath = os.path.dirname(ProjectPath) |
|
203 | 924 |
# Verify that project contains a PLCOpen program |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
925 |
plc_file = os.path.join(ProjectPath, "plc.xml") |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
926 |
if not os.path.isfile(plc_file): |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
927 |
return _("Chosen folder doesn't contain a program. It's not a valid project!") |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
928 |
# Load PLCOpen file |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
929 |
result = self.OpenXMLFile(plc_file) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
930 |
if result: |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
931 |
return result |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
932 |
# Change XSD into class members |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
933 |
self._AddParamsMembers() |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
934 |
self.PluggedChilds = {} |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
935 |
# Keep track of the root plugin (i.e. project path) |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
936 |
self.ProjectPath = ProjectPath |
427 | 937 |
self._setBuildPath(BuildPath) |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
938 |
# If dir have already be made, and file exist |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
939 |
if os.path.isdir(self.PlugPath()) and os.path.isfile(self.PluginXmlFilePath()): |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
940 |
#Load the plugin.xml file into parameters members |
203 | 941 |
result = self.LoadXMLParams() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
942 |
if result: |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
943 |
return result |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
944 |
#Load and init all the childs |
203 | 945 |
self.LoadChilds() |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
946 |
self.RefreshPluginsBlockLists() |
203 | 947 |
|
948 |
if os.path.exists(self._getBuildPath()): |
|
949 |
self.EnableMethod("_Clean", True) |
|
950 |
||
951 |
if os.path.isfile(self._getIECrawcodepath()): |
|
952 |
self.ShowMethod("_showIECcode", True) |
|
953 |
||
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
954 |
return None |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
955 |
|
403 | 956 |
def CloseProject(self): |
957 |
self.ClearPluggedChilds() |
|
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
958 |
self.ResetAppFrame(None) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
959 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
960 |
def SaveProject(self): |
427 | 961 |
if self.CheckProjectPathPerm(False): |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
962 |
self.SaveXMLFile(os.path.join(self.ProjectPath, 'plc.xml')) |
427 | 963 |
result = self.PlugRequestSave() |
964 |
if result: |
|
965 |
self.logger.write_error(result) |
|
966 |
||
967 |
def SaveProjectAs(self, dosave=True): |
|
968 |
# Ask user to choose a path with write permissions |
|
969 |
dirdialog = wx.DirDialog(self.AppFrame , _("Choose a directory to save project"), os.getenv("HOME"), wx.DD_NEW_DIR_BUTTON) |
|
970 |
answer = dirdialog.ShowModal() |
|
971 |
dirdialog.Destroy() |
|
972 |
if answer == wx.ID_OK: |
|
973 |
newprojectpath = dirdialog.GetPath() |
|
974 |
if os.path.isdir(newprojectpath): |
|
975 |
self.ProjectPath = newprojectpath |
|
976 |
if dosave: |
|
977 |
self.SaveProject() |
|
978 |
self._setBuildPath(self.BuildPath) |
|
979 |
return True |
|
980 |
return False |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
981 |
|
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
982 |
# Update PLCOpenEditor Plugin Block types from loaded plugins |
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
983 |
def RefreshPluginsBlockLists(self): |
62
ddf0cdd71558
Adding support for refresh block list where beremiz loose focus
lbessard
parents:
57
diff
changeset
|
984 |
if getattr(self, "PluggedChilds", None) is not None: |
202
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
985 |
self.ClearPluginTypes() |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
986 |
self.AddPluginBlockList(self.PluginsBlockTypesFactory()) |
395 | 987 |
if self.AppFrame is not None: |
988 |
self.AppFrame.RefreshLibraryTree() |
|
989 |
self.AppFrame.RefreshEditor() |
|
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
990 |
|
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
991 |
def GetVariableLocationTree(self): |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
992 |
''' |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
993 |
This function is meant to be overridden by plugins. |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
994 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
995 |
It should returns an list of dictionaries |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
996 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
997 |
- IEC_type is an IEC type like BOOL/BYTE/SINT/... |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
998 |
- location is a string of this variable's location, like "%IX0.0.0" |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
999 |
''' |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1000 |
children = [] |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1001 |
for child in self.IECSortedChilds(): |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1002 |
children.append(child.GetVariableLocationTree()) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1003 |
return children |
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
1004 |
|
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1005 |
def PluginPath(self): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1006 |
return os.path.join(os.path.split(__file__)[0], "plugins") |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1007 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
1008 |
def PlugPath(self, PlugName=None): |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
1009 |
return self.ProjectPath |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
1010 |
|
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
1011 |
def PluginXmlFilePath(self, PlugName=None): |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
1012 |
return os.path.join(self.PlugPath(PlugName), "beremiz.xml") |
18 | 1013 |
|
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1014 |
def ParentsBlockTypesFactory(self): |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1015 |
return self.BlockTypesFactory() |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1016 |
|
427 | 1017 |
def _setBuildPath(self, buildpath): |
1018 |
if CheckPathPerm(buildpath): |
|
1019 |
self.BuildPath = buildpath |
|
1020 |
else: |
|
1021 |
self.BuildPath = None |
|
1022 |
self.BuildPath = buildpath |
|
1023 |
self.DefaultBuildPath = None |
|
1024 |
if self._builder is not None: |
|
1025 |
self._builder.SetBuildPath(self._getBuildPath()) |
|
1026 |
||
20 | 1027 |
def _getBuildPath(self): |
427 | 1028 |
# BuildPath is defined by user |
1029 |
if self.BuildPath is not None: |
|
1030 |
return self.BuildPath |
|
1031 |
# BuildPath isn't defined by user but already created by default |
|
1032 |
if self.DefaultBuildPath is not None: |
|
1033 |
return self.DefaultBuildPath |
|
1034 |
# Create a build path in project folder if user has permissions |
|
1035 |
if CheckPathPerm(self.ProjectPath): |
|
1036 |
self.DefaultBuildPath = os.path.join(self.ProjectPath, "build") |
|
1037 |
# Create a build path in temp folder |
|
1038 |
else: |
|
1039 |
self.DefaultBuildPath = os.path.join(tempfile.mkdtemp(), os.path.basename(self.ProjectPath), "build") |
|
1040 |
||
1041 |
if not os.path.exists(self.DefaultBuildPath): |
|
1042 |
os.makedirs(self.DefaultBuildPath) |
|
1043 |
return self.DefaultBuildPath |
|
20 | 1044 |
|
203 | 1045 |
def _getExtraFilesPath(self): |
1046 |
return os.path.join(self._getBuildPath(), "extra_files") |
|
1047 |
||
20 | 1048 |
def _getIECcodepath(self): |
1049 |
# define name for IEC code file |
|
1050 |
return os.path.join(self._getBuildPath(), "plc.st") |
|
1051 |
||
65 | 1052 |
def _getIECgeneratedcodepath(self): |
1053 |
# define name for IEC generated code file |
|
1054 |
return os.path.join(self._getBuildPath(), "generated_plc.st") |
|
1055 |
||
1056 |
def _getIECrawcodepath(self): |
|
1057 |
# define name for IEC raw code file |
|
203 | 1058 |
return os.path.join(self.PlugPath(), "raw_plc.st") |
65 | 1059 |
|
97 | 1060 |
def GetLocations(self): |
1061 |
locations = [] |
|
1062 |
filepath = os.path.join(self._getBuildPath(),"LOCATED_VARIABLES.h") |
|
1063 |
if os.path.isfile(filepath): |
|
1064 |
# IEC2C compiler generate a list of located variables : LOCATED_VARIABLES.h |
|
1065 |
location_file = open(os.path.join(self._getBuildPath(),"LOCATED_VARIABLES.h")) |
|
1066 |
# each line of LOCATED_VARIABLES.h declares a located variable |
|
1067 |
lines = [line.strip() for line in location_file.readlines()] |
|
1068 |
# This regular expression parses the lines genereated by IEC2C |
|
348
054fbf1ae0f8
Bug while parsing long located variables in GetLocations fixed
lbessard
parents:
338
diff
changeset
|
1069 |
LOCATED_MODEL = re.compile("__LOCATED_VAR\((?P<IEC_TYPE>[A-Z]*),(?P<NAME>[_A-Za-z0-9]*),(?P<DIR>[QMI])(?:,(?P<SIZE>[XBWDL]))?,(?P<LOC>[,0-9]*)\)") |
97 | 1070 |
for line in lines: |
1071 |
# If line match RE, |
|
1072 |
result = LOCATED_MODEL.match(line) |
|
1073 |
if result: |
|
1074 |
# Get the resulting dict |
|
1075 |
resdict = result.groupdict() |
|
1076 |
# rewrite string for variadic location as a tuple of integers |
|
1077 |
resdict['LOC'] = tuple(map(int,resdict['LOC'].split(','))) |
|
1078 |
# set located size to 'X' if not given |
|
1079 |
if not resdict['SIZE']: |
|
1080 |
resdict['SIZE'] = 'X' |
|
1081 |
# finally store into located variable list |
|
1082 |
locations.append(resdict) |
|
1083 |
return locations |
|
1084 |
||
203 | 1085 |
def _Generate_SoftPLC(self): |
20 | 1086 |
""" |
64 | 1087 |
Generate SoftPLC ST/IL/SFC code out of PLCOpenEditor controller, and compile it with IEC2C |
20 | 1088 |
@param buildpath: path where files should be created |
1089 |
""" |
|
1090 |
||
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
1091 |
# Update PLCOpenEditor Plugin Block types before generate ST code |
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
1092 |
self.RefreshPluginsBlockLists() |
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
1093 |
|
361 | 1094 |
self.logger.write(_("Generating SoftPLC IEC-61131 ST/IL/SFC code...\n")) |
20 | 1095 |
buildpath = self._getBuildPath() |
1096 |
# ask PLCOpenEditor controller to write ST/IL/SFC code file |
|
309
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
1097 |
program, errors, warnings = self.GenerateProgram(self._getIECgeneratedcodepath()) |
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
1098 |
if len(warnings) > 0: |
361 | 1099 |
self.logger.write_warning(_("Warnings in ST/IL/SFC code generator :\n")) |
309
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
1100 |
for warning in warnings: |
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
1101 |
self.logger.write_warning("%s\n"%warning) |
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
1102 |
if len(errors) > 0: |
20 | 1103 |
# Failed ! |
361 | 1104 |
self.logger.write_error(_("Error in ST/IL/SFC code generator :\n%s\n")%errors[0]) |
20 | 1105 |
return False |
65 | 1106 |
plc_file = open(self._getIECcodepath(), "w") |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1107 |
# Add ST Library from plugins |
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
1108 |
plc_file.write(self.PluginsSTLibraryFactory()) |
65 | 1109 |
if os.path.isfile(self._getIECrawcodepath()): |
1110 |
plc_file.write(open(self._getIECrawcodepath(), "r").read()) |
|
1111 |
plc_file.write("\n") |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1112 |
plc_file.close() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1113 |
plc_file = open(self._getIECcodepath(), "r") |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1114 |
self.ProgramOffset = 0 |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1115 |
for line in plc_file.xreadlines(): |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1116 |
self.ProgramOffset += 1 |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1117 |
plc_file.close() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1118 |
plc_file = open(self._getIECcodepath(), "a") |
65 | 1119 |
plc_file.write(open(self._getIECgeneratedcodepath(), "r").read()) |
1120 |
plc_file.close() |
|
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1121 |
|
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1122 |
self.logger.write(_("Compiling IEC Program into C code...\n")) |
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1123 |
|
20 | 1124 |
# Now compile IEC code into many C files |
1125 |
# files are listed to stdout, and errors to stderr. |
|
110
a05e8b30c024
Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents:
109
diff
changeset
|
1126 |
status, result, err_result = ProcessLogger( |
203 | 1127 |
self.logger, |
351 | 1128 |
"\"%s\" -f -I \"%s\" -T \"%s\" \"%s\""%( |
418 | 1129 |
self.iec2c_path, |
1130 |
self.ieclib_path, |
|
351 | 1131 |
buildpath, |
1132 |
self._getIECcodepath()), |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1133 |
no_stdout=True, no_stderr=True).spin() |
20 | 1134 |
if status: |
1135 |
# Failed ! |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1136 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1137 |
# parse iec2c's error message. if it contains a line number, |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1138 |
# then print those lines from the generated IEC file. |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1139 |
for err_line in err_result.split('\n'): |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1140 |
self.logger.write_warning(err_line + "\n") |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1141 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1142 |
m_result = MATIEC_ERROR_MODEL.match(err_line) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1143 |
if m_result is not None: |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1144 |
first_line, first_column, last_line, last_column, error = m_result.groups() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1145 |
first_line, last_line = int(first_line), int(last_line) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1146 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1147 |
last_section = None |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1148 |
f = open(self._getIECcodepath()) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1149 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1150 |
for i, line in enumerate(f.readlines()): |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1151 |
if line[0] not in '\t \r\n': |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1152 |
last_section = line |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1153 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1154 |
if first_line <= i <= last_line: |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1155 |
if last_section is not None: |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1156 |
self.logger.write_warning("In section: " + last_section) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1157 |
last_section = None # only write section once |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1158 |
self.logger.write_warning("%04d: %s" % (i, line)) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1159 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1160 |
f.close() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1161 |
|
361 | 1162 |
self.logger.write_error(_("Error : IEC to C compiler returned %d\n")%status) |
20 | 1163 |
return False |
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
1164 |
|
20 | 1165 |
# Now extract C files of stdout |
113 | 1166 |
C_files = [ fname for fname in result.splitlines() if fname[-2:]==".c" or fname[-2:]==".C" ] |
20 | 1167 |
# remove those that are not to be compiled because included by others |
1168 |
C_files.remove("POUS.c") |
|
115 | 1169 |
if not C_files: |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1170 |
self.logger.write_error(_("Error : At least one configuration and one resource must be declared in PLC !\n")) |
115 | 1171 |
return False |
20 | 1172 |
# transform those base names to full names with path |
23 | 1173 |
C_files = map(lambda filename:os.path.join(buildpath, filename), C_files) |
361 | 1174 |
self.logger.write(_("Extracting Located Variables...\n")) |
97 | 1175 |
# Keep track of generated located variables for later use by self._Generate_C |
1176 |
self.PLCGeneratedLocatedVars = self.GetLocations() |
|
20 | 1177 |
# Keep track of generated C files for later use by self.PlugGenerate_C |
18 | 1178 |
self.PLCGeneratedCFiles = C_files |
49
45dc6a944ab6
On the long wat towards generated code comilation...
etisserant
parents:
47
diff
changeset
|
1179 |
# compute CFLAGS for plc |
418 | 1180 |
self.plcCFLAGS = "\"-I"+self.ieclib_path+"\"" |
18 | 1181 |
return True |
1182 |
||
203 | 1183 |
def GetBuilder(self): |
1184 |
""" |
|
1185 |
Return a Builder (compile C code into machine code) |
|
1186 |
""" |
|
1187 |
# Get target, module and class name |
|
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1188 |
target = self.BeremizRoot.getTargetType() |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1189 |
if target.getcontent() is None: |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1190 |
target = self.GetDefaultTarget() |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1191 |
targetname = target.getcontent()["name"] |
203 | 1192 |
modulename = "targets." + targetname |
1193 |
classname = targetname + "_target" |
|
1194 |
||
1195 |
# Get module reference |
|
1196 |
try : |
|
1197 |
targetmodule = getattr(__import__(modulename), targetname) |
|
1198 |
||
1199 |
except Exception, msg: |
|
361 | 1200 |
self.logger.write_error(_("Can't find module for target %s!\n")%targetname) |
203 | 1201 |
self.logger.write_error(str(msg)) |
1202 |
return None |
|
1203 |
||
1204 |
# Get target class |
|
1205 |
targetclass = getattr(targetmodule, classname) |
|
1206 |
||
1207 |
# if target already |
|
1208 |
if self._builder is None or not isinstance(self._builder,targetclass): |
|
1209 |
# Get classname instance |
|
1210 |
self._builder = targetclass(self) |
|
1211 |
return self._builder |
|
1212 |
||
1213 |
def GetLastBuildMD5(self): |
|
1214 |
builder=self.GetBuilder() |
|
1215 |
if builder is not None: |
|
1216 |
return builder.GetBinaryCodeMD5() |
|
1217 |
else: |
|
1218 |
return None |
|
1219 |
||
1220 |
####################################################################### |
|
1221 |
# |
|
1222 |
# C CODE GENERATION METHODS |
|
1223 |
# |
|
1224 |
####################################################################### |
|
1225 |
||
1226 |
def PlugGenerate_C(self, buildpath, locations): |
|
1227 |
""" |
|
1228 |
Return C code generated by iec2c compiler |
|
1229 |
when _generate_softPLC have been called |
|
1230 |
@param locations: ignored |
|
1231 |
@return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND |
|
1232 |
""" |
|
283
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
1233 |
|
366
cd90e4c10261
Move python evaluator to create a python plugin containing any related python module
laurent
parents:
363
diff
changeset
|
1234 |
return ([(C_file_name, self.plcCFLAGS) |
283
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
1235 |
for C_file_name in self.PLCGeneratedCFiles ], |
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
1236 |
"", # no ldflags |
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
1237 |
False) # do not expose retreive/publish calls |
203 | 1238 |
|
1239 |
def ResetIECProgramsAndVariables(self): |
|
1240 |
""" |
|
1241 |
Reset variable and program list that are parsed from |
|
1242 |
CSV file generated by IEC2C compiler. |
|
1243 |
""" |
|
1244 |
self._ProgramList = None |
|
1245 |
self._VariablesList = None |
|
1246 |
self._IECPathToIdx = None |
|
235 | 1247 |
self.TracedIECPath = [] |
1248 |
||
203 | 1249 |
def GetIECProgramsAndVariables(self): |
1250 |
""" |
|
1251 |
Parse CSV-like file VARIABLES.csv resulting from IEC2C compiler. |
|
1252 |
Each section is marked with a line staring with '//' |
|
1253 |
list of all variables used in various POUs |
|
1254 |
""" |
|
1255 |
if self._ProgramList is None or self._VariablesList is None: |
|
1256 |
try: |
|
1257 |
csvfile = os.path.join(self._getBuildPath(),"VARIABLES.csv") |
|
1258 |
# describes CSV columns |
|
1259 |
ProgramsListAttributeName = ["num", "C_path", "type"] |
|
1260 |
VariablesListAttributeName = ["num", "vartype", "IEC_path", "C_path", "type"] |
|
1261 |
self._ProgramList = [] |
|
1262 |
self._VariablesList = [] |
|
1263 |
self._IECPathToIdx = {} |
|
1264 |
||
1265 |
# Separate sections |
|
1266 |
ListGroup = [] |
|
1267 |
for line in open(csvfile,'r').xreadlines(): |
|
1268 |
strippedline = line.strip() |
|
1269 |
if strippedline.startswith("//"): |
|
1270 |
# Start new section |
|
1271 |
ListGroup.append([]) |
|
1272 |
elif len(strippedline) > 0 and len(ListGroup) > 0: |
|
1273 |
# append to this section |
|
1274 |
ListGroup[-1].append(strippedline) |
|
1275 |
||
1276 |
# first section contains programs |
|
1277 |
for line in ListGroup[0]: |
|
1278 |
# Split and Maps each field to dictionnary entries |
|
1279 |
attrs = dict(zip(ProgramsListAttributeName,line.strip().split(';'))) |
|
1280 |
# Truncate "C_path" to remove conf an ressources names |
|
1281 |
attrs["C_path"] = '__'.join(attrs["C_path"].split(".",2)[1:]) |
|
1282 |
# Push this dictionnary into result. |
|
1283 |
self._ProgramList.append(attrs) |
|
1284 |
||
1285 |
# second section contains all variables |
|
1286 |
for line in ListGroup[1]: |
|
1287 |
# Split and Maps each field to dictionnary entries |
|
1288 |
attrs = dict(zip(VariablesListAttributeName,line.strip().split(';'))) |
|
1289 |
# Truncate "C_path" to remove conf an ressources names |
|
1290 |
attrs["C_path"] = '__'.join(attrs["C_path"].split(".",2)[1:]) |
|
1291 |
# Push this dictionnary into result. |
|
1292 |
self._VariablesList.append(attrs) |
|
1293 |
# Fill in IEC<->C translation dicts |
|
1294 |
IEC_path=attrs["IEC_path"] |
|
1295 |
Idx=int(attrs["num"]) |
|
1296 |
self._IECPathToIdx[IEC_path]=Idx |
|
1297 |
except Exception,e: |
|
361 | 1298 |
self.logger.write_error(_("Cannot open/parse VARIABLES.csv!\n")) |
203 | 1299 |
self.logger.write_error(traceback.format_exc()) |
1300 |
self.ResetIECProgramsAndVariables() |
|
1301 |
return False |
|
1302 |
||
1303 |
return True |
|
1304 |
||
1305 |
def Generate_plc_debugger(self): |
|
1306 |
""" |
|
1307 |
Generate trace/debug code out of PLC variable list |
|
1308 |
""" |
|
1309 |
self.GetIECProgramsAndVariables() |
|
1310 |
||
1311 |
# prepare debug code |
|
209
08dc3d064cb5
Moved template C code to targets dir. Cleaned up some forgotten print.
etisserant
parents:
206
diff
changeset
|
1312 |
debug_code = targets.code("plc_debug") % { |
335
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
1313 |
"buffer_size": reduce(lambda x, y: x + y, [DebugTypesSize.get(v["type"], 0) for v in self._VariablesList], 0), |
203 | 1314 |
"programs_declarations": |
1315 |
"\n".join(["extern %(type)s %(C_path)s;"%p for p in self._ProgramList]), |
|
1316 |
"extern_variables_declarations":"\n".join([ |
|
1317 |
{"PT":"extern %(type)s *%(C_path)s;", |
|
1318 |
"VAR":"extern %(type)s %(C_path)s;"}[v["vartype"]]%v |
|
275 | 1319 |
for v in self._VariablesList if v["vartype"] != "FB" and v["C_path"].find('.')<0]), |
203 | 1320 |
"subscription_table_count": |
1321 |
len(self._VariablesList), |
|
1322 |
"variables_pointer_type_table_count": |
|
1323 |
len(self._VariablesList), |
|
1324 |
"variables_pointer_type_table_initializer":"\n".join([ |
|
1325 |
{"PT":" variable_table[%(num)s].ptrvalue = (void*)(%(C_path)s);\n", |
|
1326 |
"VAR":" variable_table[%(num)s].ptrvalue = (void*)(&%(C_path)s);\n"}[v["vartype"]]%v + |
|
1327 |
" variable_table[%(num)s].type = %(type)s_ENUM;\n"%v |
|
275 | 1328 |
for v in self._VariablesList if v["vartype"] != "FB" and v["type"] in DebugTypes ])} |
203 | 1329 |
|
1330 |
return debug_code |
|
1331 |
||
1332 |
def Generate_plc_common_main(self): |
|
1333 |
""" |
|
1334 |
Use plugins layout given in LocationCFilesAndCFLAGS to |
|
1335 |
generate glue code that dispatch calls to all plugins |
|
1336 |
""" |
|
1337 |
# filter location that are related to code that will be called |
|
1338 |
# in retreive, publish, init, cleanup |
|
1339 |
locstrs = map(lambda x:"_".join(map(str,x)), |
|
1340 |
[loc for loc,Cfiles,DoCalls in self.LocationCFilesAndCFLAGS if loc and DoCalls]) |
|
1341 |
||
1342 |
# Generate main, based on template |
|
338 | 1343 |
if self.BeremizRoot.getEnable_Plugins(): |
1344 |
plc_main_code = targets.code("plc_common_main") % { |
|
1345 |
"calls_prototypes":"\n".join([( |
|
1346 |
"int __init_%(s)s(int argc,char **argv);\n"+ |
|
418 | 1347 |
"void __cleanup_%(s)s(void);\n"+ |
1348 |
"void __retrieve_%(s)s(void);\n"+ |
|
1349 |
"void __publish_%(s)s(void);")%{'s':locstr} for locstr in locstrs]), |
|
338 | 1350 |
"retrieve_calls":"\n ".join([ |
1351 |
"__retrieve_%s();"%locstr for locstr in locstrs]), |
|
1352 |
"publish_calls":"\n ".join([ #Call publish in reverse order |
|
1353 |
"__publish_%s();"%locstrs[i-1] for i in xrange(len(locstrs), 0, -1)]), |
|
1354 |
"init_calls":"\n ".join([ |
|
1355 |
"init_level=%d; "%(i+1)+ |
|
423 | 1356 |
"if((res = __init_%s(argc,argv))){"%locstr + |
338 | 1357 |
#"printf(\"%s\"); "%locstr + #for debug |
1358 |
"return res;}" for i,locstr in enumerate(locstrs)]), |
|
1359 |
"cleanup_calls":"\n ".join([ |
|
1360 |
"if(init_level >= %d) "%i+ |
|
1361 |
"__cleanup_%s();"%locstrs[i-1] for i in xrange(len(locstrs), 0, -1)]) |
|
1362 |
} |
|
1363 |
else: |
|
1364 |
plc_main_code = targets.code("plc_common_main") % { |
|
1365 |
"calls_prototypes":"\n", |
|
1366 |
"retrieve_calls":"\n", |
|
1367 |
"publish_calls":"\n", |
|
1368 |
"init_calls":"\n", |
|
1369 |
"cleanup_calls":"\n" |
|
1370 |
} |
|
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1371 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1372 |
target = self.BeremizRoot.getTargetType() |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1373 |
if target.getcontent() is None: |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1374 |
target = self.GetDefaultTarget() |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1375 |
target_name = target.getcontent()["name"] |
209
08dc3d064cb5
Moved template C code to targets dir. Cleaned up some forgotten print.
etisserant
parents:
206
diff
changeset
|
1376 |
plc_main_code += targets.targetcode(target_name) |
203 | 1377 |
return plc_main_code |
1378 |
||
1379 |
||
1380 |
def _build(self): |
|
20 | 1381 |
""" |
1382 |
Method called by user to (re)build SoftPLC and plugin tree |
|
1383 |
""" |
|
395 | 1384 |
if self.AppFrame is not None: |
1385 |
self.AppFrame.ClearErrors() |
|
202
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1386 |
|
20 | 1387 |
buildpath = self._getBuildPath() |
1388 |
||
1389 |
# Eventually create build dir |
|
18 | 1390 |
if not os.path.exists(buildpath): |
1391 |
os.mkdir(buildpath) |
|
203 | 1392 |
# There is something to clean |
110
a05e8b30c024
Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents:
109
diff
changeset
|
1393 |
self.EnableMethod("_Clean", True) |
203 | 1394 |
|
1395 |
self.logger.flush() |
|
361 | 1396 |
self.logger.write(_("Start build in %s\n") % buildpath) |
203 | 1397 |
|
1398 |
# Generate SoftPLC IEC code |
|
1399 |
IECGenRes = self._Generate_SoftPLC() |
|
1400 |
self.ShowMethod("_showIECcode", True) |
|
1401 |
||
1402 |
# If IEC code gen fail, bail out. |
|
1403 |
if not IECGenRes: |
|
361 | 1404 |
self.logger.write_error(_("IEC-61131-3 code generation failed !\n")) |
20 | 1405 |
return False |
1406 |
||
203 | 1407 |
# Reset variable and program list that are parsed from |
1408 |
# CSV file generated by IEC2C compiler. |
|
1409 |
self.ResetIECProgramsAndVariables() |
|
18 | 1410 |
|
20 | 1411 |
# Generate C code and compilation params from plugin hierarchy |
361 | 1412 |
self.logger.write(_("Generating plugins C code\n")) |
24 | 1413 |
try: |
203 | 1414 |
self.LocationCFilesAndCFLAGS, self.LDFLAGS, ExtraFiles = self._Generate_C( |
24 | 1415 |
buildpath, |
203 | 1416 |
self.PLCGeneratedLocatedVars) |
178
2390b409eb93
Added PLC tick alignement on external synchronization source feature.
etisserant
parents:
176
diff
changeset
|
1417 |
except Exception, exc: |
361 | 1418 |
self.logger.write_error(_("Plugins code generation failed !\n")) |
203 | 1419 |
self.logger.write_error(traceback.format_exc()) |
24 | 1420 |
return False |
18 | 1421 |
|
361 | 1422 |
# Get temporary directory path |
203 | 1423 |
extrafilespath = self._getExtraFilesPath() |
1424 |
# Remove old directory |
|
1425 |
if os.path.exists(extrafilespath): |
|
1426 |
shutil.rmtree(extrafilespath) |
|
1427 |
# Recreate directory |
|
1428 |
os.mkdir(extrafilespath) |
|
1429 |
# Then write the files |
|
1430 |
for fname,fobject in ExtraFiles: |
|
1431 |
fpath = os.path.join(extrafilespath,fname) |
|
1432 |
open(fpath, "wb").write(fobject.read()) |
|
1433 |
# Now we can forget ExtraFiles (will close files object) |
|
1434 |
del ExtraFiles |
|
1435 |
||
1436 |
# Template based part of C code generation |
|
1437 |
# files are stacked at the beginning, as files of plugin tree root |
|
1438 |
for generator, filename, name in [ |
|
1439 |
# debugger code |
|
1440 |
(self.Generate_plc_debugger, "plc_debugger.c", "Debugger"), |
|
1441 |
# init/cleanup/retrieve/publish, run and align code |
|
1442 |
(self.Generate_plc_common_main,"plc_common_main.c","Common runtime")]: |
|
1443 |
try: |
|
1444 |
# Do generate |
|
1445 |
code = generator() |
|
335
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
1446 |
if code is None: |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
1447 |
raise |
203 | 1448 |
code_path = os.path.join(buildpath,filename) |
1449 |
open(code_path, "w").write(code) |
|
1450 |
# Insert this file as first file to be compiled at root plugin |
|
1451 |
self.LocationCFilesAndCFLAGS[0][1].insert(0,(code_path, self.plcCFLAGS)) |
|
1452 |
except Exception, exc: |
|
361 | 1453 |
self.logger.write_error(name+_(" generation failed !\n")) |
203 | 1454 |
self.logger.write_error(traceback.format_exc()) |
1455 |
return False |
|
1456 |
||
361 | 1457 |
self.logger.write(_("C code generated successfully.\n")) |
203 | 1458 |
|
1459 |
# Get current or fresh builder |
|
1460 |
builder = self.GetBuilder() |
|
1461 |
if builder is None: |
|
361 | 1462 |
self.logger.write_error(_("Fatal : cannot get builder.\n")) |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
1463 |
return False |
203 | 1464 |
|
1465 |
# Build |
|
1466 |
try: |
|
1467 |
if not builder.build() : |
|
361 | 1468 |
self.logger.write_error(_("C Build failed.\n")) |
203 | 1469 |
return False |
1470 |
except Exception, exc: |
|
361 | 1471 |
self.logger.write_error(_("C Build crashed !\n")) |
203 | 1472 |
self.logger.write_error(traceback.format_exc()) |
1473 |
return False |
|
1474 |
||
1475 |
# Update GUI status about need for transfer |
|
1476 |
self.CompareLocalAndRemotePLC() |
|
49
45dc6a944ab6
On the long wat towards generated code comilation...
etisserant
parents:
47
diff
changeset
|
1477 |
return True |
202
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1478 |
|
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1479 |
def ShowError(self, logger, from_location, to_location): |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1480 |
chunk_infos = self.GetChunkInfos(from_location, to_location) |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1481 |
for infos, (start_row, start_col) in chunk_infos: |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1482 |
start = (from_location[0] - start_row, from_location[1] - start_col) |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
1483 |
end = (to_location[0] - start_row, to_location[1] - start_col) |
396 | 1484 |
if self.AppFrame is not None: |
1485 |
self.AppFrame.ShowError(infos, start, end) |
|
203 | 1486 |
|
1487 |
def _showIECcode(self): |
|
20 | 1488 |
plc_file = self._getIECcodepath() |
173
2a9c4eec8645
Bug on Beremiz close with and IECcode and IECrawcode frames opened fixed
lbessard
parents:
158
diff
changeset
|
1489 |
new_dialog = wx.Frame(self.AppFrame) |
74 | 1490 |
ST_viewer = TextViewer(new_dialog, "", None, None) |
20 | 1491 |
#ST_viewer.Enable(False) |
1492 |
ST_viewer.SetKeywords(IEC_KEYWORDS) |
|
1493 |
try: |
|
1494 |
text = file(plc_file).read() |
|
1495 |
except: |
|
1496 |
text = '(* No IEC code have been generated at that time ! *)' |
|
65 | 1497 |
ST_viewer.SetText(text = text) |
1498 |
||
1499 |
new_dialog.Show() |
|
1500 |
||
203 | 1501 |
def _editIECrawcode(self): |
173
2a9c4eec8645
Bug on Beremiz close with and IECcode and IECrawcode frames opened fixed
lbessard
parents:
158
diff
changeset
|
1502 |
new_dialog = wx.Frame(self.AppFrame) |
66 | 1503 |
|
65 | 1504 |
controler = MiniTextControler(self._getIECrawcodepath()) |
74 | 1505 |
ST_viewer = TextViewer(new_dialog, "", None, controler) |
65 | 1506 |
#ST_viewer.Enable(False) |
1507 |
ST_viewer.SetKeywords(IEC_KEYWORDS) |
|
1508 |
ST_viewer.RefreshView() |
|
20 | 1509 |
|
1510 |
new_dialog.Show() |
|
1511 |
||
203 | 1512 |
def _Clean(self): |
108 | 1513 |
if os.path.isdir(os.path.join(self._getBuildPath())): |
361 | 1514 |
self.logger.write(_("Cleaning the build directory\n")) |
108 | 1515 |
shutil.rmtree(os.path.join(self._getBuildPath())) |
1516 |
else: |
|
361 | 1517 |
self.logger.write_error(_("Build directory already clean\n")) |
203 | 1518 |
self.ShowMethod("_showIECcode", False) |
110
a05e8b30c024
Fixed way apps are launched in parralel with single log window... Tested in win32 only.
etisserant
parents:
109
diff
changeset
|
1519 |
self.EnableMethod("_Clean", False) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1520 |
# kill the builder |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1521 |
self._builder = None |
203 | 1522 |
self.CompareLocalAndRemotePLC() |
1523 |
||
1524 |
############# Real PLC object access ############# |
|
1525 |
def UpdateMethodsFromPLCStatus(self): |
|
1526 |
# Get PLC state : Running or Stopped |
|
1527 |
# TODO : use explicit status instead of boolean |
|
1528 |
if self._connector is not None: |
|
1529 |
status = self._connector.GetPLCstatus() |
|
107 | 1530 |
else: |
203 | 1531 |
status = "Disconnected" |
1532 |
for args in { |
|
440 | 1533 |
"Starting" : [("_Run", True), |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1534 |
("_Debug", True), |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1535 |
("_Stop", False)], |
440 | 1536 |
"Started" : [("_Run", False), |
361 | 1537 |
("_Debug", False), |
1538 |
("_Stop", True)], |
|
440 | 1539 |
"Stopped" : [("_Run", True), |
361 | 1540 |
("_Debug", True), |
1541 |
("_Stop", False)], |
|
440 | 1542 |
"Empty" : [("_Run", False), |
361 | 1543 |
("_Debug", False), |
1544 |
("_Stop", False)], |
|
440 | 1545 |
"Broken" : [("_Run", True), |
361 | 1546 |
("_Debug", True), |
1547 |
("_Stop", False)], |
|
440 | 1548 |
"Disconnected" :[("_Run", False), |
361 | 1549 |
("_Debug", False), |
1550 |
("_Stop", False), |
|
1551 |
("_Transfer", False), |
|
1552 |
("_Connect", True), |
|
1553 |
("_Disconnect", False)], |
|
203 | 1554 |
}.get(status,[]): |
1555 |
self.ShowMethod(*args) |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1556 |
return status |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1557 |
|
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1558 |
def PullPLCStatusProc(self, event): |
355 | 1559 |
if self._connector is None: |
1560 |
self.StatusTimer.Stop() |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1561 |
current_status = self.UpdateMethodsFromPLCStatus() |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1562 |
if current_status != self.previous_plcstate: |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1563 |
self.previous_plcstate = current_status |
361 | 1564 |
if current_status is not None: |
1565 |
status = _(current_status) |
|
1566 |
else: |
|
1567 |
status = "" |
|
1568 |
self.StatusPrint.get(current_status, self.logger.write)(_("PLC is %s\n")%status) |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1569 |
self.AppFrame.RefreshAll() |
355 | 1570 |
|
203 | 1571 |
def _Run(self): |
1572 |
""" |
|
1573 |
Start PLC |
|
1574 |
""" |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1575 |
self._connector.StartPLC() |
203 | 1576 |
self.UpdateMethodsFromPLCStatus() |
1577 |
||
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1578 |
def RegisterDebugVarToConnector(self): |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1579 |
self.DebugTimer=None |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1580 |
Idxs = [] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1581 |
self.TracedIECPath = [] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1582 |
if self._connector is not None: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1583 |
self.IECdebug_lock.acquire() |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1584 |
IECPathsToPop = [] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1585 |
for IECPath,data_tuple in self.IECdebug_datas.iteritems(): |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1586 |
WeakCallableDict, data_log, status = data_tuple |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1587 |
if len(WeakCallableDict) == 0: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1588 |
# Callable Dict is empty. |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1589 |
# This variable is not needed anymore! |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1590 |
#print "Unused : " + IECPath |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1591 |
IECPathsToPop.append(IECPath) |
355 | 1592 |
elif IECPath != "__tick__": |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1593 |
# Convert |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1594 |
Idx = self._IECPathToIdx.get(IECPath,None) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1595 |
if Idx is not None: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1596 |
Idxs.append(Idx) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1597 |
self.TracedIECPath.append(IECPath) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1598 |
else: |
361 | 1599 |
self.logger.write_warning(_("Debug : Unknown variable %s\n")%IECPath) |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1600 |
for IECPathToPop in IECPathsToPop: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1601 |
self.IECdebug_datas.pop(IECPathToPop) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1602 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1603 |
self._connector.SetTraceVariablesList(Idxs) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1604 |
self.IECdebug_lock.release() |
243 | 1605 |
|
1606 |
#for IEC_path, IECdebug_data in self.IECdebug_datas.iteritems(): |
|
1607 |
# print IEC_path, IECdebug_data[0].keys() |
|
1608 |
||
1609 |
def ReArmDebugRegisterTimer(self): |
|
1610 |
if self.DebugTimer is not None: |
|
1611 |
self.DebugTimer.cancel() |
|
1612 |
||
395 | 1613 |
if not self.Deleting: |
1614 |
# Timer to prevent rapid-fire when registering many variables |
|
1615 |
# use wx.CallAfter use keep using same thread. TODO : use wx.Timer instead |
|
1616 |
self.DebugTimer=Timer(0.5,wx.CallAfter,args = [self.RegisterDebugVarToConnector]) |
|
1617 |
# Rearm anti-rapid-fire timer |
|
1618 |
self.DebugTimer.start() |
|
243 | 1619 |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1620 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1621 |
def SubscribeDebugIECVariable(self, IECPath, callableobj, *args, **kwargs): |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1622 |
""" |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1623 |
Dispatching use a dictionnary linking IEC variable paths |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1624 |
to a WeakKeyDictionary linking |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1625 |
weakly referenced callables to optionnal args |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1626 |
""" |
355 | 1627 |
if IECPath != "__tick__" and self._IECPathToIdx.get(IECPath, None) is None: |
246 | 1628 |
return None |
1629 |
||
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1630 |
self.IECdebug_lock.acquire() |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1631 |
# If no entry exist, create a new one with a fresh WeakKeyDictionary |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1632 |
IECdebug_data = self.IECdebug_datas.get(IECPath, None) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1633 |
if IECdebug_data is None: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1634 |
IECdebug_data = [ |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1635 |
WeakKeyDictionary(), # Callables |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1636 |
[], # Data storage [(tick, data),...] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1637 |
"Registered"] # Variable status |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1638 |
self.IECdebug_datas[IECPath] = IECdebug_data |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1639 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1640 |
IECdebug_data[0][callableobj]=(args, kwargs) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1641 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1642 |
self.IECdebug_lock.release() |
243 | 1643 |
|
1644 |
self.ReArmDebugRegisterTimer() |
|
1645 |
||
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1646 |
return IECdebug_data[1] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1647 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1648 |
def UnsubscribeDebugIECVariable(self, IECPath, callableobj): |
243 | 1649 |
#print "Unsubscribe", IECPath, callableobj |
1650 |
self.IECdebug_lock.acquire() |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1651 |
IECdebug_data = self.IECdebug_datas.get(IECPath, None) |
243 | 1652 |
if IECdebug_data is not None: |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1653 |
IECdebug_data[0].pop(callableobj,None) |
243 | 1654 |
self.IECdebug_lock.release() |
1655 |
||
1656 |
self.ReArmDebugRegisterTimer() |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1657 |
|
334
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1658 |
def UnsubscribeAllDebugIECVariable(self): |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1659 |
self.IECdebug_lock.acquire() |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1660 |
IECdebug_data = {} |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1661 |
self.IECdebug_lock.release() |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1662 |
|
355 | 1663 |
self.ReArmDebugRegisterTimer() |
1664 |
||
1665 |
def CallWeakcallables(self, IECPath, function_name, *cargs): |
|
1666 |
data_tuple = self.IECdebug_datas.get(IECPath, None) |
|
1667 |
if data_tuple is not None: |
|
1668 |
WeakCallableDict, data_log, status = data_tuple |
|
1669 |
#data_log.append((debug_tick, value)) |
|
1670 |
for weakcallable,(args,kwargs) in WeakCallableDict.iteritems(): |
|
1671 |
#print weakcallable, value, args, kwargs |
|
1672 |
function = getattr(weakcallable, function_name, None) |
|
1673 |
if function is not None: |
|
1674 |
function(*(cargs + args), **kwargs) |
|
1675 |
# This will block thread if more than one call is waiting |
|
334
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1676 |
|
235 | 1677 |
def DebugThreadProc(self): |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1678 |
""" |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1679 |
This thread waid PLC debug data, and dispatch them to subscribers |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1680 |
""" |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1681 |
# This lock is used to avoid flooding wx event stack calling callafter |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1682 |
self.debug_break = False |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1683 |
while (not self.debug_break) and (self._connector is not None): |
235 | 1684 |
debug_tick, debug_vars = self._connector.GetTraceVariables() |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1685 |
#print debug_tick, debug_vars |
243 | 1686 |
self.IECdebug_lock.acquire() |
235 | 1687 |
if debug_vars is not None and \ |
1688 |
len(debug_vars) == len(self.TracedIECPath): |
|
1689 |
for IECPath,value in zip(self.TracedIECPath, debug_vars): |
|
321 | 1690 |
if value is not None: |
355 | 1691 |
self.CallWeakcallables(IECPath, "NewValue", debug_tick, value) |
1692 |
self.CallWeakcallables("__tick__", "NewDataAvailable") |
|
235 | 1693 |
elif debug_vars is not None: |
1694 |
wx.CallAfter(self.logger.write_warning, |
|
361 | 1695 |
_("Debug data not coherent %d != %d\n")%(len(debug_vars), len(self.TracedIECPath))) |
243 | 1696 |
elif debug_tick == -1: |
235 | 1697 |
#wx.CallAfter(self.logger.write, "Debugger unavailable\n") |
243 | 1698 |
pass |
235 | 1699 |
else: |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1700 |
if self._connector.PLCIsStarting(): |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1701 |
time.sleep(0.01) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1702 |
else: |
414
6f54c173aa19
Move Debug message disabled message at the right place
laurent
parents:
411
diff
changeset
|
1703 |
wx.CallAfter(self.logger.write, _("Debugger disabled\n")) |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
1704 |
self.debug_break = True |
243 | 1705 |
self.IECdebug_lock.release() |
235 | 1706 |
|
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1707 |
def KillDebugThread(self): |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1708 |
self.debug_break = True |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1709 |
self.DebugThread.join(timeout=1) |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1710 |
if self.DebugThread.isAlive(): |
361 | 1711 |
self.logger.write_warning(_("Debug Thread couldn't be killed")) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1712 |
self.DebugThread = None |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1713 |
|
235 | 1714 |
def _Debug(self): |
203 | 1715 |
""" |
1716 |
Start PLC (Debug Mode) |
|
1717 |
""" |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1718 |
if self.GetIECProgramsAndVariables(): |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1719 |
self._connector.StartPLC(debug=True) |
361 | 1720 |
self.logger.write(_("Starting PLC (debug mode)\n")) |
395 | 1721 |
if self.AppFrame: |
1722 |
self.AppFrame.ResetGraphicViewers() |
|
235 | 1723 |
self.DebugThread = Thread(target=self.DebugThreadProc) |
1724 |
self.DebugThread.start() |
|
203 | 1725 |
else: |
361 | 1726 |
self.logger.write_error(_("Couldn't start PLC debug !\n")) |
203 | 1727 |
self.UpdateMethodsFromPLCStatus() |
235 | 1728 |
|
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1729 |
|
235 | 1730 |
# def _Do_Test_Debug(self): |
1731 |
# # debug code |
|
1732 |
# self.temporary_non_weak_callable_refs = [] |
|
1733 |
# for IEC_Path, idx in self._IECPathToIdx.iteritems(): |
|
1734 |
# class tmpcls: |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1735 |
# def __init__(_self): |
244 | 1736 |
# _self.buf = None |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1737 |
# def setbuf(_self,buf): |
244 | 1738 |
# _self.buf = buf |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1739 |
# def SetValue(_self, value, idx, name): |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1740 |
# self.logger.write("debug call: %s %d %s\n"%(repr(value), idx, name)) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1741 |
# #self.logger.write("debug call: %s %d %s %s\n"%(repr(value), idx, name, repr(self.buf))) |
235 | 1742 |
# a = tmpcls() |
1743 |
# res = self.SubscribeDebugIECVariable(IEC_Path, a, idx, IEC_Path) |
|
1744 |
# a.setbuf(res) |
|
1745 |
# self.temporary_non_weak_callable_refs.append(a) |
|
203 | 1746 |
|
1747 |
def _Stop(self): |
|
1748 |
""" |
|
1749 |
Stop PLC |
|
1750 |
""" |
|
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1751 |
if self.DebugThread is not None: |
361 | 1752 |
self.logger.write(_("Stopping debug\n")) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1753 |
self.KillDebugThread() |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1754 |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1755 |
if not self._connector.StopPLC(): |
361 | 1756 |
self.logger.write_error(_("Couldn't stop PLC !\n")) |
203 | 1757 |
self.UpdateMethodsFromPLCStatus() |
1758 |
||
1759 |
def _Connect(self): |
|
1760 |
# don't accept re-connetion is already connected |
|
1761 |
if self._connector is not None: |
|
361 | 1762 |
self.logger.write_error(_("Already connected. Please disconnect\n")) |
203 | 1763 |
return |
1764 |
||
1765 |
# Get connector uri |
|
1766 |
uri = self.\ |
|
1767 |
BeremizRoot.\ |
|
1768 |
getURI_location().\ |
|
1769 |
strip() |
|
1770 |
||
1771 |
# if uri is empty launch discovery dialog |
|
1772 |
if uri == "": |
|
1773 |
# Launch Service Discovery dialog |
|
392
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1774 |
dialog = DiscoveryDialog(self.AppFrame) |
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1775 |
answer = dialog.ShowModal() |
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1776 |
uri = dialog.GetURI() |
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1777 |
dialog.Destroy() |
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1778 |
|
203 | 1779 |
# Nothing choosed or cancel button |
392
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1780 |
if uri is None or answer == wx.ID_CANCEL: |
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1781 |
self.logger.write_error(_("Connection canceled!\n")) |
203 | 1782 |
return |
1783 |
else: |
|
1784 |
self.\ |
|
1785 |
BeremizRoot.\ |
|
1786 |
setURI_location(uri) |
|
1787 |
||
1788 |
# Get connector from uri |
|
1789 |
try: |
|
1790 |
self._connector = connectors.ConnectorFactory(uri, self) |
|
1791 |
except Exception, msg: |
|
361 | 1792 |
self.logger.write_error(_("Exception while connecting %s!\n")%uri) |
203 | 1793 |
self.logger.write_error(traceback.format_exc()) |
1794 |
||
1795 |
# Did connection success ? |
|
1796 |
if self._connector is None: |
|
1797 |
# Oups. |
|
361 | 1798 |
self.logger.write_error(_("Connection failed to %s!\n")%uri) |
203 | 1799 |
else: |
1800 |
self.ShowMethod("_Connect", False) |
|
1801 |
self.ShowMethod("_Disconnect", True) |
|
1802 |
self.ShowMethod("_Transfer", True) |
|
1803 |
||
1804 |
self.CompareLocalAndRemotePLC() |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1805 |
|
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1806 |
# Init with actual PLC status and print it |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1807 |
self.previous_plcstate = self.UpdateMethodsFromPLCStatus() |
361 | 1808 |
if self.previous_plcstate is not None: |
1809 |
status = _(self.previous_plcstate) |
|
1810 |
else: |
|
1811 |
status = "" |
|
1812 |
self.logger.write(_("PLC is %s\n")%status) |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1813 |
|
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1814 |
# Start the status Timer |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1815 |
self.StatusTimer.Start(milliseconds=500, oneShot=False) |
203 | 1816 |
|
1817 |
def CompareLocalAndRemotePLC(self): |
|
1818 |
if self._connector is None: |
|
1819 |
return |
|
1820 |
# We are now connected. Update button status |
|
1821 |
MD5 = self.GetLastBuildMD5() |
|
1822 |
# Check remote target PLC correspondance to that md5 |
|
1823 |
if MD5 is not None: |
|
1824 |
if not self._connector.MatchMD5(MD5): |
|
1825 |
self.logger.write_warning( |
|
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1826 |
_("Latest build does not match with target, please transfer.\n")) |
203 | 1827 |
self.EnableMethod("_Transfer", True) |
1828 |
else: |
|
1829 |
self.logger.write( |
|
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1830 |
_("Latest build matches target, no transfer needed.\n")) |
203 | 1831 |
self.EnableMethod("_Transfer", True) |
1832 |
#self.EnableMethod("_Transfer", False) |
|
1833 |
else: |
|
1834 |
self.logger.write_warning( |
|
361 | 1835 |
_("Cannot compare latest build to target. Please build.\n")) |
203 | 1836 |
self.EnableMethod("_Transfer", False) |
1837 |
||
1838 |
||
1839 |
def _Disconnect(self): |
|
1840 |
self._connector = None |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1841 |
self.StatusTimer.Stop() |
203 | 1842 |
self.UpdateMethodsFromPLCStatus() |
1843 |
||
1844 |
def _Transfer(self): |
|
1845 |
# Get the last build PLC's |
|
1846 |
MD5 = self.GetLastBuildMD5() |
|
1847 |
||
1848 |
# Check if md5 file is empty : ask user to build PLC |
|
1849 |
if MD5 is None : |
|
361 | 1850 |
self.logger.write_error(_("Failed : Must build before transfer.\n")) |
203 | 1851 |
return False |
1852 |
||
1853 |
# Compare PLC project with PLC on target |
|
1854 |
if self._connector.MatchMD5(MD5): |
|
1855 |
self.logger.write( |
|
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1856 |
_("Latest build already matches current target. Transfering anyway...\n")) |
203 | 1857 |
|
1858 |
# Get temprary directory path |
|
1859 |
extrafilespath = self._getExtraFilesPath() |
|
1860 |
extrafiles = [(name, open(os.path.join(extrafilespath, name), |
|
1861 |
'rb').read()) \ |
|
1862 |
for name in os.listdir(extrafilespath) \ |
|
1863 |
if not name=="CVS"] |
|
1864 |
||
1865 |
# Send PLC on target |
|
1866 |
builder = self.GetBuilder() |
|
1867 |
if builder is not None: |
|
1868 |
data = builder.GetBinaryCode() |
|
1869 |
if data is not None : |
|
1870 |
if self._connector.NewPLC(MD5, data, extrafiles): |
|
395 | 1871 |
if self.AppFrame is not None: |
1872 |
self.AppFrame.CloseDebugTabs() |
|
402
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
1873 |
self.AppFrame.RefreshInstancesTree() |
334
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1874 |
self.UnsubscribeAllDebugIECVariable() |
246 | 1875 |
self.ProgramTransferred() |
361 | 1876 |
self.logger.write(_("Transfer completed successfully.\n")) |
203 | 1877 |
else: |
361 | 1878 |
self.logger.write_error(_("Transfer failed\n")) |
203 | 1879 |
else: |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1880 |
self.logger.write_error(_("No PLC to transfer (did build succeed ?)\n")) |
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1881 |
|
203 | 1882 |
self.UpdateMethodsFromPLCStatus() |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1883 |
|
65 | 1884 |
PluginMethods = [ |
203 | 1885 |
{"bitmap" : opjimg("Build"), |
361 | 1886 |
"name" : _("Build"), |
1887 |
"tooltip" : _("Build project into build folder"), |
|
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1888 |
"method" : "_build"}, |
203 | 1889 |
{"bitmap" : opjimg("Clean"), |
361 | 1890 |
"name" : _("Clean"), |
203 | 1891 |
"enabled" : False, |
361 | 1892 |
"tooltip" : _("Clean project build folder"), |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1893 |
"method" : "_Clean"}, |
203 | 1894 |
{"bitmap" : opjimg("Run"), |
361 | 1895 |
"name" : _("Run"), |
203 | 1896 |
"shown" : False, |
361 | 1897 |
"tooltip" : _("Start PLC"), |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1898 |
"method" : "_Run"}, |
203 | 1899 |
{"bitmap" : opjimg("Debug"), |
361 | 1900 |
"name" : _("Debug"), |
203 | 1901 |
"shown" : False, |
361 | 1902 |
"tooltip" : _("Start PLC (debug mode)"), |
203 | 1903 |
"method" : "_Debug"}, |
235 | 1904 |
# {"bitmap" : opjimg("Debug"), |
1905 |
# "name" : "Do_Test_Debug", |
|
1906 |
# "tooltip" : "Test debug mode)", |
|
1907 |
# "method" : "_Do_Test_Debug"}, |
|
203 | 1908 |
{"bitmap" : opjimg("Stop"), |
361 | 1909 |
"name" : _("Stop"), |
203 | 1910 |
"shown" : False, |
361 | 1911 |
"tooltip" : _("Stop Running PLC"), |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1912 |
"method" : "_Stop"}, |
203 | 1913 |
{"bitmap" : opjimg("Connect"), |
361 | 1914 |
"name" : _("Connect"), |
1915 |
"tooltip" : _("Connect to the target PLC"), |
|
203 | 1916 |
"method" : "_Connect"}, |
1917 |
{"bitmap" : opjimg("Transfer"), |
|
361 | 1918 |
"name" : _("Transfer"), |
203 | 1919 |
"shown" : False, |
361 | 1920 |
"tooltip" : _("Transfer PLC"), |
203 | 1921 |
"method" : "_Transfer"}, |
1922 |
{"bitmap" : opjimg("Disconnect"), |
|
361 | 1923 |
"name" : _("Disconnect"), |
203 | 1924 |
"shown" : False, |
361 | 1925 |
"tooltip" : _("Disconnect from PLC"), |
203 | 1926 |
"method" : "_Disconnect"}, |
1927 |
{"bitmap" : opjimg("ShowIECcode"), |
|
361 | 1928 |
"name" : _("Show code"), |
203 | 1929 |
"shown" : False, |
361 | 1930 |
"tooltip" : _("Show IEC code generated by PLCGenerator"), |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1931 |
"method" : "_showIECcode"}, |
203 | 1932 |
{"bitmap" : opjimg("editIECrawcode"), |
361 | 1933 |
"name" : _("Raw IEC code"), |
1934 |
"tooltip" : _("Edit raw IEC code added to code generated by PLCGenerator"), |
|
203 | 1935 |
"method" : "_editIECrawcode"}, |
65 | 1936 |
] |