PLCGenerator.py
author lbessard
Wed, 24 Sep 2008 17:16:40 +0200
changeset 276 cc9c4a7510b4
parent 273 5b18d98aa4f9
child 280 9ca192486f2f
permissions -rw-r--r--
Bug in function generation fixed
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     1
#!/usr/bin/env python
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     3
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     4
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     5
#based on the plcopen standard. 
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     6
#
58
39cd981ff242 Changing file headers
lbessard
parents: 47
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     8
#
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
     9
#See COPYING file for copyrights details.
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    10
#
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
5
f8652b073e84 GPL->LGPL
etisserant
parents: 4
diff changeset
    12
#modify it under the terms of the GNU General Public
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    15
#
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
58
39cd981ff242 Changing file headers
lbessard
parents: 47
diff changeset
    19
#General Public License for more details.
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    20
#
5
f8652b073e84 GPL->LGPL
etisserant
parents: 4
diff changeset
    21
#You should have received a copy of the GNU General Public
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    24
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    25
from plcopen import plcopen
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    26
from plcopen.structures import *
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    27
from types import *
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    28
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    29
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    30
# Dictionary associating PLCOpen variable categories to the corresponding 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    31
# IEC 61131-3 variable categories
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    32
varTypeNames = {"localVars" : "VAR", "tempVars" : "VAR_TEMP", "inputVars" : "VAR_INPUT", 
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    33
                "outputVars" : "VAR_OUTPUT", "inOutVars" : "VAR_IN_OUT", "externalVars" : "VAR_EXTERNAL",
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    34
                "globalVars" : "VAR_GLOBAL", "accessVars" : "VAR_ACCESS"}
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    35
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    36
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    37
# Dictionary associating PLCOpen POU categories to the corresponding 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    38
# IEC 61131-3 POU categories
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
    39
