diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-20 05:13:19 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-20 05:13:19 -0700 |
commit | 03213f2aa15930d7336f582238f8abfacf17584a (patch) | |
tree | b06c13268925e3d9f40a45f041b1f6a3d2bfeb6c /stream.c | |
parent | 04575dff348209315fb24e3c809a93343f39783b (diff) | |
download | txr-03213f2aa15930d7336f582238f8abfacf17584a.tar.gz txr-03213f2aa15930d7336f582238f8abfacf17584a.tar.bz2 txr-03213f2aa15930d7336f582238f8abfacf17584a.zip |
read-until-match can optionally keep matched text.
* regex.c (read_until_match): New argument, include_match.
Three times repeated termination code refactored into block
reached by forward goto.
(regex_init): Registration of read-until-match updated.
* regex.h (read_until_match): Declaration updated.
* stream.c (struct record_adapter_base): New member,
include_match.
(record_adapter_get_line): Pass match to read_until_match
as new argument.
(record_adapater): New argument, include_match.
(stream_init): Update registration of record-adapter.
* stream.h (record_adapter): Declaration updated.
* txr.1: Updated.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2325,6 +2325,7 @@ static val make_delegate_stream(val orig_stream, size_t handle_size, struct record_adapter_base { struct delegate_base db; val regex; + val include_match; }; static void record_adapter_base_mark(struct record_adapter_base *rb) @@ -2344,7 +2345,7 @@ static val record_adapter_get_line(val stream) { struct record_adapter_base *rb = coerce(struct record_adapter_base *, stream->co.handle); - return read_until_match(rb->regex, rb->db.target_stream); + return read_until_match(rb->regex, rb->db.target_stream, rb->include_match); } static struct strm_ops record_adapter_ops = @@ -2362,7 +2363,7 @@ static struct strm_ops record_adapter_ops = delegate_get_error, delegate_get_error_str, delegate_clear_error, delegate_get_fd); -val record_adapter(val regex, val stream) +val record_adapter(val regex, val stream, val include_match) { val rec_adapter = make_delegate_stream(default_arg(stream, std_input), sizeof (struct record_adapter_base), @@ -2371,6 +2372,7 @@ val record_adapter(val regex, val stream) rec_adapter->co.handle); rb->regex = regex; + rb->include_match = tnil(include_match); return rec_adapter; } @@ -3847,7 +3849,7 @@ void stream_init(void) reg_fun(intern(lit("cat-streams"), user_package), func_n1(make_catenated_stream)); reg_fun(intern(lit("catenated-stream-p"), user_package), func_n1(catenated_stream_p)); reg_fun(intern(lit("catenated-stream-push"), user_package), func_n2(catenated_stream_push)); - reg_fun(intern(lit("record-adapter"), user_package), func_n2o(record_adapter, 1)); + reg_fun(intern(lit("record-adapter"), user_package), func_n3o(record_adapter, 1)); reg_fun(intern(lit("open-directory"), user_package), func_n1(open_directory)); reg_fun(intern(lit("open-file"), user_package), func_n2o(open_file, 1)); reg_fun(intern(lit("open-fileno"), user_package), func_n2o(open_fileno, 1)); |