objdictgen/gen_cfile.py
author lbessard
Mon, 09 Jun 2008 11:13:45 +0200
changeset 479 92891f53630b
parent 453 c74a73474cce
child 484 f59d1cdde42b
permissions -rw-r--r--
Defining quick_index structures and ObjdictSize as constants
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":
420
a42335b39bf4 Bug on domain size calculation fixed
lbessard
parents: 418
diff changeset
    70
                size = 0
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))
a42335b39bf4 Bug on domain size calculation fixed
lbessard
parents: 418
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
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    78
            internal_types[typename] = typeinfos
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    79
        else:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    80
            raise ValueError, """!!! %s isn't a valid type for CanFestival."""%typename
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
    81
    return typeinfos
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    83
def ComputeValue(type, value):
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    84
    if type == "visible_string":
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    85
        return "\"%s\""%value, ""
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    86
    elif type == "domain":
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    87
        return "\"%s\""%''.join(["\\x%2.2x"%ord(char) for char in value]), ""
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    88
    elif type.startswith("real"):
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    89
        return "%f"%value, ""
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    90
    else:
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    91
        return "0x%X"%value, "\t/* %s */"%str(value)
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
    92
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    93
def WriteFile(filepath, content):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
    cfile = open(filepath,"w")
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
    cfile.write(content)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
    cfile.close()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
    98
def GenerateFileContent(Node, headerfilepath):
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    99
    global type
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   100
    global internal_types
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   101
    global default_string_size
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   102
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
    texts = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
    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
   105
    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
   106
    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
   107
    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
   108
    texts["Description"] = Node.GetNodeDescription()
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
    texts["iam_a_slave"] = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
    if (texts["NodeType"] == "slave"):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
        texts["iam_a_slave"] = 1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   112
    
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   113
    default_string_size = Node.GetDefaultStringSize()
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   114
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
    # 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
   116
    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
   117
    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
   118
    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
   119
    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
   120
    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
   121
    variablelist = [idx for idx in Node.GetIndexes() if 0x2000 <= idx <= 0xBFFF]
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
#                       Declaration of the value range types
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
#-------------------------------------------------------------------------------    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
    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
   128
    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
   129
    strSwitch = """    case valueRange_EMC:
288
26015ee2c2c9 Modified codes in MSG_ERR and MSG_WAR in emcy.c
luis
parents: 287
diff changeset
   130
      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
   131
      break;\n"""
313
fed411af774a Adding standard default value to index 0x1014
lbessard
parents: 289
diff changeset
   132
    internal_types["valueRange_EMC"] = ("UNS8", "", "valueRange_EMC", True)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
    num = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
    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
   135
        rangename = Node.GetEntryName(index)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   136
        result = range_model.match(rangename)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
        if result:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
            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
   139
            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
   140
            typename = Node.GetTypeName(typeindex)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
            typeinfos = GetValidTypeInfos(typename)
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   142
            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
   143
            minvalue = Node.GetEntry(index, 2)
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   144
            maxvalue = Node.GetEntry(index, 3)
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   145
            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
   146
            strSwitch += "    case valueRange_%d:\n"%(num)
313
fed411af774a Adding standard default value to index 0x1014
lbessard
parents: 289
diff changeset
   147
            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
   148
                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
   149
            else:
a22ce0314063 Removed warning with lower boundary <= 0 in Valuerange test wuth unsigned types
etisserant
parents: 288
diff changeset
   150
                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
   151
            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
   152
            strSwitch += "    break;\n"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   153
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
    valueRangeContent += strDefine
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
    valueRangeContent += "\nUNS32 %(NodeName)s_valueRangeTest (UNS8 typeValue, void * value)\n{"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
    valueRangeContent += "\n  switch (typeValue) {\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
    valueRangeContent += strSwitch
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
    valueRangeContent += "  }\n  return 0;\n}\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
#            Creation of the mapped variables and object dictionary
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
    mappedVariableContent = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   165
    strDeclareHeader = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
    strDeclareCallback = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
    indexContents = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
    indexCallbacks = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   169
    for index in listIndex:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   170
        texts["index"] = index
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
        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
   172
        entry_infos = Node.GetEntryInfos(index)
