diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-03-14 22:00:51 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-03-14 22:00:51 -0700 |
commit | 56da0c3895ae502a6e17064a8e3ad588694ae910 (patch) | |
tree | 590143197eb2c2d1f73cf700389047cec2bd358a /match.c | |
parent | 60ac365c8dbfce9f481fbfe58d4baae70df889b4 (diff) | |
download | txr-56da0c3895ae502a6e17064a8e3ad588694ae910.tar.gz txr-56da0c3895ae502a6e17064a8e3ad588694ae910.tar.bz2 txr-56da0c3895ae502a6e17064a8e3ad588694ae910.zip |
@(output)_destination can be a stream.
* match.c (complex_open): If name is a stream object, just
return it.
(v_output): Do not close the output stream if it came
from a destination expression specifying an existing
stream, and thus wasn't created inside complex_open.
* txr.1: Document stream destination in output directive.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 46 |
1 files changed, 25 insertions, 21 deletions
@@ -1538,33 +1538,37 @@ static val txeval_allow_ub(val spec, val form, val bindings) static val complex_open(val name, val output, val append, val nothrow) { - val fc = car(name); - val result = nil; + if (streamp(name)) { + return name; + } else { + val fc = car(name); + val result = nil; - if (fc == chr('$') && output) - uw_throwf(query_error_s, lit("cannot output to directory: ~a"), - name, nao); + if (fc == chr('$') && output) + uw_throwf(query_error_s, lit("cannot output to directory: ~a"), + name, nao); - uw_catch_begin (if2(nothrow, cons(error_s, nil)), exc_sym, exc); + uw_catch_begin (if2(nothrow, cons(error_s, nil)), exc_sym, exc); - if (fc == chr('-')) { - result = output ? std_output : std_input; - } else if (fc == chr('!')) { - result = open_command(cdr(name), output ? lit("w") : lit("r")); - } else if (fc == chr('$')) { - result = open_directory(cdr(name)); - } else { - result = open_file(name, - output ? append ? lit("a") : lit("w") : lit("r")); - } + if (fc == chr('-')) { + result = output ? std_output : std_input; + } else if (fc == chr('!')) { + result = open_command(cdr(name), output ? lit("w") : lit("r")); + } else if (fc == chr('$')) { + result = open_directory(cdr(name)); + } else { + result = open_file(name, + output ? append ? lit("a") : lit("w") : lit("r")); + } - uw_catch (exc_sym, exc) { (void) exc; } + uw_catch (exc_sym, exc) { (void) exc; } - uw_unwind { } + uw_unwind { } - uw_catch_end; + uw_catch_end; - return result; + return result; + } } static val robust_length(val obj) @@ -3245,7 +3249,7 @@ static val v_output(match_files_ctx *c) if (named_var) c->bindings = acons(named_var, stream, c->bindings); - else + else if (!streamp(dest)) close_stream(stream, t); } |