summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-02-26 22:42:09 -0800
committerKaz Kylheku <kaz@kylheku.com>2016-02-26 22:42:09 -0800
commit4f14d3a2ded6137c5dd6449f4ec2d566947c4157 (patch)
tree549a19452aa66c2b60b1529333b82007ed3127ca /stream.c
parent875c0c2d16fbcaa61bfc46da58533ab0890bf513 (diff)
downloadtxr-4f14d3a2ded6137c5dd6449f4ec2d566947c4157.tar.gz
txr-4f14d3a2ded6137c5dd6449f4ec2d566947c4157.tar.bz2
txr-4f14d3a2ded6137c5dd6449f4ec2d566947c4157.zip
Place C standard I/O based streams into subtype.
* lib.c (subtypep): Handle subtype check here between stream and stdio-stream as a special case, since streams aren't structures related by inheritance, but built-ins. (class_check): If the type of obj doesn't match the class exactly, use a subtypep check. We need this because stream functions use this check, and stdio streams are not of the stream type now. * stream.c (stdio_stream_s): New global symbol variable. (make_stdio_stream_common): Use stdio_stream_s symbol for the type of stdio streams. (stream_init): Intern the stdio-stream symbol, and store in stdio_stream_s variable. (streamp): Replace exact check with typep. * stream.h (stdio_stream_s): Declared.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/stream.c b/stream.c
index 7d35e7e1..2fd6b301 100644
--- a/stream.c
+++ b/stream.c
@@ -71,6 +71,8 @@ val from_start_k, from_current_k, from_end_k;
val real_time_k, name_k, fd_k;
val format_s;
+val stdio_stream_s;
+
void strm_base_init(struct strm_base *s)
{
static struct strm_base init = { indent_off, 60, 10, 0, 0 };
@@ -1106,7 +1108,7 @@ static val set_mode_props(const struct stdio_mode m, val stream)
static val make_stdio_stream_common(FILE *f, val descr, struct cobj_ops *ops)
{
struct stdio_handle *h = coerce(struct stdio_handle *, chk_malloc(sizeof *h));
- val stream = cobj(coerce(mem_t *, h), stream_s, ops);
+ val stream = cobj(coerce(mem_t *, h), stdio_stream_s, ops);
strm_base_init(&h->a);
h->f = f;
h->descr = descr;
@@ -2096,7 +2098,7 @@ val record_adapter(val regex, val stream)
val streamp(val obj)
{
- return typeof(obj) == stream_s ? t : nil;
+ return typep(obj, stream_s);
}
val stream_set_prop(val stream, val ind, val prop)
@@ -3482,6 +3484,7 @@ void stream_init(void)
name_k = intern(lit("name"), keyword_package);
fd_k = intern(lit("fd"), keyword_package);
format_s = intern(lit("format"), user_package);
+ stdio_stream_s = intern(lit("stdio-stream"), user_package);
reg_var(stdin_s = intern(lit("*stdin*"), user_package),
make_stdio_stream(stdin, lit("stdin")));