objdictgen/gen_cfile.py
author greg
Thu, 20 Nov 2008 07:51:14 +0100
changeset 527 7d5c74cc8f91
parent 526 1607d4afce20
child 547 79a24eb3ba28
permissions -rw-r--r--
- Fix bug with relative path when node opened from command line
- Warning dialog when domain mapped variables not initialized
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
#!/usr/bin/env python
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
73
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     3
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     4
#This file is part of CanFestival, a library implementing CanOpen Stack. 
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     5
#
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     6
#Copyright (C): Edouard TISSERANT and Francis DUPIN
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     7
#
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     8
#See COPYING file for copyrights details.
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
     9
#
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    10
#This library is free software; you can redistribute it and/or
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    11
#modify it under the terms of the GNU Lesser General Public
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    12
#License as published by the Free Software Foundation; either
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    13
#version 2.1 of the License, or (at your option) any later version.
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    14
#
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    15
#This library is distributed in the hope that it will be useful,
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    16
#but WITHOUT ANY WARRANTY; without even the implied warranty of
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    17
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    18
#Lesser General Public License for more details.
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    19
#
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    20
#You should have received a copy of the GNU Lesser General Public
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    21
#License along with this library; if not, write to the Free Software
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
    22
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
from node import *
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
from types import *
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
import re, os
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
word_model = re.compile('([a-zA-Z_0-9]*)')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    30
type_model = re.compile('([\_A-Z]*)([0-9]*)')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    31
range_model = re.compile('([\_A-Z]*)([0-9]*)\[([\-0-9]*)-([\-0-9]*)\]')
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
categories = [("SDO_SVR", 0x1200, 0x127F), ("SDO_CLT", 0x1280, 0x12FF),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
              ("PDO_RCV", 0x1400, 0x15FF), ("PDO_RCV_MAP", 0x1600, 0x17FF),
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
              ("PDO_TRS", 0x1800, 0x19FF), ("PDO_TRS_MAP", 0x1A00, 0x1BFF)]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
