PLCGenerator.py
author laurent
Sun, 08 Jan 2012 19:16:58 +0100
changeset 616 8a60ffcfd70b
parent 597 7b17e3c8dbed
child 617 1a80e0598045
permissions -rw-r--r--
Adding support for drag'n dropping variable from global defined in configurations and resources to POU variable panel or body editor for declaring external variables
Adding support for drag'n dropping located variables from topology panel to configurations and resources variable panel for declaring global located variables
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 *
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
    28
import re
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    29
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    30
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    31
# 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
    32
# IEC 61131-3 variable categories
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    33
varTypeNames = {"localVars" : "VAR", "tempVars" : "VAR_TEMP", "inputVars" : "VAR_INPUT", 
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    34
                "outputVars" : "VAR_OUTPUT", "inOutVars" : "VAR_IN_OUT", "externalVars" : "VAR_EXTERNAL",
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
    35
                "globalVars" : "VAR_GLOBAL", "accessVars" : "VAR_ACCESS"}
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    36
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    37
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    38
# 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
    39
# IEC 61131-3 POU categories
6
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
    40
pouTypeNames = {"function" : "FUNCTION", "functionBlock" : "FUNCTION_BLOCK", "program" : "PROGRAM"}
c8cf918ee7ea Bug corrected and improvements
lbessard
parents: 5
diff changeset
    41
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    42
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
    43
errorVarTypes = {
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
    44
    "VAR_INPUT": "var_input",
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
    45
    "VAR_OUTPUT": "var_output",
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
    46
    "VAR_INOUT": "var_inout",
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
    47
}
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
    48
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    49
# Helper function for reindenting text
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    50
def ReIndentText(text, nb_spaces):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    51
    compute = ""
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    52
    lines = text.splitlines()
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    53
    if len(lines) > 0:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    54
        line_num = 0
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    55
        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
    56
            line_num += 1
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    57
        if line_num < len(lines):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    58
            spaces = 0
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    59
            while lines[line_num][spaces] == " ":
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    60
                spaces += 1
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    61
            indent = ""
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    62
            for i in xrange(spaces, nb_spaces):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    63
                indent += " "
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    64
            for line in lines:
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    65
                if line != "":
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    66
                    compute += "%s%s\n"%(indent, line)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    67
                else:
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
    68
                    compute += "\n"
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    69
    return compute
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
    70
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    71
def SortInstances(a, b):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    72
    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
    73
    bx, by = int(b.getx()), int(b.gety())
280
9ca192486f2f Bug in coil and output element sorting function fixed
lbessard
parents: 276
diff changeset
    74
    if abs(ay - by) < 10:
9ca192486f2f Bug in coil and output element sorting function fixed
lbessard
parents: 276
diff changeset
    75
        return cmp(ax, bx)
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
    76
    else:
280
9ca192486f2f Bug in coil and output element sorting function fixed
lbessard
parents: 276
diff changeset
    77
        return cmp(ay, by)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    78
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
#                  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
    81
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    82
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
class PLCGenException(Exception):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    85
    pass
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    86
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
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    89
#                           Generator of PLC program
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    90
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    91
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    92
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    93
class ProgramGenerator:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    94
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    95
    # Create a new PCL program generator
307
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
    96
    def __init__(self, controler, project, errors, warnings):
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    97
        # 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
    98
        self.Controler = controler
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
    99
        self.Project = project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   100
        # 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
   101
        self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   102
        self.DatatypeComputed = {}
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   103
        self.PouComputed = {}
307
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
   104
        self.Errors = errors
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
   105
        self.Warnings = warnings
