home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / run_require.e < prev    next >
Text File  |  1999-06-05  |  5KB  |  202 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_REQUIRE
  17.    --
  18.    -- A RUN_REQUIRE is composed with all inherited E_REQUIRE.
  19.    --
  20.  
  21. inherit GLOBALS;
  22.  
  23. creation {ASSERTION_COLLECTOR} make
  24.  
  25. feature {NONE}
  26.  
  27.    list: ARRAY[E_REQUIRE];
  28.          -- From bottom to the top of the inheritance graph.
  29.          -- Order is important because one at least must be true
  30.          -- following bottom up order.
  31.  
  32.    make(first: E_REQUIRE) is
  33.       do
  34.          !!list.with_capacity(4,1);
  35.          list.add_last(first);
  36.       end;
  37.  
  38. feature
  39.  
  40.    short is
  41.       local
  42.          i: INTEGER;
  43.       do
  44.          from
  45.             list.item(1).short("hook401","      require%N");
  46.             i := 2;
  47.          until
  48.             i > list.upper
  49.          loop
  50.             list.item(i).short("hook402","      require else %N");
  51.             i := i + 1;
  52.          end;
  53.          short_print.hook("hook403");
  54.       end;
  55.  
  56.    use_current: BOOLEAN is
  57.       local
  58.          i: INTEGER;
  59.       do
  60.          from
  61.             i := 1;
  62.          until
  63.             Result or else i > list.upper
  64.          loop
  65.             Result := list.item(i).use_current;
  66.             i := i + 1;
  67.          end;
  68.       end;
  69.  
  70.    afd_check is
  71.       local
  72.          i: INTEGER;
  73.       do
  74.          from
  75.             i := list.upper;
  76.          until
  77.             i = 0
  78.          loop
  79.             list.item(i).afd_check;
  80.             i := i - 1;
  81.          end;
  82.       end;
  83.  
  84.    compile_to_c is
  85.       require
  86.          run_control.require_check
  87.       local
  88.          i: INTEGER;
  89.       do
  90.          if list.upper = 1 then
  91.             cpp.put_string("se_require_uppermost_flag=1;%N");
  92.             list.first.compile_to_c;
  93.          else
  94.             cpp.put_string("se_require_uppermost_flag=0;%N%
  95.                            %se_require_last_result=1;%N");
  96.             list.first.compile_to_c;
  97.             from
  98.                i := 2;
  99.             until
  100.                i > list.upper
  101.             loop
  102.                if i = list.upper then
  103.                   cpp.put_string("se_require_uppermost_flag=1;%N")
  104.                end;
  105.                cpp.put_string("if(!se_require_last_result){%N%
  106.                               %se_require_last_result=1;%N")
  107.                list.item(i).compile_to_c;
  108.                cpp.put_string(fz_12)
  109.                i := i + 1;
  110.             end;
  111.          end;
  112.       end;
  113.  
  114.    compile_to_jvm is
  115.       local
  116.          i: INTEGER;
  117.          ca: like code_attribute;
  118.       do
  119.          if run_control.require_check then
  120.             ca := code_attribute;
  121.             if list.upper = 1 then
  122.                list.first.compile_to_jvm(true);
  123.                ca.opcode_pop;
  124.             else
  125.                sucess.clear;
  126.                from
  127.                   i := 1;
  128.                until
  129.                   i > (list.upper - 1)
  130.                loop
  131.                   list.item(i).compile_to_jvm(false);
  132.                   sucess.add_last(ca.opcode_ifne);
  133.                   i := i + 1;
  134.                end;
  135.                list.item(i).compile_to_jvm(true);
  136.                ca.opcode_pop;
  137.                ca.resolve_with(sucess);
  138.             end;
  139.          end;
  140.       end;
  141.  
  142. feature {ASSERTION_COLLECTOR}
  143.  
  144.    add(r: E_REQUIRE) is
  145.       require
  146.          r /= Void
  147.       local
  148.          i: INTEGER;
  149.          r2: E_REQUIRE;
  150.          bc, bc2: BASE_CLASS;
  151.       do
  152.          list.add_last(r);
  153.          from
  154.             bc := r.start_position.base_class;
  155.             i := list.upper;
  156.          until
  157.             i = 1
  158.          loop
  159.             r2 := list.item(i - 1);
  160.             bc2 := r2.start_position.base_class;
  161.             if bc.is_subclass_of(bc2) then
  162.                list.swap(i,i-1);
  163.                i := i - 1;
  164.             else
  165.                i := 1;
  166.             end;
  167.          end;
  168.       end;
  169.  
  170. feature {RUN_FEATURE_6}
  171.  
  172.    clear_run_feature is
  173.       local
  174.          i: INTEGER;
  175.       do
  176.          from
  177.             i := list.upper;
  178.          until
  179.             i = 0
  180.          loop
  181.             list.item(i).clear_run_feature;
  182.             i := i - 1;
  183.          end;
  184.       end;
  185.  
  186. feature {NONE}
  187.  
  188.    sucess: FIXED_ARRAY[INTEGER] is
  189.          -- To reach the sucessful code.
  190.       once
  191.          !!Result.with_capacity(4);
  192.       end;
  193.  
  194. invariant
  195.  
  196.    list.lower = 1;
  197.  
  198.    not list.empty;
  199.  
  200. end -- RUN_REQUIRE
  201.  
  202.