author | Laurent Bessard |
Tue, 16 Oct 2012 11:34:24 +0200 | |
changeset 852 | 1009f956d2ee |
parent 842 | 3c4c1e076a34 |
child 883 | 235a9ec83b95 |
permissions | -rw-r--r-- |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
1 |
""" |
725 | 2 |
Config Tree Node base class. |
3 |
||
4 |
- A Beremiz project is organized in a tree each node derivate from ConfigTreeNode |
|
5 |
- Project tree organization match filesystem organization of project directory. |
|
6 |
- Each node of the tree have its own xml configuration, whose grammar is defined for each node type, as XSD |
|
7 |
- ... TODO : document |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
8 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
9 |
|
725 | 10 |
import os,traceback,types |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
11 |
import shutil |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
12 |
from xml.dom import minidom |
126 | 13 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
14 |
from xmlclass import GenerateClassesFromXSDstring |
742
41a4a560406c
Fixed runtime problems with python 2.6 without wx installed
Edouard Tisserant
parents:
741
diff
changeset
|
15 |
from util.misc import GetClassImporter |
725 | 16 |
|
17 |
from PLCControler import PLCControler, LOCATION_CONFNODE |
|
814 | 18 |
from editors.ConfTreeNodeEditor import ConfTreeNodeEditor |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
19 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
20 |
_BaseParamsClass = GenerateClassesFromXSDstring("""<?xml version="1.0" encoding="ISO-8859-1" ?> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
21 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
22 |
<xsd:element name="BaseParams"> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
23 |
<xsd:complexType> |
86 | 24 |
<xsd:attribute name="Name" type="xsd:string" use="optional" default="__unnamed__"/> |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
25 |
<xsd:attribute name="IEC_Channel" type="xsd:integer" use="required"/> |
86 | 26 |
<xsd:attribute name="Enabled" type="xsd:boolean" use="optional" default="true"/> |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
27 |
</xsd:complexType> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
28 |
</xsd:element> |
86 | 29 |
</xsd:schema>""")["BaseParams"] |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
30 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
31 |
NameTypeSeparator = '@' |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
32 |
|
717 | 33 |
class ConfigTreeNode: |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
34 |
""" |
717 | 35 |
This class is the one that define confnodes. |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
36 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
37 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
38 |
XSD = None |
718 | 39 |
CTNChildrenTypes = [] |
40 |
CTNMaxCount = None |
|
717 | 41 |
ConfNodeMethods = [] |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
42 |
LibraryControler = None |
743 | 43 |
EditorType = ConfTreeNodeEditor |
738 | 44 |
IconPath = None |
45 |
||
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
46 |
def _AddParamsMembers(self): |
718 | 47 |
self.CTNParams = None |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
48 |
if self.XSD: |
411
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
49 |
self.Classes = GenerateClassesFromXSDstring(self.XSD) |
8261c8f1e365
Bug on Debug trying to start (and stop) before PLC started fixed.
laurent
parents:
403
diff
changeset
|
50 |
Classes = [(name, XSDclass) for name, XSDclass in self.Classes.items() if XSDclass.IsBaseClass] |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
51 |
if len(Classes) == 1: |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
52 |
name, XSDclass = Classes[0] |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
53 |
obj = XSDclass() |
718 | 54 |
self.CTNParams = (name, obj) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
55 |
setattr(self, name, obj) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
56 |
|
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
57 |
def __init__(self): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
58 |
# Create BaseParam |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
59 |
self.BaseParams = _BaseParamsClass() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
60 |
self.MandatoryParams = ("BaseParams", self.BaseParams) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
61 |
self._AddParamsMembers() |
718 | 62 |
self.Children = {} |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
63 |
self._View = None |
717 | 64 |
# copy ConfNodeMethods so that it can be later customized |
65 |
self.ConfNodeMethods = [dic.copy() for dic in self.ConfNodeMethods] |
|
325
f2604900bf25
Bug preventing loading STLibrary when adding a plugin fixed
lbessard
parents:
321
diff
changeset
|
66 |
|
718 | 67 |
def ConfNodeBaseXmlFilePath(self, CTNName=None): |
68 |
return os.path.join(self.CTNPath(CTNName), "baseconfnode.xml") |
|
69 |
||
70 |
def ConfNodeXmlFilePath(self, CTNName=None): |
|
71 |
return os.path.join(self.CTNPath(CTNName), "confnode.xml") |
|
717 | 72 |
|
73 |
def ConfNodePath(self): |
|
718 | 74 |
return os.path.join(self.CTNParent.ConfNodePath(), self.CTNType) |
75 |
||
76 |
def CTNPath(self,CTNName=None): |
|
77 |
if not CTNName: |
|
78 |
CTNName = self.CTNName() |
|
79 |
return os.path.join(self.CTNParent.CTNPath(), |
|
80 |
CTNName + NameTypeSeparator + self.CTNType) |
|
81 |
||
82 |
def CTNName(self): |
|
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
83 |
return self.BaseParams.getName() |
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
84 |
|
718 | 85 |
def CTNEnabled(self): |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
86 |
return self.BaseParams.getEnabled() |
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
87 |
|
718 | 88 |
def CTNFullName(self): |
89 |
parent = self.CTNParent.CTNFullName() |
|
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
90 |
if parent != "": |
718 | 91 |
return parent + "." + self.CTNName() |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
92 |
return self.BaseParams.getName() |
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
93 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
780
diff
changeset
|
94 |
def GetIconName(self): |
734 | 95 |
return None |
652
eb2d9f2b3567
Adding support for loading specific POUs library in LPCBeremiz
laurent
parents:
639
diff
changeset
|
96 |
|
718 | 97 |
def CTNTestModified(self): |
118 | 98 |
return self.ChangesToSave |
99 |
||
100 |
def ProjectTestModified(self): |
|
101 |
""" |
|
102 |
recursively check modified status |
|
103 |
""" |
|
718 | 104 |
if self.CTNTestModified(): |
118 | 105 |
return True |
106 |
||
718 | 107 |
for CTNChild in self.IterChildren(): |
108 |
if CTNChild.ProjectTestModified(): |
|
118 | 109 |
return True |
110 |
||
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
111 |
return False |
699
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
112 |
|
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
113 |
def RemoteExec(self, script, **kwargs): |
718 | 114 |
return self.CTNParent.RemoteExec(script, **kwargs) |
115 |
||
116 |
def OnCTNSave(self): |
|
20 | 117 |
#Default, do nothing and return success |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
118 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
119 |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
120 |
def GetParamsAttributes(self, path = None): |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
121 |
if path: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
122 |
parts = path.split(".", 1) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
123 |
if self.MandatoryParams and parts[0] == self.MandatoryParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
124 |
return self.MandatoryParams[1].getElementInfos(parts[0], parts[1]) |
718 | 125 |
elif self.CTNParams and parts[0] == self.CTNParams[0]: |
126 |
return self.CTNParams[1].getElementInfos(parts[0], parts[1]) |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
127 |
else: |
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
128 |
params = [] |
718 | 129 |
if self.CTNParams: |
130 |
params.append(self.CTNParams[1].getElementInfos(self.CTNParams[0])) |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
131 |
return params |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
132 |
|
203 | 133 |
def SetParamsAttribute(self, path, value): |
118 | 134 |
self.ChangesToSave = True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
135 |
# Filter IEC_Channel and Name, that have specific behavior |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
136 |
if path == "BaseParams.IEC_Channel": |
443
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
137 |
old_leading = ".".join(map(str, self.GetCurrentLocation())) |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
138 |
new_value = self.FindNewIEC_Channel(value) |
842 | 139 |
if new_value != value: |
140 |
new_leading = ".".join(map(str, self.CTNParent.GetCurrentLocation() + (new_value,))) |
|
141 |
self.GetCTRoot().UpdateProjectVariableLocation(old_leading, new_leading) |
|
443
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
142 |
return new_value, True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
143 |
elif path == "BaseParams.Name": |
203 | 144 |
res = self.FindNewName(value) |
718 | 145 |
self.CTNRequestSave() |
118 | 146 |
return res, True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
147 |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
148 |
parts = path.split(".", 1) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
149 |
if self.MandatoryParams and parts[0] == self.MandatoryParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
150 |
self.MandatoryParams[1].setElementValue(parts[1], value) |
718 | 151 |
elif self.CTNParams and parts[0] == self.CTNParams[0]: |
152 |
self.CTNParams[1].setElementValue(parts[1], value) |
|
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
153 |
return value, False |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
154 |
|
718 | 155 |
def CTNMakeDir(self): |
156 |
os.mkdir(self.CTNPath()) |
|
157 |
||
158 |
def CTNRequestSave(self): |
|
159 |
if self.GetCTRoot().CheckProjectPathPerm(False): |
|
717 | 160 |
# If confnode do not have corresponding directory |
718 | 161 |
ctnpath = self.CTNPath() |
162 |
if not os.path.isdir(ctnpath): |
|
427 | 163 |
# Create it |
718 | 164 |
os.mkdir(ctnpath) |
427 | 165 |
|
717 | 166 |
# generate XML for base XML parameters controller of the confnode |
427 | 167 |
if self.MandatoryParams: |
717 | 168 |
BaseXMLFile = open(self.ConfNodeBaseXmlFilePath(),'w') |
427 | 169 |
BaseXMLFile.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n") |
430 | 170 |
BaseXMLFile.write(self.MandatoryParams[1].generateXMLText(self.MandatoryParams[0], 0).encode("utf-8")) |
427 | 171 |
BaseXMLFile.close() |
172 |
||
717 | 173 |
# generate XML for XML parameters controller of the confnode |
718 | 174 |
if self.CTNParams: |
717 | 175 |
XMLFile = open(self.ConfNodeXmlFilePath(),'w') |
427 | 176 |
XMLFile.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n") |
718 | 177 |
XMLFile.write(self.CTNParams[1].generateXMLText(self.CTNParams[0], 0).encode("utf-8")) |
427 | 178 |
XMLFile.close() |
179 |
||
718 | 180 |
# Call the confnode specific OnCTNSave method |
181 |
result = self.OnCTNSave() |
|
427 | 182 |
if not result: |
718 | 183 |
return _("Error while saving \"%s\"\n")%self.CTNPath() |
427 | 184 |
|
717 | 185 |
# mark confnode as saved |
427 | 186 |
self.ChangesToSave = False |
718 | 187 |
# go through all children and do the same |
188 |
for CTNChild in self.IterChildren(): |
|
189 |
result = CTNChild.CTNRequestSave() |
|
427 | 190 |
if result: |
191 |
return result |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
192 |
return None |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
193 |
|
718 | 194 |
def CTNImport(self, src_CTNPath): |
195 |
shutil.copytree(src_CTNPath, self.CTNPath) |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
196 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
197 |
|
718 | 198 |
def CTNGenerate_C(self, buildpath, locations): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
199 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
200 |
Generate C code |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
201 |
@param locations: List of complete variables locations \ |
22 | 202 |
[{"IEC_TYPE" : the IEC type (i.e. "INT", "STRING", ...) |
203 |
"NAME" : name of the variable (generally "__IW0_1_2" style) |
|
204 |
"DIR" : direction "Q","I" or "M" |
|
205 |
"SIZE" : size "X", "B", "W", "D", "L" |
|
206 |
"LOC" : tuple of interger for IEC location (0,1,2,...) |
|
207 |
}, ...] |
|
18 | 208 |
@return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND |
209 |
""" |
|
718 | 210 |
self.GetCTRoot().logger.write_warning(".".join(map(lambda x:str(x), self.GetCurrentLocation())) + " -> Nothing to do\n") |
51
c31c55601556
Added project linking, and plugin init,cleanup,retrive and publish method calls in main
etisserant
parents:
49
diff
changeset
|
211 |
return [],"",False |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
212 |
|
203 | 213 |
def _Generate_C(self, buildpath, locations): |
717 | 214 |
# Generate confnodes [(Cfiles, CFLAGS)], LDFLAGS, DoCalls, extra_files |
203 | 215 |
# extra_files = [(fname,fobject), ...] |
718 | 216 |
gen_result = self.CTNGenerate_C(buildpath, locations) |
217 |
CTNCFilesAndCFLAGS, CTNLDFLAGS, DoCalls = gen_result[:3] |
|
203 | 218 |
extra_files = gen_result[3:] |
361 | 219 |
# if some files have been generated put them in the list with their location |
718 | 220 |
if CTNCFilesAndCFLAGS: |
221 |
LocationCFilesAndCFLAGS = [(self.GetCurrentLocation(), CTNCFilesAndCFLAGS, DoCalls)] |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
222 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
223 |
LocationCFilesAndCFLAGS = [] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
224 |
|
717 | 225 |
# confnode asks for some LDFLAGS |
718 | 226 |
if CTNLDFLAGS: |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
227 |
# LDFLAGS can be either string |
718 | 228 |
if type(CTNLDFLAGS)==type(str()): |
229 |
LDFLAGS=[CTNLDFLAGS] |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
230 |
#or list of strings |
718 | 231 |
elif type(CTNLDFLAGS)==type(list()): |
232 |
LDFLAGS=CTNLDFLAGS[:] |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
233 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
234 |
LDFLAGS=[] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
235 |
|
718 | 236 |
# recurse through all children, and stack their results |
237 |
for CTNChild in self.IECSortedChildren(): |
|
238 |
new_location = CTNChild.GetCurrentLocation() |
|
24 | 239 |
# How deep are we in the tree ? |
240 |
depth=len(new_location) |
|
203 | 241 |
_LocationCFilesAndCFLAGS, _LDFLAGS, _extra_files = \ |
718 | 242 |
CTNChild._Generate_C( |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
243 |
#keep the same path |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
244 |
buildpath, |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
245 |
# filter locations that start with current IEC location |
203 | 246 |
[loc for loc in locations if loc["LOC"][0:depth] == new_location ]) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
247 |
# stack the result |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
248 |
LocationCFilesAndCFLAGS += _LocationCFilesAndCFLAGS |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
249 |
LDFLAGS += _LDFLAGS |
203 | 250 |
extra_files += _extra_files |
251 |
||
252 |
return LocationCFilesAndCFLAGS, LDFLAGS, extra_files |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
253 |
|
718 | 254 |
def IterChildren(self): |
255 |
for CTNType, Children in self.Children.items(): |
|
256 |
for CTNInstance in Children: |
|
257 |
yield CTNInstance |
|
258 |
||
259 |
def IECSortedChildren(self): |
|
260 |
# reorder children by IEC_channels |
|
261 |
ordered = [(chld.BaseParams.getIEC_Channel(),chld) for chld in self.IterChildren()] |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
262 |
if ordered: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
263 |
ordered.sort() |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
264 |
return zip(*ordered)[1] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
265 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
266 |
return [] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
267 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
268 |
def _GetChildBySomething(self, something, toks): |
718 | 269 |
for CTNInstance in self.IterChildren(): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
270 |
# if match component of the name |
718 | 271 |
if getattr(CTNInstance.BaseParams, something) == toks[0]: |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
272 |
# if Name have other components |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
273 |
if len(toks) >= 2: |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
274 |
# Recurse in order to find the latest object |
718 | 275 |
return CTNInstance._GetChildBySomething( something, toks[1:]) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
276 |
# No sub name -> found |
718 | 277 |
return CTNInstance |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
278 |
# Not found |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
279 |
return None |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
280 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
281 |
def GetChildByName(self, Name): |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
282 |
if Name: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
283 |
toks = Name.split('.') |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
284 |
return self._GetChildBySomething("Name", toks) |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
285 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
286 |
return self |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
287 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
288 |
def GetChildByIECLocation(self, Location): |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
289 |
if Location: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
290 |
return self._GetChildBySomething("IEC_Channel", Location) |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
291 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
292 |
return self |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
293 |
|
23 | 294 |
def GetCurrentLocation(self): |
24 | 295 |
""" |
717 | 296 |
@return: Tupple containing confnode IEC location of current confnode : %I0.0.4.5 => (0,0,4,5) |
24 | 297 |
""" |
718 | 298 |
return self.CTNParent.GetCurrentLocation() + (self.BaseParams.getIEC_Channel(),) |
23 | 299 |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
300 |
def GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
301 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
302 |
@return: String "ParentParentName.ParentName.Name" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
303 |
""" |
718 | 304 |
return self.CTNParent._GetCurrentName() + self.BaseParams.getName() |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
305 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
306 |
def _GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
307 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
308 |
@return: String "ParentParentName.ParentName.Name." |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
309 |
""" |
718 | 310 |
return self.CTNParent._GetCurrentName() + self.BaseParams.getName() + "." |
311 |
||
312 |
def GetCTRoot(self): |
|
313 |
return self.CTNParent.GetCTRoot() |
|
23 | 314 |
|
97 | 315 |
def GetFullIEC_Channel(self): |
316 |
return ".".join([str(i) for i in self.GetCurrentLocation()]) + ".x" |
|
317 |
||
318 |
def GetLocations(self): |
|
319 |
location = self.GetCurrentLocation() |
|
718 | 320 |
return [loc for loc in self.CTNParent.GetLocations() if loc["LOC"][0:len(location)] == location] |
97 | 321 |
|
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
322 |
def GetVariableLocationTree(self): |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
323 |
''' |
717 | 324 |
This function is meant to be overridden by confnodes. |
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
325 |
|
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
326 |
It should returns an list of dictionaries |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
327 |
|
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
328 |
- IEC_type is an IEC type like BOOL/BYTE/SINT/... |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
329 |
- location is a string of this variable's location, like "%IX0.0.0" |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
330 |
''' |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
331 |
children = [] |
718 | 332 |
for child in self.IECSortedChildren(): |
402
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
333 |
children.append(child.GetVariableLocationTree()) |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
334 |
return {"name": self.BaseParams.getName(), |
717 | 335 |
"type": LOCATION_CONFNODE, |
402
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
336 |
"location": self.GetFullIEC_Channel(), |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
337 |
"children": children} |
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
338 |
|
203 | 339 |
def FindNewName(self, DesiredName): |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
340 |
""" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
341 |
Changes Name to DesiredName if available, Name-N if not. |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
342 |
@param DesiredName: The desired Name (string) |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
343 |
""" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
344 |
# Get Current Name |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
345 |
CurrentName = self.BaseParams.getName() |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
346 |
# Do nothing if no change |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
347 |
#if CurrentName == DesiredName: return CurrentName |
718 | 348 |
# Build a list of used Name out of parent's Children |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
349 |
AllNames=[] |
718 | 350 |
for CTNInstance in self.CTNParent.IterChildren(): |
351 |
if CTNInstance != self: |
|
352 |
AllNames.append(CTNInstance.BaseParams.getName()) |
|
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
353 |
|
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
354 |
# Find a free name, eventually appending digit |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
355 |
res = DesiredName |
833
3f997fb22928
Fix confnode new name format that generates an error with frame class name in wxGlade extension
laurent
parents:
814
diff
changeset
|
356 |
if DesiredName.endswith("_0"): |
841
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
357 |
BaseDesiredName = DesiredName[:-2] |
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
358 |
else: |
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
359 |
BaseDesiredName = DesiredName |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
360 |
suffix = 1 |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
361 |
while res in AllNames: |
841
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
362 |
res = "%s_%d"%(BaseDesiredName, suffix) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
363 |
suffix += 1 |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
364 |
|
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
365 |
# Get old path |
718 | 366 |
oldname = self.CTNPath() |
717 | 367 |
# Check previous confnode existance |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
368 |
dontexist = self.BaseParams.getName() == "__unnamed__" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
369 |
# Set the new name |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
370 |
self.BaseParams.setName(res) |
717 | 371 |
# Rename confnode dir if exist |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
372 |
if not dontexist: |
718 | 373 |
shutil.move(oldname, self.CTNPath()) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
374 |
# warn user he has two left hands |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
375 |
if DesiredName != res: |
801
435e49e80832
Update list of messages to be translated for internationalization and french translations
laurent
parents:
786
diff
changeset
|
376 |
self.GetCTRoot().logger.write_warning(_("A child named \"%s\" already exist -> \"%s\"\n")%(DesiredName,res)) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
377 |
return res |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
378 |
|
683
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
379 |
def GetAllChannels(self): |
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
380 |
AllChannels=[] |
718 | 381 |
for CTNInstance in self.CTNParent.IterChildren(): |
382 |
if CTNInstance != self: |
|
383 |
AllChannels.append(CTNInstance.BaseParams.getIEC_Channel()) |
|
683
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
384 |
AllChannels.sort() |
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
385 |
return AllChannels |
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
386 |
|
203 | 387 |
def FindNewIEC_Channel(self, DesiredChannel): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
388 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
389 |
Changes IEC Channel number to DesiredChannel if available, nearest available if not. |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
390 |
@param DesiredChannel: The desired IEC channel (int) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
391 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
392 |
# Get Current IEC channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
393 |
CurrentChannel = self.BaseParams.getIEC_Channel() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
394 |
# Do nothing if no change |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
395 |
#if CurrentChannel == DesiredChannel: return CurrentChannel |
718 | 396 |
# Build a list of used Channels out of parent's Children |
683
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
397 |
AllChannels = self.GetAllChannels() |
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
398 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
399 |
# Now, try to guess the nearest available channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
400 |
res = DesiredChannel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
401 |
while res in AllChannels: # While channel not free |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
402 |
if res < CurrentChannel: # Want to go down ? |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
403 |
res -= 1 # Test for n-1 |
33
59b84ab7bf8b
Enhanced bahavior of plugin tree representation when changing IEC channel
etisserant
parents:
29
diff
changeset
|
404 |
if res < 0 : |
718 | 405 |
self.GetCTRoot().logger.write_warning(_("Cannot find lower free IEC channel than %d\n")%CurrentChannel) |
33
59b84ab7bf8b
Enhanced bahavior of plugin tree representation when changing IEC channel
etisserant
parents:
29
diff
changeset
|
406 |
return CurrentChannel # Can't go bellow 0, do nothing |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
407 |
else : # Want to go up ? |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
408 |
res += 1 # Test for n-1 |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
409 |
# Finally set IEC Channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
410 |
self.BaseParams.setIEC_Channel(res) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
411 |
return res |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
412 |
|
782 | 413 |
def _OpenView(self, name=None, onlyopened=False): |
774
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
414 |
if self.EditorType is not None: |
782 | 415 |
app_frame = self.GetCTRoot().AppFrame |
784
a1d970365e41
Adding support for beremiz extensions to define custom file editors for project files
laurent
parents:
782
diff
changeset
|
416 |
if self._View is None and not onlyopened: |
774
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
417 |
|
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
418 |
self._View = self.EditorType(app_frame.TabsOpened, self, app_frame) |
784
a1d970365e41
Adding support for beremiz extensions to define custom file editors for project files
laurent
parents:
782
diff
changeset
|
419 |
|
a1d970365e41
Adding support for beremiz extensions to define custom file editors for project files
laurent
parents:
782
diff
changeset
|
420 |
if self._View is not None: |
786 | 421 |
if name is None: |
422 |
name = self.CTNFullName() |
|
423 |
app_frame.EditProjectElement(self._View, name) |
|
782 | 424 |
|
715
135566ab0807
Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents:
707
diff
changeset
|
425 |
return self._View |
135566ab0807
Adding support for automatically saving and restoring state of frame or project perspective
laurent
parents:
707
diff
changeset
|
426 |
return None |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
427 |
|
774
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
428 |
def _CloseView(self, view): |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
429 |
app_frame = self.GetCTRoot().AppFrame |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
430 |
if app_frame is not None: |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
431 |
app_frame.DeletePage(view) |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
432 |
|
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
433 |
def OnCloseEditor(self, view): |
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
434 |
if self._View == view: |
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
435 |
self._View = None |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
436 |
|
718 | 437 |
def OnCTNClose(self): |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
438 |
if self._View is not None: |
780
70632f4612a1
Fix bug when deleting conf tree node and conf tree node editor opened for this same node
laurent
parents:
774
diff
changeset
|
439 |
self._CloseView(self._View) |
774
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
440 |
self._View = None |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
441 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
442 |
|
718 | 443 |
def _doRemoveChild(self, CTNInstance): |
444 |
# Remove all children of child |
|
445 |
for SubCTNInstance in CTNInstance.IterChildren(): |
|
446 |
CTNInstance._doRemoveChild(SubCTNInstance) |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
447 |
# Call the OnCloseMethod |
718 | 448 |
CTNInstance.OnCTNClose() |
717 | 449 |
# Delete confnode dir |
718 | 450 |
shutil.rmtree(CTNInstance.CTNPath()) |
451 |
# Remove child of Children |
|
452 |
self.Children[CTNInstance.CTNType].remove(CTNInstance) |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
453 |
# Forget it... (View have to refresh) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
454 |
|
718 | 455 |
def CTNRemove(self): |
717 | 456 |
# Fetch the confnode |
718 | 457 |
#CTNInstance = self.GetChildByName(CTNName) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
458 |
# Ask to his parent to remove it |
718 | 459 |
self.CTNParent._doRemoveChild(self) |
460 |
||
461 |
def CTNAddChild(self, CTNName, CTNType, IEC_Channel=0): |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
462 |
""" |
717 | 463 |
Create the confnodes that may be added as child to this node self |
718 | 464 |
@param CTNType: string desining the confnode class name (get name from CTNChildrenTypes) |
465 |
@param CTNName: string for the name of the confnode instance |
|
466 |
""" |
|
720 | 467 |
# reorganize self.CTNChildrenTypes tuples from (name, CTNClass, Help) |
718 | 468 |
# to ( name, (CTNClass, Help)), an make a dict |
469 |
transpose = zip(*self.CTNChildrenTypes) |
|
470 |
CTNChildrenTypes = dict(zip(transpose[0],zip(transpose[1],transpose[2]))) |
|
717 | 471 |
# Check that adding this confnode is allowed |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
472 |
try: |
718 | 473 |
CTNClass, CTNHelp = CTNChildrenTypes[CTNType] |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
474 |
except KeyError: |
718 | 475 |
raise Exception, _("Cannot create child %s of type %s ")%(CTNName, CTNType) |
476 |
||
477 |
# if CTNClass is a class factory, call it. (prevent unneeded imports) |
|
478 |
if type(CTNClass) == types.FunctionType: |
|
479 |
CTNClass = CTNClass() |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
480 |
|
717 | 481 |
# Eventualy Initialize child instance list for this class of confnode |
718 | 482 |
ChildrenWithSameClass = self.Children.setdefault(CTNType, list()) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
483 |
# Check count |
718 | 484 |
if getattr(CTNClass, "CTNMaxCount", None) and len(ChildrenWithSameClass) >= CTNClass.CTNMaxCount: |
485 |
raise Exception, _("Max count (%d) reached for this confnode of type %s ")%(CTNClass.CTNMaxCount, CTNType) |
|
717 | 486 |
|
487 |
# create the final class, derived of provided confnode and template |
|
718 | 488 |
class FinalCTNClass(CTNClass, ConfigTreeNode): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
489 |
""" |
718 | 490 |
ConfNode class is derivated into FinalCTNClass before being instanciated |
717 | 491 |
This way __init__ is overloaded to ensure ConfigTreeNode.__init__ is called |
718 | 492 |
before CTNClass.__init__, and to do the file related stuff. |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
493 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
494 |
def __init__(_self): |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
495 |
# self is the parent |
718 | 496 |
_self.CTNParent = self |
717 | 497 |
# Keep track of the confnode type name |
718 | 498 |
_self.CTNType = CTNType |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
499 |
# remind the help string, for more fancy display |
718 | 500 |
_self.CTNHelp = CTNHelp |
717 | 501 |
# Call the base confnode template init - change XSD into class members |
502 |
ConfigTreeNode.__init__(_self) |
|
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
503 |
# check name is unique |
718 | 504 |
NewCTNName = _self.FindNewName(CTNName) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
505 |
# If dir have already be made, and file exist |
718 | 506 |
if os.path.isdir(_self.CTNPath(NewCTNName)): #and os.path.isfile(_self.ConfNodeXmlFilePath(CTNName)): |
717 | 507 |
#Load the confnode.xml file into parameters members |
718 | 508 |
_self.LoadXMLParams(NewCTNName) |
20 | 509 |
# Basic check. Better to fail immediately. |
718 | 510 |
if (_self.BaseParams.getName() != NewCTNName): |
511 |
raise Exception, _("Project tree layout do not match confnode.xml %s!=%s ")%(NewCTNName, _self.BaseParams.getName()) |
|
512 |
||
513 |
# Now, self.CTNPath() should be OK |
|
20 | 514 |
|
15
7a473efc4530
More precise design for plugins.... to be continued...
etisserant
parents:
14
diff
changeset
|
515 |
# Check that IEC_Channel is not already in use. |
203 | 516 |
_self.FindNewIEC_Channel(_self.BaseParams.getIEC_Channel()) |
717 | 517 |
# Call the confnode real __init__ |
718 | 518 |
if getattr(CTNClass, "__init__", None): |
519 |
CTNClass.__init__(_self) |
|
520 |
#Load and init all the children |
|
521 |
_self.LoadChildren() |
|
118 | 522 |
#just loaded, nothing to saved |
523 |
_self.ChangesToSave = False |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
524 |
else: |
717 | 525 |
# If confnode do not have corresponding file/dirs - they will be created on Save |
718 | 526 |
_self.CTNMakeDir() |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
527 |
# Find an IEC number |
417
a895ae50b737
Adding support for declaring PluginRoot outside of Beremiz
laurent
parents:
415
diff
changeset
|
528 |
_self.FindNewIEC_Channel(IEC_Channel) |
717 | 529 |
# Call the confnode real __init__ |
718 | 530 |
if getattr(CTNClass, "__init__", None): |
531 |
CTNClass.__init__(_self) |
|
532 |
_self.CTNRequestSave() |
|
118 | 533 |
#just created, must be saved |
534 |
_self.ChangesToSave = True |
|
403 | 535 |
|
77
7de69369373e
Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents:
75
diff
changeset
|
536 |
def _getBuildPath(_self): |
7de69369373e
Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents:
75
diff
changeset
|
537 |
return self._getBuildPath() |
7de69369373e
Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents:
75
diff
changeset
|
538 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
539 |
# Create the object out of the resulting class |
718 | 540 |
newConfNodeOpj = FinalCTNClass() |
541 |
# Store it in CTNgedChils |
|
542 |
ChildrenWithSameClass.append(newConfNodeOpj) |
|
717 | 543 |
|
544 |
return newConfNodeOpj |
|
403 | 545 |
|
718 | 546 |
def ClearChildren(self): |
547 |
for child in self.IterChildren(): |
|
548 |
child.ClearChildren() |
|
549 |
self.Children = {} |
|
403 | 550 |
|
718 | 551 |
def LoadXMLParams(self, CTNName = None): |
552 |
methode_name = os.path.join(self.CTNPath(CTNName), "methods.py") |
|
105
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
553 |
if os.path.isfile(methode_name): |
434aed8dc58d
Added ability to override plugin methods with arbitrary python code (methods.py) when loading plugins
etisserant
parents:
97
diff
changeset
|
554 |
execfile(methode_name) |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
555 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
556 |
# Get the base xml tree |
20 | 557 |
if self.MandatoryParams: |
203 | 558 |
try: |
718 | 559 |
basexmlfile = open(self.ConfNodeBaseXmlFilePath(CTNName), 'r') |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
560 |
basetree = minidom.parse(basexmlfile) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
561 |
self.MandatoryParams[1].loadXMLTree(basetree.childNodes[0]) |
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
562 |
basexmlfile.close() |
203 | 563 |
except Exception, exc: |
741
382b2c848dac
fixed uncaught exception dialog while displaying cought exception in log
Edouard Tisserant
parents:
738
diff
changeset
|
564 |
self.GetCTRoot().logger.write_error(_("Couldn't load confnode base parameters %s :\n %s") % (CTNName, unicode(exc))) |
718 | 565 |
self.GetCTRoot().logger.write_error(traceback.format_exc()) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
566 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
567 |
# Get the xml tree |
718 | 568 |
if self.CTNParams: |
203 | 569 |
try: |
718 | 570 |
xmlfile = open(self.ConfNodeXmlFilePath(CTNName), 'r') |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
571 |
tree = minidom.parse(xmlfile) |
718 | 572 |
self.CTNParams[1].loadXMLTree(tree.childNodes[0]) |
106
9810689febb0
Added plugins creation helpstrings, changed GUI layout (more compact), solved staticbitmap issues on win32, re-designed some icons...
etisserant
parents:
105
diff
changeset
|
573 |
xmlfile.close() |
203 | 574 |
except Exception, exc: |
741
382b2c848dac
fixed uncaught exception dialog while displaying cought exception in log
Edouard Tisserant
parents:
738
diff
changeset
|
575 |
self.GetCTRoot().logger.write_error(_("Couldn't load confnode parameters %s :\n %s") % (CTNName, unicode(exc))) |
718 | 576 |
self.GetCTRoot().logger.write_error(traceback.format_exc()) |
577 |
||
578 |
def LoadChildren(self): |
|
579 |
# Iterate over all CTNName@CTNType in confnode directory, and try to open them |
|
580 |
for CTNDir in os.listdir(self.CTNPath()): |
|
581 |
if os.path.isdir(os.path.join(self.CTNPath(), CTNDir)) and \ |
|
582 |
CTNDir.count(NameTypeSeparator) == 1: |
|
583 |
pname, ptype = CTNDir.split(NameTypeSeparator) |
|
203 | 584 |
try: |
718 | 585 |
self.CTNAddChild(pname, ptype) |
203 | 586 |
except Exception, exc: |
741
382b2c848dac
fixed uncaught exception dialog while displaying cought exception in log
Edouard Tisserant
parents:
738
diff
changeset
|
587 |
self.GetCTRoot().logger.write_error(_("Could not add child \"%s\", type %s :\n%s\n")%(pname, ptype, unicode(exc))) |
718 | 588 |
self.GetCTRoot().logger.write_error(traceback.format_exc()) |
13
f1f0edbeb313
More precise design for plugins.... to be continued...
etisserant
parents:
diff
changeset
|
589 |