index_categories = ["firstIndex", "lastIndex"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
generated_tag = """\n/* File generated by gen_cfile.py. Should not be modified. */\n"""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    40
internal_types = {}
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    41
default_string_size = 10
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    42
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
# Format a string for making a C++ variable
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
def FormatName(name):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
    wordlist = [word for word in word_model.findall(name) if word != '']
227
f76c64f66097 Bugs on cfile generation fixed
lbessard
parents: 224
diff changeset
    46
    return "_".join(wordlist)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
# Extract the informations from a given type name
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    49
def GetValidTypeInfos(typename, items=[]):
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    50
    if typename in internal_types:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    51
        return internal_types[typename]
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    52
    else:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    53
        result = type_model.match(typename)
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    54
        if result:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    55
            values = result.groups()
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    56
            if values[0] == "UNSIGNED" and int(values[1]) in [i * 8 for i in xrange(1, 9)]:
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    57
                typeinfos = ("UNS%s"%values[1], None, "uint%s"%values[1], True)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    58
            elif values[0] == "INTEGER" and int(values[1]) in [i * 8 for i in xrange(1, 9)]:
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    59
                typeinfos = ("INTEGER%s"%values[1], None, "int%s"%values[1], False)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    60
            elif values[0] == "REAL" and int(values[1]) in (32, 64):
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    61
                typeinfos = ("%s%s"%(values[0], values[1]), None, "real%s"%values[1], False)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    62
            elif values[0] == "VISIBLE_STRING":
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    63
                size = default_string_size
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    64
                for item in items:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    65
                    size = max(size, len(item))
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    66
                if values[1] != "":
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    67
                    size = max(size, int(values[1]))
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    68
                typeinfos = ("UNS8", size, "visible_string", False)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    69
            elif values[0] == "DOMAIN":
527
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 526
diff changeset
    70
                size = 0
420
a42335b39bf4 Bug on domain size calculation fixed
lbessard
parents: 418
diff changeset
    71
                for item in items:
a42335b39bf4 Bug on domain size calculation fixed
lbessard
parents: 418
diff changeset
    72
                    size = max(size, len(item))
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
    73
                typeinfos = ("UNS8", size, "domain", False)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    74
            elif values[0] == "BOOLEAN":
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
    75
                typeinfos = ("UNS8", None, "boolean", False)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    76
            else:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    77
                raise ValueError, """!!! %s isn't a valid type for CanFestival."""%typename
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
    78
            if typeinfos[2] not in ["visible_string", "domain"]:
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
    79
                internal_types[typename] = typeinfos
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    80
        else:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    81
            raise ValueError, """!!! %s isn't a valid type for CanFestival."""%typename
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    82
    return typeinfos
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    84
def ComputeValue(type, value):
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    85
    if type == "visible_string":
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    86
        return "\"%s\""%value, ""
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    87
    elif type == "domain":
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    88
        return "\"%s\""%''.join(["\\x%2.2x"%ord(char) for char in value]), ""
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    89
    elif type.startswith("real"):
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    90
        return "%f"%value, ""
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    91
    else:
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    92
        return "0x%X"%value, "\t/* %s */"%str(value)
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    93
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
def WriteFile(filepath, content):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
    cfile = open(filepath,"w")
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
    cfile.write(content)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
    cfile.close()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    98
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
    99
def GenerateFileContent(Node, headerfilepath, pointers_dict = {}):
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   100
    """
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   101
    pointers_dict = {(Idx,Sidx):"VariableName",...}
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   102
    """
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
    global type
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   104
    global internal_types
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   105
    global default_string_size
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   106
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
    texts = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
    texts["maxPDOtransmit"] = 0
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   109
    texts["NodeName"] = Node.GetNodeName()
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   110
    texts["NodeID"] = Node.GetNodeID()
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   111
    texts["NodeType"] = Node.GetNodeType()
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   112
    texts["Description"] = Node.GetNodeDescription()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
    texts["iam_a_slave"] = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
    if (texts["NodeType"] == "slave"):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
        texts["iam_a_slave"] = 1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
    
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   117
    default_string_size = Node.GetDefaultStringSize()
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   118
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
    # Compiling lists of indexes
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   120
    rangelist = [idx for idx in Node.GetIndexes() if 0 <= idx <= 0x260]
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   121
    listIndex = [idx for idx in Node.GetIndexes() if 0x1000 <= idx <= 0xFFFF]
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   122
    communicationlist = [idx for idx in Node.GetIndexes() if 0x1000 <= idx <= 0x11FF]
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   123
    sdolist = [idx for idx in Node.GetIndexes() if 0x1200 <= idx <= 0x12FF]
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   124
    pdolist = [idx for idx in Node.GetIndexes() if 0x1400 <= idx <= 0x1BFF]
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   125
    variablelist = [idx for idx in Node.GetIndexes() if 0x2000 <= idx <= 0xBFFF]
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   128
#                       Declaration of the value range types
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   129
#-------------------------------------------------------------------------------    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   130
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
    valueRangeContent = ""
286
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   132
    strDefine = "\n#define valueRange_EMC 0x9F /* Type for index 0x1003 subindex 0x00 (only set of value 0 is possible) */"
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   133
    strSwitch = """    case valueRange_EMC:
288
26015ee2c2c9 Modified codes in MSG_ERR and MSG_WAR in emcy.c
luis
parents: 287
diff changeset
   134
      if (*(UNS8*)value != (UNS8)0) return OD_VALUE_RANGE_EXCEEDED;
286
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   135
      break;\n"""
313
fed411af774a Adding standard default value to index 0x1014
lbessard
parents: 289
diff changeset
   136
    internal_types["valueRange_EMC"] = ("UNS8", "", "valueRange_EMC", True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
    num = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
    for index in rangelist:
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   139
        rangename = Node.GetEntryName(index)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
        result = range_model.match(rangename)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
        if result:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
            num += 1
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   143
            typeindex = Node.GetEntry(index, 1)
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   144
            typename = Node.GetTypeName(typeindex)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
            typeinfos = GetValidTypeInfos(typename)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   146
            internal_types[rangename] = (typeinfos[0], typeinfos[1], "valueRange_%d"%num)
289
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   147
            minvalue = Node.GetEntry(index, 2)
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   148
            maxvalue = Node.GetEntry(index, 3)
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   149
            strDefine += "\n#define valueRange_%d 0x%02X /* Type %s, %s < value < %s */"%(num,index,typeinfos[0],str(minvalue),str(maxvalue))
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   150
            strSwitch += "    case valueRange_%d:\n"%(num)
313
fed411af774a Adding standard default value to index 0x1014
lbessard
parents: 289
diff changeset
   151
            if typeinfos[3] and minvalue <= 0:
289
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   152
                strSwitch += "      /* Negative or null low limit ignored because of unsigned type */;\n"
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   153
            else:
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   154
                strSwitch += "      if (*(%s*)value < (%s)%s) return OD_VALUE_TOO_LOW;\n"%(typeinfos[0],typeinfos[0],str(minvalue))
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   155
            strSwitch += "      if (*(%s*)value > (%s)%s) return OD_VALUE_TOO_HIGH;\n"%(typeinfos[0],typeinfos[0],str(maxvalue))
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   156
            strSwitch += "    break;\n"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
    valueRangeContent += strDefine
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
    valueRangeContent += "\nUNS32 %(NodeName)s_valueRangeTest (UNS8 typeValue, void * value)\n{"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
    valueRangeContent += "\n  switch (typeValue) {\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
    valueRangeContent += strSwitch
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
    valueRangeContent += "  }\n  return 0;\n}\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   165
#            Creation of the mapped variables and object dictionary
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
    mappedVariableContent = ""
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   169
    pointedVariableContent = ""
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   170
    strDeclareHeader = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
    strDeclareCallback = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
    indexContents = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   173
    indexCallbacks = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   174
    for index in listIndex:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   175
        texts["index"] = index
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
        strIndex = ""
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   177
        entry_infos = Node.GetEntryInfos(index)
229
b24906340673 Fixed unicode encoding in gen_cfile.py
etisserant
parents: 227
diff changeset
   178
        texts["EntryName"] = entry_infos["name"].encode('ascii','replace')
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   179
        values = Node.GetEntry(index)
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   180
        callbacks = Node.HasEntryCallbacks(index)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
        if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   182
            strIndex += "\n/* index 0x%(index)04X :   Mapped variable %(EntryName)s */\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   183
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   184
            strIndex += "\n/* index 0x%(index)04X :   %(EntryName)s. */\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   185
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   186
        # Entry type is VAR
515
62b6520332e9 Some instance type test improved
lbessard
parents: 512
diff changeset
   187
        if not isinstance(values, ListType):
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   188
            subentry_infos = Node.GetSubentryInfos(index, 0)
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   189
            typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   190
            typeinfos = GetValidTypeInfos(typename, [values])
527
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 526
diff changeset
   191
            if typename is "DOMAIN" and index in variablelist:
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 526
diff changeset
   192
                if not typeinfos[1]:
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 526
diff changeset
   193
                    raise ValueError("\nDomain variable not initialized\nindex : 0x%04X\nsubindex 0x00"%index)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   194
            texts["subIndexType"] = typeinfos[0]
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   195
            if typeinfos[1] is not None:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   196
                texts["suffixe"] = "[%d]"%typeinfos[1]
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   197
            else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   198
                texts["suffixe"] = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   199
            texts["value"], texts["comment"] = ComputeValue(typeinfos[2], values)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   200
            if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   201
                texts["name"] = FormatName(subentry_infos["name"])
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   202
                strDeclareHeader += "extern %(subIndexType)s %(name)s%(suffixe)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x00*/\n"%texts
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   203
                mappedVariableContent += "%(subIndexType)s %(name)s%(suffixe)s = %(value)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x00 */\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   204
            else:
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   205
                strIndex += "                    %(subIndexType)s %(NodeName)s_obj%(index)04X%(suffixe)s = %(value)s;%(comment)s\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   206
            values = [values]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   207
        else:
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   208
            subentry_infos = Node.GetSubentryInfos(index, 0)
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   209
            typename = Node.GetTypeName(subentry_infos["type"])
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   210
            typeinfos = GetValidTypeInfos(typename)
286
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   211
            if index == 0x1003:
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   212
                texts["value"] = 0
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   213
            else:
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   214
                texts["value"] = values[0]
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   215
            texts["subIndexType"] = typeinfos[0]
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   216
            strIndex += "                    %(subIndexType)s %(NodeName)s_highestSubIndex_obj%(index)04X = %(value)d; /* number of subindex - 1*/\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   217
            
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   218
            # Entry type is RECORD
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   219
            if entry_infos["struct"] & OD_IdenticalSubindexes:
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   220
                subentry_infos = Node.GetSubentryInfos(index, 1)
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   221
                typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   222
                typeinfos = GetValidTypeInfos(typename, values[1:])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   223
                texts["subIndexType"] = typeinfos[0]
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   224
                if typeinfos[1] is not None:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   225
                    texts["suffixe"] = "[%d]"%typeinfos[1]
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
   226
                    texts["type_suffixe"] = "*"
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   227
                else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   228
                    texts["suffixe"] = ""
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
   229
                    texts["type_suffixe"] = ""
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   230
                texts["length"] = values[0]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   231
                if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   232
                    texts["name"] = FormatName(entry_infos["name"])
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
   233
                    strDeclareHeader += "extern %(subIndexType)s%(type_suffixe)s %(name)s[];\t\t/* Mapped at index 0x%(index)04X, subindex 0x01 - 0x%(length)02X */\n"%texts
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
   234
                    mappedVariableContent += "%(subIndexType)s%(type_suffixe)s %(name)s[] =\t\t/* Mapped at index 0x%(index)04X, subindex 0x01 - 0x%(length)02X */\n  {\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   235
                    for subIndex, value in enumerate(values):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   236
                        sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   237
                        if subIndex > 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   238
                            if subIndex == len(values)-1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   239
                                sep = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   240
                            value, comment = ComputeValue(typeinfos[2], value)
527
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 526
diff changeset
   241
                            if len(value) is 2 and typename is "DOMAIN":
7d5c74cc8f91 - Fix bug with relative path when node opened from command line
greg
parents: 526
diff changeset
   242
                                raise ValueError("\nDomain variable not initialized\nindex : 0x%04X\nsubindex 0x%02X"%(index, subIndex))
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   243
                            mappedVariableContent += "    %s%s%s\n"%(value, sep, comment)
28
e169fe15521b *** empty log message ***
lbessard
parents: 5
diff changeset
   244
                    mappedVariableContent += "  };\n"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   245
                else:
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
   246
                    strIndex += "                    %(subIndexType)s%(type_suffixe)s %(NodeName)s_obj%(index)04X[] = \n                    {\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   247
                    for subIndex, value in enumerate(values):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   248
                        sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   249
                        if subIndex > 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   250
                            if subIndex == len(values)-1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   251
                                sep = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   252
                            value, comment = ComputeValue(typeinfos[2], value)
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   253
                            strIndex += "                      %s%s%s\n"%(value, sep, comment)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   254
                    strIndex += "                    };\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   255
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   256
                
66
94212a58c097 gen_cfile.py modified for avoiding possible conflict in mapped variable names
lbessard
parents: 64
diff changeset
   257
                texts["parent"] = FormatName(entry_infos["name"])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   258
                # Entry type is ARRAY
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   259
                for subIndex, value in enumerate(values):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   260
                    texts["subIndex"] = subIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   261
                    if subIndex > 0:
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   262
                        subentry_infos = Node.GetSubentryInfos(index, subIndex)
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   263
                        typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   264
                        typeinfos = GetValidTypeInfos(typename, [values[subIndex]])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   265
                        texts["subIndexType"] = typeinfos[0]
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   266
                        if typeinfos[1] is not None:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   267
                            texts["suffixe"] = "[%d]"%typeinfos[1]
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   268
                        else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   269
                            texts["suffixe"] = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   270
                        texts["value"], texts["comment"] = ComputeValue(typeinfos[2], value)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   271
                        texts["name"] = FormatName(subentry_infos["name"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   272
                        if index in variablelist:
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   273
                            strDeclareHeader += "extern %(subIndexType)s %(parent)s_%(name)s%(suffixe)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x%(subIndex)02X */\n"%texts
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   274
                            mappedVariableContent += "%(subIndexType)s %(parent)s_%(name)s%(suffixe)s = %(value)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x%(subIndex)02X */\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   275
                        else:
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   276
                            strIndex += "                    %(subIndexType)s %(NodeName)s_obj%(index)04X_%(name)s%(suffixe)s = %(value)s;%(comment)s\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   277
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   278
        # Generating Dictionary C++ entry
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   279
        if callbacks:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   280
            if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   281
                name = FormatName(entry_infos["name"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   282
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   283
                name = "%(NodeName)s_Index%(index)04X"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   284
            strIndex += "                    ODCallback_t %s_callbacks[] = \n                     {\n"%name
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   285
            for subIndex in xrange(len(values)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   286
                strIndex += "                       NULL,\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   287
            strIndex += "                     };\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   288
            indexCallbacks[index] = "*callbacks = %s_callbacks; "%name
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   289
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   290
            indexCallbacks[index] = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   291
        strIndex += "                    subindex %(NodeName)s_Index%(index)04X[] = \n                     {\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   292
        for subIndex in xrange(len(values)):
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   293
            subentry_infos = Node.GetSubentryInfos(index, subIndex)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   294
            if subIndex < len(values) - 1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   295
                sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   296
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   297
                sep = ""
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   298
            typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   299
            if entry_infos["struct"] & OD_IdenticalSubindexes:
526
1607d4afce20 Fix bug when generate od cfile with a table of visible_string
greg
parents: 515
diff changeset
   300
                typeinfos = GetValidTypeInfos(typename, values[1:])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   301
            else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   302
                typeinfos = GetValidTypeInfos(typename, [values[subIndex]])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   303
            if subIndex == 0:
286
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   304
                if index == 0x1003:
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   305
                    typeinfos = GetValidTypeInfos("valueRange_EMC")
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   306
                if entry_infos["struct"] & OD_MultipleSubindexes:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   307
                    name = "%(NodeName)s_highestSubIndex_obj%(index)04X"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   308
                elif index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   309
                    name = FormatName(subentry_infos["name"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   310
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   311
                    name = FormatName("%s_obj%04X"%(texts["NodeName"], texts["index"]))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   312
            elif entry_infos["struct"] & OD_IdenticalSubindexes:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   313
                if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   314
                    name = "%s[%d]"%(FormatName(entry_infos["name"]), subIndex - 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   315
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   316
                    name = "%s_obj%04X[%d]"%(texts["NodeName"], texts["index"], subIndex - 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   317
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   318
                if index in variablelist:
70
f36f09f08b62 Bug corrected on gen_cfile
lbessard
parents: 66
diff changeset
   319
                    name = FormatName("%s_%s"%(entry_infos["name"],subentry_infos["name"]))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   320
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   321
                    name = "%s_obj%04X_%s"%(texts["NodeName"], texts["index"], FormatName(subentry_infos["name"]))
421
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   322
            if typeinfos[2] == "visible_string":
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   323
                sizeof = str(max(len(values[subIndex]), default_string_size))
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   324
            elif typeinfos[2] == "domain":
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   325
                sizeof = str(len(values[subIndex]))
176
5d57fe1e3a5b Support for DCF (DS-302)
greg
parents: 160
diff changeset
   326
            else:
5d57fe1e3a5b Support for DCF (DS-302)
greg
parents: 160
diff changeset
   327
                sizeof = "sizeof (%s)"%typeinfos[0]
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   328
            params = Node.GetParamsEntry(index, subIndex)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   329
            if params["save"]:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   330
                save = "|TO_BE_SAVE"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   331
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   332
                save = ""
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   333
            strIndex += "                       { %s%s, %s, %s, (void*)&%s }%s\n"%(subentry_infos["access"].upper(),save,typeinfos[2],sizeof,name,sep)
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   334
            pointer_name = pointers_dict.get((index, subIndex), None)
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   335
            if pointer_name is not None:
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   336
                pointedVariableContent += "%s* %s = &%s;\n"%(typeinfos[0], pointer_name, name)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   337
        strIndex += "                     };\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   338
        indexContents[index] = strIndex
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   339
        
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   340
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   341
#                     Declaration of Particular Parameters
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   342
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   343
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   344
    if 0x1003 not in communicationlist:
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   345
        entry_infos = Node.GetEntryInfos(0x1003)
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   346
        texts["EntryName"] = entry_infos["name"]
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   347
        indexContents[0x1003] = """\n/* index 0x1003 :   %(EntryName)s */
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   348
                    UNS8 %(NodeName)s_highestSubIndex_obj1003 = 0; /* number of subindex - 1*/
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   349
                    UNS32 %(NodeName)s_obj1003[] = 
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   350
                    {
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   351
                      0x0	/* 0 */
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   352
                    };
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   353
                    ODCallback_t %(NodeName)s_Index1003_callbacks[] = 
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   354
                     {
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   355
                       NULL,
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   356
                       NULL,
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   357
                     };
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   358
                    subindex %(NodeName)s_Index1003[] = 
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   359
                     {
286
85d5361179f3 Adding support for restricting user to only dynamically set 0 to index 0x1003 subindex 0x00 in gen_cfile.py
lbessard
parents: 284
diff changeset
   360
                       { RW, valueRange_EMC, sizeof (UNS8), (void*)&%(NodeName)s_highestSubIndex_obj1003 },
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   361
                       { RO, uint32, sizeof (UNS32), (void*)&%(NodeName)s_obj1003[0] }
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   362
                     };
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   363
"""%texts
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   364
261
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   365
    if 0x1005 not in communicationlist:
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   366
        entry_infos = Node.GetEntryInfos(0x1005)
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   367
        texts["EntryName"] = entry_infos["name"]
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   368
        indexContents[0x1005] = """\n/* index 0x1005 :   %(EntryName)s */
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   369
                    UNS32 %(NodeName)s_obj1005 = 0x0;   /* 0 */
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   370
"""%texts
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   371
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   372
    if 0x1006 not in communicationlist:
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   373
        entry_infos = Node.GetEntryInfos(0x1006)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   374
        texts["EntryName"] = entry_infos["name"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   375
        indexContents[0x1006] = """\n/* index 0x1006 :   %(EntryName)s */
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   376
                    UNS32 %(NodeName)s_obj1006 = 0x0;   /* 0 */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   377
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   378
314
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   379
    if 0x1014 not in communicationlist:
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   380
        entry_infos = Node.GetEntryInfos(0x1014)
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   381
        texts["EntryName"] = entry_infos["name"]
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   382
        indexContents[0x1014] = """\n/* index 0x1014 :   %(EntryName)s */
493
a204a86a71f1 Modified initial value of 1014h to 0x80 + nodeid when 1014 is not included explicitly in the OD.
luis
parents: 484
diff changeset
   383
                    UNS32 %(NodeName)s_obj1014 = 0x80 + 0x%(NodeID)02X;   /* 128 + NodeID */
314
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   384
"""%texts
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   385
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   386
    if 0x1016 in communicationlist:
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   387
        texts["heartBeatTimers_number"] = Node.GetEntry(0x1016, 0)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   388
    else:
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   389
        texts["heartBeatTimers_number"] = 0
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   390
        entry_infos = Node.GetEntryInfos(0x1016)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   391
        texts["EntryName"] = entry_infos["name"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   392
        indexContents[0x1016] = """\n/* index 0x1016 :   %(EntryName)s */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   393
                    UNS8 %(NodeName)s_highestSubIndex_obj1016 = 0;
91
ed2612282988 - Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer.
etisserant
parents: 76
diff changeset
   394
                    UNS32 %(NodeName)s_obj1016[]={0};
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   395
"""%texts
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   396
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   397
    if 0x1017 not in communicationlist:
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   398
        entry_infos = Node.GetEntryInfos(0x1017)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   399
        texts["EntryName"] = entry_infos["name"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   400
        indexContents[0x1017] = """\n/* index 0x1017 :   %(EntryName)s */ 
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   401
                    UNS16 %(NodeName)s_obj1017 = 0x0;   /* 0 */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   402
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   403
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   404
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   405
#               Declaration of navigation in the Object Dictionary
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   406
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   407
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   408
    strDeclareIndex = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   409
    strDeclareSwitch = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   410
    strQuickIndex = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   411
    quick_index = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   412
    for index_cat in index_categories:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   413
        quick_index[index_cat] = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   414
        for cat, idx_min, idx_max in categories:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   415
            quick_index[index_cat][cat] = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   416
    maxPDOtransmit = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   417
    for i, index in enumerate(listIndex):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   418
        texts["index"] = index
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   419
        strDeclareIndex += "  { (subindex*)%(NodeName)s_Index%(index)04X,sizeof(%(NodeName)s_Index%(index)04X)/sizeof(%(NodeName)s_Index%(index)04X[0]), 0x%(index)04X},\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   420
        strDeclareSwitch += "		case 0x%04X: i = %d;%sbreak;\n"%(index, i, indexCallbacks[index])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   421
        for cat, idx_min, idx_max in categories:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   422
            if idx_min <= index <= idx_max:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   423
                quick_index["lastIndex"][cat] = i
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   424
                if quick_index["firstIndex"][cat] == 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   425
                    quick_index["firstIndex"][cat] = i
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   426
                if cat == "PDO_TRS":
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   427
                    maxPDOtransmit += 1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   428
    texts["maxPDOtransmit"] = max(1, maxPDOtransmit)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   429
    for index_cat in index_categories:
479
92891f53630b Defining quick_index structures and ObjdictSize as constants
lbessard
parents: 453
diff changeset
   430
        strQuickIndex += "\nconst quick_index %s_%s = {\n"%(texts["NodeName"], index_cat)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   431
        sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   432
        for i, (cat, idx_min, idx_max) in enumerate(categories):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   433
            if i == len(categories) - 1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   434
                sep = ""
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   435
            strQuickIndex += "  %d%s /* %s */\n"%(quick_index[index_cat][cat],sep,cat)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   436
        strQuickIndex += "};\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   437
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   438
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   439
#                            Write File Content
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   440
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   441
73
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
   442
    fileContent = generated_tag + """
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   443
#include "%s"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   444
"""%(headerfilepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   445
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   446
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   447
/**************************************************************************/
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   448
/* Declaration of mapped variables                                        */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   449
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   450
""" + mappedVariableContent
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   451
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   452
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   453
/**************************************************************************/
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   454
/* Declaration of value range types                                       */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   455
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   456
""" + valueRangeContent
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   457
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   458
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   459
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   460
/* The node id                                                            */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   461
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   462
/* node_id default value.*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   463
UNS8 %(NodeName)s_bDeviceNodeId = 0x%(NodeID)02X;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   464
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   465
/**************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   466
/* Array of message processing information */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   467
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   468
const UNS8 %(NodeName)s_iam_a_slave = %(iam_a_slave)d;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   469
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   470
"""%texts
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   471
    if texts["heartBeatTimers_number"] > 0:
422
43a4d6deb007 Fixed herbeat timer array partial initialization in generated OD code.
etisserant
parents: 421
diff changeset
   472
        declaration = "TIMER_HANDLE %(NodeName)s_heartBeatTimers[%(heartBeatTimers_number)d]"%texts
43a4d6deb007 Fixed herbeat timer array partial initialization in generated OD code.
etisserant
parents: 421
diff changeset
   473
        initializer = "{TIMER_NONE" + ",TIMER_NONE" * (texts["heartBeatTimers_number"] - 1) + "}"
43a4d6deb007 Fixed herbeat timer array partial initialization in generated OD code.
etisserant
parents: 421
diff changeset
   474
        fileContent += declaration + " = " + initializer + ";\n"
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   475
    else:
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   476
        fileContent += "TIMER_HANDLE %(NodeName)s_heartBeatTimers[1];\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   477
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   478
    fileContent += """
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   479
/*
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   480
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   481
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   482
                               OBJECT DICTIONARY
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   483
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   484
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   485
*/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   486
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   487
    contentlist = indexContents.keys()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   488
    contentlist.sort()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   489
    for index in contentlist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   490
        fileContent += indexContents[index]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   491
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   492
    fileContent += """
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   493
/**************************************************************************/
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   494
/* Declaration of pointed variables                                       */
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   495
/**************************************************************************/
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   496
""" + pointedVariableContent
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   497
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   498
    fileContent += """
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   499
const indextable %(NodeName)s_objdict[] = 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   500
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   501
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   502
    fileContent += strDeclareIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   503
    fileContent += """};
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   504
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   505
const indextable * %(NodeName)s_scanIndexOD (UNS16 wIndex, UNS32 * errorCode, ODCallback_t **callbacks)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   506
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   507
	int i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   508
	*callbacks = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   509
	switch(wIndex){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   510
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   511
    fileContent += strDeclareSwitch
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   512
    fileContent += """		default:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   513
			*errorCode = OD_NO_SUCH_OBJECT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   514
			return NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   515
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   516
	*errorCode = OD_SUCCESSFUL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   517
	return &%(NodeName)s_objdict[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   518
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   519
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   520
/* 
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   521
 * To count at which received SYNC a PDO must be sent.
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   522
 * Even if no pdoTransmit are defined, at least one entry is computed
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   523
 * for compilations issues.
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   524
 */
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   525
s_PDO_status %(NodeName)s_PDO_status[%(maxPDOtransmit)d] = {"""%texts
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   526
366
47763dd15e00 Fixed Peter Christen remarks as regards typo
etisserant
parents: 325
diff changeset
   527
    fileContent += ",".join(["s_PDO_status_Initializer"]*texts["maxPDOtransmit"]) + """};
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   528
"""
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   529
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   530
    fileContent += strQuickIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   531
    fileContent += """
479
92891f53630b Defining quick_index structures and ObjdictSize as constants
lbessard
parents: 453
diff changeset
   532
const UNS16 %(NodeName)s_ObjdictSize = sizeof(%(NodeName)s_objdict)/sizeof(%(NodeName)s_objdict[0]); 
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   533
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   534
CO_Data %(NodeName)s_Data = CANOPEN_NODE_DATA_INITIALIZER(%(NodeName)s);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   535
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   536
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   537
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   538
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   539
#                          Write Header File Content
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   540
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   541
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   542
    texts["file_include_name"] = headerfilepath.replace(".", "_").upper()
73
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
   543
    HeaderFileContent = generated_tag + """
224
ae7edca3b7c4 Bug on header file writing in gen_cfile fixed
lbessard
parents: 223
diff changeset
   544
#ifndef %(file_include_name)s
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   545
#define %(file_include_name)s
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   546
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   547
#include "data.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   548
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   549
/* Prototypes of function provided by object dictionnary */
63
2be18e405e40 Bug on map variable type changing and on comments with special characters corrected
lbessard
parents: 60
diff changeset
   550
UNS32 %(NodeName)s_valueRangeTest (UNS8 typeValue, void * value);
2be18e405e40 Bug on map variable type changing and on comments with special characters corrected
lbessard
parents: 60
diff changeset
   551
const indextable * %(NodeName)s_scanIndexOD (UNS16 wIndex, UNS32 * errorCode, ODCallback_t **callbacks);
2be18e405e40 Bug on map variable type changing and on comments with special characters corrected
lbessard
parents: 60
diff changeset
   552
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   553
/* Master node data struct */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   554
extern CO_Data %(NodeName)s_Data;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   555
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   556
    HeaderFileContent += strDeclareHeader
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   557
    
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   558
    HeaderFileContent += "\n#endif // %(file_include_name)s\n"%texts
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   559
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   560
    return fileContent,HeaderFileContent
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   561
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   562
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   563
#                             Main Function
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   564
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   565
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   566
def GenerateFile(filepath, node, pointers_dict = {}):
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   567
    try:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   568
        headerfilepath = os.path.splitext(filepath)[0]+".h"
484
f59d1cdde42b Added pointer variable list in GenCfile.py, for use with Beremiz's generated code.
etisserant
parents: 479
diff changeset
   569
        content, header = GenerateFileContent(node, os.path.split(headerfilepath)[1], pointers_dict)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   570
        WriteFile(filepath, content)
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   571
        WriteFile(headerfilepath, header)
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   572
        return None
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   573
    except ValueError, message:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   574
        return "Unable to Generate C File\n%s"%message
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   575