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