summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-09-25 07:06:41 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-09-25 07:06:41 -0700
commit0ad39c713f1d0239abda6cece563c0964a1ea5e0 (patch)
tree75fb44f71fb1cd79f17be1743633175ddcfeed04
parent0720e906157d8e51ada26b2bc81ce26a262c8964 (diff)
downloadtxr-0ad39c713f1d0239abda6cece563c0964a1ea5e0.tar.gz
txr-0ad39c713f1d0239abda6cece563c0964a1ea5e0.tar.bz2
txr-0ad39c713f1d0239abda6cece563c0964a1ea5e0.zip
awk macro: handle dynamic changes in rs variable.
* awk.tl (sys:awk-state loop): The loop now notices when rs or krs changes and switches to a new record-adapter or to the raw stream as necessary. * txr.1: Notes added about changes to rs and krs.
-rw-r--r--share/txr/stdlib/awk.tl48
-rw-r--r--txr.112
2 files changed, 40 insertions, 20 deletions
diff --git a/share/txr/stdlib/awk.tl b/share/txr/stdlib/awk.tl
index eb07cdcc..404c3aab 100644
--- a/share/txr/stdlib/awk.tl
+++ b/share/txr/stdlib/awk.tl
@@ -82,26 +82,34 @@
(inc aws.file-num)
(when beg-file-func
[beg-file-func aws])
- (unwind-protect
- (let* ((stin (if (streamp in) in (open-file in)))
- (recin (if (and (equal aws.rs "\n")
- (not aws.krs))
- stin
- (record-adapter (if (regexp aws.rs)
- aws.rs
- (regex-compile aws.rs))
- stin
- aws.krs))))
- (set aws.file-rec-num 0)
- (whilet ((rec (get-line recin)))
- (set aws.rec rec aws.orig-rec rec)
- (inc aws.rec-num)
- (inc aws.file-rec-num)
- aws.(rec-to-f)
- (block :awk-rec
- [func aws])))
- (when end-file-func
- [end-file-func aws])))))
+ (flet ((get-stream (stin)
+ (if (and (equal aws.rs "\n")
+ (not aws.krs))
+ stin
+ (record-adapter (if (regexp aws.rs)
+ aws.rs
+ (regex-compile aws.rs))
+ stin
+ aws.krs))))
+ (unwind-protect
+ (let* ((stin (if (streamp in) in (open-file in)))
+ (recin (get-stream stin))
+ (noted-rs aws.rs)
+ (noted-krs aws.krs))
+ (set aws.file-rec-num 0)
+ (whilet ((rec (get-line recin)))
+ (set aws.rec rec aws.orig-rec rec)
+ (inc aws.rec-num)
+ (inc aws.file-rec-num)
+ aws.(rec-to-f)
+ (block :awk-rec
+ [func aws])
+ (unless (and (equal noted-rs aws.rs)
+ (eq noted-krs aws.krs))
+ (set recin (get-stream stin))
+ (set noted-rs aws.rs noted-krs aws.krs))))
+ (when end-file-func
+ [end-file-func aws]))))))
(defmeth sys:awk-state prn (self . args)
(cond
diff --git a/txr.1 b/txr.1
index e77dcb03..00822132 100644
--- a/txr.1
+++ b/txr.1
@@ -38563,6 +38563,12 @@ If a match for the record separator occurs at the end of the stream,
it is not considered to delimit an empty record, but acts as the
terminator for the previous record.
+When a new value is assigned to
+.codn rs ,
+it has no effect on the most recently scanned and delimited record which is
+still current, or previous records. The new value applies to the next, not yet
+read record.
+
.coNP Variable @ krs
.desc
The awk variable
@@ -38575,6 +38581,12 @@ by the pattern in the
.code rs
variable is retained as part of the preceding record rather than removed.
+When a new value is assigned to
+.codn krs ,
+it has no effect on the most recently scanned and delimited record which is
+still current, or previous records. The new value applies to the next, not yet
+read record.
+
.coNP Variables @ fs and @ ft
.desc
The awk variable