canfestival/canfestival.py
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Thu, 28 Sep 2017 12:20:40 +0300
changeset 1831 56b48961cc68
parent 1828 396da88d7b5c
child 1834 cd42b426028b
permissions -rw-r--r--
fix (old-style-class) Old-style class defined error for most parts of
the code

only PyJS code is left, because it does some fancy tricks and can't be
easily fixed. So far PyJS doesn't support Python3 anyway.
1511
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
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: 1464
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: 1464
diff changeset
     3
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
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: 1464
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: 1464
diff changeset
     6
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
diff changeset
     7
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
1680
6db967480b7d make run Beremiz and PLCOpen Editor, if full path contain non-lating
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1511
diff changeset
     8
# Copyright (C) 2017: Andrey Skvortsov
1511
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
diff changeset
     9
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
diff changeset
    10
# 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: 1464
diff changeset
    11
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
diff changeset
    12
# 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: 1464
diff changeset
    13
# 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: 1464
diff changeset
    14
# 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: 1464
diff changeset
    15
# 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: 1464
diff changeset
    16
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
diff changeset
    17
# 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: 1464
diff changeset
    18
# 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: 1464
diff changeset
    19
# 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: 1464
diff changeset
    20
# 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: 1464
diff changeset
    21
#
91538d0c242c add copyright notices to python files where there were missing, that
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1464
diff changeset
    22
# 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: 1464
diff changeset
    23
# 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: 1464
diff changeset
    24
# 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: 1464
diff changeset
    25
1732
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    26
import os
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    27
import sys
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    28
import shutil
1783
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    29
import wx
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    30
from gnosis.xml.pickle import *
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    31
from gnosis.xml.pickle.util import setParanoia
1732
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    32
1680
6db967480b7d make run Beremiz and PLCOpen Editor, if full path contain non-lating
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1511
diff changeset
    33
import util.paths as paths
1783
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    34
from util.TranslationCatalogs import AddCatalog
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    35
from ConfigTreeNode import ConfigTreeNode
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    36
from PLCControler import \
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    37
    LOCATION_CONFNODE, \
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    38
    LOCATION_MODULE, \
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    39
    LOCATION_GROUP, \
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    40
    LOCATION_VAR_INPUT, \
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    41
    LOCATION_VAR_OUTPUT, \
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    42
    LOCATION_VAR_MEMORY
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    43
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    44
try:
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    45
    from nodelist import NodeList
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    46
except ImportError:
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    47
    base_folder = paths.AbsParentDir(__file__, 2)
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    48
    CanFestivalPath = os.path.join(base_folder, "CanFestival-3")
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    49
    sys.path.append(os.path.join(CanFestivalPath, "objdictgen"))
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    50
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    51
    from nodelist import NodeList
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    52
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    53
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    54
from nodemanager import NodeManager
1732
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    55
import config_utils
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    56
import gen_cfile
94ffe74e6895 clean-up: fix PEP8 E401 multiple imports on one line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1730
diff changeset
    57
import eds_utils
512
36aeab46f27d Improved CanFEstival support for LPC - now build and link plugin generated files
edouard
parents: 427
diff changeset
    58
import canfestival_config as local_canfestival_config
1783
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    59
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
    60
from commondialogs import CreateNodeDialog
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    61
from subindextable import IECTypeConversion, SizeConversion
777
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
    62
from SlaveEditor import SlaveEditor, MasterViewer
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
    63
from NetworkEditor import NetworkEditor
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
    64
1783
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    65
3311eea28d56 clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1782
diff changeset
    66
AddCatalog(os.path.join(CanFestivalPath, "objdictgen", "locale"))
77
7de69369373e Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents: 65
diff changeset
    67
setParanoia(0)
7de69369373e Adding file with generated master in build folder and a button for editing it with objdictedit
lbessard
parents: 65
diff changeset
    68
815
e4f24593a758 Adding support for extending internationalization to extensions
laurent
parents: 802
diff changeset
    69
1782
5b6ad7a7fd9d clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1773
diff changeset
    70
# --------------------------------------------------
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    71
#              Location Tree Helper
1782
5b6ad7a7fd9d clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1773
diff changeset
    72
# --------------------------------------------------
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    73
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
    74
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    75
def GetSlaveLocationTree(slave_node, current_location, name):
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    76
    entries = []
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    77
    for index, subindex, size, entry_name in slave_node.GetMapVariableList():
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    78
        subentry_infos = slave_node.GetSubentryInfos(index, subindex)
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    79
        typeinfos = slave_node.GetEntryInfos(subentry_infos["type"])
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    80
        if typeinfos:
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    81
            entries.append({
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    82
                "name": "0x%4.4x-0x%2.2x: %s" % (index, subindex, entry_name),
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    83
                "type": LOCATION_VAR_MEMORY,
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    84
                "size": size,
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    85
                "IEC_type": IECTypeConversion.get(typeinfos["name"]),
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    86
                "var_name": "%s_%4.4x_%2.2x" % ("_".join(name.split()), index, subindex),
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
    87
                "location": "%s%s" % (SizeConversion[size], ".".join(map(str, current_location +
1767
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
    88
                                                                         (index, subindex)))),
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    89
                "description": "",
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    90
                "children": []})
