plugins/canfestival/canfestival.py
author etisserant
Tue, 04 Sep 2007 17:58:29 +0200
changeset 20 d3cb5020997b
parent 18 0fac6d621a24
child 22 9a0c535c3272
permissions -rw-r--r--
Beremiz plugins definitions.
20
d3cb5020997b Beremiz plugins definitions.
etisserant
parents: 18
diff changeset
     1
import os, sys
d3cb5020997b Beremiz plugins definitions.
etisserant
parents: 18
diff changeset
     2
base_folder = os.path.split(sys.path[0])[0]
d3cb5020997b Beremiz plugins definitions.
etisserant
parents: 18
diff changeset
     3
sys.path.append(os.path.join(base_folder, "CanFestival-3", "objdictgen"))
d3cb5020997b Beremiz plugins definitions.
etisserant
parents: 18
diff changeset
     4
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
     5
from nodelist import NodeList
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
     6
from nodemanager import NodeManager
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
     7
import config_utils, gen_cfile
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
     8
from networkedit import networkedit
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
     9
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    10
class _NetworkEdit(networkedit):
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    11
    " Overload some of CanFestival Network Editor methods "
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    12
    def OnCloseFrame(self, event):
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    13
        " Do reset _NodeListPlug.View when closed"
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    14
        self._onclose()
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    15
        event.Skip()
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    16
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    17
class _NodeListPlug(NodeList):
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    18
    XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    19
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    20
      <xsd:element name="CanFestivalNode">
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    21
        <xsd:complexType>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    22
          <xsd:attribute name="CAN_Device" type="xsd:string" use="required" />
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    23
        </xsd:complexType>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    24
      </xsd:element>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    25
    </xsd:schema>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    26
    """
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    27
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 15
diff changeset
    28
    def __init__(self):
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    29
        manager = NodeManager()
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    30
        NodeList.__init__(self, manager)
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 15
diff changeset
    31
        self.LoadProject(self.PlugPath())
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    32
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    33
    _View = None
18
0fac6d621a24 Base build mechanism layout.
etisserant
parents: 17
diff changeset
    34
    def _OpenView(self, logger):
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    35
        if not self._View:
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    36
            def _onclose():
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    37
                self.View = None
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    38
            self._View = _NetworkEdit()
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    39
            self._View._onclose = _onclose
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    40
        return self.View
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    41
    PluginMethods = [("NetworkEdit",_OpenView)]
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    42
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    43
    def OnPlugClose(self):
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    44
        if self._View:
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    45
            self._View.Close()
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    46
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    47
    def PlugTestModified(self):
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    48
        return self.HasChanged()
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    49
        
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 15
diff changeset
    50
    def OnPlugSave(self):
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    51
        self.SaveProject()
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    52
        return True
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    53
18
0fac6d621a24 Base build mechanism layout.
etisserant
parents: 17
diff changeset
    54
    def PlugGenerate_C(self, buildpath, current_location, locations, logger):
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    55
        """
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    56
        Generate C code
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    57
        @param current_location: Tupple containing plugin IEC location : %I0.0.4.5 => (0,0,4,5)
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    58
        @param locations: List of complete variables locations \
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    59
            [(IEC_loc, IEC_Direction IEC_Type, Name)]\
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    60
            ex: [((0,0,4,5),'I','X','__IX_0_0_4_5'),...]
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    61
        """
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    62
        prefix = "_".join(map(lambda x:str(x), current_location))
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    63
        Gen_OD_path = os.path.join(buildpath, prefix + "_OD.c" )
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    64
        master = config_utils.GenerateConciseDCF(locations, current_location, self)
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    65
        res = gen_cfile.GenerateFile(Gen_OD_path, master)
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    66
        if res :
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    67
            raise Exception, res
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    68
        
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    69
        return [(Gen_OD_path,CanFestival_OD_CFLAGS)],""
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    70
    
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    71
class RootClass:
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    72
    XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    73
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    74
      <xsd:element name="CanFestivalInstance">
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    75
        <xsd:complexType>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    76
          <xsd:attribute name="CAN_Driver" type="xsd:string" use="required" />
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    77
        </xsd:complexType>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    78
      </xsd:element>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    79
    </xsd:schema>
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    80
    """
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    81
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    82
    PlugChildsTypes = [("CanOpenNode",_NodeListPlug)]
17
ee8cb104dbe0 First commit of Beremiz new version with plugin support
lbessard
parents: 15
diff changeset
    83
    
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    84
    def PlugGenerate_C(self, buildpath, current_location, locations):
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    85
        """
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    86
        Generate C code
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    87
        @param current_location: Tupple containing plugin IEC location : %I0.0.4.5 => (0,0,4,5)
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    88
        @param locations: List of complete variables locations \
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    89
            [(IEC_loc, IEC_Direction IEC_Type, Name)]\
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    90
            ex: [((0,0,4,5),'I','X','__IX_0_0_4_5'),...]
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    91
        """
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    92
        prefix = "_".join(map(lambda x:str(x), current_location))
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    93
        Gen_OD_path = os.path.join(buildpath, prefix + "_OD.c" )
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    94
        master = config_utils.GenerateConciseDCF(locations, self)
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
    95
        res = gen_cfile.GenerateFile(Gen_OD_path, master)
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    96
        if not res:
12
a1f9e514f708 plugin framework organization being defined
etisserant
parents: 11
diff changeset
    97
             s = str(self.BaseParams.BusId)+"_IN(){}\n"
13
f1f0edbeb313 More precise design for plugins.... to be continued...
etisserant
parents: 12
diff changeset
    98
             s += "CanOpen(str(\""+self.CanFestivalNode.CAN_Device+"\")"
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
    99
             f = file(filepath, 'a')
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
   100
             f.write(s)
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
   101
        else:
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
   102
             pass # error
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
   103
         
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
   104
        return [],""
11
75ae893d5eed Adding plugin support in Beremiz
lbessard
parents:
diff changeset
   105
15
7a473efc4530 More precise design for plugins.... to be continued...
etisserant
parents: 13
diff changeset
   106