generate_IEC_std.py
author etisserant
Thu, 12 Jul 2007 11:27:43 +0200
changeset 36 e7d67b27877f
parent 26 36d378bd852e
child 40 49c8ebc1ee25
permissions -rw-r--r--
Changes in the std library + std lib PLCOpen test (broken)
36
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     1
"""
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     2
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     3
 THIS CODE GENARATES C++ CODE FOR IEC2CC COMPILER
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     4
 GENERATED CODE IS :
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     5
 
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     6
function_type_decl.h - the long enumeration of std function types
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     7
get_function_type_decl.c - the funct that return enumerated according function name
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     8
st_code_gen.c - part of generate_cc_st_c::visit(function_invocation)
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
     9
                responsible to generate C code for std lib calls
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    10
il_code_gen.c - part of generate_cc_il_c::visit(il_function_call)
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    11
                responsible to generate C code for std lib calls
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    12
search_type_code.c - called by search_expression_type_c::visit(function_invocation) 
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    13
                     return type symbol for std function invocation
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    14
 
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    15
"""
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
    16
25
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    17
# Get definitions
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    18
from plcopen.structures import *
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    19
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    20
#import pprint
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    21
#pp = pprint.PrettyPrinter(indent=4)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    22
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    23
def ANY_to_compiler_test_type_GEN(typename, paramname):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    24
    """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    25
    Convert ANY_XXX IEC type declaration into IEC2CC's generated type test.
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    26
    This tests are defined in search_expression_type.cc 
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    27
    """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    28
    return {"ANY" : "",
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    29
    "ANY_BIT" : "if(search_expression_type->is_binary_type(%(paramname)s_type_symbol))",
26
36d378bd852e Stage4 changes according to new STD lib implementation
etisserant
parents: 25
diff changeset
    30
    "ANY_NBIT" : "if(search_expression_type->is_nbinary_type(%(paramname)s_type_symbol))",
25
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    31
    "ANY_NUM" : "if(search_expression_type->is_num_type(%(paramname)s_type_symbol))",
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    32
    "ANY_REAL" : "if(search_expression_type->is_real_type(%(paramname)s_type_symbol))",
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    33
    "ANY_INT" : "if(search_expression_type->is_integer_type(%(paramname)s_type_symbol))"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    34
    }.get(typename,
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    35
        "if (typeid(*last_type_symbol) == typeid(%(typename)s_type_name_c))")%{
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    36
                "paramname" : paramname, "typename": typename.lower()}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    37
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    38
def recurse_and_indent(fdecls, indent, do_type_search_only = False, do_il = False):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    39
    """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    40
    This function generate visit(function_invocation) code for 
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    41
        - ST code generator
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    42
        - IL code generator
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    43
        - search_expression_type class for ST
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    44
        - search_expression_type class for IL
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    45
        
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    46
    Input data is a 
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    47
    "{fname : {IN[0]paramname : {IN[0]paramtype : {IN[1]paraname : {IN[1]paramtype : {... : {IN[N]paraname : {IN[N]paramtype : (fdecl,)}}}}}}"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    48
    nested dictionary structure.
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    49
    """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    50
    if type(fdecls) != type(tuple()):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    51
        res = ""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    52
        for Paramname, ParamTypes in fdecls.iteritems():
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    53
            if do_il:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    54
                res += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    55
{"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    56
                if not do_type_search_only:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    57
                    res += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    58
    /* Get the value from a foo(<param_name> = <param_value>) style call */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    59
    symbol_c *%(input_name)s_param_value = &this->default_variable_name;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    60
"""%{"input_name":Paramname}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    61
                res += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    62
    symbol_c *%(input_name)s_type_symbol = param_data_type;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    63
    last_type_symbol = param_data_type;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    64
"""%{"input_name":Paramname}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    65
            else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    66
                res += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    67
{
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    68
    identifier_c param_name("%(input_name)s");
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    69
    /* Get the value from a foo(<param_name> = <param_value>) style call */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    70
    symbol_c *%(input_name)s_param_value = function_call_param_iterator.search(&param_name);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    71
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    72
    /* Get the value from a foo(<param_value>) style call */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    73
    if (%(input_name)s_param_value == NULL)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    74
      %(input_name)s_param_value = function_call_param_iterator.next();
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    75
    symbol_c *%(input_name)s_type_symbol = search_expression_type->get_type(%(input_name)s_param_value);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    76
    last_type_symbol = last_type_symbol && search_expression_type->is_same_type(%(input_name)s_type_symbol, last_type_symbol) ? search_expression_type->common_type(%(input_name)s_type_symbol, last_type_symbol) : %(input_name)s_type_symbol ;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    77
"""%{"input_name":Paramname}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    78
            
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    79
            for ParamType,NextParamDecl in ParamTypes.iteritems():
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    80
            
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    81
                res += """    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    82
    %(type_test)s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    83
    {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    84
%(if_good_type_code)s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    85
    }
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    86
"""%{
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    87
    "type_test":ANY_to_compiler_test_type_GEN(ParamType,Paramname), 
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    88
    "if_good_type_code":recurse_and_indent(NextParamDecl,indent,do_type_search_only).replace('\n','\n    ')}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    89
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    90
            res += """    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    91
    ERROR;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    92
}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    93
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    94
        
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    95
        return res.replace('\n','\n'+indent)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    96
    else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    97
        res = "\n"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    98
        fdecl=fdecls[0]
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
    99
        
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   100
        result_type_rule = fdecl["return_type_rule"]
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   101
        res += {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   102
            "copy_input" : "symbol_c * return_type_symbol = last_type_symbol;\n",
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   103
            "defined" : "symbol_c * return_type_symbol = &search_constant_type_c::%s_type_name;\n"%fdecl["outputs"][0][1].lower(),
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   104
            }.get(result_type_rule, "symbol_c * return_type_symbol = %s;\n"%result_type_rule)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   105
        
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   106
        if not do_type_search_only:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   107
            code_gen = eval(fdecl["python_eval_c_code_format"])
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   108
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   109
            code_gen_dic_decl = {}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   110
            for paramname,paramtype,unused in fdecl["inputs"]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   111
                code_gen_dic_decl[paramname+"_value"] = '");\n%s_param_value->accept(*this);\ns4o.print("'%(paramname)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   112
                code_gen_dic_decl[paramname+"_type"] = '");\n%s_type_symbol->accept(*this);\ns4o.print("'%(paramname)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   113
            code_gen_dic_decl["return_type"] = '");\nreturn_type_symbol->accept(*this);\ns4o.print("'
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   114
            code_gen_dic_decl["param_count"] = '");\ns4o.print_integer(nb_param);\ns4o.print("'
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   115
            code_gen_dic_decl["start_bool_filter"] = '");\nif (search_expression_type->is_bool_type(last_type_symbol))\n  s4o.print("('
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   116
            code_gen_dic_decl["end_bool_filter"] = '");\nif (search_expression_type->is_bool_type(last_type_symbol)) {\n  s4o.print("&1");\n  s4o.print(")");\n}\ns4o.print("'
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   117
            
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   118
            if type(code_gen) == type(tuple()):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   119
                res += 's4o.print("%s");\n'%(code_gen[0]%code_gen_dic_decl)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   120
                static_param_accept_list = []
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   121
                for paramname,paramtype,unused in fdecl["inputs"]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   122
                    static_param_accept_list.append("%s_param_value->accept(*this);\n"%(paramname))
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   123
                res += ('s4o.print("%s");\n'%(code_gen[1])).join(static_param_accept_list)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   124
                code = 's4o.print("%s");\nparam_value->accept(*this);\n'%(code_gen[1])
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   125
                end_code = 's4o.print("%s");\nreturn NULL;\n'%(code_gen[2]%code_gen_dic_decl)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   126
            else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   127
                code = ''
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   128
                end_code = ('s4o.print("' + code_gen%code_gen_dic_decl + '");\nreturn NULL;\n').replace('s4o.print("");\n','')
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   129
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   130
            if fdecl["extensible"]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   131
                res += ("""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   132
int base_num = %d;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   133
symbol_c *param_value = NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   134
do{
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   135
    char my_name[10];
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   136
    sprintf(my_name, "IN%%d", base_num++);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   137
    identifier_c param_name(my_name);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   138
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   139
    /* Get the value from a foo(<param_name> = <param_value>) style call */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   140
    param_value = function_call_param_iterator.search(&param_name);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   141
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   142
    /* Get the value from a foo(<param_value>) style call */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   143
    if (param_value == NULL)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   144
      param_value = function_call_param_iterator.next();
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   145
    if (param_value != NULL){
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   146
        symbol_c *current_type_symbol = search_expression_type->get_type(param_value);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   147
        last_type_symbol = last_type_symbol && search_expression_type->is_same_type(current_type_symbol, last_type_symbol) ? search_expression_type->common_type(current_type_symbol, last_type_symbol) : current_type_symbol ;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   148
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   149
        /*Function specific CODE */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   150
        %s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   151
    }
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   152
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   153
}while(param_value != NULL);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   154
%s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   155
"""%(fdecl["baseinputnumber"]+2, code.replace('\n','\n        '), end_code))
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   156
            else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   157
                #res += code + end_code
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   158
                res += end_code
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   159
        else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   160
            res += "return return_type_symbol;\n"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   161
        
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   162
                
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   163
        return res.replace('\n','\n'+indent)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   164
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   165
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   166
###                                                             ###
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   167
###                           MAIN                              ###
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   168
###                                                             ###
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   169
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   170
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   171
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   172
Reorganize std_decl from structure.py
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   173
into a nested dictionnary structure (i.e. a tree):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   174
"{fname : {IN[0]paramname : {IN[0]paramtype : {IN[1]paraname : {IN[1]paramtype : {... : {IN[N]paraname : {IN[N]paramtype : (fdecl,)}}}}}}"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   175
Keep ptrack of original declaration order in a 
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   176
separated list called official_order
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   177
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   178
std_fdecls = {}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   179
official_order = []
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   180
for section in std_decl:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   181
    for fdecl in section["list"]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   182
        if len(official_order)==0 or official_order[-1] != fdecl["name"]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   183
            official_order.append(fdecl["name"])
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   184
        # store all func by name in a dict
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   185
        std_fdecls_fdecl_name = std_fdecls.get(fdecl["name"], {})
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   186
        current = std_fdecls_fdecl_name
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   187
        for i in fdecl["inputs"]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   188
            current[i[0]] = current.get(i[0], {})
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   189
            current = current[i[0]]
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   190
            last = current
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   191
            current[i[1]] = current.get(i[1], {})
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   192
            current = current[i[1]]
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   193
        last[i[1]]=(fdecl,)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   194
        std_fdecls[fdecl["name"]] = std_fdecls_fdecl_name
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   195
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   196
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   197
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   198
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   199
Generate the long enumeration of std function types
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   200
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   201
function_type_decl =  """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   202
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   203
 * IEC 61131-3 standard function lib
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   204
 * generated code, do not edit by hand
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   205
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   206
typedef enum {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   207
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   208
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   209
    function_type_decl += "    function_"+fname.lower()+",\n"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   210
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   211
function_type_decl += """    function_none
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   212
} function_type_t;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   213
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   214
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   215
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   216
Generate the funct that return enumerated according function name
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   217
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   218
get_function_type_decl = """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   219
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   220
 * IEC 61131-3 standard function lib
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   221
 * generated code, do not edit by hand
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   222
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   223
function_type_t get_function_type(identifier_c *function_name) {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   224
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   225
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   226
    get_function_type_decl += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   227
if (!strcasecmp(function_name->value, "%s"))
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   228
    return function_%s;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   229
"""%(fname,fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   230
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   231
get_function_type_decl += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   232
    else return function_none;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   233
}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   234
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   235
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   236
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   237
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   238
Generate the part of generate_cc_st_c::visit(function_invocation)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   239
that is responsible to generate C code for std lib calls.
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   240
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   241
st_code_gen = """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   242
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   243
 * IEC 61131-3 standard function lib
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   244
 * generated code, do not edit by hand
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   245
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   246
switch(current_function_type){
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   247
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   248
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   249
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   250
    st_code_gen += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   251
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   252
 *%s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   253
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   254
    case function_%s :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   255
    {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   256
        symbol_c *last_type_symbol = NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   257
"""    %(fname, fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   258
    indent =  "    "
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   259
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   260
    st_code_gen += recurse_and_indent(fdecls, indent).replace('\n','\n    ')
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   261
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   262
    st_code_gen += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   263
    }/*function_%s*/
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   264
    break;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   265