227
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
    # 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
   108
    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
   109
        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
   110
        if base_type == "STRING":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   111
            return "'%s'"%value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   112
        elif base_type == "WSTRING":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   113
            return "\"%s\""%value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   114
        return value
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   115
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   116
    # 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
   117
    def GenerateDataType(self, datatype_name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   118
        # 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
   119
        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
   120
            # 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
   121
            self.DatatypeComputed[datatype_name] = True
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   122
            
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   123
            # Getting datatype model from project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   124
            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
   125
            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
   126
            datatype_def = [("  ", ()), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   127
                            (datatype.getname(), (tagname, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   128
                            (" : ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   129
            basetype_content = datatype.baseType.getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   130
            # 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
   131
            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
   132
                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
   133
            # 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
   134
            elif basetype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   135
                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
   136
                self.GenerateDataType(basetype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   137
                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
   138
            # Data type is a subrange
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   139
            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
   140
                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
   141
                # 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
   142
                if base_type["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   143
                    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
   144
                    self.GenerateDataType(basetype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   145
                # 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
   146
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   147
                    basetype_name = base_type["name"]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   148
                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
   149
                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
   150
                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
   151
                                 (" (", ()),
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   152
                                 ("%s"%min_value, (tagname, "lower")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   153
                                 ("..", ()),
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   154
                                 ("%s"%max_value, (tagname, "upper")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   155
                                 (")",())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   156
            # 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
   157
            elif basetype_content["name"] == "enum":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   158
                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
   159
                          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
   160
                datatype_def += [("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   161
                datatype_def += JoinList([(", ", ())], values)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   162
                datatype_def += [(")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   163
            # Data type is an array
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   164
            elif basetype_content["name"] == "array":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   165
                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
   166
                # 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
   167
                if base_type["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   168
                    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
   169
                    self.GenerateDataType(basetype_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   170
                # 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
   171
                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
   172
                    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
   173
                # 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
   174
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   175
                    basetype_name = base_type["name"]
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   176
                dimensions = [[("%s"%dimension.getlower(), (tagname, "range", i, "lower")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   177
                               ("..", ()),
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   178
                               ("%s"%dimension.getupper(), (tagname, "range", i, "upper"))] 
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   179
                              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
   180
                datatype_def += [("ARRAY [", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   181
                datatype_def += JoinList([(",", ())], dimensions)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   182
                datatype_def += [("] OF " , ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   183
                                 (basetype_name, (tagname, "base"))]
295
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   184
            # Data type is a structure
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   185
            elif basetype_content["name"] == "struct":
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   186
                elements = []
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   187
                for i, element in enumerate(basetype_content["value"].getvariable()):
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   188
                    element_type = element.type.getcontent()
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   189
                    # Structure element derived directly from a user defined type 
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   190
                    if element_type["name"] == "derived":
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   191
                        elementtype_name = element_type["value"].getname()
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   192
                        self.GenerateDataType(elementtype_name)
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   193
                    # Structure element derived directly from a string type 
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   194
                    elif element_type["name"] in ["string", "wstring"]:
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   195
                        elementtype_name = element_type["name"].upper()
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   196
                    # Structure element derived directly from an elementary type 
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   197
                    else:
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   198
                        elementtype_name = element_type["name"]
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   199
                    element_text = [("\n    ", ()),
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   200
                                    (element.getname(), (tagname, "struct", i, "name")),
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   201
                                    (" : ", ()),
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   202
                                    (elementtype_name, (tagname, "struct", i, "type"))]
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   203
                    if element.initialValue is not None:
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   204
                        element_text.extend([(" := ", ()),
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   205
                                             (self.ComputeValue(element.initialValue.getvalue(), elementtype_name), (tagname, "struct", i, "initial"))])
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   206
                    element_text.append((";", ()))
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   207
                    elements.append(element_text)
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   208
                datatype_def += [("STRUCT", ())]
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   209
                datatype_def += JoinList([("", ())], elements)
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   210
                datatype_def += [("\n  END_STRUCT", ())]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   211
            # Data type derived directly from a elementary type 
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   212
            else:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   213
                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
   214
            # 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
   215
            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
   216
                datatype_def += [(" := ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   217
                                 (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
   218
            datatype_def += [(";\n", ())]
295
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   219
            self.Program += datatype_def
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   220
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   221
    # 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
   222
    def GeneratePouProgram(self, pou_name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   223
        # 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
   224
        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
   225
            # 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
   226
            self.PouComputed[pou_name] = True
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   227
            
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   228
            # Getting POU model from project
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   229
            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
   230
            pou_type = pou.getpouType()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   231
            # Verify that POU type exists
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   232
            if pouTypeNames.has_key(pou_type):
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   233
                # Create a POU program generator
307
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
   234
                pou_program = PouProgramGenerator(self, pou.getname(), pouTypeNames[pou_type], self.Errors, self.Warnings)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   235
                program = pou_program.GenerateProgram(pou)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   236
                self.Program += program
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   237
            else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
   238
                raise PLCGenException, _("Undefined pou type \"%s\"")%pou_type
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   239
    
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   240
    # Generate a POU defined and used in text
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   241
    def GeneratePouProgramInText(self, text):
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   242
        for pou_name in self.PouComputed.keys():
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   243
            model = re.compile("(?:^|[^0-9^A-Z])%s(?:$|[^0-9^A-Z])"%pou_name.upper())
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   244
            if model.search(text) is not None:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   245
                self.GeneratePouProgram(pou_name)
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   246
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   247
    # 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
   248
    def GenerateConfiguration(self, configuration):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   249
        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
   250
        config = [("\nCONFIGURATION ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   251
                  (configuration.getname(), (tagname, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   252
                  ("\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   253
        var_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   254
        # 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
   255
        for varlist in configuration.getglobalVars():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   256
            variable_type = errorVarTypes.get("VAR_GLOBAL", "var_local")
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   257
            # Generate variable block with modifier
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   258
            config += [("  VAR_GLOBAL", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   259
            if varlist.getconstant():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   260
                config += [(" CONSTANT", (tagname, variable_type, (var_number, var_number + len(varlist.getvariable())), "constant"))]
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   261
            elif varlist.getretain():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   262
                config += [(" RETAIN", (tagname, variable_type, (var_number, var_number + len(varlist.getvariable())), "retain"))]
527
e307e1b27828 Fixed typo in PLCGenerator.py
Edouard Tisserant
parents: 526
diff changeset
   263
            elif varlist.getnonretain():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   264
                config += [(" NON_RETAIN", (tagname, variable_type, (var_number, var_number + len(varlist.getvariable())), "non_retain"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   265
            config += [("\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   266
            # 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
   267
            for var in varlist.getvariable():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   268
                vartype_content = var.gettype().getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   269
                if vartype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   270
                    var_type = vartype_content["value"].getname()
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   271
                    self.GenerateDataType(var_type)
597
7b17e3c8dbed Fixing bug in PLCGenerator when generating global variables
laurent
parents: 566
diff changeset
   272
                else:
7b17e3c8dbed Fixing bug in PLCGenerator when generating global variables
laurent
parents: 566
diff changeset
   273
                    var_type = var.gettypeAsText()
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   274
                
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   275
                config += [("    ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   276
                           (var.getname(), (tagname, variable_type, var_number, "name")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   277
                           (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   278
                # Generate variable address if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   279
                address = var.getaddress()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   280
                if address:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   281
                    config += [("AT ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   282
                               (address, (tagname, variable_type, var_number, "address")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   283
                               (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   284
                config += [(": ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   285
                           (var.gettypeAsText(), (tagname, variable_type, var_number, "type"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   286
                # 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
   287
                initial = var.getinitialValue()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   288
                if initial:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   289
                    config += [(" := ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   290
                               (self.ComputeValue(initial.getvalue(), var_type), (tagname, variable_type, var_number, "initial"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   291
                config += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   292
                var_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   293
            config += [("  END_VAR\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   294
        # 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
   295
        for resource in configuration.getresource():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   296
            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
   297
        config += [("END_CONFIGURATION\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   298
        return config
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   299
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   300
    # 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
   301
    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
   302
        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
   303
        resrce = [("\n  RESOURCE ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   304
                  (resource.getname(), (tagname, "name")),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   305
                  (" ON PLC\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   306
        var_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   307
        # 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
   308
        for varlist in resource.getglobalVars():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   309
            variable_type = errorVarTypes.get("VAR_GLOBAL", "var_local")
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   310
            # Generate variable block with modifier
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   311
            resrce += [("    VAR_GLOBAL", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   312
            if varlist.getconstant():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   313
                resrce += [(" CONSTANT", (tagname, variable_type, (var_number, var_number + len(varlist.getvariable())), "constant"))]
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   314
            elif varlist.getretain():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   315
                resrce += [(" RETAIN", (tagname, variable_type, (var_number, var_number + len(varlist.getvariable())), "retain"))]
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   316
            elif varlist.getnonretain():
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   317
                resrce += [(" NON_RETAIN", (tagname, variable_type, (var_number, var_number + len(varlist.getvariable())), "non_retain"))]
370
23af12b5a9fb Bug that prevent to see errors in editor with double click fixed.
lbessard
parents: 356
diff changeset
   318
            resrce += [("\n", ())]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   319
            # 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
   320
            for var in varlist.getvariable():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   321
                vartype_content = var.gettype().getcontent()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   322
                if vartype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   323
                    var_type = vartype_content["value"].getname()
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   324
                    self.GenerateDataType(var_type)
597
7b17e3c8dbed Fixing bug in PLCGenerator when generating global variables
laurent
parents: 566
diff changeset
   325
                else:
7b17e3c8dbed Fixing bug in PLCGenerator when generating global variables
laurent
parents: 566
diff changeset
   326
                    var_type = var.gettypeAsText()
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   327
                
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   328
                resrce += [("      ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   329
                           (var.getname(), (tagname, variable_type, var_number, "name")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   330
                           (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   331
                address = var.getaddress()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   332
                # Generate variable address if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   333
                if address:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   334
                    resrce += [("AT ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   335
                               (address, (tagname, variable_type, var_number, "address")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   336
                               (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   337
                resrce += [(": ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   338
                           (var.gettypeAsText(), (tagname, variable_type, var_number, "type"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   339
                # 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
   340
                initial = var.getinitialValue()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   341
                if initial:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   342
                    resrce += [(" := ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   343
                               (self.ComputeValue(initial.getvalue(), var_type), (tagname, variable_type, var_number, "initial"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   344
                resrce += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   345
                var_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   346
            resrce += [("    END_VAR\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   347
        # 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
   348
        tasks = resource.gettask()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   349
        task_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   350
        for task in tasks:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   351
            # Task declaration
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   352
            resrce += [("    TASK ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   353
                       (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
   354
                       ("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   355
            args = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   356
            single = task.getsingle()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   357
            # Single argument if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   358
            if single:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   359
                resrce += [("SINGLE := ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   360
                           (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
   361
                           (",", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   362
            # Interval argument if exists
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   363
            interval = task.getinterval()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   364
            if interval:
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   365
                resrce += [("INTERVAL := ", ()),
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   366
                           (interval, (tagname, "task", task_number, "interval")),
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   367
                           (",", ())]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   368
##                resrce += [("INTERVAL := t#", ())]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   369
##                if interval.hour != 0:
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   370
##                    resrce += [("%dh"%interval.hour, (tagname, "task", task_number, "interval", "hour"))]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   371
##                if interval.minute != 0:
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   372
##                    resrce += [("%dm"%interval.minute, (tagname, "task", task_number, "interval", "minute"))]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   373
##                if interval.second != 0:
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   374
##                    resrce += [("%ds"%interval.second, (tagname, "task", task_number, "interval", "second"))]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   375
##                if interval.microsecond != 0:
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   376
##                    resrce += [("%dms"%(interval.microsecond / 1000), (tagname, "task", task_number, "interval", "millisecond"))]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   377
##                resrce += [(",", ())]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   378
            # Priority argument
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   379
            resrce += [("PRIORITY := ", ()), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   380
                       ("%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
   381
                       (");\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   382
            task_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   383
        instance_number = 0
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   384
        # 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
   385
        for task in tasks:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   386
            for instance in task.getpouInstance():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   387
                resrce += [("    PROGRAM ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   388
                           (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
   389
                           (" WITH ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   390
                           (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
   391
                           (" : ", ()),
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   392
                           (instance.gettypeName(), (tagname, "instance", instance_number, "type")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   393
                           (";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   394
                instance_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   395
        # 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
   396
        for instance in resource.getpouInstance():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   397
            resrce += [("    PROGRAM ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   398
                           (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
   399
                           (" : ", ()),
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   400
                           (instance.gettypeName(), (tagname, "instance", instance_number, "type")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   401
                           (";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   402
            instance_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   403
        resrce += [("  END_RESOURCE\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   404
        return resrce
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   405
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   406
    # 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
   407
    def GenerateProgram(self):        
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   408
        # Find all data types defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   409
        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
   410
            self.DatatypeComputed[datatype.getname()] = False
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   411
        # Find all data types defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   412
        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
   413
            self.PouComputed[pou.getname()] = False
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   414
        # 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
   415
        # type defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   416
        if len(self.DatatypeComputed) > 0:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   417
            self.Program += [("TYPE\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   418
            # Generate every data types defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   419
            for datatype_name in self.DatatypeComputed.keys():
295
c6ef6d92ce16 Adding support for editing and using struct data types
lbessard
parents: 281
diff changeset
   420
                self.GenerateDataType(datatype_name)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   421
            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
   422
        # Generate every POUs defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   423
        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
   424
            self.GeneratePouProgram(pou_name)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   425
        # Generate every configurations defined
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   426
        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
   427
            self.Program += self.GenerateConfiguration(config)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   428
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   429
    # Return generated program
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   430
    def GetGeneratedProgram(self):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   431
        return self.Program
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   432
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   433
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   434
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   435
#                           Generator of POU programs
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   436
#-------------------------------------------------------------------------------
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   437
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   438
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   439
class PouProgramGenerator:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   440
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   441
    # Create a new POU program generator
307
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
   442
    def __init__(self, parent, name, type, errors, warnings):
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   443
        # 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
   444
        self.ParentGenerator = parent
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   445
        self.Name = name
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   446
        self.Type = type
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   447
        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
   448
        self.CurrentIndent = "  "
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   449
        self.ReturnType = None
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   450
        self.Interface = []
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   451
        self.InitialSteps = []
72
73212220ad22 Adding support for generating FBD with connectors and continuations
lbessard
parents: 71
diff changeset
   452
        self.ComputedBlocks = {}
73212220ad22 Adding support for generating FBD with connectors and continuations
lbessard
parents: 71
diff changeset
   453
        self.ComputedConnectors = {}
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   454
        self.ConnectionTypes = {}
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   455
        self.RelatedConnections = []
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   456
        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
   457
        self.SFCComputedBlocks = []
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   458
        self.ActionNumber = 0
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   459
        self.Program = []
307
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
   460
        self.Errors = errors
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
   461
        self.Warnings = warnings
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   462
    
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   463
    def GetBlockType(self, type, inputs=None):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   464
        return self.ParentGenerator.Controler.GetBlockType(type, inputs)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   465
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   466
    def IndentLeft(self):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   467
        if len(self.CurrentIndent) >= 2:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   468
            self.CurrentIndent = self.CurrentIndent[:-2]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   469
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   470
    def IndentRight(self):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   471
        self.CurrentIndent += "  "
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   472
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   473
    # Generator of unique ID for inline actions
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   474
    def GetActionNumber(self):
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   475
        self.ActionNumber += 1
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   476
        return self.ActionNumber
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
   477
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   478
    # Test if a variable has already been defined
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   479
    def IsAlreadyDefined(self, name):
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   480
        for list_type, option, located, vars in self.Interface:
30
768cf2a6b0b1 Bug on ressource generation fixed
lbessard
parents: 29
diff changeset
   481
            for var_type, var_name, var_address, var_initial in vars:
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   482
                if name == var_name:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   483
                    return True
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   484
        return False
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   485
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   486
    # Return the type of a variable defined in interface
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   487
    def GetVariableType(self, name):
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   488
        for list_type, option, located, vars in self.Interface:
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   489
            for var_type, var_name, var_address, var_initial in vars:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   490
                if name == var_name:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   491
                    return var_type
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   492
        return None
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   493
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   494
    # 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
   495
    def GetConnectedConnector(self, connector, body):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   496
        links = connector.getconnections()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   497
        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
   498
            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
   499
        return None        
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   500
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   501
    def GetLinkedConnector(self, link, body):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   502
        parameter = link.getformalParameter()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   503
        instance = body.getcontentInstance(link.getrefLocalId())
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   504
        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
   505
            return instance.connectionPointOut
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   506
        elif isinstance(instance, plcopen.fbdObjects_block):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   507
            outputvariables = instance.outputVariables.getvariable()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   508
            if len(outputvariables) == 1:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   509
                return outputvariables[0].connectionPointOut
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   510
            elif parameter:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   511
                for variable in outputvariables:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   512
                    if variable.getformalParameter() == parameter:
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   513
                        return variable.connectionPointOut
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   514
            else:
276
cc9c4a7510b4 Bug in function generation fixed
lbessard
parents: 273
diff changeset
   515
                point = link.getposition()[-1]
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   516
                for variable in outputvariables:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   517
                    relposition = variable.connectionPointOut.getrelPositionXY()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   518
                    blockposition = instance.getposition()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   519
                    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
   520
                        return variable.connectionPointOut
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   521
        elif isinstance(instance, plcopen.ldObjects_leftPowerRail):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   522
            outputconnections = instance.getconnectionPointOut()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   523
            if len(outputconnections) == 1:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   524
                return outputconnections[0]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   525
            else:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   526
                point = link.getposition()[-1]
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   527
                for outputconnection in outputconnections:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   528
                    relposition = outputconnection.getrelPositionXY()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   529
                    powerrailposition = instance.getposition()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   530
                    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
   531
                        return outputconnection
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   532
        return None
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   533
        
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   534
    def ExtractRelatedConnections(self, connection):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   535
        for i, related in enumerate(self.RelatedConnections):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   536
            if connection in related:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   537
                return self.RelatedConnections.pop(i)
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   538
        return [connection]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   539
    
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   540
    def ComputeInterface(self, pou):
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   541
        interface = pou.getinterface()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   542
        if interface is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   543
            body = pou.getbody()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   544
            if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   545
                body = body[0]
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   546
            body_content = body.getcontent()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   547
            if self.Type == "FUNCTION":
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   548
                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
   549
                if returntype_content["name"] == "derived":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   550
                    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
   551
                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
   552
                    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
   553
                else:
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   554
                    self.ReturnType = returntype_content["name"]
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   555
            for varlist in interface.getcontent():
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   556
                variables = []
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   557
                located = []
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   558
                for var in varlist["value"].getvariable():
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   559
                    vartype_content = var.gettype().getcontent()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   560
                    if vartype_content["name"] == "derived":
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   561
                        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
   562
                        blocktype = self.GetBlockType(var_type)
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   563
                        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
   564
                            self.ParentGenerator.GeneratePouProgram(var_type)
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   565
                            if body_content["name"] in ["FBD", "LD", "SFC"]:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   566
                                block = pou.getinstanceByName(var.getname())
191
d77f9b783ce8 Bug with located variables generated by Beremiz svgui plugin fixed
lbessard
parents: 189
diff changeset
   567
                            else:
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   568
                                block = None
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   569
                            for variable in blocktype["initialise"](var_type, var.getname(), block):
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   570
                                if variable[2] is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   571
                                    located.append(variable)
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   572
                                else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   573
                                    variables.append(variable)
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   574
                        else:
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   575
                            self.ParentGenerator.GenerateDataType(var_type)
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   576
                            initial = var.getinitialValue()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   577
                            if initial:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   578
                                initial_value = initial.getvalue()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   579
                            else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   580
                                initial_value = None
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   581
                            address = var.getaddress()
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   582
                            if address is not None:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   583
                                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
   584
                            else:
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   585
                                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
   586
                    else:
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   587
                        var_type = var.gettypeAsText()
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   588
                        initial = var.getinitialValue()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   589
                        if initial:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   590
                            initial_value = initial.getvalue()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   591
                        else:
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   592
                            initial_value = None
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   593
                        address = var.getaddress()
507
42150e041dbe Adding support for direct array variable declaration in variable panel (still disable cause matiec doesn't support this feature)
laurent
parents: 501
diff changeset
   594
                        if address is not None:
42150e041dbe Adding support for direct array variable declaration in variable panel (still disable cause matiec doesn't support this feature)
laurent
parents: 501
diff changeset
   595
                            located.append((var_type, var.getname(), address, initial_value))
42150e041dbe Adding support for direct array variable declaration in variable panel (still disable cause matiec doesn't support this feature)
laurent
parents: 501
diff changeset
   596
                        else:
42150e041dbe Adding support for direct array variable declaration in variable panel (still disable cause matiec doesn't support this feature)
laurent
parents: 501
diff changeset
   597
                            variables.append((var_type, var.getname(), None, initial_value))
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   598
                if varlist["value"].getconstant():
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   599
                    option = "CONSTANT"
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   600
                elif varlist["value"].getretain():
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   601
                    option = "RETAIN"
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   602
                elif varlist["value"].getnonretain():
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   603
                    option = "NON_RETAIN"
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   604
                else:
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   605
                    option = None
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   606
                if len(variables) > 0:
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   607
                    self.Interface.append((varTypeNames[varlist["name"]], option, False, variables))
194
1b3f8b4f8e04 Adding support for Beremiz svgui plugin variable declaration
lbessard
parents: 191
diff changeset
   608
                if len(located) > 0:
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   609
                    self.Interface.append((varTypeNames[varlist["name"]], option, True, located))
191
d77f9b783ce8 Bug with located variables generated by Beremiz svgui plugin fixed
lbessard
parents: 189
diff changeset
   610
        
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   611
    def ComputeConnectionTypes(self, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   612
        body = pou.getbody()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   613
        if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   614
            body = body[0]
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   615
        body_content = body.getcontent()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   616
        body_type = body_content["name"]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   617
        if body_type in ["FBD", "LD", "SFC"]:
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   618
            undefined_blocks = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   619
            for instance in body.getcontentInstances():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   620
                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
   621
                    expression = instance.getexpression()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   622
                    var_type = self.GetVariableType(expression)
408
0e389fa5b160 Bug on ST code generating for variables with the same name than POU when POU isn't a function fixed
laurent
parents: 391
diff changeset
   623
                    if pou.getpouType() == "function" and expression == pou.getname():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   624
                        returntype_content = pou.interface.getreturnType().getcontent()
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   625
                        if returntype_content["name"] == "derived":
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   626
                            var_type = returntype_content["value"].getname()
141
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   627
                        elif returntype_content["name"] in ["string", "wstring"]:
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   628
                            var_type = returntype_content["name"].upper()
c0242a51774c Bug with String not recognized fixed
lbessard
parents: 128
diff changeset
   629
                        else:
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   630
                            var_type = returntype_content["name"]
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   631
                    elif var_type is None:
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   632
                        parts = expression.split("#")
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   633
                        if len(parts) > 1:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   634
                            var_type = parts[0]
356
f6453b89e7f9 Adding support for finding character_string while computing connector types. Adding 'ANY' type on continuation by default.
greg
parents: 340
diff changeset
   635
                        elif expression.startswith("'"):
f6453b89e7f9 Adding support for finding character_string while computing connector types. Adding 'ANY' type on continuation by default.
greg
parents: 340
diff changeset
   636
                            var_type = "STRING"
f6453b89e7f9 Adding support for finding character_string while computing connector types. Adding 'ANY' type on continuation by default.
greg
parents: 340
diff changeset
   637
                        elif expression.startswith('"'):
f6453b89e7f9 Adding support for finding character_string while computing connector types. Adding 'ANY' type on continuation by default.
greg
parents: 340
diff changeset
   638
                            var_type = "WSTRING"
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   639
                    if var_type is not None:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   640
                        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
   641
                            for connection in self.ExtractRelatedConnections(instance.connectionPointOut):
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   642
                                self.ConnectionTypes[connection] = var_type
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   643
                        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
   644
                            self.ConnectionTypes[instance.connectionPointIn] = var_type
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   645
                            connected = self.GetConnectedConnector(instance.connectionPointIn, body)
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   646
                            if connected and not self.ConnectionTypes.has_key(connected):
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   647
                                for connection in self.ExtractRelatedConnections(connected):
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   648
                                    self.ConnectionTypes[connection] = var_type
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   649
                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
   650
                    for connection in self.ExtractRelatedConnections(instance.connectionPointOut):
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   651
                        self.ConnectionTypes[connection] = "BOOL"
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   652
                    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
   653
                    connected = self.GetConnectedConnector(instance.connectionPointIn, body)
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   654
                    if connected and not self.ConnectionTypes.has_key(connected):
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   655
                        for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   656
                            self.ConnectionTypes[connection] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   657
                elif isinstance(instance, plcopen.ldObjects_leftPowerRail):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   658
                    for connection in instance.getconnectionPointOut():
208
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   659
                        for related in self.ExtractRelatedConnections(connection):
c70aefcadf66 Bugs with feedback path in View, Controler and Generator fixed
lbessard
parents: 207
diff changeset
   660
                            self.ConnectionTypes[related] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   661
                elif isinstance(instance, plcopen.ldObjects_rightPowerRail):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   662
                    for connection in instance.getconnectionPointIn():
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   663
                        self.ConnectionTypes[connection] = "BOOL"
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   664
                        connected = self.GetConnectedConnector(connection, body)
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   665
                        if connected and not self.ConnectionTypes.has_key(connected):
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   666
                            for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   667
                                self.ConnectionTypes[connection] = "BOOL"
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   668
                elif isinstance(instance, plcopen.sfcObjects_transition):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   669
                    content = instance.condition.getcontent()
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   670
                    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
   671
                        connected = self.GetLinkedConnector(content["value"][0], body)
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   672
                        if connected and not self.ConnectionTypes.has_key(connected):
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   673
                            for connection in self.ExtractRelatedConnections(connected):
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   674
                                self.ConnectionTypes[connection] = "BOOL"
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   675
                elif isinstance(instance, plcopen.commonObjects_continuation):
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   676
                    name = instance.getname()
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   677
                    connector = None
356
f6453b89e7f9 Adding support for finding character_string while computing connector types. Adding 'ANY' type on continuation by default.
greg
parents: 340
diff changeset
   678
                    var_type = "ANY"
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   679
                    for element in body.getcontentInstances():
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   680
                        if isinstance(element, plcopen.commonObjects_connector) and element.getname() == name:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   681
                            if connector is not None:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
   682
                                raise PLCGenException, _("More than one connector found corresponding to \"%s\" continuation in \"%s\" POU")%(name, self.Name)
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   683
                            connector = element
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   684
                    if connector is not None:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   685
                        undefined = [instance.connectionPointOut, connector.connectionPointIn]
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   686
                        connected = self.GetConnectedConnector(connector.connectionPointIn, body)
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   687
                        if connected:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   688
                            undefined.append(connected)
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   689
                        related = []
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   690
                        for connection in undefined:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   691
                            if self.ConnectionTypes.has_key(connection):
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   692
                                var_type = self.ConnectionTypes[connection]
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   693
                            else:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   694
                                related.extend(self.ExtractRelatedConnections(connection))
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   695
                        if var_type.startswith("ANY") and len(related) > 0:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   696
                            self.RelatedConnections.append(related)
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   697
                        else:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   698
                            for connection in related:
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   699
                                self.ConnectionTypes[connection] = var_type
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   700
                    else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
   701
                        raise PLCGenException, _("No connector found corresponding to \"%s\" continuation in \"%s\" POU")%(name, self.Name)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   702
                elif isinstance(instance, plcopen.fbdObjects_block):
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   703
                    block_infos = self.GetBlockType(instance.gettypeName(), "undefined")
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   704
                    if block_infos is not None:
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   705
                        self.ComputeBlockInputTypes(instance, block_infos, body)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   706
                    else:
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   707
                        for variable in instance.inputVariables.getvariable():
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   708
                            connected = self.GetConnectedConnector(variable.connectionPointIn, body)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   709
                            if connected is not None:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   710
                                var_type = self.ConnectionTypes.get(connected, None)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   711
                                if var_type is not None:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   712
                                    self.ConnectionTypes[variable.connectionPointIn] = var_type
125
394d9f168258 Adding support for execution order in PLCGenerator
lbessard
parents: 108
diff changeset
   713
                                else:
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   714
                                    related = self.ExtractRelatedConnections(connected)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   715
                                    related.append(variable.connectionPointIn)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   716
                                    self.RelatedConnections.append(related)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   717
                        undefined_blocks.append(instance)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   718
            for instance in undefined_blocks:
528
7ac133b11321 Fix bug in block with execution control generation fixed
laurent
parents: 527
diff changeset
   719
                block_infos = self.GetBlockType(instance.gettypeName(), tuple([self.ConnectionTypes.get(variable.connectionPointIn, "ANY") for variable in instance.inputVariables.getvariable() if variable.getformalParameter() != "EN"]))
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   720
                if block_infos is not None:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   721
                    self.ComputeBlockInputTypes(instance, block_infos, body)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   722
                else:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   723
                    raise PLCGenException, _("No informations found for \"%s\" block")%(instance.gettypeName())
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   724
                
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   725
    def ComputeBlockInputTypes(self, instance, block_infos, body):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   726
        undefined = {}
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   727
        for variable in instance.outputVariables.getvariable():
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   728
            output_name = variable.getformalParameter()
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   729
            if output_name == "ENO":
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   730
                for connection in self.ExtractRelatedConnections(variable.connectionPointOut):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   731
                    self.ConnectionTypes[connection] = "BOOL"
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   732
            else:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   733
                for oname, otype, oqualifier in block_infos["outputs"]:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   734
                    if output_name == oname:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   735
                        if otype.startswith("ANY"):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   736
                            if not undefined.has_key(otype):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   737
                                undefined[otype] = []
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   738
                            undefined[otype].append(variable.connectionPointOut)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   739
                        elif not self.ConnectionTypes.has_key(variable.connectionPointOut):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   740
                            for connection in self.ExtractRelatedConnections(variable.connectionPointOut):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   741
                                self.ConnectionTypes[connection] = otype
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   742
        for variable in instance.inputVariables.getvariable():
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   743
            input_name = variable.getformalParameter()
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   744
            if input_name == "EN":
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   745
                for connection in self.ExtractRelatedConnections(variable.connectionPointIn):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   746
                    self.ConnectionTypes[connection] = "BOOL"
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   747
            else:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   748
                for iname, itype, iqualifier in block_infos["inputs"]:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   749
                    if input_name == iname:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   750
                        connected = self.GetConnectedConnector(variable.connectionPointIn, body)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   751
                        if itype.startswith("ANY"):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   752
                            if not undefined.has_key(itype):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   753
                                undefined[itype] = []
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   754
                            undefined[itype].append(variable.connectionPointIn)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   755
                            if connected:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   756
                                undefined[itype].append(connected)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   757
                        else:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   758
                            self.ConnectionTypes[variable.connectionPointIn] = itype
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   759
                            if connected and not self.ConnectionTypes.has_key(connected):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   760
                                for connection in self.ExtractRelatedConnections(connected):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   761
                                    self.ConnectionTypes[connection] = itype
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   762
        for var_type, connections in undefined.items():
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   763
            related = []
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   764
            for connection in connections:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   765
                if self.ConnectionTypes.has_key(connection):
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   766
                    var_type = self.ConnectionTypes[connection]
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   767
                else:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   768
                    related.extend(self.ExtractRelatedConnections(connection))
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   769
            if var_type.startswith("ANY") and len(related) > 0:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   770
                self.RelatedConnections.append(related)
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   771
            else:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   772
                for connection in related:
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   773
                    self.ConnectionTypes[connection] = var_type
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   774
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   775
    def ComputeProgram(self, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   776
        body = pou.getbody()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   777
        if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
   778
            body = body[0]
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   779
        body_content = body.getcontent()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   780
        body_type = body_content["name"]
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   781
        if body_type in ["IL","ST"]:
340
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   782
            text = body_content["value"].gettext()
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   783
            self.ParentGenerator.GeneratePouProgramInText(text.upper())
5a305b7c6735 Adding support for:
lbessard
parents: 307
diff changeset
   784
            self.Program = [(ReIndentText(text, len(self.CurrentIndent)), 
228
da7ddaf27cca Bug with indentation in textual languages while error display fixed
lbessard
parents: 227
diff changeset
   785
                            (self.TagName, "body", len(self.CurrentIndent)))]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   786
        elif body_type == "SFC":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   787
            self.IndentRight()
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   788
            for instance in body.getcontentInstances():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   789
                if isinstance(instance, plcopen.sfcObjects_step):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   790
                    self.GenerateSFCStep(instance, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   791
                elif isinstance(instance, plcopen.commonObjects_actionBlock):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   792
                    self.GenerateSFCStepActions(instance, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   793
                elif isinstance(instance, plcopen.sfcObjects_transition):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   794
                    self.GenerateSFCTransition(instance, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   795
                elif isinstance(instance, plcopen.sfcObjects_jumpStep):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   796
                    self.GenerateSFCJump(instance, pou)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   797
            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
   798
                action_name = "COMPUTE_FUNCTION_BLOCKS"
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   799
                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
   800
                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
   801
                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
   802
                self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   803
            self.IndentLeft()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   804
            for initialstep in self.InitialSteps:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
   805
                self.ComputeSFCStep(initialstep)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   806
        else:
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   807
            otherInstances = {"outVariables&coils" : [], "blocks" : [], "connectors" : []}
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   808
            orderedInstances = []
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   809
            for instance in body.getcontentInstances():
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   810
                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
   811
                    executionOrderId = instance.getexecutionOrderId()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   812
                    if executionOrderId > 0:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   813
                        orderedInstances.append((executionOrderId, instance))
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   814
                    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
   815
                        otherInstances["outVariables&coils"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   816
                    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
   817
                        otherInstances["blocks"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   818
                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
   819
                    otherInstances["connectors"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   820
                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
   821
                    otherInstances["outVariables&coils"].append(instance)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   822
            orderedInstances.sort()
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   823
            otherInstances["outVariables&coils"].sort(SortInstances)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   824
            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
   825
            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
   826
            for instance in instances:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   827
                if isinstance(instance, (plcopen.fbdObjects_outVariable, plcopen.fbdObjects_inOutVariable)):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   828
                    connections = instance.connectionPointIn.getconnections()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   829
                    if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   830
                        expression = self.ComputeExpression(body, connections)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   831
                        self.Program += [(self.CurrentIndent, ()),
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   832
                                         (instance.getexpression(), (self.TagName, "io_variable", instance.getlocalId(), "expression")),
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   833
                                         (" := ", ())]
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   834
                        self.Program += expression
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   835
                        self.Program += [(";\n", ())]
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   836
                elif isinstance(instance, plcopen.fbdObjects_block):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   837
                    block_type = instance.gettypeName()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   838
                    self.ParentGenerator.GeneratePouProgram(block_type)
528
7ac133b11321 Fix bug in block with execution control generation fixed
laurent
parents: 527
diff changeset
   839
                    block_infos = self.GetBlockType(block_type, tuple([self.ConnectionTypes.get(variable.connectionPointIn, "ANY") for variable in instance.inputVariables.getvariable() if variable.getformalParameter() != "EN"]))
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   840
                    if block_infos is None:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   841
                        block_infos = self.GetBlockType(block_type)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   842
                    if block_infos is None:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   843
                        raise PLCGenException, _("Undefined block type \"%s\" in \"%s\" POU")%(block_type, self.Name)
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   844
                    block_infos["generate"](self, instance, block_infos, body, None)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   845
                elif isinstance(instance, plcopen.commonObjects_connector):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   846
                    connector = instance.getname()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   847
                    if self.ComputedConnectors.get(connector, None):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   848
                        continue 
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   849
                    self.ComputedConnectors[connector] = self.ComputeExpression(body, instance.connectionPointIn.getconnections())
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   850
                elif isinstance(instance, plcopen.ldObjects_coil):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   851
                    connections = instance.connectionPointIn.getconnections()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   852
                    if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   853
                        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
   854
                        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
   855
                        self.Program += [(self.CurrentIndent, ())]
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   856
                        self.Program += [(instance.getvariable(), coil_info + ("reference",))]
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   857
                        self.Program += [(" := ", ())] + expression + [(";\n", ())]
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   858
                        
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   859
    def FactorizePaths(self, paths):
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   860
        same_paths = {}
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   861
        uncomputed_index = range(len(paths))
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   862
        factorized_paths = []
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   863
        for num, path in enumerate(paths):
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   864
            if type(path) == ListType:
273
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   865
                if len(path) > 1:
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   866
                    str_path = str(path[-1:])
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   867
                    same_paths.setdefault(str_path, [])
273
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   868
                    same_paths[str_path].append((path[:-1], num))
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   869
            else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   870
                factorized_paths.append(path)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   871
                uncomputed_index.remove(num)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   872
        for same_path, elements in same_paths.items():
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   873
            if len(elements) > 1:
273
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   874
                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
   875
                if len(elements_paths) > 1:
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   876
                    factorized_paths.append([tuple(elements_paths)] + eval(same_path))        
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   877
                else:
5b18d98aa4f9 Support for unhandled factorization cases added by fixing bug
lbessard
parents: 269
diff changeset
   878
                    factorized_paths.append(elements_paths + eval(same_path))
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   879
                for path, num in elements:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   880
                    uncomputed_index.remove(num)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   881
        for num in uncomputed_index:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   882
            factorized_paths.append(paths[num])
244
05f6e0d7710c Adding sort in LD factorized paths to avoid combination problem
lbessard
parents: 242
diff changeset
   883
        factorized_paths.sort()
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   884
        return factorized_paths
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   885
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   886
    def GeneratePaths(self, connections, body, order = False):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   887
        paths = []
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   888
        for connection in connections:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   889
            localId = connection.getrefLocalId()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   890
            next = body.getcontentInstance(localId)
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   891
            if isinstance(next, plcopen.ldObjects_leftPowerRail):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
   892
                paths.append(None)
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   893
            elif isinstance(next, (plcopen.fbdObjects_inVariable, plcopen.fbdObjects_inOutVariable)):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   894
                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
   895
            elif isinstance(next, plcopen.fbdObjects_block):
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
   896
                block_type = next.gettypeName()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   897
                self.ParentGenerator.GeneratePouProgram(block_type)
528
7ac133b11321 Fix bug in block with execution control generation fixed
laurent
parents: 527
diff changeset
   898
                block_infos = self.GetBlockType(block_type, tuple([self.ConnectionTypes.get(variable.connectionPointIn, "ANY") for variable in next.inputVariables.getvariable() if variable.getformalParameter() != "EN"]))
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   899
                if block_infos is None:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   900
                    block_infos = self.GetBlockType(block_type)
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   901
                if block_infos is None:
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
   902
                    raise PLCGenException, _("Undefined block type \"%s\" in \"%s\" POU")%(block_type, self.Name)
526
79900abdfa3c Bug when using arithmetic functions (ADD, SUB, MUL, DIV) for TIME datatypes fixed.
laurent
parents: 507
diff changeset
   903
                paths.append(str(block_infos["generate"](self, next, block_infos, body, connection, order)))
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   904
            elif isinstance(next, plcopen.commonObjects_continuation):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   905
                name = next.getname()
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   906
                computed_value = self.ComputedConnectors.get(name, None)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   907
                if computed_value != None:
257
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   908
                    paths.append(str(computed_value))
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   909
                else:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   910
                    connector = None
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   911
                    for instance in body.getcontentInstances():
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   912
                        if isinstance(instance, plcopen.commonObjects_connector) and instance.getname() == name:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   913
                            if connector is not None:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
   914
                                raise PLCGenException, _("More than one connector found corresponding to \"%s\" continuation in \"%s\" POU")%(name, self.Name)
257
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   915
                            connector = instance
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   916
                    if connector is not None:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   917
                        connections = connector.connectionPointIn.getconnections()
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   918
                        if connections is not None:
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   919
                            expression = self.ComputeExpression(body, connections, order)
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   920
                            self.ComputedConnectors[name] = expression
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   921
                            paths.append(str(expression))
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   922
                    else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
   923
                        raise PLCGenException, _("No connector found corresponding to \"%s\" continuation in \"%s\" POU")%(name, self.Name)
257
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   924
            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
   925
                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
   926
                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
   927
                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
   928
                if len(result) > 1:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   929
                    factorized_paths = self.FactorizePaths(result)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   930
                    if len(factorized_paths) > 1:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   931
                        paths.append([variable, tuple(factorized_paths)])
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   932
                    else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   933
                        paths.append([variable] + factorized_paths)
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   934
                elif type(result[0]) == ListType:
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   935
                    paths.append([variable] + result[0])
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   936
                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
   937
                    paths.append([variable, result[0]])
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   938
                else:
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   939
                    paths.append(variable)
257
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   940
            elif isinstance(next, plcopen.ldObjects_coil):
d0a0ffbbd61c Bug on connector-continuation generation fixed
lbessard
parents: 248
diff changeset
   941
                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
   942
        return paths
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   943
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   944
    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
   945
        if type(paths) == TupleType:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   946
            if None in paths:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   947
                return [("TRUE", ())]
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
   948
            else:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   949
                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
   950
                if first:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   951
                    return JoinList([(" OR ", ())], vars)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   952
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   953
                    return [("(", ())] + JoinList([(" OR ", ())], vars) + [(")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   954
        elif type(paths) == ListType:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   955
            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
   956
            return JoinList([(" AND ", ())], vars)
501
edfa63d3c26d Bug in PLCGenerator when Coil is directly connected to LeftPowerRail fixed
pizza
parents: 499
diff changeset
   957
        elif paths is None:
edfa63d3c26d Bug in PLCGenerator when Coil is directly connected to LeftPowerRail fixed
pizza
parents: 499
diff changeset
   958
            return [("TRUE", ())]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   959
        else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   960
            return eval(paths)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   961
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   962
    def ComputeExpression(self, body, connections, order = False):
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   963
        paths = self.GeneratePaths(connections, body, order)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   964
        if len(paths) > 1:
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   965
            factorized_paths = self.FactorizePaths(paths)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   966
            if len(factorized_paths) > 1:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   967
                paths = tuple(factorized_paths)
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   968
            else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   969
                paths = factorized_paths[0]
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   970
        else:
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   971
            paths = paths[0]
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
   972
        return self.ComputePaths(paths, True)
242
5b3e1c4569e6 Adding optimisation on LD expression generated
lbessard
parents: 232
diff changeset
   973
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   974
    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
   975
        if variable.getnegated():
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   976
            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
   977
        else:
269
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   978
            storage = variable.getstorage()
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   979
            if storage in ["set", "reset"]:
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   980
                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
   981
                self.Program += [(" THEN\n  ", ())]
34eff05909b0 Adding support for EN/ENO variables (temporarily disabled, waiting for matiec support)
lbessard
parents: 261
diff changeset
   982
                if storage == "set":
281
eb49f3f511cc Adding comments for deferencing set and reset
lbessard
parents: 280
diff changeset
   983
                    return [("TRUE; (*set*)\n" + self.CurrentIndent + "END_IF", ())]
eb49f3f511cc Adding comments for deferencing set and reset
lbessard
parents: 280
diff changeset
   984
                else:
eb49f3f511cc Adding comments for deferencing set and reset
lbessard
parents: 280
diff changeset
   985
                    return [("FALSE; (*reset*)\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
   986
            edge = variable.getedge()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   987
            if edge == "rising":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   988
                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
   989
            elif edge == "falling":
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   990
                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
   991
        return expression
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   992
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   993
    def AddTrigger(self, edge, expression, var_info):
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   994
        if self.Interface[-1][0] != "VAR" or self.Interface[-1][1] is not None or self.Interface[-1][2]:
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
   995
            self.Interface.append(("VAR", None, False, []))
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   996
        i = 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   997
        name = "%s%d"%(edge, i)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   998
        while self.IsAlreadyDefined(name):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
   999
            i += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1000
            name = "%s%d"%(edge, i)
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
  1001
        self.Interface[-1][3].append((edge, name, None, None))
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1002
        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
  1003
        self.Program += expression
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1004
        self.Program += [(");\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1005
        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
  1006
    
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1007
    def ExtractDivergenceInput(self, divergence, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1008
        connectionPointIn = divergence.getconnectionPointIn()
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1009
        if connectionPointIn:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1010
            connections = connectionPointIn.getconnections()
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1011
            if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1012
                instanceLocalId = connections[0].getrefLocalId()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1013
                body = pou.getbody()
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1014
                if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1015
                    body = body[0]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1016
                return body.getcontentInstance(instanceLocalId)
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1017
        return None
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1018
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1019
    def ExtractConvergenceInputs(self, convergence, pou):
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1020
        instances = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1021
        for connectionPointIn in convergence.getconnectionPointIn():
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1022
            connections = connectionPointIn.getconnections()
499
cecb4369fa42 Bug when trying to generate SFC with unconnected connectors fixed
laurent
parents: 483
diff changeset
  1023
            if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1024
                instanceLocalId = connections[0].getrefLocalId()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1025
                body = pou.getbody()
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1026
                if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1027
                    body = body[0]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1028
                instances.append(body.getcontentInstance(instanceLocalId))
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1029
        return instances
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1030
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1031
    def GenerateSFCStep(self, step, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1032
        step_name = step.getname()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1033
        if step_name not in self.SFCNetworks["Steps"].keys():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1034
            if step.getinitialStep():
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1035
                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
  1036
            step_infos = {"id" : step.getlocalId(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1037
                          "initial" : step.getinitialStep(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1038
                          "transitions" : [], 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1039
                          "actions" : []}
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1040
            if step.connectionPointIn:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1041
                instances = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1042
                connections = step.connectionPointIn.getconnections()
499
cecb4369fa42 Bug when trying to generate SFC with unconnected connectors fixed
laurent
parents: 483
diff changeset
  1043
                if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1044
                    instanceLocalId = connections[0].getrefLocalId()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1045
                    body = pou.getbody()
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1046
                    if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1047
                        body = body[0]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1048
                    instance = body.getcontentInstance(instanceLocalId)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1049
                    if isinstance(instance, plcopen.sfcObjects_transition):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1050
                        instances.append(instance)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1051
                    elif isinstance(instance, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1052
                        instances.extend(self.ExtractConvergenceInputs(instance, pou))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1053
                    elif isinstance(instance, plcopen.sfcObjects_simultaneousDivergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1054
                        transition = self.ExtractDivergenceInput(instance, pou)
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1055
                        if transition:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1056
                            if isinstance(transition, plcopen.sfcObjects_transition):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1057
                                instances.append(transition)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1058
                            elif isinstance(transition, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1059
                                instances.extend(self.ExtractConvergenceInputs(transition, pou))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1060
                for instance in instances:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1061
                    self.GenerateSFCTransition(instance, pou)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1062
                    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
  1063
                        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
  1064
                        self.SFCNetworks["Transitions"][instance]["to"].append([(step_name, target_info)])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1065
            self.SFCNetworks["Steps"][step_name] = step_infos
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1066
    
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1067
    def GenerateSFCJump(self, jump, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1068
        jump_target = jump.gettargetName()
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1069
        if jump.connectionPointIn:
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1070
            instances = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1071
            connections = jump.connectionPointIn.getconnections()
499
cecb4369fa42 Bug when trying to generate SFC with unconnected connectors fixed
laurent
parents: 483
diff changeset
  1072
            if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1073
                instanceLocalId = connections[0].getrefLocalId()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1074
                body = pou.getbody()
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1075
                if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1076
                    body = body[0]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1077
                instance = body.getcontentInstance(instanceLocalId)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1078
                if isinstance(instance, plcopen.sfcObjects_transition):
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1079
                    instances.append(instance)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1080
                elif isinstance(instance, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1081
                    instances.extend(self.ExtractConvergenceInputs(instance, pou))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1082
                elif isinstance(instance, plcopen.sfcObjects_simultaneousDivergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1083
                    transition = self.ExtractDivergenceInput(instance, pou)
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1084
                    if transition:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1085
                        if isinstance(transition, plcopen.sfcObjects_transition):
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1086
                            instances.append(transition)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1087
                        elif isinstance(transition, plcopen.sfcObjects_selectionConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1088
                            instances.extend(self.ExtractConvergenceInputs(transition, pou))
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1089
            for instance in instances:
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1090
                self.GenerateSFCTransition(instance, pou)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1091
                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
  1092
                    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
  1093
                    self.SFCNetworks["Transitions"][instance]["to"].append([(jump_target, target_info)])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1094
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1095
    def GenerateSFCStepActions(self, actionBlock, pou):
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1096
        connections = actionBlock.connectionPointIn.getconnections()
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1097
        if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1098
            stepLocalId = connections[0].getrefLocalId()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1099
            body = pou.getbody()
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1100
            if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1101
                body = body[0]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1102
            step = body.getcontentInstance(stepLocalId)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1103
            self.GenerateSFCStep(step, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1104
            step_name = step.getname()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1105
            if step_name in self.SFCNetworks["Steps"].keys():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1106
                actions = actionBlock.getactions()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1107
                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
  1108
                    action_infos = {"id" : actionBlock.getlocalId(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1109
                                    "qualifier" : action["qualifier"], 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1110
                                    "content" : action["value"],
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1111
                                    "num" : i}
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1112
                    if "duration" in action:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1113
                        action_infos["duration"] = action["duration"]
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1114
                    if "indicator" in action:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1115
                        action_infos["indicator"] = action["indicator"]
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1116
                    if action["type"] == "reference":
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1117
                        self.GenerateSFCAction(action["value"], pou)
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
  1118
                    else:
168
fb500cc79164 Adding support for structure variable list generation module in matiec
lbessard
parents: 151
diff changeset
  1119
                        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
  1120
                        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
  1121
                            (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
  1122
                            ("\n", ())], ())
46
4379e98a30aa Bug on SFC generation fixed
lbessard
parents: 37
diff changeset
  1123
                        action_infos["content"] = action_name
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1124
                    self.SFCNetworks["Steps"][step_name]["actions"].append(action_infos)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1125
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1126
    def GenerateSFCAction(self, action_name, pou):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1127
        if action_name not in self.SFCNetworks["Actions"].keys():
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1128
            actionContent = pou.getaction(action_name)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1129
            if actionContent:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1130
                previous_tagname = self.TagName
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1131
                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
  1132
                self.ComputeProgram(actionContent)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1133
                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
  1134
                self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1135
                self.TagName = previous_tagname
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1136
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1137
    def GenerateSFCTransition(self, transition, pou):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1138
        if transition not in self.SFCNetworks["Transitions"].keys():
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1139
            steps = []
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1140
            connections = transition.connectionPointIn.getconnections()
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1141
            if connections is not None and len(connections) == 1:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1142
                instanceLocalId = connections[0].getrefLocalId()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1143
                body = pou.getbody()
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1144
                if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1145
                    body = body[0]
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1146
                instance = body.getcontentInstance(instanceLocalId)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1147
                if isinstance(instance, plcopen.sfcObjects_step):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1148
                    steps.append(instance)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1149
                elif isinstance(instance, plcopen.sfcObjects_selectionDivergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1150
                    step = self.ExtractDivergenceInput(instance, pou)
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1151
                    if step:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1152
                        if isinstance(step, plcopen.sfcObjects_step):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1153
                            steps.append(step)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1154
                        elif isinstance(step, plcopen.sfcObjects_simultaneousConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1155
                            steps.extend(self.ExtractConvergenceInputs(step, pou))
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1156
                elif isinstance(instance, plcopen.sfcObjects_simultaneousConvergence):
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1157
                    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
  1158
            transition_infos = {"id" : transition.getlocalId(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1159
                                "priority": transition.getpriority(), 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1160
                                "from": [], 
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1161
                                "to" : []}
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1162
            transitionValues = transition.getconditionContent()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1163
            if transitionValues["type"] == "inline":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1164
                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
  1165
                                               (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
  1166
                                               (";\n", ())]
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
  1167
            elif transitionValues["type"] == "reference":
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1168
                transitionContent = pou.gettransition(transitionValues["value"])
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1169
                transitionType = transitionContent.getbodyType()
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1170
                transitionBody = transitionContent.getbody()
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1171
                previous_tagname = self.TagName
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1172
                self.TagName = self.ParentGenerator.Controler.ComputePouTransitionName(self.Name, transitionValues["value"])
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1173
                if transitionType == "IL":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1174
                    transition_infos["content"] = [(":\n", ()),
228
da7ddaf27cca Bug with indentation in textual languages while error display fixed
lbessard
parents: 227
diff changeset
  1175
                                                   (ReIndentText(transitionBody.gettext(), len(self.CurrentIndent)), (self.TagName, "body", len(self.CurrentIndent)))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1176
                elif transitionType == "ST":
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1177
                    transition_infos["content"] = [("\n", ()),
228
da7ddaf27cca Bug with indentation in textual languages while error display fixed
lbessard
parents: 227
diff changeset
  1178
                                                   (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
  1179
                else:
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1180
                    for instance in transitionBody.getcontentInstances():
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1181
                        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
  1182
                            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
  1183
                            connections = instance.connectionPointIn.getconnections()
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1184
                            if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1185
                                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
  1186
                                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
  1187
                                self.SFCComputedBlocks += self.Program
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1188
                                self.Program = []
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1189
                self.TagName = previous_tagname
66
fd138fc77510 Adding support for generating network and rung connected to transitions into SFC
lbessard
parents: 58
diff changeset
  1190
            elif transitionValues["type"] == "connection":
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1191
                body = pou.getbody()
389
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1192
                if isinstance(body, ListType):
6a72016d721a Adding support for plcopen version 2.01
laurent
parents: 370
diff changeset
  1193
                    body = body[0]
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1194
                connections = transition.getconnections()
248
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1195
                if connections is not None:
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1196
                    expression = self.ComputeExpression(body, connections)
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1197
                    transition_infos["content"] = [("\n%s:= "%self.CurrentIndent, ())] + expression + [(";\n", ())]
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1198
                    self.SFCComputedBlocks += self.Program
f7df265edd54 Problem with multi-connection on block in LD fixed
lbessard
parents: 244
diff changeset
  1199
                    self.Program = []
2
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1200
            for step in steps:
93bc4c2cf376 PLCGenerator finished
lbessard
parents: 1
diff changeset
  1201
                self.GenerateSFCStep(step, pou)
151
aaa80b48bead Adding support for the new version of xmlclass
lbessard
parents: 141
diff changeset
  1202
                step_name = step.getname()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1203
                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
  1204
                    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
  1205
                    self.SFCNetworks["Steps"][step_name]["transitions"].append(transition)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1206
            self.SFCNetworks["Transitions"][transition] = transition_infos
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1207
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1208
    def ComputeSFCStep(self, step_name):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1209
        if step_name in self.SFCNetworks["Steps"].keys():
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1210
            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
  1211
            self.Program += [(self.CurrentIndent, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1212
            if step_infos["initial"]:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1213
                self.Program += [("INITIAL_", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1214
            self.Program += [("STEP ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1215
                             (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
  1216
                             (":\n", ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1217
            actions = []
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1218
            self.IndentRight()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1219
            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
  1220
                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
  1221
                    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
  1222
                else:
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1223
                    action_info = ()
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1224
                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
  1225
                self.Program += [(self.CurrentIndent, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1226
                                 (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
  1227
                                 ("(", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1228
                                 (action_infos["qualifier"], action_info + ("qualifier",))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1229
                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
  1230
                    self.Program += [(", ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1231
                                     (action_infos["duration"], action_info + ("duration",))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1232
                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
  1233
                    self.Program += [(", ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1234
                                     (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
  1235
                self.Program += [(");\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1236
            self.IndentLeft()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1237
            self.Program += [("%sEND_STEP\n\n"%self.CurrentIndent, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1238
            for action in actions:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1239
                self.ComputeSFCAction(action)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1240
            for transition in step_infos["transitions"]:
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1241
                self.ComputeSFCTransition(transition)
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1242
                
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1243
    def ComputeSFCAction(self, action_name):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1244
        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
  1245
            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
  1246
            self.Program += [("%sACTION "%self.CurrentIndent, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1247
                             (action_name, action_info),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1248
                             (" :\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1249
            self.Program += action_content
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1250
            self.Program += [("%sEND_ACTION\n\n"%self.CurrentIndent, ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1251
    
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1252
    def ComputeSFCTransition(self, transition):
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1253
        if transition in self.SFCNetworks["Transitions"].keys():
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1254
            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
  1255
            self.Program += [("%sTRANSITION"%self.CurrentIndent, ())]
80
c798a68c5560 Lots of bugs fixed
lbessard
parents: 78
diff changeset
  1256
            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
  1257
                self.Program += [(" (PRIORITY := ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1258
                                 ("%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
  1259
                                 (")", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1260
            self.Program += [(" FROM ", ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1261
            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
  1262
                self.Program += [("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1263
                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
  1264
                self.Program += [(")", ())]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1265
            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
  1266
                self.Program += transition_infos["from"][0]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1267
            else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
  1268
                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
  1269
            self.Program += [(" TO ", ())]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1270
            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
  1271
                self.Program += [("(", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1272
                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
  1273
                self.Program += [(")", ())]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1274
            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
  1275
                self.Program += transition_infos["to"][0]
201
d5b778dab4b0 Block evaluation order fixed
lbessard
parents: 194
diff changeset
  1276
            else:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
  1277
                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
  1278
            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
  1279
            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
  1280
            for [(step_name, step_infos)] in transition_infos["to"]:
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1281
                self.ComputeSFCStep(step_name)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1282
    
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1283
    def GenerateProgram(self, pou):
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1284
        self.ComputeInterface(pou)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1285
        self.ComputeConnectionTypes(pou)
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1286
        self.ComputeProgram(pou)
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1287
        
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1288
        program = [("%s "%self.Type, ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1289
                   (self.Name, (self.TagName, "name"))]
1
e9d01d824086 SFC textual programs generation completed
lbessard
parents: 0
diff changeset
  1290
        if self.ReturnType:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1291
            program += [(" : ", ()),
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1292
                        (self.ReturnType, (self.TagName, "return"))]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1293
        program += [("\n", ())]
214
a88b377f75cb Adding tests for detecting POUs with no variables or/and no body
lbessard
parents: 208
diff changeset
  1294
        if len(self.Interface) == 0:
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
  1295
            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
  1296
        if len(self.Program) == 0 :
391
07447ee3538e Adding support for internationalization
laurent
parents: 389
diff changeset
  1297
            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
  1298
        var_number = 0
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
  1299
        for list_type, option, located, variables in self.Interface:
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
  1300
            variable_type = errorVarTypes.get(list_type, "var_local")
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1301
            program += [("  %s"%list_type, ())]
483
779a519f78f2 Replace Retain and Constant column in VariablePanel by Option and add the option Non-Retain
laurent
parents: 408
diff changeset
  1302
            if option is not None:
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
  1303
                program += [(" %s"%option, (self.TagName, variable_type, (var_number, var_number + len(variables)), option.lower()))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1304
            program += [("\n", ())]
30
768cf2a6b0b1 Bug on ressource generation fixed
lbessard
parents: 29
diff changeset
  1305
            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
  1306
                program += [("    ", ())]
93
c3c24b979a4d Add support for custom block declaration
lbessard
parents: 80
diff changeset
  1307
                if var_name:
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
  1308
                    program += [(var_name, (self.TagName, variable_type, var_number, "name")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1309
                                (" ", ())]
30
768cf2a6b0b1 Bug on ressource generation fixed
lbessard
parents: 29
diff changeset
  1310
                if var_address != None:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1311
                    program += [("AT ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
  1312
                                (var_address, (self.TagName, variable_type, var_number, "address")),
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1313
                                (" ", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1314
                program += [(": ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
  1315
                            (var_type, (self.TagName, variable_type, var_number, "type"))]
28
fc23e1f415d8 Adding support for concurrent overriden standard function
lbessard
parents: 6
diff changeset
  1316
                if var_initial != None:
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1317
                    program += [(" := ", ()),
566
6014ef82a98a Adding support for searching text or regular expression in whole project
laurent
parents: 558
diff changeset
  1318
                                (self.ParentGenerator.ComputeValue(var_initial, var_type), (self.TagName, variable_type, var_number, "initial"))]
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1319
                program += [(";\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1320
                var_number += 1
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1321
            program += [("  END_VAR\n", ())]
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1322
        program += [("\n", ())]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1323
        program += self.Program
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1324
        program += [("END_%s\n\n"%self.Type, ())]
0
b622defdfd98 PLCOpenEditor initial commit. 31/01/07.
etisserant
parents:
diff changeset
  1325
        return program
71
0578bc212c20 Adding Dialog for Step in free drawing
lbessard
parents: 70
diff changeset
  1326
307
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
  1327
def GenerateCurrentProgram(controler, project, errors, warnings):
fd1f6ae26d4f Adding support for cancelling code generation of function with no input connected
lbessard
parents: 295
diff changeset
  1328
    generator = ProgramGenerator(controler, project, errors, warnings)
227
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1329
    generator.GenerateProgram()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1330
    return generator.GetGeneratedProgram()
c6fee379d446 Adding informations to program chunks to allow display of compiling errors from matiec
lbessard
parents: 215
diff changeset
  1331