1738
d2e979738700 clean-up: fix PEP8 E271 multiple spaces after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1737
diff changeset
    91
    return {"name": name,
d2e979738700 clean-up: fix PEP8 E271 multiple spaces after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1737
diff changeset
    92
            "type": LOCATION_CONFNODE,
d2e979738700 clean-up: fix PEP8 E271 multiple spaces after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1737
diff changeset
    93
            "location": ".".join([str(i) for i in current_location]) + ".x",
1773
38fde37c3766 clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1767
diff changeset
    94
            "children": entries}
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
    95
1782
5b6ad7a7fd9d clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1773
diff changeset
    96
# --------------------------------------------------
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
    97
#                    SLAVE
1782
5b6ad7a7fd9d clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1773
diff changeset
    98
# --------------------------------------------------
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
    99
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
   100
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   101
class _SlaveCTN(NodeManager):
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   102
    XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   103
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   104
      <xsd:element name="CanFestivalSlaveNode">
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   105
        <xsd:complexType>
960
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   106
          <xsd:attribute name="CAN_Device" type="xsd:string" use="optional"/>
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   107
          <xsd:attribute name="CAN_Baudrate" type="xsd:string" use="optional"/>
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   108
          <xsd:attribute name="NodeId" type="xsd:integer" use="optional" default="2"/>
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   109
          <xsd:attribute name="Sync_Align" type="xsd:integer" use="optional" default="0"/>
203
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   110
          <xsd:attribute name="Sync_Align_Ratio" use="optional" default="50">
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   111
            <xsd:simpleType>
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   112
                <xsd:restriction base="xsd:integer">
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   113
                    <xsd:minInclusive value="1"/>
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   114
                    <xsd:maxInclusive value="99"/>
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   115
                </xsd:restriction>
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   116
            </xsd:simpleType>
cb9901076a21 Added concepts :
etisserant
parents: 178
diff changeset
   117
          </xsd:attribute>
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   118
        </xsd:complexType>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   119
      </xsd:element>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   120
    </xsd:schema>