"""    %(fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   266
st_code_gen +=  """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   267
    case function_none :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   268
    ERROR;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   269
}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   270
return NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   271
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   272
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   273
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   274
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   275
Generate the part of generate_cc_il_c::visit(il_function_call)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   276
that is responsible to generate C code for std lib calls.
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   277
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   278
il_code_gen = """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   279
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   280
 * IEC 61131-3 standard function lib
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   281
 * generated code, do not edit by hand
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   282
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   283
switch(current_function_type){
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   284
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   285
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   286
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   287
    il_code_gen += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   288
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   289
 *%s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   290
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   291
    case function_%s :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   292
    {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   293
        symbol_c *last_type_symbol = NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   294
"""    %(fname, fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   295
    indent =  "    "
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   296
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   297
    il_code_gen += recurse_and_indent(fdecls, indent, do_il=True).replace('\n','\n    ')
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   298
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   299
    il_code_gen += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   300
    }/*function_%s*/
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   301
    break;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   302
"""    %(fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   303
il_code_gen +=  """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   304
    case function_none :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   305
    ERROR;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   306
}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   307
return NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   308
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   309
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   310
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   311
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   312
Generate the part of search_expression_type_c::visit(function_invocation)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   313
that is responsible of returning type symbol for function invocation.
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   314
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   315
search_type_code =  """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   316
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   317
 * IEC 61131-3 standard function lib
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   318
 * generated code, do not edit by hand
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   319
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   320
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   321
void *compute_standard_function_st(function_invocation_c *symbol) {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   322
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   323
  function_type_t current_function_type = get_function_type((identifier_c *)symbol->function_name);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   324
  function_call_param_iterator_c function_call_param_iterator(symbol);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   325
  search_expression_type_c* search_expression_type = this;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   326
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   327
  switch(current_function_type){
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   328
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   329
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   330
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   331
    search_type_code += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   332
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   333
 *%s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   334
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   335
    case function_%s :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   336
    {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   337
        symbol_c *last_type_symbol = NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   338
"""    %(fname, fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   339
    indent =  "    "
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   340
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   341
    search_type_code += recurse_and_indent(fdecls, indent, True).replace('\n','\n    ')
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   342
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   343
    search_type_code += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   344
    }/*function_%s*/
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   345
    break;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   346
