Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:
note description: "[ Access to internal object properties. This class may be used as ancestor by classes needing its facilities. ]" library: "Free implementation of ELKS library" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2015-06-23 07:13:21 -0700 (Tue, 23 Jun 2015) $" revision: "$Revision: 97529 $" class INTERNAL inherit REFLECTOR OBJECT_GRAPH_MARKER export {ANY} all end create default_create feature -- Conformance is_instance_of (object: ANY; type_id: INTEGER_32): BOOLEAN -- Is `object' an instance of type `type_id'? require object_not_void: object /= Void type_id_nonnegative: type_id >= 0 do Result := type_conforms_to (dynamic_type (object), type_id) end feature -- Creation type_of (object: detachable ANY): TYPE [detachable ANY] -- Associated TYPE instance of `object'. do if object /= Void then Result := object.generating_type else Result := {NONE} end ensure result_not_void: Result /= Void end feature -- Status report is_special (object: ANY): BOOLEAN -- Is `object' a special object? require object_not_void: object /= Void do Result := is_special_type (dynamic_type (object)) end is_tuple (object: ANY): BOOLEAN -- Is `object' a TUPLE object? require object_not_void: object /= Void do Result := attached {TUPLE} object end is_field_transient (i: INTEGER_32; object: ANY): BOOLEAN -- Is `i'-th field of `object' a transient attribute? -- I.e. an attribute that does not need to be stored? require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) do Result := is_field_transient_of_type (i, dynamic_type (object)) end is_field_expanded (i: INTEGER_32; object: ANY): BOOLEAN -- Is `i'-th field of `object' a user-defined expanded attribute? require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) do Result := is_field_expanded_of_type (i, dynamic_type (object)) end feature -- Access class_name (object: ANY): STRING_8 -- Name of the class associated with `object' require object_not_void: object /= Void do Result := object.generator end type_name (object: ANY): STRING_8 -- Name of `object''s generating type (type of which `object' -- is a direct instance). require object_not_void: object /= Void do Result := object.generating_type.to_string_8 end dynamic_type (object: separate ANY): INTEGER_32 -- Dynamic type of `object' require object_not_void: object /= Void do Reflected_object.set_object (object) Result := Reflected_object.dynamic_type ensure dynamic_type_nonnegative: Result >= 0 end generic_count (obj: ANY): INTEGER_32 -- Number of generic parameter in `obj'. require obj_not_void: obj /= Void do Reflected_object.set_object (obj) Result := Reflected_object.generic_count end generic_dynamic_type (obj: ANY; i: INTEGER_32): INTEGER_32 -- Dynamic type of generic parameter of `object' at -- position `i'. require obj_not_void: obj /= Void obj_generic: generic_count (obj) > 0 i_valid: i > 0 and i <= generic_count (obj) do Reflected_object.set_object (obj) Result := Reflected_object.generic_dynamic_type (i) ensure dynamic_type_nonnegative: Result >= 0 end field (i: INTEGER_32; object: ANY): detachable ANY -- Object attached to the `i'-th field of `object' -- (directly or through a reference) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) not_special: not is_special (object) do Reflected_object.set_object (object) Result := Reflected_object.field (i) end reference_field (i: INTEGER_32; object: ANY): detachable ANY -- Reference value of the `i'-th field of `object'. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) not_special: not is_special (object) valid_type: field_type (i, object) = Reference_type do Reflected_object.set_object (object) Result := Reflected_object.reference_field (i) end field_name (i: INTEGER_32; object: ANY): STRING_8 -- Name of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) not_special: not is_special (object) do Result := field_name_of_type (i, dynamic_type (object)) ensure result_exists: Result /= Void end field_offset (i: INTEGER_32; object: ANY): INTEGER_32 -- Offset of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) not_special: not is_special (object) do Reflected_object.set_object (object) Result := Reflected_object.field_offset (i) end field_type (i: INTEGER_32; object: ANY): INTEGER_32 -- Abstract type of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) do Result := field_type_of_type (i, dynamic_type (object)) ensure field_type_nonnegative: Result >= 0 end expanded_field_type (i: INTEGER_32; object: ANY): STRING_8 obsolete "Use `class_name_of_type (field_static_type_of_type (i, dynamic_type (object)))' instead." -- Class name associated with the `i'-th -- expanded field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) is_expanded: field_type (i, object) = Expanded_type do Result := class_name_of_type (field_static_type_of_type (i, dynamic_type (object))) ensure result_exists: Result /= Void end character_8_field (i: INTEGER_32; object: ANY): CHARACTER_8 -- Character value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of character_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) character_8_field: field_type (i, object) = Character_8_type do Reflected_object.set_object (object) Result := Reflected_object.character_8_field (i) end character_field (i: INTEGER_32; object: ANY): CHARACTER_8 -- Character value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of character_8_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) character_8_field: field_type (i, object) = Character_8_type do Reflected_object.set_object (object) Result := Reflected_object.character_8_field (i) end character_32_field (i: INTEGER_32; object: ANY): CHARACTER_32 -- Character value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) character_32_field: field_type (i, object) = Character_32_type do Reflected_object.set_object (object) Result := Reflected_object.character_32_field (i) end boolean_field (i: INTEGER_32; object: ANY): BOOLEAN -- Boolean value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) boolean_field: field_type (i, object) = Boolean_type do Reflected_object.set_object (object) Result := Reflected_object.boolean_field (i) end natural_8_field (i: INTEGER_32; object: ANY): NATURAL_8 -- NATURAL_8 value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_8_field: field_type (i, object) = Natural_8_type do Reflected_object.set_object (object) Result := Reflected_object.natural_8_field (i) end natural_16_field (i: INTEGER_32; object: ANY): NATURAL_16 -- NATURAL_16 value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_16_field: field_type (i, object) = Natural_16_type do Reflected_object.set_object (object) Result := Reflected_object.natural_16_field (i) end natural_32_field (i: INTEGER_32; object: ANY): NATURAL_32 -- NATURAL_32 value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_field: field_type (i, object) = Natural_32_type do Reflected_object.set_object (object) Result := Reflected_object.natural_32_field (i) end natural_64_field (i: INTEGER_32; object: ANY): NATURAL_64 -- NATURAL_64 value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_64_field: field_type (i, object) = Natural_64_type do Reflected_object.set_object (object) Result := Reflected_object.natural_64_field (i) end integer_8_field (i: INTEGER_32; object: ANY): INTEGER_8 -- Integer value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_8_field: field_type (i, object) = Integer_8_type do Reflected_object.set_object (object) Result := Reflected_object.integer_8_field (i) end integer_16_field (i: INTEGER_32; object: ANY): INTEGER_16 -- Integer value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_16_field: field_type (i, object) = Integer_16_type do Reflected_object.set_object (object) Result := Reflected_object.integer_16_field (i) end integer_field (i: INTEGER_32; object: ANY): INTEGER_32 -- Integer value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of integer_32_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_32_field: field_type (i, object) = Integer_32_type do Reflected_object.set_object (object) Result := Reflected_object.integer_32_field (i) end integer_32_field (i: INTEGER_32; object: ANY): INTEGER_32 -- Integer value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of integer_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_32_field: field_type (i, object) = Integer_32_type do Reflected_object.set_object (object) Result := Reflected_object.integer_32_field (i) end integer_64_field (i: INTEGER_32; object: ANY): INTEGER_64 -- Integer value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_64_field: field_type (i, object) = Integer_64_type do Reflected_object.set_object (object) Result := Reflected_object.integer_64_field (i) end real_32_field (i: INTEGER_32; object: ANY): REAL_32 -- Real value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of real_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_32_field: field_type (i, object) = Real_32_type do Reflected_object.set_object (object) Result := Reflected_object.real_32_field (i) end real_field (i: INTEGER_32; object: ANY): REAL_32 -- Real value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of real_32_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_32_field: field_type (i, object) = Real_32_type do Reflected_object.set_object (object) Result := Reflected_object.real_32_field (i) end pointer_field (i: INTEGER_32; object: ANY): POINTER -- Pointer value of `i'-th field of `object' require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) pointer_field: field_type (i, object) = Pointer_type do Reflected_object.set_object (object) Result := Reflected_object.pointer_field (i) end real_64_field (i: INTEGER_32; object: ANY): REAL_64 -- Double precision value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of double_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_64_field: field_type (i, object) = Real_64_type do Reflected_object.set_object (object) Result := Reflected_object.real_64_field (i) end double_field (i: INTEGER_32; object: ANY): REAL_64 -- Double precision value of `i'-th field of `object' -- Was declared in INTERNAL as synonym of real_64_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_64_field: field_type (i, object) = Real_64_type do Reflected_object.set_object (object) Result := Reflected_object.real_64_field (i) end feature -- Element change set_reference_field (i: INTEGER_32; object: ANY; value: detachable ANY) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) reference_field: field_type (i, object) = Reference_type valid_value: is_attached_type (field_static_type_of_type (i, dynamic_type (object))) implies value /= Void value_conforms_to_field_static_type: value /= Void implies field_conforms_to (dynamic_type (value), field_static_type_of_type (i, dynamic_type (object))) do Reflected_object.set_object (object) Reflected_object.set_reference_field (i, value) end set_real_64_field (i: INTEGER_32; object: ANY; value: REAL_64) -- Was declared in INTERNAL as synonym of set_double_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_64_field: field_type (i, object) = Real_64_type do Reflected_object.set_object (object) Reflected_object.set_real_64_field (i, value) end set_double_field (i: INTEGER_32; object: ANY; value: REAL_64) -- Was declared in INTERNAL as synonym of set_real_64_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_64_field: field_type (i, object) = Real_64_type do Reflected_object.set_object (object) Reflected_object.set_real_64_field (i, value) end set_character_8_field (i: INTEGER_32; object: ANY; value: CHARACTER_8) -- Was declared in INTERNAL as synonym of set_character_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) character_8_field: field_type (i, object) = Character_8_type do Reflected_object.set_object (object) Reflected_object.set_character_8_field (i, value) end set_character_field (i: INTEGER_32; object: ANY; value: CHARACTER_8) -- Was declared in INTERNAL as synonym of set_character_8_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) character_8_field: field_type (i, object) = Character_8_type do Reflected_object.set_object (object) Reflected_object.set_character_8_field (i, value) end set_character_32_field (i: INTEGER_32; object: ANY; value: CHARACTER_32) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) character_32_field: field_type (i, object) = Character_32_type do Reflected_object.set_object (object) Reflected_object.set_character_32_field (i, value) end set_boolean_field (i: INTEGER_32; object: ANY; value: BOOLEAN) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) boolean_field: field_type (i, object) = Boolean_type do Reflected_object.set_object (object) Reflected_object.set_boolean_field (i, value) end set_natural_8_field (i: INTEGER_32; object: ANY; value: NATURAL_8) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_8_field: field_type (i, object) = Natural_8_type do Reflected_object.set_object (object) Reflected_object.set_natural_8_field (i, value) end set_natural_16_field (i: INTEGER_32; object: ANY; value: NATURAL_16) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_16_field: field_type (i, object) = Natural_16_type do Reflected_object.set_object (object) Reflected_object.set_natural_16_field (i, value) end set_natural_32_field (i: INTEGER_32; object: ANY; value: NATURAL_32) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_32_field: field_type (i, object) = Natural_32_type do Reflected_object.set_object (object) Reflected_object.set_natural_32_field (i, value) end set_natural_64_field (i: INTEGER_32; object: ANY; value: NATURAL_64) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) natural_64_field: field_type (i, object) = Natural_64_type do Reflected_object.set_object (object) Reflected_object.set_natural_64_field (i, value) end set_integer_8_field (i: INTEGER_32; object: ANY; value: INTEGER_8) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_8_field: field_type (i, object) = Integer_8_type do Reflected_object.set_object (object) Reflected_object.set_integer_8_field (i, value) end set_integer_16_field (i: INTEGER_32; object: ANY; value: INTEGER_16) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_16_field: field_type (i, object) = Integer_16_type do Reflected_object.set_object (object) Reflected_object.set_integer_16_field (i, value) end set_integer_field (i: INTEGER_32; object: ANY; value: INTEGER_32) -- Was declared in INTERNAL as synonym of set_integer_32_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_32_field: field_type (i, object) = Integer_32_type do Reflected_object.set_object (object) Reflected_object.set_integer_32_field (i, value) end set_integer_32_field (i: INTEGER_32; object: ANY; value: INTEGER_32) -- Was declared in INTERNAL as synonym of set_integer_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_32_field: field_type (i, object) = Integer_32_type do Reflected_object.set_object (object) Reflected_object.set_integer_32_field (i, value) end set_integer_64_field (i: INTEGER_32; object: ANY; value: INTEGER_64) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) integer_64_field: field_type (i, object) = Integer_64_type do Reflected_object.set_object (object) Reflected_object.set_integer_64_field (i, value) end set_real_32_field (i: INTEGER_32; object: ANY; value: REAL_32) -- Was declared in INTERNAL as synonym of set_real_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_32_field: field_type (i, object) = Real_32_type do Reflected_object.set_object (object) Reflected_object.set_real_32_field (i, value) end set_real_field (i: INTEGER_32; object: ANY; value: REAL_32) -- Was declared in INTERNAL as synonym of set_real_32_field. require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) real_32_field: field_type (i, object) = Real_32_type do Reflected_object.set_object (object) Reflected_object.set_real_32_field (i, value) end set_pointer_field (i: INTEGER_32; object: ANY; value: POINTER) require object_not_void: object /= Void index_large_enough: i >= 1 index_small_enough: i <= field_count (object) pointer_field: field_type (i, object) = Pointer_type do Reflected_object.set_object (object) Reflected_object.set_pointer_field (i, value) end feature -- Measurement field_count (object: ANY): INTEGER_32 -- Number of logical fields in `object' require object_not_void: object /= Void do Reflected_object.set_object (object) Result := Reflected_object.field_count end persistent_field_count (object: ANY): INTEGER_32 -- Number of logical fields in `object' that are not transient. require object_not_void: object /= Void do Result := persistent_field_count_of_type (dynamic_type (object)) ensure count_positive: Result >= 0 end physical_size (object: ANY): INTEGER_32 -- Space occupied by `object' in bytes require object_not_void: object /= Void local l_size: NATURAL_64 do l_size := {ISE_RUNTIME}.object_size ($object.to_pointer) Result := l_size.min ({INTEGER_32}.max_value.as_natural_64).as_integer_32 end deep_physical_size (object: ANY): INTEGER_32 -- Space occupied by `object' and its children in bytes require object_not_void: object /= Void local l_size: NATURAL_64 do l_size := deep_physical_size_64 (object) Result := l_size.min ({INTEGER_32}.max_value.as_natural_64).as_integer_32 end physical_size_64 (object: separate ANY): NATURAL_64 -- Space occupied by `object' in bytes require object_not_void: object /= Void do Result := {ISE_RUNTIME}.object_size ($object.to_pointer) end deep_physical_size_64 (object: ANY): NATURAL_64 -- Space occupied by `object' and its children in bytes require object_not_void: object /= Void local l_traverse: OBJECT_GRAPH_BREADTH_FIRST_TRAVERSABLE do create l_traverse l_traverse.set_root_object (object) l_traverse.set_is_skip_transient (False) l_traverse.traverse if attached l_traverse.visited_objects as l_objects then from l_objects.start until l_objects.after loop Result := Result + physical_size_64 (l_objects.item) l_objects.forth end end end feature {NONE} -- Implementation Reflected_object: REFLECTED_REFERENCE_OBJECT -- Abstraction to reflect on objects. once create Result.make (Current) end note copyright: "Copyright (c) 1984-2015, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class INTERNAL
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:

-- Generated by ISE Eiffel --
For more details: www.eiffel.com