-
Notifications
You must be signed in to change notification settings - Fork 5
/
clawk.lisp
1312 lines (1137 loc) · 41.2 KB
/
clawk.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CLAWK; Base: 10 -*-
(in-package :CLAWK)
;;;
;;; change the #/.../ readmacro to generate a regex-matcher object,
;;; and use the make-load-form function to define the loader and initializer
;;;
;;;
;;; reader macro for #/.../ regex symbols
;;;
(defun |#/-reader| (strm subchar arg)
(declare (ignore subchar arg))
(let ((symname ""))
(loop
(let ((c (read-char strm)))
(cond ((char= c #\/)
(return-from |#/-reader|
(list 'quote (intern symname *package*))))
((char= c #\\)
(let ((c2 (read-char strm)))
(cond ((char= c2 #\/)
(setq symname (concatenate 'string symname (string #\/))))
((or (char= c2 #\n) (char= c2 #\N)
(char= c2 #\r) (char= c2 #\R)
(char= c2 #\t) (char= c2 #\T))
(setq symname (concatenate 'string symname (string c) (string c2))))
((digit-char-p c2)
(setq symname (concatenate 'string symname (string c) (string c2))))
(t (setq symname (concatenate 'string symname (string c2)))))))
((or (char= c #\Return) (char= c #\Newline))
(error "Unterminated regular expression: #/~S" symname))
(t (setq symname (concatenate 'string symname (string c)))))))))
(defun install-regex-syntax ()
(set-dispatch-macro-character #\# #\/ #'|#/-reader|)
t)
#-:Symbolics
(progn
(defun |#`-reader| (strm subchar arg)
(declare (ignore subchar arg))
(let ((cmdname-strm (make-string-output-stream)))
(loop
(let ((c (read-char strm)))
(cond ((char= c #\`)
(return-from |#`-reader| `(call-system-catching-output ,(get-output-stream-string cmdname-strm))))
((char= c #\\)
(let ((c2 (read-char strm)))
(cond ((char= c2 #\`)
(princ c2 cmdname-strm))
(t (princ c cmdname-strm)
(princ c2 cmdname-strm)))))
((or (char= c #\Return) (char= c #\Newline))
(error "Unterminated shell command: #`~S" (get-output-stream-string cmdname-strm)))
(t (princ c cmdname-strm)))))))
(defun install-cmd-syntax ()
(set-dispatch-macro-character #\# #\` #'|#`-reader|)
t)
)
;(defun test ()
; (for-stream-lines (#`command.com /c dir`)
; ($print *FNR* " " $0)))
#+:Lispworks
(progn
(defun call-system-catching-output (cmd)
(let ((cmd-output (make-string-output-stream)))
(sys:call-system-showing-output cmd
:prefix ""
:output-stream cmd-output
:wait t
:show-cmd nil)
(make-string-input-stream (get-output-stream-string cmd-output))))
(defun get-shell-pgm ()
(or (lispworks:environment-variable "COMSPEC")
(lispworks:environment-variable "SHELL")
(lispworks:environment-variable "shell")))
)
(defgeneric get-matcher-for-pattern (pattern))
(defmethod get-matcher-for-pattern ((pattern symbol))
(let ((matcher (get pattern 'regex-matcher)))
(if matcher
matcher
(let ((matcher (compile-str (symbol-name pattern))))
(if matcher
(setf (get pattern 'regex-matcher) matcher))
matcher))))
(defmethod get-matcher-for-pattern ((pattern string))
(compile-str pattern))
(defmethod get-matcher-for-pattern ((pattern matcher))
pattern)
(defvar *CURFILE*)
(defvar *CURLINE* "")
(defvar *FS-IS-WS* t)
(regex::define-constant +WS-FIELDSEP-PAT+ "[ \\t]+")
(defvar *FS* +WS-FIELDSEP-PAT+)
(defvar *RSTART* 0)
(defvar *RLENGTH* 0)
(defvar *REND* 0)
(defvar *REGS* (make-array 0))
(defvar *FIELDS* (make-array 0))
(defvar *NR* 0) ; total num recs read
(defvar *FNR* 0) ; num recs read in current file
(defvar *NF* 0) ; number of fields in current record
(defvar *SUBSEP* (string (code-char #o34)))
(defvar *OFS* " ")
(defvar *ORS* "\n")
(defvar *LAST-SUCCESSFUL-MATCH*)
(define-symbol-macro $0 *curline*)
(define-symbol-macro $1 ($n 1))
(define-symbol-macro $2 ($n 2))
(define-symbol-macro $3 ($n 3))
(define-symbol-macro $4 ($n 4))
(define-symbol-macro $5 ($n 5))
(define-symbol-macro $6 ($n 6))
(define-symbol-macro $7 ($n 7))
(define-symbol-macro $8 ($n 8))
(define-symbol-macro $9 ($n 9))
(define-symbol-macro $10 ($n 10))
(define-symbol-macro $11 ($n 11))
(define-symbol-macro $12 ($n 12))
(define-symbol-macro $13 ($n 13))
(define-symbol-macro $14 ($n 14))
(define-symbol-macro $15 ($n 15))
(define-symbol-macro $16 ($n 16))
(define-symbol-macro $17 ($n 17))
(define-symbol-macro $18 ($n 18))
(define-symbol-macro $19 ($n 19))
(define-symbol-macro $20 ($n 20))
(define-symbol-macro $NF ($n *NF*))
(define-symbol-macro $#0 ($#n 0))
(define-symbol-macro $#1 ($#n 1))
(define-symbol-macro $#2 ($#n 2))
(define-symbol-macro $#3 ($#n 3))
(define-symbol-macro $#4 ($#n 4))
(define-symbol-macro $#5 ($#n 5))
(define-symbol-macro $#6 ($#n 6))
(define-symbol-macro $#7 ($#n 7))
(define-symbol-macro $#8 ($#n 8))
(define-symbol-macro $#9 ($#n 9))
(define-symbol-macro $#10 ($#n 10))
(define-symbol-macro $#11 ($#n 11))
(define-symbol-macro $#12 ($#n 12))
(define-symbol-macro $#13 ($#n 13))
(define-symbol-macro $#14 ($#n 14))
(define-symbol-macro $#15 ($#n 15))
(define-symbol-macro $#16 ($#n 16))
(define-symbol-macro $#17 ($#n 17))
(define-symbol-macro $#18 ($#n 18))
(define-symbol-macro $#19 ($#n 19))
(define-symbol-macro $#20 ($#n 20))
(define-symbol-macro $#NF ($#n *NF*))
(define-symbol-macro %0 (%n 0))
(define-symbol-macro %1 (%n 1))
(define-symbol-macro %2 (%n 2))
(define-symbol-macro %3 (%n 3))
(define-symbol-macro %4 (%n 4))
(define-symbol-macro %5 (%n 5))
(define-symbol-macro %6 (%n 6))
(define-symbol-macro %7 (%n 7))
(define-symbol-macro %8 (%n 8))
(define-symbol-macro %9 (%n 9))
(define-symbol-macro %10 (%n 10))
(define-symbol-macro %11 (%n 11))
(define-symbol-macro %12 (%n 12))
(define-symbol-macro %13 (%n 13))
(define-symbol-macro %14 (%n 14))
(define-symbol-macro %15 (%n 15))
(define-symbol-macro %16 (%n 16))
(define-symbol-macro %17 (%n 17))
(define-symbol-macro %18 (%n 18))
(define-symbol-macro %19 (%n 19))
(define-symbol-macro %20 (%n 20))
(define-symbol-macro %#0 (%#n 0))
(define-symbol-macro %#1 (%#n 1))
(define-symbol-macro %#2 (%#n 2))
(define-symbol-macro %#3 (%#n 3))
(define-symbol-macro %#4 (%#n 4))
(define-symbol-macro %#5 (%#n 5))
(define-symbol-macro %#6 (%#n 6))
(define-symbol-macro %#7 (%#n 7))
(define-symbol-macro %#8 (%#n 8))
(define-symbol-macro %#9 (%#n 9))
(define-symbol-macro %#10 (%#n 10))
(define-symbol-macro %#11 (%#n 11))
(define-symbol-macro %#12 (%#n 12))
(define-symbol-macro %#13 (%#n 13))
(define-symbol-macro %#14 (%#n 14))
(define-symbol-macro %#15 (%#n 15))
(define-symbol-macro %#16 (%#n 16))
(define-symbol-macro %#17 (%#n 17))
(define-symbol-macro %#18 (%#n 18))
(define-symbol-macro %#19 (%#n 19))
(define-symbol-macro %#20 (%#n 20))
(defun FS ()
(when (stringp *FS*)
(if (string= *FS* +WS-FIELDSEP-PAT+)
(setq *FS-IS-WS* t)
(setq *FS-IS-WS* nil))
(setq *FS* (get-matcher-for-pattern *FS*)))
*FS*)
;;;
;;; STR
;;;
(defgeneric str (x))
(defmethod str ((x string))
x)
(defmethod str ((x (eql nil)))
"")
(defmethod str ((x number))
(format nil "~D" x))
;;;
;;; NUM
;;;
(defgeneric num (x))
(defmethod num ((x number))
x)
(defmethod num ((x (eql nil)))
0)
(defmethod num ((x string))
(let ((val (read (make-string-input-stream x))))
(if (numberp val)
val
0)))
;;;
;;; INT
;;;
(defgeneric int (x))
(defmethod int ((x integer))
x)
(defmethod int ((x number))
(round x))
(defmethod int ((x (eql nil)))
0)
(defmethod int ((x string))
(let ((val (read (make-string-input-stream x) nil 0)))
(if (numberp val)
(round val)
0)))
;;;
;;; SUB
;;;
;;; Substitute the first occurrence of pattern.
;;;
(defun sub (pattern replacement &optional (source *CURLINE*))
"Replace the first occurrence of pattern in the source string."
(let ((matcher (get-matcher-for-pattern pattern))
(srclen (length source)))
(multiple-value-bind (matchedp matchstart matchlen)
(regex:scan-str matcher source :start 0 :length srclen)
(if matchedp
(concatenate 'string (subseq source 0 matchstart)
replacement
(subseq source (+ matchstart matchlen) srclen))
source))))
(defun $sub (pattern replacement &optional (source *CURLINE*))
"Replace the first occurrence of pattern in the source string.
Coerces its arguments to the appropriate type."
(sub pattern (str replacement) (str source)))
;;;
;;; GSUB
;;;
;;; Globally substitute all occurrences of pattern.
;;;
(defun gsub (pattern replacement &optional (source *CURLINE*))
"Replace all occurrences of pattern in the source string."
(let* ((matcher (get-matcher-for-pattern pattern))
(total-len (length source))
(len-remaining total-len)
(new-string "")
(matchedp t)
(prior-end 0)
(match-start 0)
(match-len 0))
(loop
(multiple-value-setq (matchedp match-start match-len)
(regex:scan-str matcher source :start match-start :length len-remaining))
(if matchedp
(setf new-string (concatenate 'string new-string
(subseq source prior-end match-start)
replacement)
prior-end (+ match-start match-len)
match-start prior-end
len-remaining (- total-len match-start))
(return-from gsub
(concatenate 'string
new-string
(subseq source prior-end total-len)))))))
(defun $gsub (pattern replacement &optional (source *CURLINE*))
"Replaces all occurrences of pattern in the source string.
Coerces its arguments to the appropriate type."
(gsub pattern (str replacement) (str source)))
;;;
;;; SPLIT
;;;
;;; Splits a string up based on an optional field separator pattern
;;; (uses *FS* as a default). If no string is supplied, it will split
;;; *CURLINE* and set *FIELDS* and the various $n variables.
;;;
(defun split (&optional (source nil not-splitting-curline)
(fieldsep-pattern (FS))
include-empty-leading-and-trailing-fields)
"Split a string up into a list of multiple fields based on
the field-separator pattern."
(let ((push-empty-leading-and-trailing-segments
(or include-empty-leading-and-trailing-fields
(not *fs-is-ws*)
(not (and (stringp fieldsep-pattern) (string= fieldsep-pattern +WS-FIELDSEP-PAT+))))))
(when (or (null source) (eq source *CURLINE*))
(setf source *CURLINE*
not-splitting-curline nil))
(let* ((fieldsep-matcher (get-matcher-for-pattern fieldsep-pattern))
(fields nil)
(total-len (length source))
(len-remaining (length source))
(matchedp t)
(prior-end 0)
(match-start 0)
(match-len 0))
(loop
(multiple-value-setq (matchedp match-start match-len)
(regex:scan-str fieldsep-matcher source :start match-start :length len-remaining))
(cond (matchedp
;; don't push an empty string if the first thing we
;; find is a separator
(when (or push-empty-leading-and-trailing-segments (> match-start 0))
(push (subseq source prior-end match-start)
fields))
;; now step over this match and continue splitting
(setf prior-end (+ match-start match-len)
match-start prior-end
len-remaining (- total-len match-start)) )
(t
;; only push an string if we're not at the end.
(when (or push-empty-leading-and-trailing-segments (< prior-end total-len))
(push (subseq source prior-end match-len) fields))
(setf fields (nreverse fields))
(unless not-splitting-curline
(setf *FIELDS* (make-array (length fields) :initial-contents fields)))
(return-from split fields)))))) )
(defun $split (&optional (source nil source-supplied-p) (fieldsep-pattern (FS)))
"Split a string up into a list of multiple fields based on
the field-separator pattern. Coerces its arguments to the appropriate type."
(split (if (and source source-supplied-p) (str source) source)
fieldsep-pattern))
;;;
;;; MATCH
;;;
;;; Searches for the first occurrence of a pattern in a string.
;;; Takes an optional offset. If successful, sets *RSTART*,
;;; *RLENGTH*, *REND*, and *REGS*.
;;;
(defun match (source pattern &optional (start 0))
"Scan for first occurrence of a pattern within the source string."
(let ((matcher (get-matcher-for-pattern pattern)))
(multiple-value-bind (matchedp start len regs)
(regex:scan-str matcher source :start start :length (- (length source) start)
:start-is-anchor t :end-is-anchor t)
(when matchedp
(setf *RSTART* start
*RLENGTH* len
*REND* (+ start len)
*REGS* regs
*LAST-SUCCESSFUL-MATCH* source))
matchedp)))
(defun $match (source pattern &optional (start 0))
"Scan for first occurrence of a pattern within the source string.
Coerces its arguments to the appropriate type."
(match (str source) pattern (int start)))
;;;
;;; INDEX
;;;
;;; Searches for the first occurrence of a substring within a string.
;;; Takes an optional offset.
;;;
(declaim (inline index))
(defun index (pat str &optional (start 0))
(search pat str :start2 start))
(defun $index (pat str &optional (start 0))
(index (str pat) (str str) (int start)))
;;;
;;; SUBSTR
;;;
;;; Extract a substring. Like subseq, but takes length instead of end.
;;;
(declaim (inline substr))
(defun substr (str start len)
(subseq str start (+ start len)))
(defun $substr (str start len)
(substr (str str) (int start) (int len)))
;;;
;;; ~ !~ /~
;;;
;;; test if string contains the pattern
;;;
(defgeneric ~ (str pat)
(:documentation "Test if pattern matches the string."))
(defmethod ~ ((str string) (matcher matcher))
(multiple-value-bind (matchedp)
(regex:scan-str matcher str
:start 0 :length (length str)
:start-is-anchor t :end-is-anchor t)
matchedp))
(defmethod ~ ((str string) pat)
(~ str (get-matcher-for-pattern pat)))
(defmethod ~ ((matcher matcher) (str string))
(~ str matcher))
(defmethod ~ ((pat symbol) (str string))
(~ str (get-matcher-for-pattern pat)))
(declaim (inline /~))
(defun /~ (str pat)
"Test if pattern isn't present in the string."
(not (~ str pat)))
(declaim (inline !~))
(defun !~ (str pat)
"Test if pattern isn't present in the string."
(/~ pat str))
;;;
;;; WITH-PATTERNS
;;;
(defmacro with-patterns (pats &rest body)
"Execute the body in an environment that includes the compiled patterns
bound to their respective variables."
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-with-patterns pats `(progn ,@body)))
#+:Lispworks (editor:setup-indent "with-patterns" 1 2 6)
(defun expand-with-pattern (var strpat body)
`(let ((,var (get-matcher-for-pattern ,strpat)))
(when ,var
(locally
(declare (type matcher ,var))
,body))) )
(defun expand-with-patterns (pats body)
(if pats
(expand-with-pattern (caar pats) (cadar pats)
(expand-with-patterns (cdr pats) body))
body))
;;;
;;; WITH-FIELDS
;;;
;;; Allows stuff like
;;; (with-fields ((a b c d &rest rest) str)
;;; ($print "Fields:" a b c d "Rest: " rest))
;;;
;;; as well as the slightly more awk-ish
;;; (with-fields (nil str)
;;; ($print "Fields:" $1 $2 $3 $4))
;;; which splits STR into the $ vars,
;;;
;;; or even
;;; (with-fields ()
;;; ($print "Fields:" $1 $2 $3 $4))
;;; which will split the current line into the $ vars.
;;;
(defmacro with-fields ((&optional fields sourcestr (fieldsep-pattern '(FS))) &rest body)
"Split the source string into fields based on the field separator,
bind the field array to the fields variable."
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-with-fields fields sourcestr fieldsep-pattern body))
#+:Lispworks (editor:setup-indent "with-fields" 1 2 6)
(defun expand-with-fields (fields sourcestr fieldsep-pattern body)
(let ((tmp-splits (gensym)))
(if (null fields)
`(let (*FIELDS*)
(let* ((,tmp-splits (split ,sourcestr ,fieldsep-pattern))
(*NF* (length ,tmp-splits)))
,@body))
`(let* ((,tmp-splits (split ,sourcestr ,fieldsep-pattern))
(*NF* (length ,tmp-splits)))
(declare (special *NF*))
(destructuring-bind ,fields ,tmp-splits
,@body)))))
;;;
;;; $
;;;
;;; Field access to a computed field
;;;
(defun $n (n)
"Access a field."
(let ((n (int n)))
(cond ((zerop n) *CURLINE*)
((and (>= n 0) (<= n (array-dimension *FIELDS* 0)))
(aref *FIELDS* (1- n))))))
(defsetf $n (n) (val)
(let ((tmpvar (gensym)))
`(let ((,tmpvar (int ,n)))
(cond ((zerop ,tmpvar) (setf *CURLINE* ,val))
((and (>= ,tmpvar 0) (<= ,tmpvar (array-dimension *FIELDS* 0)))
(setf (aref *FIELDS* (1- ,tmpvar)) ,val))))))
(declaim (inline $#n))
(defun $#n (n)
"Access a field, as a number."
(num ($n n)))
(defsetf $#n (n) (val)
`(setf ($n ,n) (str ,val)))
;;;
;;; WITH-SUBMATCHES
;;;
;;; Allows stuff like
;;; (with-submatches (a b c d)
;;; ($print "Regs:" a b c d))
;;;
;;; which is handy in match-case clauses
;;;
(defmacro with-submatches (&optional fields &rest body)
"Bind the submatch variables to the corresponding strings from the registers array."
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-with-submatches fields body))
#+:Lispworks (editor:setup-indent "with-submatches" 1 2 6)
(defun expand-with-submatches (fields body)
(if fields
`(destructuring-bind ,fields
(make-register-list *LAST-SUCCESSFUL-MATCH* *REGS*)
,@body)
`(progn ,@body)))
;;;
;;; IF-MATCH
;;;
;;; Allows stuff like
;;; (if-match ("a*b" str)
;;; ($print "Regs:" %0 %1 %2 %3 %4)
;;; ($print "No match")
;;;
(defmacro if-match ((pat str &optional (pos 0)) consequent alternative)
"Match the pattern to the string, and if it matches, bind the
*RSTART*, *RLENGTH*, and *REGS* and evaluate the consequent,
otherwise evaluate the alternative."
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-if-match pat str pos consequent alternative))
#+:Lispworks (editor:setup-indent "if-match" 2 2 4)
#-:Symbolics
(progn
(defmacro once-only (variables &rest body)
"Returns the code built by BODY. If any of VARIABLES
might have side effects, they are evaluated once and stored
in temporary variables that are then passed to BODY."
(assert (every #'symbolp variables))
(let ((temps (loop repeat (length variables) collect (gensym))))
`(if (every #'side-effect-free-p (list ,@variables))
(progn ,@body)
(list 'let
,`(list ,@(mapcar #'(lambda (tmp var)
`(list ',tmp ,var))
temps variables))
(let ,(mapcar #'(lambda (var tmp) `(,var ',tmp))
variables temps)
,@body)))))
(defun side-effect-free-p (exp)
"Is EXP a constant, variable, or function,
or of the form (THE type x) where x is side-effect-free."
(or (constantp exp) (atom exp)
(and (starts-with exp 'the)
(side-effect-free-p (third exp)))))
(defun starts-with (lst x)
(and (consp lst) (eq (first lst) x)))
)
(defun expand-if-match (pat str pos consequent alternative)
(once-only (str pos)
`(multiple-value-bind (matchedp *RSTART* *RLENGTH* *REGS*)
(regex:match-str (get-matcher-for-pattern ,pat)
,str :start ,pos)
(if matchedp
(let ((*last-successful-match* ,str))
,consequent)
,alternative))))
;;;
;;; WITH-MATCH
;;;
;;; Allows stuff like
;;; (with-match ((a b c d &rest rest) pat str)
;;; ($print "Regs:" a b c d "Rest: " rest))
;;;
;;; as well as the slightly less readable
;;; (with-match (nil pat str)
;;; ($print "Regs:" %1 %2 %3 %4))
;;; which matches pat against str, and loads the submatches into the % vars,
;;;
;;; or even
;;; (with-match (nil pat)
;;; ($print "Fields:" %1 %2 %3 %4))
;;; which will split the current line into the % vars.
(defmacro with-match ((&optional fields pat sourcestr) &rest body)
"Split the source string into registers based on the pattern,
bind the register variables to the registers array."
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-with-match pat fields sourcestr body))
#+:Lispworks (editor:setup-indent "with-match" 1 2 6)
(defun expand-with-match (pat fields sourcestr body)
(cond ((and pat fields)
`(when (match (or ,sourcestr *CURLINE*) ,pat)
(destructuring-bind ,fields (make-register-list *LAST-SUCCESSFUL-MATCH* *REGS*)
,@body)))
((and pat (null fields))
`(let (*LAST-SUCCESSFUL-MATCH* *REGS*)
(declare (special *LAST-SUCCESSFUL-MATCH* *REGS*))
(when (match (or ,sourcestr *CURLINE*) ,pat)
,@body)))
((and (null pat) fields (null sourcestr))
`(destructuring-bind ,fields
(make-register-list *LAST-SUCCESSFUL-MATCH* *REGS*)
,@body))
((and (null pat) (null fields) sourcestr)
(error "WITH-MATCH requires a pattern to match the string ~A against" sourcestr))
((and (null pat) (null fields) (null sourcestr))
`(progn ,@body))))
(defun make-register-list (str regs)
(let ((nregs (array-dimension regs 0)))
(loop for i from 0 below nregs
collect (get-reg-str str regs i))))
;;;
;;; %
;;;
;;; Register access
;;;
(defun get-reg-str (str regs n)
"Access a register."
(let ((rstart (register-start regs n))
(rend (register-end regs n)))
(if (and (numberp rstart) (numberp rend))
(subseq str rstart rend))))
(defun %n (n)
"Access a register."
(let ((n (int n)))
(if (and (stringp *LAST-SUCCESSFUL-MATCH*) (< n (array-dimension *REGS* 0)) (>= n 0))
(get-reg-str *LAST-SUCCESSFUL-MATCH* *REGS* n))))
;;;
;;; MATCH-CASE
;;;
;;; Allows stuff like:
;;; (match-case str
;;; (#/foo/ (format t "foo"))
;;; (#/bar/ (format t "bar"))
;;; ((#/baz/ #/qux/) (format t "either baz or qux"))
;;; (else (format t "unknown")))
;;;
;;; The matches are done by MATCH, so the various special variables are set
;;; appropriately
;;;
(defmacro match-case (strexpr &rest clauses)
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-match-case strexpr clauses))
#+:Lispworks (editor:setup-indent "match-case" 1 2 6)
(defun expand-match-case (strexpr clauses)
(let ((tmpstrsym (gensym)))
`(let ((,tmpstrsym ,strexpr))
,(expand-match-case-clauses tmpstrsym clauses))))
(defun expand-match-case-clauses (strexpr clauses)
(if clauses
(let ((clause (first clauses))
(other-clauses (rest clauses)))
(cond ((member (car clause) '(t else otherwise))
`(progn ,@(rest clause)))
((atom (car clause))
`(if (match ,strexpr ,(car clause))
(progn ,@(cdr clause))
,(expand-match-case-clauses strexpr other-clauses)))
(t `(if (or ,@(mapcar #'(lambda (x) `(,strexpr match ,x)) clause))
(progn ,@(cdr clause))
,(expand-match-case-clauses strexpr other-clauses)))))
`()))
;;;
;;; MATCH-WHEN
;;;
;;; Takes a set of clauses that correspond to the AWK toplevel forms,
;;; but just evaluates the clauses (BEGIN clause first, then pattern
;;; clauses, then END clause), without any looping.
;;;
(defmacro match-when (&rest clauses)
#+:Symbolics (declare (zwei:indentation 1 1))
(let ((docs-and-decs (extract-docs-and-decs clauses))
(begin-clauses (extract-begin-clauses clauses))
(end-clauses (extract-end-clauses clauses))
(pattern-clauses (extract-pattern-clauses clauses)))
`(locally ,@docs-and-decs
(progn ,@(mapcan #'rest begin-clauses)
,@(mapcar #'expand-match-when-clause pattern-clauses)
,@(mapcar #'rest end-clauses)))))
#+:Lispworks (editor:setup-indent "match-when" 0 2)
(defun is-special-clause (clause type)
(and (listp clause)
(symbolp (first clause))
(string-equal (symbol-name (first clause)) type)))
(defun extract-docs-and-decs (clauses)
(loop for clause in clauses
while (or (stringp clause) (is-special-clause clause "DECLARE"))
collect clause))
(defun extract-begin-clauses (clauses)
(loop for clause in clauses
when (is-special-clause clause "BEGIN")
collect clause))
(defun extract-end-clauses (clauses)
(loop for clause in clauses
when (is-special-clause clause "END")
collect clause))
(defun extract-pattern-clauses (clauses)
(loop for clause in clauses
unless (or (not (listp clause))
(is-special-clause clause "BEGIN")
(is-special-clause clause "END")
(is-special-clause clause "DECLARE"))
collect clause))
;
; (t . body) --> (progn . body)
; (nil . body) --> (progn . body)
; ((quote sym) . body) --> (when (match *CURLINE* (quote sym)) . body)
; (stringlit . body) --> (when (match *CURLINE* stringlit) . body)
; (form . body) --> (when form . body)
;
(defun expand-match-when-clause (clause)
(cond ((null clause) nil)
((stringp (first clause))
`(when (match *CURLINE* ,(first clause))
,@(expand-match-when-consequent (rest clause))))
((member (first clause) '("t" "always") :test #'symbol-name-eq)
(rest clause))
((atom (first clause))
`(when ,(first clause)
,@(expand-match-when-consequent (rest clause))))
(t (let ((condition (first clause))
(consequents (rest clause)))
(if (eq (first condition) 'quote)
`(when (match *CURLINE* ,condition)
,@(expand-match-when-consequent consequents))
`(when ,condition
,@(expand-match-when-consequent consequents)))))))
; provide the default action if one isn't present
(defun expand-match-when-consequent (consequent)
(if consequent
consequent
'(($print *CURLINE*))))
; sym-name-eq
(defun symbol-name-eq (x y)
(if (symbolp x)
(if (symbolp y)
(string= (symbol-name x) (symbol-name y))
(if (stringp y)
(string= (symbol-name x) y)))
(if (stringp x)
(if (symbolp y)
(string= x (symbol-name y))
(if (stringp y)
(string= x y))))))
;;;
;;; FOR-STREAM-LINES
;;;
;;; Iterate the body over the lines of the stream. Don't split the
;;; lines, but keep the current line in both *CURLINE* and $0.
;;;
(defmacro for-stream-lines ((stream &optional (strmvar (gensym))
(linevar (gensym)))
&rest body)
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-for-stream-lines strmvar linevar stream body))
#+:Lispworks (editor:setup-indent "for-stream-lines" 1 2 6)
(defun expand-for-stream-lines (streamvar linevar stream body
&aux (nextlbl (gensym)))
`(let ((,streamvar ,stream))
(when (eq ,streamvar 't)
(setq ,streamvar *standard-input*))
(unless (null ,streamvar)
(let ((*CURFILE* nil)
(*CURLINE* "")
(*FNR* -1))
(macrolet ((next () (list 'throw ',nextlbl nil)))
(prog ,(if (eq linevar '*CURLINE*) nil (list linevar))
,nextlbl
(setq ,linevar (read-line ,streamvar nil :eof))
(unless (eq ,linevar :eof)
(setq *CURLINE* ,linevar
$0 ,linevar)
(incf *NR*)
(incf *FNR*)
(catch ',nextlbl
,@body)
(go ,nextlbl))))))))
;;;
;;; FOR-FILE-LINES
;;;
;;; Iterate the body over the lines of the file. Don't split the
;;; lines, but keep the current line in both *CURLINE* and $0.
;;;
;;; Need to do this with prog or labels, and macrolet (next) to jump to
;;; the read-next-line logic.
;;;
(defmacro for-file-lines ((path &optional (streamvar (gensym))
(linevar (gensym)))
&rest body)
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-for-file-lines streamvar linevar path body))
#+:Lispworks (editor:setup-indent "for-file-lines" 1 2 6)
(defun expand-for-file-lines (streamvar linevar path body)
`(with-open-file (,streamvar ,path
:direction :input
:element-type 'character
:if-does-not-exist :error)
,(expand-for-stream-lines streamvar linevar streamvar body)))
;;;
;;; FOR-STREAM-FIELDS
;;;
;;; Iterate the body over the lines of the stream. Split the lines
;;; based on *FS*. Depending on what fieldspec you provide, the
;;; various $n vars may or may not be set (except for $0, which is the
;;; current line).
;;;
;;; As a special case, the value 't will use *standard-input* as the stream.
;;;
(defmacro for-stream-fields ((stream &optional fieldspec
(strmvar (gensym))
(linevar (gensym)))
&rest body)
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-for-stream-fields strmvar linevar fieldspec stream body))
#+:Lispworks (editor:setup-indent "for-stream-fields" 1 2 6)
(defun expand-for-stream-fields (strmvar linevar fieldspec stream body
&key (curfile-name stream curfile-name-p)
&aux (nextlbl (gensym)))
`(let ((,strmvar ,stream))
(if (eq ,strmvar 't)
(setq ,strmvar *standard-input*))
(unless (null ,strmvar)
(let (,@(if curfile-name-p `((*CURFILE* ,curfile-name)))
(*CURLINE* "")
(*FNR* -1))
(macrolet ((next () (list 'throw ',nextlbl nil)))
(prog ,(if (eq linevar '*CURLINE*) nil (list linevar))
,nextlbl
(setq ,linevar (read-line ,strmvar nil :eof))
(unless (eq ,linevar :eof)
(setq *CURLINE* ,linevar
$0 ,linevar)
(incf *NR*)
(incf *FNR*)
(catch ',nextlbl
,(expand-with-fields fieldspec linevar '*FS* body))
(go ,nextlbl))))))))
;;;
;;; FOR-FILE-FIELDS
;;;
;;; Open the filepath, then iterate the body over the lines. Split the lines
;;; based on *FS*. Depending on what fieldspec you provide, the various $n vars
;;; may or may not be set (except for $0, which is the current line).
;;;
(defmacro for-file-fields ((path &optional fieldspec
(strmvar (gensym))
(linevar (gensym)))
&rest body)
#+:Symbolics (declare (zwei:indentation 1 1))
(expand-for-file-fields strmvar linevar fieldspec path body))
#+:Lispworks (editor:setup-indent "for-file-fields" 1 2 6)
(defun expand-for-file-fields (strmvar linevar fieldspec path body)
`(with-open-file (,strmvar ,path
:direction :input
:element-type 'character
:if-does-not-exist :error)
,(expand-for-stream-fields strmvar linevar fieldspec strmvar body :curfile-name path)))
;;;
;;; WHEN-STREAM-FIELDS
;;;
;;; Guts of AWK toplevel for a file, but unlike AWK this can be
;;; used anywhere.
;;;
(defmacro when-stream-fields ((stream &optional fieldspec) &rest clauses)
#+:Symbolics (declare (zwei:indentation 1 1))
(let ((docs-and-decs (extract-docs-and-decs clauses))