pouTypeNames = {"function" : "FUNCTION", "functionBlock" : "FUNCTION_BLOCK", "program" : "PROGRAM"}
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
    40
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    41
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    42
# Helper function for reindenting text
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    43
def ReIndentText(text, nb_spaces):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    44
    compute = ""
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    45
    lines = text.splitlines()
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    46
    if len(lines) > 0:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    47
        line_num = 0
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    48
        while line_num < len(lines) and len(lines[line_num].strip()) == 0:
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    49
            line_num += 1
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    50
        if line_num < len(lines):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    51
            spaces = 0
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    52
            while lines[line_num][spaces] == " ":
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    53
                spaces += 1
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    54
            indent = ""
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    55
            for i in xrange(spaces, nb_spaces):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    56
                indent += " "
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    57
            for line in lines:
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    58
                if line != "":
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    59
                    compute += "%s%s\n"%(indent, line)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    60
                else:
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    61
                    compute += "\n"
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    62
    return compute
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    63
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    64
def SortInstances(a, b):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    65
    ax, ay = int(a.getx()), int(a.gety())
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    66
    bx, by = int(b.getx()), int(b.gety())
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    67
    if abs(ax - ay) < 10:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    68
        return ax.__cmp__(bx)
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    69
    else:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    70
        return ay.__cmp__(by)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    71
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    72
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    73
#                  Specific exception for PLC generating errors
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    74
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    75
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    76
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    77
class PLCGenException(Exception):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    78
    pass
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    79
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    80
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    81
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    82
#                           Generator of PLC program
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    83
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    84
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    85
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    86
class ProgramGenerator:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    87
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    88
    # Create a new PCL program generator
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    89
    def __init__(self, controler, project):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    90
        # Keep reference of the controler and project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    91
        self.Controler = controler
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    92
        self.Project = project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    93
        # Reset the internal variables used to generate PLC programs
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    94
        self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    95
        self.DatatypeComputed = {}
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    96
        self.PouComputed = {}
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    97
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    98
    # Compute value according to type given
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    99
    def ComputeValue(self, value, var_type):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   100
        base_type = self.Controler.GetBaseType(var_type)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   101
        if base_type == "STRING":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   102
            return "'%s'"%value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   103
        elif base_type == "WSTRING":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   104
            return "\"%s\""%value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   105
        return value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   106
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   107
    # Generate a data type from its name
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   108
    def GenerateDataType(self, datatype_name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   109
        # Verify that data type hasn't been generated yet
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   110
        if not self.DatatypeComputed.get(datatype_name, True):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   111
            # If not mark data type as computed
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   112
            self.DatatypeComputed[datatype_name] = True
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   113
            
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   114
            # Getting datatype model from project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   115
            datatype = self.Project.getdataType(datatype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   116
            tagname = self.Controler.ComputeDataTypeName(datatype.getname())
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   117
            datatype_def = [("  ", ()), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   118
                            (datatype.getname(), (tagname, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   119
                            (" : ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   120
            basetype_content = datatype.baseType.getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   121
            # Data type derived directly from a string type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   122
            if basetype_content["name"] in ["string", "wstring"]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   123
                datatype_def += [(basetype_content["name"].upper(), (tagname, "base"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   124
            # Data type derived directly from a user defined type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   125
            elif basetype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   126
                basetype_name = basetype_content["value"].getname()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   127
                self.GenerateDataType(basetype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   128
                datatype_def += [(basetype_name, (tagname, "base"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   129
            # Data type is a subrange
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   130
            elif basetype_content["name"] in ["subrangeSigned", "subrangeUnsigned"]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   131
                base_type = basetype_content["value"].baseType.getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   132
                # Subrange derived directly from a user defined type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   133
                if base_type["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   134
                    basetype_name = base_type["value"].getname()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   135
                    self.GenerateDataType(basetype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   136
                # Subrange derived directly from an elementary type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   137
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   138
                    basetype_name = base_type["name"]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   139
                min_value = basetype_content["value"].range.getlower()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   140
                max_value = basetype_content["value"].range.getupper()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   141
                datatype_def += [(basetype_name, (tagname, "base")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   142
                                 (" (", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   143
                                 ("%d"%min_value, (tagname, "lower")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   144
                                 ("..", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   145
                                 ("%d"%max_value, (tagname, "upper")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   146
                                 (")",())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   147
            # Data type is an enumerated type
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   148
            elif basetype_content["name"] == "enum":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   149
                values = [[(value.getname(), (tagname, "value", i))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   150
                          for i, value in enumerate(basetype_content["value"].values.getvalue())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   151
                datatype_def += [("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   152
                datatype_def += JoinList([(", ", ())], values)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   153
                datatype_def += [(")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   154
            # Data type is an array
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   155
            elif basetype_content["name"] == "array":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   156
                base_type = basetype_content["value"].baseType.getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   157
                # Array derived directly from a user defined type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   158
                if base_type["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   159
                    basetype_name = base_type["value"].getname()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   160
                    self.GenerateDataType(basetype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   161
                # Array derived directly from a string type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   162
                elif base_type["name"] in ["string", "wstring"]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   163
                    basetype_name = base_type["name"].upper()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   164
                # Array derived directly from an elementary type 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   165
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   166
                    basetype_name = base_type["name"]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   167
                dimensions = [[("%d"%dimension.getlower(), (tagname, "range", i, "lower")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   168
                               ("..", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   169
                               ("%d"%dimension.getupper(), (tagname, "range", i, "upper"))] 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   170
                              for i, dimension in enumerate(basetype_content["value"].getdimension())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   171
                datatype_def += [("ARRAY [", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   172
                datatype_def += JoinList([(",", ())], dimensions)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   173
                datatype_def += [("] OF " , ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   174
                                 (basetype_name, (tagname, "base"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   175
            # Data type derived directly from a elementary type 
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   176
            else:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   177
                datatype_def += [(basetype_content["name"], (tagname, "base"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   178
            # Data type has an initial value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   179
            if datatype.initialValue is not None:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   180
                datatype_def += [(" := ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   181
                                 (self.ComputeValue(datatype.initialValue.getvalue(), datatype_name), (tagname, "initial"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   182
            datatype_def += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   183
            return datatype_def
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   184
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   185
    # Generate a POU from its name
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   186
    def GeneratePouProgram(self, pou_name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   187
        # Verify that POU hasn't been generated yet
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   188
        if not self.PouComputed.get(pou_name, True):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   189
            # If not mark POU as computed
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   190
            self.PouComputed[pou_name] = True
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   191
            
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   192
            # Getting POU model from project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   193
            pou = self.Project.getpou(pou_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   194
            pou_type = pou.getpouType()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   195
            # Verify that POU type exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   196
            if pou_type in pouTypeNames:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   197
                # Create a POU program generator
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   198
                pou_program = PouProgramGenerator(self, pou.getname(), pouTypeNames[pou_type])
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   199
                program = pou_program.GenerateProgram(pou)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   200
                self.Program += program
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   201
            else:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   202
                raise PLCGenException, "Undefined pou type \"%s\""%pou_type
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   203
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   204
    # Generate a configuration from its model
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   205
    def GenerateConfiguration(self, configuration):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   206
        tagname = self.Controler.ComputeConfigurationName(configuration.getname())
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   207
        config = [("\nCONFIGURATION ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   208
                  (configuration.getname(), (tagname, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   209
                  ("\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   210
        var_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   211
        # Generate any global variable in configuration
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   212
        for varlist in configuration.getglobalVars():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   213
            # Generate variable block with modifier
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   214
            config += [("  VAR_GLOBAL", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   215
            if varlist.getretain():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   216
                config += [(" RETAIN", (tagname, "variable", (var_number, var_number + len(varlist.getvariable())), "retain"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   217
            if varlist.getconstant():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   218
                config += [(" CONSTANT", (tagname, "variable", (var_number, var_number + len(varlist.getvariable())), "constant"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   219
            config += [("\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   220
            # Generate any variable of this block
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   221
            for var in varlist.getvariable():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   222
                vartype_content = var.gettype().getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   223
                # Variable type is a user data type
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   224
                if vartype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   225
                    var_type = vartype_content["value"].getname()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   226
                # Variable type is a string type
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   227
                elif vartype_content["name"] in ["string", "wstring"]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   228
                    var_type = vartype_content["name"].upper()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   229
                # Variable type is an elementary type
78
049f2e7090a2 Adding support for adding block types with particular behaviour
lbessard
parents: 72
diff changeset
   230
                else:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   231
                    var_type = vartype_content["name"]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   232
                config += [("    ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   233
                           (var.getname(), (tagname, "variable", var_number, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   234
                           (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   235
                # Generate variable address if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   236
                address = var.getaddress()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   237
                if address:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   238
                    config += [("AT ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
   239
                               (address, (tagname, "variable", var_number, "address")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   240
                               (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   241
                config += [(": ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
   242
                           (var_type, (tagname, "variable", var_number, "type"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   243
                # Generate variable initial value if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   244
                initial = var.getinitialValue()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   245
                if initial:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   246
                    config += [(" := ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
   247
                               (self.ComputeValue(initial.getvalue(), var_type), (tagname, "variable", var_number, "initial"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   248
                config += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   249
                var_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   250
            config += [("  END_VAR\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   251
        # Generate any resource in the configuration
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   252
        for resource in configuration.getresource():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   253
            config += self.GenerateResource(resource, configuration.getname())
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   254
        config += [("END_CONFIGURATION\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   255
        return config
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   256
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   257
    # Generate a resource from its model
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   258
    def GenerateResource(self, resource, config_name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   259
        tagname = self.Controler.ComputeConfigurationResourceName(config_name, resource.getname())
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   260
        resrce = [("\n  RESOURCE ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   261
                  (resource.getname(), (tagname, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   262
                  (" ON PLC\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   263
        var_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   264
        # Generate any global variable in configuration
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   265
        for varlist in resource.getglobalVars():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   266
            # Generate variable block with modifier
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   267
            resrce += [("    VAR_GLOBAL", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   268
            if varlist.getretain():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   269
                resrce += [(" RETAIN", (tagname, "variable", (var_number, var_number + len(varlist.getvariable())), "retain"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   270
            if varlist.getconstant():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   271
                resrce += [(" CONSTANT", (tagname, "variable", (var_number, var_number + len(varlist.getvariable())), "constant"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   272
            resrce += "\n"
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   273
            # Generate any variable of this block
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   274
            for var in varlist.getvariable():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   275
                vartype_content = var.gettype().getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   276
                # Variable type is a user data type
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   277
                if vartype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   278
                    var_type = vartype_content["value"].getname()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   279
                # Variable type is a string type
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   280
                elif vartype_content["name"] in ["string", "wstring"]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   281
                    var_type = vartype_content["name"].upper()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   282
                # Variable type is an elementary type
78
049f2e7090a2 Adding support for adding block types with particular behaviour
lbessard
parents: 72
diff changeset
   283
                else:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   284
                    var_type = vartype_content["name"]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   285
                resrce += [("      ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   286
                           (var.getname(), (tagname, "variable", var_number, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   287
                           (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   288
                address = var.getaddress()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   289
                # Generate variable address if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   290
                if address:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   291
                    resrce += [("AT ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
   292
                               (address, (tagname, "variable", var_number, "address")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   293
                               (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   294
                resrce += [(": ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
   295
                           (var_type, (tagname, "variable", var_number, "type"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   296
                # Generate variable initial value if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   297
                initial = var.getinitialValue()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   298
                if initial:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   299
                    resrce += [(" := ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
   300
                               (self.ComputeValue(initial.getvalue(), var_type), (tagname, "variable", var_number, "initial"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   301
                resrce += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   302
                var_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   303
            resrce += [("    END_VAR\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   304
        # Generate any task in the resource
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   305
        tasks = resource.gettask()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   306
        task_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   307
        for task in tasks:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   308
            # Task declaration
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   309
            resrce += [("    TASK ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   310
                       (task.getname(), (tagname, "task", task_number, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   311
                       ("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   312
            args = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   313
            single = task.getsingle()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   314
            # Single argument if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   315
            if single:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   316
                resrce += [("SINGLE := ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   317
                           (single, (tagname, "task", task_number, "single")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   318
                           (",", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   319
            # Interval argument if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   320
            interval = task.getinterval()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   321
            if interval:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   322
                resrce += [("INTERVAL := t#", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   323
                if interval.hour != 0:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   324
                    resrce += [("%dh"%interval.hour, (tagname, "task", task_number, "interval", "hour"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   325
                if interval.minute != 0:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   326
                    resrce += [("%dm"%interval.minute, (tagname, "task", task_number, "interval", "minute"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   327
                if interval.second != 0:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   328
                    resrce += [("%ds"%interval.second, (tagname, "task", task_number, "interval", "second"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   329
                if interval.microsecond != 0:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   330
                    resrce += [("%dms"%(interval.microsecond / 1000), (tagname, "task", task_number, "interval", "millisecond"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   331
                resrce += [(",", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   332
            # Priority argument
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   333
            resrce += [("PRIORITY := ", ()), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   334
                       ("%d"%task.getpriority(), (tagname, "task", task_number, "priority")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   335
                       (");\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   336
            task_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   337
        instance_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   338
        # Generate any program assign to each task
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   339
        for task in tasks:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   340
            for instance in task.getpouInstance():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   341
                resrce += [("    PROGRAM ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   342
                           (instance.getname(), (tagname, "instance", instance_number, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   343
                           (" WITH ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   344
                           (task.getname(), (tagname, "instance", instance_number, "task")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   345
                           (" : ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   346
                           (instance.gettype(), (tagname, "instance", instance_number, "type")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   347
                           (";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   348
                instance_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   349
        # Generate any program assign to no task
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   350
        for instance in resource.getpouInstance():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   351
            resrce += [("    PROGRAM ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   352
                           (instance.getname(), (tagname, "instance", instance_number, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   353
                           (" : ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   354
                           (instance.gettype(), (tagname, "instance", instance_number, "type")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   355
                           (";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   356
            instance_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   357
        resrce += [("  END_RESOURCE\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   358
        return resrce
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   359
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   360
    # Generate the entire program for current project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   361
    def GenerateProgram(self):        
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   362
        # Find all data types defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   363
        for datatype in self.Project.getdataTypes():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   364
            self.DatatypeComputed[datatype.getname()] = False
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   365
        # Find all data types defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   366
        for pou in self.Project.getpous():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   367
            self.PouComputed[pou.getname()] = False
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   368
        # Generate data type declaration structure if there is at least one data 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   369
        # type defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   370
        if len(self.DatatypeComputed) > 0:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   371
            self.Program += [("TYPE\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   372
            # Generate every data types defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   373
            for datatype_name in self.DatatypeComputed.keys():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   374
                self.Program += self.GenerateDataType(datatype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   375
            self.Program += [("END_TYPE\n\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   376
        # Generate every POUs defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   377
        for pou_name in self.PouComputed.keys():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   378
            self.GeneratePouProgram(pou_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   379
        # Generate every configurations defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   380
        for config in self.Project.getconfigurations():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   381
            self.Program += self.GenerateConfiguration(config)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   382
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   383
    # Return generated program
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   384
    def GetGeneratedProgram(self):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   385
        return self.Program
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   386
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   387
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   388
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   389
#                           Generator of POU programs
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   390
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   391
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   392
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   393
class PouProgramGenerator:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   394
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   395
    # Create a new POU program generator
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   396
    def __init__(self, parent, name, type):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   397
        # Keep Reference to the parent generator
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   398
        self.ParentGenerator = parent
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   399
        self.Name = name
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   400
        self.Type = type
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   401
        self.TagName = self.ParentGenerator.Controler.ComputePouName(name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   402
        self.CurrentIndent = "  "
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   403
        self.ReturnType = None
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   404
        self.Interface = []
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   405
        self.InitialSteps = []
72
73212220ad22 Adding support for generating FBD with connectors and continuations
lbessard
parents: 71
diff changeset
   406
        self.ComputedBlocks = {}
73212220ad22 Adding support for generating FBD with connectors and continuations
lbessard
parents: 71
diff changeset
   407
        self.ComputedConnectors = {}
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   408
        self.ConnectionTypes = {}
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   409
        self.RelatedConnections = []
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   410
        self.SFCNetworks = {"Steps":{}, "Transitions":{}, "Actions":{}}
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   411
        self.SFCComputedBlocks = []
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   412
        self.ActionNumber = 0
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   413
        self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   414
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   415
    def GetBlockType(self, type):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   416
        return self.ParentGenerator.Controler.GetBlockType(type)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   417
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   418
    def IndentLeft(self):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   419
        if len(self.CurrentIndent) >= 2:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   420
            self.CurrentIndent = self.CurrentIndent[:-2]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   421
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   422
    def IndentRight(self):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   423
        self.CurrentIndent += "  "
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   424
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   425
    # Generator of unique ID for inline actions
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   426
    def GetActionNumber(self):
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   427
        self.ActionNumber += 1
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   428
        return self.ActionNumber
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   429
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   430
    # Test if a variable has already been defined
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   431
    def IsAlreadyDefined(self, name):
33
0dd4a876392f Bugs on ST generation fixed
lbessard
parents: 31
diff changeset
   432
        for list_type, retain, constant, located, vars in self.Interface:
30
768cf2a6b0b1 Bug on ressource generation fixed
lbessard
parents: 29
diff changeset
   433
            for var_type, var_name, var_address, var_initial in vars:
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   434
                if name == var_name:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   435
                    return True
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   436
        return False
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   437
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   438
    # Return the type of a variable defined in interface
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   439
    def GetVariableType(self, name):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   440
        for list_type, retain, constant, located, vars in self.Interface:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   441
            for var_type, var_name, var_address, var_initial in vars:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   442
                if name == var_name:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   443
                    return var_type
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   444
        return None
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   445
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   446
    # Return connectors linked by a connection to the given connector
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   447
    def GetConnectedConnector(self, connector, body):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   448
        links = connector.getconnections()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   449
        if links and len(links) == 1:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   450
            return self.GetLinkedConnector(links[0], body)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   451
        return None        
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   452
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   453
    def GetLinkedConnector(self, link, body):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   454
        parameter = link.getformalParameter()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   455
        instance = body.getcontentInstance(link.getrefLocalId())
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   456
        if isinstance(instance, (plcopen.fbdObjects_inVariable, plcopen.fbdObjects_inOutVariable, plcopen.commonObjects_continuation, plcopen.ldObjects_contact, plcopen.ldObjects_coil)):
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   457
            return instance.connectionPointOut
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   458
        elif isinstance(instance, plcopen.fbdObjects_block):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   459
            outputvariables = instance.outputVariables.getvariable()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   460
            if len(outputvariables) == 1:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   461
                return outputvariables[0].connectionPointOut
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   462
            elif parameter:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   463
                for variable in outputvariables:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   464
                    if variable.getformalParameter() == parameter:
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   465
                        return variable.connectionPointOut
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   466
            else:
276
cc9c4a7510b4 Bug in function generation fixed
lbessard
parents: 273
diff changeset
   467
                point = link.getposition()[-1]
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   468
                for variable in outputvariables:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   469
                    relposition = variable.connectionPointOut.getrelPositionXY()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   470
                    blockposition = instance.getposition()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   471
                    if point.x == blockposition.x + relposition[0] and point.y == blockposition.y + relposition[1]:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   472
                        return variable.connectionPointOut
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   473
        elif isinstance(instance, plcopen.ldObjects_leftPowerRail):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   474
            outputconnections = instance.getconnectionPointOut()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   475
            if len(outputconnections) == 1:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   476
                return outputconnections[0]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   477
            else:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   478
                point = link.getposition()[-1]
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   479
                for outputconnection in outputconnections:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   480
                    relposition = outputconnection.getrelPositionXY()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   481
                    powerrailposition = instance.getposition()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   482
                    if point.x == powerrailposition.x + relposition[0] and point.y == powerrailposition.y + relposition[1]:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   483
                        return outputconnection
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   484
        return None
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   485
        
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   486
    def ExtractRelatedConnections(self, connection):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   487
        for i, related in enumerate(self.RelatedConnections):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   488
            if connection in related:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   489
                return self.RelatedConnections.pop(i)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   490
        return [connection]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   491
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   492
    def ComputeInterface(self, pou):
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   493
        interface = pou.getinterface()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   494
        if interface is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   495
            body = pou.getbody()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   496
            body_content = body.getcontent()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   497
            if self.Type == "FUNCTION":
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   498
                returntype_content = interface.getreturnType().getcontent()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   499
                if returntype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   500
                    self.ReturnType = returntype_content["value"].getname()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   501
                elif returntype_content["name"] in ["string", "wstring"]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   502
                    self.ReturnType = returntype_content["name"].upper()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   503
                else:
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   504
                    self.ReturnType = returntype_content["name"]
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   505
            for varlist in interface.getcontent():
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   506
                variables = []
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   507
                located = []
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   508
                for var in varlist["value"].getvariable():
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   509
                    vartype_content = var.gettype().getcontent()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   510
                    if vartype_content["name"] == "derived":
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   511
                        var_type = vartype_content["value"].getname()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   512
                        blocktype = self.GetBlockType(var_type)
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   513
                        if blocktype is not None:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   514
                            self.ParentGenerator.GeneratePouProgram(var_type)
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   515
                            if body_content["name"] in ["FBD", "LD", "SFC"]:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   516
                                block = pou.getinstanceByName(var.getname())
191
d77f9b783ce8 Bug with located variables generated by Beremiz svgui plugin fixed
lbessard
parents: 189
diff changeset
   517
                            else:
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   518
                                block = None
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   519
                            for variable in blocktype["initialise"](var_type, var.getname(), block):
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   520
                                if variable[2] is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   521
                                    located.append(variable)
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   522
                                else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   523
                                    variables.append(variable)
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   524
                        else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   525
                            initial = var.getinitialValue()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   526
                            if initial:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   527
                                initial_value = initial.getvalue()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   528
                            else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   529
                                initial_value = None
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   530
                            address = var.getaddress()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   531
                            if address is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   532
                                located.append((vartype_content["value"].getname(), var.getname(), address, initial_value))
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   533
                            else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   534
                                variables.append((vartype_content["value"].getname(), var.getname(), None, initial_value))
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   535
                    else:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   536
                        initial = var.getinitialValue()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   537
                        if initial:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   538
                            initial_value = initial.getvalue()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   539
                        else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   540
                            initial_value = None
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   541
                        address = var.getaddress()
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   542
                        if vartype_content["name"] in ["string", "wstring"]:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   543
                            if address is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   544
                                located.append((vartype_content["name"].upper(), var.getname(), address, initial_value))
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   545
                            else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   546
                                variables.append((vartype_content["name"].upper(), var.getname(), None, initial_value))
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   547
                        elif address is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   548
                            located.append((vartype_content["name"], var.getname(), address, initial_value))
191
d77f9b783ce8 Bug with located variables generated by Beremiz svgui plugin fixed
lbessard
parents: 189
diff changeset
   549
                        else:
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   550
                            variables.append((vartype_content["name"], var.getname(), None, initial_value))
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   551
                if len(variables) > 0:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   552
                    self.Interface.append((varTypeNames[varlist["name"]], varlist["value"].getretain(), 
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   553
                                varlist["value"].getconstant(), False, variables))
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   554
                if len(located) > 0:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   555
                    self.Interface.append((varTypeNames[varlist["name"]], varlist["value"].getretain(), 
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   556
                                varlist["value"].getconstant(), True, located))
191
d77f9b783ce8 Bug with located variables generated by Beremiz svgui plugin fixed
lbessard
parents: 189
diff changeset
   557
        
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   558
    def ComputeConnectionTypes(self, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   559
        body = pou.getbody()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   560
        body_content = body.getcontent()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   561
        body_type = body_content["name"]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   562
        if body_type in ["FBD", "LD", "SFC"]:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   563
            for instance in body.getcontentInstances():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   564
                if isinstance(instance, (plcopen.fbdObjects_inVariable, plcopen.fbdObjects_outVariable, plcopen.fbdObjects_inOutVariable)):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   565
                    expression = instance.getexpression()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   566
                    var_type = self.GetVariableType(expression)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   567
                    if expression == pou.getname():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   568
                        returntype_content = pou.interface.getreturnType().getcontent()
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   569
                        if returntype_content["name"] == "derived":
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   570
                            var_type = returntype_content["value"].getname()
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   571
                        elif returntype_content["name"] in ["string", "wstring"]:
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   572
                            var_type = returntype_content["name"].upper()
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   573
                        else:
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   574
                            var_type = returntype_content["name"]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   575
                    elif var_type is None:
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   576
                        parts = expression.split("#")
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   577
                        if len(parts) > 1:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   578
                            var_type = parts[0]
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   579
                    if var_type is not None:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   580
                        if isinstance(instance, (plcopen.fbdObjects_inVariable, plcopen.fbdObjects_inOutVariable)):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   581
                            for connection in self.ExtractRelatedConnections(instance.connectionPointOut):
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   582
                                self.ConnectionTypes[connection] = var_type
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   583
                        if isinstance(instance, (plcopen.fbdObjects_outVariable, plcopen.fbdObjects_inOutVariable)):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   584
                            self.ConnectionTypes[instance.connectionPointIn] = var_type
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   585
                            connected = self.GetConnectedConnector(instance.connectionPointIn, body)
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   586
                            if connected and connected not in self.ConnectionTypes:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   587
                                for connection in self.ExtractRelatedConnections(connected):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   588
                                    self.ConnectionTypes[connection] = var_type
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   589
                elif isinstance(instance, (plcopen.ldObjects_contact, plcopen.ldObjects_coil)):
208
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   590
                    for connection in self.ExtractRelatedConnections(instance.connectionPointOut):
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   591
                        self.ConnectionTypes[connection] = "BOOL"
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   592
                    self.ConnectionTypes[instance.connectionPointIn] = "BOOL"
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   593
                    connected = self.GetConnectedConnector(instance.connectionPointIn, body)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   594
                    if connected and connected not in self.ConnectionTypes:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   595
                        for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   596
                            self.ConnectionTypes[connection] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   597
                elif isinstance(instance, plcopen.ldObjects_leftPowerRail):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   598
                    for connection in instance.getconnectionPointOut():
208
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   599
                        for related in self.ExtractRelatedConnections(connection):
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   600
                            self.ConnectionTypes[related] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   601
                elif isinstance(instance, plcopen.ldObjects_rightPowerRail):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   602
                    for connection in instance.getconnectionPointIn():
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   603
                        self.ConnectionTypes[connection] = "BOOL"
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   604
                        connected = self.GetConnectedConnector(connection, body)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   605
                        if connected and connected not in self.ConnectionTypes:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   606
                            for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   607
                                self.ConnectionTypes[connection] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   608
                elif isinstance(instance, plcopen.sfcObjects_transition):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   609
                    content = instance.condition.getcontent()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   610
                    if content["name"] == "connection" and len(content["value"]) == 1:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   611
                        connected = self.GetLinkedConnector(content["value"][0], body)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   612
                        if connected and connected not in self.ConnectionTypes:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   613
                            for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   614
                                self.ConnectionTypes[connection] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   615
                elif isinstance(instance, plcopen.fbdObjects_block):
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   616
                    block_infos = self.GetBlockType(instance.gettypeName())
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   617
                    undefined = {}
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   618
                    for variable in instance.outputVariables.getvariable():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   619
                        output_name = variable.getformalParameter()
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   620
                        if output_name == "ENO":
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   621
                            for connection in self.ExtractRelatedConnections(variable.connectionPointOut):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   622
                                self.ConnectionTypes[connection] = "BOOL"
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   623
                        else:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   624
                            for oname, otype, oqualifier in block_infos["outputs"]:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   625
                                if output_name == oname and variable.connectionPointOut not in self.ConnectionTypes:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   626
                                    if otype.startswith("ANY"):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   627
                                        if otype not in undefined:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   628
                                            undefined[otype] = []
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   629
                                        undefined[otype].append(variable.connectionPointOut)
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   630
                                    else:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   631
                                        for connection in self.ExtractRelatedConnections(variable.connectionPointOut):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   632
                                            self.ConnectionTypes[connection] = otype
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   633
                    for variable in instance.inputVariables.getvariable():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   634
                        input_name = variable.getformalParameter()
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   635
                        if input_name == "EN":
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   636
                            for connection in self.ExtractRelatedConnections(variable.connectionPointIn):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   637
                                self.ConnectionTypes[connection] = "BOOL"
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   638
                        for iname, itype, iqualifier in block_infos["inputs"]:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   639
                            if input_name == iname:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   640
                                connected = self.GetConnectedConnector(variable.connectionPointIn, body)
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   641
                                if itype.startswith("ANY"):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   642
                                    if itype not in undefined:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   643
                                        undefined[itype] = []
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   644
                                    undefined[itype].append(variable.connectionPointIn)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   645
                                    if connected:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   646
                                        undefined[itype].append(connected)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   647
                                else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   648
                                    self.ConnectionTypes[variable.connectionPointIn] = itype
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   649
                                    if connected and connected not in self.ConnectionTypes:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   650
                                        for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   651
                                            self.ConnectionTypes[connection] = itype
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   652
                    for var_type, connections in undefined.items():
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   653
                        related = []
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   654
                        for connection in connections:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   655
                            if connection in self.ConnectionTypes:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   656
                                var_type = self.ConnectionTypes[connection]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   657
                            else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   658
                                related.extend(self.ExtractRelatedConnections(connection))
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   659
                        if var_type.startswith("ANY") and len(related) > 0:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   660
                            self.RelatedConnections.append(related)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   661
                        else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   662
                            for connection in related:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   663
                                self.ConnectionTypes[connection] = var_type
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   664
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   665
    def ComputeProgram(self, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   666
        body = pou.getbody()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   667
        body_content = body.getcontent()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   668
        body_type = body_content["name"]
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   669
        if body_type in ["IL","ST"]:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   670
            self.Program = [(ReIndentText(body_content["value"].gettext(), len(self.CurrentIndent)), 
228
da7ddaf27cca Bug with indentation in textual languages while error display fixed
lbessard
parents: 227
diff changeset
   671
                            (self.TagName, "body", len(self.CurrentIndent)))]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   672
        elif body_type == "SFC":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   673
            self.IndentRight()
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   674
            for instance in body.getcontentInstances():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   675
                if isinstance(instance, plcopen.sfcObjects_step):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   676
                    self.GenerateSFCStep(instance, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   677
                elif isinstance(instance, plcopen.commonObjects_actionBlock):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   678
                    self.GenerateSFCStepActions(instance, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   679
                elif isinstance(instance, plcopen.sfcObjects_transition):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   680
                    self.GenerateSFCTransition(instance, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   681
                elif isinstance(instance, plcopen.sfcObjects_jumpStep):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   682
                    self.GenerateSFCJump(instance, pou)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   683
            if len(self.InitialSteps) > 0 and len(self.SFCComputedBlocks) > 0:
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   684
                action_name = "COMPUTE_FUNCTION_BLOCKS"
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   685
                action_infos = {"qualifier" : "S", "content" : action_name}
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   686
                self.SFCNetworks["Steps"][self.InitialSteps[0]]["actions"].append(action_infos)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   687
                self.SFCNetworks["Actions"][action_name] = (self.SFCComputedBlocks, ())
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   688
                self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   689
            self.IndentLeft()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   690
            for initialstep in self.InitialSteps:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   691
                self.ComputeSFCStep(initialstep)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   692
        else:
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   693
            otherInstances = {"outVariables&coils" : [], "blocks" : [], "connectors" : []}
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   694
            orderedInstances = []
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   695
            for instance in body.getcontentInstances():
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   696
                if isinstance(instance, (plcopen.fbdObjects_outVariable, plcopen.fbdObjects_inOutVariable, plcopen.fbdObjects_block)):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   697
                    executionOrderId = instance.getexecutionOrderId()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   698
                    if executionOrderId > 0:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   699
                        orderedInstances.append((executionOrderId, instance))
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   700
                    elif isinstance(instance, (plcopen.fbdObjects_outVariable, plcopen.fbdObjects_inOutVariable)):
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   701
                        otherInstances["outVariables&coils"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   702
                    elif isinstance(instance, plcopen.fbdObjects_block):
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   703
                        otherInstances["blocks"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   704
                elif isinstance(instance, plcopen.commonObjects_connector):
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   705
                    otherInstances["connectors"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   706
                elif isinstance(instance, plcopen.ldObjects_coil):
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   707
                    otherInstances["outVariables&coils"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   708
            orderedInstances.sort()
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   709
            otherInstances["outVariables&coils"].sort(SortInstances)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   710
            instances = [instance for (executionOrderId, instance) in orderedInstances]
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   711
            instances.extend(otherInstances["connectors"] + otherInstances["outVariables&coils"] + otherInstances["blocks"])
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   712
            for instance in instances:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   713
                if isinstance(instance, (plcopen.fbdObjects_outVariable, plcopen.fbdObjects_inOutVariable)):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   714
                    connections = instance.connectionPointIn.getconnections()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   715
                    if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   716
                        expression = self.ComputeExpression(body, connections)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   717
                        self.Program += [(self.CurrentIndent, ()),
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   718
                                         (instance.getexpression(), (self.TagName, "io_variable", instance.getlocalId(), "expression")),
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   719
                                         (" := ", ())]
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   720
                        self.Program += expression
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   721
                        self.Program += [(";\n", ())]
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   722
                elif isinstance(instance, plcopen.fbdObjects_block):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   723
                    block_type = instance.gettypeName()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   724
                    self.ParentGenerator.GeneratePouProgram(block_type)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   725
                    block_infos = self.GetBlockType(block_type)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   726
                    block_infos["generate"](self, instance, body, None)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   727
                elif isinstance(instance, plcopen.commonObjects_connector):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   728
                    connector = instance.getname()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   729
                    if self.ComputedConnectors.get(connector, None):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   730
                        continue 
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   731
                    self.ComputedConnectors[connector] = self.ComputeExpression(body, instance.connectionPointIn.getconnections())
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   732
                elif isinstance(instance, plcopen.ldObjects_coil):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   733
                    connections = instance.connectionPointIn.getconnections()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   734
                    if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   735
                        coil_info = (self.TagName, "coil", instance.getlocalId())
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   736
                        expression = self.ExtractModifier(instance, self.ComputeExpression(body, connections), coil_info)
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   737
                        self.Program += [(self.CurrentIndent, ())]
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   738
                        self.Program += [(instance.getvariable(), coil_info + ("reference",))]
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   739
                        self.Program += [(" := ", ())] + expression + [(";\n", ())]
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   740
                        
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   741
    def FactorizePaths(self, paths):
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   742
        same_paths = {}
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   743
        uncomputed_index = range(len(paths))
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   744
        factorized_paths = []
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   745
        for num, path in enumerate(paths):
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   746
            if type(path) == ListType:
273
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   747
                if len(path) > 1:
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   748
                    str_path = str(path[-1:])
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   749
                    same_paths.setdefault(str_path, [])
273
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   750
                    same_paths[str_path].append((path[:-1], num))
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   751
            else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   752
                factorized_paths.append(path)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   753
                uncomputed_index.remove(num)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   754
        for same_path, elements in same_paths.items():
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   755
            if len(elements) > 1:
273
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   756
                elements_paths = self.FactorizePaths([path for path, num in elements])
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   757
                if len(elements_paths) > 1:
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   758
                    factorized_paths.append([tuple(elements_paths)] + eval(same_path))        
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   759
                else:
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   760
                    factorized_paths.append(elements_paths + eval(same_path))
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   761
                for path, num in elements:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   762
                    uncomputed_index.remove(num)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   763
        for num in uncomputed_index:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   764
            factorized_paths.append(paths[num])
244
05f6e0d7710c Adding sort in LD factorized paths to avoid combination problem
lbessard
parents: 242
diff changeset
   765
        factorized_paths.sort()
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   766
        return factorized_paths
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   767
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   768
    def GeneratePaths(self, connections, body, order = False):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   769
        paths = []
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   770
        for connection in connections:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   771
            localId = connection.getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   772
            next = body.getcontentInstance(localId)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   773
            if isinstance(next, plcopen.ldObjects_leftPowerRail):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   774
                paths.append(None)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   775
            elif isinstance(next, (plcopen.fbdObjects_inVariable, plcopen.fbdObjects_inOutVariable)):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   776
                paths.append(str([(next.getexpression(), (self.TagName, "io_variable", localId, "expression"))]))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   777
            elif isinstance(next, plcopen.fbdObjects_block):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   778
                block_type = next.gettypeName()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   779
                self.ParentGenerator.GeneratePouProgram(block_type)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   780
                block_infos = self.GetBlockType(block_type)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   781
                paths.append(str(block_infos["generate"](self, next, body, connection, order)))
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   782
            elif isinstance(next, plcopen.commonObjects_continuation):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   783
                name = next.getname()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   784
                computed_value = self.ComputedConnectors.get(name, None)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   785
                if computed_value != None:
257
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   786
                    paths.append(str(computed_value))
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   787
                else:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   788
                    connector = None
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   789
                    for instance in body.getcontentInstances():
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   790
                        if isinstance(instance, plcopen.commonObjects_connector) and instance.getname() == name:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   791
                            if connector is not None:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   792
                                raise PLCGenException, "More than one connector found corresponding to \"%s\" continuation in \"%s\" POU"%(name, self.Name)
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   793
                            connector = instance
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   794
                    if connector is not None:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   795
                        connections = connector.connectionPointIn.getconnections()
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   796
                        if connections is not None:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   797
                            expression = self.ComputeExpression(body, connections, order)
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   798
                            self.ComputedConnectors[name] = expression
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   799
                            paths.append(str(expression))
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   800
                    else:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   801
                        raise PLCGenException, "No connector found corresponding to \"%s\" continuation in \"%s\" POU"%(name, self.Name)
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   802
            elif isinstance(next, plcopen.ldObjects_contact):
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   803
                contact_info = (self.TagName, "contact", next.getlocalId())
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   804
                variable = str(self.ExtractModifier(next, [(next.getvariable(), contact_info + ("reference",))], contact_info))
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   805
                result = self.GeneratePaths(next.connectionPointIn.getconnections(), body, order)
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   806
                if len(result) > 1:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   807
                    factorized_paths = self.FactorizePaths(result)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   808
                    if len(factorized_paths) > 1:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   809
                        paths.append([variable, tuple(factorized_paths)])
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   810
                    else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   811
                        paths.append([variable] + factorized_paths)
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   812
                elif type(result[0]) == ListType:
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   813
                    paths.append([variable] + result[0])
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   814
                elif result[0] is not None:
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   815
                    paths.append([variable, result[0]])
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   816
                else:
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   817
                    paths.append(variable)
257
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   818
            elif isinstance(next, plcopen.ldObjects_coil):
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   819
                paths.append(str(self.GeneratePaths(next.connectionPointIn.getconnections(), body, order)))
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   820
        return paths
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   821
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   822
    def ComputePaths(self, paths, first = False):
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   823
        if type(paths) == TupleType:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   824
            if None in paths:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   825
                return [("TRUE", ())]
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   826
            else:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   827
                vars = [self.ComputePaths(path) for path in paths]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   828
                if first:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   829
                    return JoinList([(" OR ", ())], vars)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   830
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   831
                    return [("(", ())] + JoinList([(" OR ", ())], vars) + [(")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   832
        elif type(paths) == ListType:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   833
            vars = [self.ComputePaths(path) for path in paths]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   834
            return JoinList([(" AND ", ())], vars)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   835
        else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   836
            return eval(paths)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   837
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   838
    def ComputeExpression(self, body, connections, order = False):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   839
        paths = self.GeneratePaths(connections, body, order)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   840
        if len(paths) > 1:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   841
            factorized_paths = self.FactorizePaths(paths)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   842
            if len(factorized_paths) > 1:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   843
                paths = tuple(factorized_paths)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   844
            else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   845
                paths = factorized_paths[0]
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   846
        else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   847
            paths = paths[0]
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   848
        return self.ComputePaths(paths, True)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   849
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   850
    def ExtractModifier(self, variable, expression, var_info):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   851
        if variable.getnegated():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   852
            return [("NOT(", var_info + ("negated",))] + expression + [(")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   853
        else:
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   854
            storage = variable.getstorage()
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   855
            if storage in ["set", "reset"]:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   856
                self.Program += [(self.CurrentIndent + "IF ", var_info + (storage,))] + expression
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   857
                self.Program += [(" THEN\n  ", ())]
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   858
                if storage == "set":
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   859
                    return [("TRUE;\n" + self.CurrentIndent + "END_IF", ())]
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   860
                else:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   861
                    return [("FALSE;\n" + self.CurrentIndent + "END_IF", ())]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   862
            edge = variable.getedge()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   863
            if edge == "rising":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   864
                return self.AddTrigger("R_TRIG", expression, var_info + ("rising",))
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   865
            elif edge == "falling":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   866
                return self.AddTrigger("F_TRIG", expression, var_info + ("falling",))
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   867
        return expression
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   868
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   869
    def AddTrigger(self, edge, expression, var_info):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   870
        if self.Interface[-1][0] != "VAR" or self.Interface[-1][1] or self.Interface[-1][2] or self.Interface[-1][3]:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   871
            self.Interface.append(("VAR", False, False, False, []))
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   872
        i = 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   873
        name = "%s%d"%(edge, i)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   874
        while self.IsAlreadyDefined(name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   875
            i += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   876
            name = "%s%d"%(edge, i)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   877
        self.Interface[-1][4].append((edge, name, None, None))
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   878
        self.Program += [(self.CurrentIndent, ()), (name, var_info), ("(CLK := ", ())] 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   879
        self.Program += expression
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   880
        self.Program += [(");\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   881
        return [("%s.Q"%name, var_info)]
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   882
    
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   883
    def ExtractDivergenceInput(self, divergence, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   884
        connectionPointIn = divergence.getconnectionPointIn()
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   885
        if connectionPointIn:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   886
            connections = connectionPointIn.getconnections()
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
   887
            if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   888
                instanceLocalId = connections[0].getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   889
                return pou.body.getcontentInstance(instanceLocalId)
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   890
        return None
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   891
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   892
    def ExtractConvergenceInputs(self, convergence, pou):
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   893
        instances = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   894
        for connectionPointIn in convergence.getconnectionPointIn():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   895
            connections = connectionPointIn.getconnections()
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   896
            if len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   897
                instanceLocalId = connections[0].getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   898
                instances.append(pou.body.getcontentInstance(instanceLocalId))
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   899
        return instances
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   900
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   901
    def GenerateSFCStep(self, step, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   902
        step_name = step.getname()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   903
        if step_name not in self.SFCNetworks["Steps"].keys():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   904
            if step.getinitialStep():
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   905
                self.InitialSteps.append(step_name)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   906
            step_infos = {"id" : step.getlocalId(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   907
                          "initial" : step.getinitialStep(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   908
                          "transitions" : [], 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   909
                          "actions" : []}
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   910
            if step.connectionPointIn:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   911
                instances = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   912
                connections = step.connectionPointIn.getconnections()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   913
                if len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   914
                    instanceLocalId = connections[0].getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   915
                    instance = pou.body.getcontentInstance(instanceLocalId)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   916
                    if isinstance(instance, plcopen.sfcObjects_transition):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   917
                        instances.append(instance)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   918
                    elif isinstance(instance, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   919
                        instances.extend(self.ExtractConvergenceInputs(instance, pou))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   920
                    elif isinstance(instance, plcopen.sfcObjects_simultaneousDivergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   921
                        transition = self.ExtractDivergenceInput(instance, pou)
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   922
                        if transition:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   923
                            if isinstance(transition, plcopen.sfcObjects_transition):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   924
                                instances.append(transition)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   925
                            elif isinstance(transition, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   926
                                instances.extend(self.ExtractConvergenceInputs(transition, pou))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   927
                for instance in instances:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   928
                    self.GenerateSFCTransition(instance, pou)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   929
                    if instance in self.SFCNetworks["Transitions"].keys():
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   930
                        target_info = (self.TagName, "transition", instance.getlocalId(), "to", step_infos["id"])
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   931
                        self.SFCNetworks["Transitions"][instance]["to"].append([(step_name, target_info)])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   932
            self.SFCNetworks["Steps"][step_name] = step_infos
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   933
    
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   934
    def GenerateSFCJump(self, jump, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   935
        jump_target = jump.gettargetName()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   936
        if jump.connectionPointIn:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   937
            instances = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   938
            connections = jump.connectionPointIn.getconnections()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   939
            if len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   940
                instanceLocalId = connections[0].getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   941
                instance = pou.body.getcontentInstance(instanceLocalId)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   942
                if isinstance(instance, plcopen.sfcObjects_transition):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   943
                    instances.append(instance)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   944
                elif isinstance(instance, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   945
                    instances.extend(self.ExtractConvergenceInputs(instance, pou))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   946
                elif isinstance(instance, plcopen.sfcObjects_simultaneousDivergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   947
                    transition = self.ExtractDivergenceInput(instance, pou)
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   948
                    if transition:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   949
                        if isinstance(transition, plcopen.sfcObjects_transition):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   950
                            instances.append(transition)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   951
                        elif isinstance(transition, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   952
                            instances.extend(self.ExtractConvergenceInputs(transition, pou))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   953
            for instance in instances:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
   954
                self.GenerateSFCTransition(instance, pou)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   955
                if instance in self.SFCNetworks["Transitions"].keys():
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   956
                    target_info = (self.TagName, "jump", jump.getlocalId(), "target")
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   957
                    self.SFCNetworks["Transitions"][instance]["to"].append([(jump_target, target_info)])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   958
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   959
    def GenerateSFCStepActions(self, actionBlock, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   960
        connections = actionBlock.connectionPointIn.getconnections()
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
   961
        if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   962
            stepLocalId = connections[0].getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   963
            step = pou.body.getcontentInstance(stepLocalId)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   964
            self.GenerateSFCStep(step, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   965
            step_name = step.getname()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   966
            if step_name in self.SFCNetworks["Steps"].keys():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   967
                actions = actionBlock.getactions()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   968
                for i, action in enumerate(actions):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   969
                    action_infos = {"id" : actionBlock.getlocalId(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   970
                                    "qualifier" : action["qualifier"], 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   971
                                    "content" : action["value"],
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   972
                                    "num" : i}
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   973
                    if "duration" in action:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   974
                        action_infos["duration"] = action["duration"]
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   975
                    if "indicator" in action:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   976
                        action_infos["indicator"] = action["indicator"]
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   977
                    if action["type"] == "reference":
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   978
                        self.GenerateSFCAction(action["value"], pou)
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   979
                    else:
168
fb500cc79164 Adding support for structure variable list generation module in matiec
lbessard
parents: 151
diff changeset
   980
                        action_name = "%s_INLINE%d"%(step_name.upper(), self.GetActionNumber())
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   981
                        self.SFCNetworks["Actions"][action_name] = ([(self.CurrentIndent, ()), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   982
                            (action["value"], (self.TagName, "action_block", action_infos["id"], "action", i, "inline")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   983
                            ("\n", ())], ())
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   984
                        action_infos["content"] = action_name
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   985
                    self.SFCNetworks["Steps"][step_name]["actions"].append(action_infos)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   986
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   987
    def GenerateSFCAction(self, action_name, pou):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   988
        if action_name not in self.SFCNetworks["Actions"].keys():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   989
            actionContent = pou.getaction(action_name)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   990
            if actionContent:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   991
                previous_tagname = self.TagName
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   992
                self.TagName = self.ParentGenerator.Controler.ComputePouActionName(self.Name, action_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   993
                self.ComputeProgram(actionContent)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   994
                self.SFCNetworks["Actions"][action_name] = (self.Program, (self.TagName, "name"))
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   995
                self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   996
                self.TagName = previous_tagname
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   997
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   998
    def GenerateSFCTransition(self, transition, pou):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   999
        if transition not in self.SFCNetworks["Transitions"].keys():
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1000
            steps = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1001
            connections = transition.connectionPointIn.getconnections()
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1002
            if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1003
                instanceLocalId = connections[0].getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1004
                instance = pou.body.getcontentInstance(instanceLocalId)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1005
                if isinstance(instance, plcopen.sfcObjects_step):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1006
                    steps.append(instance)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1007
                elif isinstance(instance, plcopen.sfcObjects_selectionDivergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1008
                    step = self.ExtractDivergenceInput(instance, pou)
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1009
                    if step:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1010
                        if isinstance(step, plcopen.sfcObjects_step):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1011
                            steps.append(step)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1012
                        elif isinstance(step, plcopen.sfcObjects_simultaneousConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1013
                            steps.extend(self.ExtractConvergenceInputs(step, pou))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1014
                elif isinstance(instance, plcopen.sfcObjects_simultaneousConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1015
                    steps.extend(self.ExtractConvergenceInputs(instance, pou))
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1016
            transition_infos = {"id" : transition.getlocalId(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1017
                                "priority": transition.getpriority(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1018
                                "from": [], 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1019
                                "to" : []}
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1020
            transitionValues = transition.getconditionContent()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1021
            if transitionValues["type"] == "inline":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1022
                transition_infos["content"] = [("\n%s:= "%self.CurrentIndent, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1023
                                               (transitionValues["value"], (self.TagName, "transition", transition.getlocalId(), "inline")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1024
                                               (";\n", ())]
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
  1025
            elif transitionValues["type"] == "reference":
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1026
                transitionContent = pou.gettransition(transitionValues["value"])
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1027
                transitionType = transitionContent.getbodyType()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1028
                transitionBody = transitionContent.getbody()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1029
                previous_tagname = self.TagName
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1030
                self.TagName = self.ParentGenerator.Controler.ComputePouTransitionName(self.Name, transitionValues["value"])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1031
                if transitionType == "IL":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1032
                    transition_infos["content"] = [(":\n", ()),
228
da7ddaf27cca Bug with indentation in textual languages while error display fixed
lbessard
parents: 227
diff changeset
  1033
                                                   (ReIndentText(transitionBody.gettext(), len(self.CurrentIndent)), (self.TagName, "body", len(self.CurrentIndent)))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1034
                elif transitionType == "ST":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1035
                    transition_infos["content"] = [("\n", ()),
228
da7ddaf27cca Bug with indentation in textual languages while error display fixed
lbessard
parents: 227
diff changeset
  1036
                                                   (ReIndentText(transitionBody.gettext(), len(self.CurrentIndent)), (self.TagName, "body", len(self.CurrentIndent)))]
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1037
                else:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1038
                    for instance in transitionBody.getcontentInstances():
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1039
                        if isinstance(instance, plcopen.fbdObjects_outVariable) and instance.getexpression() == transitionValues["value"]\
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1040
                            or isinstance(instance, plcopen.ldObjects_coil) and instance.getvariable() == transitionValues["value"]:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1041
                            connections = instance.connectionPointIn.getconnections()
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1042
                            if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1043
                                expression = self.ComputeExpression(transitionBody, connections)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1044
                                transition_infos["content"] = [("\n%s:= "%self.CurrentIndent, ())] + expression + [(";\n", ())]
72
73212220ad22 Adding support for generating FBD with connectors and continuations
lbessard
parents: 71
diff changeset
  1045
                                self.SFCComputedBlocks += self.Program
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1046
                                self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1047
                self.TagName = previous_tagname
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
  1048
            elif transitionValues["type"] == "connection":
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1049
                body = pou.getbody()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1050
                connections = transition.getconnections()
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1051
                if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1052
                    expression = self.ComputeExpression(body, connections)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1053
                    transition_infos["content"] = [("\n%s:= "%self.CurrentIndent, ())] + expression + [(";\n", ())]
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1054
                    self.SFCComputedBlocks += self.Program
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1055
                    self.Program = []
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1056
            for step in steps:
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1057
                self.GenerateSFCStep(step, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1058
                step_name = step.getname()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1059
                if step_name in self.SFCNetworks["Steps"].keys():
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1060
                    transition_infos["from"].append([(step_name, (self.TagName, "transition", transition.getlocalId(), "from", step.getlocalId()))])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1061
                    self.SFCNetworks["Steps"][step_name]["transitions"].append(transition)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1062
            self.SFCNetworks["Transitions"][transition] = transition_infos
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1063
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1064
    def ComputeSFCStep(self, step_name):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1065
        if step_name in self.SFCNetworks["Steps"].keys():
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1066
            step_infos = self.SFCNetworks["Steps"].pop(step_name)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1067
            self.Program += [(self.CurrentIndent, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1068
            if step_infos["initial"]:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1069
                self.Program += [("INITIAL_", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1070
            self.Program += [("STEP ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1071
                             (step_name, (self.TagName, "step", step_infos["id"], "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1072
                             (":\n", ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1073
            actions = []
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1074
            self.IndentRight()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1075
            for action_infos in step_infos["actions"]:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1076
                if action_infos.get("id", None) is not None:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1077
                    action_info = (self.TagName, "action_block", action_infos["id"], "action", action_infos["num"])
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1078
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1079
                    action_info = ()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1080
                actions.append(action_infos["content"])
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1081
                self.Program += [(self.CurrentIndent, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1082
                                 (action_infos["content"], action_info + ("reference",)),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1083
                                 ("(", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1084
                                 (action_infos["qualifier"], action_info + ("qualifier",))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1085
                if "duration" in action_infos:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1086
                    self.Program += [(", ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1087
                                     (action_infos["duration"], action_info + ("duration",))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1088
                if "indicator" in action_infos:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1089
                    self.Program += [(", ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1090
                                     (action_infos["indicator"], action_info + ("indicator",))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1091
                self.Program += [(");\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1092
            self.IndentLeft()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1093
            self.Program += [("%sEND_STEP\n\n"%self.CurrentIndent, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1094
            for action in actions:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1095
                self.ComputeSFCAction(action)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1096
            for transition in step_infos["transitions"]:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1097
                self.ComputeSFCTransition(transition)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1098
                
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1099
    def ComputeSFCAction(self, action_name):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1100
        if action_name in self.SFCNetworks["Actions"].keys():
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1101
            action_content, action_info = self.SFCNetworks["Actions"].pop(action_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1102
            self.Program += [("%sACTION "%self.CurrentIndent, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1103
                             (action_name, action_info),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1104
                             (" :\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1105
            self.Program += action_content
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1106
            self.Program += [("%sEND_ACTION\n\n"%self.CurrentIndent, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1107
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1108
    def ComputeSFCTransition(self, transition):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1109
        if transition in self.SFCNetworks["Transitions"].keys():
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1110
            transition_infos = self.SFCNetworks["Transitions"].pop(transition)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1111
            self.Program += [("%sTRANSITION"%self.CurrentIndent, ())]
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 78
diff changeset
  1112
            if transition_infos["priority"] != None:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1113
                self.Program += [(" (PRIORITY := ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1114
                                 ("%d"%transition_infos["priority"], (self.TagName, "transition", transition_infos["id"], "priority")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1115
                                 (")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1116
            self.Program += [(" FROM ", ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1117
            if len(transition_infos["from"]) > 1:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1118
                self.Program += [("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1119
                self.Program += JoinList([(", ", ())], transition_infos["from"])
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1120
                self.Program += [(")", ())]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1121
            elif len(transition_infos["from"]) == 1:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1122
                self.Program += transition_infos["from"][0]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1123
            else:
214
a88b377f75cb Adding tests for detecting POUs with no variables or/and no body
lbessard
parents: 208
diff changeset
  1124
                raise PLCGenException, "Transition with content \"%s\" not connected to a previous step in \"%s\" POU"%(transition_infos["content"], self.Name)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1125
            self.Program += [(" TO ", ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1126
            if len(transition_infos["to"]) > 1:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1127
                self.Program += [("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1128
                self.Program += JoinList([(", ", ())], transition_infos["to"])
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1129
                self.Program += [(")", ())]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1130
            elif len(transition_infos["to"]) == 1:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1131
                self.Program += transition_infos["to"][0]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1132
            else:
214
a88b377f75cb Adding tests for detecting POUs with no variables or/and no body
lbessard
parents: 208
diff changeset
  1133
                raise PLCGenException, "Transition with content \"%s\" not connected to a next step in \"%s\" POU"%(transition_infos["content"], self.Name)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1134
            self.Program += transition_infos["content"]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1135
            self.Program += [("%sEND_TRANSITION\n\n"%self.CurrentIndent, ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1136
            for [(step_name, step_infos)] in transition_infos["to"]:
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1137
                self.ComputeSFCStep(step_name)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1138
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1139
    def GenerateProgram(self, pou):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1140
        self.ComputeInterface(pou)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1141
        self.ComputeConnectionTypes(pou)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1142
        self.ComputeProgram(pou)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1143
        
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1144
        program = [("%s "%self.Type, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1145
                   (self.Name, (self.TagName, "name"))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1146
        if self.ReturnType:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1147
            program += [(" : ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1148
                        (self.ReturnType, (self.TagName, "return"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1149
        program += [("\n", ())]
214
a88b377f75cb Adding tests for detecting POUs with no variables or/and no body
lbessard
parents: 208
diff changeset
  1150
        if len(self.Interface) == 0:
a88b377f75cb Adding tests for detecting POUs with no variables or/and no body
lbessard
parents: 208
diff changeset
  1151
            raise PLCGenException, "No variable defined in \"%s\" POU"%self.Name
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1152
        if len(self.Program) == 0 :
214
a88b377f75cb Adding tests for detecting POUs with no variables or/and no body
lbessard
parents: 208
diff changeset
  1153
            raise PLCGenException, "No body defined in \"%s\" POU"%self.Name
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1154
        var_number = 0
33
0dd4a876392f Bugs on ST generation fixed
lbessard
parents: 31
diff changeset
  1155
        for list_type, retain, constant, located, variables in self.Interface:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1156
            program += [("  %s"%list_type, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1157
            if retain:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1158
                program += [(" RETAIN", (self.TagName, "variable", (var_number, var_number + len(variables)), "retain"))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1159
            if constant:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1160
                program += [(" CONSTANT", (self.TagName, "variable", (var_number, var_number + len(variables)), "constant"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1161
            program += [("\n", ())]
30
768cf2a6b0b1 Bug on ressource generation fixed
lbessard
parents: 29
diff changeset
  1162
            for var_type, var_name, var_address, var_initial in variables:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1163
                program += [("    ", ())]
93
c3c24b979a4d Add support for custom block declaration
lbessard
parents: 80
diff changeset
  1164
                if var_name:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1165
                    program += [(var_name, (self.TagName, "variable", var_number, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1166
                                (" ", ())]
30
768cf2a6b0b1 Bug on ressource generation fixed
lbessard
parents: 29
diff changeset
  1167
                if var_address != None:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1168
                    program += [("AT ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1169
                                (var_address, (self.TagName, "variable", var_number, "address")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1170
                                (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1171
                program += [(": ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1172
                            (var_type, (self.TagName, "variable", var_number, "type"))]
28
fc23e1f415d8 Adding support for concurrent overriden standard function
lbessard
parents: 6
diff changeset
  1173
                if var_initial != None:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1174
                    program += [(" := ", ()),
232
cbdfef9b2020 Fixed typos.
etisserant
parents: 228
diff changeset
  1175
                                (self.ParentGenerator.ComputeValue(var_initial, var_type), (self.TagName, "variable", var_number, "initial"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1176
                program += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1177
                var_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1178
            program += [("  END_VAR\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1179
        program += [("\n", ())]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1180
        program += self.Program
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1181
        program += [("END_%s\n\n"%self.Type, ())]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1182
        return program
71
0578bc212c20 Adding Dialog for Step in free drawing
lbessard
parents: 70
diff changeset
  1183
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1184
def GenerateCurrentProgram(controler, project):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1185
    generator = ProgramGenerator(controler, project)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1186
    generator.GenerateProgram()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1187
    return generator.GetGeneratedProgram()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1188