forked from tiancaiamao/yscheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
match.ss
922 lines (848 loc) · 34.7 KB
/
match.ss
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
;;; Copyright (c) 2000-2008 Dan Friedman, Erik Hilsdale, and Kent Dybvig
;;;
;;; Permission is hereby granted, free of charge, to any person
;;; obtaining a copy of this software and associated documentation files
;;; (the "Software"), to deal in the Software without restriction,
;;; including without limitation the rights to use, copy, modify, merge,
;;; publish, distribute, sublicense, and/or sell copies of the Software,
;;; and to permit persons to whom the Software is furnished to do so,
;;; subject to the following conditions:
;;;
;;; The above copyright notice and this permission notice shall be
;;; included in all copies or substantial portions of the Software.
;;;
;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
;;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
;;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
;;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
;;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;;; SOFTWARE.
;;; This program was originally designed and implemented by Dan Friedman.
;;; It was redesigned and reimplemented by Erik Hilsdale. Additional
;;; modifications were made by Kent Dybvig, Steve Ganz, and Aziz Ghuloum.
;;; Parts of the implementation were adapted from the portable syntax-case
;;; implementation written by Kent Dybvig, Oscar Waddell, Bob Hieb, and
;;; Carl Bruggeman and is used by permission of Cadence Research Systems.
;;; A change log appears at end of this file.
;;; A brief description of match is given at:
;;; http://www.cs.indiana.edu/chezscheme/match/
;;; ============================================================
;; Exp ::= (match Exp Clause)
;; || (trace-match Exp Clause)
;; || (match+ (Id*) Exp Clause*)
;; || (trace-match+ (Id*) Exp Clause*)
;; || OtherSchemeExp
;; Clause ::= (Pat Exp+) || (Pat (guard Exp*) Exp+)
;; Pat ::= (Pat ... . Pat)
;; || (Pat . Pat)
;; || ()
;; || #(Pat* Pat ... Pat*)
;; || #(Pat*)
;; || ,Id
;; || ,[Id*]
;; || ,[Cata -> Id*]
;; || Id
;; Cata ::= Exp
;; YOU'RE NOT ALLOWED TO REFER TO CATA VARS IN GUARDS. (reasonable!)
(module ((match+ match-help match-help1 clause-body let-values**
guard-body convert-pat mapper my-backquote extend-backquote
sexp-dispatch)
(trace-match+ match-help match-help1 clause-body let-values**
guard-body convert-pat mapper my-backquote extend-backquote
sexp-dispatch)
(match match-help match-help1 clause-body let-values**
guard-body convert-pat mapper my-backquote extend-backquote
sexp-dispatch)
(trace-match match-help match-help1 clause-body let-values**
guard-body convert-pat mapper my-backquote extend-backquote
sexp-dispatch)
(with-ellipsis-aware-quasiquote my-backquote)
match-equality-test)
(import scheme)
(define match-equality-test
(make-parameter
equal?
(lambda (x)
(unless (procedure? x)
(error 'match-equality-test "~s is not a procedure" x))
x)))
(define-syntax match+
(lambda (x)
(syntax-case x ()
[(k (ThreadedId ...) Exp Clause ...)
#'(let f ((ThreadedId ThreadedId) ... (x Exp))
(match-help k f x (ThreadedId ...) Clause ...))])))
(define-syntax match
(lambda (x)
(syntax-case x ()
[(k Exp Clause ...)
#'(let f ((x Exp))
(match-help k f x () Clause ...))])))
(define-syntax trace-match+
(lambda (x)
(syntax-case x ()
[(k (ThreadedId ...) Name Exp Clause ...)
#'(letrec ((f (trace-lambda Name (ThreadedId ... x)
(match-help k f x (ThreadedId ...) Clause ...))))
(f ThreadedId ... x))])))
(define-syntax trace-match
(lambda (x)
(syntax-case x ()
[(k Name Exp Clause ...)
#'(letrec ((f (trace-lambda Name (x)
(match-help k f x () Clause ...))))
(f Exp))])))
;;; ------------------------------
(define-syntax let-values**
(syntax-rules ()
((_ () B0 B ...) (begin B0 B ...))
((_ ((Formals Exp) Rest ...) B0 B ...)
(let-values** (Rest ...)
(call-with-values (lambda () Exp)
(lambda Formals B0 B ...))))))
(define-syntax match-help
(lambda (x)
(syntax-case x ()
((_ Template Cata Obj ThreadedIds)
#'(error 'match "Unmatched datum: ~s" Obj))
((_ Template Cata Obj ThreadedIds (Pat B0 B ...) Rest ...)
#'(convert-pat Pat
(match-help1 Template Cata Obj ThreadedIds
(B0 B ...)
Rest ...)))
((_ Template Cata Obj ThreadedIds cls Rest ...)
(syntax-error #'cls "invalid match clause")))))
(define-syntax match-help1
(lambda (x)
(syntax-case x (guard)
[(_ PatLit Vars () Cdecls Template Cata Obj ThreadedIds
((guard) B0 B ...) Rest ...)
#'(let ((ls/false (sexp-dispatch Obj PatLit)))
(if ls/false
(apply (lambda Vars
(clause-body Cata Cdecls ThreadedIds
(extend-backquote Template B0 B ...)))
ls/false)
(match-help Template Cata Obj ThreadedIds Rest ...)))]
[(_ PatLit Vars (PG ...) Cdecls Template Cata Obj ThreadedIds
((guard G ...) B0 B ...) Rest ...)
#'(let ((ls/false (sexp-dispatch Obj PatLit)))
(if (and ls/false (apply (lambda Vars
(guard-body Cdecls
(extend-backquote Template
(and PG ... G ...))))
ls/false))
(apply (lambda Vars
(clause-body Cata Cdecls ThreadedIds
(extend-backquote Template B0 B ...)))
ls/false)
(match-help Template Cata Obj ThreadedIds Rest ...)))]
[(_ PatLit Vars (PG ...) Cdecls Template Cata Obj ThreadedIds
(B0 B ...) Rest ...)
#'(match-help1 PatLit Vars (PG ...) Cdecls Template Cata Obj ThreadedIds
((guard) B0 B ...) Rest ...)])))
(define-syntax clause-body
(lambda (x)
(define build-mapper
(lambda (vars depth cata tIds)
(if (zero? depth)
cata
(with-syntax ((rest (build-mapper vars (- depth 1) cata tIds))
(vars vars)
(tIds tIds))
#'(mapper rest vars tIds)))))
(syntax-case x ()
((_ Cata ((CVar CDepth CMyCata CFormal ...) ...) (ThreadedId ...) B)
(with-syntax (((Mapper ...)
(map (lambda (mycata formals depth)
(build-mapper formals
(syntax->datum depth)
(syntax-case mycata ()
[#f #'Cata]
[exp #'exp])
#'(ThreadedId ...)))
#'(CMyCata ...)
#'((CFormal ...) ...)
#'(CDepth ...))))
#'(let-values** (([ThreadedId ... CFormal ...]
(Mapper ThreadedId ... CVar))
...)
B))))))
(define-syntax guard-body
(lambda (x)
(syntax-case x ()
((_ ((Cvar Cdepth MyCata Cformal ...) ...) B)
(with-syntax (((CF ...) (apply append #'((Cformal ...) ...))))
#'(let-syntax
((CF
(lambda (x)
(syntax-case x ()
(Name
(syntax-error #'Name
"guard cannot refer to return-value variable")))))
...)
B))))))
(define-syntax convert-pat
;; returns sexp-pat x vars x guards x cdecls
(let ()
(define ellipsis?
(lambda (x)
(and (identifier? x) (free-identifier=? x #'(... ...)))))
(define Var?
(lambda (x)
(syntax-case x (->)
[-> #f]
[id (identifier? #'id)])))
(define fVar
(lambda (var vars guards)
(let loop ([ls vars])
(if (null? ls)
(values (cons var vars) guards)
(if (bound-identifier=? var (car ls))
(with-syntax ([(tmp) (generate-temporaries (list var))]
[var (car ls)])
(values (cons #'tmp vars)
(cons #'((match-equality-test) tmp var) guards)))
(loop (cdr ls)))))))
(define (f syn vars guards cdecls depth)
(syntax-case syn (unquote)
((unquote . stuff) ; separate for better error detection
(syntax-case syn (unquote ->)
((unquote [MyCata -> Var ...])
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth depth))
(values #'any
(cons #'Temp vars)
guards
(cons #'[Temp Depth MyCata Var ...] cdecls))))
((unquote [Var ...])
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth depth))
(values #'any
(cons #'Temp vars)
guards
(cons #'[Temp Depth #f Var ...] cdecls))))
((unquote Var)
(Var? #'Var)
(let-synvalues* ([(vars guards) (fVar #'Var vars guards)])
(values #'any #'vars #'guards cdecls)))))
(((unquote . stuff) Dots)
(ellipsis? #'Dots)
(syntax-case syn (unquote ->)
(((unquote [MyCata -> Var ...]) Dots)
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth+1 (add1 depth)))
(values #'each-any
(cons #'Temp vars)
guards
(cons #'[Temp Depth+1 MyCata Var ...] cdecls))))
(((unquote [Var ...]) Dots)
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth+1 (add1 depth)))
(values #'each-any
(cons #'Temp vars)
guards
(cons #'[Temp Depth+1 #f Var ...] cdecls))))
(((unquote Var) Dots)
(Var? #'Var)
(let-synvalues* ([(vars guards) (fVar #'Var vars guards)])
(values #'each-any #'vars #'guards cdecls)))
((expr Dots) (syntax-error #'expr "match-pattern unquote syntax"))))
((Pat Dots)
(ellipsis? #'Dots)
(let-synvalues* (((Dpat Dvars Dguards Dcdecls)
(f #'Pat vars guards cdecls (add1 depth))))
(with-syntax ((Size (- (length #'Dvars) (length vars))))
(values #'#(each Dpat Size) #'Dvars #'Dguards #'Dcdecls))))
((Pat Dots . Rest)
(ellipsis? #'Dots)
(let-synvalues* (((Rpat Rvars Rguards Rcdecls)
(f #'Rest vars guards cdecls depth))
((Dpat Dvars Dguards Dcdecls)
(f #'(Pat (... ...)) #'Rvars #'Rguards #'Rcdecls
depth)))
(with-syntax ((Size (- (length #'Dvars) (length #'Rvars)))
((RevRestTl . RevRest) (reverseX #'Rpat '())))
(values #'#(tail-each Dpat Size RevRest RevRestTl)
#'Dvars #'Dguards #'Dcdecls))))
((X . Y)
(let-synvalues* (((Ypat Yvars Yguards Ycdecls)
(f #'Y vars guards cdecls depth))
((Xpat Xvars Xguards Xcdecls)
(f #'X #'Yvars #'Yguards #'Ycdecls depth)))
(values #'(Xpat . Ypat) #'Xvars #'Xguards #'Xcdecls)))
(() (values #'() vars guards cdecls))
(#(X ...)
(let-synvalues* (((Pat Vars Eqvars Cdecls)
(f #'(X ...) vars guards cdecls depth)))
(values #'#(vector Pat) #'Vars #'Eqvars #'Cdecls)))
(Thing (values #'#(atom Thing) vars guards cdecls))))
(define reverseX
(lambda (ls acc)
(if (pair? ls)
(reverseX (cdr ls) (cons (car ls) acc))
(cons ls acc))))
(define-syntax let-synvalues*
(syntax-rules ()
((_ () B0 B ...) (begin B0 B ...))
((_ (((Formal ...) Exp) Decl ...) B0 B ...)
(call-with-values (lambda () Exp)
(lambda (Formal ...)
(with-syntax ((Formal Formal) ...)
(let-synvalues* (Decl ...) B0 B ...)))))))
(lambda (syn)
(syntax-case syn ()
((_ syn (kh . kt))
(let-synvalues* (((Pat Vars Guards Cdecls) (f #'syn '() '() '() 0)))
#'(kh 'Pat Vars Guards Cdecls . kt)))))))
(define-syntax mapper
(lambda (x)
(syntax-case x ()
((_ F (RetId ...) (ThreadId ...))
(with-syntax (((t ...) (generate-temporaries #'(RetId ...)))
((ts ...) (generate-temporaries #'(RetId ...)))
((null ...) (map (lambda (x) #''()) #'(RetId ...))))
#'(let ((fun F))
(rec g
(lambda (ThreadId ... ls)
(if (null? ls)
(values ThreadId ... null ...)
(call-with-values
(lambda () (g ThreadId ... (cdr ls)))
(lambda (ThreadId ... ts ...)
(call-with-values
(lambda () (fun ThreadId ... (car ls)))
(lambda (ThreadId ... t ...)
(values ThreadId ... (cons t ts) ...))))))))))))))
;;; ------------------------------
(define-syntax my-backquote
(lambda (x)
(define ellipsis?
(lambda (x)
(and (identifier? x) (free-identifier=? x #'(... ...)))))
(define-syntax with-values
(syntax-rules ()
((_ P C) (call-with-values (lambda () P) C))))
(define-syntax syntax-lambda
(lambda (x)
(syntax-case x ()
((_ (Pat ...) Body0 Body ...)
(with-syntax (((X ...) (generate-temporaries #'(Pat ...))))
#'(lambda (X ...)
(with-syntax ((Pat X) ...)
Body0 Body ...)))))))
(define-syntax with-temp
(syntax-rules ()
((_ V Body0 Body ...)
(with-syntax (((V) (generate-temporaries '(x))))
Body0 Body ...))))
(define-syntax with-temps
(syntax-rules ()
((_ (V ...) (Exp ...) Body0 Body ...)
(with-syntax (((V ...) (generate-temporaries #'(Exp ...))))
Body0 Body ...))))
(define destruct
(lambda (Orig x depth)
(syntax-case x (quasiquote unquote unquote-splicing)
;; inner quasiquote
((Exp dots1 dots2 . Rest)
(and (zero? depth) (ellipsis? #'dots1) (ellipsis? #'dots2))
(let f ([Exp #'(... ((Exp ...) ...))] [Rest #'Rest] [ndots 2])
(syntax-case Rest ()
[(dots . Rest)
(ellipsis? #'dots)
(with-syntax ([Exp Exp])
(f #'(... (Exp ...)) #'Rest (+ ndots 1)))]
[Rest
(with-values (destruct Orig Exp depth)
(syntax-lambda (ExpBuilder (ExpVar ...) (ExpExp ...))
(if (null? #'(ExpVar ...))
(syntax-error Orig "Bad ellipsis")
(with-values (destruct Orig #'Rest depth)
(syntax-lambda (RestBuilder RestVars RestExps)
(values
#`(append
#,(let f ([ndots ndots])
(if (= ndots 1)
#'ExpBuilder
#`(apply append #,(f (- ndots 1)))))
RestBuilder)
(append #'(ExpVar ...) #'RestVars)
(append #'(ExpExp ...) #'RestExps)))))))])))
((quasiquote Exp)
(with-values (destruct Orig #'Exp (add1 depth))
(syntax-lambda (Builder Vars Exps)
(if (null? #'Vars)
(values #''(quasiquote Exp) '() '())
(values #'(list 'quasiquote Builder) #'Vars #'Exps)))))
;; unquote
((unquote Exp)
(zero? depth)
(with-temp X
(values #'X (list #'X) (list #'Exp))))
((unquote Exp)
(with-values (destruct Orig #'Exp (sub1 depth))
(syntax-lambda (Builder Vars Exps)
(if (null? #'Vars)
(values #''(unquote Exp) '() '())
(values #'(list 'unquote Builder) #'Vars #'Exps)))))
;; splicing
(((unquote-splicing Exp))
(zero? depth)
(with-temp X
(values #'X (list #'X) (list #'Exp))))
(((unquote-splicing Exp ...))
(zero? depth)
(with-temps (X ...) (Exp ...)
(values #'(append X ...) #'(X ...) #'(Exp ...))))
(((unquote-splicing Exp ...) . Rest)
(zero? depth)
(with-values (destruct Orig #'Rest depth)
(syntax-lambda (Builder Vars Exps)
(with-temps (X ...) (Exp ...)
(if (null? #'Vars)
(values #'(append X ... 'Rest)
#'(X ...) #'(Exp ...))
(values #'(append X ... Builder)
#'(X ... . Vars) #'(Exp ... . Exps)))))))
((unquote-splicing Exp ...)
(with-values (destruct Orig #'(Exp ...) (sub1 depth))
(syntax-lambda (Builder Vars Exps)
(if (null? #'Vars)
(values #''(unquote-splicing Exp ...) '() '())
(values #'(cons 'unquote-splicing Builder)
#'Vars #'Exps)))))
;; dots
(((unquote Exp) Dots)
(and (zero? depth) (ellipsis? #'Dots))
(with-temp X
(values #'X (list #'X) (list #'Exp))))
(((unquote Exp) Dots . Rest)
(and (zero? depth) (ellipsis? #'Dots))
(with-values (destruct Orig #'Rest depth)
(syntax-lambda (RestBuilder RestVars RestExps)
(with-syntax ((TailExp
(if (null? #'RestVars)
#''Rest
#'RestBuilder)))
(with-temp X
(values #'(append X TailExp)
(cons #'X #'RestVars)
(cons #'Exp #'RestExps)))))))
((Exp Dots . Rest)
(and (zero? depth) (ellipsis? #'Dots))
(with-values (destruct Orig #'Exp depth)
(syntax-lambda (ExpBuilder (ExpVar ...) (ExpExp ...))
(if (null? #'(ExpVar ...))
(syntax-error Orig "Bad ellipsis")
(with-values (destruct Orig #'Rest depth)
(syntax-lambda (RestBuilder RestVars RestExps)
(with-syntax ((TailExp
(if (null? #'RestVars)
#''Rest
#'RestBuilder))
(Orig Orig))
(values #'(let f ((ExpVar ExpVar) ...)
(if (and (pair? ExpVar) ...)
(cons
(let ((ExpVar (car ExpVar)) ...)
ExpBuilder)
(f (cdr ExpVar) ...))
(if (and (null? ExpVar) ...)
TailExp
(error 'unquote
"Mismatched lists in ~s"
Orig))))
(append #'(ExpVar ...) #'RestVars)
(append #'(ExpExp ...) #'RestExps)))))))))
;; Vectors
(#(X ...)
(with-values (destruct Orig #'(X ...) depth)
(syntax-lambda (LsBuilder LsVars LsExps)
(values #'(list->vector LsBuilder) #'LsVars #'LsExps))))
;; random stuff
((Hd . Tl)
(with-values (destruct Orig #'Hd depth)
(syntax-lambda (HdBuilder HdVars HdExps)
(with-values (destruct Orig #'Tl depth)
(syntax-lambda (TlBuilder TlVars TlExps)
(with-syntax ((Hd (if (null? #'HdVars)
#''Hd
#'HdBuilder))
(Tl (if (null? #'TlVars)
#''Tl
#'TlBuilder)))
(values #'(cons Hd Tl)
(append #'HdVars #'TlVars)
(append #'HdExps #'TlExps))))))))
(OtherThing
(values #''OtherThing '() '())))))
;; macro begins
(syntax-case x ()
((_ Datum)
(with-values (destruct #'(quasiquote Datum) #'Datum 0)
(syntax-lambda (Builder (Var ...) (Exp ...))
(if (null? #'(Var ...))
#''Datum
#'(let ((Var Exp) ...)
Builder))))))))
(define-syntax extend-backquote
(lambda (x)
(syntax-case x ()
[(_ Template Exp ...)
(with-syntax ([quasiquote (datum->syntax #'Template 'quasiquote)])
#'(let-syntax ([quasiquote
(lambda (x)
(syntax-case x ()
((_ Foo) #'(my-backquote Foo))))])
Exp ...))])))
(define-syntax with-ellipsis-aware-quasiquote
(lambda (x)
(syntax-case x ()
[(k b1 b2 ...)
(with-implicit (k quasiquote)
#'(let-syntax ([quasiquote
(lambda (x)
(syntax-case x ()
((_ e) #'(my-backquote e))))])
(let () b1 b2 ...)))])))
;;; ------------------------------
(define-syntax with-values
(syntax-rules ()
((_ P C) (call-with-values (lambda () P) C))))
(define-syntax letcc
(syntax-rules ()
((_ V B0 B ...) (call/cc (lambda (V) B0 B ...)))))
(define classify-list
(lambda (ls)
(cond
((null? ls) 'proper)
((not (pair? ls)) 'improper)
(else
(let f ((tortoise ls) (hare (cdr ls)))
(cond
((eq? tortoise hare) 'infinite)
((null? hare) 'proper)
((not (pair? hare)) 'improper)
(else
(let ((hare (cdr hare)))
(cond
((null? hare) 'proper)
((not (pair? hare)) 'improper)
(else (f (cdr ls) (cdr hare))))))))))))
(define ilist-copy-flat
(lambda (ils)
(let f ((tortoise ils) (hare (cdr ils)))
(if (eq? tortoise hare)
(list (car tortoise))
(cons (car tortoise) (f (cdr tortoise) (cddr hare)))))))
(define sexp-dispatch
(lambda (obj pat);; #f or list of vars
(letcc escape
(let ((fail (lambda () (escape #f))))
(let f ((pat pat) (obj obj) (vals '()))
(cond
((eq? pat 'any)
(cons obj vals))
((eq? pat 'each-any)
;; handle infinities
(case (classify-list obj)
((proper infinite) (cons obj vals))
((improper) (fail))))
((pair? pat)
(if (pair? obj)
(f (car pat) (car obj) (f (cdr pat) (cdr obj) vals))
(fail)))
((vector? pat)
(case (vector-ref pat 0)
((atom)
(let ((a (vector-ref pat 1)))
(if (eqv? obj a)
vals
(fail))))
((vector)
(if (vector? obj)
(let ((vec-pat (vector-ref pat 1)))
(f vec-pat (vector->list obj) vals))
(fail)))
((each)
;; if infinite, copy the list as flat, then do the matching,
;; then do some set-cdrs.
(let ((each-pat (vector-ref pat 1))
(each-size (vector-ref pat 2)))
(case (classify-list obj)
((improper) (fail))
((infinite)
(let ((each-vals (f pat (ilist-copy-flat obj) '())))
(for-each (lambda (x) (set-cdr! (last-pair x) x))
each-vals)
(append each-vals vals)))
((proper)
(append
(let g ((obj obj))
(if (null? obj)
(make-list each-size '())
(let ((hd-vals (f each-pat (car obj) '()))
(tl-vals (g (cdr obj))))
(map cons hd-vals tl-vals))))
vals)))))
((tail-each)
(let ((each-pat (vector-ref pat 1))
(each-size (vector-ref pat 2))
(revtail-pat (vector-ref pat 3))
(revtail-tail-pat (vector-ref pat 4)))
(when (eq? (classify-list obj) 'infinite) (fail))
(with-values
(let g ((obj obj))
;; in-tail?, vals, revtail-left/ls
(cond
((pair? obj)
(with-values (g (cdr obj))
(lambda (in-tail? vals tail-left/ls)
(if in-tail?
(if (null? tail-left/ls)
(values #f vals (list (car obj)))
(values #t (f (car tail-left/ls)
(car obj)
vals)
(cdr tail-left/ls)))
(values #f vals
(cons (car obj) tail-left/ls))))))
(else
(values #t
(f revtail-tail-pat obj vals)
revtail-pat))))
(lambda (in-tail? vals tail-left/ls)
(if in-tail?
(if (null? tail-left/ls)
(append (make-list each-size '())
vals)
(fail))
(f each-pat tail-left/ls vals))))))))
(else
(if (eqv? obj pat)
vals
(fail)))))))))
)
#!eof
;;; examples of passing along threaded information.
;;; Try (collect-symbols '(if (x y 'a 'c zz) 'b 'c))
;;; Note that it commonizes the reference to c.
(define-syntax with-values
(syntax-rules ()
((_ P C) (call-with-values (lambda () P) C))))
(define collect-symbols
(lambda (exp)
(with-values (collect-symbols-help exp)
(lambda (symbol-decls exp)
(match symbol-decls
(((,symbol-name . ,symbol-var) ...)
`(let ((,symbol-var (quote ,symbol-name)) ...) ,exp)))))))
(define collect-symbols-help
(lambda (exp)
(let ((symbol-env '()))
(match+ (symbol-env) exp
(,x
(guard (symbol? x))
(values symbol-env x))
((quote ,x)
(guard (symbol? x))
(let ((pair/false (assq x symbol-env)))
(if pair/false
(values symbol-env (cdr pair/false))
(let ((v (gensym)))
(values (cons (cons x v) symbol-env)
v)))))
((quote ,x)
(values symbol-env `(quote ,x)))
((if ,[t] ,[c] ,[a])
(values symbol-env `(if ,t ,c ,a)))
((,[op] ,[arg] ...)
(values symbol-env `(,op ,arg ...)))))))
;;; the grammar for this one is just if-exprs and everything else
(define collect-leaves
(lambda (exp acc)
(match+ (acc) exp
((if ,[] ,[] ,[])
acc)
((,[] ,[] ...)
acc)
(,x
(cons x acc)))))
;; here's something that takes apart quoted stuff.
(define destruct
(lambda (datum)
(match datum
(() `'())
((,[X] . ,[Y])`(cons ,X ,Y))
(#(,[X] ...) `(vector ,X ...))
(,thing
(guard (symbol? thing))
`',thing)
(,thing
thing))))
;; examples using explicit Catas
(define sumsquares
(lambda (ls)
(define square
(lambda (x)
(* x x)))
(match ls
[(,[a*] ...) (apply + a*)]
[,[square -> n] n])))
(define sumsquares
(lambda (ls)
(define square
(lambda (x)
(* x x)))
(let ([acc 0])
(match+ (acc) ls
[(,[] ...) acc]
[,[(lambda (acc x) (+ acc (square x))) ->] acc]))))
;;; The following uses explicit Catas to parse programs in the
;;; simple language defined by the grammar below
;;; <Prog> -> (program <Stmt>* <Expr>)
;;; <Stmt> -> (if <Expr> <Stmt> <Stmt>)
;;; | (set! <var> <Expr>)
;;; <Expr> -> <var>
;;; | <integer>
;;; | (if <Expr> <Expr> <Expr>)
;;; | (<Expr> <Expr*>)
(define parse
(lambda (x)
(define Prog
(lambda (x)
(match x
[(program ,[Stmt -> s*] ... ,[Expr -> e])
`(begin ,s* ... ,e)]
[,other (error 'parse "invalid program ~s" other)])))
(define Stmt
(lambda (x)
(match x
[(if ,[Expr -> e] ,[Stmt -> s1] ,[Stmt -> s2])
`(if ,e ,s1 ,s2)]
[(set! ,v ,[Expr -> e])
(guard (symbol? v))
`(set! ,v ,e)]
[,other (error 'parse "invalid statement ~s" other)])))
(define Expr
(lambda (x)
(match x
[,v (guard (symbol? v)) v]
[,n (guard (integer? n)) n]
[(if ,[e1] ,[e2] ,[e3])
`(if ,e1 ,e2 ,e3)]
[(,[rator] ,[rand*] ...) `(,rator ,rand* ...)]
[,other (error 'parse "invalid expression ~s" other)])))
(Prog x)))
;;; (parse '(program (set! x 3) (+ x 4)))) => (begin (set! x 3) (+ x 4))
;; CHANGELOG
;; [31 January 2010]
;; rkd replaced _ with k in the syntax-case patterns for match, match+,
;; etc., since in R6RS, _ is not a pattern variable.
;; [31 January 2010]
;; rkd renamed syntax-object->datum and datum->syntax-object to their
;; R6RS names syntax->datum and datum->syntax. also replaced the
;; literal-identifier=? calls with free-identifier=? calls.
;; [3 February 2008]
;; rkd modified overloaded quasiquote to handle expressions followed
;; by more than one ellipsis.
;; [3 February 2008]
;; aziz modified mapper to quote the inserted empty lists
;; [3 March 2007]
;; aziz minor change to eagerly catch malformed clauses (e.g. a clause
;; that's not a list of 2 or more subforms).
;; [13 March 2002]
;; rkd added following change by Friedman and Ganz to the main source
;; code thread and fixed a couple of minor problems.
;; [9 March 2002]
;; Dan Friedman and Steve Ganz added the ability to use identical pattern
;; variables. The patterns represented by the variables are compared
;; using the value of the parameter match-equality-test, which defaults
;; to equal?.
;;
;; > (match '(1 2 1 2 1)
;; [(,a ,b ,a ,b ,a) (guard (number? a) (number? b)) (+ a b)])
;; 3
;; ;;
;; > (match '((1 2 3) 5 (1 2 3))
;; [((,a ...) ,b (,a ...)) `(,a ... ,b)])
;; (1 2 3 5)
;; ;;
;; > (parameterize ([match-equality-test (lambda (x y) (equal? x (reverse y)))])
;; (match '((1 2 3) (3 2 1))
;; [(,a ,a) 'yes]
;; [,oops 'no]))
;; yes
;; [10 Jan 2002]
;; eh fixed bug that caused (match '((1 2 3 4)) (((,a ... ,d) . ,x) a)) to
;; blow up. The bug was caused by a bug in the sexp-dispatch procedure
;; where a base value empty list was passed to an accumulator from inside
;; the recursion, instead of passing the old value of the accumulator.
;; [14 Jan 2001]
;; rkd added syntax checks to unquote pattern parsing to weed out invalid
;; patterns like ,#(a) and ,[(vector-ref d 1)].
;; [14 Jan 2001]
;; rkd added ,[Cata -> Id* ...] to allow specification of recursion
;; function. ,[Id* ...] recurs to match; ,[Cata -> Id* ...] recurs
;; to Cata.
;; [14 Jan 2001]
;; rkd tightened up checks for ellipses and nested quasiquote; was comparing
;; symbolic names, which, as had been noted in the source, is a possible
;; hygiene bug. Replaced error call in guard-body with syntax-error to
;; allow error to include source line/character information.
;; [13 Jan 2001]
;; rkd fixed match patterns of the form (stuff* ,[x] ... stuff+), which
;; had been recurring on subforms of each item rather than on the items
;; themselves.
;; [29 Feb 2000]
;; Fixed a case sensitivity bug.
;; [24 Feb 2000]
;; Matcher now handles vector patterns. Quasiquote also handles
;; vector patterns, but does NOT do the csv6.2 optimization of
;; `#(a 1 ,(+ 3 4) x y) ==> (vector 'a 1 (+ 3 4) 'x 'y).
;; Also fixed bug in (P ... . P) matching code.
;; [23 Feb 2000]
;; KSM fixed bug in unquote-splicing inside quasiquote.
;; [10 Feb 2000]
;; New forms match+ and trace-match+ thread arguments right-to-left.
;; The pattern (P ... . P) now works the way you might expect.
;; Infinite lists are now properly matched (and not matched).
;; Removed the @ pattern.
;; Internal: No longer converting into syntax-case.
;; [6 Feb 2000]
;; Added expansion-time error message for referring to cata variable
;; in a guard.
;; [4 Feb 2000]
;; Fixed backquote so it can handle nested backquote (oops).
;; Double-backquoted elipses are neutralized just as double-backquoted
;; unquotes are. So:
;; `(a ,'(1 2 3) ... b) =eval=> (a 1 2 3 b)
;; ``(a ,'(1 2 3) ... b) =eval=> `(a ,'(1 2 3) ... b)
;; ``(a ,(,(1 2 3) ...) b) =eval=> `(a ,(1 2 3) b)
;; Added support for
;; `((unquote-splicing x y z) b) =expand==> (append x y z (list 'b))
;; [1 Feb 2000]
;; Fixed a bug involving forgetting to quote stuff in the revised backquote.
;; Recognized unquote-splicing and signalled errors in the appropriate places.
;; Added support for deep elipses in backquote.
;; Rewrote backquote so it does the rebuilding directly instead of
;; expanding into Chez's backquote.
;; [31 Jan 2000]
;; Kent Dybvig fixed template bug.
;; [31 Jan 2000]
;; Added the trace-match form, and made guards contain
;; an explicit and expression:
;; (guard E ...) ==> (guard (and E ...))
;; [26 Jan 2000]
;; Inside the clauses of match expressions, the following
;; transformation is performed inside backquote expressions:
;; ,v ... ==> ,@v
;; (,v ,w) ... ==> ,@(map list v w)
;; etc.