author | Edouard Tisserant |
Wed, 15 Feb 2012 16:39:56 +0100 | |
changeset 685 | 2db8b87016a0 |
parent 684 | d376a8b0b602 |
child 691 | bb340874f09e |
permissions | -rw-r--r-- |
442 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
503 | 3 |
import shutil |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
4 |
import socket |
442 | 5 |
|
6 |
__version__ = "$Revision$" |
|
7 |
||
8 |
import os, sys, getopt, wx, tempfile |
|
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
9 |
import __builtin__ |
442 | 10 |
from types import TupleType, StringType, UnicodeType |
11 |
||
12 |
CWD = os.path.split(os.path.realpath(__file__))[0] |
|
13 |
||
14 |
def Bpath(*args): |
|
15 |
return os.path.join(CWD,*args) |
|
16 |
||
17 |
if __name__ == '__main__': |
|
18 |
def usage(): |
|
19 |
print "\nUsage of LPCBeremiz.py :" |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
20 |
print "\n %s Projectpath Buildpath port\n"%sys.argv[0] |
442 | 21 |
|
22 |
try: |
|
23 |
opts, args = getopt.getopt(sys.argv[1:], "h", ["help"]) |
|
24 |
except getopt.GetoptError: |
|
25 |
# print help information and exit: |
|
26 |
usage() |
|
27 |
sys.exit(2) |
|
28 |
||
29 |
for o, a in opts: |
|
30 |
if o in ("-h", "--help"): |
|
31 |
usage() |
|
32 |
sys.exit() |
|
33 |
||
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
34 |
if len(args) != 3: |
442 | 35 |
usage() |
36 |
sys.exit() |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
37 |
else: |
442 | 38 |
projectOpen = args[0] |
39 |
buildpath = args[1] |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
40 |
try: |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
41 |
port = int(args[2]) |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
42 |
except: |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
43 |
usage() |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
44 |
sys.exit() |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
45 |
|
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
46 |
if os.path.exists("LPC_DEBUG"): |
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
47 |
__builtin__.__dict__["BMZ_DBG"] = True |
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
48 |
else : |
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
49 |
__builtin__.__dict__["BMZ_DBG"] = False |
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
50 |
|
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
51 |
app = wx.PySimpleApp(redirect=BMZ_DBG) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
52 |
app.SetAppName('beremiz') |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
53 |
wx.InitAllImageHandlers() |
442 | 54 |
|
55 |
# Import module for internationalization |
|
56 |
import gettext |
|
57 |
||
58 |
if __name__ == '__main__': |
|
59 |
__builtin__.__dict__['_'] = wx.GetTranslation#unicode_translation |
|
60 |
||
61 |
from Beremiz import * |
|
492 | 62 |
from plugger import PluginsRoot, PlugTemplate, opjimg, connectors |
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
63 |
from plugins.canfestival import RootClass as CanOpenRootClass |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
64 |
from plugins.canfestival.canfestival import _SlavePlug, _NodeListPlug, NodeManager |
442 | 65 |
from plcopen.structures import LOCATIONDATATYPES |
66 |
from PLCControler import LOCATION_PLUGIN, LOCATION_MODULE, LOCATION_GROUP,\ |
|
67 |
LOCATION_VAR_INPUT, LOCATION_VAR_OUTPUT, LOCATION_VAR_MEMORY |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
68 |
from PLCOpenEditor import IDEFrame, ProjectDialog |
442 | 69 |
|
70 |
#------------------------------------------------------------------------------- |
|
512
36aeab46f27d
Improved CanFEstival support for LPC - now build and link plugin generated files
edouard
parents:
510
diff
changeset
|
71 |
# CANFESTIVAL PLUGIN HACK |
36aeab46f27d
Improved CanFEstival support for LPC - now build and link plugin generated files
edouard
parents:
510
diff
changeset
|
72 |
#------------------------------------------------------------------------------- |
629
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
73 |
# from plugins.canfestival import canfestival |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
74 |
# class LPC_canfestival_config: |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
75 |
# def getCFLAGS(self, *args): |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
76 |
# return "" |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
77 |
# |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
78 |
# def getLDFLAGS(self, *args): |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
79 |
# return "" |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
80 |
# |
61347cc521d1
fix unnecessary CanFestival plugin load in lpcberemiz
Edouard Tisserant
parents:
625
diff
changeset
|
81 |
# canfestival.local_canfestival_config = LPC_canfestival_config() |
512
36aeab46f27d
Improved CanFEstival support for LPC - now build and link plugin generated files
edouard
parents:
510
diff
changeset
|
82 |
#------------------------------------------------------------------------------- |
442 | 83 |
# LPCModule Class |
84 |
#------------------------------------------------------------------------------- |
|
85 |
||
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
86 |
LOCATION_TYPES = {"I": LOCATION_VAR_INPUT, |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
87 |
"Q": LOCATION_VAR_OUTPUT, |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
88 |
"M": LOCATION_VAR_MEMORY} |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
89 |
|
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
90 |
LOCATION_DIRS = dict([(dir, size) for size, dir in LOCATION_TYPES.iteritems()]) |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
91 |
|
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
92 |
LOCATION_SIZES = {} |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
93 |
for size, types in LOCATIONDATATYPES.iteritems(): |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
94 |
for type in types: |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
95 |
LOCATION_SIZES[type] = size |
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
96 |
|
442 | 97 |
def _GetModuleChildren(module): |
98 |
children = [] |
|
99 |
for child in module["children"]: |
|
100 |
if child["type"] == LOCATION_GROUP: |
|
101 |
children.extend(child["children"]) |
|
102 |
else: |
|
103 |
children.append(child) |
|
104 |
return children |
|
105 |
||
550
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
106 |
def _GetVariables(module): |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
107 |
variables = [] |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
108 |
for child in module["children"]: |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
109 |
if child["type"] in [LOCATION_GROUP, LOCATION_MODULE]: |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
110 |
variables.extend(_GetVariables(child)) |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
111 |
else: |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
112 |
variables.append(child) |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
113 |
return variables |
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
114 |
|
442 | 115 |
def _GetLastModuleGroup(module): |
116 |
group = module |
|
117 |
for child in module["children"]: |
|
118 |
if child["type"] == LOCATION_GROUP: |
|
119 |
group = child |
|
120 |
return group["children"] |
|
121 |
||
122 |
def _GetModuleBySomething(module, something, toks): |
|
123 |
for child in _GetModuleChildren(module): |
|
124 |
if child.get(something) == toks[0]: |
|
125 |
if len(toks) > 1: |
|
126 |
return _GetModuleBySomething(child, something, toks[1:]) |
|
127 |
return child |
|
128 |
return None |
|
129 |
||
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
130 |
def _GetModuleVariable(module, location, direction): |
442 | 131 |
for child in _GetModuleChildren(module): |
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
132 |
if child["location"] == location and child["type"] == LOCATION_TYPES[direction]: |
442 | 133 |
return child |
134 |
return None |
|
135 |
||
136 |
def _RemoveModuleChild(module, child): |
|
137 |
if child in module["children"]: |
|
138 |
module["children"].remove(child) |
|
139 |
else: |
|
140 |
for group in module["children"]: |
|
141 |
if group["type"] == LOCATION_GROUP and child in group["children"]: |
|
142 |
group["children"].remove(child) |
|
143 |
||
144 |
BUS_TEXT = """/* Code generated by LPCBus plugin */ |
|
145 |
||
146 |
/* LPCBus plugin includes */ |
|
147 |
#include "app_glue.h" |
|
148 |
#ifdef _WINDOWS_H |
|
149 |
#include "iec_types.h" |
|
150 |
#else |
|
151 |
#include "iec_std_lib.h" |
|
152 |
#endif |
|
153 |
||
553 | 154 |
%(declare_code)s |
155 |
||
442 | 156 |
/* LPCBus plugin user variables definition */ |
157 |
%(var_decl)s |
|
158 |
||
159 |
/* LPCBus plugin functions */ |
|
160 |
int __init_%(location_str)s(int argc,char **argv) |
|
161 |
{ |
|
553 | 162 |
%(init_code)s |
442 | 163 |
return 0; |
164 |
} |
|
165 |
||
166 |
void __cleanup_%(location_str)s(void) |
|
167 |
{ |
|
168 |
} |
|
169 |
||
170 |
void __retrieve_%(location_str)s(void) |
|
171 |
{ |
|
550
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
172 |
%(retrieve_code)s |
442 | 173 |
} |
174 |
||
175 |
void __publish_%(location_str)s(void) |
|
176 |
{ |
|
550
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
177 |
%(publish_code)s |
442 | 178 |
} |
179 |
""" |
|
180 |
||
181 |
class LPCBus(object): |
|
182 |
||
183 |
def __init__(self): |
|
184 |
self.VariableLocationTree = [] |
|
185 |
self.ResetUsedLocations() |
|
186 |
self.Icon = None |
|
187 |
||
188 |
def __getitem__(self, key): |
|
189 |
if key == "children": |
|
190 |
return self.VariableLocationTree |
|
191 |
raise KeyError, "Only 'children' key is available" |
|
192 |
||
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
193 |
def PlugEnabled(self): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
194 |
return None |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
195 |
|
442 | 196 |
def SetIcon(self, icon): |
197 |
self.Icon = icon |
|
198 |
||
199 |
def _GetChildBySomething(self, something, toks): |
|
200 |
return _GetModuleBySomething({"children" : self.VariableLocationTree}, something, toks) |
|
201 |
||
202 |
def GetBaseTypes(self): |
|
203 |
return self.GetPlugRoot().GetBaseTypes() |
|
204 |
||
205 |
def GetSizeOfType(self, type): |
|
206 |
return LOCATION_SIZES[self.GetPlugRoot().GetBaseType(type)] |
|
207 |
||
208 |
def _GetVariableLocationTree(self, current_location, infos): |
|
209 |
if infos["type"] == LOCATION_MODULE: |
|
210 |
location = current_location + (infos["IEC_Channel"],) |
|
211 |
return {"name": infos["name"], |
|
212 |
"type": infos["type"], |
|
213 |
"location": ".".join(map(str, location + ("x",))), |
|
214 |
"icon": infos["icon"], |
|
215 |
"children": [self._GetVariableLocationTree(location, child) for child in infos["children"]]} |
|
216 |
elif infos["type"] == LOCATION_GROUP: |
|
217 |
return {"name": infos["name"], |
|
218 |
"type": infos["type"], |
|
219 |
"location": "", |
|
220 |
"icon": infos["icon"], |
|
221 |
"children": [self._GetVariableLocationTree(current_location, child) for child in infos["children"]]} |
|
222 |
else: |
|
223 |
size = self.GetSizeOfType(infos["IEC_type"]) |
|
224 |
location = "%" + LOCATION_DIRS[infos["type"]] + size + ".".join(map(str, current_location + infos["location"])) |
|
225 |
return {"name": infos["name"], |
|
226 |
"type": infos["type"], |
|
227 |
"size": size, |
|
228 |
"IEC_type": infos["IEC_type"], |
|
659
71a824446673
Adding support for drag'n dropping located variables from topology panel to configurations and resources variable panel for declaring global located variables
laurent
parents:
652
diff
changeset
|
229 |
"var_name": infos["name"], |
442 | 230 |
"location": location, |
231 |
"description": infos["description"], |
|
232 |
"children": []} |
|
233 |
||
234 |
def GetVariableLocationTree(self): |
|
235 |
return {"name": self.BaseParams.getName(), |
|
236 |
"type": LOCATION_PLUGIN, |
|
237 |
"location": self.GetFullIEC_Channel(), |
|
238 |
"icon": self.Icon, |
|
239 |
"children": [self._GetVariableLocationTree(self.GetCurrentLocation(), child) |
|
240 |
for child in self.VariableLocationTree]} |
|
241 |
||
242 |
def PlugTestModified(self): |
|
243 |
return False |
|
244 |
||
245 |
def PlugMakeDir(self): |
|
246 |
pass |
|
247 |
||
248 |
def PlugRequestSave(self): |
|
249 |
return None |
|
250 |
||
251 |
def ResetUsedLocations(self): |
|
252 |
self.UsedLocations = {} |
|
253 |
||
254 |
def _AddUsedLocation(self, parent, location): |
|
255 |
num = location.pop(0) |
|
256 |
if not parent.has_key(num): |
|
257 |
parent[num] = {"used": False, "children": {}} |
|
258 |
if len(location) > 0: |
|
259 |
self._AddUsedLocation(parent[num]["children"], location) |
|
260 |
else: |
|
261 |
parent[num]["used"] = True |
|
262 |
||
263 |
def AddUsedLocation(self, location): |
|
264 |
if len(location) > 0: |
|
265 |
self._AddUsedLocation(self.UsedLocations, list(location)) |
|
266 |
||
267 |
def _CheckLocationConflicts(self, parent, location): |
|
268 |
num = location.pop(0) |
|
269 |
if not parent.has_key(num): |
|
270 |
return False |
|
271 |
if len(location) > 0: |
|
272 |
if parent[num]["used"]: |
|
273 |
return True |
|
274 |
return self._CheckLocationConflicts(parent[num]["children"], location) |
|
275 |
elif len(parent[num]["children"]) > 0: |
|
276 |
return True |
|
277 |
return False |
|
278 |
||
279 |
def CheckLocationConflicts(self, location): |
|
280 |
if len(location) > 0: |
|
281 |
return self._CheckLocationConflicts(self.UsedLocations, list(location)) |
|
282 |
return False |
|
283 |
||
284 |
def PlugGenerate_C(self, buildpath, locations): |
|
285 |
""" |
|
286 |
Generate C code |
|
287 |
@param current_location: Tupple containing plugin IEC location : %I0.0.4.5 => (0,0,4,5) |
|
288 |
@param locations: List of complete variables locations \ |
|
289 |
[{"IEC_TYPE" : the IEC type (i.e. "INT", "STRING", ...) |
|
290 |
"NAME" : name of the variable (generally "__IW0_1_2" style) |
|
291 |
"DIR" : direction "Q","I" or "M" |
|
292 |
"SIZE" : size "X", "B", "W", "D", "L" |
|
293 |
"LOC" : tuple of interger for IEC location (0,1,2,...) |
|
294 |
}, ...] |
|
295 |
@return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND |
|
296 |
""" |
|
297 |
current_location = self.GetCurrentLocation() |
|
298 |
# define a unique name for the generated C file |
|
299 |
location_str = "_".join(map(str, current_location)) |
|
300 |
||
301 |
code_str = {"location_str": location_str, |
|
302 |
"var_decl": "", |
|
303 |
"declare_code": "", |
|
553 | 304 |
"init_code": "", |
442 | 305 |
"retrieve_code": "", |
306 |
"publish_code": "", |
|
307 |
} |
|
308 |
||
553 | 309 |
for module in _GetModuleChildren(self): |
310 |
if module["init"] != "": |
|
311 |
code_str["init_code"] += " %s\n" % module["init"] |
|
550
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
312 |
|
442 | 313 |
# Adding variables |
314 |
vars = [] |
|
315 |
self.ResetUsedLocations() |
|
316 |
for location in locations: |
|
317 |
loc = location["LOC"][len(current_location):] |
|
318 |
group = next = self |
|
319 |
i = 0 |
|
320 |
while next is not None and i < len(loc): |
|
321 |
next = self._GetChildBySomething("IEC_Channel", loc[:i + 1]) |
|
322 |
if next is not None: |
|
323 |
i += 1 |
|
324 |
group = next |
|
325 |
var_loc = loc[i:] |
|
530 | 326 |
for variable in _GetModuleChildren(group): |
566
657900299557
Fix bug in LPCBeremiz that use input retrieve and publish code for ouput with the same location
laurent
parents:
561
diff
changeset
|
327 |
if variable["location"] == var_loc and location["DIR"] == LOCATION_DIRS[variable["type"]]: |
543
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
328 |
# if location["DIR"] != LOCATION_DIRS[variable["type"]]: |
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
329 |
# raise Exception, "Direction conflict in variable definition" |
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
330 |
# if location["IEC_TYPE"] != variable["IEC_type"]: |
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
331 |
# raise Exception, "Type conflict in variable definition" |
442 | 332 |
if location["DIR"] == "Q": |
333 |
if self.CheckLocationConflicts(location["LOC"]): |
|
334 |
raise Exception, "BYTE and BIT from the same BYTE can't be used together" |
|
335 |
self.AddUsedLocation(location["LOC"]) |
|
336 |
vars.append({"location": location["NAME"], |
|
337 |
"Type": variable["IEC_type"], |
|
338 |
"Retrieve": variable["retrieve"], |
|
339 |
"Publish": variable["publish"], |
|
340 |
}) |
|
341 |
break |
|
342 |
base_types = self.GetPlugRoot().GetBaseTypes() |
|
343 |
for var in vars: |
|
344 |
prefix = "" |
|
345 |
if var["Type"] in base_types: |
|
346 |
prefix = "IEC_" |
|
347 |
code_str["var_decl"] += "%s%s beremiz%s;\n"%(prefix, var["Type"], var["location"]) |
|
348 |
code_str["var_decl"] += "%s%s *%s = &beremiz%s;\n"%(prefix, var["Type"], var["location"], var["location"]) |
|
349 |
if var["Retrieve"] != "": |
|
550
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
350 |
code_str["retrieve_code"] += " " + var["Retrieve"] % ("*" + var["location"]) + "\n" |
442 | 351 |
if var["Publish"] != "": |
550
b03f586547c9
Adding support for initialize all LPC module variables even if not used
laurent
parents:
549
diff
changeset
|
352 |
code_str["publish_code"] += " " + var["Publish"] % ("*" + var["location"]) + "\n" |
442 | 353 |
|
553 | 354 |
Gen_Module_path = os.path.join(buildpath, "Bus_%s.c"%location_str) |
442 | 355 |
module = open(Gen_Module_path,'w') |
356 |
module.write(BUS_TEXT % code_str) |
|
357 |
module.close() |
|
358 |
||
359 |
matiec_flags = '"-I%s"'%os.path.abspath(self.GetPlugRoot().GetIECLibPath()) |
|
360 |
return [(Gen_Module_path, matiec_flags)],"",True |
|
361 |
||
362 |
#------------------------------------------------------------------------------- |
|
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
363 |
# LPC CanFestival Plugin Class |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
364 |
#------------------------------------------------------------------------------- |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
365 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
366 |
DEFAULT_SETTINGS = { |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
367 |
"CAN_Baudrate": "125K", |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
368 |
"Slave_NodeId": 2, |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
369 |
"Master_NodeId": 1, |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
370 |
} |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
371 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
372 |
class LPCCanOpenSlave(_SlavePlug): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
373 |
XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
374 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
375 |
<xsd:element name="CanFestivalSlaveNode"> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
376 |
<xsd:complexType> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
377 |
<xsd:attribute name="CAN_Baudrate" type="xsd:string" use="optional" default="%(CAN_Baudrate)s"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
378 |
<xsd:attribute name="NodeId" type="xsd:string" use="optional" default="%(Slave_NodeId)d"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
379 |
<xsd:attribute name="Sync_Align" type="xsd:integer" use="optional" default="0"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
380 |
<xsd:attribute name="Sync_Align_Ratio" use="optional" default="50"> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
381 |
<xsd:simpleType> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
382 |
<xsd:restriction base="xsd:integer"> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
383 |
<xsd:minInclusive value="1"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
384 |
<xsd:maxInclusive value="99"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
385 |
</xsd:restriction> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
386 |
</xsd:simpleType> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
387 |
</xsd:attribute> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
388 |
</xsd:complexType> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
389 |
</xsd:element> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
390 |
</xsd:schema> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
391 |
""" % DEFAULT_SETTINGS |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
392 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
393 |
def __init__(self): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
394 |
# TODO change netname when name change |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
395 |
NodeManager.__init__(self) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
396 |
odfilepath = self.GetSlaveODPath() |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
397 |
if(os.path.isfile(odfilepath)): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
398 |
self.OpenFileInCurrent(odfilepath) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
399 |
else: |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
400 |
self.CreateNewNode("SlaveNode", # Name - will be changed at build time |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
401 |
0x00, # NodeID - will be changed at build time |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
402 |
"slave", # Type |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
403 |
"", # description |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
404 |
"None", # profile |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
405 |
"", # prfile filepath |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
406 |
"heartbeat", # NMT |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
407 |
[]) # options |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
408 |
self.OnPlugSave() |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
409 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
410 |
def GetCanDevice(self): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
411 |
return str(self.BaseParams.getIEC_Channel()) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
412 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
413 |
class LPCCanOpenMaster(_NodeListPlug): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
414 |
XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
415 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
416 |
<xsd:element name="CanFestivalNode"> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
417 |
<xsd:complexType> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
418 |
<xsd:attribute name="CAN_Baudrate" type="xsd:string" use="optional" default="%(CAN_Baudrate)s"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
419 |
<xsd:attribute name="NodeId" type="xsd:string" use="optional" default="%(Master_NodeId)d"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
420 |
<xsd:attribute name="Sync_TPDOs" type="xsd:boolean" use="optional" default="true"/> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
421 |
</xsd:complexType> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
422 |
</xsd:element> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
423 |
</xsd:schema> |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
424 |
""" % DEFAULT_SETTINGS |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
425 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
426 |
def GetCanDevice(self): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
427 |
return str(self.BaseParams.getIEC_Channel()) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
428 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
429 |
class LPCCanOpen(CanOpenRootClass): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
430 |
XSD = None |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
431 |
PlugChildsTypes = [("CanOpenNode",LPCCanOpenMaster, "CanOpen Master"), |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
432 |
("CanOpenSlave",LPCCanOpenSlave, "CanOpen Slave")] |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
433 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
434 |
def GetCanDriver(self): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
435 |
return "" |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
436 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
437 |
def LoadChilds(self): |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
438 |
PlugTemplate.LoadChilds(self) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
439 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
440 |
if self.GetChildByName("Master") is None: |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
441 |
master = self.PlugAddChild("Master", "CanOpenNode", 0) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
442 |
master.BaseParams.setEnabled(False) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
443 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
444 |
if self.GetChildByName("Slave") is None: |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
445 |
slave = self.PlugAddChild("Slave", "CanOpenSlave", 1) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
446 |
slave.BaseParams.setEnabled(False) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
447 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
448 |
|
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
449 |
#------------------------------------------------------------------------------- |
442 | 450 |
# LPCPluginsRoot Class |
451 |
#------------------------------------------------------------------------------- |
|
452 |
||
453 |
def mycopytree(src, dst): |
|
454 |
""" |
|
455 |
Copy content of a directory to an other, omit hidden files |
|
456 |
@param src: source directory |
|
457 |
@param dst: destination directory |
|
458 |
""" |
|
459 |
for i in os.listdir(src): |
|
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
460 |
if not i.startswith('.') and i != "pous.xml": |
442 | 461 |
srcpath = os.path.join(src,i) |
462 |
dstpath = os.path.join(dst,i) |
|
463 |
if os.path.isdir(srcpath): |
|
503 | 464 |
if os.path.exists(dstpath): |
465 |
shutil.rmtree(dstpath) |
|
466 |
os.makedirs(dstpath) |
|
442 | 467 |
mycopytree(srcpath, dstpath) |
468 |
elif os.path.isfile(srcpath): |
|
469 |
shutil.copy2(srcpath, dstpath) |
|
470 |
||
572
c965548cb6f7
Fixed MD5 computation for makefile based toolchain, helps avoiding unnecessary builds
edouard
parents:
571
diff
changeset
|
471 |
[SIMULATION_MODE, TRANSFER_MODE] = range(2) |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
472 |
|
442 | 473 |
class LPCPluginsRoot(PluginsRoot): |
474 |
||
475 |
PluginMethods = [ |
|
492 | 476 |
{"bitmap" : opjimg("Debug"), |
477 |
"name" : _("Simulate"), |
|
478 |
"tooltip" : _("Simulate PLC"), |
|
479 |
"method" : "_Simulate"}, |
|
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
480 |
{"bitmap" : opjimg("Run"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
481 |
"name" : _("Run"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
482 |
"shown" : False, |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
483 |
"tooltip" : _("Start PLC"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
484 |
"method" : "_Run"}, |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
485 |
{"bitmap" : opjimg("Stop"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
486 |
"name" : _("Stop"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
487 |
"shown" : False, |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
488 |
"tooltip" : _("Stop Running PLC"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
489 |
"method" : "_Stop"}, |
541 | 490 |
{"bitmap" : opjimg("Build"), |
491 |
"name" : _("Build"), |
|
492 |
"tooltip" : _("Build project into build folder"), |
|
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
493 |
"method" : "_Build"}, |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
494 |
{"bitmap" : opjimg("Transfer"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
495 |
"name" : _("Transfer"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
496 |
"shown" : False, |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
497 |
"tooltip" : _("Transfer PLC"), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
498 |
"method" : "_Transfer"}, |
442 | 499 |
] |
500 |
||
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
501 |
def __init__(self, frame, logger, buildpath): |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
502 |
self.OrigBuildPath = buildpath |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
503 |
|
478 | 504 |
PluginsRoot.__init__(self, frame, logger) |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
505 |
|
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
506 |
self.PlugChildsTypes += [("LPCBus", LPCBus, "LPC bus"), ("CanOpen", LPCCanOpen, "CanOpen bus")] |
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
507 |
self.PlugType = "LPC" |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
508 |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
509 |
self.OnlineMode = "OFF" |
561 | 510 |
self.LPCConnector = None |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
511 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
512 |
self.CurrentMode = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
513 |
self.previous_mode = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
514 |
|
492 | 515 |
self.SimulationBuildPath = None |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
516 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
517 |
self.AbortTransferTimer = None |
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
518 |
|
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
519 |
def PluginLibraryFilePath(self): |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
520 |
if self.OrigBuildPath is not None: |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
521 |
return os.path.join(self.OrigBuildPath, "pous.xml") |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
522 |
else: |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
523 |
return PluginsRoot.PluginLibraryFilePath(self) |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
524 |
|
442 | 525 |
def GetProjectName(self): |
526 |
return self.Project.getname() |
|
527 |
||
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
528 |
def GetDefaultTargetName(self): |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
529 |
if self.CurrentMode == SIMULATION_MODE: |
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
530 |
return PluginsRoot.GetDefaultTargetName(self) |
492 | 531 |
else: |
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
532 |
return "LPC" |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
533 |
|
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
534 |
def GetTarget(self): |
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
535 |
target = PluginsRoot.GetTarget(self) |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
536 |
if self.CurrentMode != SIMULATION_MODE: |
510
8038c08b9874
Getting default target when no target defined fixed
laurent
parents:
503
diff
changeset
|
537 |
target.getcontent()["value"].setBuildPath(self.BuildPath) |
442 | 538 |
return target |
492 | 539 |
|
540 |
def _getBuildPath(self): |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
541 |
if self.CurrentMode == SIMULATION_MODE: |
492 | 542 |
if self.SimulationBuildPath is None: |
543 |
self.SimulationBuildPath = os.path.join(tempfile.mkdtemp(), os.path.basename(self.ProjectPath), "build") |
|
544 |
return self.SimulationBuildPath |
|
545 |
else: |
|
494
9e4263099427
Bug when opening with not empty buildpath parameter fixed
laurent
parents:
492
diff
changeset
|
546 |
return PluginsRoot._getBuildPath(self) |
503 | 547 |
|
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
548 |
def _Build(self): |
599 | 549 |
save = self.ProjectTestModified() |
550 |
if save: |
|
551 |
self.SaveProject() |
|
552 |
self.AppFrame._Refresh(TITLE, FILEMENU) |
|
503 | 553 |
if self.BuildPath is not None: |
554 |
mycopytree(self.OrigBuildPath, self.BuildPath) |
|
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
555 |
PluginsRoot._Build(self) |
599 | 556 |
if save: |
557 |
wx.CallAfter(self.AppFrame.RefreshAll) |
|
492 | 558 |
|
442 | 559 |
def SetProjectName(self, name): |
560 |
return self.Project.setname(name) |
|
561 |
||
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
562 |
def SetOnlineMode(self, mode, path=None): |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
563 |
if self.OnlineMode != mode.upper(): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
564 |
self.OnlineMode = mode.upper() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
565 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
566 |
if self.OnlineMode != "OFF": |
543
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
567 |
uri = "LPC://%s/%s" % (self.OnlineMode,path) |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
568 |
try: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
569 |
self.LPCConnector = connectors.ConnectorFactory(uri, self) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
570 |
except Exception, msg: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
571 |
self.logger.write_error(_("Exception while connecting %s!\n")%uri) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
572 |
self.logger.write_error(traceback.format_exc()) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
573 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
574 |
# Did connection success ? |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
575 |
if self.LPCConnector is None: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
576 |
# Oups. |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
577 |
self.logger.write_error(_("Connection failed to %s!\n")%uri) |
492 | 578 |
|
579 |
else: |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
580 |
self.LPCConnector = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
581 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
582 |
self.ApplyOnlineMode() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
583 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
584 |
def ApplyOnlineMode(self): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
585 |
if self.CurrentMode != SIMULATION_MODE: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
586 |
self.KillDebugThread() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
587 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
588 |
self._connector = self.LPCConnector |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
589 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
590 |
# Init with actual PLC status and print it |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
591 |
self.UpdateMethodsFromPLCStatus() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
592 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
593 |
if self.LPCConnector is not None and self.OnlineMode == "APPLICATION": |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
594 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
595 |
self.CompareLocalAndRemotePLC() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
596 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
597 |
if self.previous_plcstate is not None: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
598 |
status = _(self.previous_plcstate) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
599 |
else: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
600 |
status = "" |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
601 |
self.logger.write(_("PLC is %s\n")%status) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
602 |
|
575
6765adf58711
Removed status polling for LPC, as status cannot change by itself, fixed MD5 comparison in app mode
edouard
parents:
574
diff
changeset
|
603 |
#if self.StatusTimer and not self.StatusTimer.IsRunning(): |
6765adf58711
Removed status polling for LPC, as status cannot change by itself, fixed MD5 comparison in app mode
edouard
parents:
574
diff
changeset
|
604 |
# # Start the status Timer |
6765adf58711
Removed status polling for LPC, as status cannot change by itself, fixed MD5 comparison in app mode
edouard
parents:
574
diff
changeset
|
605 |
# self.StatusTimer.Start(milliseconds=2000, oneShot=False) |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
606 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
607 |
if self.previous_plcstate=="Started": |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
608 |
if self.DebugAvailable() and self.GetIECProgramsAndVariables(): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
609 |
self.logger.write(_("Debug connect matching running PLC\n")) |
576
7fcdc0d3d8d9
Some typo fixes to make debug related methods in LPCAppOject stop throwing exceptions, less agressive error message when unplugging LPC
edouard
parents:
575
diff
changeset
|
610 |
self._connect_debug() |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
611 |
else: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
612 |
self.logger.write_warning(_("Debug do not match PLC - stop/transfert/start to re-enable\n")) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
613 |
|
543
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
614 |
elif self.StatusTimer and self.StatusTimer.IsRunning(): |
492 | 615 |
self.StatusTimer.Stop() |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
616 |
|
572
c965548cb6f7
Fixed MD5 computation for makefile based toolchain, helps avoiding unnecessary builds
edouard
parents:
571
diff
changeset
|
617 |
if self.CurrentMode == TRANSFER_MODE: |
492 | 618 |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
619 |
if self.OnlineMode == "BOOTLOADER": |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
620 |
self.BeginTransfer() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
621 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
622 |
elif self.OnlineMode == "APPLICATION": |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
623 |
self.CurrentMode = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
624 |
self.AbortTransferTimer.Stop() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
625 |
self.AbortTransferTimer = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
626 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
627 |
self.logger.write(_("PLC transferred successfully\n")) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
628 |
|
444
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
629 |
# Update a PLCOpenEditor Pou variable name |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
630 |
def UpdateProjectVariableName(self, old_name, new_name): |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
631 |
self.Project.updateElementName(old_name, new_name) |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
632 |
self.BufferProject() |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
633 |
|
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
634 |
def RemoveProjectVariableByAddress(self, address): |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
635 |
self.Project.removeVariableByAddress(address) |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
636 |
self.BufferProject() |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
637 |
|
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
638 |
def RemoveProjectVariableByFilter(self, leading): |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
639 |
self.Project.removeVariableByFilter(leading) |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
640 |
self.BufferProject() |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
641 |
|
442 | 642 |
def LoadProject(self, ProjectPath, BuildPath=None): |
643 |
""" |
|
478 | 644 |
Load a project contained in a folder |
645 |
@param ProjectPath: path of the project folder |
|
442 | 646 |
""" |
478 | 647 |
if os.path.basename(ProjectPath) == "": |
648 |
ProjectPath = os.path.dirname(ProjectPath) |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
649 |
|
478 | 650 |
# Verify that project contains a PLCOpen program |
651 |
plc_file = os.path.join(ProjectPath, "plc.xml") |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
652 |
if os.path.isfile(plc_file): |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
653 |
# Load PLCOpen file |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
654 |
result = self.OpenXMLFile(plc_file) |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
655 |
if result: |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
656 |
return result |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
657 |
else: |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
658 |
self.CreateNewProject({"companyName": "", |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
659 |
"productName": "", |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
660 |
"productVersion": "", |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
661 |
"projectName": "", |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
662 |
"pageSize": (0, 0), |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
663 |
"scaling": {}}) |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
664 |
|
442 | 665 |
# Change XSD into class members |
666 |
self._AddParamsMembers() |
|
667 |
self.PluggedChilds = {} |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
668 |
|
442 | 669 |
# Keep track of the root plugin (i.e. project path) |
670 |
self.ProjectPath = ProjectPath |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
671 |
|
478 | 672 |
self.BuildPath = self._getBuildPath() |
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
673 |
if self.OrigBuildPath is not None: |
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
674 |
mycopytree(self.OrigBuildPath, self.BuildPath) |
442 | 675 |
|
478 | 676 |
# If dir have already be made, and file exist |
677 |
if os.path.isdir(self.PlugPath()) and os.path.isfile(self.PluginXmlFilePath()): |
|
678 |
#Load the plugin.xml file into parameters members |
|
679 |
result = self.LoadXMLParams() |
|
680 |
if result: |
|
681 |
return result |
|
682 |
#Load and init all the childs |
|
683 |
self.LoadChilds() |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
684 |
|
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
685 |
if self.GetChildByName("CanOpen") is None: |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
686 |
canopen = self.PlugAddChild("CanOpen", "CanOpen", 0) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
687 |
canopen.BaseParams.setEnabled(False) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
688 |
canopen.LoadChilds() |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
689 |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
690 |
if self.PlugTestModified(): |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
691 |
self.SaveProject() |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
692 |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
693 |
if wx.GetApp() is None: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
694 |
self.RefreshPluginsBlockLists() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
695 |
else: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
696 |
wx.CallAfter(self.RefreshPluginsBlockLists) |
478 | 697 |
|
698 |
return None |
|
442 | 699 |
|
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
700 |
############# Real PLC object access ############# |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
701 |
def UpdateMethodsFromPLCStatus(self): |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
702 |
# Get PLC state : Running or Stopped |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
703 |
# TODO : use explicit status instead of boolean |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
704 |
if self.OnlineMode == "OFF": |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
705 |
status = "Disconnected" |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
706 |
elif self.OnlineMode == "BOOTLOADER": |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
707 |
status = "Connected" |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
708 |
else: |
492 | 709 |
if self._connector is not None: |
710 |
status = self._connector.GetPLCstatus() |
|
711 |
else: |
|
712 |
status = "Disconnected" |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
713 |
if self.previous_plcstate != status or self.previous_mode != self.CurrentMode: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
714 |
simulating = self.CurrentMode == SIMULATION_MODE |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
715 |
for args in { |
492 | 716 |
"Started" : [("_Simulate", False), |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
717 |
("_Run", False), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
718 |
("_Stop", True), |
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
719 |
("_Build", True), |
559 | 720 |
("_Transfer", True)], |
721 |
"Stopped" : [("_Simulate", False), |
|
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
722 |
("_Run", True), |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
723 |
("_Stop", False), |
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
724 |
("_Build", True), |
559 | 725 |
("_Transfer", True)], |
492 | 726 |
"Connected" : [("_Simulate", not simulating), |
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
727 |
("_Run", True), |
492 | 728 |
("_Stop", simulating), |
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
729 |
("_Build", True), |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
730 |
("_Transfer", True)], |
492 | 731 |
"Disconnected" :[("_Simulate", not simulating), |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
732 |
("_Run", False), |
492 | 733 |
("_Stop", simulating), |
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
734 |
("_Build", True), |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
735 |
("_Transfer", False)], |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
736 |
}.get(status,[]): |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
737 |
self.ShowMethod(*args) |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
738 |
self.previous_plcstate = status |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
739 |
self.previous_mode = self.CurrentMode |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
740 |
return True |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
741 |
return False |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
742 |
|
492 | 743 |
def Generate_plc_declare_locations(self): |
744 |
""" |
|
745 |
Declare used locations in order to simulatePLC in a black box |
|
746 |
""" |
|
747 |
return """#include "iec_types_all.h" |
|
748 |
||
749 |
#define __LOCATED_VAR(type, name, ...) \ |
|
750 |
type beremiz_##name;\ |
|
751 |
type *name = &beremiz_##name; |
|
752 |
||
753 |
#include "LOCATED_VARIABLES.h" |
|
754 |
||
755 |
#undef __LOCATED_VAR |
|
756 |
||
757 |
""" |
|
758 |
||
759 |
def _Simulate(self): |
|
760 |
""" |
|
761 |
Method called by user to Simulate PLC |
|
762 |
""" |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
763 |
self.CurrentMode = SIMULATION_MODE |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
764 |
|
492 | 765 |
uri = "LOCAL://" |
766 |
try: |
|
767 |
self._connector = connectors.ConnectorFactory(uri, self) |
|
768 |
except Exception, msg: |
|
769 |
self.logger.write_error(_("Exception while connecting %s!\n")%uri) |
|
770 |
self.logger.write_error(traceback.format_exc()) |
|
771 |
||
772 |
# Did connection success ? |
|
773 |
if self._connector is None: |
|
774 |
# Oups. |
|
775 |
self.logger.write_error(_("Connection failed to %s!\n")%uri) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
776 |
self.StopSimulation() |
492 | 777 |
return False |
778 |
||
779 |
buildpath = self._getBuildPath() |
|
780 |
||
781 |
# Eventually create build dir |
|
782 |
if not os.path.exists(buildpath): |
|
783 |
os.makedirs(buildpath) |
|
784 |
||
785 |
# Generate SoftPLC IEC code |
|
786 |
IECGenRes = self._Generate_SoftPLC() |
|
787 |
||
788 |
# If IEC code gen fail, bail out. |
|
789 |
if not IECGenRes: |
|
790 |
self.logger.write_error(_("IEC-61131-3 code generation failed !\n")) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
791 |
self.StopSimulation() |
492 | 792 |
return False |
793 |
||
794 |
# Reset variable and program list that are parsed from |
|
795 |
# CSV file generated by IEC2C compiler. |
|
796 |
self.ResetIECProgramsAndVariables() |
|
797 |
||
798 |
gen_result = self.PlugGenerate_C(buildpath, self.PLCGeneratedLocatedVars) |
|
799 |
PlugCFilesAndCFLAGS, PlugLDFLAGS, DoCalls = gen_result[:3] |
|
800 |
# if some files have been generated put them in the list with their location |
|
801 |
if PlugCFilesAndCFLAGS: |
|
802 |
self.LocationCFilesAndCFLAGS = [(self.GetCurrentLocation(), PlugCFilesAndCFLAGS, DoCalls)] |
|
803 |
else: |
|
804 |
self.LocationCFilesAndCFLAGS = [] |
|
805 |
||
806 |
# plugin asks for some LDFLAGS |
|
807 |
if PlugLDFLAGS: |
|
808 |
# LDFLAGS can be either string |
|
809 |
if type(PlugLDFLAGS)==type(str()): |
|
810 |
self.LDFLAGS=[PlugLDFLAGS] |
|
811 |
#or list of strings |
|
812 |
elif type(PlugLDFLAGS)==type(list()): |
|
813 |
self.LDFLAGS=PlugLDFLAGS[:] |
|
814 |
else: |
|
815 |
self.LDFLAGS=[] |
|
816 |
||
817 |
# Template based part of C code generation |
|
818 |
# files are stacked at the beginning, as files of plugin tree root |
|
819 |
for generator, filename, name in [ |
|
820 |
# debugger code |
|
821 |
(self.Generate_plc_debugger, "plc_debugger.c", "Debugger"), |
|
822 |
# init/cleanup/retrieve/publish, run and align code |
|
823 |
(self.Generate_plc_common_main,"plc_common_main.c","Common runtime"), |
|
824 |
# declare located variables for simulate in a black box |
|
825 |
(self.Generate_plc_declare_locations,"plc_declare_locations.c","Declare Locations")]: |
|
826 |
try: |
|
827 |
# Do generate |
|
828 |
code = generator() |
|
829 |
if code is None: |
|
830 |
raise |
|
831 |
code_path = os.path.join(buildpath,filename) |
|
832 |
open(code_path, "w").write(code) |
|
833 |
# Insert this file as first file to be compiled at root plugin |
|
834 |
self.LocationCFilesAndCFLAGS[0][1].insert(0,(code_path, self.plcCFLAGS)) |
|
835 |
except Exception, exc: |
|
836 |
self.logger.write_error(name+_(" generation failed !\n")) |
|
837 |
self.logger.write_error(traceback.format_exc()) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
838 |
self.StopSimulation() |
492 | 839 |
return False |
840 |
||
841 |
# Get simulation builder |
|
842 |
builder = self.GetBuilder() |
|
843 |
if builder is None: |
|
844 |
self.logger.write_error(_("Fatal : cannot get builder.\n")) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
845 |
self.StopSimulation() |
492 | 846 |
return False |
847 |
||
848 |
# Build |
|
849 |
try: |
|
850 |
if not builder.build() : |
|
851 |
self.logger.write_error(_("C Build failed.\n")) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
852 |
self.StopSimulation() |
492 | 853 |
return False |
854 |
except Exception, exc: |
|
855 |
self.logger.write_error(_("C Build crashed !\n")) |
|
856 |
self.logger.write_error(traceback.format_exc()) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
857 |
self.StopSimulation() |
492 | 858 |
return False |
859 |
||
860 |
data = builder.GetBinaryCode() |
|
861 |
if data is not None : |
|
862 |
if self._connector.NewPLC(builder.GetBinaryCodeMD5(), data, []): |
|
863 |
if self.AppFrame is not None: |
|
864 |
self.AppFrame.CloseDebugTabs() |
|
865 |
self.AppFrame.RefreshInstancesTree() |
|
866 |
self.UnsubscribeAllDebugIECVariable() |
|
867 |
self.ProgramTransferred() |
|
868 |
self.logger.write(_("Transfer completed successfully.\n")) |
|
869 |
else: |
|
870 |
self.logger.write_error(_("Transfer failed\n")) |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
871 |
self.StopSimulation() |
492 | 872 |
return False |
873 |
||
874 |
self._Run() |
|
875 |
||
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
876 |
if not self.StatusTimer.IsRunning(): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
877 |
# Start the status Timer |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
878 |
self.StatusTimer.Start(milliseconds=500, oneShot=False) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
879 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
880 |
def StopSimulation(self): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
881 |
self.CurrentMode = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
882 |
self.ApplyOnlineMode() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
883 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
884 |
def _Stop(self): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
885 |
PluginsRoot._Stop(self) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
886 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
887 |
if self.CurrentMode == SIMULATION_MODE: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
888 |
self.StopSimulation() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
889 |
|
560
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
890 |
def CompareLocalAndRemotePLC(self): |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
891 |
if self.LPCConnector is None: |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
892 |
return |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
893 |
# We are now connected. Update button status |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
894 |
MD5 = self.GetLastBuildMD5() |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
895 |
# Check remote target PLC correspondance to that md5 |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
896 |
if MD5 is not None and self.LPCConnector.MatchMD5(MD5): |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
897 |
# warns controller that program match |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
898 |
self.ProgramTransferred() |
681fe60443fc
Fix transfer button enable state and build button state
laurent
parents:
559
diff
changeset
|
899 |
|
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
900 |
def ResetBuildMD5(self): |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
901 |
builder=self.GetBuilder() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
902 |
if builder is not None: |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
903 |
builder.ResetBinaryCodeMD5() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
904 |
|
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
905 |
def GetLastBuildMD5(self): |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
906 |
builder=self.GetBuilder() |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
907 |
if builder is not None: |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
908 |
return builder.GetBinaryCodeMD5(self.OnlineMode) |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
909 |
else: |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
910 |
return None |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
911 |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
912 |
def _Transfer(self): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
913 |
if self.CurrentMode is None and self.OnlineMode != "OFF": |
572
c965548cb6f7
Fixed MD5 computation for makefile based toolchain, helps avoiding unnecessary builds
edouard
parents:
571
diff
changeset
|
914 |
self.CurrentMode = TRANSFER_MODE |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
915 |
|
677
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
916 |
if PluginsRoot._Build(self): |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
917 |
|
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
918 |
ID_ABORTTRANSFERTIMER = wx.NewId() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
919 |
self.AbortTransferTimer = wx.Timer(self.AppFrame, ID_ABORTTRANSFERTIMER) |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
920 |
self.AppFrame.Bind(wx.EVT_TIMER, self.AbortTransfer, self.AbortTransferTimer) |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
921 |
|
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
922 |
if self.OnlineMode == "BOOTLOADER": |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
923 |
self.BeginTransfer() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
924 |
|
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
925 |
else: |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
926 |
self.logger.write(_("Resetting PLC\n")) |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
927 |
#self.StatusTimer.Stop() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
928 |
self.LPCConnector.ResetPLC() |
607731b33026
Fix 'Transfer" button state according to last build result
laurent
parents:
659
diff
changeset
|
929 |
self.AbortTransferTimer.Start(milliseconds=5000, oneShot=True) |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
930 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
931 |
def BeginTransfer(self): |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
932 |
self.logger.write(_("Start PLC transfer\n")) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
933 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
934 |
self.AbortTransferTimer.Stop() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
935 |
PluginsRoot._Transfer(self) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
936 |
self.AbortTransferTimer.Start(milliseconds=5000, oneShot=True) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
937 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
938 |
def AbortTransfer(self, event): |
543
3dec6ff88620
Disabled boring standard conformance checks, fixed possible race condition with StatusTimer, fixed warning message in AbortTransfer
Lolitech
parents:
541
diff
changeset
|
939 |
self.logger.write_warning(_("Timeout waiting PLC to recover\n")) |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
940 |
|
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
941 |
self.CurrentMode = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
942 |
self.AbortTransferTimer.Stop() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
943 |
self.AbortTransferTimer = None |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
944 |
event.Skip() |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
945 |
|
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
946 |
def _Run(self): |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
947 |
""" |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
948 |
Start PLC |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
949 |
""" |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
950 |
if self.GetIECProgramsAndVariables(): |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
951 |
self._connector.StartPLC() |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
952 |
self.logger.write(_("Starting PLC\n")) |
576
7fcdc0d3d8d9
Some typo fixes to make debug related methods in LPCAppOject stop throwing exceptions, less agressive error message when unplugging LPC
edouard
parents:
575
diff
changeset
|
953 |
self._connect_debug() |
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
954 |
else: |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
955 |
self.logger.write_error(_("Couldn't start PLC !\n")) |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
956 |
self.UpdateMethodsFromPLCStatus() |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
957 |
|
442 | 958 |
#------------------------------------------------------------------------------- |
959 |
# LPCBeremiz Class |
|
960 |
#------------------------------------------------------------------------------- |
|
549 | 961 |
lpcberemiz_cmd=None |
442 | 962 |
|
963 |
class LPCBeremiz(Beremiz): |
|
964 |
||
965 |
def _init_coll_FileMenu_Items(self, parent): |
|
966 |
AppendMenu(parent, help='', id=wx.ID_SAVE, |
|
967 |
kind=wx.ITEM_NORMAL, text=_(u'Save\tCTRL+S')) |
|
968 |
AppendMenu(parent, help='', id=wx.ID_CLOSE, |
|
969 |
kind=wx.ITEM_NORMAL, text=_(u'Close Tab\tCTRL+W')) |
|
970 |
parent.AppendSeparator() |
|
971 |
AppendMenu(parent, help='', id=wx.ID_PAGE_SETUP, |
|
972 |
kind=wx.ITEM_NORMAL, text=_(u'Page Setup')) |
|
973 |
AppendMenu(parent, help='', id=wx.ID_PREVIEW, |
|
974 |
kind=wx.ITEM_NORMAL, text=_(u'Preview')) |
|
975 |
AppendMenu(parent, help='', id=wx.ID_PRINT, |
|
976 |
kind=wx.ITEM_NORMAL, text=_(u'Print')) |
|
977 |
parent.AppendSeparator() |
|
978 |
AppendMenu(parent, help='', id=wx.ID_PROPERTIES, |
|
979 |
kind=wx.ITEM_NORMAL, text=_(u'Properties')) |
|
980 |
parent.AppendSeparator() |
|
981 |
AppendMenu(parent, help='', id=wx.ID_EXIT, |
|
982 |
kind=wx.ITEM_NORMAL, text=_(u'Quit\tCTRL+Q')) |
|
983 |
||
984 |
self.Bind(wx.EVT_MENU, self.OnSaveProjectMenu, id=wx.ID_SAVE) |
|
985 |
self.Bind(wx.EVT_MENU, self.OnCloseTabMenu, id=wx.ID_CLOSE) |
|
986 |
self.Bind(wx.EVT_MENU, self.OnPageSetupMenu, id=wx.ID_PAGE_SETUP) |
|
987 |
self.Bind(wx.EVT_MENU, self.OnPreviewMenu, id=wx.ID_PREVIEW) |
|
988 |
self.Bind(wx.EVT_MENU, self.OnPrintMenu, id=wx.ID_PRINT) |
|
989 |
self.Bind(wx.EVT_MENU, self.OnPropertiesMenu, id=wx.ID_PROPERTIES) |
|
990 |
self.Bind(wx.EVT_MENU, self.OnQuitMenu, id=wx.ID_EXIT) |
|
991 |
||
992 |
def _init_ctrls(self, prnt): |
|
993 |
IDEFrame._init_ctrls(self, prnt) |
|
994 |
||
995 |
self.Bind(wx.EVT_MENU, self.OnOpenWidgetInspector, id=ID_BEREMIZINSPECTOR) |
|
996 |
accel = wx.AcceleratorTable([wx.AcceleratorEntry(wx.ACCEL_CTRL|wx.ACCEL_ALT, ord('I'), ID_BEREMIZINSPECTOR)]) |
|
997 |
self.SetAcceleratorTable(accel) |
|
998 |
||
999 |
self.PLCConfig = wx.ScrolledWindow(id=ID_BEREMIZPLCCONFIG, |
|
1000 |
name='PLCConfig', parent=self.LeftNoteBook, pos=wx.Point(0, 0), |
|
1001 |
size=wx.Size(-1, -1), style=wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER|wx.HSCROLL|wx.VSCROLL) |
|
1002 |
self.PLCConfig.SetBackgroundColour(wx.WHITE) |
|
1003 |
self.PLCConfig.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown) |
|
1004 |
self.PLCConfig.Bind(wx.EVT_SIZE, self.OnMoveWindow) |
|
1005 |
self.LeftNoteBook.InsertPage(0, self.PLCConfig, _("Topology"), True) |
|
1006 |
||
1007 |
self.LogConsole = wx.TextCtrl(id=ID_BEREMIZLOGCONSOLE, value='', |
|
1008 |
name='LogConsole', parent=self.BottomNoteBook, pos=wx.Point(0, 0), |
|
1009 |
size=wx.Size(0, 0), style=wx.TE_MULTILINE|wx.TE_RICH2) |
|
1010 |
self.LogConsole.Bind(wx.EVT_LEFT_DCLICK, self.OnLogConsoleDClick) |
|
1011 |
self.BottomNoteBook.AddPage(self.LogConsole, _("Log Console")) |
|
1012 |
||
1013 |
self._init_beremiz_sizers() |
|
1014 |
||
1015 |
def OnCloseFrame(self, event): |
|
519
3a5faff52e5c
Adding message to standard output to signal when LPCBeremiz is closed
laurent
parents:
517
diff
changeset
|
1016 |
global frame |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1017 |
|
596
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1018 |
if self.CheckSaveBeforeClosing(_("Close Application")): |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1019 |
|
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1020 |
frame.Hide() |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1021 |
|
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1022 |
self.PluginRoot.ResetAppFrame(lpcberemiz_cmd.Log) |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1023 |
if self.PluginRoot.OnlineMode == 0: |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1024 |
self.PluginRoot._connector = None |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1025 |
|
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1026 |
self.PluginRoot.KillDebugThread() |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1027 |
self.KillLocalRuntime() |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1028 |
|
598
6c919bc1551d
Adding support for saving frame size while closing and restore it at next launch
laurent
parents:
597
diff
changeset
|
1029 |
self.SaveFrameSize() |
6c919bc1551d
Adding support for saving frame size while closing and restore it at next launch
laurent
parents:
597
diff
changeset
|
1030 |
|
596
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1031 |
lpcberemiz_cmd.Log.write("Closed\n") |
b36422acae13
Adding warning message on LPCBeremiz when closing frame and program not saved
laurent
parents:
578
diff
changeset
|
1032 |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1033 |
event.Veto() |
442 | 1034 |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1035 |
def ShowProperties(self): |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1036 |
old_values = self.Controler.GetProjectProperties() |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1037 |
dialog = ProjectDialog(self ,False) |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1038 |
dialog.SetValues(old_values) |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1039 |
if dialog.ShowModal() == wx.ID_OK: |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1040 |
new_values = dialog.GetValues() |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1041 |
new_values["creationDateTime"] = old_values["creationDateTime"] |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1042 |
if new_values != old_values: |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1043 |
self.Controler.SetProjectProperties(None, new_values) |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1044 |
self._Refresh(TITLE, TOOLBAR, FILEMENU, EDITMENU, DISPLAYMENU, |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1045 |
TYPESTREE, INSTANCESTREE, SCALING) |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1046 |
dialog.Destroy() |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1047 |
|
442 | 1048 |
def RefreshFileMenu(self): |
1049 |
if self.PluginRoot is not None: |
|
1050 |
selected = self.TabsOpened.GetSelection() |
|
1051 |
if selected >= 0: |
|
1052 |
graphic_viewer = isinstance(self.TabsOpened.GetPage(selected), Viewer) |
|
1053 |
else: |
|
1054 |
graphic_viewer = False |
|
1055 |
if self.TabsOpened.GetPageCount() > 0: |
|
1056 |
self.FileMenu.Enable(wx.ID_CLOSE, True) |
|
1057 |
if graphic_viewer: |
|
1058 |
self.FileMenu.Enable(wx.ID_PREVIEW, True) |
|
1059 |
self.FileMenu.Enable(wx.ID_PRINT, True) |
|
1060 |
else: |
|
1061 |
self.FileMenu.Enable(wx.ID_PREVIEW, False) |
|
1062 |
self.FileMenu.Enable(wx.ID_PRINT, False) |
|
1063 |
else: |
|
1064 |
self.FileMenu.Enable(wx.ID_CLOSE, False) |
|
1065 |
self.FileMenu.Enable(wx.ID_PREVIEW, False) |
|
1066 |
self.FileMenu.Enable(wx.ID_PRINT, False) |
|
1067 |
self.FileMenu.Enable(wx.ID_PAGE_SETUP, True) |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1068 |
self.FileMenu.Enable(wx.ID_SAVE, self.PluginRoot.PlugTestModified()) |
442 | 1069 |
self.FileMenu.Enable(wx.ID_PROPERTIES, True) |
1070 |
else: |
|
1071 |
self.FileMenu.Enable(wx.ID_CLOSE, False) |
|
1072 |
self.FileMenu.Enable(wx.ID_PAGE_SETUP, False) |
|
1073 |
self.FileMenu.Enable(wx.ID_PREVIEW, False) |
|
1074 |
self.FileMenu.Enable(wx.ID_PRINT, False) |
|
1075 |
self.FileMenu.Enable(wx.ID_SAVE, False) |
|
1076 |
self.FileMenu.Enable(wx.ID_PROPERTIES, False) |
|
1077 |
||
1078 |
def RefreshPLCParams(self): |
|
1079 |
self.Freeze() |
|
1080 |
self.ClearSizer(self.PLCParamsSizer) |
|
1081 |
||
1082 |
if self.PluginRoot is not None: |
|
1083 |
plcwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1)) |
|
1084 |
if self.PluginRoot.PlugTestModified(): |
|
1085 |
bkgdclr = CHANGED_TITLE_COLOUR |
|
1086 |
else: |
|
1087 |
bkgdclr = TITLE_COLOUR |
|
1088 |
||
1089 |
if self.PluginRoot not in self.PluginInfos: |
|
1090 |
self.PluginInfos[self.PluginRoot] = {"right_visible" : False} |
|
1091 |
||
1092 |
plcwindow.SetBackgroundColour(TITLE_COLOUR) |
|
1093 |
plcwindow.Bind(wx.EVT_LEFT_DOWN, self.OnPanelLeftDown) |
|
1094 |
self.PLCParamsSizer.AddWindow(plcwindow, 0, border=0, flag=wx.GROW) |
|
1095 |
||
1096 |
plcwindowsizer = wx.BoxSizer(wx.HORIZONTAL) |
|
1097 |
plcwindow.SetSizer(plcwindowsizer) |
|
1098 |
||
1099 |
st = wx.StaticText(plcwindow, -1) |
|
1100 |
st.SetFont(wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"])) |
|
1101 |
st.SetLabel(self.PluginRoot.GetProjectName()) |
|
1102 |
plcwindowsizer.AddWindow(st, 0, border=5, flag=wx.ALL|wx.ALIGN_CENTER) |
|
1103 |
||
1104 |
plcwindowmainsizer = wx.BoxSizer(wx.VERTICAL) |
|
1105 |
plcwindowsizer.AddSizer(plcwindowmainsizer, 0, border=5, flag=wx.ALL) |
|
1106 |
||
1107 |
plcwindowbuttonsizer = wx.BoxSizer(wx.HORIZONTAL) |
|
1108 |
plcwindowmainsizer.AddSizer(plcwindowbuttonsizer, 0, border=0, flag=wx.ALIGN_CENTER) |
|
1109 |
||
1110 |
msizer = self.GenerateMethodButtonSizer(self.PluginRoot, plcwindow, not self.PluginInfos[self.PluginRoot]["right_visible"]) |
|
1111 |
plcwindowbuttonsizer.AddSizer(msizer, 0, border=0, flag=wx.GROW) |
|
1112 |
||
1113 |
self.PLCConfigMainSizer.Layout() |
|
1114 |
self.RefreshScrollBars() |
|
1115 |
self.Thaw() |
|
1116 |
||
1117 |
def GenerateTreeBranch(self, plugin): |
|
1118 |
leftwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1)) |
|
1119 |
if plugin.PlugTestModified(): |
|
1120 |
bkgdclr=CHANGED_WINDOW_COLOUR |
|
1121 |
else: |
|
1122 |
bkgdclr=WINDOW_COLOUR |
|
1123 |
||
1124 |
leftwindow.SetBackgroundColour(bkgdclr) |
|
1125 |
||
1126 |
if plugin not in self.PluginInfos: |
|
1127 |
self.PluginInfos[plugin] = {"expanded" : False, "left_visible" : False, "right_visible" : False} |
|
1128 |
||
1129 |
self.PluginInfos[plugin]["children"] = plugin.IECSortedChilds() |
|
1130 |
plugin_infos = plugin.GetVariableLocationTree() |
|
1131 |
plugin_locations = [] |
|
1132 |
if len(self.PluginInfos[plugin]["children"]) == 0: |
|
1133 |
plugin_locations = plugin_infos["children"] |
|
1134 |
if not self.PluginInfos[plugin].has_key("locations_infos"): |
|
1135 |
self.PluginInfos[plugin]["locations_infos"] = {"root": {"expanded" : False}} |
|
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1136 |
|
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1137 |
self.PluginInfos[plugin]["locations_infos"]["root"]["left"] = None |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1138 |
self.PluginInfos[plugin]["locations_infos"]["root"]["right"] = None |
442 | 1139 |
self.PluginInfos[plugin]["locations_infos"]["root"]["children"] = [] |
1140 |
||
1141 |
self.PluginTreeSizer.AddWindow(leftwindow, 0, border=0, flag=wx.GROW) |
|
1142 |
||
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1143 |
leftwindowvsizer = wx.BoxSizer(wx.VERTICAL) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1144 |
leftwindow.SetSizer(leftwindowvsizer) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1145 |
|
442 | 1146 |
leftwindowsizer = wx.BoxSizer(wx.HORIZONTAL) |
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1147 |
leftwindowvsizer.AddSizer(leftwindowsizer, 0, border=0, flag=0) |
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1148 |
|
680
61746934df41
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1149 |
self.GenerateEnableButton(leftwindow, leftwindowsizer, plugin) |
61746934df41
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1150 |
|
442 | 1151 |
st = wx.StaticText(leftwindow, -1) |
1152 |
st.SetFont(wx.Font(faces["size"], wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"])) |
|
1153 |
st.SetLabel(plugin.GetFullIEC_Channel()) |
|
1154 |
leftwindowsizer.AddWindow(st, 0, border=5, flag=wx.RIGHT) |
|
1155 |
||
1156 |
expandbutton_id = wx.NewId() |
|
1157 |
expandbutton = wx.lib.buttons.GenBitmapToggleButton(id=expandbutton_id, bitmap=wx.Bitmap(Bpath( 'images', 'plus.png')), |
|
1158 |
name='ExpandButton', parent=leftwindow, pos=wx.Point(0, 0), |
|
1159 |
size=wx.Size(13, 13), style=wx.NO_BORDER) |
|
1160 |
expandbutton.labelDelta = 0 |
|
1161 |
expandbutton.SetBezelWidth(0) |
|
1162 |
expandbutton.SetUseFocusIndicator(False) |
|
1163 |
expandbutton.SetBitmapSelected(wx.Bitmap(Bpath( 'images', 'minus.png'))) |
|
1164 |
||
1165 |
if len(self.PluginInfos[plugin]["children"]) > 0: |
|
1166 |
expandbutton.SetToggle(self.PluginInfos[plugin]["expanded"]) |
|
1167 |
def togglebutton(event): |
|
1168 |
if expandbutton.GetToggle(): |
|
1169 |
self.ExpandPlugin(plugin) |
|
1170 |
else: |
|
1171 |
self.CollapsePlugin(plugin) |
|
1172 |
self.PluginInfos[plugin]["expanded"] = expandbutton.GetToggle() |
|
1173 |
self.PLCConfigMainSizer.Layout() |
|
1174 |
self.RefreshScrollBars() |
|
1175 |
event.Skip() |
|
1176 |
expandbutton.Bind(wx.EVT_BUTTON, togglebutton, id=expandbutton_id) |
|
1177 |
elif len(plugin_locations) > 0: |
|
1178 |
locations_infos = self.PluginInfos[plugin]["locations_infos"] |
|
1179 |
expandbutton.SetToggle(locations_infos["root"]["expanded"]) |
|
1180 |
def togglebutton(event): |
|
1181 |
if expandbutton.GetToggle(): |
|
1182 |
self.ExpandLocation(locations_infos, "root") |
|
1183 |
else: |
|
1184 |
self.CollapseLocation(locations_infos, "root") |
|
1185 |
self.PluginInfos[plugin]["expanded"] = expandbutton.GetToggle() |
|
1186 |
locations_infos["root"]["expanded"] = expandbutton.GetToggle() |
|
1187 |
self.PLCConfigMainSizer.Layout() |
|
1188 |
self.RefreshScrollBars() |
|
1189 |
event.Skip() |
|
1190 |
expandbutton.Bind(wx.EVT_BUTTON, togglebutton, id=expandbutton_id) |
|
1191 |
else: |
|
1192 |
expandbutton.Enable(False) |
|
1193 |
leftwindowsizer.AddWindow(expandbutton, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL) |
|
1194 |
||
1195 |
sb = wx.StaticBitmap(leftwindow, -1) |
|
1196 |
icon = plugin_infos.get("icon", None) |
|
1197 |
if icon is None: |
|
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1198 |
icon_bitmap = self.LocationImageList.GetBitmap(self.LocationImageDict[plugin_infos["type"]]) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1199 |
else: |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1200 |
icon_bitmap = wx.Bitmap(icon) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1201 |
sb.SetBitmap(icon_bitmap) |
442 | 1202 |
leftwindowsizer.AddWindow(sb, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL) |
1203 |
||
1204 |
st_id = wx.NewId() |
|
1205 |
st = wx.StaticText(leftwindow, st_id, size=wx.DefaultSize, style=wx.NO_BORDER) |
|
1206 |
st.SetFont(wx.Font(faces["size"] * 0.75, wx.DEFAULT, wx.NORMAL, wx.BOLD, faceName = faces["helv"])) |
|
1207 |
st.SetLabel(plugin.MandatoryParams[1].getName()) |
|
1208 |
leftwindowsizer.AddWindow(st, 0, border=5, flag=wx.RIGHT|wx.ALIGN_CENTER_VERTICAL) |
|
1209 |
||
682
9d20df7c144a
Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents:
678
diff
changeset
|
1210 |
rightwindow = self.GenerateParamsPanel(plugin, bkgdclr) |
442 | 1211 |
self.PluginTreeSizer.AddWindow(rightwindow, 0, border=0, flag=wx.GROW) |
1212 |
||
1213 |
self.PluginInfos[plugin]["left"] = leftwindow |
|
1214 |
self.PluginInfos[plugin]["right"] = rightwindow |
|
1215 |
for child in self.PluginInfos[plugin]["children"]: |
|
1216 |
self.GenerateTreeBranch(child) |
|
1217 |
if not self.PluginInfos[child]["expanded"]: |
|
1218 |
self.CollapsePlugin(child) |
|
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1219 |
|
442 | 1220 |
if len(plugin_locations) > 0: |
1221 |
locations_infos = self.PluginInfos[plugin]["locations_infos"] |
|
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1222 |
treectrl = wx.TreeCtrl(self.PLCConfig, -1, size=wx.DefaultSize, |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1223 |
style=wx.TR_HAS_BUTTONS|wx.TR_SINGLE|wx.NO_BORDER|wx.TR_HIDE_ROOT|wx.TR_NO_LINES|wx.TR_LINES_AT_ROOT) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1224 |
treectrl.SetImageList(self.LocationImageList) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1225 |
treectrl.Bind(wx.EVT_TREE_BEGIN_DRAG, self.GenerateLocationBeginDragFunction(locations_infos)) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1226 |
treectrl.Bind(wx.EVT_TREE_ITEM_EXPANDED, self.GenerateLocationExpandCollapseFunction(locations_infos, True)) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1227 |
treectrl.Bind(wx.EVT_TREE_ITEM_COLLAPSED, self.GenerateLocationExpandCollapseFunction(locations_infos, False)) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1228 |
|
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1229 |
treectrl.AddRoot("") |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1230 |
self.PluginTreeSizer.AddWindow(treectrl, 0, border=0, flag=0) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1231 |
|
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1232 |
rightwindow = wx.Panel(self.PLCConfig, -1, size=wx.Size(-1, -1)) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1233 |
rightwindow.SetBackgroundColour(wx.WHITE) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1234 |
self.PluginTreeSizer.AddWindow(rightwindow, 0, border=0, flag=wx.GROW) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1235 |
|
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1236 |
locations_infos["root"]["left"] = treectrl |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1237 |
locations_infos["root"]["right"] = rightwindow |
442 | 1238 |
for location in plugin_locations: |
1239 |
locations_infos["root"]["children"].append("root.%s" % location["name"]) |
|
650
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1240 |
self.GenerateLocationTreeBranch(treectrl, treectrl.GetRootItem(), locations_infos, "root", location) |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1241 |
if locations_infos["root"]["expanded"]: |
26236e691330
Replacing sizers structure for locations tree by a treectrl in Topology panel in order to make refreshing of this panel faster
laurent
parents:
629
diff
changeset
|
1242 |
self.ExpandLocation(locations_infos, "root") |
442 | 1243 |
|
1244 |
class StdoutPseudoFile: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1245 |
|
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1246 |
def __init__(self, port): |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1247 |
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1248 |
self.socket.connect(('localhost', port)) |
552 | 1249 |
self.Buffer = "" |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1250 |
|
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1251 |
def __del__(self): |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1252 |
self.socket.close() |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1253 |
|
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1254 |
def readline(self): |
552 | 1255 |
idx = self.Buffer.find("\n") |
1256 |
if idx == -1: |
|
1257 |
self.Buffer += self.socket.recv(2048) |
|
1258 |
idx = self.Buffer.find("\n") |
|
1259 |
if idx != -1: |
|
1260 |
line = self.Buffer[:idx+1] |
|
1261 |
self.Buffer = self.Buffer[idx+1:] |
|
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1262 |
if BMZ_DBG: |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1263 |
print "command >"+line |
552 | 1264 |
return line |
1265 |
return "" |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1266 |
|
442 | 1267 |
""" Base class for file like objects to facilitate StdOut for the Shell.""" |
1268 |
def write(self, s, style = None): |
|
1269 |
if s != '': |
|
578 | 1270 |
self.socket.send(s.encode('utf8')) |
1271 |
||
1272 |
def writeyield(self, s): |
|
1273 |
self.write(s) |
|
1274 |
||
442 | 1275 |
def write_warning(self, s): |
1276 |
self.write(s) |
|
1277 |
||
1278 |
def write_error(self, s): |
|
1279 |
self.write(s) |
|
1280 |
||
1281 |
def flush(self): |
|
1282 |
pass |
|
1283 |
||
1284 |
def isatty(self): |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1285 |
return False |
442 | 1286 |
|
1287 |
if __name__ == '__main__': |
|
1288 |
||
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1289 |
from threading import Thread, Timer, Semaphore |
442 | 1290 |
import cmd |
1291 |
||
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1292 |
wx_eval_lock = Semaphore(0) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1293 |
eval_res = None |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1294 |
def wx_evaluator(callable, *args, **kwargs): |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1295 |
global eval_res |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1296 |
eval_res = None |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1297 |
try: |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1298 |
eval_res=callable(*args,**kwargs) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1299 |
finally: |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1300 |
wx_eval_lock.release() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1301 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1302 |
def evaluator(callable, *args, **kwargs): |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1303 |
global eval_res |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1304 |
wx.CallAfter(wx_evaluator,callable,*args,**kwargs) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1305 |
wx_eval_lock.acquire() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1306 |
return eval_res |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1307 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1308 |
# Command log for debug, for viewing from wxInspector |
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1309 |
if BMZ_DBG: |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1310 |
__builtins__.cmdlog = [] |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1311 |
|
442 | 1312 |
class LPCBeremiz_Cmd(cmd.Cmd): |
1313 |
||
1314 |
prompt = "" |
|
1315 |
RefreshTimer = None |
|
1316 |
||
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1317 |
def __init__(self, PluginRoot, Log): |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1318 |
cmd.Cmd.__init__(self, stdin=Log, stdout=Log) |
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1319 |
self.use_rawinput = False |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1320 |
self.Log = Log |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1321 |
self.PluginRoot = PluginRoot |
442 | 1322 |
|
1323 |
def RestartTimer(self): |
|
1324 |
if self.RefreshTimer is not None: |
|
1325 |
self.RefreshTimer.cancel() |
|
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1326 |
self.RefreshTimer = Timer(0.1, wx.CallAfter, args = [self.Refresh]) |
442 | 1327 |
self.RefreshTimer.start() |
1328 |
||
1329 |
def Exit(self): |
|
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1330 |
global frame, app |
442 | 1331 |
self.Close() |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1332 |
app.ExitMainLoop() |
442 | 1333 |
return True |
1334 |
||
1335 |
def do_EOF(self, line): |
|
1336 |
return self.Exit() |
|
1337 |
||
1338 |
def Show(self): |
|
445 | 1339 |
global frame |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1340 |
if frame is not None: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1341 |
self.PluginRoot.SetAppFrame(frame, frame.Log) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1342 |
frame.Show() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1343 |
frame.Raise() |
442 | 1344 |
|
1345 |
def Refresh(self): |
|
1346 |
global frame |
|
1347 |
if frame is not None: |
|
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1348 |
frame._Refresh(TITLE, INSTANCESTREE, FILEMENU, EDITMENU) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1349 |
frame.RefreshEditor() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1350 |
frame.RefreshAll() |
442 | 1351 |
|
1352 |
def Close(self): |
|
1353 |
global frame |
|
1354 |
||
1355 |
self.PluginRoot.ResetAppFrame(self.Log) |
|
1356 |
if frame is not None: |
|
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1357 |
frame.Hide() |
442 | 1358 |
|
1359 |
def Compile(self): |
|
625
08d4cc1ceb9b
Fixed LPCBeremiz to refect recent root plugin build method name to change
Edouard Tisserant
parents:
599
diff
changeset
|
1360 |
self.PluginRoot._Build() |
442 | 1361 |
|
500
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1362 |
def SetProjectProperties(self, projectname, productname, productversion, companyname): |
af7c28de4cc7
Adding support for defining mandatory parameters and creating blank xml file when there is nothing in the folder in LPCBeremiz
laurent
parents:
494
diff
changeset
|
1363 |
properties = self.PluginRoot.GetProjectProperties() |
597
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1364 |
new_properties = properties.copy() |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1365 |
new_properties["projectName"] = projectname |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1366 |
new_properties["productName"] = productname |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1367 |
new_properties["productVersion"] = productversion |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1368 |
new_properties["companyName"] = companyname |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1369 |
if new_properties != properties: |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1370 |
self.PluginRoot.SetProjectProperties(properties=new_properties) |
6fbfd3bf2927
Fix bug in LPCBeremiz marking any newly opened project as modified
laurent
parents:
596
diff
changeset
|
1371 |
self.RestartTimer() |
442 | 1372 |
|
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
1373 |
def SetOnlineMode(self, mode, path=None): |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1374 |
self.PluginRoot.SetOnlineMode(mode, path) |
487
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
1375 |
self.RestartTimer() |
1df4a28d3586
Adding support for receiving PLC state from LPCComposer
laurent
parents:
478
diff
changeset
|
1376 |
|
442 | 1377 |
def AddBus(self, iec_channel, name, icon=None): |
1378 |
for child in self.PluginRoot.IterChilds(): |
|
1379 |
if child.BaseParams.getName() == name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1380 |
return "Error: A bus named %s already exists\n" % name |
442 | 1381 |
elif child.BaseParams.getIEC_Channel() == iec_channel: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1382 |
return "Error: A bus with IEC_channel %d already exists\n" % iec_channel |
442 | 1383 |
bus = self.PluginRoot.PlugAddChild(name, "LPCBus", iec_channel) |
1384 |
if bus is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1385 |
return "Error: Unable to create bus\n" |
442 | 1386 |
bus.SetIcon(icon) |
1387 |
self.RestartTimer() |
|
1388 |
||
1389 |
def RenameBus(self, iec_channel, name): |
|
1390 |
bus = self.PluginRoot.GetChildByIECLocation((iec_channel,)) |
|
1391 |
if bus is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1392 |
return "Error: No bus found\n" |
442 | 1393 |
for child in self.PluginRoot.IterChilds(): |
1394 |
if child != bus and child.BaseParams.getName() == name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1395 |
return "Error: A bus named %s already exists\n" % name |
442 | 1396 |
bus.BaseParams.setName(name) |
1397 |
self.RestartTimer() |
|
1398 |
||
1399 |
def ChangeBusIECChannel(self, old_iec_channel, new_iec_channel): |
|
1400 |
bus = self.PluginRoot.GetChildByIECLocation((old_iec_channel,)) |
|
1401 |
if bus is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1402 |
return "Error: No bus found\n" |
442 | 1403 |
for child in self.PluginRoot.IterChilds(): |
1404 |
if child != bus and child.BaseParams.getIEC_Channel() == new_iec_channel: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1405 |
return "Error: A bus with IEC_channel %d already exists\n" % new_iec_channel |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1406 |
if wx.GetApp() is None: |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1407 |
self.PluginRoot.UpdateProjectVariableLocation(str(old_iec_channel), |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1408 |
str(new_iec_channel)) |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1409 |
else: |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1410 |
self.PluginRoot.UpdateProjectVariableLocation( |
539
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1411 |
str(old_iec_channel), |
6ff2c1d34640
Modifying LPCBeremiz to launch silently a frame and show or hide it on demand.
laurent
parents:
530
diff
changeset
|
1412 |
str(new_iec_channel)) |
442 | 1413 |
bus.BaseParams.setIEC_Channel(new_iec_channel) |
1414 |
self.RestartTimer() |
|
1415 |
||
1416 |
def RemoveBus(self, iec_channel): |
|
1417 |
bus = self.PluginRoot.GetChildByIECLocation((iec_channel,)) |
|
1418 |
if bus is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1419 |
return "Error: No bus found\n" |
444
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1420 |
self.PluginRoot.RemoveProjectVariableByFilter(str(iec_channel)) |
442 | 1421 |
self.PluginRoot.PluggedChilds["LPCBus"].remove(bus) |
1422 |
self.RestartTimer() |
|
1423 |
||
553 | 1424 |
def AddModule(self, parent, iec_channel, name, icode, icon=None): |
442 | 1425 |
module = self.PluginRoot.GetChildByIECLocation(parent) |
1426 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1427 |
return "Error: No parent found\n" |
442 | 1428 |
for child in _GetModuleChildren(module): |
1429 |
if child["name"] == name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1430 |
return "Error: A module named %s already exists\n" % name |
442 | 1431 |
elif child["IEC_Channel"] == iec_channel: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1432 |
return "Error: A module with IEC_channel %d already exists\n" % iec_channel |
442 | 1433 |
_GetLastModuleGroup(module).append({"name": name, |
1434 |
"type": LOCATION_MODULE, |
|
1435 |
"IEC_Channel": iec_channel, |
|
1436 |
"icon": icon, |
|
553 | 1437 |
"init": icode, |
442 | 1438 |
"children": []}) |
1439 |
self.RestartTimer() |
|
1440 |
||
1441 |
def RenameModule(self, iec_location, name): |
|
1442 |
module = self.PluginRoot.GetChildByIECLocation(iec_location) |
|
1443 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1444 |
return "Error: No module found\n" |
442 | 1445 |
parent = self.PluginRoot.GetChildByIECLocation(iec_location[:-1]) |
1446 |
if parent is self.PluginRoot: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1447 |
return "Error: No module found\n" |
442 | 1448 |
if module["name"] != name: |
1449 |
for child in _GetModuleChildren(parent): |
|
1450 |
if child["name"] == name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1451 |
return "Error: A module named %s already exists\n" % name |
442 | 1452 |
module["name"] = name |
1453 |
self.RestartTimer() |
|
1454 |
||
1455 |
def ChangeModuleIECChannel(self, old_iec_location, new_iec_channel): |
|
1456 |
module = self.PluginRoot.GetChildByIECLocation(old_iec_location) |
|
1457 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1458 |
return "Error: No module found\n" |
442 | 1459 |
parent = self.PluginRoot.GetChildByIECLocation(old_iec_location[:-1]) |
1460 |
if parent is self.PluginRoot: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1461 |
return "Error: No module found\n" |
442 | 1462 |
if module["IEC_Channel"] != new_iec_channel: |
1463 |
for child in _GetModuleChildren(parent): |
|
1464 |
if child["IEC_Channel"] == new_iec_channel: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1465 |
return "Error: A module with IEC_channel %d already exists\n" % new_iec_channel |
444
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1466 |
self.PluginRoot.UpdateProjectVariableLocation(".".join(map(str, old_iec_location)), ".".join(map(str, old_iec_location[:1] + (new_iec_channel,)))) |
442 | 1467 |
module["IEC_Channel"] = new_iec_channel |
1468 |
self.RestartTimer() |
|
553 | 1469 |
|
1470 |
def ChangeModuleInitCode(self, iec_location, icode): |
|
1471 |
module = self.PluginRoot.GetChildByIECLocation(iec_location) |
|
1472 |
if module is None: |
|
1473 |
return "Error: No module found\n" |
|
1474 |
module["init"] = icode |
|
1475 |
||
442 | 1476 |
def RemoveModule(self, parent, iec_channel): |
1477 |
module = self.PluginRoot.GetChildByIECLocation(parent) |
|
1478 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1479 |
return "Error: No parent found\n" |
442 | 1480 |
child = _GetModuleBySomething(module, "IEC_Channel", (iec_channel,)) |
1481 |
if child is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1482 |
return "Error: No module found\n" |
444
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1483 |
self.PluginRoot.RemoveProjectVariableByFilter(".".join(map(str, parent + (iec_channel,)))) |
442 | 1484 |
_RemoveModuleChild(module, child) |
1485 |
self.RestartTimer() |
|
1486 |
||
1487 |
def StartGroup(self, parent, name, icon=None): |
|
1488 |
module = self.PluginRoot.GetChildByIECLocation(parent) |
|
1489 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1490 |
return "Error: No parent found\n" |
442 | 1491 |
for child in module["children"]: |
1492 |
if child["type"] == LOCATION_GROUP and child["name"] == name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1493 |
return "Error: A group named %s already exists\n" % name |
442 | 1494 |
module["children"].append({"name": name, |
1495 |
"type": LOCATION_GROUP, |
|
1496 |
"icon": icon, |
|
1497 |
"children": []}) |
|
1498 |
self.RestartTimer() |
|
1499 |
||
553 | 1500 |
def AddVariable(self, parent, location, name, direction, type, rcode, pcode, description=""): |
442 | 1501 |
module = self.PluginRoot.GetChildByIECLocation(parent) |
1502 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1503 |
return "Error: No parent found\n" |
442 | 1504 |
for child in _GetModuleChildren(module): |
1505 |
if child["name"] == name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1506 |
return "Error: A variable named %s already exists\n" % name |
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
1507 |
if child["location"] == location and child["type"] == LOCATION_TYPES[direction]: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1508 |
return "Error: A variable with location %s already exists\n" % ".".join(map(str, location)) |
442 | 1509 |
_GetLastModuleGroup(module).append({"name": name, |
1510 |
"location": location, |
|
1511 |
"type": LOCATION_TYPES[direction], |
|
1512 |
"IEC_type": type, |
|
1513 |
"description": description, |
|
1514 |
"retrieve": rcode, |
|
1515 |
"publish": pcode}) |
|
1516 |
self.RestartTimer() |
|
1517 |
||
553 | 1518 |
def ChangeVariableParams(self, parent, location, new_name, new_direction, new_type, new_rcode, new_pcode, new_description=None): |
442 | 1519 |
module = self.PluginRoot.GetChildByIECLocation(parent) |
1520 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1521 |
return "Error: No parent found\n" |
442 | 1522 |
variable = None |
1523 |
for child in _GetModuleChildren(module): |
|
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
1524 |
if child["location"] == location and child["type"] == LOCATION_TYPES[new_direction]: |
442 | 1525 |
variable = child |
1526 |
elif child["name"] == new_name: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1527 |
return "Error: A variable named %s already exists\n" % new_name |
442 | 1528 |
if variable is None: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1529 |
return "Error: No variable found\n" |
444
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1530 |
if variable["name"] != new_name: |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1531 |
self.PluginRoot.UpdateProjectVariableName(variable["name"], new_name) |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1532 |
variable["name"] = new_name |
442 | 1533 |
variable["type"] = LOCATION_TYPES[new_direction] |
1534 |
variable["IEC_type"] = new_type |
|
1535 |
variable["retrieve"] = new_rcode |
|
1536 |
variable["publish"] = new_pcode |
|
1537 |
if new_description is not None: |
|
1538 |
variable["description"] = new_description |
|
1539 |
self.RestartTimer() |
|
1540 |
||
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
1541 |
def RemoveVariable(self, parent, location, direction): |
442 | 1542 |
module = self.PluginRoot.GetChildByIECLocation(parent) |
1543 |
if module is None: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1544 |
return "Error: No parent found\n" |
472
80eb3bde98e3
Adding support for defining input and output with the same location in LPCBeremiz
laurent
parents:
445
diff
changeset
|
1545 |
child = _GetModuleVariable(module, location, direction) |
442 | 1546 |
if child is None: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1547 |
return "Error: No variable found\n" |
444
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1548 |
size = LOCATION_SIZES[self.PluginRoot.GetBaseType(child["IEC_type"])] |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1549 |
address = "%" + LOCATION_DIRS[child["type"]] + size + ".".join(map(str, parent + location)) |
8eb1186fc9cf
Adding support for updating or removing located variables by their address or leading address numbers when changing or removing VariableTree element
laurent
parents:
442
diff
changeset
|
1550 |
self.PluginRoot.RemoveProjectVariableByAddress(address) |
442 | 1551 |
_RemoveModuleChild(module, child) |
1552 |
self.RestartTimer() |
|
1553 |
||
1554 |
def location(loc): |
|
1555 |
return tuple(map(int, loc.split("."))) |
|
1556 |
||
1557 |
def GetCmdFunction(function, arg_types, opt=0): |
|
1558 |
arg_number = len(arg_types) |
|
1559 |
def CmdFunction(self, line): |
|
1560 |
args_toks = line.split('"') |
|
1561 |
if len(args_toks) % 2 == 0: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1562 |
self.Log.write("Error: Invalid command\n") |
526 | 1563 |
sys.stdout.flush() |
442 | 1564 |
return |
1565 |
args = [] |
|
1566 |
for num, arg in enumerate(args_toks): |
|
1567 |
if num % 2 == 0: |
|
1568 |
stripped = arg.strip() |
|
1569 |
if stripped: |
|
1570 |
args.extend(stripped.split(" ")) |
|
1571 |
else: |
|
1572 |
args.append(arg) |
|
1573 |
number = None |
|
1574 |
extra = "" |
|
1575 |
if opt == 0 and len(args) != arg_number: |
|
1576 |
number = arg_number |
|
1577 |
elif len(args) > arg_number: |
|
1578 |
number = arg_number |
|
1579 |
extra = " at most" |
|
1580 |
elif len(args) < arg_number - opt: |
|
1581 |
number = arg_number - opt |
|
1582 |
extra = " at least" |
|
1583 |
if number is not None: |
|
1584 |
if number == 0: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1585 |
self.Log.write("Error: No argument%s expected\n" % extra) |
442 | 1586 |
elif number == 1: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1587 |
self.Log.write("Error: 1 argument%s expected\n" % extra) |
442 | 1588 |
else: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1589 |
self.Log.write("Error: %d arguments%s expected\n" % (number, extra)) |
526 | 1590 |
sys.stdout.flush() |
442 | 1591 |
return |
1592 |
for num, arg in enumerate(args): |
|
1593 |
try: |
|
1594 |
args[num] = arg_types[num](arg) |
|
1595 |
except: |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1596 |
self.Log.write("Error: Invalid value for argument %d\n" % (num + 1)) |
526 | 1597 |
sys.stdout.flush() |
442 | 1598 |
return |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1599 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1600 |
func = getattr(self, function) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1601 |
res = evaluator(func,*args) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1602 |
|
571
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1603 |
if BMZ_DBG: |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1604 |
cmdlog.append((function,line,res)) |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1605 |
if len(cmdlog) > 100: #prevent debug log to grow too much |
427bf9130d12
Debug switch (file in CWD). LPC : better MD5 handling, Run button in boot mode, handling data feedback in boot protocol
edouard
parents:
566
diff
changeset
|
1606 |
cmdlog.pop(0) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1607 |
|
442 | 1608 |
if isinstance(res, (StringType, UnicodeType)): |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1609 |
self.Log.write(res) |
442 | 1610 |
return False |
1611 |
else: |
|
1612 |
return res |
|
1613 |
return CmdFunction |
|
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1614 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1615 |
def CmdThreadProc(PluginRoot, Log): |
549 | 1616 |
global lpcberemiz_cmd |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1617 |
for function, (arg_types, opt) in {"Exit": ([], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1618 |
"Show": ([], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1619 |
"Refresh": ([], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1620 |
"Close": ([], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1621 |
"Compile": ([], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1622 |
"SetProjectProperties": ([str, str, str, str], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1623 |
"SetOnlineMode": ([str, str], 1), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1624 |
"AddBus": ([int, str, str], 1), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1625 |
"RenameBus": ([int, str], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1626 |
"ChangeBusIECChannel": ([int, int], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1627 |
"RemoveBus": ([int], 0), |
553 | 1628 |
"AddModule": ([location, int, str, str, str], 1), |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1629 |
"RenameModule": ([location, str], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1630 |
"ChangeModuleIECChannel": ([location, int], 0), |
553 | 1631 |
"ChangeModuleInitCode": ([location, str], 0), |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1632 |
"RemoveModule": ([location, int], 0), |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1633 |
"StartGroup": ([location, str, str], 1), |
553 | 1634 |
"AddVariable": ([location, location, str, str, str, str, str, str], 1), |
1635 |
"ChangeVariableParams": ([location, location, str, str, str, str, str, str], 1), |
|
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1636 |
"RemoveVariable": ([location, location], 0)}.iteritems(): |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1637 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1638 |
setattr(LPCBeremiz_Cmd, "do_%s" % function, GetCmdFunction(function, arg_types, opt)) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1639 |
lpcberemiz_cmd = LPCBeremiz_Cmd(PluginRoot, Log) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1640 |
lpcberemiz_cmd.cmdloop() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1641 |
|
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1642 |
Log = StdoutPseudoFile(port) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1643 |
|
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
1644 |
PluginRoot = LPCPluginsRoot(None, Log, buildpath) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1645 |
if projectOpen is not None and os.path.isdir(projectOpen): |
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
650
diff
changeset
|
1646 |
result = PluginRoot.LoadProject(projectOpen) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1647 |
if result: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1648 |
Log.write("Error: Invalid project directory", result) |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1649 |
else: |
551
d18e86b603bc
Adding support for command line communication by socket instead of stdin/stdout
laurent
parents:
550
diff
changeset
|
1650 |
Log.write("Error: No such file or directory") |
547
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1651 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1652 |
cmd_thread=Thread(target=CmdThreadProc, args=[PluginRoot, Log]) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1653 |
cmd_thread.start() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1654 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1655 |
# Install a exception handle for bug reports |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1656 |
AddExceptHook(os.getcwd(),__version__) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1657 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1658 |
frame = LPCBeremiz(None, plugin_root=PluginRoot, debug=True) |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1659 |
|
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1660 |
app.MainLoop() |
5748d695beee
Reorganization of threading for command line and wx main loops. Commands are now cleanly serialized through calls to wx.CallAfter. wx mainloop now runs on main thread.
Lolitech
parents:
543
diff
changeset
|
1661 |