"""    %(fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   347
search_type_code += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   348
    case function_none :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   349
    ERROR;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   350
  }
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   351
  return NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   352
}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   353
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   354
void *compute_standard_function_il(il_function_call_c *symbol, symbol_c *param_data_type) {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   355
  
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   356
  function_type_t current_function_type = get_function_type((identifier_c *)symbol->function_name);
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   357
  function_call_param_iterator_c function_call_param_iterator(symbol);  
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   358
  search_expression_type_c* search_expression_type = this;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   359
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   360
  switch(current_function_type){
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   361
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   362
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   363
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   364
    search_type_code += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   365
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   366
 *%s
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   367
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   368
    case function_%s :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   369
    {
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   370
        symbol_c *last_type_symbol = NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   371
"""    %(fname, fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   372
    indent =  "    "
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   373
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   374
    search_type_code += recurse_and_indent(fdecls, indent, True, True).replace('\n','\n    ')
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   375
    
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   376
    search_type_code += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   377
    }/*function_%s*/
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   378
    break;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   379
"""    %(fname.lower())
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   380
search_type_code += """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   381
    case function_none :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   382
    ERROR;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   383
  }
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   384
  return NULL;
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   385
}
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   386
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   387
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   388
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   389
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   390
###################################################################
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   391
"""
36
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   392
Generate the standard_function_names[] for inclusion in bizon generated code
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   393
"""
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   394
standard_function_names = """
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   395
/****
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   396
 * IEC 61131-3 standard function lib
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   397
 * generated code, do not edit by hand
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   398
 */
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   399
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   400
const char *standard_function_names[] = {
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   401
"""
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   402
for fname, fdecls in [ (fname,std_fdecls[fname]) for fname in official_order ]:
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   403
    standard_function_names += "\""+fname+"\",\n"
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   404
standard_function_names += """
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   405
/* end of array marker! Do not remove! */
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   406
NULL
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   407
};
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   408
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   409
"""
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   410
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   411
###################################################################
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   412
###################################################################
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   413
###################################################################
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   414
"""
25
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   415
Generate the C implementation of the IEC standard function library.
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   416
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   417
iec_std_lib_generated =  """
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   418
/****
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   419
 * IEC 61131-3 standard function lib
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   420
 * generated code, do not edit by hand
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   421
 */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   422
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   423
/* Macro that expand to subtypes */
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   424
"""
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   425
for typename, parenttypename in TypeHierarchy_list:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   426
    if (typename.startswith("ANY")):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   427
        iec_std_lib_generated += "#define " + typename + "(DO)"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   428
        for typename2, parenttypename2 in TypeHierarchy_list:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   429
            if(parenttypename2 == typename):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   430
                if(typename2.startswith("ANY")):
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   431
                    iec_std_lib_generated +=  " " + typename2 + "(DO)"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   432
                else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   433
                    iec_std_lib_generated +=  " DO(" + typename2 + ")"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   434
        iec_std_lib_generated +=  "\n"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   435
    else:
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   436
        break
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   437
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   438
if len(sys.argv) != 2 :
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   439
    print "Usage: " + sys.argv[0] + "path_name\n -> create files in path_name"
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   440
    sys.exit(0)
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   441
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   442
# Now, print that out, or write to files from sys.argv
36
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   443
for path, name, ext in [
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   444
        ('stage4/generate_cc','function_type_decl','h'),
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   445
        ('stage4/generate_cc','get_function_type_decl','c'),
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   446
        ('stage4/generate_cc','st_code_gen','c'),
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   447
        ('stage4/generate_cc','il_code_gen','c'),
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   448
        ('stage4/generate_cc','search_type_code','c'),
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   449
        ('stage1_2','standard_function_names','c'),
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   450
        ('lib', 'iec_std_lib_generated','h')
26
36d378bd852e Stage4 changes according to new STD lib implementation
etisserant
parents: 25
diff changeset
   451
        ]:
36
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   452
    fd = open(os.path.join(sys.argv[1], path, name+'.'+ext),'w')
25
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   453
    fd.write(eval(name))
8dc68e669d99 Early implementation of STD library.
etisserant
parents:
diff changeset
   454
    fd.close()
36
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   455
    
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   456
#print "/* Code to eventually paste in iec_std_lib.h if type hierarchy changed */"
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   457
#print "/* you also have to change iec_std_lib.h according to new types        */\n\n"
e7d67b27877f Changes in the std library + std lib PLCOpen test (broken)
etisserant
parents: 26
diff changeset
   458
#print iec_std_lib_generated