--          This file is part of SmartEiffel The GNU Eiffel Compiler.
--       Copyright (C) 1994-2002 LORIA - INRIA - U.H.P. Nancy 1 - FRANCE
--          Dominique COLNET and Suzanne COLLIN - SmartEiffel@loria.fr
--                       http://SmartEiffel.loria.fr
-- SmartEiffel is  free  software;  you can  redistribute it and/or modify it
-- under the terms of the GNU General Public License as published by the Free
-- Software  Foundation;  either  version  2, or (at your option)  any  later
-- version. SmartEiffel is distributed in the hope that it will be useful,but
-- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
-- for  more  details.  You  should  have  received a copy of the GNU General
-- Public  License  along  with  SmartEiffel;  see the file COPYING.  If not,
-- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-- Boston, MA 02111-1307, USA.
--
class TYPE_ROUTINE
   --
   -- For agents of type ROUTINE.
   --

inherit TYPE_OF_AGENT

creation make

feature

   is_run_type: BOOLEAN is
      do
	 if base.is_run_type then
	    Result := open.is_run_type
	 end
      end

   run_type: like Current is
      do
	 if run_type_memory = Void then
	    if base.run_type = base then
	       if open.run_type = open then
		  run_type_memory := Current
	       end
	    end
	    if run_type_memory = Void then
	       create run_type_memory.make(start_position,
					   base.run_type,
					   open.run_type)
	    end
	 end
	 Result := run_type_memory
      end

   written_mark: STRING is
      local
	 base_wm, open_wm: STRING
      do
	 Result := written_mark_memory
	 if Result = Void then
	    -- To force computation of components first:
	    base_wm := base.written_mark
	    open_wm := open.written_mark
	    -- Then compute the `Result':
	    Result := tmp_mark
	    Result.copy(as_routine)
	    Result.extend('[')
	    Result.append(base_wm)
	    Result.extend(',')
	    Result.append(open_wm)
	    Result.extend(']')
	    Result := string_aliaser.item(Result)
	    written_mark_memory := Result
	 end
      end

   run_time_mark: STRING is
      local
	 base_rtm, open_rtm: STRING
      do
	 Result := run_time_mark_memory
	 if Result = Void then
	    -- To force computation of components first:
	    base_rtm := base.run_time_mark
	    open_rtm := open.run_time_mark
	    -- Then compute the `Result':
	    Result := tmp_mark
	    Result.copy(as_routine)
	    Result.extend('[')
	    Result.append(base_rtm)
	    Result.extend(',')
	    Result.append(open_rtm)
	    Result.extend(']')
	    Result := string_aliaser.item(Result)
	    run_time_mark_memory := Result
	 end
      end

   to_runnable(ct: E_TYPE): like Current is
      local
	 b: like base; o: like open
      do
	 b := base.to_runnable(ct)
	 o := open.to_runnable(ct)
	 if b = base and then o = open then
	    Result := Current
	    load_builtin_features
	 else
	    create Result.make(start_position,b,o)
	    Result := Result.to_runnable(ct)
	 end
      end

feature {E_TYPE}

   short_hook is
      do
         short_print.a_face_class_name(base_class_name)
         short_print.hook_or("open_sb","[")
	 base.short_hook
	 short_print.hook_or("tm_sep",",")
	 open.short_hook
         short_print.hook_or("close_sb","]")
      end

feature {E_AGENT}

   load_builtin_features is
      do
	 base_class.load_feature_call(run_type)
      end
   
feature {NONE}

   make(sp: like start_position; b: like base; o: like open) is
      require
	 not sp.is_unknown
	 b /= Void
	 o /= Void
      do
	 start_position := sp
	 base := b
	 open := o
	 create base_class_name.make(as_routine,sp)
      ensure
	 start_position = sp
	 base = b
	 open = o
      end

   is_a_(other: TYPE_OF_AGENT): BOOLEAN is
      do
	 if other.res = Void then
	    if base.is_a(other.base) then
	       Result := other.open.is_a(open)
	    end
	 end
      end

   unique_base_class_memory: BASE_CLASS is
      once
         create Result.face_class(as_routine)
      end

end -- TYPE_ROUTINE