home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ada_funcs.tcl < prev    next >
Text File  |  1997-10-20  |  69KB  |  2,306 lines

  1. ###########################################################################
  2. ##
  3. ##  Copyright (c) 1996 by Cadre Technologies Inc.
  4. ##                          and Scientific Toolworks Inc.
  5. ##
  6. ##  This software is furnished under a license and may be used only in
  7. ##  accordance with the terms of such license and with the inclusion of
  8. ##  the above copyright notice. This software or any other copies thereof
  9. ##  may not be provided or otherwise made available to any other person.
  10. ##  No title to and ownership of the software is hereby transferred.
  11. ##
  12. ##  The information in this software is subject to change without notice
  13. ##  and should not be construed as a commitment by Cadre Technologies Inc.
  14. ##  or Scientific Toolworks Inc.
  15. ##
  16. ###########################################################################
  17. # Version 6.1.4 - 9/9/97
  18. # Handled external parent classes (parent classes in a different system version).
  19. # When a parent class is external, the hierarchy of external classes is traversed
  20. # to locate the root classes and find inherited methods. 
  21.  
  22. require a83genmsg.tcl
  23.  
  24. proc oopl_model::generate {model} {
  25.     global root_classes root_class g_op_list g_assoc_list
  26.     global g_local_op_count g_local_op_list link_class_added
  27.         ## HM - added g_local_pub_assoc_access_count and g_local_priv_assoc_access_count
  28.         ## HM - added g_local_pub_attr_access_count and g_local_pub_attr_access_count
  29.         ## HM - added g_local_assoc_count to count association components
  30.     ## HM - added g_local_inh_op_count to count inherited operations
  31.     ## HM - added g_model_root_classes to find external root classes
  32.         global g_local_assoc_count
  33.         global g_local_pub_assoc_access_count
  34.         global g_local_priv_assoc_access_count
  35.         global g_local_pub_attr_access_count
  36.         global g_local_priv_attr_access_count
  37.     global g_local_inh_op_count
  38.     global g_model_root_classes
  39.  
  40.     check_unique_file_names $model
  41.  
  42.     echo "Generating Ada 83 code"
  43.     set g_assoc_list ""
  44.     set root_classes ""
  45.     set g_model_root_classes ""
  46.     set pers_class_exists 0
  47.     set got_a_class 0
  48.  
  49.     create_ada_sections $ada_hdr_sections
  50.     init_sys_sections $sysfile_name
  51.  
  52.     #HM moved class2tgtfiles outside of if and call is_file_generated with h_filename
  53.      #  instead of sysfile_name
  54.     class2tgtfiles $sysfile_name c_filename h_filename
  55.     if {[is_file_regenerated $h_filename]} {
  56.          if [catch {prepare_regeneration $sysfile_name 1} result] {
  57.         # something went wrong, find out what
  58.         switch $errorCode {
  59.             ERR_REGEN {
  60.                 puts stderr $result
  61.                 return
  62.             }
  63.             default {error $result $errorInfo $errorCode}
  64.             }
  65.        }
  66.  
  67.     }
  68.  
  69.     set class_list [get_classes $model]
  70.     foreach class $class_list {
  71.         global link_incl_list
  72.         set link_incl_list ""
  73.         set got_a_class 1
  74.  
  75.         set class_name [get_name $class]
  76.         if {$class_name == ""}  {continue}
  77.  
  78.                 #HM moved this from after skips so that named class always goes on list
  79.     
  80.         if [is_external $class]  {
  81.                      trace_external_tree $class $class_list
  82.         } else  {
  83.             set g_op_list($class_name) ""
  84.             if {[get_super_classes $class] == "" } {
  85.                 echo "subclasses = [get_sub_classes $class]"
  86.                 if {[get_sub_classes $class] != ""} {
  87.                     append g_model_root_classes "$class "
  88.                 }
  89.             }
  90.         }
  91.         set skip [skip_class $class 0]
  92.         if {$skip == 2} {set pers_class_exists 1}
  93.         if {$skip != 0} {continue}
  94.  
  95.         if {[get_super_classes $class] == "" } {
  96.             echo "subclasses = [get_sub_classes $class]"
  97.             if {[get_sub_classes $class] != ""} {
  98.                 append root_classes "$class "
  99.             }
  100.         }
  101.         foreach super [get_super_classes $class] {
  102.             set super_name [get_super_name $super]
  103.         }
  104.         gen_assoc_list $class
  105.  
  106.         if {[get_obj_type $class] == "class_typedef" ||
  107.             [get_obj_type $class] == "class_enum"} {
  108.             generate $class
  109.         }
  110.     }
  111.  
  112.  
  113.     write_sys_sections $sysfile_name $ada_hdr_sections
  114.  
  115.     if {$pers_class_exists == 1} {
  116.         puts stderr "At least one class in the model is persistent.  Ada code cannot be generated."
  117.         return
  118.     }
  119.  
  120.     echo "association list:  $g_assoc_list"
  121.  
  122.     echo "Root Classes:"
  123.     foreach root_class $root_classes {
  124.         echo "   [get_name $root_class]"
  125.         set g_class_list([get_name $root_class]) "$root_class "
  126.     }
  127.  
  128.     echo "Model Root Classes:"
  129.     foreach root_class $g_model_root_classes {
  130.         echo "   [get_name $root_class]"
  131.         gen_op_lists $root_class
  132.     }
  133.  
  134.     if {$got_a_class == 1} {
  135.     foreach i [array names g_op_list] {
  136.         echo "$i:"
  137.         foreach j $g_op_list($i) {
  138.             set cname [get_name [split_op_list_entry $j class]]
  139.             set inh_access [split_op_list_entry $j inh]
  140.             echo "  $cname ($inh_access)"
  141.         }
  142.     }}
  143.  
  144.     foreach class [get_classes $model] {
  145.         set g_local_assoc_count 0
  146.         set g_local_priv_assoc_access_count 0
  147.         set g_local_pub_assoc_access_count 0
  148.         set g_local_priv_attr_access_count 0
  149.         set g_local_pub_attr_access_count 0
  150.         set g_local_inh_op_count 0
  151.         set g_local_op_count 0
  152.  
  153.         if {[skip_class $class 1] == 1 || 
  154.             [get_obj_type $class] == "class_typedef" ||
  155.             [get_obj_type $class] == "class_enum"} {
  156.             continue
  157.         }
  158.         class2tgtfiles [get_name $class] nts nth
  159.         global skip_file
  160.         global gen_file
  161.         global import_new
  162.         if [info exists gen_file($nth)] {
  163.             set gen_file($nts) 1
  164.         }
  165.         if {[get_class_source $class] != ""} {
  166.             process_external_class_source $class
  167.             continue
  168.         }
  169.         if {( $import_new &&
  170.               ([is_special_class $class] || 
  171.                [info exists skip_file($nts)]) &&
  172.               [info exists skip_file($nth)]) ||
  173.             ( !$import_new &&
  174.               ![info exists gen_file($nts)] &&
  175.               ![info exists gen_file($nth)])} {
  176.             continue
  177.         }
  178.  
  179.         echo "   Class Type = [get_obj_type $class]"
  180.         set link_class_added 0
  181.  
  182.         generate $class
  183.  
  184.         for {set x 0} {$x < $g_local_op_count} {incr x} {
  185.             unset g_local_op_list($x)
  186.         }
  187.     }
  188.  
  189.     if {$g_poly == "On"} {
  190.     global g_generate_separates
  191.     set g_generate_separates "Off"
  192.     global g_func_list
  193.     global g_poly_op_list g_poly_op_class_list g_poly_op_param_list g_poly_op_count
  194.  
  195.     foreach root_class $root_classes {
  196.         set g_poly_op_count 0
  197.         class2polyfiles $root_class src_file h_file
  198.         echo "h_file = $h_file"
  199.         global gen_file
  200.  
  201.         create_ada_sections [concat $ada_hdr_sections $ada_src_sections]
  202.         init_poly_sections $root_class
  203.  
  204.         echo "   [get_name $root_class]"
  205.         set g_func_list ""
  206.         set r_name [get_name $root_class]
  207.         global g_parent_list
  208.         set g_parent_list "$r_name "
  209.         global link_incl_list
  210.         set link_incl_list ""
  211.         class::gen_poly $root_class
  212.         gen_poly_body $r_name
  213.         exit_poly_sections $root_class
  214.         write_poly_sections $root_class $ada_hdr_sections $ada_src_sections
  215.     }
  216.    }
  217. }
  218.  
  219.  
  220. proc trace_external_tree {class class_list} {
  221.     global g_op_list
  222.     global g_model_root_classes
  223.  
  224.     set class_name [get_name $class]
  225.     if {$class_name == ""} {return}
  226.  
  227.     set skip [skip_class $class 0]
  228.     if {$skip == 2} {set pers_class_exists 1}
  229.  
  230.     set g_op_list($class_name) ""
  231.     set super_classes [get_super_classes $class]
  232.     if {$super_classes == ""} {
  233.         echo "subclasses [get_sub_classes $class]"
  234.         if {[get_sub_classes $class] != ""} {
  235.             append g_model_root_classes "$class "
  236.         }
  237.     } else {
  238.         foreach super_inh $super_classes {
  239.             set super_class [get_super_class $super_inh]
  240.             set super_name [get_name $super_class]
  241.             if {![info exists g_op_list($super_name)] && [lsearch $class_list $super_class] == -1} {
  242.                trace_external_tree $super_class $class_list
  243.             }
  244.         }
  245.     }
  246. }
  247.  
  248.  
  249. proc skip_class {class flag} {
  250.     if {[is_db_class $class] == 1} {
  251.         m4_error $E_PERSISTCLASS [get_name $class]
  252.         return 2
  253.     }
  254.     if [is_external $class] {
  255.         return 1
  256.     }
  257.     if {[get_name $class] == ""} {
  258.         if {$flag == 1} {puts stderr "Class without name skipped"}
  259.         return 1
  260.     }
  261.     return 0
  262. }
  263.  
  264. # Check uniqueness of filenames
  265. #
  266. proc check_unique_file_names {model} {
  267.     foreach class [get_classes $model] {
  268.         set cl_name [get_name $class]
  269.         set file_name [class2file $cl_name]
  270.         if [is_external $class] {
  271.             continue
  272.         }
  273.         if [info exists names($file_name)] {
  274.             error "Classes '$cl_name' and '$names($file_name)' map to the same file name" "" ERR_UNIQUE_FILENAME
  275.         }
  276.         set names($file_name) $cl_name
  277.     }
  278. }
  279.  
  280. proc class::generate {class} {
  281.     #HM added g_component_count to know when to add "null;" to record declarations
  282.         global g_component_count
  283.  
  284.         set g_component_count 0
  285.     create_ada_sections [concat $ada_hdr_sections $ada_src_sections]
  286.     init_ada_sections [get_name $class] [get_data_section $class] [get_class_vis $class]
  287.     if [catch {prepare_regeneration [get_name $class] 0} result] {
  288.         # something went wrong, find out what
  289.         switch $errorCode {
  290.             ERR_REGEN {
  291.                 puts stderr $result
  292.                 return
  293.             }
  294.             default {error $result $errorInfo $errorCode}
  295.         }
  296.         class2tgtfiles [get_name $class] src_file h_file
  297.         global gen_file
  298.         catch {unset gen_file($src_file)}
  299.         if {! [info exists gen_file($h_file)]} {
  300.             return
  301.         }
  302.     }
  303.     set hsect $ada_sections(h_hdr_sect)
  304.     set csect $ada_sections(c_hdr_sect)
  305.     set class_name [get_name $class]
  306.     section append $hsect "-- Specification file for ${class_name}\n\n"
  307.     section append $csect "-- Body file for ${class_name}\n\n"
  308.     puts stdout "Generating for class '${class_name}'"
  309.     gen_hdr_incs $class
  310.     class::gen_description $class $ada_sections(h_class_nm_sect)
  311.     set is_db 0
  312.     add_src_inc $class
  313.  
  314.     set class_visibility [gen_class_decl $class]
  315.  
  316.     # This generates attributes & operation definitions...
  317.     #
  318.     foreach feat [get_features $class] {
  319.         set feat_type [get_obj_type $feat]
  320.         echo "   feature type = $feat_type"
  321.         set inh_mode 0
  322.         if {$feat_type == "operation"} {
  323.             generate $feat $class $class_name $inh_mode
  324.         } else {
  325.             generate $feat $class
  326.         }
  327.     }
  328.  
  329.     gen_inherited_ops $class
  330.     gen_delayed_code
  331.     gen_end_protector $class
  332.     append_obsolete_code $class
  333.     exit_ada_sections $class
  334.     write_ada_sections $class $ada_hdr_sections $ada_src_sections
  335. }
  336.  
  337. proc class::gen_description {class sect} {
  338.     set ftext [$class getFreeText]
  339.     if {$ftext != ""} {
  340.         section append $sect "\n"
  341.         string_to_oopl_comment $sect $ftext
  342.         section append $sect "\n"
  343.     }
  344. }
  345.  
  346.  
  347. proc class_enum::generate {class} {
  348.     set sect $ada_sections(h_pub_data_sect)
  349.     set enum_name [get_name $class]
  350.     section append $sect "type $enum_name is ("
  351.     set first 1
  352.     foreach attrib [get_features $class] {
  353.         if {$first == 0} {section append $sect ","}
  354.         section append $sect "[get_name $attrib]"
  355.         set first 0
  356.     }
  357.     section append $sect ");\n\n"
  358.  
  359.     #puts stderr "ERROR: Enum classes are not supported for Ada"
  360.  
  361.     return
  362. }
  363.  
  364. proc class_typedef::generate {class} {
  365.     set subtype_name [get_name $class]
  366.     set attrib [lindex [get_features $class] 0]
  367.     set type_name [get_name [get_type $attrib]]
  368.     set subtype_text [get_subtype_text $class]
  369.     section append $ada_sections(h_pub_data_sect) \
  370.        "subtype $subtype_name is ${type_name} ${subtype_text};\n\n"
  371. }
  372.  
  373. proc class_generic_typedef::generate {class} {
  374.     if {[get_name $class] == ""} {
  375.         puts stderr "Class without name skipped"
  376.         return
  377.     }
  378.     class::generate $class
  379.     return
  380. }
  381.  
  382. proc class_typedef::gen_class_decl {class} {
  383.     class::gen_class_decl $class
  384. }
  385.  
  386. proc class_generic_typedef::gen_class_decl {class} {
  387.     class::gen_class_decl $class
  388. }
  389.  
  390. proc gen_end_protector {class} {
  391.     set class_name [get_name $class]
  392.     set protector [protector_name $class_name]
  393.     section append $ada_sections(h_trailer_sect) \
  394.         "end $class_name;\n"
  395. }
  396.  
  397.  
  398. proc class::gen_class_decl {class} {
  399.     set class_name [get_name $class]
  400.     set h_sect $ada_sections(h_class_nm_sect)
  401.     set c_sect $ada_sections(c_class_nm_sect)
  402.  
  403.     set class_name [get_name $class]
  404.  
  405.     set class_visibility [get_class_vis $class]
  406.     echo "class name = $class_name ($class_visibility)"
  407.  
  408.     section append $h_sect "package $class_name is \n"
  409.     section append $c_sect "package body $class_name is \n"
  410.  
  411.     set h_sect $ada_sections(h_pub_data_sect)
  412.     set c_sect $ada_sections(c_opaque_sect)
  413.  
  414.     case $class_visibility in {
  415.        {Private} {
  416.         section append $h_sect "\ntype $g_record_name is private;\n"
  417.        }
  418.        {Limited} {
  419.         section append $h_sect "\ntype $g_record_name is limited private;\n"
  420.        }
  421.        {Opaque} {
  422.         set o_sect $ada_sections(h_priv_data_sect)
  423.         section append $h_sect "type $g_record_name is limited private;\n"
  424.         section append $h_sect "type $g_handle_name is access $g_record_name;\n"
  425.         section append $o_sect "type $o_record_name;\n"
  426.         section append $o_sect "type $g_record_name is access $o_record_name;\n"
  427.         section append $c_sect "type $o_record_name is record\n"
  428.         section set_indent $c_sect +
  429.        }
  430.     }
  431.     return $class_visibility
  432. }
  433.  
  434.  
  435. proc gen_inherited_ops {class} {
  436.     global inh_operation_list inh_op_table inh_op_type_list operation_count
  437.     global g_op_list_type g_inh_op_count link_incl_list
  438.  
  439.     set class_name [get_name $class]
  440.     set operation_count -1
  441.     set g_inh_op_count 0
  442.     set link_incl_list ""
  443.     foreach super [get_super_classes $class] {
  444.         generate $super $class
  445.     }
  446.     for {set x 0} {$x <= $operation_count} {incr x} {
  447.         set feat_name [lrange $inh_operation_list($x) 0 0]
  448.  
  449.         if {$g_op_list_type($x) == 0} {
  450.             set f_sect $ada_sections(c_access_func_sect)
  451.             if {$f_sect != ""} {section append $f_sect "\n"}
  452.         } else {
  453.             if {$g_op_list_type($x) == 1} {
  454.                 set f_sect $ada_sections(c_impl_sect)
  455.             }
  456.         } 
  457.         set prefix ""
  458.         if {[section get_line_nr $g_operation_list2($x)] > 2} {
  459.             set prefix "-- "
  460.         }
  461.         section set_indent $g_operation_list($x) + 1 "    ${prefix}"
  462.  
  463.         section append_section $g_operation_list($x) $g_operation_list2($x)
  464.         section append_section $f_sect $g_operation_list($x)
  465.            section append $f_sect "end $feat_name;\n"
  466.  
  467.         section dealloc $g_operation_list($x)
  468.         section dealloc $g_operation_list2($x)
  469.     }
  470. }
  471.     
  472.  
  473. proc link_class::generate {class} {
  474. #    puts stdout "Generating for link class '[get_name $class]'"
  475.     if {[get_name $class] == ""} {
  476.         puts stderr "Link class without name skipped"
  477.         return
  478.     }
  479.     class::generate $class
  480. }
  481.  
  482. proc link_class::gen_class_decl {class} {
  483.     class::gen_class_decl $class
  484. }
  485.  
  486.  
  487. proc append_to_op_list {inh_op_sect flag} {
  488.     global operation_count
  489.  
  490.     set ok_to_append 1
  491.     for {set x 0} {$x < $operation_count} {incr x} {
  492.         if {[section get_contents $g_operation_list($x)] == \
  493.             [section get_contents $g_operation_list($operation_count)]} {
  494.             if {[section get_contents $g_operation_list2($x)] != \
  495.                [section get_contents $g_operation_list2($operation_count)]} {
  496.                 section append_section $g_operation_list2($x) \
  497.                     $g_operation_list2($operation_count)
  498.             }
  499.             set ok_to_append 0
  500.             section dealloc $g_operation_list($operation_count) 
  501.             section dealloc $g_operation_list2($operation_count)
  502.             incr operation_count -1
  503.         }
  504.     }
  505.     if {$ok_to_append == 1} {
  506.         global g_op_list_type
  507.         if {$flag == 1} {
  508.             set g_op_list_type($operation_count) 1
  509.             section append_section $inh_op_sect $tmp_h_sect
  510.         } else {
  511.             set g_op_list_type($operation_count) 0
  512.         }
  513.     }
  514. }
  515.  
  516.  
  517. proc inher_group::generate {group class} {
  518.     global g_op_list
  519.     global tmp_h_sect
  520.     global INHERCOMPCMMT
  521.  
  522.     set class_name [get_name $class]
  523.     set i_sect $ada_sections(h_incl_sect)
  524.     set sect $ada_sections(h_class_nm_sect)
  525.     set super_name [get_super_name $group]
  526.     add_hdr_inc [get_super_class $group]   ;# includes class' include file
  527.     section append $i_sect "with $super_name;\n"
  528.  
  529.     set sect2 [get_data_section $class]
  530.  
  531.     if {[get_class_vis $class] == "Public"} {
  532.         set inh_op_sect $ada_sections(h_pub_func_sect)
  533.     } else {
  534.         set inh_op_sect $ada_sections(h_priv_func_sect)
  535.     }
  536.  
  537.     #HM added comment to signal inheritance component
  538.     section append $sect2 $INHERCOMPCMMT
  539.     section append $sect2 "\n"
  540.  
  541.     section append $sect2 "${super_name}${g_inh_ext} : ${super_name}.$g_record_name;\n"
  542.         incr_component_count
  543.  
  544.     set inh_mode 1
  545.     set super_inh_access [get_inher_access $group]
  546.     if {$super_inh_access == ""} {set inh_access "Public"}
  547.     set current_op_list "[get_super_class $group]:$super_inh_access "
  548.     append current_op_list $g_op_list($super_name)
  549.     foreach entry $current_op_list {
  550.         set inh_class [split_op_list_entry $entry class]
  551.         set inh_access [split_op_list_entry $entry inh]
  552.  
  553.         echo "inh_access = $inh_access for [get_name $inh_class] of $class_name"
  554.         if {$super_inh_access == "Private"  || $inh_access == "Private"} {continue}
  555.  
  556.         foreach feat [get_features $inh_class] {
  557.             set inh_op_sect [get_func_section $feat]
  558.  
  559.             if {$inh_op_sect != $ada_sections(h_pub_func_sect)} {continue}
  560.  
  561.             set feat_type [get_obj_type $feat]
  562.             set inh_name [get_name [get_super_class $group]]
  563.  
  564.             if {$feat_type == "constructor"} {continue}
  565.  
  566.             echo "   Inherited feature: [get_name $feat] ($feat_type)"
  567.  
  568.             if {$feat_type == "operation"} {
  569.                 if {[get_the_class_feature $feat] == 1} {continue}
  570.                 if {[generate $feat $inh_class $inh_name $inh_mode] == -1} {continue}
  571.                 append_to_op_list $inh_op_sect 1
  572.                 set tmp_h_sect [section create]
  573.             } else {
  574.                    set type [get_${feat_type}_type_name $feat] 
  575.                    set result [gen_access_hdr $feat $type 1]
  576.                    echo "RESULT = $result"
  577.                     set name [get_full_feat_name $feat]
  578.  
  579.                    if {[get_attrib_hdr_sect $feat r] == $ada_sections(h_pub_access_sect)} {
  580.                        if {$result == 1 || $result == 3} {
  581.  
  582.                            gen_access_body "get" $feat $class $inh_name $type 1 \
  583.                             "Get_${name} (Self.${inh_name}${g_inh_ext});\n"
  584.                        }
  585.                    }
  586.                     append_to_op_list $inh_op_sect 0
  587.  
  588.                    if {[get_attrib_hdr_sect $feat w] == $ada_sections(h_pub_access_sect)} {
  589.                        if {$result > 1} {
  590.                            gen_access_body "set" $feat $class $inh_name $type 1 \
  591.                            "Set_${name} (Self.${inh_name}${g_inh_ext}, New_${name});\n"
  592.                        }
  593.                    }
  594.                     append_to_op_list $inh_op_sect 0
  595.                 }
  596.         }
  597.     }
  598. }
  599.  
  600.  
  601. proc get_full_feat_name {feat} {
  602.     set name [cap [map_oper [get_name $feat]]]
  603.     set type [cap [get_name [get_type $feat]]]
  604.     if {$name == $type} {
  605.         return "${name}_${g_qualified_rname}"
  606.     } else {
  607.         return $name
  608.     }
  609. }
  610.  
  611. proc ok_to_add {inh_flag sect name} {
  612.     set flag 0
  613.     if {$inh_flag == 0} {
  614.         if {$sect != $ada_sections(dev_null_sect)} {
  615.             set flag 1
  616.         }
  617.     } else {
  618.         if {$sect == $ada_sections(h_pub_access_sect)} {
  619.             set flag 1
  620.         }
  621.     }
  622.     return $flag
  623. }
  624.  
  625.  
  626. proc process_local_op_list {inh_flag real_sect tmp_sect} {
  627.     set method_type [section get_contents $tmp_sect]
  628.     if {$inh_flag ==0} {
  629.         add_to_local_op_list $method_type
  630.         section append_section $real_sect $tmp_sect
  631.         return 1
  632.     } else {
  633.         if {[check_local_op_list $method_type] == 1} {
  634.             return 0
  635.         } else {
  636.             global g_inh_op_count
  637.             global g_inh_op_list
  638.             echo "METHOD = $method_type"
  639.             for {set x 0} {$x < $g_inh_op_count} {incr x} {
  640.                 set inh_op [section get_contents $g_inh_op_list($x)]
  641.                 echo "INH_OP = $inh_op"
  642.                 if {[section get_contents $g_inh_op_list($x)] == $method_type} {return 1}
  643.             }
  644.             section append_section $real_sect $tmp_sect
  645.             return 1
  646.         }
  647.     }
  648. }
  649.  
  650. proc get_get_sig {static_val} {
  651.     if {$static_val == 0} {
  652.         return "(Self : ${g_record_name}) "
  653.     } else {
  654.         return ""
  655.     }
  656. }
  657.  
  658. proc get_set_sig {static_val} {
  659.     if {$static_val == 0} {
  660.         return "Self : in out ${g_record_name}; " 
  661.     } else {
  662.         return ""
  663.     }
  664. }
  665.  
  666.  
  667. proc gen_access_cmmt {is_data hdr_type tmp_sect} {
  668.     global g_local_priv_assoc_access_count
  669.     global g_local_pub_assoc_access_count
  670.      global g_local_priv_attr_access_count
  671.      global g_local_pub_attr_access_count
  672.     global ASSOCACCESSCMMT
  673.     global ATTRACCESSCMMT
  674.  
  675.         if {$is_data == 1}   {
  676.        if {$hdr_type == "Private"} {
  677.           incr g_local_priv_attr_access_count 1
  678.               if {$g_local_priv_attr_access_count == 1}   {
  679.                     section append $tmp_sect $ATTRACCESSCMMT
  680.                  section append $tmp_sect "\n"
  681.                  }
  682.        } else {
  683.           incr g_local_pub_attr_access_count 1
  684.               if {$g_local_pub_attr_access_count == 1}   {
  685.                     section append $tmp_sect $ATTRACCESSCMMT
  686.                  section append $tmp_sect "\n"
  687.                  }
  688.        }
  689.  
  690.         } else {
  691.        if {$hdr_type == "Private"} {
  692.                  incr g_local_priv_assoc_access_count 1
  693.               if {$g_local_priv_assoc_access_count == 1}   {
  694.                  section append $tmp_sect $ASSOCACCESSCMMT
  695.                  section append $tmp_sect "\n"
  696.               }
  697.        } else {
  698.                  incr g_local_pub_assoc_access_count 1
  699.               if {$g_local_pub_assoc_access_count == 1}   {
  700.                  section append $tmp_sect $ASSOCACCESSCMMT
  701.                  section append $tmp_sect "\n"
  702.               }
  703.        }
  704.            }
  705. }
  706.  
  707.  
  708.  
  709. proc gen_access_hdr {feat type inh_flag} {
  710.     set static_val [get_the_class_feature $feat]
  711.  
  712.     if {$inh_flag == 1} {
  713.         if {$static_val == 1} {
  714.             return
  715.         } else {
  716.             set static_val 0
  717.         }
  718.     }
  719.     set name [get_full_feat_name $feat]
  720.     set tmp_get_sect [section create]
  721.     set tmp_set_sect [section create]
  722.  
  723.     if {[get_obj_type $feat] == "data_attrib"} {
  724.         set get_sect [get_attrib_hdr_sect $feat r]
  725.         set set_sect [get_attrib_hdr_sect $feat w]
  726.         set get_hdr_type [get_attrib_hdr_type $feat r]
  727.         set set_hdr_type [get_attrib_hdr_type $feat w]
  728.         set is_data 1
  729.     } else {
  730.         set get_sect [get_assoc_hdr_sect $feat r]
  731.         set set_sect [get_assoc_hdr_sect $feat w]
  732.         set get_hdr_type [get_assoc_hdr_type $feat r]
  733.         set set_hdr_type [get_assoc_hdr_type $feat w]
  734.         set is_data 0
  735.     }
  736.     set gname "Get_${name}"
  737.     set sname "Set_${name}"
  738.     set c_sect $ada_sections(c_access_func_sect)
  739.     set result 0
  740.  
  741.     if {[ok_to_add $inh_flag $get_sect $gname]  ==  1} {
  742.         gen_access_cmmt $is_data $get_hdr_type $tmp_get_sect
  743.         set get_line "function $gname [get_get_sig $static_val]return $type"
  744.         section append $tmp_get_sect "${get_line};\n\n"
  745.         set success [process_local_op_list $inh_flag $get_sect $tmp_get_sect]
  746.         if {$success == 1} {incr result 1}
  747.     }
  748.  
  749.     if {[ok_to_add $inh_flag $set_sect $sname] == 1} {
  750.         gen_access_cmmt $is_data $set_hdr_type $tmp_set_sect
  751.         set set_line "procedure $sname ([get_set_sig $static_val]New_${name} : $type)"
  752.         section append $tmp_set_sect "${set_line};\n\n"
  753.         set success [process_local_op_list $inh_flag $set_sect $tmp_set_sect]
  754.         if {$success == 1} {incr result 2}
  755.     }
  756.     return $result
  757. }
  758.  
  759.  
  760. proc gen_access_body {flag feat class inh_name type inh_flag line2} {
  761.     set feat_name [get_full_feat_name $feat]
  762.     set class_name [get_name $class]
  763.     set static_val [get_the_class_feature $feat]
  764.  
  765.     if {$inh_flag == 0} {
  766.         set line3 "    "
  767.         set tmp_sect [section create]
  768.     } else {
  769.         if {$static_val == 1} {
  770.             return
  771.         } else {
  772.             set static_val 0
  773.         }
  774.     }
  775.  
  776.     if {$flag == "get"} {
  777.         if {[get_obj_type $feat] == "data_attrib"} {
  778.             set get_sect [get_attrib_hdr_sect $feat r]
  779.         } else {
  780.             set get_sect [get_assoc_hdr_sect $feat r]
  781.         }
  782.                 set name "Get_${feat_name}"
  783.         if {[ok_to_add $inh_flag $get_sect $name] == 0} {return}
  784.         set line1 "function $name [get_get_sig $static_val]return $type"
  785.         append line3 "return "
  786.     } else {
  787.         if {[get_obj_type $feat] == "data_attrib"} {
  788.             set set_sect [get_attrib_hdr_sect $feat w]
  789.         } else {
  790.             set set_sect [get_assoc_hdr_sect $feat w]
  791.         }
  792.                 set name "Set_${feat_name}"
  793.         if {[ok_to_add $inh_flag $set_sect $name] == 0} {return}
  794.         set line1 "procedure $name ([get_set_sig $static_val]New_${feat_name} : $type)"
  795.     }
  796.  
  797.     if {$static_val == 1} {
  798.         append line3 $line2
  799.     } else {
  800.         append line3 "${inh_name}." $line2
  801.     }
  802.     if {$inh_flag == 1} {
  803.         set tmp_c_sect2 [section create]
  804.         global g_operation_list g_operation_list2 inh_operation_list operation_count
  805.         global g_inh_op_list g_inh_op_count
  806.  
  807.         incr operation_count
  808.         set inh_operation_list($operation_count) "$name "
  809.         set g_operation_list($operation_count) [section create]
  810.         set tmp_sect $g_operation_list($operation_count)
  811.  
  812.         ##HM section append $tmp_sect "--OT g_operation_list section created in gen_access_body\n"
  813.         set g_operation_list2($operation_count) [section create]
  814.         set tmp_sect2 $g_operation_list2($operation_count)
  815.  
  816.         ##HM section append $tmp_sect2 "--OT g_operation_list2 section created in gen_access_body\n"
  817.         section append $tmp_sect2 $line3
  818.         set g_inh_op_list($g_inh_op_count) [section create]
  819.         section append $g_inh_op_list($g_inh_op_count) "${line1};\n\n"
  820.         incr g_inh_op_count
  821.     }
  822.  
  823.     section append $tmp_sect "${line1} is\n"
  824.  
  825.     section append $tmp_sect "begin\n"
  826.  
  827.     if {$inh_flag == 0} {
  828.         section append $tmp_sect $line3
  829.         section append $tmp_sect "end ${name};\n\n" 
  830.             set c_sect $ada_sections(c_access_func_sect)
  831.         section append_section $c_sect $tmp_sect
  832.     } 
  833. }
  834.  
  835.  
  836. proc feature::gen_description {feature sect} {
  837.     set ftext [$feature getFreeText]
  838.     if {$ftext != ""} {
  839.         string_to_oopl_comment $sect $ftext
  840.     }
  841. }
  842.  
  843. proc get_qual_type {type sect} {
  844. #HM added this routine to get a qualifier type name and with sys types if needed
  845.     set type_name [get_name $type]
  846.     if {$type_name == ""} {return "void "}
  847.     set obj_type [get_obj_type $type]
  848.     if {$obj_type == "class_type"} {
  849.         add_incl_stmnt $type_name
  850.         append type_name ".$g_handle_name"
  851.     } elseif { $obj_type == "base_type" } {
  852.                 set type_name [$type getType3GL]
  853.         } elseif { $obj_type == "typedef_type" } {
  854.         set p_type [cap [getCurrentSystemName]]_Types.$type_name
  855.         set type_name $p_type
  856.         set sys_types_name [cap [getCurrentSystemName]]_Types
  857.         add_incl_stmnt_sect $sys_types_name $sect
  858.     } elseif { $obj_type == "enum_type" } {
  859.         set p_type [cap [getCurrentSystemName]]_Types.$type_name
  860.         set type_name $p_type;
  861.         set sys_types_name [cap [getCurrentSystemName]]_Types
  862.         add_incl_stmnt_sect $sys_types_name $sect
  863.     }
  864.     return $type_name
  865. }
  866.  
  867.  
  868.  
  869. proc get_full_type {type} {
  870. #HM removed cap from "set type_name" - this causes replace in round-trip
  871. #HM added Sys_Types package name to front of enum and subtype names
  872.     set type_name [get_name $type]
  873.     if {$type_name == ""} {return "void "}
  874.     set obj_type [get_obj_type $type]
  875.     if {$obj_type == "class_type"} {
  876.         add_incl_stmnt $type_name
  877.         append type_name ".$g_handle_name"
  878.     } elseif { $obj_type == "base_type" } {
  879.                 set type_name [$type getType3GL]
  880.         } elseif { $obj_type == "typedef_type" } {
  881.         set p_type [cap [getCurrentSystemName]]_Types.$type_name
  882.         set type_name $p_type
  883.     } elseif { $obj_type == "enum_type" } {
  884.         set p_type [cap [getCurrentSystemName]]_Types.$type_name
  885.         set type_name $p_type;
  886.     }
  887.     return $type_name
  888. }
  889.  
  890. proc data_attrib::generate {attrib class} {
  891. #HM removed cap from "set name" - this was cassing attrib delete and add in round trip
  892.     set static_var [get_the_class_feature $attrib]
  893.  
  894.     set sect [get_data_section $class]
  895.     set name [get_name $attrib]
  896.         set type [get_type $attrib]
  897.         set obj_type [get_obj_type $type]
  898.     #HM - Deleted cap call - resulted in replace in round trip
  899.     set type_name [get_name $type]
  900.  
  901.     echo "      data attribute $name ($type_name)"
  902.  
  903.     feature::gen_description $attrib $sect
  904.  
  905.     if {[get_the_class_feature $attrib] == 1} {
  906.         if {[get_class_vis $class] != "Opaque"} {
  907.             set sect $ada_sections(h_static_data_sect)
  908.         } else {
  909.             set sect $ada_sections(c_static_data_sect)
  910.         }
  911.     } else {
  912.            incr_component_count
  913.         }
  914.  
  915.     set type_name [get_full_type [get_type $attrib]]
  916.  
  917.     section append $sect "$name : $type_name;\n"
  918.  
  919.     gen_access_hdr $attrib $type_name 0
  920.  
  921.     set name [cap [get_name $attrib]]
  922.  
  923.     gen_access_body "get" $attrib $class "Self" $type_name 0 "${name};\n"
  924.     gen_access_body "set" $attrib $class "Self" $type_name 0 "${name} := New_${name};\n"
  925. }
  926.  
  927. # Common generate dispatch function for associations
  928. #
  929. proc gen_for_assoc {attrib class} {
  930.     set prefix "[get_obj_type $attrib]::[get_multiplicity $attrib]"
  931.     echo "prefix = $prefix"
  932.     ${prefix}_inter_pkg $attrib
  933.     ${prefix}_data $attrib $class
  934. }
  935.  
  936. # Common generate dispatch function for database associations
  937. #
  938. proc gen_for_db_assoc {attrib class} {
  939.     # do nothing!
  940. }
  941.  
  942. # Common generate dispatch function for links
  943. #
  944. proc gen_for_link {attrib class} {
  945.     set prefix "assoc_attrib::[get_multiplicity $attrib]"
  946.     ${prefix}_inter_pkg $attrib
  947.     ${prefix}_data $attrib $class
  948. }
  949.  
  950. # Common generate dispatch function for reverse links
  951. #
  952. proc gen_for_rv_link {attrib class} {
  953.     set prefix "assoc_attrib::[get_multiplicity $attrib]"
  954.     echo "prefix = $prefix"
  955.     ${prefix}_inter_pkg $attrib
  956.     ${prefix}_data $attrib $class
  957. }
  958.  
  959. proc assoc_attrib::generate {attrib class} {
  960.     #HM added check for bidirectional association
  961.     global g_local_assoc_count
  962.        global ASSOCCMMT
  963.  
  964.         if {[get_opposite $attrib] != ""}  {
  965.            set type [get_type $attrib]
  966.            if {[get_class_visibility $class] != "Opaque" || \
  967.                [get_class_visibility $type] != "Opaque"}  {
  968.           m4_error $E_BIDIRASSOC [get_name $class] [get_name $type]
  969.               return
  970.            }
  971.         }
  972.       set sect [get_data_section $class]
  973.     incr g_local_assoc_count 1
  974.     if {$g_local_assoc_count == 1} {
  975.         section append $sect $ASSOCCMMT
  976.         section append $sect "\n"
  977.     }
  978.     gen_for_assoc $attrib $class
  979. }
  980.  
  981. proc assign_var {to from type_obj {sect "src"}} {
  982.     if [type_is_char_array $type_obj] {
  983.                 add_[determine_sect_type $sect]_inc_name "string" "h"
  984.         return "strcpy($to, $from);"
  985.     }
  986.     return "$to = $from;"
  987. }
  988.  
  989. proc gen_assoc_access_sects {class attrib type} {
  990.     gen_access_hdr $attrib $type 0
  991.     set name [cap [get_name $attrib]]
  992.     gen_access_body "get" $attrib $class "Self" $type 0 "${name};\n"
  993.     gen_access_body "set" $attrib $class "Self" $type 0 "${name} := New_${name};\n"
  994. }
  995.  
  996.  
  997. proc gen_link_class_alt_additions {class i_sect} {
  998.     global link_class_added
  999.     global LINKPACKAGECMMT
  1000.     global LINKCONVCMMT
  1001.  
  1002.     echo "class type = [get_obj_type $class]"
  1003.     set name "[get_name $class]${g_alt_link_class_ext}"
  1004.     if {[get_obj_type $class] == "class_typedef" || [get_obj_type $class] == "link_class"} {
  1005.         if {$link_class_added == 0} {
  1006.             section append $i_sect "with $name;\n"
  1007.             set type1 ${name}.$g_handle_name
  1008.             set type2 $g_handle_name
  1009.  
  1010.             set h_sect $ada_sections(h_conv_func_sect)
  1011.             #HM added comment to signal link conversion functions
  1012.             section append $h_sect $LINKCONVCMMT
  1013.             section append $h_sect "\n"
  1014.             section append $h_sect "function Conv (From : $type1) return $type2;\n\n"
  1015.             section append $h_sect "function Conv (From : $type2) return $type1;\n\n"
  1016.  
  1017.             section append $ada_sections(c_conv_incl_sect) "with Unchecked_Conversion;\n"
  1018.  
  1019.             set sect $ada_sections(c_conv_func_sect)
  1020.             section append $sect "function Conv (From : $type1) return $type2 is\n"
  1021.             section append $sect \
  1022.                 "    function Conv is new Unchecked_Conversion ($type1, $type2);\n"
  1023.             section append $sect "begin\n"
  1024.             section append $sect "    return Conv(From);\n"
  1025.             section append $sect "end Conv;\n\n"
  1026.             section append $sect "function Conv (From : $type2) return $type1 is\n"
  1027.             section append $sect \
  1028.                 "    function Conv is new Unchecked_Conversion ($type2, $type1);\n"
  1029.             section append $sect "begin\n"
  1030.             section append $sect "    return Conv(From);\n"
  1031.             section append $sect "end Conv;\n\n"
  1032.  
  1033.             class2linkfiles $class s_filename h_filename
  1034.  
  1035.             global link_sections
  1036.             set link_sections(h_sect) [section create]
  1037.             set link_sections(c_sect) [section create]
  1038.             set l_sect $link_sections(h_sect)
  1039.             set l_sect2 $link_sections(c_sect)
  1040.  
  1041.             section append $l_sect "-- Specification file for ${name}\n\n"
  1042.             #HM added comment to signal as a link package
  1043.             section append $l_sect $LINKPACKAGECMMT
  1044.                 section append $l_sect "\n"
  1045.  
  1046.             section append $l_sect "package $name is\n"
  1047.             section append $l_sect "    type $g_handle_name is private;\n"
  1048.             section append $l_sect "private\n"
  1049.             section append $l_sect "    type $g_record_name;\n"
  1050.             section append $l_sect "    type $g_handle_name is access $g_record_name;\n"
  1051.             section append $l_sect "    for ${g_handle_name}'storage_size use 0;\n"
  1052.             section append $l_sect "end $name;\n" 
  1053.  
  1054.             section append $l_sect2 "-- Body file for ${name}\n\n"
  1055.             section append $l_sect2 "with [get_name $class];\n"
  1056.             section append $l_sect2 "package body $name is\n"
  1057.             section append $l_sect2 \
  1058.                 "    type $g_record_name is new [get_name $class].${g_record_name};\n"
  1059.             section append $l_sect2 "end $name;\n"
  1060.  
  1061.             write_link_sections $class h_sect c_sect
  1062.  
  1063.             set link_class_added 1
  1064.         }
  1065.     }
  1066. }
  1067.  
  1068.  
  1069. proc add_incl_stmnt {type} {
  1070.     global link_incl_list
  1071.     if {[lsearch $link_incl_list $type] == -1} { 
  1072.         section append $ada_sections(h_incl_sect) "with ${type};\n"
  1073.         lappend link_incl_list $type
  1074.     }
  1075. }
  1076.  
  1077.  
  1078. proc add_incl_stmnt_sect {type sect} {
  1079. #HM added this routine to add an include to a specified section - ada95 has only this version
  1080.     global link_incl_list
  1081.     if {[lsearch $link_incl_list $type] == -1} { 
  1082.         section append $sect "with ${type};\n"
  1083.         lappend link_incl_list $type
  1084.     }
  1085. }
  1086.  
  1087.  
  1088. proc get_type_of_attribute {attrib} {
  1089.     set type [cap [get_name [get_type $attrib]]]
  1090.     set obj_type [get_obj_type $attrib]
  1091.     if {$obj_type == "link_attrib" || $obj_type == "qual_link_attrib"} {
  1092.         append type $g_alt_link_class_ext
  1093.     }         
  1094.     return $type
  1095. }
  1096.  
  1097.  
  1098. proc get_data_attrib_type_name {attrib} {
  1099. #    return [cap [get_name [get_type $attrib]]]
  1100.     return [get_full_type [get_type $attrib]]
  1101. }
  1102.  
  1103. proc get_assoc_attrib_type_name {attrib} {
  1104.     set type [get_type_of_attribute $attrib]
  1105.     if {[get_multiplicity $attrib] == "one"} {
  1106.         add_incl_stmnt $type
  1107.         return ${type}.${g_handle_name}
  1108.     } else {
  1109.         if {[is_ordered $attrib] == "1"} {
  1110.             set generic_rname $g_ordered_set_rname
  1111.         } else {
  1112.             set generic_rname $g_unordered_set_rname
  1113.         }
  1114.         add_incl_stmnt ${type}_${generic_rname}
  1115.         return "${type}_${generic_rname}.${generic_rname}"
  1116.     }
  1117. }
  1118.  
  1119. proc get_link_attrib_type_name {attrib} {
  1120.     return [get_assoc_attrib_type_name $attrib]
  1121. }
  1122.  
  1123. proc get_rv_link_attrib_type_name {attrib} {
  1124.     return [get_assoc_attrib_type_name $attrib]
  1125. }
  1126.  
  1127. proc get_qual_assoc_attrib_type_name {attrib} {
  1128.     if {[get_multiplicity $attrib] == "one"} {
  1129.         set type [get_type_of_attribute $attrib]
  1130.     } else {
  1131.         if {[is_ordered $attrib] == "1"} {
  1132.             set generic_cname $g_ordered_set_cname
  1133.             set generic_rname $g_ordered_set_rname
  1134.         } else {
  1135.             set generic_cname $g_unordered_set_cname
  1136.             set generic_rname $g_unordered_set_rname
  1137.         }
  1138.         set type "[get_type_of_attribute $attrib]_${generic_rname}"
  1139.     }
  1140.     set qual_type [get_name [get_type [get_qualifier $attrib]]]
  1141.     set qual_cname "${type}_${g_qualified_rname}_By_${qual_type}"
  1142.     add_incl_stmnt $qual_cname
  1143.     return ${qual_cname}.${g_qualified_rname}
  1144. }
  1145.  
  1146. proc get_qual_link_attrib_type_name {attrib} {
  1147.     return [get_qual_assoc_attrib_type_name $attrib]
  1148. }
  1149.  
  1150. proc get_rv_qual_link_attrib_type_name {attrib} {
  1151.     return [get_qual_assoc_attrib_type_name $attrib]
  1152. }
  1153.  
  1154. proc assoc_attrib::one_typedef {attrib class} {
  1155.     set sect $ada_sections(h_inl_sect)
  1156.     set name [get_name $class]
  1157.     set type [get_type $attrib]
  1158.     set type_nm [get_name $type]
  1159.     ###add_forward $type
  1160.     # gen_var_decl does not deliver it the format we want, alas
  1161.     set dum [gen_var_decl $type $name]
  1162.     section append $sect "typedef $type_nm *$name;\n"
  1163. }
  1164.  
  1165. proc assoc_attrib::one_inter_pkg {attrib} {
  1166.     # nothing to do here
  1167. }
  1168.  
  1169.  
  1170. proc assoc_attrib::one_data {attrib class} {
  1171.     set sect [get_data_section $class]
  1172.     set type [get_type_of_attribute $attrib]
  1173.  
  1174.     ##HM section append $sect "--OT In assoc_attrib::one_data\n"
  1175.  
  1176.     set name [cap [get_name $attrib]]
  1177.     if {$name != $type} {
  1178.         if {[is_mandatory $attrib] == "0"} {
  1179.             section append $sect "-- the following is an optional association\n"
  1180.         }    
  1181.         if {[$attrib isAggregate] == "1"} {
  1182.             section append $sect "-- the following is an aggregation\n"
  1183.         }    
  1184.         set full_type ${type}.${g_handle_name}
  1185.         section append $sect "$name : ${full_type};\n"
  1186.         incr_component_count
  1187.         set i_sect [get_include_section $class]
  1188.  
  1189.         gen_link_class_alt_additions $class $i_sect
  1190.  
  1191.         section append $i_sect "with ${type};\n"
  1192.  
  1193.         # generate get & set routines
  1194.         gen_assoc_access_sects $class $attrib $full_type
  1195.     }
  1196. }
  1197.  
  1198.  
  1199.  
  1200. proc assoc_attrib::many_typedef {attrib class} {
  1201.     set sect $ada_sections(h_inl_sect)
  1202.     set name [get_name $class]
  1203.     set setpfx [set_prefix $attrib]
  1204.     set type [${setpfx}set_type_name [get_type $attrib]]
  1205.     section append $sect "typedef $type $name;\n"
  1206. }
  1207.  
  1208. proc assoc_attrib::many_inter_pkg {attrib} {
  1209.     global LINKPACKAGECMMT
  1210.  
  1211.     set class_name [get_type_of_attribute $attrib]
  1212.  
  1213.     if {[is_ordered $attrib] == "1"} {
  1214.         set generic_cname $g_ordered_set_cname
  1215.         set generic_rname $g_ordered_set_rname
  1216.     } else {
  1217.         set generic_cname $g_unordered_set_cname
  1218.         set generic_rname $g_unordered_set_rname
  1219.     }
  1220.  
  1221.     create_assoc_sections $ada_assoc_sections
  1222.     set sect $assoc_sections(h_inter_pkg_sect)
  1223.  
  1224.     set ext _$generic_rname
  1225.     set obj_type [get_obj_type $attrib]
  1226.     if {$obj_type == "link_attrib" || $obj_type == "qual_link_attrib"} {
  1227.         set ext ${g_alt_link_class_ext}_${generic_rname}
  1228.     }         
  1229.  
  1230.     class2assocfiles [get_type $attrib] $ext h_filename
  1231.  
  1232.     section append $assoc_sections(h_hdr_sect) \
  1233.         "-- Specification file for ${class_name}_${generic_rname}\n\n"
  1234.     #HM added comment to signal as a link package
  1235.     section append $assoc_sections(h_hdr_sect) $LINKPACKAGECMMT
  1236.     section append $assoc_sections(h_hdr_sect) "\n"
  1237.  
  1238.     section append $sect "with $generic_cname;\n"
  1239.  
  1240.     section append $sect "with $class_name;\n"
  1241.     section append $sect "package ${class_name}_${generic_rname} is new $generic_cname "
  1242.     section append $sect "(${class_name}.${g_handle_name});\n\n"
  1243.  
  1244.     write_assoc_sections [get_type $attrib] $ada_assoc_sections $ext
  1245. }
  1246.  
  1247. proc assoc_attrib::many_data {attrib class} {
  1248.     set sect [get_data_section $class]
  1249.     set type [get_type_of_attribute $attrib]
  1250.     set name [cap [get_name $attrib]]
  1251.  
  1252.         ##HM section append $sect "--OT In assoc_attrib::many_data\n"
  1253.  
  1254.     if {$name != $type} {
  1255.         if {[is_ordered $attrib] == "1"} {
  1256.             set generic_rname $g_ordered_set_rname
  1257.         } else {
  1258.             set generic_rname $g_unordered_set_rname
  1259.         }
  1260.         if {[$attrib isAggregate] == "1"} {
  1261.             section append $sect "-- the following is an aggregation\n"
  1262.         }    
  1263.         set full_type "${type}_${generic_rname}.${generic_rname}"
  1264.         section append $sect "$name : ${full_type};\n"
  1265.         incr_component_count
  1266.         set i_sect [get_include_section $class]
  1267.         gen_link_class_alt_additions $class $i_sect
  1268.         section append $i_sect "with ${type}_${generic_rname};\n"
  1269.  
  1270.         # generate get & set routines
  1271.         gen_assoc_access_sects $class $attrib $full_type
  1272.     }
  1273. }
  1274.  
  1275.  
  1276. proc get_qualifier_type {assoc modifier} {
  1277.     return [generate [get_type [get_qualifier $assoc]] fwd $modifier]
  1278. }
  1279.  
  1280. proc get_qualifier_name {assoc} {
  1281.     return [get_name [get_qualifier $assoc]]
  1282. }
  1283.  
  1284. proc qual_assoc_attrib::generate {attrib class} {
  1285.     #HM added check for bidirectional association
  1286.     global g_local_assoc_count
  1287.        global ASSOCCMMT
  1288.  
  1289.         if {[get_opposite $attrib] != ""}  {
  1290.            set type [get_type $attrib]
  1291.            if {[get_class_visibility $class] != "Opaque" || \
  1292.                [get_class_visibility $type] != "Opaque"}  {
  1293.           m4_error $E_BIDIRASSOC [get_name $class] [get_name $type]
  1294.               return
  1295.            }
  1296.         }
  1297.     set sect [get_data_section $class]
  1298.     ##HM section append $sect "--OT In qual_assoc_attrib::generate\n"
  1299.  
  1300.     incr g_local_assoc_count 1
  1301.     if {$g_local_assoc_count == 1} {
  1302.         section append $sect $ASSOCCMMT
  1303.         section append $sect "\n"
  1304.     }
  1305.     gen_for_assoc $attrib $class
  1306. }
  1307.  
  1308. proc qual_assoc_attrib::one_typedef {attrib class} {
  1309.     set sect $ada_sections(h_inl_sect)
  1310.     set name [get_name $class]
  1311.     set type [dict_type_name [get_type [get_qualifier $attrib]] \
  1312.         [get_type $attrib]]
  1313.     section append $sect "typedef $type $name;\n"
  1314. }
  1315.  
  1316.  
  1317. proc qual_assoc_attrib::one_inter_pkg {attrib} {
  1318.     global LINKPACKAGECMMT
  1319.  
  1320.     set class_name [get_type_of_attribute $attrib]
  1321.     set qual_type [get_name [get_type [get_qualifier $attrib]]]
  1322.     set ext1 ${g_qualified_rname}_By_${qual_type}
  1323.     set package_name "${class_name}_${ext1}"
  1324.  
  1325.     create_assoc_sections $ada_assoc_sections
  1326.     set sect $assoc_sections(h_inter_pkg_sect)
  1327.  
  1328.     set ext _$ext1
  1329.     set obj_type [get_obj_type $attrib]
  1330.     if {$obj_type == "link_attrib" || $obj_type == "qual_link_attrib"} {
  1331.         set ext ${g_alt_link_class_ext}_${ext1}
  1332.     }         
  1333.     class2assocfiles [get_type $attrib] $ext h_filename
  1334.     section append $assoc_sections(h_hdr_sect) "-- Specification file for ${package_name}\n\n"
  1335.     #HM added comment to signal as a link package
  1336.     section append $sect $LINKPACKAGECMMT
  1337.     section append $sect "\n"
  1338.  
  1339.     #HM - changes qual_type to full_qual_type to prepend "Sys_Types". package name for enums.
  1340.     #HM -   and with the systypes package if necessary
  1341.     set full_qual_type [get_qual_type [get_type [get_qualifier $attrib]] $sect]
  1342.  
  1343.     section append $sect "with $g_qualified_cname;\n"
  1344.     section append $sect "with $class_name;\n"
  1345.     section append $sect "package ${package_name} is new ${g_qualified_cname} "
  1346.     section append $sect "(${full_qual_type}, ${class_name}.${g_handle_name});\n\n"
  1347.  
  1348.     write_assoc_sections [get_type $attrib] $ada_assoc_sections $ext
  1349. }
  1350.  
  1351. proc qual_assoc_attrib::one_data {attrib class} {
  1352.     set sect [get_data_section $class]
  1353.     set type [get_type_of_attribute $attrib]
  1354.     set qual_type [get_name [get_type [get_qualifier $attrib]]]
  1355.  
  1356.     ##HM section append $sect "--OT In qual_assoc_attrib::one_data\n"
  1357.  
  1358.     if {[is_mandatory $attrib] == "0"} {
  1359.         section append $sect "-- the following is an optional association\n"
  1360.     }
  1361.     if {[$attrib isAggregate] == "1"} {
  1362.         section append $sect "-- the following is an aggregation\n"
  1363.     }    
  1364.     set attr_name [cap [get_name $attrib]]
  1365.     if {$attr_name == $type} {
  1366.         set attr_name ${type}_${g_qualified_rname}
  1367.     }
  1368.     set qual_cname "${type}_${g_qualified_rname}_By_${qual_type}"
  1369.     set full_type ${qual_cname}.${g_qualified_rname}
  1370.     section append $sect "${attr_name} : ${full_type};\n"
  1371.     incr_component_count
  1372.  
  1373.     set i_sect [get_include_section $class]
  1374.     gen_link_class_alt_additions $class $i_sect
  1375.     section append $i_sect "with ${qual_cname};\n"
  1376.  
  1377.     # generate get & set routines
  1378.     gen_assoc_access_sects $class $attrib $full_type
  1379. }
  1380.  
  1381.  
  1382. proc qual_assoc_attrib::many_typedef {attrib class} {
  1383.     set sect $ada_sections(h_inl_sect)
  1384.     set name [get_name $class]
  1385.     set setpfx [set_prefix $attrib]
  1386.     set type [${setpfx}set_dict_type_name \
  1387.          [get_type [get_qualifier $attrib]] [get_type $attrib]]
  1388.     section append $sect "typedef $type $name;\n"
  1389. }
  1390.  
  1391. proc qual_assoc_attrib::many_inter_pkg {attrib} {
  1392.     global LINKPACKAGECMMT
  1393.  
  1394.     assoc_attrib::many_inter_pkg $attrib
  1395.  
  1396.     if {[is_ordered $attrib] == "1"} {
  1397.         set generic_cname $g_ordered_set_cname
  1398.         set generic_rname $g_ordered_set_rname
  1399.     } else {
  1400.         set generic_cname $g_unordered_set_cname
  1401.         set generic_rname $g_unordered_set_rname
  1402.     }
  1403.     set class_name "[get_type_of_attribute $attrib]_${generic_rname}"
  1404.     set qual_type [get_name [get_type [get_qualifier $attrib]]]
  1405.     set ext1 ${g_qualified_rname}_By_${qual_type}
  1406.     set package_name "${class_name}_${ext1}"
  1407.  
  1408.     create_assoc_sections $ada_assoc_sections
  1409.     set sect $assoc_sections(h_inter_pkg_sect)
  1410.  
  1411.     set ext _${generic_rname}_${ext1}
  1412.     set obj_type [get_obj_type $attrib]
  1413.     if {$obj_type == "link_attrib" || $obj_type == "qual_link_attrib"} {
  1414.         set ext ${g_alt_link_class_ext}_${generic_rname}_${ext1}
  1415.     }         
  1416.     class2assocfiles [get_type $attrib] $ext h_filename
  1417.  
  1418.     section append $assoc_sections(h_hdr_sect) "-- Specification file for ${package_name}\n\n"
  1419.     #HM added comment to signal as a link package
  1420.     section append $sect $LINKPACKAGECMMT
  1421.     section append $sect "\n"
  1422.  
  1423.     #HM - changes qual_type to full_qual_type to prepend "Sys_Types". package name for enums.
  1424.     #HM -   and with the systypes package if necessary
  1425.     set full_qual_type [get_qual_type [get_type [get_qualifier $attrib]] $sect]
  1426.  
  1427.     section append $sect "with $g_qualified_cname;\n"
  1428.     section append $sect "with $class_name;\n"
  1429.     section append $sect "package ${package_name} is new ${g_qualified_cname} "
  1430.     section append $sect "(${full_qual_type}, ${class_name}.${generic_rname});\n\n"
  1431.  
  1432.     write_assoc_sections [get_type $attrib] $ada_assoc_sections $ext
  1433. }
  1434.  
  1435. proc qual_assoc_attrib::many_data {attrib class} {
  1436.     set sect [get_data_section $class]
  1437.  
  1438.     ##HM section append $sect "--OT In qual_assoc_attrib::many_data\n"
  1439.  
  1440.     if {[is_ordered $attrib] == "1"} {
  1441.         set generic_cname $g_ordered_set_cname
  1442.         set generic_rname $g_ordered_set_rname
  1443.     } else {
  1444.         set generic_cname $g_unordered_set_cname
  1445.         set generic_rname $g_unordered_set_rname
  1446.     }
  1447.  
  1448.     set type "[get_type_of_attribute $attrib]_${generic_rname}"
  1449.     set qual_type [get_name [get_type [get_qualifier $attrib]]]
  1450.     set attr_name [cap [get_name $attrib]]
  1451.     if {$attr_name == $type} {
  1452.         set attr_name ${type}_${g_qualified_rname}
  1453.     }
  1454.     set qual_cname "${type}_${g_qualified_rname}_By_${qual_type}"
  1455.     if {[$attrib isAggregate] == "1"} {
  1456.         section append $sect "-- the following is an aggregation\n"
  1457.     }    
  1458.     set full_type ${qual_cname}.${g_qualified_rname}
  1459.     section append $sect "${attr_name} : ${full_type};\n"
  1460.     incr_component_count
  1461.  
  1462.     set i_sect [get_include_section $class]
  1463.     gen_link_class_alt_additions $class $i_sect
  1464.     section append $i_sect "with ${qual_cname};\n"
  1465.  
  1466.     # generate get & set routines
  1467.     gen_assoc_access_sects $class $attrib $full_type
  1468.  
  1469. }
  1470.  
  1471.  
  1472. proc finish_func_def {sect type num_params} {
  1473.     if {$num_params > 0} {section append $sect ")"}
  1474.     if {$type != "void "} {
  1475.         if {$num_params > 2} {
  1476.             section append $sect "\n"
  1477.         } else {
  1478.             section append $sect " "
  1479.         }
  1480.         section append $sect "return $type"
  1481.     }
  1482. }
  1483.  
  1484.  
  1485. proc add_to_local_op_list {method_type} {
  1486.     global g_local_op_list g_local_op_count
  1487.  
  1488.     set g_local_op_list($g_local_op_count) $method_type
  1489.     incr g_local_op_count
  1490. }
  1491.  
  1492. proc check_local_op_list {method_type} {
  1493.     global g_local_op_list g_local_op_count
  1494.  
  1495.     for {set x 0} {$x < $g_local_op_count} {incr x} {
  1496. #        echo "g_op_list($x) = $g_local_op_list($x)"            
  1497.         if {$g_local_op_list($x) == $method_type} {return 1}
  1498.     }
  1499.     return -1
  1500. }
  1501.  
  1502.  
  1503. proc operation::generate {oper class class_name inh_mode} {
  1504.     global g_local_inh_op_count
  1505.     global INHEROPERCMMT
  1506.     global tmp_h_sect
  1507.  
  1508.     set name [map_oper [get_name $oper]]
  1509.     set static_val [get_the_class_feature $oper]
  1510.     if {$name == "create" && $static_val == 1} {return}
  1511.  
  1512.     case $inh_mode in {
  1513.     {0} {set tmp_h_sect [get_func_section $oper]}
  1514.     {1} {set tmp_h_sect [section create]}
  1515.     {2} {set tmp_h_sect [section create]}
  1516.     }
  1517.  
  1518.     #HM added comment to signal start of inherited operations
  1519.     if {$inh_mode == 1} {
  1520.         incr g_local_inh_op_count 1
  1521.         if {$g_local_inh_op_count == 1}     {
  1522.             section append $tmp_h_sect $INHEROPERCMMT
  1523.             section append $tmp_h_sect "\n"
  1524.         }
  1525.     }        
  1526.  
  1527.     feature::gen_description $oper $tmp_h_sect
  1528.  
  1529.     set tmp_c_sect [section create]
  1530.     set generating_separate 0
  1531.  
  1532.     # May not need this but it doesn't hurt to create them...
  1533.     create_separate_sections $ada_separate_sections
  1534.  
  1535.     if {$g_generate_separates == "On" && $inh_mode != 1 && [is_oper [get_name $oper]] == 0} {
  1536.         set s $separate_sections(c_hdr_sect)
  1537.         section append $s "-- Subunit file for ${name} (${class_name})\n\n"
  1538.         set s $separate_sections(c_sep_line_sect)
  1539.         section append $s "\nseparate ($class_name)"
  1540.         set main_sect $ada_sections(c_impl_sect)
  1541.         set generating_separate 1
  1542.     }
  1543.  
  1544.     if {$inh_mode == 1} {
  1545.         set tmp_c_sect2 [section create]
  1546.         global g_operation_list
  1547.         global g_operation_list2
  1548.         global inh_operation_list
  1549.         global operation_count
  1550.         incr operation_count
  1551.         set inh_operation_list($operation_count) "$name "
  1552.         set g_operation_list($operation_count) [section create]
  1553.         set c_sect $g_operation_list($operation_count)
  1554.  
  1555.         ##HM section append $c_sect "--OT g_operation_list section created in operation::generate\n"
  1556.         set g_operation_list2($operation_count) [section create]
  1557.         set c_sect2 $g_operation_list2($operation_count)
  1558.  
  1559.         ##HM section append $c_sect2 "--OT g_operation_list2 section created in operation::generate\n"
  1560.     } else {
  1561.         if {$generating_separate == 1} {
  1562.             set c_sect $separate_sections(c_impl_sect)
  1563.         } else {
  1564.             set c_sect $ada_sections(c_impl_sect)
  1565.         }
  1566.     }
  1567.  
  1568.     set type [generate [get_type $oper] fwd "" Value]
  1569.  
  1570.     echo "      operation $name ($type)"
  1571.  
  1572.     if {$type != "void "} {
  1573.         set start_decl "function "
  1574.         set in_out ""
  1575.     } else {
  1576.         set start_decl "procedure "
  1577.         set in_out "in out "
  1578.     }
  1579.  
  1580.     if {$inh_mode == 1} {
  1581.         set start_decl2 ""
  1582.         if {$type != "void "} {
  1583.             set start_decl2 "return "
  1584.         }
  1585.         append start_decl2 "$class_name.$name (Self.$class_name${g_inh_ext}"
  1586.         section append $c_sect2 $start_decl2
  1587.     }
  1588.  
  1589.     set params [get_parameters $oper]
  1590.  
  1591.     append start_decl "$name"
  1592.     set num_params [llength $params]
  1593.     if {$static_val == 0} {incr num_params}
  1594.  
  1595.     if {$num_params > 2} {append start_decl "\n "}
  1596.  
  1597.     if {$num_params > 0} {
  1598.         append start_decl " ("
  1599.     }
  1600.     if {$static_val == 0} {
  1601.         append start_decl "Self : ${in_out}${g_record_name}"
  1602.         set first 0
  1603.     } else {
  1604.         set first 1
  1605.     }
  1606.     section append $tmp_h_sect $start_decl
  1607.     section append $tmp_c_sect "\n$start_decl"
  1608.  
  1609.     foreach param [get_parameters $oper] {
  1610.         generate $param $tmp_h_sect 0 $num_params $first
  1611.         generate $param $tmp_c_sect 0 $num_params $first
  1612.         set first 0
  1613.         if {$inh_mode == 1} {
  1614.             generate $param $tmp_c_sect2 1 $num_params 0
  1615.         }
  1616.         set default [get_default_value $param]
  1617.         if {$default != ""} {
  1618.                         if [default_value_allowed [get_parameters $oper] $param] {
  1619.             section append $tmp_h_sect " := $default"
  1620.             section append $tmp_c_sect " := $default"
  1621.                     } else {
  1622.             m4_warning $W_NOPARAMDEFAULTS" [get_name $param] [get_name $class]
  1623.                     }
  1624.         }
  1625.     }
  1626.  
  1627.     finish_func_def $tmp_h_sect $type $num_params
  1628.     finish_func_def $tmp_c_sect $type $num_params
  1629.  
  1630.     if {$inh_mode != 2} {section append $tmp_h_sect ";\n\n"}
  1631.  
  1632.     set method_type [section get_contents $tmp_c_sect]
  1633.  
  1634.     case $inh_mode in {
  1635.     {0} {add_to_local_op_list $method_type}
  1636.     {1} {
  1637.         if {[check_local_op_list $method_type] == 1} {
  1638.             set tmp_h_sect [section create]
  1639.             section dealloc $tmp_c_sect
  1640.             section dealloc $tmp_c_sect2
  1641.             section dealloc $c_sect2
  1642.             incr operation_count -1
  1643.             return -1
  1644.         }
  1645.     }
  1646.     {2} {return}}
  1647.  
  1648.     section append_section $c_sect $tmp_c_sect
  1649.  
  1650.     if {$type == "void " && [llength $params] > 2} {
  1651.         section append $c_sect "\nis"
  1652.     } else {
  1653.         section append $c_sect " is"
  1654.     }
  1655.  
  1656.     if {$inh_mode == 1} {
  1657.         section append $tmp_c_sect2 ");\n"
  1658.         append inh_operation_list($operation_count) "$type"
  1659.         section append_section $c_sect2 $tmp_c_sect2
  1660.         section dealloc $tmp_c_sect2
  1661.     } else {
  1662.         if {$generating_separate == 1} {
  1663.             section append_section $main_sect $c_sect
  1664.             section append $main_sect " separate;\n"
  1665.         }
  1666.     }
  1667.  
  1668.      if {$inh_mode == 1} {section append $c_sect "\nbegin"}
  1669.  
  1670.      section append $c_sect "\n"
  1671.  
  1672.      if {$inh_mode == 0} {
  1673.     set impl_proc [get_method_impl $oper]
  1674.     if {$impl_proc == ""} {
  1675.         # get previously prepared body
  1676.         get_subp_user_body $class $name $method_type $c_sect
  1677.     } else {
  1678.         set impl_proc operation::$impl_proc
  1679.         if {[info procs $impl_proc] != ""} {
  1680.             section append $c_sect "\nbegin\n"
  1681.             section set_indent $c_sect +
  1682.             section append $c_sect [$impl_proc $oper $class $c_sect]
  1683.             section set_indent $c_sect -
  1684.             section append $c_sect "end\n\n"
  1685.              del_subp_info $class $name $method_type
  1686.         } else {
  1687.             puts stderr "WARNING: Tcl procedure " nonewline
  1688.             puts stderr "'$impl_proc' not found"
  1689.             # fall back to regeneration
  1690.             # get_method_body $name $method_type $c_sect [get_name $oper]
  1691.             get_subp_user_body $class $name $tmp_c_sect $c_sect 
  1692.         }
  1693.     }
  1694.    }
  1695.     if {$inh_mode == 0 && $generating_separate == 1} {
  1696.         class2separatefiles $class [get_name $oper] c_filename
  1697.         write_separate_sections $class $ada_separate_sections [get_name $oper]
  1698.     }
  1699.    section dealloc $tmp_c_sect
  1700. }
  1701.  
  1702.  
  1703.  
  1704. proc append_children {cnames class} {
  1705.     foreach child $g_inher_table($class) {
  1706.         if {[lsearch $cnames $child] == -1} {
  1707.             lappend cnames $g_inher_table($class)
  1708.             set cnames [append_children $cnames $child]
  1709.         }
  1710.     }
  1711.     return $cnames
  1712. }
  1713.  
  1714.  
  1715. proc gen_poly_body {root_name} {
  1716.     global g_poly_op_count
  1717.     global g_poly_op_list g_poly_op_param_list g_poly_op_class_list
  1718.     global g_class_list g_inher_table g_op_list
  1719.  
  1720.     set c_sect $ada_sections(c_impl_sect)
  1721.     for {set x 0} {$x < $g_poly_op_count} {incr x} {
  1722.         section append $ada_sections(h_pub_func_sect) "$g_poly_op_list($x);\n\n"
  1723.         section append $c_sect "$g_poly_op_list($x) is\nbegin\n"
  1724.         section append $c_sect "    case Self.${root_name}_Kind is\n"
  1725.         set this_func_list ""
  1726.         set cnames ""
  1727.         echo "\n\n$g_poly_op_list($x)"
  1728.         foreach p_class $g_poly_op_class_list($x) {
  1729.             lappend cnames $p_class
  1730.             foreach opclass $g_inher_table($p_class) {
  1731.                 if {[lsearch $cnames $opclass] == -1} {
  1732.                     lappend cnames $opclass
  1733.                     set cnames [append_children $cnames $opclass]
  1734.                 }
  1735.             }
  1736.         }
  1737.         foreach poly_class $g_class_list($root_name) {
  1738.                  set classname [get_name $poly_class]
  1739.                  if {[lsearch $this_func_list $classname] != -1} {continue}
  1740.             section append $c_sect "        when A_${classname} =>\n"
  1741.             if {[lsearch $cnames $classname] != -1} {
  1742.                 set p_list $g_poly_op_param_list($x)
  1743.                 section append $c_sect "            "
  1744.                 if {[lindex $p_list 0] != "void"} {section append $c_sect "return "}
  1745.                 set func_name [lindex $p_list 1]
  1746.                 section append $c_sect "${classname}.${func_name}"
  1747.                 section append $c_sect " (Self.${classname}_Obj"
  1748.                 for {set y 2} {$y < [llength $p_list]} {incr y} {
  1749.                     section append $c_sect ", [lindex $p_list $y]"
  1750.                 }
  1751.                 section append $c_sect ")"
  1752.                 section append $c_sect ";\n"
  1753.             } else {
  1754.                 section append $c_sect \
  1755.                    "            raise Constraint_Error;\n"
  1756.             }
  1757.             append this_func_list "$classname "
  1758.            }
  1759.         section append $c_sect "    end case;\n"
  1760.         section append $c_sect "end $func_name;\n\n"
  1761.     }    
  1762. }
  1763.  
  1764.  
  1765. proc parameter::generate {param sect inh_mode num_params first} {
  1766.  
  1767.     set type [get_type $param]
  1768.     set dc fwd
  1769.  
  1770.     set param_dfd [get_param_dfd $param]
  1771.     if {$param_dfd == ""} {set param_dfd "in"}
  1772.  
  1773.     if {$inh_mode == 1} {
  1774.         section append $sect ", "
  1775.         global inh_operation_list
  1776.         global operation_count
  1777.         append inh_operation_list($operation_count) "$param_dfd [get_type $param] "
  1778.         section append $sect "[get_name $param]"
  1779.     } else {
  1780.         if {$first == 0} {section append $sect "; "}
  1781.         if {$num_params > 2} {section append $sect "\n   "}
  1782.         section append $sect \
  1783.             "[get_name $param] : $param_dfd [generate [get_type $param] $dc]"
  1784.     }
  1785. }
  1786.  
  1787.  
  1788. proc base_type::generate {type decl {modifier ""} {default_modifier ""}} {
  1789.     return [get_full_type $type]
  1790. }
  1791.  
  1792. proc base_type::gen_var_decl {type name {col ""}} {
  1793.     set type [get_type_3gl $type]
  1794.     if [regsub {(var)?char\[} $type "char $name\[" type] {
  1795.         regexp {\[(.*)\]$} $type dummy index
  1796.         set index [expr {$index + 1}]
  1797.         regsub {\[(.*)\]$} $type "\[$index]" type
  1798.         return $type
  1799.     }
  1800.     return "$type $name"
  1801. }
  1802.  
  1803. proc class_type::generate {type decl {modifier ""} {default_modifier ""}} {
  1804.     set name [get_full_type $type]
  1805.     if {$decl == "fwd"} {
  1806.         add_forward $type
  1807.         add_src_inc $type
  1808.     } else {
  1809.         add_hdr_inc $type
  1810.     }
  1811.     if {$default_modifier == ""} {
  1812.         global default_type_modifier
  1813.         set default_modifier $default_type_modifier
  1814.     }
  1815.     return $name
  1816. }
  1817.  
  1818. proc class_type::gen_var_decl {type name {col ""}} {
  1819.     add_forward $type
  1820.     return "[get_name $type] $name"
  1821. }
  1822.  
  1823. proc typedef_type::generate {type decl {modifier ""} {default_modifier ""}} {
  1824.     return [get_full_type $type]
  1825. }
  1826.  
  1827. proc typedef_type::gen_var_decl {type name {col ""}} {
  1828.     add_hdr_inc $type
  1829.     return "[get_name $type] $name"
  1830. }
  1831.  
  1832. proc enum_type::generate {type decl {modifier ""} {default_modifier ""}} {
  1833.     return [get_full_type $type]
  1834. }
  1835.  
  1836. proc enum_type::gen_var_decl {type name {col ""}} {
  1837.     return "[get_name $type] $name"
  1838. }
  1839.  
  1840. proc generic_typedef_type::generate {type decl {modifier ""} {default_modifier ""}} {
  1841.     return [get_full_type $type]
  1842. }
  1843.  
  1844. proc generic_typedef_type::gen_var_decl {type name {col ""}} {
  1845.     return "[get_name $type] $name"
  1846. }
  1847.  
  1848.  
  1849. proc constructor::generate {ctor class} {
  1850.     # no constructors in ada.
  1851.     return
  1852. }
  1853.  
  1854. #
  1855. # Check if the given parameter is allowed to have a default value.
  1856. #
  1857. # This is the case if all parameters following this one have default values.
  1858. #
  1859. proc default_value_allowed {paramlist param} {
  1860.     set i [lsearch $paramlist $param]
  1861.     if {$i != -1} {
  1862.     foreach p [lrange $paramlist $i end] {
  1863.             if {[get_default_value $p] == ""} {
  1864.                 return 0
  1865.             }
  1866.     }
  1867.     }
  1868.     return 1
  1869. }
  1870.  
  1871.  
  1872. proc ctor_param::generate {param sect f} {
  1873.     # no constructors in ada.
  1874.     return
  1875. }
  1876.  
  1877. proc attrib_init::generate {init init_sect body_sect} {
  1878.     ### hack !?
  1879.     set data_struct 0
  1880.     set attrib [get_attrib $init]
  1881.     if {[get_obj_type $attrib] == "db_data_attrib"} {
  1882.         set tgt "data.[get_unique_name [get_column $attrib]]"
  1883.         set data_struct 1
  1884.     } else {
  1885.         set tgt [get_name $attrib]
  1886.     }
  1887.     if [type_is_char_array [get_type $attrib]] {
  1888.                 add_[determine_sect_type $body_sect]_inc_name "string" "h"
  1889.         section append $body_sect "strcpy($tgt, [get_name $init]);\n"
  1890.     } else {
  1891.         if $data_struct {
  1892.             section append $body_sect "$tgt = [get_name $init];\n"
  1893.             return
  1894.         }
  1895.     }
  1896. }
  1897.  
  1898.  
  1899. proc get_root_class {class} {
  1900.     set supers [get_super_classes $class]
  1901.     if [lempty $supers] {
  1902.         return $class
  1903.     }
  1904.     return [get_root_class [get_super_class [lindex $supers 0]]]
  1905. }
  1906.  
  1907. proc rv_link_attrib::generate {attrib class} {
  1908.     global g_local_assoc_count
  1909.        global ASSOCCMMT
  1910.  
  1911.     set sect [get_data_section $class]
  1912.     incr g_local_assoc_count 1
  1913.     if {$g_local_assoc_count == 1} {
  1914.         section append $sect $ASSOCCMMT
  1915.         section append $sect "\n"
  1916.     }
  1917.     # multiplicity should always be 'one' here
  1918.     gen_for_rv_link $attrib $class
  1919. }
  1920.  
  1921. proc rv_link_attrib::one_data {attrib class} {
  1922.     set sect [get_data_section $class]
  1923.     set i_sect $ada_sections(h_incl_sect)
  1924.  
  1925.     ##HM section append $sect "--OT In rv_link_attrib::one_data\n"
  1926.  
  1927.     set type [get_name [get_type $attrib]]
  1928.     set role_name [get_name $attrib]
  1929.     if {$role_name != $type} {
  1930.         section append $sect "${role_name} : ${type};\n"
  1931.         incr_component_count
  1932.         section append $i_sect "with ${type};\n"
  1933.     }
  1934. }
  1935.  
  1936. proc qual_link_attrib::generate {attrib class} {
  1937.     global g_local_assoc_count
  1938.        global ASSOCCMMT
  1939.  
  1940.     set sect [get_data_section $class]
  1941.     incr g_local_assoc_count 1
  1942.     if {$g_local_assoc_count == 1} {
  1943.         section append $sect $ASSOCCMMT
  1944.         section append $sect "\n"
  1945.     }
  1946.     gen_for_link $attrib $class
  1947. }
  1948.  
  1949. proc link_attrib::generate {attrib class} {
  1950.     global g_local_assoc_count
  1951.         global ASSOCCMMT
  1952.  
  1953.     set sect [get_data_section $class]
  1954.     ##HM section append $sect "--OT In link_attrib::generate\n"
  1955.  
  1956.     incr g_local_assoc_count 1
  1957.     if {$g_local_assoc_count == 1} {
  1958.         section append $sect $ASSOCCMMT
  1959.         section append $sect "\n"
  1960.     }
  1961.     gen_for_link $attrib $class
  1962. }
  1963.  
  1964. proc link_attrib::one_data {attrib class} {
  1965.     set sect [get_data_section $class]
  1966.     set i_sect $ada_sections(h_incl_sect)
  1967.  
  1968.     ##HM section append $sect "--OT In link_attrib::one_data\n"
  1969.  
  1970.     set type [get_name [get_type $attrib]]
  1971.     set role_name [get_name $attrib]
  1972.     section append $sect "${role_name} : $type;\n"
  1973.         incr_component_count
  1974.     section append $i_sect "with ${type};\n"
  1975. }
  1976.  
  1977. proc link_attrib::many_data {attrib} {
  1978.     assoc_attrib::many_inter_pkg $attrib
  1979.     assoc_attrib::many_data $attrib $class
  1980. }
  1981.  
  1982.  
  1983. # Generate a check for the nullability of the columns of a link.  These columns
  1984. # are either ALL null or ALL not null, so it suffices to check only the
  1985. # first column.
  1986. #
  1987. proc gen_null_check {sect link ind_var {ret_val 0}} {
  1988.     set col [lindex [get_columns $link] 0]
  1989.     if {$ret_val == ""} {
  1990.         set space ""
  1991.     } else {
  1992.         set space " "
  1993.     }
  1994.     expand_text $sect {
  1995.         if (~$ind_var~[get_unique_name $col] == -1)
  1996.             return~${space}~$ret_val;
  1997.     }
  1998. }
  1999.  
  2000. proc is_db_class {class} {
  2001.     return [string match {db_*} [get_obj_type $class]]
  2002. }
  2003.  
  2004. proc class2tgtfiles {class_name src inc} {
  2005.     upvar $src src_f
  2006.     upvar $inc inc_f
  2007.     set src_f ${class_name}.$ada_body_type
  2008.     set inc_f ${class_name}.$ada_spec_type
  2009. }
  2010.  
  2011. proc class2polyfiles {class src inc} {
  2012.     upvar $src src_f
  2013.     upvar $inc inc_f
  2014.     set class_name [class2file ${g_poly_prefix}[get_name $class]]
  2015.     set src_f ${class_name}.$ada_body_type
  2016.     set inc_f ${class_name}.$ada_spec_type
  2017. }
  2018.  
  2019. proc class2assocfiles {class ext inc} {
  2020.     upvar $inc inc_f
  2021.     set name [get_name $class]
  2022.     set cname ${name}${ext}
  2023.     set class_name [class2file $cname]
  2024.     set inc_f ${class_name}.$ada_spec_type
  2025. }
  2026.  
  2027. proc class2linkfiles {class src inc} {
  2028.     upvar $src src_f
  2029.     upvar $inc inc_f
  2030.     set class_name [class2file [get_name $class]${g_alt_link_class_ext}]
  2031.     set src_f ${class_name}.$ada_body_type
  2032.     set inc_f ${class_name}.$ada_spec_type
  2033. }
  2034.  
  2035. proc class2separatefiles {class ext inc} {
  2036.     upvar $inc inc_f
  2037.     set cname [get_name $class]__${ext}
  2038.     set class_name [class2file $cname]
  2039.     set inc_f ${class_name}.$ada_sep_type
  2040. }
  2041.  
  2042. # we want    'class_typedef'
  2043. #      or    'class_enum'
  2044. #      or    'class_generic_typedef'
  2045. proc is_special_class {class} {
  2046.     return [string match {*class_*} [get_obj_type $class]]
  2047. }
  2048.  
  2049. proc is_derivable_class {class} {
  2050.     switch [get_obj_type $class] {
  2051.         "class_enum" {
  2052.             return 0
  2053.         }
  2054.         "class_typedef" {
  2055.         set attrib [lindex [get_features $class] 0]
  2056.         if {[get_type_3gl [get_type $attrib]] == ""} {
  2057.         return 1
  2058.         } else {
  2059.         return 0
  2060.             }
  2061.         }
  2062.         "class_generic_typedef" {
  2063.         set assoc [lindex [get_features $class] 0]
  2064.         if {[get_multiplicity $assoc] == "many" ||
  2065.         [string match {qual_*} [get_obj_type $assoc]]} {
  2066.         return 1
  2067.         } else {
  2068.         return 0
  2069.             }
  2070.     }
  2071.         default {
  2072.             return 1
  2073.         }
  2074.     }
  2075. }
  2076.  
  2077.  
  2078. #
  2079. # global array opermap contains mappings for Ada operators that cannot be
  2080. # entered on CAD diagrams in the normal "op" quoted string form:
  2081. #
  2082. global opermap
  2083. #
  2084. # Ada-specific mappings:
  2085. #
  2086. set opermap(operatorEQ)  "\"=\""
  2087. set opermap(operatorLE)  "\"<=\""
  2088. set opermap(operatorGE)  "\">=\""
  2089. set opermap(operatorDIV) "\"/\""
  2090. #
  2091. # C++ compatibility mappings:
  2092. #
  2093. set opermap(operator+)   "\"+\""
  2094. set opermap(operator-)   "\"-\""
  2095. set opermap(operator*)   "\"*\""
  2096. set opermap(operator%)   "\"rem\""
  2097. set opermap(operator&)   "\"and\""
  2098. set opermap(operator|)   "\"or\""
  2099. set opermap(operator!)   "\"not\""
  2100. set opermap(operator<)   "\"<\""
  2101. set opermap(operator>)   "\">\""
  2102. set opermap(operator&&)  "\"and\""
  2103. set opermap(operator||)  "\"or\""
  2104.  
  2105.  
  2106. proc map_oper {name} {
  2107.     if [info exists opermap($name)] {
  2108.         return $opermap($name)
  2109.     }
  2110.     return $name
  2111. }
  2112.  
  2113.  
  2114. proc is_oper {name} {
  2115.     if {[info exists opermap($name)] || [regexp "^\".*\"\$" $name]} {
  2116.         return 1
  2117.     }
  2118.     return 0
  2119. }
  2120.  
  2121. # return set prefix "o" in case ordered set are needed
  2122. #
  2123. proc set_prefix {attrib} {
  2124.     set this_name [get_name $attrib]
  2125.     if {[is_ordered $attrib] == "1"} {
  2126.         echo "ordered is TRUE"
  2127.         return o
  2128.     } else {
  2129.         echo "ordered is FALSE"
  2130.         return
  2131.     }
  2132. }
  2133.  
  2134.  
  2135. proc gen_op_lists {class} {
  2136.     global g_op_list
  2137.     global g_class_list
  2138.     global root_class
  2139.     append g_class_list([get_name $root_class]) "$class "
  2140.     foreach subgroup [get_sub_classes $class] {   ;# this gives each inh. group.
  2141.         set inh_access [get_inher_access $subgroup]
  2142.         if {$inh_access == ""} {set inh_access "Public"}
  2143.         foreach subclass [get_sub_classes $subgroup] {
  2144.             set subclassname [get_name $subclass]
  2145.             if {$inh_access == "Private"} {
  2146.                 foreach entry $g_op_list([get_name $class]) {
  2147.                     set cname [split_op_list_entry $entry class]
  2148.                     append g_op_list($subclassname) "$cname:$inh_access "
  2149.                 }
  2150.             } else {
  2151.                 append g_op_list($subclassname) "$g_op_list([get_name $class]) "
  2152.             }
  2153.             append g_op_list($subclassname) "$class:$inh_access "
  2154.             gen_op_lists $subclass
  2155.         }
  2156.     }
  2157. }
  2158.  
  2159.  
  2160. proc get_feats {class, superclass} {
  2161.     foreach feat [get_features $class] {
  2162.         set feat_type [get_obj_type $feat]
  2163.         echo "type = $feat_type"
  2164.         if {$feat_type == "operation"} {
  2165.             echo "operation for [get_name $class] is [get_name $feat]"
  2166.             append g_op_list([get_name $class],1) $feat
  2167.             append g_op_list([get_name $class],2) $superclass
  2168.                 
  2169.         }
  2170.     }
  2171. }
  2172.  
  2173.  
  2174. proc class::gen_poly {class} {
  2175.     global g_inher_table
  2176.  
  2177.     class::gen_poly_routine $class 
  2178.     set c_name [get_name $class]
  2179.     foreach subclass1 [get_sub_classes $class] {   ;# this gives each inh. group.
  2180.         foreach subclass [get_sub_classes $subclass1] {
  2181.             set sub_name [get_name $subclass]
  2182.             if {[info exists g_inher_table($c_name)]} {
  2183.                 if {[lsearch $g_inher_table($c_name) $sub_name] == -1} {
  2184.                     lappend g_inher_table($c_name) $sub_name
  2185.                 }
  2186.             } else {
  2187.                 set g_inher_table($c_name) "$sub_name "
  2188.             }
  2189.             if {![info exists g_inher_table($sub_name)]} {
  2190.                 set g_inher_table($sub_name) ""
  2191.             }
  2192.             class::gen_poly $subclass
  2193.         }
  2194.     }
  2195. }
  2196.  
  2197. proc class::gen_poly_routine {class} {
  2198.     global g_inher_table g_parent_list root_class g_func_list link_incl_list
  2199.  
  2200.     set name [get_name $class]
  2201.  
  2202.     echo "in gen_poly_routine, name = $name"
  2203.     
  2204.     if {[lsearch $g_func_list $name] == -1} {
  2205.         if {[lsearch $link_incl_list $name] == -1} {
  2206.             section append $ada_sections(h_hdr_sect) "with $name;\n"
  2207.             lappend link_incl_list $name
  2208.         }
  2209.         if {$name != [get_name $root_class]} {
  2210.             section append $ada_sections(h_class_nm_sect) ", "
  2211.         }
  2212.         section append $ada_sections(h_class_nm_sect) "A_$name"
  2213.         section append $ada_sections(h_pub_data_sect) "    when A_${name} =>\n"
  2214.         section append $ada_sections(h_pub_data_sect) \
  2215.             "        ${name}_Obj : ${name}.${g_record_name};\n"
  2216.  
  2217.         foreach feat [get_features $class] {
  2218.             set feat_type [get_obj_type $feat]
  2219.             echo "   feature type = $feat_type"
  2220.  
  2221.             if {$feat_type == "constructor"} {continue}
  2222.  
  2223.             if {[get_the_class_feature $feat] == 1} {continue}
  2224.  
  2225.             if {$feat_type == "operation"} {
  2226.                 if {[get_func_section $feat] != $ada_sections(h_pub_func_sect)} {continue}
  2227.                 generate $feat $class $name 2
  2228.                 set type [get_full_type [get_type $feat]]
  2229.                 add_to_poly_list $name $feat $type [get_name $feat] \
  2230.                     [section get_contents $tmp_h_sect] "" 1
  2231.             } else {
  2232.                 set type [get_${feat_type}_type_name $feat] 
  2233.                 set fname [cap [get_name $feat]]
  2234.                 set gname "Get_$fname"
  2235.                 set sname "Set_$fname"
  2236.                 set h_sect $ada_sections(h_pub_access_sect)
  2237.                 set c_sect $ada_sections(c_access_func_sect)
  2238.  
  2239.                    if {[get_attrib_hdr_sect $feat r] == $ada_sections(h_pub_access_sect)} {
  2240.                     set g_start "function $gname (Self : ${g_record_name}) return $type"
  2241.                     add_to_poly_list $name $feat $type $gname $g_start "" 0
  2242.                 }
  2243.                    if {[get_attrib_hdr_sect $feat w] == $ada_sections(h_pub_access_sect)} {
  2244.                     set s_start "procedure $sname (Self : in out ${g_record_name}; New_${fname} : $type)"
  2245.                     add_to_poly_list $name $feat void $sname $s_start "New_$fname" 0
  2246.                 }
  2247.             }
  2248.         }
  2249.         append g_func_list "$name "
  2250.     }
  2251. }
  2252.  
  2253.  
  2254. proc get_the_class_feature {feat} {
  2255.     set c_feat [is_class_feature $feat]
  2256.     if {$c_feat == 1} {
  2257.         return 1
  2258.     } else {
  2259.         return 0
  2260.     }
  2261. }
  2262.  
  2263. proc add_to_poly_list {class_name feat type feat_name op_sig extra_params flag} {
  2264.     global g_poly_op_count
  2265.     global g_poly_op_list g_poly_op_param_list g_poly_op_class_list
  2266.  
  2267.     for {set x 0} {$x < $g_poly_op_count} {incr x} {
  2268.         if {$g_poly_op_list($x) == $op_sig} {
  2269.             if {[lsearch g_poly_op_class_list($x) $class_name] == -1} {
  2270.                 lappend g_poly_op_class_list($x) $class_name
  2271.             }
  2272.             return
  2273.         }
  2274.     }
  2275.     set g_poly_op_list($x) $op_sig
  2276.     set g_poly_op_param_list($x) "$type "
  2277.     lappend g_poly_op_param_list($x) $feat_name
  2278.     if {$flag == 1} {
  2279.         foreach param [get_parameters $feat] {
  2280.             lappend g_poly_op_param_list($x) [get_name $param]
  2281.         }
  2282.     }
  2283.     if {$extra_params != ""} {
  2284.         lappend g_poly_op_param_list($x) $extra_params
  2285.     }
  2286.     set g_poly_op_class_list($x) $class_name
  2287.     incr g_poly_op_count
  2288. }
  2289.  
  2290. proc gen_assoc_list {class} {
  2291.     global g_assoc_list
  2292.     echo "Class = [get_name $class]"
  2293.     foreach feat [get_features $class] {
  2294.         set feat_type [get_obj_type $feat]
  2295.         echo "   feature type = $feat_type"
  2296.         if {$feat_type == "assoc_attrib" || $feat_type == "qual_assoc_attrib" \
  2297.             || $feat_type == "link_attrib" || $feat_type == "rv_link_attrib" } {
  2298.             set assoc_class [get_name [get_type $feat]]
  2299.                if {[get_name $feat] != $assoc_class && [lsearch $g_assoc_list $assoc_class] == -1} {
  2300.                 append g_assoc_list "$assoc_class "
  2301.             }
  2302.         }
  2303.     }
  2304. }
  2305.