229
b24906340673 Fixed unicode encoding in gen_cfile.py
etisserant
parents: 227
diff changeset
   173
        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
   174
        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
   175
        callbacks = Node.HasEntryCallbacks(index)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
        if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   177
            strIndex += "\n/* index 0x%(index)04X :   Mapped variable %(EntryName)s */\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   178
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
            strIndex += "\n/* index 0x%(index)04X :   %(EntryName)s. */\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
        # Entry type is VAR
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   182
        if type(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
   183
            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
   184
            typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   185
            typeinfos = GetValidTypeInfos(typename, [values])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   186
            texts["subIndexType"] = typeinfos[0]
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   187
            if typeinfos[1] is not None:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   188
                texts["suffixe"] = "[%d]"%typeinfos[1]
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   189
            else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   190
                texts["suffixe"] = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   191
            texts["value"], texts["comment"] = ComputeValue(typeinfos[2], values)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   192
            if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   193
                texts["name"] = FormatName(subentry_infos["name"])
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   194
                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
   195
                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
   196
            else:
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   197
                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
   198
            values = [values]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   199
        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
   200
            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
   201
            typename = Node.GetTypeName(subentry_infos["type"])
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   202
            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
   203
            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
   204
                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
   205
            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
   206
                texts["value"] = values[0]
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   207
            texts["subIndexType"] = typeinfos[0]
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   208
            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
   209
            
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   210
            # Entry type is RECORD
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   211
            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
   212
                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
   213
                typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   214
                typeinfos = GetValidTypeInfos(typename, values[1:])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
                texts["subIndexType"] = typeinfos[0]
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   216
                if typeinfos[1] is not None:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   217
                    texts["suffixe"] = "[%d]"%typeinfos[1]
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   218
                else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   219
                    texts["suffixe"] = ""
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   220
                texts["length"] = values[0]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   221
                if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   222
                    texts["name"] = FormatName(entry_infos["name"])
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   223
                    strDeclareHeader += "extern %(subIndexType)s %(name)s[%(length)d]%(suffixe)s;\t\t/* Mapped at index 0x%(index)04X, subindex 0x01 - 0x%(length)02X */\n"%texts
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   224
                    mappedVariableContent += "%(subIndexType)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
   225
                    for subIndex, value in enumerate(values):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   226
                        sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   227
                        if subIndex > 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   228
                            if subIndex == len(values)-1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   229
                                sep = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   230
                            value, comment = ComputeValue(typeinfos[2], value)
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   231
                            mappedVariableContent += "    %s%s%s\n"%(value, sep, comment)
28
e169fe15521b *** empty log message ***
lbessard
parents: 5
diff changeset
   232
                    mappedVariableContent += "  };\n"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   233
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   234
                    strIndex += "                    %(subIndexType)s %(NodeName)s_obj%(index)04X[] = \n                    {\n"%texts
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)
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   241
                            strIndex += "                      %s%s%s\n"%(value, sep, comment)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   242
                    strIndex += "                    };\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   243
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   244
                
66
94212a58c097 gen_cfile.py modified for avoiding possible conflict in mapped variable names
lbessard
parents: 64
diff changeset
   245
                texts["parent"] = FormatName(entry_infos["name"])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   246
                # Entry type is ARRAY
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
                    texts["subIndex"] = subIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   249
                    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
   250
                        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
   251
                        typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   252
                        typeinfos = GetValidTypeInfos(typename, [values[subIndex]])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   253
                        texts["subIndexType"] = typeinfos[0]
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   254
                        if typeinfos[1] is not None:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   255
                            texts["suffixe"] = "[%d]"%typeinfos[1]
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   256
                        else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   257
                            texts["suffixe"] = ""