960
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   121
    """
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   122
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   123
    EditorType = SlaveEditor
738
413946c04c87 refactoring
laurent
parents: 734
diff changeset
   124
    IconPath = os.path.join(CanFestivalPath, "objdictgen", "networkedit.png")
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   125
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 15
diff changeset
   126
    def __init__(self):
23
e007d9d466d7 minor fixes
etisserant
parents: 22
diff changeset
   127
        # TODO change netname when name change
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   128
        NodeManager.__init__(self)
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   129
        odfilepath = self.GetSlaveODPath()
1828
396da88d7b5c fix unnecessary parens after keyword
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1783
diff changeset
   130
        if os.path.isfile(odfilepath):
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   131
            self.OpenFileInCurrent(odfilepath)
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   132
        else:
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   133
            self.FilePath = ""
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   134
            dialog = CreateNodeDialog(None, wx.OK)
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   135
            dialog.Type.Enable(False)
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   136
            dialog.GenSYNC.Enable(False)
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   137
            if dialog.ShowModal() == wx.ID_OK:
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   138
                name, id, nodetype, description = dialog.GetValues()
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   139
                profile, filepath = dialog.GetProfile()
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   140
                NMT = dialog.GetNMTManagement()
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   141
                options = dialog.GetOptions()
1737
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   142
                self.CreateNewNode(name,         # Name - will be changed at build time
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   143
                                   id,           # NodeID - will be changed at build time
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   144
                                   "slave",      # Type
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   145
                                   description,  # description
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   146
                                   profile,      # profile
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   147
                                   filepath,     # prfile filepath
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   148
                                   NMT,          # NMT
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   149
                                   options)      # options
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   150
            else:
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   151
                self.CreateNewNode("SlaveNode",  # Name - will be changed at build time
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   152
                                   0x00,         # NodeID - will be changed at build time
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   153
                                   "slave",      # Type
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   154
                                   "",           # description
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   155
                                   "None",       # profile
1737
a39c2918c015 clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1736
diff changeset
   156
                                   "",           # prfile filepath
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   157
                                   "heartbeat",  # NMT
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   158
                                   [])           # options
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   159
            dialog.Destroy()
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   160
            self.OnCTNSave()
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   161
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   162
    def GetCurrentNodeName(self):
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   163
        return self.CTNName()
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   164
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   165
    def GetSlaveODPath(self):
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   166
        return os.path.join(self.CTNPath(), 'slave.od')
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   167
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   168
    def GetCanDevice(self):
948
89fead207c35 Fix semantic error while compiling project including canfestival extension instances
Laurent Bessard
parents: 847
diff changeset
   169
        return self.CanFestivalSlaveNode.getCAN_Device()
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   170
784
a1d970365e41 Adding support for beremiz extensions to define custom file editors for project files
laurent
parents: 782
diff changeset
   171
    def _OpenView(self, name=None, onlyopened=False):
a1d970365e41 Adding support for beremiz extensions to define custom file editors for project files
laurent
parents: 782
diff changeset
   172
        ConfigTreeNode._OpenView(self, name, onlyopened)
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   173
        if self._View is not None:
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   174
            self._View.SetBusId(self.GetCurrentLocation())
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   175
        return self._View
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   176
777
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   177
    def _ExportSlave(self):
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   178
        dialog = wx.FileDialog(self.GetCTRoot().AppFrame,
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   179
                               _("Choose a file"),
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   180
                               os.path.expanduser("~"),
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   181
                               "%s.eds" % self.CTNName(),
847
b157705a9024 Fix bug in generated master panel in CanFestival extension
laurent
parents: 845
diff changeset
   182
                               _("EDS files (*.eds)|*.eds|All files|*.*"),
1745
f9d32913bad4 clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1744
diff changeset
   183
                               wx.SAVE | wx.OVERWRITE_PROMPT)
777
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   184
        if dialog.ShowModal() == wx.ID_OK:
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   185
            result = eds_utils.GenerateEDSFile(dialog.GetPath(), self.GetCurrentNodeCopy())
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   186
            if result:
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   187
                self.GetCTRoot().logger.write_error(_("Error: Export slave failed\n"))
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   188
        dialog.Destroy()
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   189
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 684
diff changeset
   190
    ConfNodeMethods = [
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   191
        {
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   192
            "bitmap":    "ExportSlave",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   193
            "name":    _("Export slave"),
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   194
            "tooltip": _("Export CanOpen slave to EDS file"),
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   195
            "method":   "_ExportSlave"
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   196
        },
65
e55d6faee9d1 Adding icons in Beremiz GUI
lbessard
parents: 59
diff changeset
   197
    ]
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   198
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   199
    def CTNTestModified(self):
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   200
        return self.ChangesToSave or self.OneFileHasChanged()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   201
1061
02f371f3e063 Fixed Save As... function in Beremiz
Laurent Bessard
parents: 1003
diff changeset
   202
    def OnCTNSave(self, from_project_path=None):
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   203
        return self.SaveCurrentInFile(self.GetSlaveODPath())
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   204
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   205
    def SetParamsAttribute(self, path, value):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 684
diff changeset
   206
        result = ConfigTreeNode.SetParamsAttribute(self, path, value)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   207
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   208
        # Filter IEC_Channel and Name, that have specific behavior
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   209
        if path == "BaseParams.IEC_Channel" and self._View is not None:
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   210
            self._View.SetBusId(self.GetCurrentLocation())
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   211
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   212
        return result
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   213
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   214
    def GetVariableLocationTree(self):
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   215
        current_location = self.GetCurrentLocation()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   216
        return GetSlaveLocationTree(self.CurrentNode,
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   217
                                    self.GetCurrentLocation(),
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   218
                                    self.BaseParams.getName())
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   219
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   220
    def CTNGenerate_C(self, buildpath, locations):
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   221
        """
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
   222
        Generate C code
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 684
diff changeset
   223
        @param current_location: Tupple containing confnode IEC location : %I0.0.4.5 => (0,0,4,5)
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
   224
        @param locations: List of complete variables locations \
