author | laurent |
Wed, 23 May 2012 12:19:53 +0200 | |
changeset 749 | 050f5a001826 |
parent 746 | 2e09777a40d3 |
child 754 | a8c258f7bdcf |
permissions | -rw-r--r-- |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
1 |
""" |
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
2 |
Beremiz Project Controller |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
3 |
""" |
178
2390b409eb93
Added PLC tick alignement on external synchronization source feature.
etisserant
parents:
176
diff
changeset
|
4 |
import os,sys,traceback |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
5 |
import time |
721 | 6 |
import features |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
7 |
import shutil |
22 | 8 |
import wx |
725 | 9 |
import re, tempfile |
10 |
from threading import Timer, Lock, Thread |
|
20 | 11 |
from time import localtime |
12 |
from datetime import datetime |
|
725 | 13 |
from weakref import WeakKeyDictionary |
14 |
||
15 |
import targets |
|
16 |
import connectors |
|
742
41a4a560406c
Fixed runtime problems with python 2.6 without wx installed
Edouard Tisserant
parents:
740
diff
changeset
|
17 |
from util.misc import opjimg, CheckPathPerm, GetClassImporter |
41a4a560406c
Fixed runtime problems with python 2.6 without wx installed
Edouard Tisserant
parents:
740
diff
changeset
|
18 |
from util.MiniTextControler import MiniTextControler |
726 | 19 |
from util.ProcessLogger import ProcessLogger |
738 | 20 |
from PLCControler import PLCControler |
21 |
from PLCOpenEditor import CWD |
|
20 | 22 |
from TextViewer import TextViewer |
725 | 23 |
from plcopen.structures import IEC_KEYWORDS |
592 | 24 |
from targets.typemapping import DebugTypesSize |
726 | 25 |
from util.discovery import DiscoveryDialog |
725 | 26 |
from ConfigTreeNode import ConfigTreeNode |
738 | 27 |
from ProjectNodeEditor import ProjectNodeEditor |
725 | 28 |
|
29 |
base_folder = os.path.split(sys.path[0])[0] |
|
20 | 30 |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
31 |
MATIEC_ERROR_MODEL = re.compile(".*\.st:(\d+)-(\d+)\.\.(\d+)-(\d+): error : (.*)$") |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
32 |
|
578 | 33 |
DEBUG_RETRIES_WARN = 3 |
34 |
DEBUG_RETRIES_REREGISTER = 4 |
|
35 |
||
738 | 36 |
ITEM_CONFNODE = 25 |
37 |
||
725 | 38 |
class ProjectController(ConfigTreeNode, PLCControler): |
20 | 39 |
""" |
717 | 40 |
This class define Root object of the confnode tree. |
20 | 41 |
It is responsible of : |
42 |
- Managing project directory |
|
43 |
- Building project |
|
44 |
- Handling PLCOpenEditor controler and view |
|
718 | 45 |
- Loading user confnodes and instanciante them as children |
20 | 46 |
- ... |
47 |
||
48 |
""" |
|
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
49 |
|
718 | 50 |
# For root object, available Children Types are modules of the confnode packages. |
725 | 51 |
CTNChildrenTypes = [(n, GetClassImporter(c), d) for n,d,h,c in features.catalog] |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
52 |
|
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
53 |
XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
54 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
55 |
<xsd:element name="BeremizRoot"> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
56 |
<xsd:complexType> |
86 | 57 |
<xsd:sequence> |
58 |
<xsd:element name="TargetType"> |
|
59 |
<xsd:complexType> |
|
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
60 |
<xsd:choice minOccurs="0"> |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
732
diff
changeset
|
61 |
"""+targets.GetTargetChoices()+""" |
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
|
62 |
</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
|
63 |
</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
|
64 |
</xsd:element> |
730 | 65 |
<xsd:element name="Libraries" minOccurs="0"> |
66 |
<xsd:complexType> |
|
734 | 67 |
"""+"\n".join(['<xsd:attribute name='+ |
68 |
'"Enable_'+ libname + '_Library" '+ |
|
69 |
'type="xsd:boolean" use="optional" default="true"/>' |
|
731 | 70 |
for libname,lib in features.libraries])+""" |
730 | 71 |
</xsd:complexType> |
72 |
</xsd:element> |
|
86 | 73 |
</xsd:sequence> |
204
f572ab819769
remove URI_location from XSD targets and add to pluginroot XSD
greg
parents:
203
diff
changeset
|
74 |
<xsd:attribute name="URI_location" type="xsd:string" use="optional" default=""/> |
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
75 |
<xsd:attribute name="Disable_Extensions" type="xsd:boolean" use="optional" default="false"/> |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
76 |
</xsd:complexType> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
77 |
</xsd:element> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
78 |
</xsd:schema> |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
79 |
""" |
738 | 80 |
EditorType = ProjectNodeEditor |
81 |
||
290
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
288
diff
changeset
|
82 |
def __init__(self, frame, logger): |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
83 |
PLCControler.__init__(self) |
227
48c13b84505c
- Some improovements in debug data feedback data
etisserant
parents:
222
diff
changeset
|
84 |
|
20 | 85 |
self.MandatoryParams = None |
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
86 |
self.SetAppFrame(frame, logger) |
203 | 87 |
self._builder = None |
88 |
self._connector = None |
|
89 |
||
725 | 90 |
self.iec2c_path = os.path.join(base_folder, "matiec", "iec2c"+(".exe" if wx.Platform == '__WXMSW__' else "")) |
418 | 91 |
self.ieclib_path = os.path.join(base_folder, "matiec", "lib") |
92 |
||
203 | 93 |
# Setup debug information |
227
48c13b84505c
- Some improovements in debug data feedback data
etisserant
parents:
222
diff
changeset
|
94 |
self.IECdebug_datas = {} |
48c13b84505c
- Some improovements in debug data feedback data
etisserant
parents:
222
diff
changeset
|
95 |
self.IECdebug_lock = Lock() |
222
d0f7d36bf241
Added lock to avoid variable subsciption concurrent to transmission to PLC
etisserant
parents:
217
diff
changeset
|
96 |
|
235 | 97 |
self.DebugTimer=None |
203 | 98 |
self.ResetIECProgramsAndVariables() |
99 |
||
118 | 100 |
# In both new or load scenario, no need to save |
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
101 |
self.ChangesToSave = False |
23 | 102 |
# root have no parent |
718 | 103 |
self.CTNParent = None |
717 | 104 |
# Keep track of the confnode type name |
718 | 105 |
self.CTNType = "Beremiz" |
106 |
self.Children = {} |
|
738 | 107 |
self._View = None |
717 | 108 |
# After __init__ root confnode is not valid |
20 | 109 |
self.ProjectPath = None |
427 | 110 |
self._setBuildPath(None) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
111 |
self.DebugThread = None |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
112 |
self.debug_break = False |
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
113 |
self.previous_plcstate = None |
717 | 114 |
# copy ConfNodeMethods so that it can be later customized |
115 |
self.ConfNodeMethods = [dic.copy() for dic in self.ConfNodeMethods] |
|
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
116 |
|
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
117 |
def LoadLibraries(self): |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
118 |
self.Libraries = [] |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
119 |
TypeStack=[] |
731 | 120 |
for libname,clsname in features.libraries: |
121 |
if self.BeremizRoot.Libraries is None or getattr(self.BeremizRoot.Libraries, "Enable_"+libname+"_Library"): |
|
732 | 122 |
Lib = GetClassImporter(clsname)()(self, libname, TypeStack) |
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
123 |
TypeStack.append(Lib.GetTypes()) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
124 |
self.Libraries.append(Lib) |
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
125 |
|
395 | 126 |
def __del__(self): |
466
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
127 |
if self.DebugTimer: |
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
128 |
self.DebugTimer.cancel() |
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
129 |
self.KillDebugThread() |
738 | 130 |
|
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
131 |
def SetAppFrame(self, frame, logger): |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
132 |
self.AppFrame = frame |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
133 |
self.logger = logger |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
134 |
self.StatusTimer = None |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
135 |
|
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
136 |
if frame is not None: |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
137 |
# Timer to pull PLC status |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
138 |
ID_STATUSTIMER = wx.NewId() |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
139 |
self.StatusTimer = wx.Timer(self.AppFrame, ID_STATUSTIMER) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
140 |
self.AppFrame.Bind(wx.EVT_TIMER, self.PullPLCStatusProc, self.StatusTimer) |
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
639
diff
changeset
|
141 |
|
717 | 142 |
self.RefreshConfNodesBlockLists() |
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
143 |
|
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
144 |
def ResetAppFrame(self, logger): |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
145 |
if self.AppFrame is not None: |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
146 |
self.AppFrame.Unbind(wx.EVT_TIMER, self.StatusTimer) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
147 |
self.StatusTimer = None |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
148 |
self.AppFrame = None |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
149 |
|
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
150 |
self.logger = logger |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
151 |
|
738 | 152 |
def CTNName(self): |
153 |
return "Project" |
|
154 |
||
718 | 155 |
def CTNTestModified(self): |
118 | 156 |
return self.ChangesToSave or not self.ProjectIsSaved() |
157 |
||
718 | 158 |
def CTNFullName(self): |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
159 |
return "" |
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
160 |
|
718 | 161 |
def GetCTRoot(self): |
23 | 162 |
return self |
163 |
||
418 | 164 |
def GetIECLibPath(self): |
165 |
return self.ieclib_path |
|
166 |
||
167 |
def GetIEC2cPath(self): |
|
168 |
return self.iec2c_path |
|
169 |
||
23 | 170 |
def GetCurrentLocation(self): |
171 |
return () |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
172 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
173 |
def GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
174 |
return "" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
175 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
176 |
def _GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
177 |
return "" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
178 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
179 |
def GetProjectPath(self): |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
180 |
return self.ProjectPath |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
181 |
|
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
182 |
def GetProjectName(self): |
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
183 |
return os.path.split(self.ProjectPath)[1] |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
184 |
|
738 | 185 |
def GetIconPath(self): |
186 |
return os.path.join(CWD, "Images", "PROJECT.png") |
|
187 |
||
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
188 |
def GetDefaultTargetName(self): |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
189 |
if wx.Platform == '__WXMSW__': |
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
190 |
return "Win32" |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
191 |
else: |
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
192 |
return "Linux" |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
193 |
|
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
194 |
def GetTarget(self): |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
195 |
target = self.BeremizRoot.getTargetType() |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
196 |
if target.getcontent() is None: |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
197 |
target = self.Classes["BeremizRoot_TargetType"]() |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
198 |
target_name = self.GetDefaultTargetName() |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
199 |
target.setcontent({"name": target_name, "value": self.Classes["TargetType_%s"%target_name]()}) |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
200 |
return target |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
201 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
202 |
def GetParamsAttributes(self, path = None): |
717 | 203 |
params = ConfigTreeNode.GetParamsAttributes(self, path) |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
204 |
if params[0]["name"] == "BeremizRoot": |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
205 |
for child in params[0]["children"]: |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
206 |
if child["name"] == "TargetType" and child["value"] == '': |
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
207 |
child.update(self.GetTarget().getElementInfos("TargetType")) |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
208 |
return params |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
209 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
210 |
def SetParamsAttribute(self, path, value): |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
211 |
if path.startswith("BeremizRoot.TargetType.") and self.BeremizRoot.getTargetType().getcontent() is None: |
607
c68b662e0c2a
Bug when changing parameters in TargetType section in Beremiz project configuration fixed
laurent
parents:
604
diff
changeset
|
212 |
self.BeremizRoot.setTargetType(self.GetTarget()) |
717 | 213 |
return ConfigTreeNode.SetParamsAttribute(self, path, value) |
427 | 214 |
|
215 |
# helper func to check project path write permission |
|
216 |
def CheckProjectPathPerm(self, dosave=True): |
|
217 |
if CheckPathPerm(self.ProjectPath): |
|
218 |
return True |
|
219 |
dialog = wx.MessageDialog(self.AppFrame, |
|
428
ea09f33ce717
Update internationalization for new functionalities.
laurent
parents:
427
diff
changeset
|
220 |
_('You must have permission to work on the project\nWork on a project copy ?'), |
427 | 221 |
_('Error'), |
222 |
wx.YES_NO | wx.NO_DEFAULT | wx.ICON_QUESTION) |
|
223 |
answer = dialog.ShowModal() |
|
224 |
dialog.Destroy() |
|
225 |
if answer == wx.ID_YES: |
|
226 |
if self.SaveProjectAs(): |
|
227 |
self.AppFrame.RefreshTitle() |
|
534
80f05b17de1e
Bug on FileMenu not refreshed when modifications fixed
laurent
parents:
529
diff
changeset
|
228 |
self.AppFrame.RefreshFileMenu() |
738 | 229 |
self.AppFrame.RefreshPageTitles() |
427 | 230 |
return True |
231 |
return False |
|
20 | 232 |
|
256 | 233 |
def NewProject(self, ProjectPath, BuildPath=None): |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
234 |
""" |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
235 |
Create a new project in an empty folder |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
236 |
@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
|
237 |
@param PLCParams: properties of the PLCOpen program created |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
238 |
""" |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
239 |
# Verify that chosen folder is empty |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
240 |
if not os.path.isdir(ProjectPath) or len(os.listdir(ProjectPath)) > 0: |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
241 |
return _("Chosen folder isn't empty. You can't use it for a new project!") |
20 | 242 |
|
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
243 |
# Create PLCOpen program |
738 | 244 |
self.CreateNewProject( |
245 |
{"projectName": _("Unnamed"), |
|
246 |
"productName": _("Unnamed"), |
|
247 |
"productVersion": _("1"), |
|
248 |
"companyName": _("Unknown"), |
|
249 |
"creationDateTime": datetime(*localtime()[:6])}) |
|
250 |
self.ProjectAddConfiguration("config") |
|
251 |
self.ProjectAddConfigurationResource("config", "resource1") |
|
252 |
||
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
253 |
# Change XSD into class members |
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
254 |
self._AddParamsMembers() |
718 | 255 |
self.Children = {} |
717 | 256 |
# Keep track of the root confnode (i.e. project path) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
257 |
self.ProjectPath = ProjectPath |
427 | 258 |
self._setBuildPath(BuildPath) |
717 | 259 |
# get confnodes bloclist (is that usefull at project creation?) |
260 |
self.RefreshConfNodesBlockLists() |
|
114
2e3d8d4480e7
Now .xml files are automatically created when creating a new project no need to save explicitely.
etisserant
parents:
113
diff
changeset
|
261 |
# 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
|
262 |
self.SaveProject() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
263 |
return None |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
264 |
|
256 | 265 |
def LoadProject(self, ProjectPath, BuildPath=None): |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
266 |
""" |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
267 |
Load a project contained in a folder |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
268 |
@param ProjectPath: path of the project folder |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
269 |
""" |
190 | 270 |
if os.path.basename(ProjectPath) == "": |
271 |
ProjectPath = os.path.dirname(ProjectPath) |
|
203 | 272 |
# Verify that project contains a PLCOpen program |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
273 |
plc_file = os.path.join(ProjectPath, "plc.xml") |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
274 |
if not os.path.isfile(plc_file): |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
275 |
return _("Chosen folder doesn't contain a program. It's not a valid project!") |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
276 |
# Load PLCOpen file |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
277 |
result = self.OpenXMLFile(plc_file) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
278 |
if result: |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
279 |
return result |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
280 |
# Change XSD into class members |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
281 |
self._AddParamsMembers() |
718 | 282 |
self.Children = {} |
717 | 283 |
# Keep track of the root confnode (i.e. project path) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
284 |
self.ProjectPath = ProjectPath |
427 | 285 |
self._setBuildPath(BuildPath) |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
286 |
# If dir have already be made, and file exist |
718 | 287 |
if os.path.isdir(self.CTNPath()) and os.path.isfile(self.ConfNodeXmlFilePath()): |
717 | 288 |
#Load the confnode.xml file into parameters members |
203 | 289 |
result = self.LoadXMLParams() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
290 |
if result: |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
291 |
return result |
718 | 292 |
#Load and init all the children |
293 |
self.LoadChildren() |
|
717 | 294 |
self.RefreshConfNodesBlockLists() |
203 | 295 |
|
296 |
if os.path.exists(self._getBuildPath()): |
|
297 |
self.EnableMethod("_Clean", True) |
|
298 |
||
299 |
if os.path.isfile(self._getIECrawcodepath()): |
|
300 |
self.ShowMethod("_showIECcode", True) |
|
301 |
||
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
302 |
return None |
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
303 |
|
738 | 304 |
def RecursiveConfNodeInfos(self, confnode): |
305 |
values = [] |
|
306 |
for CTNChild in confnode.IECSortedChildren(): |
|
307 |
values.append( |
|
308 |
{"name": "%s: %s" % (CTNChild.GetFullIEC_Channel(), |
|
309 |
CTNChild.CTNName()), |
|
310 |
"type": ITEM_CONFNODE, |
|
311 |
"confnode": CTNChild, |
|
312 |
"icon": CTNChild.GetIconPath(), |
|
313 |
"values": self.RecursiveConfNodeInfos(CTNChild)}) |
|
314 |
return values |
|
315 |
||
316 |
def GetProjectInfos(self): |
|
317 |
infos = PLCControler.GetProjectInfos(self) |
|
318 |
configurations = infos["values"].pop(-1) |
|
319 |
resources = None |
|
320 |
for config_infos in configurations["values"]: |
|
321 |
if resources is None: |
|
322 |
resources = config_infos["values"][0] |
|
323 |
else: |
|
324 |
resources["values"].extend(config_infos["values"][0]["values"]) |
|
325 |
if resources is not None: |
|
326 |
infos["values"].append(resources) |
|
327 |
infos["values"].extend(self.RecursiveConfNodeInfos(self)) |
|
328 |
return infos |
|
329 |
||
403 | 330 |
def CloseProject(self): |
718 | 331 |
self.ClearChildren() |
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
332 |
self.ResetAppFrame(None) |
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
333 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
334 |
def SaveProject(self): |
427 | 335 |
if self.CheckProjectPathPerm(False): |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
336 |
self.SaveXMLFile(os.path.join(self.ProjectPath, 'plc.xml')) |
718 | 337 |
result = self.CTNRequestSave() |
427 | 338 |
if result: |
339 |
self.logger.write_error(result) |
|
340 |
||
341 |
def SaveProjectAs(self, dosave=True): |
|
342 |
# Ask user to choose a path with write permissions |
|
529 | 343 |
if wx.Platform == '__WXMSW__': |
344 |
path = os.getenv("USERPROFILE") |
|
345 |
else: |
|
346 |
path = os.getenv("HOME") |
|
347 |
dirdialog = wx.DirDialog(self.AppFrame , _("Choose a directory to save project"), path, wx.DD_NEW_DIR_BUTTON) |
|
427 | 348 |
answer = dirdialog.ShowModal() |
349 |
dirdialog.Destroy() |
|
350 |
if answer == wx.ID_OK: |
|
351 |
newprojectpath = dirdialog.GetPath() |
|
352 |
if os.path.isdir(newprojectpath): |
|
353 |
self.ProjectPath = newprojectpath |
|
354 |
if dosave: |
|
355 |
self.SaveProject() |
|
356 |
self._setBuildPath(self.BuildPath) |
|
357 |
return True |
|
358 |
return False |
|
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
359 |
|
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
360 |
def GetLibrariesTypes(self): |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
361 |
self.LoadLibraries() |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
362 |
return [ lib.GetTypes() for lib in self.Libraries ] |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
363 |
|
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
364 |
def GetLibrariesSTCode(self): |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
365 |
return "\n".join([ lib.GetSTCode() for lib in self.Libraries ]) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
366 |
|
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
367 |
def GetLibrariesCCode(self, buildpath): |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
368 |
self.GetIECProgramsAndVariables() |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
369 |
LibIECCflags = '"-I%s"'%os.path.abspath(self.GetIECLibPath()) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
370 |
LocatedCCodeAndFlags=[] |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
371 |
Extras=[] |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
372 |
for lib in self.Libraries: |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
373 |
res=lib.Generate_C(buildpath,self._VariablesList,LibIECCflags) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
374 |
LocatedCCodeAndFlags.append(res[:2]) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
375 |
if len(res)>2: |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
376 |
Extras.append(res[2:]) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
377 |
return map(list,zip(*LocatedCCodeAndFlags))+[tuple(Extras)] |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
378 |
|
717 | 379 |
# Update PLCOpenEditor ConfNode Block types from loaded confnodes |
380 |
def RefreshConfNodesBlockLists(self): |
|
718 | 381 |
if getattr(self, "Children", None) is not None: |
717 | 382 |
self.ClearConfNodeTypes() |
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
383 |
self.AddConfNodeTypesList(self.GetLibrariesTypes()) |
395 | 384 |
if self.AppFrame is not None: |
716
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
385 |
self.AppFrame.RefreshLibraryPanel() |
395 | 386 |
self.AppFrame.RefreshEditor() |
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
387 |
|
443
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
388 |
# Update a PLCOpenEditor Pou variable location |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
389 |
def UpdateProjectVariableLocation(self, old_leading, new_leading): |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
390 |
self.Project.updateElementAddress(old_leading, new_leading) |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
391 |
self.BufferProject() |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
392 |
if self.AppFrame is not None: |
468 | 393 |
self.AppFrame.RefreshTitle() |
730 | 394 |
self.AppFrame.RefreshPouInstanceVariablesPanel() |
468 | 395 |
self.AppFrame.RefreshFileMenu() |
396 |
self.AppFrame.RefreshEditMenu() |
|
443
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
397 |
self.AppFrame.RefreshEditor() |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
398 |
|
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
399 |
def GetVariableLocationTree(self): |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
400 |
''' |
717 | 401 |
This function is meant to be overridden by confnodes. |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
402 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
403 |
It should returns an list of dictionaries |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
404 |
|
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
405 |
- IEC_type is an IEC type like BOOL/BYTE/SINT/... |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
406 |
- location is a string of this variable's location, like "%IX0.0.0" |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
407 |
''' |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
408 |
children = [] |
718 | 409 |
for child in self.IECSortedChildren(): |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
410 |
children.append(child.GetVariableLocationTree()) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
411 |
return children |
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
412 |
|
717 | 413 |
def ConfNodePath(self): |
721 | 414 |
return os.path.split(__file__)[0] |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
415 |
|
718 | 416 |
def CTNPath(self, CTNName=None): |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
417 |
return self.ProjectPath |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
418 |
|
718 | 419 |
def ConfNodeXmlFilePath(self, CTNName=None): |
420 |
return os.path.join(self.CTNPath(CTNName), "beremiz.xml") |
|
18 | 421 |
|
669
472469f4d5ad
Adding support for loading datatypes defined in plugins to allow to use them in PLC program
laurent
parents:
661
diff
changeset
|
422 |
def ParentsTypesFactory(self): |
717 | 423 |
return self.ConfNodeTypesFactory() |
363
e0c4d3549369
Adding support for recursively generate STLibrary and BlockLibrary according to plugin tree
laurent
parents:
361
diff
changeset
|
424 |
|
427 | 425 |
def _setBuildPath(self, buildpath): |
426 |
if CheckPathPerm(buildpath): |
|
427 |
self.BuildPath = buildpath |
|
428 |
else: |
|
429 |
self.BuildPath = None |
|
430 |
self.BuildPath = buildpath |
|
431 |
self.DefaultBuildPath = None |
|
432 |
if self._builder is not None: |
|
433 |
self._builder.SetBuildPath(self._getBuildPath()) |
|
434 |
||
20 | 435 |
def _getBuildPath(self): |
427 | 436 |
# BuildPath is defined by user |
437 |
if self.BuildPath is not None: |
|
438 |
return self.BuildPath |
|
439 |
# BuildPath isn't defined by user but already created by default |
|
440 |
if self.DefaultBuildPath is not None: |
|
441 |
return self.DefaultBuildPath |
|
442 |
# Create a build path in project folder if user has permissions |
|
443 |
if CheckPathPerm(self.ProjectPath): |
|
444 |
self.DefaultBuildPath = os.path.join(self.ProjectPath, "build") |
|
445 |
# Create a build path in temp folder |
|
446 |
else: |
|
447 |
self.DefaultBuildPath = os.path.join(tempfile.mkdtemp(), os.path.basename(self.ProjectPath), "build") |
|
448 |
||
449 |
if not os.path.exists(self.DefaultBuildPath): |
|
450 |
os.makedirs(self.DefaultBuildPath) |
|
451 |
return self.DefaultBuildPath |
|
20 | 452 |
|
203 | 453 |
def _getExtraFilesPath(self): |
454 |
return os.path.join(self._getBuildPath(), "extra_files") |
|
455 |
||
20 | 456 |
def _getIECcodepath(self): |
457 |
# define name for IEC code file |
|
458 |
return os.path.join(self._getBuildPath(), "plc.st") |
|
459 |
||
65 | 460 |
def _getIECgeneratedcodepath(self): |
461 |
# define name for IEC generated code file |
|
462 |
return os.path.join(self._getBuildPath(), "generated_plc.st") |
|
463 |
||
464 |
def _getIECrawcodepath(self): |
|
465 |
# define name for IEC raw code file |
|
718 | 466 |
return os.path.join(self.CTNPath(), "raw_plc.st") |
65 | 467 |
|
97 | 468 |
def GetLocations(self): |
469 |
locations = [] |
|
470 |
filepath = os.path.join(self._getBuildPath(),"LOCATED_VARIABLES.h") |
|
471 |
if os.path.isfile(filepath): |
|
472 |
# IEC2C compiler generate a list of located variables : LOCATED_VARIABLES.h |
|
473 |
location_file = open(os.path.join(self._getBuildPath(),"LOCATED_VARIABLES.h")) |
|
474 |
# each line of LOCATED_VARIABLES.h declares a located variable |
|
475 |
lines = [line.strip() for line in location_file.readlines()] |
|
476 |
# This regular expression parses the lines genereated by IEC2C |
|
348
054fbf1ae0f8
Bug while parsing long located variables in GetLocations fixed
lbessard
parents:
338
diff
changeset
|
477 |
LOCATED_MODEL = re.compile("__LOCATED_VAR\((?P<IEC_TYPE>[A-Z]*),(?P<NAME>[_A-Za-z0-9]*),(?P<DIR>[QMI])(?:,(?P<SIZE>[XBWDL]))?,(?P<LOC>[,0-9]*)\)") |
97 | 478 |
for line in lines: |
479 |
# If line match RE, |
|
480 |
result = LOCATED_MODEL.match(line) |
|
481 |
if result: |
|
482 |
# Get the resulting dict |
|
483 |
resdict = result.groupdict() |
|
484 |
# rewrite string for variadic location as a tuple of integers |
|
485 |
resdict['LOC'] = tuple(map(int,resdict['LOC'].split(','))) |
|
486 |
# set located size to 'X' if not given |
|
487 |
if not resdict['SIZE']: |
|
488 |
resdict['SIZE'] = 'X' |
|
489 |
# finally store into located variable list |
|
490 |
locations.append(resdict) |
|
491 |
return locations |
|
492 |
||
203 | 493 |
def _Generate_SoftPLC(self): |
20 | 494 |
""" |
64 | 495 |
Generate SoftPLC ST/IL/SFC code out of PLCOpenEditor controller, and compile it with IEC2C |
20 | 496 |
@param buildpath: path where files should be created |
497 |
""" |
|
498 |
||
717 | 499 |
# Update PLCOpenEditor ConfNode Block types before generate ST code |
500 |
self.RefreshConfNodesBlockLists() |
|
41
1608a434fb8c
Adding support for refreshing PLCOpenEditor block list
lbessard
parents:
40
diff
changeset
|
501 |
|
361 | 502 |
self.logger.write(_("Generating SoftPLC IEC-61131 ST/IL/SFC code...\n")) |
20 | 503 |
buildpath = self._getBuildPath() |
504 |
# ask PLCOpenEditor controller to write ST/IL/SFC code file |
|
309
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
505 |
program, errors, warnings = self.GenerateProgram(self._getIECgeneratedcodepath()) |
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
506 |
if len(warnings) > 0: |
361 | 507 |
self.logger.write_warning(_("Warnings in ST/IL/SFC code generator :\n")) |
309
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
508 |
for warning in warnings: |
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
509 |
self.logger.write_warning("%s\n"%warning) |
6eb074f0dae9
Adding support for cancelling code generation of function with no input connected
lbessard
parents:
304
diff
changeset
|
510 |
if len(errors) > 0: |
20 | 511 |
# Failed ! |
361 | 512 |
self.logger.write_error(_("Error in ST/IL/SFC code generator :\n%s\n")%errors[0]) |
20 | 513 |
return False |
65 | 514 |
plc_file = open(self._getIECcodepath(), "w") |
717 | 515 |
# Add ST Library from confnodes |
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
516 |
plc_file.write(self.GetLibrariesSTCode()) |
65 | 517 |
if os.path.isfile(self._getIECrawcodepath()): |
518 |
plc_file.write(open(self._getIECrawcodepath(), "r").read()) |
|
519 |
plc_file.write("\n") |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
520 |
plc_file.close() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
521 |
plc_file = open(self._getIECcodepath(), "r") |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
522 |
self.ProgramOffset = 0 |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
523 |
for line in plc_file.xreadlines(): |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
524 |
self.ProgramOffset += 1 |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
525 |
plc_file.close() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
526 |
plc_file = open(self._getIECcodepath(), "a") |
65 | 527 |
plc_file.write(open(self._getIECgeneratedcodepath(), "r").read()) |
528 |
plc_file.close() |
|
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
529 |
|
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
530 |
self.logger.write(_("Compiling IEC Program into C code...\n")) |
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
531 |
|
20 | 532 |
# Now compile IEC code into many C files |
533 |
# 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
|
534 |
status, result, err_result = ProcessLogger( |
203 | 535 |
self.logger, |
351 | 536 |
"\"%s\" -f -I \"%s\" -T \"%s\" \"%s\""%( |
418 | 537 |
self.iec2c_path, |
538 |
self.ieclib_path, |
|
351 | 539 |
buildpath, |
540 |
self._getIECcodepath()), |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
541 |
no_stdout=True, no_stderr=True).spin() |
20 | 542 |
if status: |
543 |
# Failed ! |
|
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
544 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
545 |
# parse iec2c's error message. if it contains a line number, |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
546 |
# then print those lines from the generated IEC file. |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
547 |
for err_line in err_result.split('\n'): |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
548 |
self.logger.write_warning(err_line + "\n") |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
549 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
550 |
m_result = MATIEC_ERROR_MODEL.match(err_line) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
551 |
if m_result is not None: |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
552 |
first_line, first_column, last_line, last_column, error = m_result.groups() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
553 |
first_line, last_line = int(first_line), int(last_line) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
554 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
555 |
last_section = None |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
556 |
f = open(self._getIECcodepath()) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
557 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
558 |
for i, line in enumerate(f.readlines()): |
661
5d3da49e8029
Fixing bug in displaying lines of code at the origin of matiec errors
laurent
parents:
656
diff
changeset
|
559 |
i = i + 1 |
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
560 |
if line[0] not in '\t \r\n': |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
561 |
last_section = line |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
562 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
563 |
if first_line <= i <= last_line: |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
564 |
if last_section is not None: |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
565 |
self.logger.write_warning("In section: " + last_section) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
566 |
last_section = None # only write section once |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
567 |
self.logger.write_warning("%04d: %s" % (i, line)) |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
568 |
|
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
569 |
f.close() |
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
570 |
|
361 | 571 |
self.logger.write_error(_("Error : IEC to C compiler returned %d\n")%status) |
20 | 572 |
return False |
356
e9698d0ee5f3
Adding support for printing lines where matiec failed in Log console (thanks to Brendan)
lbessard
parents:
355
diff
changeset
|
573 |
|
20 | 574 |
# Now extract C files of stdout |
113 | 575 |
C_files = [ fname for fname in result.splitlines() if fname[-2:]==".c" or fname[-2:]==".C" ] |
20 | 576 |
# remove those that are not to be compiled because included by others |
577 |
C_files.remove("POUS.c") |
|
115 | 578 |
if not C_files: |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
579 |
self.logger.write_error(_("Error : At least one configuration and one resource must be declared in PLC !\n")) |
115 | 580 |
return False |
20 | 581 |
# transform those base names to full names with path |
23 | 582 |
C_files = map(lambda filename:os.path.join(buildpath, filename), C_files) |
361 | 583 |
self.logger.write(_("Extracting Located Variables...\n")) |
97 | 584 |
# Keep track of generated located variables for later use by self._Generate_C |
585 |
self.PLCGeneratedLocatedVars = self.GetLocations() |
|
718 | 586 |
# Keep track of generated C files for later use by self.CTNGenerate_C |
18 | 587 |
self.PLCGeneratedCFiles = C_files |
49
45dc6a944ab6
On the long wat towards generated code comilation...
etisserant
parents:
47
diff
changeset
|
588 |
# compute CFLAGS for plc |
418 | 589 |
self.plcCFLAGS = "\"-I"+self.ieclib_path+"\"" |
18 | 590 |
return True |
591 |
||
203 | 592 |
def GetBuilder(self): |
593 |
""" |
|
594 |
Return a Builder (compile C code into machine code) |
|
595 |
""" |
|
596 |
# Get target, module and class name |
|
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
597 |
targetname = self.GetTarget().getcontent()["name"] |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
732
diff
changeset
|
598 |
targetclass = targets.GetBuilder(targetname) |
203 | 599 |
|
600 |
# if target already |
|
601 |
if self._builder is None or not isinstance(self._builder,targetclass): |
|
602 |
# Get classname instance |
|
603 |
self._builder = targetclass(self) |
|
604 |
return self._builder |
|
605 |
||
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
606 |
def ResetBuildMD5(self): |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
607 |
builder=self.GetBuilder() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
608 |
if builder is not None: |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
609 |
builder.ResetBinaryCodeMD5() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
610 |
self.EnableMethod("_Transfer", False) |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
611 |
|
203 | 612 |
def GetLastBuildMD5(self): |
613 |
builder=self.GetBuilder() |
|
614 |
if builder is not None: |
|
615 |
return builder.GetBinaryCodeMD5() |
|
616 |
else: |
|
617 |
return None |
|
618 |
||
619 |
####################################################################### |
|
620 |
# |
|
621 |
# C CODE GENERATION METHODS |
|
622 |
# |
|
623 |
####################################################################### |
|
624 |
||
718 | 625 |
def CTNGenerate_C(self, buildpath, locations): |
203 | 626 |
""" |
627 |
Return C code generated by iec2c compiler |
|
628 |
when _generate_softPLC have been called |
|
629 |
@param locations: ignored |
|
630 |
@return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND |
|
631 |
""" |
|
283
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
632 |
|
366
cd90e4c10261
Move python evaluator to create a python plugin containing any related python module
laurent
parents:
363
diff
changeset
|
633 |
return ([(C_file_name, self.plcCFLAGS) |
283
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
634 |
for C_file_name in self.PLCGeneratedCFiles ], |
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
635 |
"", # no ldflags |
d0e6fc0701fb
Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
280
diff
changeset
|
636 |
False) # do not expose retreive/publish calls |
203 | 637 |
|
638 |
def ResetIECProgramsAndVariables(self): |
|
639 |
""" |
|
640 |
Reset variable and program list that are parsed from |
|
641 |
CSV file generated by IEC2C compiler. |
|
642 |
""" |
|
643 |
self._ProgramList = None |
|
644 |
self._VariablesList = None |
|
532
a822b0b64252
Fixed startin debugger with non empty debug variable list
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
529
diff
changeset
|
645 |
self._IECPathToIdx = {} |
670
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
646 |
self._Ticktime = 0 |
235 | 647 |
self.TracedIECPath = [] |
648 |
||
203 | 649 |
def GetIECProgramsAndVariables(self): |
650 |
""" |
|
651 |
Parse CSV-like file VARIABLES.csv resulting from IEC2C compiler. |
|
652 |
Each section is marked with a line staring with '//' |
|
653 |
list of all variables used in various POUs |
|
654 |
""" |
|
655 |
if self._ProgramList is None or self._VariablesList is None: |
|
656 |
try: |
|
657 |
csvfile = os.path.join(self._getBuildPath(),"VARIABLES.csv") |
|
658 |
# describes CSV columns |
|
659 |
ProgramsListAttributeName = ["num", "C_path", "type"] |
|
660 |
VariablesListAttributeName = ["num", "vartype", "IEC_path", "C_path", "type"] |
|
661 |
self._ProgramList = [] |
|
662 |
self._VariablesList = [] |
|
663 |
self._IECPathToIdx = {} |
|
664 |
||
665 |
# Separate sections |
|
666 |
ListGroup = [] |
|
667 |
for line in open(csvfile,'r').xreadlines(): |
|
668 |
strippedline = line.strip() |
|
669 |
if strippedline.startswith("//"): |
|
670 |
# Start new section |
|
671 |
ListGroup.append([]) |
|
672 |
elif len(strippedline) > 0 and len(ListGroup) > 0: |
|
673 |
# append to this section |
|
674 |
ListGroup[-1].append(strippedline) |
|
675 |
||
676 |
# first section contains programs |
|
677 |
for line in ListGroup[0]: |
|
678 |
# Split and Maps each field to dictionnary entries |
|
679 |
attrs = dict(zip(ProgramsListAttributeName,line.strip().split(';'))) |
|
680 |
# Truncate "C_path" to remove conf an ressources names |
|
681 |
attrs["C_path"] = '__'.join(attrs["C_path"].split(".",2)[1:]) |
|
682 |
# Push this dictionnary into result. |
|
683 |
self._ProgramList.append(attrs) |
|
684 |
||
685 |
# second section contains all variables |
|
686 |
for line in ListGroup[1]: |
|
687 |
# Split and Maps each field to dictionnary entries |
|
688 |
attrs = dict(zip(VariablesListAttributeName,line.strip().split(';'))) |
|
689 |
# Truncate "C_path" to remove conf an ressources names |
|
639
85dad46ae0f6
Fixing bug that prevent to use global variables in configuration
laurent
parents:
630
diff
changeset
|
690 |
parts = attrs["C_path"].split(".",2) |
85dad46ae0f6
Fixing bug that prevent to use global variables in configuration
laurent
parents:
630
diff
changeset
|
691 |
if len(parts) > 2: |
85dad46ae0f6
Fixing bug that prevent to use global variables in configuration
laurent
parents:
630
diff
changeset
|
692 |
attrs["C_path"] = '__'.join(parts[1:]) |
85dad46ae0f6
Fixing bug that prevent to use global variables in configuration
laurent
parents:
630
diff
changeset
|
693 |
else: |
85dad46ae0f6
Fixing bug that prevent to use global variables in configuration
laurent
parents:
630
diff
changeset
|
694 |
attrs["C_path"] = '__'.join(parts) |
203 | 695 |
# Push this dictionnary into result. |
696 |
self._VariablesList.append(attrs) |
|
697 |
# Fill in IEC<->C translation dicts |
|
698 |
IEC_path=attrs["IEC_path"] |
|
699 |
Idx=int(attrs["num"]) |
|
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
700 |
self._IECPathToIdx[IEC_path]=(Idx, attrs["type"]) |
670
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
701 |
|
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
702 |
# third section contains ticktime |
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
703 |
if len(ListGroup) > 2: |
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
704 |
self._Ticktime = int(ListGroup[2][0]) |
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
705 |
|
203 | 706 |
except Exception,e: |
361 | 707 |
self.logger.write_error(_("Cannot open/parse VARIABLES.csv!\n")) |
203 | 708 |
self.logger.write_error(traceback.format_exc()) |
709 |
self.ResetIECProgramsAndVariables() |
|
710 |
return False |
|
711 |
||
712 |
return True |
|
713 |
||
714 |
def Generate_plc_debugger(self): |
|
715 |
""" |
|
716 |
Generate trace/debug code out of PLC variable list |
|
717 |
""" |
|
718 |
self.GetIECProgramsAndVariables() |
|
719 |
||
720 |
# prepare debug code |
|
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
732
diff
changeset
|
721 |
debug_code = targets.GetCode("plc_debug") % { |
335
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
722 |
"buffer_size": reduce(lambda x, y: x + y, [DebugTypesSize.get(v["type"], 0) for v in self._VariablesList], 0), |
203 | 723 |
"programs_declarations": |
724 |
"\n".join(["extern %(type)s %(C_path)s;"%p for p in self._ProgramList]), |
|
725 |
"extern_variables_declarations":"\n".join([ |
|
506
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
726 |
{"EXT":"extern __IEC_%(type)s_p %(C_path)s;", |
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
727 |
"IN":"extern __IEC_%(type)s_p %(C_path)s;", |
601
d0e3fc4b9951
Fix bug when debugging located variables of type memory (%M)
laurent
parents:
592
diff
changeset
|
728 |
"MEM":"extern __IEC_%(type)s_p %(C_path)s;", |
506
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
729 |
"OUT":"extern __IEC_%(type)s_p %(C_path)s;", |
463
961bddcfc913
Adding support for forcing PLC variable (still command to PLC to implement)
laurent
parents:
462
diff
changeset
|
730 |
"VAR":"extern __IEC_%(type)s_t %(C_path)s;"}[v["vartype"]]%v |
275 | 731 |
for v in self._VariablesList if v["vartype"] != "FB" and v["C_path"].find('.')<0]), |
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
732 |
"for_each_variable_do_code":"\n".join([ |
506
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
733 |
{"EXT":" (*fp)((void*)&%(C_path)s,%(type)s_P_ENUM);\n", |
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
734 |
"IN":" (*fp)((void*)&%(C_path)s,%(type)s_P_ENUM);\n", |
604
5b1c92060fc2
memory located variables no behave like outputs, when forced
Edouard Tisserant
parents:
601
diff
changeset
|
735 |
"MEM":" (*fp)((void*)&%(C_path)s,%(type)s_O_ENUM);\n", |
511 | 736 |
"OUT":" (*fp)((void*)&%(C_path)s,%(type)s_O_ENUM);\n", |
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
737 |
"VAR":" (*fp)((void*)&%(C_path)s,%(type)s_ENUM);\n"}[v["vartype"]]%v |
592 | 738 |
for v in self._VariablesList if v["vartype"] != "FB" and v["type"] in DebugTypesSize ]), |
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
739 |
"find_variable_case_code":"\n".join([ |
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
740 |
" case %(num)s:\n"%v+ |
458
dfc6164e4022
Debugger still doesn't work crash less...
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
457
diff
changeset
|
741 |
" *varp = (void*)&%(C_path)s;\n"%v+ |
506
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
742 |
{"EXT":" return %(type)s_P_ENUM;\n", |
24629d4fc805
Adding support for making distinction between external variables and located variables for forcing
laurent
parents:
496
diff
changeset
|
743 |
"IN":" return %(type)s_P_ENUM;\n", |
604
5b1c92060fc2
memory located variables no behave like outputs, when forced
Edouard Tisserant
parents:
601
diff
changeset
|
744 |
"MEM":" return %(type)s_O_ENUM;\n", |
511 | 745 |
"OUT":" return %(type)s_O_ENUM;\n", |
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
746 |
"VAR":" return %(type)s_ENUM;\n"}[v["vartype"]]%v |
592 | 747 |
for v in self._VariablesList if v["vartype"] != "FB" and v["type"] in DebugTypesSize ])} |
203 | 748 |
|
749 |
return debug_code |
|
750 |
||
751 |
def Generate_plc_common_main(self): |
|
752 |
""" |
|
717 | 753 |
Use confnodes layout given in LocationCFilesAndCFLAGS to |
754 |
generate glue code that dispatch calls to all confnodes |
|
203 | 755 |
""" |
756 |
# filter location that are related to code that will be called |
|
757 |
# in retreive, publish, init, cleanup |
|
758 |
locstrs = map(lambda x:"_".join(map(str,x)), |
|
759 |
[loc for loc,Cfiles,DoCalls in self.LocationCFilesAndCFLAGS if loc and DoCalls]) |
|
760 |
||
761 |
# Generate main, based on template |
|
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
762 |
if not self.BeremizRoot.getDisable_Extensions(): |
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
732
diff
changeset
|
763 |
plc_main_code = targets.GetCode("plc_common_main") % { |
338 | 764 |
"calls_prototypes":"\n".join([( |
765 |
"int __init_%(s)s(int argc,char **argv);\n"+ |
|
418 | 766 |
"void __cleanup_%(s)s(void);\n"+ |
767 |
"void __retrieve_%(s)s(void);\n"+ |
|
768 |
"void __publish_%(s)s(void);")%{'s':locstr} for locstr in locstrs]), |
|
338 | 769 |
"retrieve_calls":"\n ".join([ |
694
fb55fbee202c
Inverting order of plugin calls in retrieve and publish
laurent
parents:
692
diff
changeset
|
770 |
"__retrieve_%s();"%locstrs[i-1] for i in xrange(len(locstrs), 0, -1)]), |
338 | 771 |
"publish_calls":"\n ".join([ #Call publish in reverse order |
694
fb55fbee202c
Inverting order of plugin calls in retrieve and publish
laurent
parents:
692
diff
changeset
|
772 |
"__publish_%s();"%locstr for locstr in locstrs]), |
338 | 773 |
"init_calls":"\n ".join([ |
774 |
"init_level=%d; "%(i+1)+ |
|
423 | 775 |
"if((res = __init_%s(argc,argv))){"%locstr + |
338 | 776 |
#"printf(\"%s\"); "%locstr + #for debug |
777 |
"return res;}" for i,locstr in enumerate(locstrs)]), |
|
778 |
"cleanup_calls":"\n ".join([ |
|
779 |
"if(init_level >= %d) "%i+ |
|
780 |
"__cleanup_%s();"%locstrs[i-1] for i in xrange(len(locstrs), 0, -1)]) |
|
781 |
} |
|
782 |
else: |
|
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
732
diff
changeset
|
783 |
plc_main_code = targets.GetCode("plc_common_main") % { |
338 | 784 |
"calls_prototypes":"\n", |
785 |
"retrieve_calls":"\n", |
|
786 |
"publish_calls":"\n", |
|
787 |
"init_calls":"\n", |
|
788 |
"cleanup_calls":"\n" |
|
789 |
} |
|
733
915be999f3f0
targets and connectors are nor extensible
Edouard Tisserant
parents:
732
diff
changeset
|
790 |
plc_main_code += targets.GetTargetCode(self.GetTarget().getcontent()["name"]) |
203 | 791 |
return plc_main_code |
792 |
||
793 |
||
623
8cdb533c3c7a
A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents:
619
diff
changeset
|
794 |
def _Build(self): |
20 | 795 |
""" |
717 | 796 |
Method called by user to (re)build SoftPLC and confnode tree |
20 | 797 |
""" |
395 | 798 |
if self.AppFrame is not None: |
799 |
self.AppFrame.ClearErrors() |
|
202
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
800 |
|
20 | 801 |
buildpath = self._getBuildPath() |
802 |
||
803 |
# Eventually create build dir |
|
18 | 804 |
if not os.path.exists(buildpath): |
805 |
os.mkdir(buildpath) |
|
203 | 806 |
# 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
|
807 |
self.EnableMethod("_Clean", True) |
203 | 808 |
|
809 |
self.logger.flush() |
|
361 | 810 |
self.logger.write(_("Start build in %s\n") % buildpath) |
203 | 811 |
|
812 |
# Generate SoftPLC IEC code |
|
813 |
IECGenRes = self._Generate_SoftPLC() |
|
814 |
self.ShowMethod("_showIECcode", True) |
|
815 |
||
816 |
# If IEC code gen fail, bail out. |
|
817 |
if not IECGenRes: |
|
361 | 818 |
self.logger.write_error(_("IEC-61131-3 code generation failed !\n")) |
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
819 |
self.ResetBuildMD5() |
20 | 820 |
return False |
821 |
||
203 | 822 |
# Reset variable and program list that are parsed from |
823 |
# CSV file generated by IEC2C compiler. |
|
824 |
self.ResetIECProgramsAndVariables() |
|
18 | 825 |
|
717 | 826 |
# Generate C code and compilation params from confnode hierarchy |
24 | 827 |
try: |
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
828 |
CTNLocationCFilesAndCFLAGS, CTNLDFLAGS, CTNExtraFiles = self._Generate_C( |
24 | 829 |
buildpath, |
203 | 830 |
self.PLCGeneratedLocatedVars) |
178
2390b409eb93
Added PLC tick alignement on external synchronization source feature.
etisserant
parents:
176
diff
changeset
|
831 |
except Exception, exc: |
721 | 832 |
self.logger.write_error(_("Runtime extensions C code generation failed !\n")) |
203 | 833 |
self.logger.write_error(traceback.format_exc()) |
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
834 |
self.ResetBuildMD5() |
24 | 835 |
return False |
18 | 836 |
|
728
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
837 |
# Generate C code and compilation params from liraries |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
838 |
try: |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
839 |
LibCFilesAndCFLAGS, LibLDFLAGS, LibExtraFiles = self.GetLibrariesCCode(buildpath) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
840 |
except Exception, exc: |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
841 |
self.logger.write_error(_("Runtime extensions C code generation failed !\n")) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
842 |
self.logger.write_error(traceback.format_exc()) |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
843 |
self.ResetBuildMD5() |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
844 |
return False |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
845 |
|
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
846 |
self.LocationCFilesAndCFLAGS = CTNLocationCFilesAndCFLAGS + LibCFilesAndCFLAGS |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
847 |
self.LDFLAGS = CTNLDFLAGS + LibLDFLAGS |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
848 |
ExtraFiles = CTNExtraFiles + LibExtraFiles |
e0424e96e3fd
refactoring - library support is not anymore attached to configtree nodes, but handles by project controller
Edouard Tisserant
parents:
726
diff
changeset
|
849 |
|
361 | 850 |
# Get temporary directory path |
203 | 851 |
extrafilespath = self._getExtraFilesPath() |
852 |
# Remove old directory |
|
853 |
if os.path.exists(extrafilespath): |
|
854 |
shutil.rmtree(extrafilespath) |
|
855 |
# Recreate directory |
|
856 |
os.mkdir(extrafilespath) |
|
857 |
# Then write the files |
|
858 |
for fname,fobject in ExtraFiles: |
|
859 |
fpath = os.path.join(extrafilespath,fname) |
|
860 |
open(fpath, "wb").write(fobject.read()) |
|
861 |
# Now we can forget ExtraFiles (will close files object) |
|
862 |
del ExtraFiles |
|
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
506
diff
changeset
|
863 |
|
203 | 864 |
# Template based part of C code generation |
717 | 865 |
# files are stacked at the beginning, as files of confnode tree root |
203 | 866 |
for generator, filename, name in [ |
867 |
# debugger code |
|
868 |
(self.Generate_plc_debugger, "plc_debugger.c", "Debugger"), |
|
869 |
# init/cleanup/retrieve/publish, run and align code |
|
870 |
(self.Generate_plc_common_main,"plc_common_main.c","Common runtime")]: |
|
871 |
try: |
|
872 |
# Do generate |
|
873 |
code = generator() |
|
335
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
874 |
if code is None: |
c5f3f71e7260
fixed bug : buffer overflow when debugging PLC with python blocks
greg
parents:
334
diff
changeset
|
875 |
raise |
203 | 876 |
code_path = os.path.join(buildpath,filename) |
877 |
open(code_path, "w").write(code) |
|
717 | 878 |
# Insert this file as first file to be compiled at root confnode |
203 | 879 |
self.LocationCFilesAndCFLAGS[0][1].insert(0,(code_path, self.plcCFLAGS)) |
880 |
except Exception, exc: |
|
361 | 881 |
self.logger.write_error(name+_(" generation failed !\n")) |
203 | 882 |
self.logger.write_error(traceback.format_exc()) |
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
883 |
self.ResetBuildMD5() |
203 | 884 |
return False |
885 |
||
361 | 886 |
self.logger.write(_("C code generated successfully.\n")) |
203 | 887 |
|
888 |
# Get current or fresh builder |
|
889 |
builder = self.GetBuilder() |
|
890 |
if builder is None: |
|
361 | 891 |
self.logger.write_error(_("Fatal : cannot get builder.\n")) |
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
892 |
self.ResetBuildMD5() |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
893 |
return False |
203 | 894 |
|
895 |
# Build |
|
896 |
try: |
|
897 |
if not builder.build() : |
|
361 | 898 |
self.logger.write_error(_("C Build failed.\n")) |
203 | 899 |
return False |
900 |
except Exception, exc: |
|
361 | 901 |
self.logger.write_error(_("C Build crashed !\n")) |
203 | 902 |
self.logger.write_error(traceback.format_exc()) |
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
676
diff
changeset
|
903 |
self.ResetBuildMD5() |
203 | 904 |
return False |
905 |
||
624
8e74266033f8
Updated console messages for build and stop
Edouard Tisserant
parents:
623
diff
changeset
|
906 |
self.logger.write(_("Successfully built.\n")) |
203 | 907 |
# Update GUI status about need for transfer |
908 |
self.CompareLocalAndRemotePLC() |
|
49
45dc6a944ab6
On the long wat towards generated code comilation...
etisserant
parents:
47
diff
changeset
|
909 |
return True |
202
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
910 |
|
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
911 |
def ShowError(self, logger, from_location, to_location): |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
912 |
chunk_infos = self.GetChunkInfos(from_location, to_location) |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
913 |
for infos, (start_row, start_col) in chunk_infos: |
cd81a7a6e55c
Adding support for highlighing compiling errors into PLCOpenEditor
lbessard
parents:
199
diff
changeset
|
914 |
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
|
915 |
end = (to_location[0] - start_row, to_location[1] - start_col) |
707
6880c88e499e
Fix bug in debugger when transfer without having build before and and opening debug view before running PLC
laurent
parents:
703
diff
changeset
|
916 |
#print from_location, to_location, start_row, start_col, start, end |
396 | 917 |
if self.AppFrame is not None: |
918 |
self.AppFrame.ShowError(infos, start, end) |
|
203 | 919 |
|
920 |
def _showIECcode(self): |
|
716
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
921 |
self._OpenView("IEC code") |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
922 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
923 |
def _editIECrawcode(self): |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
924 |
self._OpenView("IEC raw code") |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
925 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
926 |
def _OpenView(self, name=None): |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
927 |
if name == "IEC code": |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
928 |
plc_file = self._getIECcodepath() |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
929 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
930 |
IEC_code_viewer = TextViewer(self.AppFrame.TabsOpened, "", None, None, instancepath=name) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
931 |
#IEC_code_viewer.Enable(False) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
932 |
IEC_code_viewer.SetTextSyntax("ALL") |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
933 |
IEC_code_viewer.SetKeywords(IEC_KEYWORDS) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
934 |
try: |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
935 |
text = file(plc_file).read() |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
936 |
except: |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
937 |
text = '(* No IEC code have been generated at that time ! *)' |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
938 |
IEC_code_viewer.SetText(text = text) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
939 |
IEC_code_viewer.SetIcon(self.AppFrame.GenerateBitmap("ST")) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
940 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
941 |
self.AppFrame.EditProjectElement(IEC_code_viewer, name) |
65 | 942 |
|
716
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
943 |
return IEC_code_viewer |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
944 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
945 |
elif name == "IEC raw code": |
742
41a4a560406c
Fixed runtime problems with python 2.6 without wx installed
Edouard Tisserant
parents:
740
diff
changeset
|
946 |
controler = MiniTextControler(self._getIECrawcodepath()) |
716
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
947 |
IEC_raw_code_viewer = TextViewer(self.AppFrame.TabsOpened, "", None, controler, instancepath=name) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
948 |
#IEC_raw_code_viewer.Enable(False) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
949 |
IEC_raw_code_viewer.SetTextSyntax("ALL") |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
950 |
IEC_raw_code_viewer.SetKeywords(IEC_KEYWORDS) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
951 |
IEC_raw_code_viewer.RefreshView() |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
952 |
IEC_raw_code_viewer.SetIcon(self.AppFrame.GenerateBitmap("ST")) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
953 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
954 |
self.AppFrame.EditProjectElement(IEC_raw_code_viewer, name) |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
955 |
|
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
956 |
return IEC_raw_code_viewer |
180e4a7d945c
Adding search field for finding function or function block in library tree
laurent
parents:
715
diff
changeset
|
957 |
|
738 | 958 |
else: |
959 |
return ConfigTreeNode._OpenView(self, name) |
|
20 | 960 |
|
203 | 961 |
def _Clean(self): |
108 | 962 |
if os.path.isdir(os.path.join(self._getBuildPath())): |
361 | 963 |
self.logger.write(_("Cleaning the build directory\n")) |
108 | 964 |
shutil.rmtree(os.path.join(self._getBuildPath())) |
965 |
else: |
|
361 | 966 |
self.logger.write_error(_("Build directory already clean\n")) |
203 | 967 |
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
|
968 |
self.EnableMethod("_Clean", False) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
969 |
# kill the builder |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
970 |
self._builder = None |
203 | 971 |
self.CompareLocalAndRemotePLC() |
972 |
||
973 |
############# Real PLC object access ############# |
|
974 |
def UpdateMethodsFromPLCStatus(self): |
|
975 |
# Get PLC state : Running or Stopped |
|
976 |
# TODO : use explicit status instead of boolean |
|
486
2e0fe44044b3
Catch Pyro exception when connection closed and print message
laurent
parents:
483
diff
changeset
|
977 |
status = None |
203 | 978 |
if self._connector is not None: |
979 |
status = self._connector.GetPLCstatus() |
|
486
2e0fe44044b3
Catch Pyro exception when connection closed and print message
laurent
parents:
483
diff
changeset
|
980 |
if status is None: |
516 | 981 |
self._connector = None |
203 | 982 |
status = "Disconnected" |
446
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
983 |
if(self.previous_plcstate != status): |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
984 |
for args in { |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
985 |
"Started" : [("_Run", False), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
986 |
("_Stop", True)], |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
987 |
"Stopped" : [("_Run", True), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
988 |
("_Stop", False)], |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
989 |
"Empty" : [("_Run", False), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
990 |
("_Stop", False)], |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
991 |
"Broken" : [], |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
992 |
"Disconnected" :[("_Run", False), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
993 |
("_Stop", False), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
994 |
("_Transfer", False), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
995 |
("_Connect", True), |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
996 |
("_Disconnect", False)], |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
997 |
}.get(status,[]): |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
998 |
self.ShowMethod(*args) |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
999 |
self.previous_plcstate = status |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1000 |
return True |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1001 |
return False |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1002 |
|
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1003 |
def PullPLCStatusProc(self, event): |
355 | 1004 |
if self._connector is None: |
1005 |
self.StatusTimer.Stop() |
|
446
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1006 |
if self.UpdateMethodsFromPLCStatus(): |
486
2e0fe44044b3
Catch Pyro exception when connection closed and print message
laurent
parents:
483
diff
changeset
|
1007 |
|
446
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1008 |
status = _(self.previous_plcstate) |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1009 |
{"Broken": self.logger.write_error, |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1010 |
None: lambda x: None}.get( |
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1011 |
self.previous_plcstate, self.logger.write)(_("PLC is %s\n")%status) |
738 | 1012 |
self.AppFrame.RefreshStatusToolBar() |
355 | 1013 |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1014 |
def RegisterDebugVarToConnector(self): |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1015 |
self.DebugTimer=None |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1016 |
Idxs = [] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1017 |
self.TracedIECPath = [] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1018 |
if self._connector is not None: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1019 |
self.IECdebug_lock.acquire() |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1020 |
IECPathsToPop = [] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1021 |
for IECPath,data_tuple in self.IECdebug_datas.iteritems(): |
474 | 1022 |
WeakCallableDict, data_log, status, fvalue = data_tuple |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1023 |
if len(WeakCallableDict) == 0: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1024 |
# Callable Dict is empty. |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1025 |
# This variable is not needed anymore! |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1026 |
#print "Unused : " + IECPath |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1027 |
IECPathsToPop.append(IECPath) |
355 | 1028 |
elif IECPath != "__tick__": |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1029 |
# Convert |
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
1030 |
Idx, IEC_Type = self._IECPathToIdx.get(IECPath,(None,None)) |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1031 |
if Idx is not None: |
592 | 1032 |
if IEC_Type in DebugTypesSize: |
1033 |
Idxs.append((Idx, IEC_Type, fvalue, IECPath)) |
|
1034 |
else: |
|
1035 |
self.logger.write_warning(_("Debug : Unsuppoted type to debug %s\n")%IEC_Type) |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1036 |
else: |
361 | 1037 |
self.logger.write_warning(_("Debug : Unknown variable %s\n")%IECPath) |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1038 |
for IECPathToPop in IECPathsToPop: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1039 |
self.IECdebug_datas.pop(IECPathToPop) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1040 |
|
457 | 1041 |
if Idxs: |
1042 |
Idxs.sort() |
|
475 | 1043 |
self.TracedIECPath = zip(*Idxs)[3] |
474 | 1044 |
self._connector.SetTraceVariablesList(zip(*zip(*Idxs)[0:3])) |
465
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1045 |
else: |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1046 |
self.TracedIECPath = [] |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1047 |
self._connector.SetTraceVariablesList([]) |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1048 |
self.IECdebug_lock.release() |
243 | 1049 |
|
1050 |
#for IEC_path, IECdebug_data in self.IECdebug_datas.iteritems(): |
|
1051 |
# print IEC_path, IECdebug_data[0].keys() |
|
1052 |
||
1053 |
def ReArmDebugRegisterTimer(self): |
|
1054 |
if self.DebugTimer is not None: |
|
1055 |
self.DebugTimer.cancel() |
|
1056 |
||
466
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
1057 |
# Timer to prevent rapid-fire when registering many variables |
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
1058 |
# use wx.CallAfter use keep using same thread. TODO : use wx.Timer instead |
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
1059 |
self.DebugTimer=Timer(0.5,wx.CallAfter,args = [self.RegisterDebugVarToConnector]) |
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
1060 |
# Rearm anti-rapid-fire timer |
11263fd24566
Fixed remaining thread on close frame
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
465
diff
changeset
|
1061 |
self.DebugTimer.start() |
243 | 1062 |
|
463
961bddcfc913
Adding support for forcing PLC variable (still command to PLC to implement)
laurent
parents:
462
diff
changeset
|
1063 |
def GetDebugIECVariableType(self, IECPath): |
961bddcfc913
Adding support for forcing PLC variable (still command to PLC to implement)
laurent
parents:
462
diff
changeset
|
1064 |
Idx, IEC_Type = self._IECPathToIdx.get(IECPath,(None,None)) |
961bddcfc913
Adding support for forcing PLC variable (still command to PLC to implement)
laurent
parents:
462
diff
changeset
|
1065 |
return IEC_Type |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1066 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1067 |
def SubscribeDebugIECVariable(self, IECPath, callableobj, *args, **kwargs): |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1068 |
""" |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1069 |
Dispatching use a dictionnary linking IEC variable paths |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1070 |
to a WeakKeyDictionary linking |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1071 |
weakly referenced callables to optionnal args |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1072 |
""" |
450
18583d13f0fa
Preliminary accessor support for debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
447
diff
changeset
|
1073 |
if IECPath != "__tick__" and not self._IECPathToIdx.has_key(IECPath): |
246 | 1074 |
return None |
1075 |
||
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1076 |
self.IECdebug_lock.acquire() |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1077 |
# 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
|
1078 |
IECdebug_data = self.IECdebug_datas.get(IECPath, None) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1079 |
if IECdebug_data is None: |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1080 |
IECdebug_data = [ |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1081 |
WeakKeyDictionary(), # Callables |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1082 |
[], # Data storage [(tick, data),...] |
474 | 1083 |
"Registered", # Variable status |
1084 |
None] # Forced value |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1085 |
self.IECdebug_datas[IECPath] = IECdebug_data |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1086 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1087 |
IECdebug_data[0][callableobj]=(args, kwargs) |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1088 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1089 |
self.IECdebug_lock.release() |
243 | 1090 |
|
1091 |
self.ReArmDebugRegisterTimer() |
|
1092 |
||
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1093 |
return IECdebug_data[1] |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1094 |
|
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1095 |
def UnsubscribeDebugIECVariable(self, IECPath, callableobj): |
243 | 1096 |
#print "Unsubscribe", IECPath, callableobj |
1097 |
self.IECdebug_lock.acquire() |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1098 |
IECdebug_data = self.IECdebug_datas.get(IECPath, None) |
243 | 1099 |
if IECdebug_data is not None: |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1100 |
IECdebug_data[0].pop(callableobj,None) |
243 | 1101 |
self.IECdebug_lock.release() |
1102 |
||
1103 |
self.ReArmDebugRegisterTimer() |
|
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1104 |
|
334
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1105 |
def UnsubscribeAllDebugIECVariable(self): |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1106 |
self.IECdebug_lock.acquire() |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1107 |
IECdebug_data = {} |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1108 |
self.IECdebug_lock.release() |
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1109 |
|
355 | 1110 |
self.ReArmDebugRegisterTimer() |
1111 |
||
474 | 1112 |
def ForceDebugIECVariable(self, IECPath, fvalue): |
1113 |
if not self.IECdebug_datas.has_key(IECPath): |
|
1114 |
return |
|
1115 |
||
1116 |
self.IECdebug_lock.acquire() |
|
1117 |
||
1118 |
# If no entry exist, create a new one with a fresh WeakKeyDictionary |
|
1119 |
IECdebug_data = self.IECdebug_datas.get(IECPath, None) |
|
1120 |
IECdebug_data[2] = "Forced" |
|
1121 |
IECdebug_data[3] = fvalue |
|
1122 |
||
1123 |
self.IECdebug_lock.release() |
|
1124 |
||
1125 |
self.ReArmDebugRegisterTimer() |
|
463
961bddcfc913
Adding support for forcing PLC variable (still command to PLC to implement)
laurent
parents:
462
diff
changeset
|
1126 |
|
961bddcfc913
Adding support for forcing PLC variable (still command to PLC to implement)
laurent
parents:
462
diff
changeset
|
1127 |
def ReleaseDebugIECVariable(self, IECPath): |
474 | 1128 |
if not self.IECdebug_datas.has_key(IECPath): |
1129 |
return |
|
1130 |
||
1131 |
self.IECdebug_lock.acquire() |
|
1132 |
||
1133 |
# If no entry exist, create a new one with a fresh WeakKeyDictionary |
|
1134 |
IECdebug_data = self.IECdebug_datas.get(IECPath, None) |
|
1135 |
IECdebug_data[2] = "Registered" |
|
1136 |
IECdebug_data[3] = None |
|
1137 |
||
1138 |
self.IECdebug_lock.release() |
|
1139 |
||
1140 |
self.ReArmDebugRegisterTimer() |
|
1141 |
||
355 | 1142 |
def CallWeakcallables(self, IECPath, function_name, *cargs): |
1143 |
data_tuple = self.IECdebug_datas.get(IECPath, None) |
|
1144 |
if data_tuple is not None: |
|
474 | 1145 |
WeakCallableDict, data_log, status, fvalue = data_tuple |
355 | 1146 |
#data_log.append((debug_tick, value)) |
1147 |
for weakcallable,(args,kwargs) in WeakCallableDict.iteritems(): |
|
1148 |
#print weakcallable, value, args, kwargs |
|
1149 |
function = getattr(weakcallable, function_name, None) |
|
1150 |
if function is not None: |
|
481 | 1151 |
if status == "Forced" and cargs[1] == fvalue: |
476 | 1152 |
function(*(cargs + (True,) + args), **kwargs) |
474 | 1153 |
else: |
1154 |
function(*(cargs + args), **kwargs) |
|
355 | 1155 |
# This will block thread if more than one call is waiting |
334
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1156 |
|
670
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
1157 |
def GetTicktime(self): |
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
1158 |
return self._Ticktime |
fb03cb6da95c
Adding support for extracting Common_Ticktime from VARIABLES.csv
laurent
parents:
669
diff
changeset
|
1159 |
|
699
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
1160 |
def RemoteExec(self, script, **kwargs): |
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
1161 |
if self._connector is None: |
703
2f7b3d1de278
Adding support for selecting plugin parameter value from a tree of available values
laurent
parents:
699
diff
changeset
|
1162 |
return -1, "No runtime connected!" |
699
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
1163 |
return self._connector.RemoteExec(script, **kwargs) |
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
1164 |
|
235 | 1165 |
def DebugThreadProc(self): |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1166 |
""" |
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1167 |
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
|
1168 |
""" |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1169 |
self.debug_break = False |
461
bcbc472c0ba8
Safer debug
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
460
diff
changeset
|
1170 |
debug_getvar_retry = 0 |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1171 |
while (not self.debug_break) and (self._connector is not None): |
674
761de581cf7a
Changed GetTraceVariables results unpack to something more robust in debug thread proc.
Edouard Tisserant
parents:
673
diff
changeset
|
1172 |
Trace = self._connector.GetTraceVariables() |
761de581cf7a
Changed GetTraceVariables results unpack to something more robust in debug thread proc.
Edouard Tisserant
parents:
673
diff
changeset
|
1173 |
if(Trace): |
761de581cf7a
Changed GetTraceVariables results unpack to something more robust in debug thread proc.
Edouard Tisserant
parents:
673
diff
changeset
|
1174 |
plc_status, debug_tick, debug_vars = Trace |
761de581cf7a
Changed GetTraceVariables results unpack to something more robust in debug thread proc.
Edouard Tisserant
parents:
673
diff
changeset
|
1175 |
else: |
761de581cf7a
Changed GetTraceVariables results unpack to something more robust in debug thread proc.
Edouard Tisserant
parents:
673
diff
changeset
|
1176 |
plc_status = None |
578 | 1177 |
debug_getvar_retry += 1 |
239
112b4bc523b3
Fixed bad IPC choice for debugger/PLC/control thread collaboration
etisserant
parents:
236
diff
changeset
|
1178 |
#print debug_tick, debug_vars |
578 | 1179 |
if plc_status == "Started": |
1180 |
self.IECdebug_lock.acquire() |
|
446
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1181 |
if len(debug_vars) == len(self.TracedIECPath): |
578 | 1182 |
if debug_getvar_retry > DEBUG_RETRIES_WARN: |
689 | 1183 |
self.logger.write(_("... debugger recovered\n")) |
578 | 1184 |
debug_getvar_retry = 0 |
673
2e1a2ea6242f
reverted temporary fix, fixed in PLCopenEditor now.
edouard
parents:
672
diff
changeset
|
1185 |
for IECPath,value in zip(self.TracedIECPath, debug_vars): |
2e1a2ea6242f
reverted temporary fix, fixed in PLCopenEditor now.
edouard
parents:
672
diff
changeset
|
1186 |
if value is not None: |
2e1a2ea6242f
reverted temporary fix, fixed in PLCopenEditor now.
edouard
parents:
672
diff
changeset
|
1187 |
self.CallWeakcallables(IECPath, "NewValue", debug_tick, value) |
2e1a2ea6242f
reverted temporary fix, fixed in PLCopenEditor now.
edouard
parents:
672
diff
changeset
|
1188 |
self.CallWeakcallables("__tick__", "NewDataAvailable") |
578 | 1189 |
self.IECdebug_lock.release() |
1190 |
if debug_getvar_retry == DEBUG_RETRIES_WARN: |
|
689 | 1191 |
self.logger.write(_("Waiting debugger to recover...\n")) |
578 | 1192 |
if debug_getvar_retry == DEBUG_RETRIES_REREGISTER: |
1193 |
# re-register debug registry to PLC |
|
1194 |
wx.CallAfter(self.RegisterDebugVarToConnector) |
|
1195 |
if debug_getvar_retry != 0: |
|
446
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1196 |
# Be patient, tollerate PLC to come up before debugging |
460
73a53278833b
Safer debug unpack result checking, more verbose error message, slower retry when waiting PLC startup
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
459
diff
changeset
|
1197 |
time.sleep(0.1) |
578 | 1198 |
else: |
1199 |
self.debug_break = True |
|
689 | 1200 |
self.logger.write(_("Debugger disabled\n")) |
1201 |
self.DebugThread = None |
|
235 | 1202 |
|
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1203 |
def KillDebugThread(self): |
703
2f7b3d1de278
Adding support for selecting plugin parameter value from a tree of available values
laurent
parents:
699
diff
changeset
|
1204 |
tmp_debugthread = self.DebugThread |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1205 |
self.debug_break = True |
703
2f7b3d1de278
Adding support for selecting plugin parameter value from a tree of available values
laurent
parents:
699
diff
changeset
|
1206 |
if tmp_debugthread is not None: |
624
8e74266033f8
Updated console messages for build and stop
Edouard Tisserant
parents:
623
diff
changeset
|
1207 |
self.logger.writeyield(_("Stopping debugger...\n")) |
703
2f7b3d1de278
Adding support for selecting plugin parameter value from a tree of available values
laurent
parents:
699
diff
changeset
|
1208 |
tmp_debugthread.join(timeout=5) |
2f7b3d1de278
Adding support for selecting plugin parameter value from a tree of available values
laurent
parents:
699
diff
changeset
|
1209 |
if tmp_debugthread.isAlive() and self.logger: |
624
8e74266033f8
Updated console messages for build and stop
Edouard Tisserant
parents:
623
diff
changeset
|
1210 |
self.logger.write_warning(_("Couldn't stop debugger.\n")) |
578 | 1211 |
else: |
624
8e74266033f8
Updated console messages for build and stop
Edouard Tisserant
parents:
623
diff
changeset
|
1212 |
self.logger.write(_("Debugger stopped.\n")) |
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1213 |
self.DebugThread = None |
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1214 |
|
465
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1215 |
def _connect_debug(self): |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1216 |
if self.AppFrame: |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1217 |
self.AppFrame.ResetGraphicViewers() |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1218 |
self.RegisterDebugVarToConnector() |
578 | 1219 |
if self.DebugThread is None: |
1220 |
self.DebugThread = Thread(target=self.DebugThreadProc) |
|
1221 |
self.DebugThread.start() |
|
465
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1222 |
|
462
274e83a5534e
Now debug is not a button anymore
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
461
diff
changeset
|
1223 |
def _Run(self): |
203 | 1224 |
""" |
464
46dd4358e8a8
Fixes in run : messages and refresh
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
463
diff
changeset
|
1225 |
Start PLC |
203 | 1226 |
""" |
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1227 |
if self.GetIECProgramsAndVariables(): |
462
274e83a5534e
Now debug is not a button anymore
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
461
diff
changeset
|
1228 |
self._connector.StartPLC() |
464
46dd4358e8a8
Fixes in run : messages and refresh
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
463
diff
changeset
|
1229 |
self.logger.write(_("Starting PLC\n")) |
465
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1230 |
self._connect_debug() |
203 | 1231 |
else: |
464
46dd4358e8a8
Fixes in run : messages and refresh
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
463
diff
changeset
|
1232 |
self.logger.write_error(_("Couldn't start PLC !\n")) |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
1233 |
wx.CallAfter(self.UpdateMethodsFromPLCStatus) |
203 | 1234 |
|
1235 |
def _Stop(self): |
|
1236 |
""" |
|
1237 |
Stop PLC |
|
1238 |
""" |
|
483
bc26c42d2eec
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
481
diff
changeset
|
1239 |
if self._connector is not None and not self._connector.StopPLC(): |
bc26c42d2eec
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
481
diff
changeset
|
1240 |
self.logger.write_error(_("Couldn't stop PLC !\n")) |
bc26c42d2eec
fixed greg's crap in win32, enhanced debug stability, implemented preliminary retain
edouard
parents:
481
diff
changeset
|
1241 |
|
689 | 1242 |
# debugthread should die on his own |
1243 |
#self.KillDebugThread() |
|
286
a2a8a52b0d4f
Minor changes to get better cleanup of debug and python_eval threads, accross multiple debug sessions and PLC runs.
etisserant
parents:
283
diff
changeset
|
1244 |
|
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
1245 |
wx.CallAfter(self.UpdateMethodsFromPLCStatus) |
203 | 1246 |
|
1247 |
def _Connect(self): |
|
1248 |
# don't accept re-connetion is already connected |
|
1249 |
if self._connector is not None: |
|
361 | 1250 |
self.logger.write_error(_("Already connected. Please disconnect\n")) |
203 | 1251 |
return |
1252 |
||
1253 |
# Get connector uri |
|
1254 |
uri = self.\ |
|
1255 |
BeremizRoot.\ |
|
1256 |
getURI_location().\ |
|
1257 |
strip() |
|
1258 |
||
1259 |
# if uri is empty launch discovery dialog |
|
1260 |
if uri == "": |
|
740
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1261 |
try: |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1262 |
# Launch Service Discovery dialog |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1263 |
dialog = DiscoveryDialog(self.AppFrame) |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1264 |
answer = dialog.ShowModal() |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1265 |
uri = dialog.GetURI() |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1266 |
dialog.Destroy() |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1267 |
except: |
cee825fbe9b3
fixed exception when launching discovery dialog without network
Edouard Tisserant
parents:
738
diff
changeset
|
1268 |
uri = None |
392
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1269 |
|
203 | 1270 |
# Nothing choosed or cancel button |
392
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1271 |
if uri is None or answer == wx.ID_CANCEL: |
6617d3fb43e2
Redesign DiscoveryDialog class to conform to others dialogs
laurent
parents:
382
diff
changeset
|
1272 |
self.logger.write_error(_("Connection canceled!\n")) |
203 | 1273 |
return |
1274 |
else: |
|
1275 |
self.\ |
|
1276 |
BeremizRoot.\ |
|
1277 |
setURI_location(uri) |
|
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
742
diff
changeset
|
1278 |
if self._View is not None: |
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
742
diff
changeset
|
1279 |
self._View.RefreshView() |
203 | 1280 |
|
1281 |
# Get connector from uri |
|
1282 |
try: |
|
1283 |
self._connector = connectors.ConnectorFactory(uri, self) |
|
1284 |
except Exception, msg: |
|
361 | 1285 |
self.logger.write_error(_("Exception while connecting %s!\n")%uri) |
203 | 1286 |
self.logger.write_error(traceback.format_exc()) |
1287 |
||
1288 |
# Did connection success ? |
|
1289 |
if self._connector is None: |
|
1290 |
# Oups. |
|
361 | 1291 |
self.logger.write_error(_("Connection failed to %s!\n")%uri) |
203 | 1292 |
else: |
1293 |
self.ShowMethod("_Connect", False) |
|
1294 |
self.ShowMethod("_Disconnect", True) |
|
1295 |
self.ShowMethod("_Transfer", True) |
|
1296 |
||
1297 |
self.CompareLocalAndRemotePLC() |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1298 |
|
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1299 |
# Init with actual PLC status and print it |
446
1edde533db19
Some cleanup in PLC status - removed that \"Starting\" state ...
ed
parents:
440
diff
changeset
|
1300 |
self.UpdateMethodsFromPLCStatus() |
361 | 1301 |
if self.previous_plcstate is not None: |
1302 |
status = _(self.previous_plcstate) |
|
1303 |
else: |
|
1304 |
status = "" |
|
1305 |
self.logger.write(_("PLC is %s\n")%status) |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1306 |
|
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1307 |
# Start the status Timer |
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1308 |
self.StatusTimer.Start(milliseconds=500, oneShot=False) |
465
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1309 |
|
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1310 |
if self.previous_plcstate=="Started": |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1311 |
if self.DebugAvailable() and self.GetIECProgramsAndVariables(): |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1312 |
self.logger.write(_("Debug connect matching running PLC\n")) |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1313 |
self._connect_debug() |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1314 |
else: |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1315 |
self.logger.write_warning(_("Debug do not match PLC - stop/transfert/start to re-enable\n")) |
203 | 1316 |
|
1317 |
def CompareLocalAndRemotePLC(self): |
|
1318 |
if self._connector is None: |
|
1319 |
return |
|
1320 |
# We are now connected. Update button status |
|
1321 |
MD5 = self.GetLastBuildMD5() |
|
1322 |
# Check remote target PLC correspondance to that md5 |
|
1323 |
if MD5 is not None: |
|
1324 |
if not self._connector.MatchMD5(MD5): |
|
544 | 1325 |
# self.logger.write_warning( |
1326 |
# _("Latest build does not match with target, please transfer.\n")) |
|
203 | 1327 |
self.EnableMethod("_Transfer", True) |
1328 |
else: |
|
544 | 1329 |
# self.logger.write( |
1330 |
# _("Latest build matches target, no transfer needed.\n")) |
|
203 | 1331 |
self.EnableMethod("_Transfer", True) |
465
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1332 |
# warns controller that program match |
67d32a91d70b
Fixes in debug + reconnect to running PLC
Edouard TISSERANT <edouard.tisserant@gmail.com>
parents:
464
diff
changeset
|
1333 |
self.ProgramTransferred() |
203 | 1334 |
#self.EnableMethod("_Transfer", False) |
1335 |
else: |
|
544 | 1336 |
# self.logger.write_warning( |
1337 |
# _("Cannot compare latest build to target. Please build.\n")) |
|
203 | 1338 |
self.EnableMethod("_Transfer", False) |
1339 |
||
1340 |
||
1341 |
def _Disconnect(self): |
|
1342 |
self._connector = None |
|
350
a3a5561bde1d
- now call load, start, free PLC from the python Thread
greg
parents:
348
diff
changeset
|
1343 |
self.StatusTimer.Stop() |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
1344 |
wx.CallAfter(self.UpdateMethodsFromPLCStatus) |
203 | 1345 |
|
1346 |
def _Transfer(self): |
|
1347 |
# Get the last build PLC's |
|
1348 |
MD5 = self.GetLastBuildMD5() |
|
1349 |
||
1350 |
# Check if md5 file is empty : ask user to build PLC |
|
1351 |
if MD5 is None : |
|
361 | 1352 |
self.logger.write_error(_("Failed : Must build before transfer.\n")) |
203 | 1353 |
return False |
1354 |
||
1355 |
# Compare PLC project with PLC on target |
|
1356 |
if self._connector.MatchMD5(MD5): |
|
1357 |
self.logger.write( |
|
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1358 |
_("Latest build already matches current target. Transfering anyway...\n")) |
203 | 1359 |
|
1360 |
# Get temprary directory path |
|
1361 |
extrafilespath = self._getExtraFilesPath() |
|
1362 |
extrafiles = [(name, open(os.path.join(extrafilespath, name), |
|
1363 |
'rb').read()) \ |
|
1364 |
for name in os.listdir(extrafilespath) \ |
|
1365 |
if not name=="CVS"] |
|
1366 |
||
1367 |
# Send PLC on target |
|
1368 |
builder = self.GetBuilder() |
|
1369 |
if builder is not None: |
|
1370 |
data = builder.GetBinaryCode() |
|
1371 |
if data is not None : |
|
707
6880c88e499e
Fix bug in debugger when transfer without having build before and and opening debug view before running PLC
laurent
parents:
703
diff
changeset
|
1372 |
if self._connector.NewPLC(MD5, data, extrafiles) and self.GetIECProgramsAndVariables(): |
334
b4131e5d10a4
Adding support for unsubscribe all variables while transferring
lbessard
parents:
328
diff
changeset
|
1373 |
self.UnsubscribeAllDebugIECVariable() |
246 | 1374 |
self.ProgramTransferred() |
692
8b1ed486f374
Adding support for not closing debug tabs and remove variable in variable debug panel if instance still exist in newly transfered program
laurent
parents:
689
diff
changeset
|
1375 |
if self.AppFrame is not None: |
8b1ed486f374
Adding support for not closing debug tabs and remove variable in variable debug panel if instance still exist in newly transfered program
laurent
parents:
689
diff
changeset
|
1376 |
self.AppFrame.CloseObsoleteDebugTabs() |
746
2e09777a40d3
Fix refresh of ConfTreeNodeEditors content when values change
laurent
parents:
742
diff
changeset
|
1377 |
self.AppFrame.RefreshPouInstanceVariablesPanel() |
361 | 1378 |
self.logger.write(_("Transfer completed successfully.\n")) |
203 | 1379 |
else: |
361 | 1380 |
self.logger.write_error(_("Transfer failed\n")) |
203 | 1381 |
else: |
415
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1382 |
self.logger.write_error(_("No PLC to transfer (did build succeed ?)\n")) |
339fa2542481
improved english spelling and grammar and internationalization updated
laurent
parents:
414
diff
changeset
|
1383 |
|
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
1384 |
wx.CallAfter(self.UpdateMethodsFromPLCStatus) |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1385 |
|
738 | 1386 |
StatusMethods = [ |
734 | 1387 |
{"bitmap" : "Build", |
361 | 1388 |
"name" : _("Build"), |
1389 |
"tooltip" : _("Build project into build folder"), |
|
623
8cdb533c3c7a
A few new keyboard shortcuts : F4=stop, F5=run, F5=transfer, F7=connect
Edouard Tisserant
parents:
619
diff
changeset
|
1390 |
"method" : "_Build"}, |
734 | 1391 |
{"bitmap" : "Clean", |
361 | 1392 |
"name" : _("Clean"), |
203 | 1393 |
"enabled" : False, |
361 | 1394 |
"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
|
1395 |
"method" : "_Clean"}, |
734 | 1396 |
{"bitmap" : "Run", |
361 | 1397 |
"name" : _("Run"), |
203 | 1398 |
"shown" : False, |
361 | 1399 |
"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
|
1400 |
"method" : "_Run"}, |
734 | 1401 |
{"bitmap" : "Stop", |
361 | 1402 |
"name" : _("Stop"), |
203 | 1403 |
"shown" : False, |
361 | 1404 |
"tooltip" : _("Stop Running PLC"), |
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
1405 |
"method" : "_Stop"}, |
734 | 1406 |
{"bitmap" : "Connect", |
361 | 1407 |
"name" : _("Connect"), |
1408 |
"tooltip" : _("Connect to the target PLC"), |
|
203 | 1409 |
"method" : "_Connect"}, |
734 | 1410 |
{"bitmap" : "Transfer", |
361 | 1411 |
"name" : _("Transfer"), |
203 | 1412 |
"shown" : False, |
361 | 1413 |
"tooltip" : _("Transfer PLC"), |
203 | 1414 |
"method" : "_Transfer"}, |
734 | 1415 |
{"bitmap" : "Disconnect", |
361 | 1416 |
"name" : _("Disconnect"), |
203 | 1417 |
"shown" : False, |
361 | 1418 |
"tooltip" : _("Disconnect from PLC"), |
203 | 1419 |
"method" : "_Disconnect"}, |
734 | 1420 |
{"bitmap" : "ShowIECcode", |
361 | 1421 |
"name" : _("Show code"), |
203 | 1422 |
"shown" : False, |
361 | 1423 |
"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
|
1424 |
"method" : "_showIECcode"}, |
738 | 1425 |
] |
1426 |
||
1427 |
ConfNodeMethods = [ |
|
734 | 1428 |
{"bitmap" : "editIECrawcode", |
361 | 1429 |
"name" : _("Raw IEC code"), |
1430 |
"tooltip" : _("Edit raw IEC code added to code generated by PLCGenerator"), |
|
203 | 1431 |
"method" : "_editIECrawcode"}, |
65 | 1432 |
] |
738 | 1433 |
|
1434 |
||
1435 |
def EnableMethod(self, method, value): |
|
1436 |
for d in self.StatusMethods: |
|
1437 |
if d["method"]==method: |
|
1438 |
d["enabled"]=value |
|
1439 |
return True |
|
1440 |
return False |
|
1441 |
||
1442 |
def ShowMethod(self, method, value): |
|
1443 |
for d in self.StatusMethods: |
|
1444 |
if d["method"]==method: |
|
1445 |
d["shown"]=value |
|
1446 |
return True |
|
1447 |
return False |
|
1448 |
||
1449 |
def CallMethod(self, method): |
|
1450 |
for d in self.StatusMethods: |
|
1451 |
if d["method"]==method and d.get("enabled", True) and d.get("shown", True): |
|
1452 |
getattr(self, method)() |