diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-07-29 23:03:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-07-29 23:03:28 -0700 |
commit | e44c113ee17c7cf15e8b1891f4d51ec03b16bc24 (patch) | |
tree | af8691f7c51ee977a9939e1624375262f6e311c4 /stream.h | |
parent | b6955812c33d432557b93fe4638b411ff944334b (diff) | |
download | txr-e44c113ee17c7cf15e8b1891f4d51ec03b16bc24.tar.gz txr-e44c113ee17c7cf15e8b1891f4d51ec03b16bc24.tar.bz2 txr-e44c113ee17c7cf15e8b1891f4d51ec03b16bc24.zip |
Deriving streams from the same base, so
we can give streams some common slots.
* stream.c (strm_base_init, strm_base_cleanup, strm_base_mark,
stream_destroy_op, stream_mark_op): New functions.
(null_ops): Switch to stream_destroy_op and stream_mark_op.
(make_null_stream): Associate a strm_base instance with the
cobj handle rather than a null pointer.
(struct stdio_handle): Inherit struct strm_base.
(stdio_stream_destroy): Clean up the strm_base part.
(stdio_stream_mark): Mark the strm_base part.
(make_stdio_stream_common): Initialize the strm_base part.
(struct dir_handle): Inherit struct strm_base.
(dir_destroy): Clean up the strm_base part.
(dir_mark): Mark the strm_base part.
(make_dir_stream): Initialize the strm_base part.
(struct string_in): New structure. Replaces ad-hoc cons
cell used for string input streams.
(string_in_stream_mark): Mark new structure.
(string_in_get_line, string_in_get_char, string_in_unget_char,
string_in_get_prop, string_in_get_error, make_string_input_stream):
Convert to new structure.
(string_in_ops): Switch to stream_destroy_op.
(struct byte_input): Inherit struct strm_base.
(byte_in_stream_destroy): No need to check handle for null.
No need to set handle to null after freeing: gc does it.
Clean up the strm_base part.
(byte_in_ops): Switch to stream_mark_op.
(make_string_byte_input_stream): Initialize the strm_base part.
(struct string_output): Inherit struct strm_base.
(string_out_stream_destroy): No need to check handle for null
since the logic elsewhere has changed.
Clean up the strm_base part.
No need to set handle to null.
(string_out_ops): Switch to stream_mark_op.
(make_string_output_stream): Initialize the strm_base part.
(get_string_from_stream): Don't free the handle.
Null out the buffer so->buf whose ownership passes to the string.
(struct strlist_out): New structure. Replaces ad-hoc cons cell
used for string list output stream.
(strlist_mark): Renamed to strlist_out_mark. Mark the strm_base
part.
(strlist_out_put_string, strlist_out_put_char,
make_strlist_output_stream, get_list_from_stream):
Convert to new structure.
(strlist_out_ops): Switch to stream_destroy_op.
Follow rename of strlist_mark.
(struct cat_strm): New structure, replacing ad-hoc list pointer
Diffstat (limited to 'stream.h')
-rw-r--r-- | stream.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -30,6 +30,12 @@ enum strm_whence { strm_end = SEEK_SET }; +struct strm_base { + unsigned int indent_on; + cnum indent_chars; + cnum column; +}; + struct strm_ops { struct cobj_ops cobj_ops; const wchli_t *name; @@ -78,8 +84,13 @@ extern val format_s; extern val stdin_s, stdout_s, stddebug_s, stderr_s, stdnull_s; +void strm_base_init(struct strm_base *s); +void strm_base_cleanup(struct strm_base *s); +void strm_base_mark(struct strm_base *s); void fill_stream_ops(struct strm_ops *ops); void stream_print_op(val stream, val out); +void stream_mark_op(val stream); +void stream_destroy_op(val stream); val make_null_stream(void); val make_stdio_stream(FILE *, val descr); val make_tail_stream(FILE *, val descr); |