22
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   225
            [{"IEC_TYPE" : the IEC type (i.e. "INT", "STRING", ...)
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   226
            "NAME" : name of the variable (generally "__IW0_1_2" style)
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   227
            "DIR" : direction "Q","I" or "M"
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   228
            "SIZE" : size "X", "B", "W", "D", "L"
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   229
            "LOC" : tuple of interger for IEC location (0,1,2,...)
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   230
            }, ...]
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   231
        @return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   232
        """
24
585d5b387b6a Working CanOpen OD generation
etisserant
parents: 23
diff changeset
   233
        current_location = self.GetCurrentLocation()
22
9a0c535c3272 Pleliminary build process -- C code generation
etisserant
parents: 20
diff changeset
   234
        # define a unique name for the generated C file
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   235
        prefix = "_".join(map(str, current_location))
1746
45d6f5fba016 clean-up: fix PEP8 E202 whitespace before ')'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
   236
        Gen_OD_path = os.path.join(buildpath, "OD_%s.c" % prefix)
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   237
        # Create a new copy of the model
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   238
        slave = self.GetCurrentNodeCopy()
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   239
        slave.SetNodeName("OD_%s" % prefix)
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   240
        # allow access to local OD from Slave PLC
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   241
        pointers = config_utils.LocalODPointers(locations, current_location, slave)
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   242
        res = gen_cfile.GenerateFile(Gen_OD_path, slave, pointers)
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   243
        if res:
1765
ccf59c1f0b45 clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1751
diff changeset
   244
            raise Exception(res)
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   245
        res = eds_utils.GenerateEDSFile(os.path.join(buildpath, "Slave_%s.eds" % prefix), slave)
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   246
        if res:
1765
ccf59c1f0b45 clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1751
diff changeset
   247
            raise Exception(res)
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   248
        return [(Gen_OD_path, local_canfestival_config.getCFLAGS(CanFestivalPath))], "", False
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   249
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   250
    def LoadPrevious(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   251
        self.LoadCurrentPrevious()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   252
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   253
    def LoadNext(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   254
        self.LoadCurrentNext()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   255
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   256
    def GetBufferState(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   257
        return self.GetCurrentBufferState()
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   258
1782
5b6ad7a7fd9d clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1773
diff changeset
   259
# --------------------------------------------------
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   260
#                    MASTER
1782
5b6ad7a7fd9d clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1773
diff changeset
   261
# --------------------------------------------------
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   262
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
   263
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   264
class MiniNodeManager(NodeManager):
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   265
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   266
    def __init__(self, parent, filepath, fullname):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   267
        NodeManager.__init__(self)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   268
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   269
        self.OpenFileInCurrent(filepath)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   270
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   271
        self.Parent = parent
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   272
        self.Fullname = fullname
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   273
781
cdc6393705ce Adding support using plcopeneditor bitmap library for icon request
laurent
parents: 777
diff changeset
   274
    def GetIconName(self):
777
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   275
        return None
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   276
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   277
    def OnCloseEditor(self, view):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   278
        self.Parent.OnCloseEditor(view)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   279
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   280
    def CTNFullName(self):
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   281
        return self.Fullname
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   282
777
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   283
    def CTNTestModified(self):
daa6941fe21a Fix bug with Show Master functionality
laurent
parents: 776
diff changeset
   284
        return False
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   285
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   286
    def GetBufferState(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   287
        return self.GetCurrentBufferState()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   288
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   289
    ConfNodeMethods = []
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   290
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
   291
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   292
class _NodeManager(NodeManager):
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   293
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   294
    def __init__(self, parent, *args, **kwargs):
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   295
        NodeManager.__init__(self, *args, **kwargs)
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   296
        self.Parent = parent
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   297
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   298
    def __del__(self):
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   299
        self.Parent = None
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   300
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   301
    def GetCurrentNodeName(self):
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   302
        return self.Parent.CTNName()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   303
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   304
    def GetCurrentNodeID(self):
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   305
        return self.Parent.CanFestivalNode.getNodeId()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   306
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
   307
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   308
class _NodeListCTN(NodeList):
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   309
    XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   310
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   311
      <xsd:element name="CanFestivalNode">
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   312
        <xsd:complexType>
960
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   313
          <xsd:attribute name="CAN_Device" type="xsd:string" use="optional"/>
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   314
          <xsd:attribute name="CAN_Baudrate" type="xsd:string" use="optional"/>
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   315
          <xsd:attribute name="NodeId" type="xsd:integer" use="optional" default="1"/>
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   316
          <xsd:attribute name="Sync_TPDOs" type="xsd:boolean" use="optional" default="true"/>
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   317
        </xsd:complexType>
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   318
      </xsd:element>
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   319
    </xsd:schema>
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   320
    """
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   321
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   322
    EditorType = NetworkEditor
738
413946c04c87 refactoring
laurent
parents: 734
diff changeset
   323
    IconPath = os.path.join(CanFestivalPath, "objdictgen", "networkedit.png")
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   324
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   325
    def __init__(self):
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   326
        manager = _NodeManager(self)
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   327
        NodeList.__init__(self, manager)
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   328
        self.LoadProject(self.CTNPath())
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   329
        self.SetNetworkName(self.BaseParams.getName())
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   330
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   331
    def GetCanDevice(self):
948
89fead207c35 Fix semantic error while compiling project including canfestival extension instances
Laurent Bessard
parents: 847
diff changeset
   332
        return self.CanFestivalNode.getCAN_Device()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   333
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   334
    def SetParamsAttribute(self, path, value):
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   335
        if path == "CanFestivalNode.NodeId":
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   336
            nodeid = self.CanFestivalNode.getNodeId()
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   337
            if value != nodeid:
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   338
                slaves = self.GetSlaveIDs()
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   339
                dir = (value - nodeid) / abs(value - nodeid)
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   340
                while value in slaves and value >= 0:
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   341
                    value += dir
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   342
                if value < 0:
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   343
                    value = nodeid
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   344
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   345
        value, refresh = ConfigTreeNode.SetParamsAttribute(self, path, value)
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   346
        refresh_network = False
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   347
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   348
        # Filter IEC_Channel and Name, that have specific behavior
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   349
        if path == "BaseParams.IEC_Channel" and self._View is not None:
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   350
            self._View.SetBusId(self.GetCurrentLocation())
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   351
        elif path == "BaseParams.Name":
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   352
            self.SetNetworkName(value)
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   353
            refresh_network = True
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   354
        elif path == "CanFestivalNode.NodeId":
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   355
            refresh_network = True
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   356
845
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   357
        if refresh_network and self._View is not None:
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   358
            wx.CallAfter(self._View.RefreshBufferState)
412a9f05070f Fixing CanFestival master and slave nodeid when generating code for PLC
laurent
parents: 815
diff changeset
   359
        return value, refresh
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   360
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   361
    def GetVariableLocationTree(self):
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   362
        current_location = self.GetCurrentLocation()
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   363
        nodeindexes = self.SlaveNodes.keys()
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   364
        nodeindexes.sort()
