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
|
;;; match.ss
;;; Time-stamp: Sun Jan 14 09:04:21 EST 2001 rkd
;; [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.
;; Previous changelog listings at end of file.
;; =============================================================
;; 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 iu-match
((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)
;; TEMP
clause-body extend-backquote
)
;(import scheme)
(define-syntax match+
(lambda (x)
(syntax-case x ()
[(_ (ThreadedId ...) Exp Clause ...)
#'(let f ((ThreadedId ThreadedId) ... (x Exp))
(match-help _ f x (ThreadedId ...) Clause ...))])))
(define-syntax match
(lambda (x)
(syntax-case x ()
[(_ Exp Clause ...)
#'(let f ((x Exp))
(match-help _ f x () Clause ...))])))
(define-syntax trace-match+
(lambda (x)
(syntax-case x ()
[(_ (ThreadedId ...) Name Exp Clause ...)
#'(letrec ((f (trace-lambda Name (ThreadedId ... x)
(match-help _ f x (ThreadedId ...) Clause ...))))
(f ThreadedId ... x))])))
(define-syntax trace-match
(lambda (x)
(syntax-case x ()
[(_ Name Exp Clause ...)
#'(letrec ((f (trace-lambda Name (x)
(match-help _ 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)
;(inspect `(HRM ,(datum Template) ,(datum Cata) ,(datum Obj) ,(datum ThreadedIds)))
;(inspect #'Template)
#'(error 'match "Unmatched datum.\n Datum: ~s\n Source-Location: ~s\n" Obj #'Template))
((_ Template Cata Obj ThreadedIds (Pat B0 B ...) Rest ...)
#'(convert-pat Pat
(match-help1 Template Cata Obj ThreadedIds
(B0 B ...)
Rest ...)))
)))
(define-syntax match-help1
(syntax-rules (guard)
((_ PatLit Vars 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 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 Cdecls Template Cata Obj ThreadedIds
(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 ...))))))
;((clause-body f () () (extend-backquote _ (void))))
(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)
;;; RRN: Hacking this a bit for larceny compat:
(with-syntax ((((TIDs ...) ...)
(datum->syntax-object #'_
(map (lambda _ #'(ThreadedId ...))
(syntax-object->datum #'((CFormal ...) ...))))))
(with-syntax (((Mapper ...)
(map (lambda (mycata formals depth)
(build-mapper formals
(syntax-object->datum depth)
(syntax-case mycata ()
[#f #'Cata]
[exp #'exp])
#'(ThreadedId ...)))
#'(CMyCata ...)
#'((CFormal ...) ...)
#'(CDepth ...))))
;; [2007.12.26] RRN: Removing ellipses from references to ThreadedId here:
;; This appears to have been a bug. Introducing TIDs instead.
#'(let-values** (([TIDs ... CFormal ...]
(Mapper TIDs ... 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 cdecls
(let ()
(define ellipsis?
(lambda (x)
(and (identifier? x) (literal-identifier=? x #'(... ...)))))
(define Var?
(lambda (x)
(syntax-case x (->)
[-> #f]
[id (identifier? #'id)])))
(define (f syn vars 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)
(cons #'[Temp Depth MyCata Var ...] cdecls))))
((unquote [Var ...])
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth depth))
(values #'any
(cons #'Temp vars)
(cons #'[Temp Depth #f Var ...] cdecls))))
((unquote Var)
(Var? #'Var)
(values #'any (cons #'Var vars) cdecls))))
(((unquote . stuff) Dots) ; separate for better error detection
(ellipsis? #'Dots)
(syntax-case syn (unquote ->)
(((unquote [MyCata -> Var ...]) Dots)
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth+1 (+ 1 depth)))
(values #'each-any
(cons #'Temp vars)
(cons #'[Temp Depth+1 MyCata Var ...] cdecls))))
(((unquote [Var ...]) Dots)
(andmap Var? #'(Var ...))
(with-syntax (((Temp) (generate-temporaries '(x)))
(Depth+1 (+ 1 depth)))
(values #'each-any
(cons #'Temp vars)
(cons #'[Temp Depth+1 #f Var ...] cdecls))))
(((unquote Var) Dots)
(Var? #'Var)
(values #'each-any (cons #'Var vars) cdecls))
((expr Dots) (syntax-error #'expr "match-pattern unquote syntax"))))
((Pat Dots)
(ellipsis? #'Dots)
(let-synvalues* (((Dpat Dvars Dcdecls)
(f #'Pat vars cdecls (+ 1 depth))))
(with-syntax ((Size (- (length #'Dvars) (length vars))))
(values #'#(each Dpat Size) #'Dvars #'Dcdecls))))
((Pat Dots . Rest)
(ellipsis? #'Dots)
(let-synvalues* (((Rpat Rvars Rcdecls)
(f #'Rest vars cdecls depth))
((Dpat Dvars Dcdecls)
(f #'(Pat (... ...)) #'Rvars #'Rcdecls
depth)))
(with-syntax ((Size (- (length #'Dvars) (length #'Rvars)))
((RevRestTl . RevRest) (reverseX #'Rpat '())))
(values #'#(tail-each Dpat Size RevRest RevRestTl)
#'Dvars #'Dcdecls))))
((X . Y)
(let-synvalues* (((Ypat Yvars Ycdecls)
(f #'Y vars cdecls depth))
((Xpat Xvars Xcdecls)
(f #'X #'Yvars #'Ycdecls depth)))
(values #'(Xpat . Ypat) #'Xvars #'Xcdecls)))
(() (values #'() vars cdecls))
(#(X ...)
(let-synvalues* (((Pat Vars CDecls) (f #'(X ...) vars cdecls depth)))
(values #'#(vector Pat) #'Vars #'CDecls)))
(Thing (values #'#(atom Thing) vars 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* (((a b c) (f #'syn '() '() 0)))
#'(kh 'a b c . 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) (literal-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
((quasiquote Exp)
(with-values (destruct Orig #'Exp (+ 1 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 (+ -1 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 ...) (+ -1 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-object #'Template 'quasiquote)))
#'(let-syntax ((quasiquote
(lambda (x)
(syntax-case x ()
((_ Foo) #'(my-backquote Foo))))))
Exp ...))))))
;;; ------------------------------
(define-syntax with-values
(syntax-rules ()
((_ P C) (call-with-values (lambda () P) C))))
(define-syntax letcc
(syntax-rules ()
((_ V B0 B ...) (call/1cc (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 '())
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)))))))))
) ;; End Module
#|
;;; 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 (most recent changes are logged at the top of this file)
;; [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.
|#
|