453
c74a73474cce Problem with Real types unsupported fixed
lbessard
parents: 432
diff changeset
   258
                        texts["value"], texts["comment"] = ComputeValue(typeinfos[2], value)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   259
                        texts["name"] = FormatName(subentry_infos["name"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   260
                        if index in variablelist:
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   261
                            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
   262
                            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
   263
                        else:
5
e4365e7d47f0 Bug on number in hexa computed by gen_cfile corrected
lbessard
parents: 0
diff changeset
   264
                            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
   265
        
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   266
        # Generating Dictionary C++ entry
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   267
        if callbacks:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   268
            if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   269
                name = FormatName(entry_infos["name"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   270
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   271
                name = "%(NodeName)s_Index%(index)04X"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   272
            strIndex += "                    ODCallback_t %s_callbacks[] = \n                     {\n"%name
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   273
            for subIndex in xrange(len(values)):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   274
                strIndex += "                       NULL,\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   275
            strIndex += "                     };\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   276
            indexCallbacks[index] = "*callbacks = %s_callbacks; "%name
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   277
        else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   278
            indexCallbacks[index] = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   279
        strIndex += "                    subindex %(NodeName)s_Index%(index)04X[] = \n                     {\n"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   280
        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
   281
            subentry_infos = Node.GetSubentryInfos(index, subIndex)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   282
            if subIndex < len(values) - 1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   283
                sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   284
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   285
                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
   286
            typename = Node.GetTypeName(subentry_infos["type"])
418
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   287
            if entry_infos["struct"] & OD_IdenticalSubindexes:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   288
                typeinfos = GetValidTypeInfos(typename, values)
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   289
            else:
64a8c24b61a5 Problem with String size in C file generated fixed
lbessard
parents: 366
diff changeset
   290
                typeinfos = GetValidTypeInfos(typename, [values[subIndex]])
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   291
            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
   292
                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
   293
                    typeinfos = GetValidTypeInfos("valueRange_EMC")
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   294
                if entry_infos["struct"] & OD_MultipleSubindexes:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   295
                    name = "%(NodeName)s_highestSubIndex_obj%(index)04X"%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   296
                elif index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   297
                    name = FormatName(subentry_infos["name"])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   298
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   299
                    name = FormatName("%s_obj%04X"%(texts["NodeName"], texts["index"]))
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   300
            elif entry_infos["struct"] & OD_IdenticalSubindexes:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   301
                if index in variablelist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   302
                    name = "%s[%d]"%(FormatName(entry_infos["name"]), subIndex - 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   303
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   304
                    name = "%s_obj%04X[%d]"%(texts["NodeName"], texts["index"], subIndex - 1)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   305
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   306
                if index in variablelist:
70
f36f09f08b62 Bug corrected on gen_cfile
lbessard
parents: 66
diff changeset
   307
                    name = FormatName("%s_%s"%(entry_infos["name"],subentry_infos["name"]))
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   308
                else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   309
                    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
   310
            if typeinfos[2] == "visible_string":
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   311
                sizeof = str(max(len(values[subIndex]), default_string_size))
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   312
            elif typeinfos[2] == "domain":
6221b4db8c42 Added support for null terminated strings as VISIBLE_STRING.
etisserant
parents: 420
diff changeset
   313
                sizeof = str(len(values[subIndex]))
176
5d57fe1e3a5b Support for DCF (DS-302)
greg
parents: 160
diff changeset
   314
            else:
5d57fe1e3a5b Support for DCF (DS-302)
greg
parents: 160
diff changeset
   315
                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
   316
            params = Node.GetParamsEntry(index, subIndex)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   317
            if params["save"]:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   318
                save = "|TO_BE_SAVE"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   319
            else:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   320
                save = ""
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   321
            strIndex += "                       { %s%s, %s, %s, (void*)&%s }%s\n"%(subentry_infos["access"].upper(),save,typeinfos[2],sizeof,name,sep)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   322
        strIndex += "                     };\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   323
        indexContents[index] = strIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   324
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   325
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   326
#                     Declaration of Particular Parameters
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   327
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   328
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   329
    if 0x1003 not in communicationlist:
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   330
        entry_infos = Node.GetEntryInfos(0x1003)
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   331
        texts["EntryName"] = entry_infos["name"]
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   332
        indexContents[0x1003] = """\n/* index 0x1003 :   %(EntryName)s */
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   333
                    UNS8 %(NodeName)s_highestSubIndex_obj1003 = 0; /* number of subindex - 1*/
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   334
                    UNS32 %(NodeName)s_obj1003[] = 
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   335
                    {
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   336
                      0x0	/* 0 */
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   337
                    };
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   338
                    ODCallback_t %(NodeName)s_Index1003_callbacks[] = 
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   339
                     {
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   340
                       NULL,
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   341
                       NULL,
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   342
                     };
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   343
                    subindex %(NodeName)s_Index1003[] = 
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   344
                     {
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
   345
                       { RW, valueRange_EMC, sizeof (UNS8), (void*)&%(NodeName)s_highestSubIndex_obj1003 },
284
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   346
                       { RO, uint32, sizeof (UNS32), (void*)&%(NodeName)s_obj1003[0] }
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   347
                     };
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   348
"""%texts
24bf3d692993 Implemented EMCY objects.
luis
parents: 261
diff changeset
   349
261
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   350
    if 0x1005 not in communicationlist:
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   351
        entry_infos = Node.GetEntryInfos(0x1005)
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   352
        texts["EntryName"] = entry_infos["name"]
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   353
        indexContents[0x1005] = """\n/* index 0x1005 :   %(EntryName)s */
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   354
                    UNS32 %(NodeName)s_obj1005 = 0x0;   /* 0 */
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   355
"""%texts
dbcd80bcab82 Prevent potential problem with missing 0x1005 OD entry
etisserant
parents: 245
diff changeset
   356
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   357
    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
   358
        entry_infos = Node.GetEntryInfos(0x1006)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   359
        texts["EntryName"] = entry_infos["name"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   360
        indexContents[0x1006] = """\n/* index 0x1006 :   %(EntryName)s */
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   361
                    UNS32 %(NodeName)s_obj1006 = 0x0;   /* 0 */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   362
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   363
314
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   364
    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
   365
        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
   366
        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
   367
        indexContents[0x1014] = """\n/* index 0x1014 :   %(EntryName)s */
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   368
                    UNS32 %(NodeName)s_obj1014 = 0x0;   /* 0 */
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   369
"""%texts
68e83c3ffbb5 Better EMCY support. Now EMCY COB-ID depend on OD 1014h entry, as told in DS-301.
etisserant
parents: 313
diff changeset
   370
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   371
    if 0x1016 in communicationlist:
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   372
        texts["heartBeatTimers_number"] = Node.GetEntry(0x1016, 0)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   373
    else:
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   374
        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
   375
        entry_infos = Node.GetEntryInfos(0x1016)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   376
        texts["EntryName"] = entry_infos["name"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   377
        indexContents[0x1016] = """\n/* index 0x1016 :   %(EntryName)s */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   378
                    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
   379
                    UNS32 %(NodeName)s_obj1016[]={0};
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   380
"""%texts
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   381
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   382
    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
   383
        entry_infos = Node.GetEntryInfos(0x1017)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   384
        texts["EntryName"] = entry_infos["name"]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   385
        indexContents[0x1017] = """\n/* index 0x1017 :   %(EntryName)s */ 
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   386
                    UNS16 %(NodeName)s_obj1017 = 0x0;   /* 0 */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   387
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   388
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   389
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   390
#               Declaration of navigation in the Object Dictionary
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   391
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   392
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   393
    strDeclareIndex = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   394
    strDeclareSwitch = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   395
    strQuickIndex = ""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   396
    quick_index = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   397
    for index_cat in index_categories:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   398
        quick_index[index_cat] = {}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   399
        for cat, idx_min, idx_max in categories:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   400
            quick_index[index_cat][cat] = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   401
    maxPDOtransmit = 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   402
    for i, index in enumerate(listIndex):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   403
        texts["index"] = index
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   404
        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
   405
        strDeclareSwitch += "		case 0x%04X: i = %d;%sbreak;\n"%(index, i, indexCallbacks[index])
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   406
        for cat, idx_min, idx_max in categories:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   407
            if idx_min <= index <= idx_max:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   408
                quick_index["lastIndex"][cat] = i
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   409
                if quick_index["firstIndex"][cat] == 0:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   410
                    quick_index["firstIndex"][cat] = i
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   411
                if cat == "PDO_TRS":
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   412
                    maxPDOtransmit += 1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   413
    texts["maxPDOtransmit"] = max(1, maxPDOtransmit)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   414
    for index_cat in index_categories:
479
92891f53630b Defining quick_index structures and ObjdictSize as constants
lbessard
parents: 453
diff changeset
   415
        strQuickIndex += "\nconst quick_index %s_%s = {\n"%(texts["NodeName"], index_cat)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   416
        sep = ","
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   417
        for i, (cat, idx_min, idx_max) in enumerate(categories):
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   418
            if i == len(categories) - 1:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   419
                sep = ""
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   420
            strQuickIndex += "  %d%s /* %s */\n"%(quick_index[index_cat][cat],sep,cat)
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   421
        strQuickIndex += "};\n"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   422
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   423
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   424
#                            Write File Content
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   425
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   426
73
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
   427
    fileContent = generated_tag + """
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   428
#include "%s"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   429
"""%(headerfilepath)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   430
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   431
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   432
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   433
/* Declaration of the mapped variables                                    */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   434
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   435
""" + mappedVariableContent
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   436
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   437
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   438
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   439
/* Declaration of the value range types                                   */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   440
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   441
""" + valueRangeContent
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   442
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   443
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   444
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   445
/* The node id                                                            */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   446
/**************************************************************************/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   447
/* node_id default value.*/
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   448
UNS8 %(NodeName)s_bDeviceNodeId = 0x%(NodeID)02X;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   449
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   450
/**************************************************************************/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   451
/* Array of message processing information */
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   452
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   453
const UNS8 %(NodeName)s_iam_a_slave = %(iam_a_slave)d;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   454
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   455
"""%texts
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   456
    if texts["heartBeatTimers_number"] > 0:
422
43a4d6deb007 Fixed herbeat timer array partial initialization in generated OD code.
etisserant
parents: 421
diff changeset
   457
        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
   458
        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
   459
        fileContent += declaration + " = " + initializer + ";\n"
325
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   460
    else:
65b1b2d9e20b Modification of 0x1016 index c code generation
lbessard
parents: 314
diff changeset
   461
        fileContent += "TIMER_HANDLE %(NodeName)s_heartBeatTimers[1];\n"%texts
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   462
    
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   463
    fileContent += """
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   464
/*
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   465
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   466
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   467
                               OBJECT DICTIONARY
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   468
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   469
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   470
*/
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   471
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   472
    contentlist = indexContents.keys()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   473
    contentlist.sort()
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   474
    for index in contentlist:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   475
        fileContent += indexContents[index]
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   476
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   477
    fileContent += """
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   478
const indextable %(NodeName)s_objdict[] = 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   479
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   480
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   481
    fileContent += strDeclareIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   482
    fileContent += """};
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   483
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   484
const indextable * %(NodeName)s_scanIndexOD (UNS16 wIndex, UNS32 * errorCode, ODCallback_t **callbacks)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   485
{
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   486
	int i;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   487
	*callbacks = NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   488
	switch(wIndex){
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   489
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   490
    fileContent += strDeclareSwitch
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   491
    fileContent += """		default:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   492
			*errorCode = OD_NO_SUCH_OBJECT;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   493
			return NULL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   494
	}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   495
	*errorCode = OD_SUCCESSFUL;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   496
	return &%(NodeName)s_objdict[i];
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   497
}
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   498
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   499
/* 
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   500
 * To count at which received SYNC a PDO must be sent.
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   501
 * Even if no pdoTransmit are defined, at least one entry is computed
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   502
 * for compilations issues.
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   503
 */
235
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   504
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
   505
366
47763dd15e00 Fixed Peter Christen remarks as regards typo
etisserant
parents: 325
diff changeset
   506
    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
   507
"""
f812bf6b7237 Preliminary implementation of Event Timer and Inhibit Timer driven TPDO
etisserant
parents: 229
diff changeset
   508
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   509
    fileContent += strQuickIndex
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   510
    fileContent += """
479
92891f53630b Defining quick_index structures and ObjdictSize as constants
lbessard
parents: 453
diff changeset
   511
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
   512
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   513
CO_Data %(NodeName)s_Data = CANOPEN_NODE_DATA_INITIALIZER(%(NodeName)s);
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   514
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   515
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   516
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   517
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   518
#                          Write Header File Content
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   519
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   520
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   521
    texts["file_include_name"] = headerfilepath.replace(".", "_").upper()
73
60441122e121 LGPL copyright on generated files removed
lbessard
parents: 70
diff changeset
   522
    HeaderFileContent = generated_tag + """
224
ae7edca3b7c4 Bug on header file writing in gen_cfile fixed
lbessard
parents: 223
diff changeset
   523
#ifndef %(file_include_name)s
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   524
#define %(file_include_name)s
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   525
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   526
#include "data.h"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   527
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   528
/* 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
   529
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
   530
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
   531
76
68e1c52d603d compilers compatibility
frdupin
parents: 73
diff changeset
   532
/* Master node data struct */
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   533
extern CO_Data %(NodeName)s_Data;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   534
"""%texts
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   535
    HeaderFileContent += strDeclareHeader
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   536
    
223
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   537
    HeaderFileContent += "\n#endif // %(file_include_name)s\n"%texts
461f5516176b Bug on Domain data writing in gen_cfile fixed
lbessard
parents: 188
diff changeset
   538
    
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   539
    return fileContent,HeaderFileContent
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   540
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   541
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   542
#                             Main Function
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   543
#-------------------------------------------------------------------------------
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   544
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   545
def GenerateFile(filepath, node):
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   546
    try:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   547
        headerfilepath = os.path.splitext(filepath)[0]+".h"
245
d43ebbed895f Modifying gen_cfile.py for generating C file from a node as data rather than a manager
lbessard
parents: 235
diff changeset
   548
        content, header = GenerateFileContent(node, os.path.split(headerfilepath)[1])
188
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   549
        WriteFile(filepath, content)
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   550
        WriteFile(headerfilepath, header)
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   551
        return None
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   552
    except ValueError, message:
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   553
        return "Unable to Generate C File\n%s"%message
00245bc2e6fe Bugs on C File generating corrected
lbessard
parents: 182
diff changeset
   554