summaryrefslogtreecommitdiffstats
path: root/stream.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-06-21 07:28:53 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-06-21 07:28:53 -0700
commitf7942e319816ddff862017112aadc3f14fb73e81 (patch)
treea849aecf81b71ce8d7af46437f23b6797484950c /stream.h
parent8446eac7ee6ecc8b80b0715745b5fd0d56948adc (diff)
downloadtxr-f7942e319816ddff862017112aadc3f14fb73e81.tar.gz
txr-f7942e319816ddff862017112aadc3f14fb73e81.tar.bz2
txr-f7942e319816ddff862017112aadc3f14fb73e81.zip
bugfix: missing gzip support in open-command.
* stream.c (pipe_close_status_helper): New function, factored out of pipe_close and used by it, and also by gzio_close. (pipe_close): Call pipe_close, which now contains the classification of process wait status codes. (open_fileno): Now takes optional pid argument. If this specified, then make_pipevp_stream is used. (open_subprocess): Use the open_fileno function, rather than fopen. This simplifies things too, except that we have to catch exception. Pass pid to the newly added parameter of open_fileno so that we obtain a proper pipe stream that will wait for the process to terminate when closed. (mkstemp_wrap): Pass nil for pid argument of open_fileno. (stream_init): Update registration of open-fileno. * gzio.c (struct gzio_handle): New member, pid. (gzio_close): If there is a nonzero pid, wait for the process to terminate. (make_gzio_stream): Initialize h->pid to zero. (make_gzio_pipe_stream): New function. * parser.c (lino_fdopen): Pass nil for pid argument of open_fileno. * gzio.h (make_gzio_pipe_stream): Declared. * tests/018/gzip.tl: New test.
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/stream.h b/stream.h
index b735dd07..d54da38c 100644
--- a/stream.h
+++ b/stream.h
@@ -182,6 +182,8 @@ val make_tail_stream(FILE *, val descr);
#if !HAVE_FORK_STUFF
val make_pipe_stream(FILE *, val descr);
#endif
+val pipe_close_status_helper(val stream, val throw_on_error,
+ int status, val self);
val stream_fd(val stream);
#if HAVE_SOCKETS
val make_sock_stream(FILE *f, val family, val type);
@@ -246,7 +248,7 @@ struct strm_ctx *get_ctx(val stream);
val get_string(val stream, val nchars, val close_after_p);
val open_directory(val path);
val open_file(val path, val mode_str);
-val open_fileno(val fd, val mode_str);
+val open_fileno(val fd, val mode_str, val pid_opt);
val open_tail(val path, val mode_str, val seek_end_p);
val open_command(val path, val mode_str);
val path_search(val name, val path_in);