1767
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   365
        children = []
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   366
        children += [GetSlaveLocationTree(self.Manager.GetCurrentNodeCopy(),
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   367
                                          current_location,
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   368
                                          _("Local entries"))]
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   369
        children += [GetSlaveLocationTree(self.SlaveNodes[nodeid]["Node"],
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   370
                                          current_location + (nodeid,),
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   371
                                          self.SlaveNodes[nodeid]["Name"]) for nodeid in nodeindexes]
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   372
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   373
        return {
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   374
            "name":     self.BaseParams.getName(),
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   375
            "type":     LOCATION_CONFNODE,
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   376
            "location": self.GetFullIEC_Channel(),
c74815729afd clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1765
diff changeset
   377
            "children": children
1003
de812e258213 Fixed CanFestival extension, adding CANOpen entries in BrowseLocationsDialog
Laurent Bessard
parents: 976
diff changeset
   378
        }
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   379
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   380
    _GeneratedMasterView = None
1751
c28db6f7616b clean-up: fix PEP8 E301 expected 1 blank line, found 0
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1746
diff changeset
   381
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   382
    def _ShowGeneratedMaster(self):
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   383
        self._OpenView("Generated master")
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   384
782
6f0e10085df9 Adding support for file explorer for project files
laurent
parents: 781
diff changeset
   385
    def _OpenView(self, name=None, onlyopened=False):
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   386
        if name == "Generated master":
782
6f0e10085df9 Adding support for file explorer for project files
laurent
parents: 781
diff changeset
   387
            app_frame = self.GetCTRoot().AppFrame
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   388
            if self._GeneratedMasterView is None:
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   389
                buildpath = self._getBuildPath()
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   390
                # Eventually create build dir
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   391
                if not os.path.exists(buildpath):
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   392
                    self.GetCTRoot().logger.write_error(_("Error: No PLC built\n"))
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   393
                    return
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   394
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   395
                masterpath = os.path.join(buildpath, "MasterGenerated.od")
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   396
                if not os.path.exists(masterpath):
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   397
                    self.GetCTRoot().logger.write_error(_("Error: No Master generated\n"))
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   398
                    return
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   399
847
b157705a9024 Fix bug in generated master panel in CanFestival extension
laurent
parents: 845
diff changeset
   400
                manager = MiniNodeManager(self, masterpath, self.CTNFullName())
b157705a9024 Fix bug in generated master panel in CanFestival extension
laurent
parents: 845
diff changeset
   401
                self._GeneratedMasterView = MasterViewer(app_frame.TabsOpened, manager, app_frame, name)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   402
784
a1d970365e41 Adding support for beremiz extensions to define custom file editors for project files
laurent
parents: 782
diff changeset
   403
            if self._GeneratedMasterView is not None:
847
b157705a9024 Fix bug in generated master panel in CanFestival extension
laurent
parents: 845
diff changeset
   404
                app_frame.EditProjectElement(self._GeneratedMasterView, self._GeneratedMasterView.GetInstancePath())
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   405
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   406
            return self._GeneratedMasterView
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   407
        else:
782
6f0e10085df9 Adding support for file explorer for project files
laurent
parents: 781
diff changeset
   408
            ConfigTreeNode._OpenView(self, name, onlyopened)
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   409
            if self._View is not None:
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   410
                self._View.SetBusId(self.GetCurrentLocation())
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   411
            return self._View
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   412
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 684
diff changeset
   413
    ConfNodeMethods = [
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   414
        {
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   415
            "bitmap":    "ShowMaster",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   416
            "name":    _("Show Master"),
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   417
            "tooltip": _("Show Master generated by config_utils"),
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   418
            "method":   "_ShowGeneratedMaster"
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   419
        }
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   420
    ]
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   421
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   422
    def OnCloseEditor(self, view):
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 684
diff changeset
   423
        ConfigTreeNode.OnCloseEditor(self, view)
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   424
        if self._GeneratedMasterView == view:
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   425
            self._GeneratedMasterView = None
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   426
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   427
    def OnCTNClose(self):
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   428
        ConfigTreeNode.OnCTNClose(self)
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   429
        self._CloseView(self._GeneratedMasterView)
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   430
        return True
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   431
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   432
    def CTNTestModified(self):
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   433
        return self.ChangesToSave or self.HasChanged()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   434
1061
02f371f3e063 Fixed Save As... function in Beremiz
Laurent Bessard
parents: 1003
diff changeset
   435
    def OnCTNSave(self, from_project_path=None):
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   436
        self.SetRoot(self.CTNPath())
1063
9b5995303db1 Fixed bug in Save function in Beremiz
Laurent Bessard
parents: 1061
diff changeset
   437
        if from_project_path is not None:
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   438
            shutil.copytree(self.GetEDSFolder(from_project_path),
1063
9b5995303db1 Fixed bug in Save function in Beremiz
Laurent Bessard
parents: 1061
diff changeset
   439
                            self.GetEDSFolder())
