class EL_ZSTRING_IO_MEDIUM
Text buffer medium
note
	description: "Text buffer medium"
	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"
	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2025-03-27 7:39:45 GMT (Thursday 27th March 2025)"
	revision: "12"
		
		class
	EL_ZSTRING_IO_MEDIUM
inherit
	EL_STRING_IO_MEDIUM
		rename
			last_string as last_string_8
		redefine
			text, make_default,
			put_string_general, put_string, put_string_8, put_string_32, put_encoded_string_8, put_character_32
		end
	EL_MAKEABLE_TO_SIZE
create
	make, make_open_write, make_open_write_to_text, make_open_read_from_text
feature {NONE} -- Initialization
	make_default
		do
			Precursor
			create last_string.make_empty
		end
feature -- Access
	last_string: ZSTRING
	text: ZSTRING
feature -- Resizing
	grow (new_size: INTEGER)
			--
		do
			text.grow (new_size)
		end
feature -- Character output
	put_character_32 (c: CHARACTER_32)
		do
			text.append_unicode (c.natural_32_code)
		end
	put_encoded_character_8 (c: CHARACTER)
			--
		do
			text.append_unicode (c.natural_32_code)
		end
feature -- String output
	put_encoded_string_8 (str: STRING)
		do
			text.append_encodeable (str, Current)
		end
	put_string (str: ZSTRING)
		do
			text.append_string (str)
		end
	put_string_32 (str_32: READABLE_STRING_32)
		do
			text.append_string_general (str_32)
		end
	put_string_8 (str_8: READABLE_STRING_8)
		do
			text.append_string_general (str_8)
		end
	put_string_general (str: READABLE_STRING_GENERAL)
		do
			text.append_string_general (str)
		end
feature -- Numeric output
	put_boolean, putbool (b: BOOLEAN)
		do
			text.append_boolean (b)
		end
	put_double, putdouble (d: DOUBLE)
		do
			text.append_double (d)
		end
	put_integer, putint, put_integer_32 (i: INTEGER)
			--
		do
			text.append_integer (i)
		end
	put_integer_16 (i: INTEGER_16)
			--
		do
			text.append_integer_16 (i)
		end
	put_integer_64 (i: INTEGER_64)
			--
		do
			text.append_integer_64 (i)
		end
	put_integer_8 (i: INTEGER_8)
			--
		do
			text.append_integer_8 (i)
		end
	put_natural, put_natural_32 (n: NATURAL_32)
			--
		do
			text.append_natural_32 (n)
		end
	put_natural_16 (n: NATURAL_16)
			--
		do
			text.append_natural_16 (n)
		end
	put_natural_64 (n: NATURAL_64)
			--
		do
			text.append_natural_64 (n)
		end
	put_natural_8 (n: NATURAL_8)
			--
		do
			text.append_natural_8 (n)
		end
	put_real, putreal (r: REAL)
			--
		do
			text.append_real (r)
		end
feature {NONE} -- Implementation
	new_string (a_count: INTEGER): like text
		do
			create Result.make (a_count)
		end
	set_last_string (start_index, end_index: INTEGER)
		do
			last_string.wipe_out
			last_string.append_substring (text, start_index, end_index)
		end
	wipe_out_text
		do
			text.wipe_out
		end
end