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