250
01963beca027 Bug with return value of nodelist saving fixed
lbessard
parents: 203
diff changeset
   440
        return self.SaveProject() is None
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   441
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   442
    def CTNGenerate_C(self, buildpath, locations):
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   443
        """
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   444
        Generate C code
717
1c23952dbde1 refactoring
Edouard Tisserant
parents: 684
diff changeset
   445
        @param current_location: Tupple containing confnode IEC location : %I0.0.4.5 => (0,0,4,5)
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   446
        @param locations: List of complete variables locations \
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   447
            [{"IEC_TYPE" : the IEC type (i.e. "INT", "STRING", ...)
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   448
            "NAME" : name of the variable (generally "__IW0_1_2" style)
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   449
            "DIR" : direction "Q","I" or "M"
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   450
            "SIZE" : size "X", "B", "W", "D", "L"
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   451
            "LOC" : tuple of interger for IEC location (0,1,2,...)
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   452
            }, ...]
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   453
        @return: [(C_file_name, CFLAGS),...] , LDFLAGS_TO_APPEND
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   454
        """
774
78b5fa92dd1c Fix bug when opening and closing confnode extra viewers
laurent
parents: 762
diff changeset
   455
        self._CloseView(self._GeneratedMasterView)
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   456
        current_location = self.GetCurrentLocation()
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   457
        # define a unique name for the generated C file
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   458
        prefix = "_".join(map(str, current_location))
1746
45d6f5fba016 clean-up: fix PEP8 E202 whitespace before ')'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
   459
        Gen_OD_path = os.path.join(buildpath, "OD_%s.c" % prefix)
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   460
        # Create a new copy of the model with DCF loaded with PDO mappings for desired location
341
d3ae1f0e0220 Get PDOmapping exception from canfestival plugin
greg
parents: 336
diff changeset
   461
        try:
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   462
            master, pointers = config_utils.GenerateConciseDCF(locations, current_location, self, self.CanFestivalNode.getSync_TPDOs(), "OD_%s" % prefix)
341
d3ae1f0e0220 Get PDOmapping exception from canfestival plugin
greg
parents: 336
diff changeset
   463
        except config_utils.PDOmappingException, e:
1765
ccf59c1f0b45 clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1751
diff changeset
   464
            raise Exception(e.message)
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   465
        # Do generate C file.
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   466
        res = gen_cfile.GenerateFile(Gen_OD_path, master, pointers)
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   467
        if res:
