author | Edouard Tisserant <edouard.tisserant@gmail.com> |
Sun, 19 Apr 2020 22:44:41 +0200 | |
branch | svghmi |
changeset 2942 | b07ad97e6019 |
parent 2813 | ac736a878188 |
child 2645 | d15a997859b1 |
child 2964 | a7b11c9f468e |
permissions | -rw-r--r-- |
1511
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
1 |
#!/usr/bin/env python |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
2 |
# -*- coding: utf-8 -*- |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
3 |
|
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
6 |
# |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
8 |
# |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
10 |
# |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
15 |
# |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
19 |
# GNU General Public License for more details. |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
20 |
# |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
91538d0c242c
add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1332
diff
changeset
|
24 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
25 |
""" |
725 | 26 |
Config Tree Node base class. |
27 |
||
28 |
- A Beremiz project is organized in a tree each node derivate from ConfigTreeNode |
|
29 |
- Project tree organization match filesystem organization of project directory. |
|
30 |
- Each node of the tree have its own xml configuration, whose grammar is defined for each node type, as XSD |
|
31 |
- ... TODO : document |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
32 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
33 |
|
1881
091005ec69c4
fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1868
diff
changeset
|
34 |
from __future__ import absolute_import |
1732
94ffe74e6895
clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
35 |
import os |
94ffe74e6895
clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
36 |
import traceback |
94ffe74e6895
clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1730
diff
changeset
|
37 |
import types |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
38 |
import shutil |
2523
aa7f138648f3
WIP adding searching capabilities in python files:
Edouard Tisserant
parents:
2443
diff
changeset
|
39 |
from operator import add |
2551
245644bfcd24
Make spaghetti-code-quality great again.
Edouard Tisserant
parents:
2524
diff
changeset
|
40 |
from functools import reduce |
2434
07f48018b6f5
python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2418
diff
changeset
|
41 |
from builtins import str as text |
2443
75a274023970
python3 support: pylint, W1606 # (execfile-builtin) execfile built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2434
diff
changeset
|
42 |
from past.builtins import execfile |
2434
07f48018b6f5
python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2418
diff
changeset
|
43 |
|
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
44 |
from lxml import etree |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
45 |
|
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
46 |
from xmlclass import GenerateParserFromXSDstring |
1850
614396cbffbf
fix pylint warning '(unused-import), Unused import connectors'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
47 |
from PLCControler import LOCATION_CONFNODE |
814 | 48 |
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
|
49 |
|
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
50 |
_BaseParamsParser = GenerateParserFromXSDstring("""<?xml version="1.0" encoding="ISO-8859-1" ?> |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
51 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
52 |
<xsd:element name="BaseParams"> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
53 |
<xsd:complexType> |
86 | 54 |
<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
|
55 |
<xsd:attribute name="IEC_Channel" type="xsd:integer" use="required"/> |
86 | 56 |
<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
|
57 |
</xsd:complexType> |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
58 |
</xsd:element> |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
59 |
</xsd:schema>""") |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
60 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
61 |
NameTypeSeparator = '@' |
1722
89824afffef2
fix some typos
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1581
diff
changeset
|
62 |
XSDSchemaErrorMessage = _("{a1} XML file doesn't follow XSD schema at line {a2}:\n{a3}") |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
63 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
64 |
|
1831
56b48961cc68
fix (old-style-class) Old-style class defined error for most parts of
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1828
diff
changeset
|
65 |
class ConfigTreeNode(object): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
66 |
""" |
717 | 67 |
This class is the one that define confnodes. |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
68 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
69 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
70 |
XSD = None |
718 | 71 |
CTNChildrenTypes = [] |
72 |
CTNMaxCount = None |
|
717 | 73 |
ConfNodeMethods = [] |
274
8628f3dd0979
Adding support for defining plugin library as a plcopen xml file in plugin folder
greg
parents:
273
diff
changeset
|
74 |
LibraryControler = None |
743 | 75 |
EditorType = ConfTreeNodeEditor |
738 | 76 |
IconPath = None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
77 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
78 |
def _AddParamsMembers(self): |
718 | 79 |
self.CTNParams = None |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
80 |
if self.XSD: |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
81 |
self.Parser = GenerateParserFromXSDstring(self.XSD) |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
82 |
obj = self.Parser.CreateRoot() |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
83 |
name = obj.getLocalTag() |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
84 |
self.CTNParams = (name, obj) |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
85 |
setattr(self, name, obj) |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
86 |
|
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
87 |
def __init__(self): |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
88 |
# Create BaseParam |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
89 |
self.BaseParams = _BaseParamsParser.CreateRoot() |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
90 |
self.MandatoryParams = ("BaseParams", self.BaseParams) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
91 |
self._AddParamsMembers() |
718 | 92 |
self.Children = {} |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
93 |
self._View = None |
717 | 94 |
# copy ConfNodeMethods so that it can be later customized |
95 |
self.ConfNodeMethods = [dic.copy() for dic in self.ConfNodeMethods] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
96 |
|
718 | 97 |
def ConfNodeBaseXmlFilePath(self, CTNName=None): |
98 |
return os.path.join(self.CTNPath(CTNName), "baseconfnode.xml") |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
99 |
|
718 | 100 |
def ConfNodeXmlFilePath(self, CTNName=None): |
101 |
return os.path.join(self.CTNPath(CTNName), "confnode.xml") |
|
717 | 102 |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
103 |
def CTNPath(self, CTNName=None, project_path=None): |
718 | 104 |
if not CTNName: |
105 |
CTNName = self.CTNName() |
|
1061 | 106 |
if not project_path: |
107 |
project_path = self.CTNParent.CTNPath() |
|
108 |
return os.path.join(project_path, |
|
718 | 109 |
CTNName + NameTypeSeparator + self.CTNType) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
110 |
|
718 | 111 |
def CTNName(self): |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
112 |
return self.BaseParams.getName() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
113 |
|
718 | 114 |
def CTNEnabled(self): |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
115 |
return self.BaseParams.getEnabled() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
116 |
|
718 | 117 |
def CTNFullName(self): |
118 |
parent = self.CTNParent.CTNFullName() |
|
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
119 |
if parent != "": |
718 | 120 |
return parent + "." + self.CTNName() |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
121 |
return self.BaseParams.getName() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
122 |
|
2523
aa7f138648f3
WIP adding searching capabilities in python files:
Edouard Tisserant
parents:
2443
diff
changeset
|
123 |
def CTNSearch(self, criteria): |
aa7f138648f3
WIP adding searching capabilities in python files:
Edouard Tisserant
parents:
2443
diff
changeset
|
124 |
# TODO match config's fields name and fields contents |
aa7f138648f3
WIP adding searching capabilities in python files:
Edouard Tisserant
parents:
2443
diff
changeset
|
125 |
return reduce(add, [ |
aa7f138648f3
WIP adding searching capabilities in python files:
Edouard Tisserant
parents:
2443
diff
changeset
|
126 |
CTNChild.CTNSearch(criteria) |
2579
8fb5c6eddc72
Conform to pep8 and pylint :
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
2552
diff
changeset
|
127 |
for CTNChild in self.IterChildren()], []) |
2523
aa7f138648f3
WIP adding searching capabilities in python files:
Edouard Tisserant
parents:
2443
diff
changeset
|
128 |
|
781
cdc6393705ce
Adding support using plcopeneditor bitmap library for icon request
laurent
parents:
780
diff
changeset
|
129 |
def GetIconName(self): |
734 | 130 |
return None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
131 |
|
718 | 132 |
def CTNTestModified(self): |
118 | 133 |
return self.ChangesToSave |
134 |
||
135 |
def ProjectTestModified(self): |
|
136 |
""" |
|
137 |
recursively check modified status |
|
138 |
""" |
|
718 | 139 |
if self.CTNTestModified(): |
118 | 140 |
return True |
141 |
||
718 | 142 |
for CTNChild in self.IterChildren(): |
143 |
if CTNChild.ProjectTestModified(): |
|
118 | 144 |
return True |
145 |
||
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
146 |
return False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
147 |
|
699
6ff64cadb1ff
Adding support for executing python scripts on remote runtime
laurent
parents:
696
diff
changeset
|
148 |
def RemoteExec(self, script, **kwargs): |
718 | 149 |
return self.CTNParent.RemoteExec(script, **kwargs) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
150 |
|
1061 | 151 |
def OnCTNSave(self, from_project_path=None): |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1778
diff
changeset
|
152 |
"""Default, do nothing and return success""" |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
153 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
154 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
155 |
def GetParamsAttributes(self, path=None): |
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
156 |
if path: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
157 |
parts = path.split(".", 1) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
158 |
if self.MandatoryParams and parts[0] == self.MandatoryParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
159 |
return self.MandatoryParams[1].getElementInfos(parts[0], parts[1]) |
718 | 160 |
elif self.CTNParams and parts[0] == self.CTNParams[0]: |
161 |
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
|
162 |
else: |
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
163 |
params = [] |
718 | 164 |
if self.CTNParams: |
165 |
params.append(self.CTNParams[1].getElementInfos(self.CTNParams[0])) |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
166 |
return params |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
167 |
|
203 | 168 |
def SetParamsAttribute(self, path, value): |
118 | 169 |
self.ChangesToSave = True |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
170 |
# 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
|
171 |
if path == "BaseParams.IEC_Channel": |
443
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
172 |
old_leading = ".".join(map(str, self.GetCurrentLocation())) |
34c9788bd933
Adding support for updating located variables when changing plugin IEC_Channel
laurent
parents:
440
diff
changeset
|
173 |
new_value = self.FindNewIEC_Channel(value) |
842 | 174 |
if new_value != value: |
175 |
new_leading = ".".join(map(str, self.CTNParent.GetCurrentLocation() + (new_value,))) |
|
176 |
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
|
177 |
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
|
178 |
elif path == "BaseParams.Name": |
203 | 179 |
res = self.FindNewName(value) |
718 | 180 |
self.CTNRequestSave() |
118 | 181 |
return res, True |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
182 |
|
19
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
183 |
parts = path.split(".", 1) |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
184 |
if self.MandatoryParams and parts[0] == self.MandatoryParams[0]: |
73257cea38bd
Adding Plugin params visualization with basic controls
lbessard
parents:
18
diff
changeset
|
185 |
self.MandatoryParams[1].setElementValue(parts[1], value) |
1179
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1063
diff
changeset
|
186 |
value = self.MandatoryParams[1].getElementInfos(parts[0], parts[1])["value"] |
718 | 187 |
elif self.CTNParams and parts[0] == self.CTNParams[0]: |
188 |
self.CTNParams[1].setElementValue(parts[1], value) |
|
1179
3e7bd88fcff7
Fixed inconsistency in value display when setting integer value for float parameter
Laurent Bessard
parents:
1063
diff
changeset
|
189 |
value = self.CTNParams[1].getElementInfos(parts[0], parts[1])["value"] |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
190 |
return value, False |
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
191 |
|
718 | 192 |
def CTNMakeDir(self): |
193 |
os.mkdir(self.CTNPath()) |
|
194 |
||
1061 | 195 |
def CTNRequestSave(self, from_project_path=None): |
718 | 196 |
if self.GetCTRoot().CheckProjectPathPerm(False): |
717 | 197 |
# If confnode do not have corresponding directory |
718 | 198 |
ctnpath = self.CTNPath() |
199 |
if not os.path.isdir(ctnpath): |
|
427 | 200 |
# Create it |
718 | 201 |
os.mkdir(ctnpath) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
202 |
|
717 | 203 |
# generate XML for base XML parameters controller of the confnode |
427 | 204 |
if self.MandatoryParams: |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
205 |
BaseXMLFile = open(self.ConfNodeBaseXmlFilePath(), 'w') |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
206 |
BaseXMLFile.write(etree.tostring( |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
207 |
self.MandatoryParams[1], |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
208 |
pretty_print=True, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
209 |
xml_declaration=True, |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
210 |
encoding='utf-8')) |
427 | 211 |
BaseXMLFile.close() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
212 |
|
717 | 213 |
# generate XML for XML parameters controller of the confnode |
718 | 214 |
if self.CTNParams: |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
215 |
XMLFile = open(self.ConfNodeXmlFilePath(), 'w') |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
216 |
XMLFile.write(etree.tostring( |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
217 |
self.CTNParams[1], |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
218 |
pretty_print=True, |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
219 |
xml_declaration=True, |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
220 |
encoding='utf-8')) |
427 | 221 |
XMLFile.close() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
222 |
|
718 | 223 |
# Call the confnode specific OnCTNSave method |
1061 | 224 |
result = self.OnCTNSave(from_project_path) |
427 | 225 |
if not result: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1733
diff
changeset
|
226 |
return _("Error while saving \"%s\"\n") % self.CTNPath() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
227 |
|
717 | 228 |
# mark confnode as saved |
427 | 229 |
self.ChangesToSave = False |
718 | 230 |
# go through all children and do the same |
231 |
for CTNChild in self.IterChildren(): |
|
1063 | 232 |
CTNChildPath = None |
233 |
if from_project_path is not None: |
|
234 |
CTNChildPath = CTNChild.CTNPath(project_path=from_project_path) |
|
235 |
result = CTNChild.CTNRequestSave(CTNChildPath) |
|
427 | 236 |
if result: |
237 |
return result |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
238 |
return None |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
239 |
|
718 | 240 |
def CTNImport(self, src_CTNPath): |
241 |
shutil.copytree(src_CTNPath, self.CTNPath) |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
242 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
243 |
|
883
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
244 |
def CTNGlobalInstances(self): |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
245 |
""" |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
246 |
@return: [(instance_name, instance_type),...] |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
247 |
""" |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
248 |
return [] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
249 |
|
883
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
250 |
def _GlobalInstances(self): |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
251 |
instances = self.CTNGlobalInstances() |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
252 |
for CTNChild in self.IECSortedChildren(): |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
253 |
instances.extend(CTNChild._GlobalInstances()) |
235a9ec83b95
Adding support for defining specific global variables for ConfTreeNodes
Laurent Bessard
parents:
842
diff
changeset
|
254 |
return instances |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
255 |
|
718 | 256 |
def CTNGenerate_C(self, buildpath, locations): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
257 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
258 |
Generate C code |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
259 |
@param locations: List of complete variables locations \ |
22 | 260 |
[{"IEC_TYPE" : the IEC type (i.e. "INT", "STRING", ...) |
261 |
"NAME" : name of the variable (generally "__IW0_1_2" style) |
|
262 |
"DIR" : direction "Q","I" or "M" |
|
263 |
"SIZE" : size "X", "B", "W", "D", "L" |
|
264 |
"LOC" : tuple of interger for IEC location (0,1,2,...) |
|
265 |
}, ...] |
|
18 | 266 |
@return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND |
267 |
""" |
|
1833
2269739dd098
fix unnecessary lambda and enable corresponding pylint check
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1831
diff
changeset
|
268 |
self.GetCTRoot().logger.write_warning(".".join(map(str, self.GetCurrentLocation())) + " -> Nothing to do\n") |
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
269 |
return [], "", False |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
270 |
|
203 | 271 |
def _Generate_C(self, buildpath, locations): |
717 | 272 |
# Generate confnodes [(Cfiles, CFLAGS)], LDFLAGS, DoCalls, extra_files |
203 | 273 |
# extra_files = [(fname,fobject), ...] |
718 | 274 |
gen_result = self.CTNGenerate_C(buildpath, locations) |
275 |
CTNCFilesAndCFLAGS, CTNLDFLAGS, DoCalls = gen_result[:3] |
|
203 | 276 |
extra_files = gen_result[3:] |
361 | 277 |
# if some files have been generated put them in the list with their location |
718 | 278 |
if CTNCFilesAndCFLAGS: |
279 |
LocationCFilesAndCFLAGS = [(self.GetCurrentLocation(), CTNCFilesAndCFLAGS, DoCalls)] |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
280 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
281 |
LocationCFilesAndCFLAGS = [] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
282 |
|
717 | 283 |
# confnode asks for some LDFLAGS |
2003
2076df8743b5
Support unicode in LDFLAGS returned by extensions
Edouard Tisserant
parents:
1932
diff
changeset
|
284 |
LDFLAGS = [] |
2076df8743b5
Support unicode in LDFLAGS returned by extensions
Edouard Tisserant
parents:
1932
diff
changeset
|
285 |
if CTNLDFLAGS is not None: |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
286 |
# LDFLAGS can be either string |
2434
07f48018b6f5
python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2418
diff
changeset
|
287 |
if isinstance(CTNLDFLAGS, (str, text)): |
2003
2076df8743b5
Support unicode in LDFLAGS returned by extensions
Edouard Tisserant
parents:
1932
diff
changeset
|
288 |
LDFLAGS += [CTNLDFLAGS] |
1733
dea107dce0c4
clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
289 |
# or list of strings |
1778
1c6a704bd39c
clean-up: fix PEP8 E721 do not compare types, use 'isinstance()'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
290 |
elif isinstance(CTNLDFLAGS, list): |
2003
2076df8743b5
Support unicode in LDFLAGS returned by extensions
Edouard Tisserant
parents:
1932
diff
changeset
|
291 |
LDFLAGS += CTNLDFLAGS |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
292 |
|
718 | 293 |
# recurse through all children, and stack their results |
294 |
for CTNChild in self.IECSortedChildren(): |
|
295 |
new_location = CTNChild.GetCurrentLocation() |
|
24 | 296 |
# How deep are we in the tree ? |
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1740
diff
changeset
|
297 |
depth = len(new_location) |
203 | 298 |
_LocationCFilesAndCFLAGS, _LDFLAGS, _extra_files = \ |
718 | 299 |
CTNChild._Generate_C( |
1733
dea107dce0c4
clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
300 |
# keep the same path |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
301 |
buildpath, |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
302 |
# filter locations that start with current IEC location |
1746
45d6f5fba016
clean-up: fix PEP8 E202 whitespace before ')'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
303 |
[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
|
304 |
# stack the result |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
305 |
LocationCFilesAndCFLAGS += _LocationCFilesAndCFLAGS |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
306 |
LDFLAGS += _LDFLAGS |
203 | 307 |
extra_files += _extra_files |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
308 |
|
203 | 309 |
return LocationCFilesAndCFLAGS, LDFLAGS, extra_files |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
310 |
|
718 | 311 |
def IterChildren(self): |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
312 |
for _CTNType, Children in self.Children.items(): |
718 | 313 |
for CTNInstance in Children: |
314 |
yield CTNInstance |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
315 |
|
718 | 316 |
def IECSortedChildren(self): |
317 |
# reorder children by IEC_channels |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
318 |
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
|
319 |
if ordered: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
320 |
ordered.sort() |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
321 |
return zip(*ordered)[1] |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
322 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
323 |
return [] |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
324 |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
325 |
def _GetChildBySomething(self, something, toks): |
718 | 326 |
for CTNInstance in self.IterChildren(): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
327 |
# if match component of the name |
718 | 328 |
if getattr(CTNInstance.BaseParams, something) == toks[0]: |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
329 |
# if Name have other components |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
330 |
if len(toks) >= 2: |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
331 |
# Recurse in order to find the latest object |
1747
6046ffa2280f
clean-up: fix PEP8 E201 whitespace after '{'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1746
diff
changeset
|
332 |
return CTNInstance._GetChildBySomething(something, toks[1:]) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
333 |
# No sub name -> found |
718 | 334 |
return CTNInstance |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
335 |
# Not found |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
336 |
return None |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
337 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
338 |
def GetChildByName(self, Name): |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
339 |
if Name: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
340 |
toks = Name.split('.') |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
341 |
return self._GetChildBySomething("Name", toks) |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
342 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
343 |
return self |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
344 |
|
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
345 |
def GetChildByIECLocation(self, Location): |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
346 |
if Location: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
347 |
return self._GetChildBySomething("IEC_Channel", Location) |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
348 |
else: |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
349 |
return self |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
350 |
|
23 | 351 |
def GetCurrentLocation(self): |
24 | 352 |
""" |
717 | 353 |
@return: Tupple containing confnode IEC location of current confnode : %I0.0.4.5 => (0,0,4,5) |
24 | 354 |
""" |
718 | 355 |
return self.CTNParent.GetCurrentLocation() + (self.BaseParams.getIEC_Channel(),) |
23 | 356 |
|
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
357 |
def GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
358 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
359 |
@return: String "ParentParentName.ParentName.Name" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
360 |
""" |
1738
d2e979738700
clean-up: fix PEP8 E271 multiple spaces after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1737
diff
changeset
|
361 |
return self.CTNParent._GetCurrentName() + self.BaseParams.getName() |
47
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
362 |
|
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
363 |
def _GetCurrentName(self): |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
364 |
""" |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
365 |
@return: String "ParentParentName.ParentName.Name." |
fd45c291fed0
PLC and plugins compilation with gcc now starts (and fail).
etisserant
parents:
41
diff
changeset
|
366 |
""" |
1738
d2e979738700
clean-up: fix PEP8 E271 multiple spaces after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1737
diff
changeset
|
367 |
return self.CTNParent._GetCurrentName() + self.BaseParams.getName() + "." |
718 | 368 |
|
369 |
def GetCTRoot(self): |
|
370 |
return self.CTNParent.GetCTRoot() |
|
23 | 371 |
|
97 | 372 |
def GetFullIEC_Channel(self): |
373 |
return ".".join([str(i) for i in self.GetCurrentLocation()]) + ".x" |
|
374 |
||
375 |
def GetLocations(self): |
|
376 |
location = self.GetCurrentLocation() |
|
718 | 377 |
return [loc for loc in self.CTNParent.GetLocations() if loc["LOC"][0:len(location)] == location] |
97 | 378 |
|
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
379 |
def GetVariableLocationTree(self): |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
380 |
''' |
717 | 381 |
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
|
382 |
|
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
383 |
It should returns an list of dictionaries |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
384 |
|
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
385 |
- 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
|
386 |
- 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
|
387 |
''' |
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
388 |
children = [] |
718 | 389 |
for child in self.IECSortedChildren(): |
402
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
390 |
children.append(child.GetVariableLocationTree()) |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
391 |
return {"name": self.BaseParams.getName(), |
717 | 392 |
"type": LOCATION_CONFNODE, |
402
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
393 |
"location": self.GetFullIEC_Channel(), |
984e238e63d0
Bugs on displaying plugin available variables in PluginTree fixed
laurent
parents:
401
diff
changeset
|
394 |
"children": children} |
401
8106a853a7c7
Adding support for displaying plugins available variable into Beremiz plugin tree
laurent
parents:
396
diff
changeset
|
395 |
|
203 | 396 |
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
|
397 |
""" |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
398 |
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
|
399 |
@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
|
400 |
""" |
1846
14b40afccd69
remove unused variables found by pylint
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1833
diff
changeset
|
401 |
|
718 | 402 |
# Build a list of used Name out of parent's Children |
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1740
diff
changeset
|
403 |
AllNames = [] |
718 | 404 |
for CTNInstance in self.CTNParent.IterChildren(): |
405 |
if CTNInstance != self: |
|
406 |
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
|
407 |
|
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
408 |
# 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
|
409 |
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
|
410 |
if DesiredName.endswith("_0"): |
841
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
411 |
BaseDesiredName = DesiredName[:-2] |
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
412 |
else: |
8e19df12b596
Fix unexpected warning message when adding extension to project
Laurent Bessard
parents:
833
diff
changeset
|
413 |
BaseDesiredName = DesiredName |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
414 |
suffix = 1 |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
415 |
while res in AllNames: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1733
diff
changeset
|
416 |
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
|
417 |
suffix += 1 |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
418 |
|
717 | 419 |
# 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
|
420 |
dontexist = self.BaseParams.getName() == "__unnamed__" |
1932
65d2dbbf7022
Better variable naming, and small optimization.
Edouard Tisserant
parents:
1881
diff
changeset
|
421 |
if not dontexist: |
65d2dbbf7022
Better variable naming, and small optimization.
Edouard Tisserant
parents:
1881
diff
changeset
|
422 |
# Get old path |
65d2dbbf7022
Better variable naming, and small optimization.
Edouard Tisserant
parents:
1881
diff
changeset
|
423 |
oldpath = self.CTNPath() |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
424 |
# Set the new name |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
425 |
self.BaseParams.setName(res) |
717 | 426 |
# 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
|
427 |
if not dontexist: |
1932
65d2dbbf7022
Better variable naming, and small optimization.
Edouard Tisserant
parents:
1881
diff
changeset
|
428 |
shutil.move(oldpath, self.CTNPath()) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
429 |
# 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
|
430 |
if DesiredName != res: |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
431 |
msg = _("A child named \"{a1}\" already exists -> \"{a2}\"\n").format(a1=DesiredName, a2=res) |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1511
diff
changeset
|
432 |
self.GetCTRoot().logger.write_warning(msg) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
433 |
return res |
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
434 |
|
683
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
435 |
def GetAllChannels(self): |
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1740
diff
changeset
|
436 |
AllChannels = [] |
718 | 437 |
for CTNInstance in self.CTNParent.IterChildren(): |
438 |
if CTNInstance != self: |
|
439 |
AllChannels.append(CTNInstance.BaseParams.getIEC_Channel()) |
|
683
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
440 |
AllChannels.sort() |
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
441 |
return AllChannels |
57aa9da845d5
Fix wrong panel size making strange background in topology plugin element
laurent
parents:
677
diff
changeset
|
442 |
|
203 | 443 |
def FindNewIEC_Channel(self, DesiredChannel): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
444 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
445 |
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
|
446 |
@param DesiredChannel: The desired IEC channel (int) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
447 |
""" |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
448 |
# Get Current IEC channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
449 |
CurrentChannel = self.BaseParams.getIEC_Channel() |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
450 |
# Do nothing if no change |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1778
diff
changeset
|
451 |
# if CurrentChannel == DesiredChannel: return CurrentChannel |
718 | 452 |
# 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
|
453 |
AllChannels = self.GetAllChannels() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
454 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
455 |
# Now, try to guess the nearest available channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
456 |
res = DesiredChannel |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
457 |
while res in AllChannels: # While channel not free |
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
458 |
if res < CurrentChannel: # Want to go down ? |
1758
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
459 |
res -= 1 # Test for n-1 |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1738
diff
changeset
|
460 |
if res < 0: |
1734
750eeb7230a1
clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1733
diff
changeset
|
461 |
self.GetCTRoot().logger.write_warning(_("Cannot find lower free IEC channel than %d\n") % CurrentChannel) |
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
462 |
return CurrentChannel # Can't go bellow 0, do nothing |
1739
ec153828ded2
clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1738
diff
changeset
|
463 |
else: # Want to go up ? |
1758
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1747
diff
changeset
|
464 |
res += 1 # Test for n-1 |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
465 |
# Finally set IEC Channel |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
466 |
self.BaseParams.setIEC_Channel(res) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
467 |
return res |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
468 |
|
967
8a339cd61cb4
Added support for extension custom contextual add menu
Laurent Bessard
parents:
883
diff
changeset
|
469 |
def GetContextualMenuItems(self): |
8a339cd61cb4
Added support for extension custom contextual add menu
Laurent Bessard
parents:
883
diff
changeset
|
470 |
return None |
8a339cd61cb4
Added support for extension custom contextual add menu
Laurent Bessard
parents:
883
diff
changeset
|
471 |
|
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
472 |
def GetView(self): |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
473 |
if self._View is None and self.EditorType is not None: |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
474 |
app_frame = self.GetCTRoot().AppFrame |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
475 |
self._View = self.EditorType(app_frame.TabsOpened, self, app_frame) |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
476 |
|
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
477 |
return self._View |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
478 |
|
782 | 479 |
def _OpenView(self, name=None, onlyopened=False): |
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
480 |
view = self.GetView() |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
481 |
|
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
482 |
if view is not None: |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
483 |
if name is None: |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
484 |
name = self.CTNFullName() |
782 | 485 |
app_frame = self.GetCTRoot().AppFrame |
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
486 |
app_frame.EditProjectElement(view, name) |
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
487 |
|
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2523
diff
changeset
|
488 |
return view |
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
489 |
|
774
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
490 |
def _CloseView(self, view): |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
491 |
app_frame = self.GetCTRoot().AppFrame |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
492 |
if app_frame is not None: |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
493 |
app_frame.DeletePage(view) |
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
494 |
|
675
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
495 |
def OnCloseEditor(self, view): |
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
496 |
if self._View == view: |
44b35c27e9ff
Adding support for quickly open recent projects in file menu
laurent
parents:
674
diff
changeset
|
497 |
self._View = None |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
498 |
|
718 | 499 |
def OnCTNClose(self): |
656
c1792dfc8c7e
Fixing bug integrated plugin editors not closed when removing corresponding plugin
laurent
parents:
655
diff
changeset
|
500 |
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
|
501 |
self._CloseView(self._View) |
774
78b5fa92dd1c
Fix bug when opening and closing confnode extra viewers
laurent
parents:
744
diff
changeset
|
502 |
self._View = None |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
503 |
return True |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
504 |
|
718 | 505 |
def _doRemoveChild(self, CTNInstance): |
506 |
# Remove all children of child |
|
507 |
for SubCTNInstance in CTNInstance.IterChildren(): |
|
508 |
CTNInstance._doRemoveChild(SubCTNInstance) |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
509 |
# Call the OnCloseMethod |
718 | 510 |
CTNInstance.OnCTNClose() |
717 | 511 |
# Delete confnode dir |
2004
28af541d776b
Allow deleting configuration tree node with no corresponding directory in project tree
Edouard Tisserant
parents:
2003
diff
changeset
|
512 |
try: |
28af541d776b
Allow deleting configuration tree node with no corresponding directory in project tree
Edouard Tisserant
parents:
2003
diff
changeset
|
513 |
shutil.rmtree(CTNInstance.CTNPath()) |
2182
eeca1aff0691
Fix linter errors
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2004
diff
changeset
|
514 |
except Exception: |
2004
28af541d776b
Allow deleting configuration tree node with no corresponding directory in project tree
Edouard Tisserant
parents:
2003
diff
changeset
|
515 |
pass |
718 | 516 |
# Remove child of Children |
517 |
self.Children[CTNInstance.CTNType].remove(CTNInstance) |
|
1033
1eec9b855e47
Clean Config Tree Node children list by type after removing one child
Laurent Bessard
parents:
967
diff
changeset
|
518 |
if len(self.Children[CTNInstance.CTNType]) == 0: |
1eec9b855e47
Clean Config Tree Node children list by type after removing one child
Laurent Bessard
parents:
967
diff
changeset
|
519 |
self.Children.pop(CTNInstance.CTNType) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
520 |
# Forget it... (View have to refresh) |
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
521 |
|
718 | 522 |
def CTNRemove(self): |
717 | 523 |
# Fetch the confnode |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1778
diff
changeset
|
524 |
# CTNInstance = self.GetChildByName(CTNName) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
525 |
# Ask to his parent to remove it |
718 | 526 |
self.CTNParent._doRemoveChild(self) |
527 |
||
528 |
def CTNAddChild(self, CTNName, CTNType, IEC_Channel=0): |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
529 |
""" |
717 | 530 |
Create the confnodes that may be added as child to this node self |
718 | 531 |
@param CTNType: string desining the confnode class name (get name from CTNChildrenTypes) |
532 |
@param CTNName: string for the name of the confnode instance |
|
533 |
""" |
|
720 | 534 |
# reorganize self.CTNChildrenTypes tuples from (name, CTNClass, Help) |
718 | 535 |
# to ( name, (CTNClass, Help)), an make a dict |
536 |
transpose = zip(*self.CTNChildrenTypes) |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
537 |
CTNChildrenTypes = dict(zip(transpose[0], zip(transpose[1], transpose[2]))) |
717 | 538 |
# Check that adding this confnode is allowed |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
539 |
try: |
718 | 540 |
CTNClass, CTNHelp = CTNChildrenTypes[CTNType] |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
541 |
except KeyError: |
1765
ccf59c1f0b45
clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
542 |
raise Exception(_("Cannot create child {a1} of type {a2} "). |
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1765
diff
changeset
|
543 |
format(a1=CTNName, a2=CTNType)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
544 |
|
718 | 545 |
# if CTNClass is a class factory, call it. (prevent unneeded imports) |
1778
1c6a704bd39c
clean-up: fix PEP8 E721 do not compare types, use 'isinstance()'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
546 |
if isinstance(CTNClass, types.FunctionType): |
718 | 547 |
CTNClass = CTNClass() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
548 |
|
717 | 549 |
# Eventualy Initialize child instance list for this class of confnode |
718 | 550 |
ChildrenWithSameClass = self.Children.setdefault(CTNType, list()) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
551 |
# Check count |
718 | 552 |
if getattr(CTNClass, "CTNMaxCount", None) and len(ChildrenWithSameClass) >= CTNClass.CTNMaxCount: |
1765
ccf59c1f0b45
clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
553 |
raise Exception( |
ccf59c1f0b45
clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
554 |
_("Max count ({a1}) reached for this confnode of type {a2} "). |
ccf59c1f0b45
clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
555 |
format(a1=CTNClass.CTNMaxCount, a2=CTNType)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
556 |
|
717 | 557 |
# create the final class, derived of provided confnode and template |
718 | 558 |
class FinalCTNClass(CTNClass, ConfigTreeNode): |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
559 |
""" |
718 | 560 |
ConfNode class is derivated into FinalCTNClass before being instanciated |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
561 |
This way __init__ is overloaded to ensure ConfigTreeNode.__init__ is called |
718 | 562 |
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
|
563 |
""" |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
564 |
def __init__(self, parent): |
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
565 |
self.CTNParent = parent |
717 | 566 |
# Keep track of the confnode type name |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
567 |
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
|
568 |
# remind the help string, for more fancy display |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
569 |
self.CTNHelp = CTNHelp |
717 | 570 |
# Call the base confnode template init - change XSD into class members |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
571 |
ConfigTreeNode.__init__(self) |
29
282380dea497
Major improvements, plugin renaming and secured name/IEC channel attribution, various fixes on PlugTemplate
etisserant
parents:
25
diff
changeset
|
572 |
# check name is unique |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
573 |
NewCTNName = self.FindNewName(CTNName) |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
574 |
# If dir have already be made, and file exist |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
575 |
if os.path.isdir(self.CTNPath(NewCTNName)): # and os.path.isfile(self.ConfNodeXmlFilePath(CTNName)): |
1733
dea107dce0c4
clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
576 |
# Load the confnode.xml file into parameters members |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
577 |
self.LoadXMLParams(NewCTNName) |
20 | 578 |
# Basic check. Better to fail immediately. |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
579 |
if self.BaseParams.getName() != NewCTNName: |
1765
ccf59c1f0b45
clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
580 |
raise Exception( |
ccf59c1f0b45
clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1760
diff
changeset
|
581 |
_("Project tree layout do not match confnode.xml {a1}!={a2} "). |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
582 |
format(a1=NewCTNName, a2=self.BaseParams.getName())) |
718 | 583 |
|
584 |
# Now, self.CTNPath() should be OK |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
585 |
|
15
7a473efc4530
More precise design for plugins.... to be continued...
etisserant
parents:
14
diff
changeset
|
586 |
# Check that IEC_Channel is not already in use. |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
587 |
self.FindNewIEC_Channel(self.BaseParams.getIEC_Channel()) |
717 | 588 |
# Call the confnode real __init__ |
718 | 589 |
if getattr(CTNClass, "__init__", None): |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
590 |
CTNClass.__init__(self) |
1733
dea107dce0c4
clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
591 |
# Load and init all the children |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
592 |
self.LoadChildren() |
1733
dea107dce0c4
clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
593 |
# just loaded, nothing to saved |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
594 |
self.ChangesToSave = False |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
595 |
else: |
717 | 596 |
# If confnode do not have corresponding file/dirs - they will be created on Save |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
597 |
self.CTNMakeDir() |
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
598 |
# Find an IEC number |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
599 |
self.FindNewIEC_Channel(IEC_Channel) |
717 | 600 |
# Call the confnode real __init__ |
718 | 601 |
if getattr(CTNClass, "__init__", None): |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
602 |
CTNClass.__init__(self) |
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
603 |
self.CTNRequestSave() |
1733
dea107dce0c4
clean-up: fix some PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1732
diff
changeset
|
604 |
# just created, must be saved |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
605 |
self.ChangesToSave = True |
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
606 |
|
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
607 |
def _getBuildPath(self): |
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
608 |
return self.CTNParent._getBuildPath() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
609 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
610 |
# Create the object out of the resulting class |
1868
616c3f4bcbcb
fix pylint error '(no-self-argument) Method should have "self" as first argument'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1850
diff
changeset
|
611 |
newConfNodeOpj = FinalCTNClass(self) |
718 | 612 |
# Store it in CTNgedChils |
613 |
ChildrenWithSameClass.append(newConfNodeOpj) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
614 |
|
717 | 615 |
return newConfNodeOpj |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
616 |
|
718 | 617 |
def ClearChildren(self): |
618 |
for child in self.IterChildren(): |
|
619 |
child.ClearChildren() |
|
620 |
self.Children = {} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
621 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
622 |
def LoadXMLParams(self, CTNName=None): |
718 | 623 |
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
|
624 |
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
|
625 |
execfile(methode_name) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
626 |
|
1332
ac7d39f4e376
Fixed error message printed when error in XML files is detected
Laurent Bessard
parents:
1330
diff
changeset
|
627 |
ConfNodeName = CTNName if CTNName is not None else self.CTNName() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
628 |
|
17
ee8cb104dbe0
First commit of Beremiz new version with plugin support
lbessard
parents:
16
diff
changeset
|
629 |
# Get the base xml tree |
20 | 630 |
if self.MandatoryParams: |
203 | 631 |
try: |
718 | 632 |
basexmlfile = open(self.ConfNodeBaseXmlFilePath(CTNName), 'r') |
1330
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1315
diff
changeset
|
633 |
self.BaseParams, error = _BaseParamsParser.LoadXMLString(basexmlfile.read()) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1315
diff
changeset
|
634 |
if error is not None: |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1511
diff
changeset
|
635 |
(fname, lnum, src) = ((ConfNodeName + " BaseParams",) + error) |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
636 |
self.GetCTRoot().logger.write_warning(XSDSchemaErrorMessage.format(a1=fname, a2=lnum, a3=src)) |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
637 |
self.MandatoryParams = ("BaseParams", self.BaseParams) |
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
|
638 |
basexmlfile.close() |
2418
5587c490a070
Use python 3 compatible exception syntax everywhere
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2414
diff
changeset
|
639 |
except Exception as exc: |
2434
07f48018b6f5
python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2418
diff
changeset
|
640 |
msg = _("Couldn't load confnode base parameters {a1} :\n {a2}").format(a1=ConfNodeName, a2=text(exc)) |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1511
diff
changeset
|
641 |
self.GetCTRoot().logger.write_error(msg) |
718 | 642 |
self.GetCTRoot().logger.write_error(traceback.format_exc()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
643 |
|
14
eb9fdd316a40
More precise design for plugins.... to be continued...
etisserant
parents:
13
diff
changeset
|
644 |
# Get the xml tree |
718 | 645 |
if self.CTNParams: |
203 | 646 |
try: |
718 | 647 |
xmlfile = open(self.ConfNodeXmlFilePath(CTNName), 'r') |
1330
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1315
diff
changeset
|
648 |
obj, error = self.Parser.LoadXMLString(xmlfile.read()) |
96b242e4c59d
Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Laurent Bessard
parents:
1315
diff
changeset
|
649 |
if error is not None: |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1511
diff
changeset
|
650 |
(fname, lnum, src) = ((ConfNodeName,) + error) |
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
651 |
self.GetCTRoot().logger.write_warning(XSDSchemaErrorMessage.format(a1=fname, a2=lnum, a3=src)) |
1315
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
652 |
name = obj.getLocalTag() |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
653 |
setattr(self, name, obj) |
ff14a66bbd12
Fixed Beremiz for working with new xmlclass support using lxml
Laurent Bessard
parents:
1179
diff
changeset
|
654 |
self.CTNParams = (name, obj) |
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
|
655 |
xmlfile.close() |
2418
5587c490a070
Use python 3 compatible exception syntax everywhere
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2414
diff
changeset
|
656 |
except Exception as exc: |
2434
07f48018b6f5
python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2418
diff
changeset
|
657 |
msg = _("Couldn't load confnode parameters {a1} :\n {a2}").format(a1=ConfNodeName, a2=text(exc)) |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1511
diff
changeset
|
658 |
self.GetCTRoot().logger.write_error(msg) |
718 | 659 |
self.GetCTRoot().logger.write_error(traceback.format_exc()) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1722
diff
changeset
|
660 |
|
718 | 661 |
def LoadChildren(self): |
662 |
# Iterate over all CTNName@CTNType in confnode directory, and try to open them |
|
663 |
for CTNDir in os.listdir(self.CTNPath()): |
|
664 |
if os.path.isdir(os.path.join(self.CTNPath(), CTNDir)) and \ |
|
665 |
CTNDir.count(NameTypeSeparator) == 1: |
|
666 |
pname, ptype = CTNDir.split(NameTypeSeparator) |
|
203 | 667 |
try: |
718 | 668 |
self.CTNAddChild(pname, ptype) |
2418
5587c490a070
Use python 3 compatible exception syntax everywhere
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2414
diff
changeset
|
669 |
except Exception as exc: |
2434
07f48018b6f5
python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2418
diff
changeset
|
670 |
msg = _("Could not add child \"{a1}\", type {a2} :\n{a3}\n").format(a1=pname, a2=ptype, a3=text(exc)) |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1511
diff
changeset
|
671 |
self.GetCTRoot().logger.write_error(msg) |
718 | 672 |
self.GetCTRoot().logger.write_error(traceback.format_exc()) |
2813
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
673 |
|
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
674 |
|
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
675 |
def FatalError(self, message): |
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
676 |
""" Raise an exception that will trigger error message intended to |
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
677 |
the user, but without backtrace since it is not a software error """ |
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
678 |
|
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
679 |
raise UserAddressedException(message) |
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
680 |
|
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
681 |
class UserAddressedException(Exception): |
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
682 |
pass |
ac736a878188
Add FatalError() method to ConfigTreeNode.
Edouard Tisserant
parents:
2620
diff
changeset
|
683 |