note description: "Helper routines for encoding conversion." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2020-05-19 14:18:09 +0000 (Tue, 19 May 2020) $" revision: "$Revision: 104255 $" class ENCODING_HELPER create default_create feature {NONE} -- Initialization default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) do end feature -- Access generating_type: TYPE [detachable ENCODING_HELPER] -- Type of current object -- (type of which it is a direct instance) -- (from ANY) external "built_in" ensure -- from ANY generating_type_not_void: Result /= Void end generator: STRING_8 -- Name of current object's generating class -- (base class of the type of which it is a direct instance) -- (from ANY) external "built_in" ensure -- from ANY generator_not_void: Result /= Void generator_not_empty: not Result.is_empty end feature -- Comparison frozen deep_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void -- or attached to isomorphic object structures? -- (from ANY) do if a = Void then Result := b = Void else Result := b /= Void and then a.is_deep_equal (b) end ensure -- from ANY instance_free: class shallow_implies_deep: standard_equal (a, b) implies Result both_or_none_void: (a = Void) implies (Result = (b = Void)) same_type: (Result and (a /= Void)) implies (b /= Void and then a.same_type (b)) symmetric: Result implies deep_equal (b, a) end frozen equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached -- to objects considered equal? -- (from ANY) do if a = Void then Result := b = Void else Result := b /= Void and then a.is_equal (b) end ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.is_equal (b)) end frozen is_deep_equal alias "≡≡≡" (other: ENCODING_HELPER): BOOLEAN -- Are Current and other attached to isomorphic object structures? -- (from ANY) require -- from ANY other_not_void: other /= Void external "built_in" ensure -- from ANY shallow_implies_deep: standard_is_equal (other) implies Result same_type: Result implies same_type (other) symmetric: Result implies other.is_deep_equal (Current) end is_equal (other: ENCODING_HELPER): BOOLEAN -- Is other attached to an object considered -- equal to current object? -- (from ANY) require -- from ANY other_not_void: other /= Void external "built_in" ensure -- from ANY symmetric: Result implies other ~ Current consistent: standard_is_equal (other) implies Result end frozen standard_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached to -- field-by-field identical objects of the same type? -- Always uses default object comparison criterion. -- (from ANY) do if a = Void then Result := b = Void else Result := b /= Void and then a.standard_is_equal (b) end ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.standard_is_equal (b)) end frozen standard_is_equal alias "≜" (other: ENCODING_HELPER): BOOLEAN -- Is other attached to an object of the same type -- as current object, and field-by-field identical to it? -- (from ANY) require -- from ANY other_not_void: other /= Void external "built_in" ensure -- from ANY same_type: Result implies same_type (other) symmetric: Result implies other.standard_is_equal (Current) end feature -- Status report conforms_to (other: ANY): BOOLEAN -- Does type of current object conform to type -- of other (as per Eiffel: The Language, chapter 13)? -- (from ANY) require -- from ANY other_not_void: other /= Void external "built_in" end same_type (other: ANY): BOOLEAN -- Is type of current object identical to type of other? -- (from ANY) require -- from ANY other_not_void: other /= Void external "built_in" ensure -- from ANY definition: Result = (conforms_to (other) and other.conforms_to (Current)) end feature -- Conversion multi_byte_to_pointer (a_string: READABLE_STRING_8): MANAGED_POINTER -- Managed pointer of a_string. require a_string_not_void: a_string /= Void do Result := (create {C_STRING}.make (a_string)).managed_data ensure instance_free: class result_not_void: Result /= Void end pointer_to_multi_byte (a_multi_string: POINTER; a_count: INTEGER_32): STRING_8 -- STRING_8 read from a_multi_string. require a_multi_string_not_default: a_multi_string /= default_pointer a_count_non_negative: a_count >= 0 local i: INTEGER_32 l_managed_pointer: MANAGED_POINTER do create l_managed_pointer.share_from_pointer (a_multi_string, a_count) create Result.make (a_count) from i := 0 until i >= a_count loop Result.append_code (l_managed_pointer.read_natural_8 (i).to_natural_32) i := i + 1 end ensure instance_free: class result_not_void: Result /= Void end pointer_to_string_32 (a_w_string: POINTER; a_count: INTEGER_32): STRING_32 -- STRING_32 read from a_w_string of a_count bytes. require a_w_string_not_default: a_w_string /= default_pointer a_count_non_negative: a_count >= 0 local i: INTEGER_32 l_managed_pointer: MANAGED_POINTER l_size: INTEGER_32 do create l_managed_pointer.share_from_pointer (a_w_string, a_count) l_size := a_count // 4 create Result.make (l_size) from i := 0 until i >= l_size loop if i * 4 <= a_count then Result.append_code (l_managed_pointer.read_natural_32 (i * 4)) end i := i + 1 end ensure instance_free: class result_not_void: Result /= Void end pointer_to_wide_string (a_w_string: POINTER; a_count: INTEGER_32): STRING_32 -- STRING_32 read from a_w_string of a_count bytes. require a_w_string_not_default: a_w_string /= default_pointer a_count_non_negative: a_count >= 0 local i: INTEGER_32 l_managed_pointer: MANAGED_POINTER l_size: INTEGER_32 do create l_managed_pointer.share_from_pointer (a_w_string, a_count) l_size := (a_count + 1) // 2 create Result.make (l_size) from i := 0 until i >= l_size loop if i * 2 <= a_count then Result.append_code (l_managed_pointer.read_natural_16 (i * 2).to_natural_32) end i := i + 1 end ensure instance_free: class result_not_void: Result /= Void end string_16_to_stream (a_string: STRING_32): STRING_8 -- We use a_string as 2 bytes encoding string, the first two bytes are not used. -- in the endianness of the current platform. require a_string_not_void: a_string /= Void local l_managed_pointer: MANAGED_POINTER i, l_count: INTEGER_32 do l_managed_pointer := wide_string_to_pointer (a_string) create Result.make (l_managed_pointer.count) from i := 0 l_count := l_managed_pointer.count - 2 until i = l_count loop Result.append_character (l_managed_pointer.read_natural_8 (i).to_character_8) i := i + 1 end ensure instance_free: class result_not_void: Result /= Void valid_count: Result.count = a_string.count * 2 end string_32_to_multi_byte (a_string: STRING_32): STRING_8 -- Byte stream of a_string in endianness of the current platform. require a_string_not_void: a_string /= Void local i: INTEGER_32 l_code: NATURAL_32 l_count: INTEGER_32 l_is_little_endian: BOOLEAN do l_count := a_string.count if l_count > 0 then create Result.make (l_count * 4) from i := 1 l_is_little_endian := Is_little_endian until i > l_count loop l_code := a_string.code (i) if l_is_little_endian then Result.append_code (l_code & 255); Result.append_code (l_code & 65280 |>> 8); Result.append_code (l_code & 16711680 |>> 16); Result.append_code (l_code & 4278190080 |>> 24) else Result.append_code (l_code & 4278190080 |>> 24); Result.append_code (l_code & 16711680 |>> 16); Result.append_code (l_code & 65280 |>> 8); Result.append_code (l_code & 255) end i := i + 1 end else create Result.make_empty end ensure instance_free: class result_not_void: Result /= Void end string_8_to_wide_string (a_w_string: STRING_8): STRING_32 -- Interpret a_w_string as a sequence of 2-byte characters into a STRING_32 -- in endianness of the current platform. require a_w_string_not_void: a_w_string /= Void local i: INTEGER_32 l_size, l_count: INTEGER_32 l_is_little_endian: BOOLEAN l_code: NATURAL_32 do l_count := a_w_string.count l_size := (l_count + 1) // 2 l_is_little_endian := Is_little_endian create Result.make (l_size) from i := 1 until i > l_count loop if i + 1 <= l_count then if l_is_little_endian then l_code := a_w_string.code (i) | (a_w_string.code (i + 1) |<< 8) else l_code := (a_w_string.code (i) |<< 8) | a_w_string.code (i + 1) end; Result.append_code (l_code) end i := i + 1 end ensure instance_free: class result_not_void: Result /= Void end string_general_to_stream (a_string: READABLE_STRING_GENERAL): STRING_8 -- Streamize a_string. require a_string_not_void: a_string /= Void do if a_string.is_string_8 then Result := a_string.to_string_8 else Result := string_32_to_multi_byte (a_string.as_string_32) end ensure instance_free: class result_not_void: Result /= Void end wide_string_to_pointer (a_string: READABLE_STRING_32): MANAGED_POINTER -- Managed pointer of a_string which is taken as -- 16bits string. High 16bits of characters of a_string are discarded. require a_string_not_void: a_string /= Void local i, nb: INTEGER_32 do nb := a_string.count create Result.make ((nb + 1) * 2) from i := 0 until i = nb loop Result.put_natural_16 (a_string.code (i + 1).to_natural_16, i * 2) i := i + 1 end; Result.put_natural_16 (0, i * 2) ensure instance_free: class result_not_void: Result /= Void end feature -- Duplication frozen clone (other: detachable ANY): like other obsolete "Use `twin' instead. [2017-05-31]" -- Void if other is void; otherwise new object -- equal to other -- -- For non-void other, clone calls copy; -- to change copying/cloning semantics, redefine copy. -- (from ANY) do if other /= Void then Result := other.twin end ensure -- from ANY instance_free: class equal: Result ~ other end copy (other: ENCODING_HELPER) -- Update current object using fields of object attached -- to other, so as to yield equal objects. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) external "built_in" ensure -- from ANY is_equal: Current ~ other end frozen deep_clone (other: detachable ANY): like other obsolete "Use `deep_twin' instead. [2017-05-31]" -- Void if other is void: otherwise, new object structure -- recursively duplicated from the one attached to other -- (from ANY) do if other /= Void then Result := other.deep_twin end ensure -- from ANY instance_free: class deep_equal: deep_equal (other, Result) end frozen deep_copy (other: ENCODING_HELPER) -- Effect equivalent to that of: -- copy (other . deep_twin) -- (from ANY) require -- from ANY other_not_void: other /= Void do copy (other.deep_twin) ensure -- from ANY deep_equal: deep_equal (Current, other) end frozen deep_twin: ENCODING_HELPER -- New object structure recursively duplicated from Current. -- (from ANY) external "built_in" ensure -- from ANY deep_twin_not_void: Result /= Void deep_equal: deep_equal (Current, Result) end frozen standard_clone (other: detachable ANY): like other obsolete "Use `standard_twin' instead. [2017-05-31]" -- Void if other is void; otherwise new object -- field-by-field identical to other. -- Always uses default copying semantics. -- (from ANY) do if other /= Void then Result := other.standard_twin end ensure -- from ANY instance_free: class equal: standard_equal (Result, other) end frozen standard_copy (other: ENCODING_HELPER) -- Copy every field of other onto corresponding field -- of current object. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) external "built_in" ensure -- from ANY is_standard_equal: standard_is_equal (other) end frozen standard_twin: ENCODING_HELPER -- New object field-by-field identical to other. -- Always uses default copying semantics. -- (from ANY) external "built_in" ensure -- from ANY standard_twin_not_void: Result /= Void equal: standard_equal (Result, Current) end frozen twin: ENCODING_HELPER -- New object equal to Current -- twin calls copy; to change copying/twinning semantics, redefine copy. -- (from ANY) external "built_in" ensure -- from ANY twin_not_void: Result /= Void is_equal: Result ~ Current end feature -- Basic operations frozen as_attached: attached ENCODING_HELPER obsolete "Remove calls to this feature. [2017-05-31]" -- Attached version of Current. -- (Can be used during transitional period to convert -- non-void-safe classes to void-safe ones.) -- (from ANY) do Result := Current end frozen default: detachable ENCODING_HELPER -- Default value of object's type -- (from ANY) do end frozen default_pointer: POINTER -- Default value of type POINTER -- (Avoid the need to write p.default for -- some p of type POINTER.) -- (from ANY) do ensure -- from ANY instance_free: class end default_rescue -- Process exception for routines with no Rescue clause. -- (Default: do nothing.) -- (from ANY) do end frozen do_nothing -- Execute a null action. -- (from ANY) do ensure -- from ANY instance_free: class end feature -- Endian Is_little_endian: BOOLEAN -- Is this system little endian? once Result := {PLATFORM}.is_little_endian ensure instance_free: class end string_16_switch_endian (a_str: STRING_32): STRING_32 -- Switch endian of a_str for low bits. -- High bits are cleaned. require a_str_not_void: a_str /= Void local l_code: NATURAL_32 i, l_count: INTEGER_32 do l_count := a_str.count create Result.make (l_count) from i := 1 until i > l_count loop l_code := a_str.code (i); Result.append_code (l_code & 255 |<< 8 & 65280 + l_code & 65280 |>> 8 & 255) i := i + 1 end ensure instance_free: class result_not_void: Result /= Void end string_32_switch_endian (a_str: STRING_32): STRING_32 -- Switch endian of a_str for both high and low bits. require a_str_not_void: a_str /= Void local l_code: NATURAL_32 i, l_count: INTEGER_32 do l_count := a_str.count create Result.make (l_count) from i := 1 until i > l_count loop l_code := a_str.code (i); Result.append_code (l_code & 255 |<< 24 & 4278190080 + l_code & 65280 |<< 8 + l_code & 16711680 |>> 8 + l_code & 4278190080 |>> 24 & 255) i := i + 1 end ensure instance_free: class result_not_void: Result /= Void end feature -- Output Io: STD_FILES -- Handle to standard file setup -- (from ANY) once create Result; Result.set_output_default ensure -- from ANY instance_free: class io_not_void: Result /= Void end out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) do Result := tagged_out ensure -- from ANY out_not_void: Result /= Void end print (o: detachable ANY) -- Write terse external representation of o -- on standard output. -- (from ANY) local s: READABLE_STRING_8 do if attached o then s := o.out if attached {READABLE_STRING_32} s as s32 then Io.put_string_32 (s32) elseif attached {READABLE_STRING_8} s as s8 then Io.put_string (s8) else Io.put_string_32 (s.as_string_32) end end ensure -- from ANY instance_free: class end frozen tagged_out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) external "built_in" ensure -- from ANY tagged_out_not_void: Result /= Void end feature -- Platform Operating_environment: OPERATING_ENVIRONMENT -- Objects available from the operating system -- (from ANY) once create Result ensure -- from ANY instance_free: class operating_environment_not_void: Result /= Void end feature {NONE} -- Retrieval frozen internal_correct_mismatch -- Called from runtime to perform a proper dynamic dispatch on correct_mismatch -- from MISMATCH_CORRECTOR. -- (from ANY) local l_msg: STRING_32 l_exc: EXCEPTIONS do if attached {MISMATCH_CORRECTOR} Current as l_corrector then l_corrector.correct_mismatch else create l_msg.make_from_string ("Mismatch: ".as_string_32) create l_exc; l_msg.append (generating_type.name_32); l_exc.raise_retrieval_exception (l_msg) end end invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note library: "Encoding: Library of reusable components for Eiffel." copyright: "Copyright (c) 1984-2020, 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 ENCODING_HELPER
Generated by ISE EiffelStudio