1765
ccf59c1f0b45 clean-up: fix PEP8 W602 deprecated form of raising exception
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1751
diff changeset
   468
            raise Exception(res)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   469
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   470
        file = open(os.path.join(buildpath, "MasterGenerated.od"), "w")
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   471
        dump(master, file)
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   472
        file.close()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   473
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   474
        return [(Gen_OD_path, local_canfestival_config.getCFLAGS(CanFestivalPath))], "", False
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   475
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   476
    def LoadPrevious(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   477
        self.Manager.LoadCurrentPrevious()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   478
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   479
    def LoadNext(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   480
        self.Manager.LoadCurrentNext()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   481
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   482
    def GetBufferState(self):
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   483
        return self.Manager.GetCurrentBufferState()
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   484
1736
7e61baa047f0 clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1734
diff changeset
   485
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
   486
class RootClass(object):
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   487
    XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   488
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   489
      <xsd:element name="CanFestivalInstance">
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   490
        <xsd:complexType>
960
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   491
          <xsd:attribute name="CAN_Driver" type="xsd:string" use="optional"/>
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   492
        </xsd:complexType>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   493
      </xsd:element>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
   494
    </xsd:schema>
960
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   495
    """
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   496
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   497
    CTNChildrenTypes = [("CanOpenNode",  _NodeListCTN, "CanOpen Master"),
1746
45d6f5fba016 clean-up: fix PEP8 E202 whitespace before ')'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1745
diff changeset
   498
                        ("CanOpenSlave", _SlaveCTN,    "CanOpen Slave")]
1751
c28db6f7616b clean-up: fix PEP8 E301 expected 1 blank line, found 0
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1746
diff changeset
   499
1744
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1742
diff changeset
   500
    def GetParamsAttributes(self, path=None):
69dfdb26f600 clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1742
diff changeset
   501
        infos = ConfigTreeNode.GetParamsAttributes(self, path=path)
95
646a44a12e2a add GetParamsAttributes to canfestival.py to allow dll list in beremiz
greg
parents: 86
diff changeset
   502
        for element in infos:
163
482ca562d414 Support for extern pointer for located variables + Preliminary slave code (broken)
etisserant
parents: 159
diff changeset
   503
            if element["name"] == "CanFestivalInstance":
95
646a44a12e2a add GetParamsAttributes to canfestival.py to allow dll list in beremiz
greg
parents: 86
diff changeset
   504
                for child in element["children"]:
646a44a12e2a add GetParamsAttributes to canfestival.py to allow dll list in beremiz
greg
parents: 86
diff changeset
   505
                    if child["name"] == "CAN_Driver":
960
d72a866cf9b0 Cleanup in canfestival plugin. No more meaningless default values.
Edouard Tisserant
parents: 957
diff changeset
   506
                        child["type"] = local_canfestival_config.DLL_LIST
95
646a44a12e2a add GetParamsAttributes to canfestival.py to allow dll list in beremiz
greg
parents: 86
diff changeset
   507
        return infos
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   508
974
0d32a8748814 Fixed canfestival extension for LPCManager
Laurent Bessard
parents: 960
diff changeset
   509
    def GetCanDriver(self):
976
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   510
        res = self.CanFestivalInstance.getCAN_Driver()
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   511
        if not res:
976
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   512
            return ""
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   513
        return res
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   514
974
0d32a8748814 Fixed canfestival extension for LPCManager
Laurent Bessard
parents: 960
diff changeset
   515
    def CTNGenerate_C(self, buildpath, locations):
976
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   516
        can_driver = self.GetCanDriver()
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   517
        if can_driver is not None:
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   518
            can_drivers = local_canfestival_config.DLL_LIST
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   519
            if can_driver not in can_drivers:
976
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   520
                can_driver = can_drivers[0]
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   521
            can_drv_ext = self.GetCTRoot().GetBuilder().extension
1279
0eb9f8af479f Added 'dlopen_prefix' class attributes to targets, in order to handle dlopen of shared object passed to runtime as extra file, and then in PWD (was working with windows only)
Edouard Tisserant
parents: 1063
diff changeset
   522
            can_drv_prefix = self.GetCTRoot().GetBuilder().dlopen_prefix
0eb9f8af479f Added 'dlopen_prefix' class attributes to targets, in order to handle dlopen of shared object passed to runtime as extra file, and then in PWD (was working with windows only)
Edouard Tisserant
parents: 1063
diff changeset
   523
            can_driver_name = can_drv_prefix + "libcanfestival_" + can_driver + can_drv_ext
976
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   524
        else:
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   525
            can_driver_name = ""
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   526
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   527
        format_dict = {"locstr": "_".join(map(str, self.GetCurrentLocation())),
1739
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   528
                       "candriver": can_driver_name,
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   529
                       "nodes_includes": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   530
                       "board_decls": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   531
                       "nodes_init": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   532
                       "nodes_open": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   533
                       "nodes_stop": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   534
                       "nodes_close": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   535
                       "nodes_send_sync": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   536
                       "nodes_proceed_sync": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   537
                       "slavebootups": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   538
                       "slavebootup_register": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   539
                       "post_sync": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   540
                       "post_sync_register": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   541
                       "pre_op": "",
ec153828ded2 clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1738
diff changeset
   542
                       "pre_op_register": "",
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   543
                       }
718
5d4dc150b956 refactoring
Edouard Tisserant
parents: 717
diff changeset
   544
        for child in self.IECSortedChildren():
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   545
            childlocstr = "_".join(map(str, child.GetCurrentLocation()))
52
eaffcd0a2f03 Added CanFestival "main" runtime part, initialize, all nodes, and start CF timer loop
etisserant
parents: 49
diff changeset
   546
            nodename = "OD_%s" % childlocstr
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   547
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   548
            # Try to get Slave Node
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   549
            child_data = getattr(child, "CanFestivalSlaveNode", None)
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   550
            if child_data is None:
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   551
                # Not a slave -> master
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   552
                child_data = getattr(child, "CanFestivalNode")
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   553
                # Apply sync setting
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   554
                format_dict["nodes_init"] += 'NODE_MASTER_INIT(%s, %s)\n    ' % (
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   555
                       nodename,
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   556
                       child_data.getNodeId())
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   557
                if child_data.getSync_TPDOs():
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   558
                    format_dict["nodes_send_sync"] += 'NODE_SEND_SYNC(%s)\n    ' % (nodename)
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   559
                    format_dict["nodes_proceed_sync"] += 'NODE_PROCEED_SYNC(%s)\n    ' % (nodename)
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   560
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   561
                # initialize and declare node boot status variables for post_SlaveBootup lookup
169
8e87b69286c0 SlaveBootup now set operational state for both local node and network nodes only when all nodes declared in network edit have been initialized.
etisserant
parents: 166
diff changeset
   562
                SlaveIDs = child.GetSlaveIDs()
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   563
                if len(SlaveIDs) == 0:
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   564
                    # define post_SlaveBootup lookup functions
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   565
                    format_dict["slavebootups"] += (
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   566
                        "static void %s_post_SlaveBootup(CO_Data* d, UNS8 nodeId){}\n" % (nodename))
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   567
                else:
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   568
                    format_dict["slavebootups"] += (
1742
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   569
                        "static void %s_post_SlaveBootup(CO_Data* d, UNS8 nodeId){\n" % (nodename) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   570
                        "    check_and_start_node(d, nodeId);\n" +
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   571
                        "}\n")
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   572
                # register previously declared func as post_SlaveBootup callback for that node
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   573
                format_dict["slavebootup_register"] += (
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   574
                    "%s_Data.post_SlaveBootup = %s_post_SlaveBootup;\n" % (nodename, nodename))
779
7499535588e6 Fixed typo
Edouard Tisserant
parents: 778
diff changeset
   575
                format_dict["pre_op"] += (
1742
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   576
                    "static void %s_preOperational(CO_Data* d){\n    " % (nodename) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   577
                    "".join(["    masterSendNMTstateChange(d, %d, NMT_Reset_Comunication);\n" % NdId for NdId in SlaveIDs]) +
779
7499535588e6 Fixed typo
Edouard Tisserant
parents: 778
diff changeset
   578
                    "}\n")
7499535588e6 Fixed typo
Edouard Tisserant
parents: 778
diff changeset
   579
                format_dict["pre_op_register"] += (
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   580
                    "%s_Data.preOperational = %s_preOperational;\n" % (nodename, nodename))
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   581
            else:
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   582
                # Slave node
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   583
                align = child_data.getSync_Align()
1742
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   584
                align_ratio = child_data.getSync_Align_Ratio()
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   585
                if align > 0:
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   586
                    format_dict["post_sync"] += (
1742
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   587
                        "static int %s_CalCount = 0;\n" % (nodename) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   588
                        "static void %s_post_sync(CO_Data* d){\n" % (nodename) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   589
                        "    if(%s_CalCount < %d){\n" % (nodename, align) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   590
                        "        %s_CalCount++;\n" % (nodename) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   591
                        "        align_tick(-1);\n" +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   592
                        "    }else{\n" +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   593
                        "        align_tick(%d);\n" % (align_ratio) +
92932cd370a4 clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1741
diff changeset
   594
                        "    }\n" +
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   595
                        "}\n")
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   596
                    format_dict["post_sync_register"] += (
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   597
                        "%s_Data.post_sync = %s_post_sync;\n" % (nodename, nodename))
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   598
                format_dict["nodes_init"] += 'NODE_SLAVE_INIT(%s, %s)\n    ' % (
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   599
                       nodename,
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   600
                       child_data.getNodeId())
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   601
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   602
            # Include generated OD headers
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   603
            format_dict["nodes_includes"] += '#include "%s.h"\n' % (nodename)
178
2390b409eb93 Added PLC tick alignement on external synchronization source feature.
etisserant
parents: 174
diff changeset
   604
            # Declare CAN channels according user filled config
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   605
            format_dict["board_decls"] += 'BOARD_DECL(%s, "%s", "%s")\n' % (
52
eaffcd0a2f03 Added CanFestival "main" runtime part, initialize, all nodes, and start CF timer loop
etisserant
parents: 49
diff changeset
   606
                   nodename,
682
9d20df7c144a Adding support for integrating CanFestival plugin panels in Beremiz main frame
smarteh-dev
parents: 512
diff changeset
   607
                   child.GetCanDevice(),
166
121b18748de0 Preliminary CANopen slave generation support
etisserant
parents: 163
diff changeset
   608
                   child_data.getCAN_Baudrate())
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   609
            format_dict["nodes_open"] += 'NODE_OPEN(%s)\n    ' % (nodename)
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   610
            format_dict["nodes_close"] += 'NODE_CLOSE(%s)\n    ' % (nodename)
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   611
            format_dict["nodes_stop"] += 'NODE_STOP(%s)\n    ' % (nodename)
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   612
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   613
        filename = paths.AbsNeighbourFile(__file__, "cf_runtime.c")
52
eaffcd0a2f03 Added CanFestival "main" runtime part, initialize, all nodes, and start CF timer loop
etisserant
parents: 49
diff changeset
   614
        cf_main = open(filename).read() % format_dict
1734
750eeb7230a1 clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1732
diff changeset
   615
        cf_main_path = os.path.join(buildpath, "CF_%(locstr)s.c" % format_dict)
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   616
        f = open(cf_main_path, 'w')
52
eaffcd0a2f03 Added CanFestival "main" runtime part, initialize, all nodes, and start CF timer loop
etisserant
parents: 49
diff changeset
   617
        f.write(cf_main)
eaffcd0a2f03 Added CanFestival "main" runtime part, initialize, all nodes, and start CF timer loop
etisserant
parents: 49
diff changeset
   618
        f.close()
957
463d4b2b058d CanFestival plugin now sends driver as extra file to runtime if matching target. Helps on windows to resolve DLL
Edouard Tisserant
parents: 948
diff changeset
   619
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   620
        res = [(cf_main_path, local_canfestival_config.getCFLAGS(CanFestivalPath))], local_canfestival_config.getLDFLAGS(CanFestivalPath), True
1730
64d8f52bc8c8 clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1680
diff changeset
   621
976
0ba3d9cd61e8 re-fixed CanFestival support...
Edouard Tisserant
parents: 974
diff changeset
   622
        if can_driver is not None:
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   623
            can_driver_path = os.path.join(CanFestivalPath, "drivers", can_driver, can_driver_name)
974
0d32a8748814 Fixed canfestival extension for LPCManager
Laurent Bessard
parents: 960
diff changeset
   624
            if os.path.exists(can_driver_path):
1740
b789b695b5c6 clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents: 1739
diff changeset
   625
                res += ((can_driver_name, file(can_driver_path, "rb")),)
957
463d4b2b058d CanFestival plugin now sends driver as extra file to runtime if matching target. Helps on windows to resolve DLL
Edouard Tisserant
parents: 948
diff changeset
   626
463d4b2b058d CanFestival plugin now sends driver as extra file to runtime if matching target. Helps on windows to resolve DLL
Edouard Tisserant
parents: 948
diff changeset
   627
        return res