Merge branch 'master' into boehm-demers-weiser-gc
[bpt/guile.git] / ice-9 / syncase.scm
index bc124ba..39cf273 100644 (file)
@@ -1,61 +1,71 @@
-;;;;   Copyright (C) 1997 Free Software Foundation, Inc.
+;;;;   Copyright (C) 1997, 2000, 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
 ;;;; 
-;;;; This program is free software; you can redistribute it and/or modify
-;;;; it under the terms of the GNU General Public License as published by
-;;;; the Free Software Foundation; either version 2, or (at your option)
-;;;; any later version.
+;;;; This library is free software; you can redistribute it and/or
+;;;; modify it under the terms of the GNU Lesser General Public
+;;;; License as published by the Free Software Foundation; either
+;;;; version 2.1 of the License, or (at your option) any later version.
 ;;;; 
-;;;; This program is distributed in the hope that it will be useful,
+;;;; This library is distributed in the hope that it will be useful,
 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;;;; GNU General Public License for more details.
+;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;;; Lesser General Public License for more details.
 ;;;; 
-;;;; You should have received a copy of the GNU General Public License
-;;;; along with this software; see the file COPYING.  If not, write to
-;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-;;;; Boston, MA 02111-1307 USA
+;;;; You should have received a copy of the GNU Lesser General Public
+;;;; License along with this library; if not, write to the Free Software
+;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 ;;;; 
 \f
 
 (define-module (ice-9 syncase)
-  :use-module (ice-9 debug))
+  :use-module (ice-9 debug)
+  :use-module (ice-9 threads)
+  :export-syntax (sc-macro define-syntax define-syntax-public 
+                  eval-when fluid-let-syntax
+                 identifier-syntax let-syntax
+                 letrec-syntax syntax syntax-case  syntax-rules
+                 with-syntax
+                 include)
+  :export (sc-expand sc-expand3 install-global-transformer
+          syntax-dispatch syntax-error bound-identifier=?
+          datum->syntax-object free-identifier=?
+          generate-temporaries identifier? syntax-object->datum
+          void syncase)
+  :replace (eval))
 
 \f
 
-(define-public sc-macro
+(define expansion-eval-closure (make-fluid))
+
+(define (env->eval-closure env)
+  (or (and env
+          (car (last-pair env)))
+      (module-eval-closure the-root-module)))
+
+(define sc-macro
   (procedure->memoizing-macro
     (lambda (exp env)
-      (sc-expand exp))))
+      (with-fluids ((expansion-eval-closure (env->eval-closure env)))
+        (sc-expand exp)))))
 
 ;;; Exported variables
 
-(define-public sc-expand #f)
-(define-public sc-expand3 #f)
-(define-public install-global-transformer #f)
-(define-public syntax-dispatch #f)
-(define-public syntax-error #f)
-
-(define-public bound-identifier=? #f)
-(define-public datum->syntax-object #f)
-(define-public define-syntax sc-macro)
-(define-public eval-when sc-macro)
-(define-public fluid-let-syntax sc-macro)
-(define-public free-identifier=? #f)
-(define-public generate-temporaries #f)
-(define-public identifier? #f)
-(define-public identifier-syntax sc-macro)
-(define-public let-syntax sc-macro)
-(define-public letrec-syntax sc-macro)
-(define-public syntax sc-macro)
-(define-public syntax-case sc-macro)
-(define-public syntax-object->datum #f)
-(define-public syntax-rules sc-macro)
-(define-public with-syntax sc-macro)
-(define-public include sc-macro)
+(define sc-expand #f)
+(define sc-expand3 #f)
+(define sc-chi #f)
+(define install-global-transformer #f)
+(define syntax-dispatch #f)
+(define syntax-error #f)
+
+(define bound-identifier=? #f)
+(define datum->syntax-object #f)
+(define free-identifier=? #f)
+(define generate-temporaries #f)
+(define identifier? #f)
+(define syntax-object->datum #f)
 
 (define primitive-syntax '(quote lambda letrec if set! begin define or
-                             and let let* cond do quasiquote unquote
-                             unquote-splicing case))
+                          and let let* cond do quasiquote unquote
+                          unquote-splicing case))
 
 (for-each (lambda (symbol)
            (set-symbol-property! symbol 'primitive-syntax #t))
@@ -63,7 +73,7 @@
 
 ;;; Hooks needed by the syntax-case macro package
 
-(define-public (void) *unspecified*)
+(define (void) *unspecified*)
 
 (define andmap
   (lambda (f first . rest)
                          '())))
 
 (define the-syncase-module (current-module))
+(define the-syncase-eval-closure (module-eval-closure the-syncase-module))
+
+(fluid-set! expansion-eval-closure the-syncase-eval-closure)
 
 (define (putprop symbol key binding)
-  (let* ((m (current-module))
-        (v (or (module-variable m symbol)
-               (module-make-local-var! m symbol))))
-    (if (assq 'primitive-syntax (symbol-pref symbol))
-       (if (eq? (current-module) the-syncase-module)
-           (set-object-property! (module-variable the-root-module symbol)
-                                 key
-                                 binding))
+  (let* ((eval-closure (fluid-ref expansion-eval-closure))
+        ;; Why not simply do (eval-closure symbol #t)?
+        ;; Answer: That would overwrite imported bindings
+        (v (or (eval-closure symbol #f) ;lookup
+               (eval-closure symbol #t) ;create it locally
+               )))
+    ;; Don't destroy Guile macros corresponding to
+    ;; primitive syntax when syncase boots.
+    (if (not (and (symbol-property symbol 'primitive-syntax)
+                 (eq? eval-closure the-syncase-eval-closure)))
        (variable-set! v sc-macro))
+    ;; Properties are tied to variable objects
     (set-object-property! v key binding)))
 
 (define (getprop symbol key)
-  (let* ((m (current-module))
-        (v (module-variable m symbol)))
-    (and v (or (object-property v key)
-              (let ((root-v (module-local-variable the-root-module symbol)))
-                (and (equal? root-v v)
-                     (object-property root-v key)))))))
+  (let* ((v ((fluid-ref expansion-eval-closure) symbol #f)))
+    (and v
+        (or (object-property v key)
+            (and (variable-bound? v)
+                 (macro? (variable-ref v))
+                 (macro-transformer (variable-ref v)) ;non-primitive
+                 guile-macro)))))
+
+(define guile-macro
+  (cons 'external-macro
+       (lambda (e r w s)
+         (let ((e (syntax-object->datum e)))
+           (if (symbol? e)
+               ;; pass the expression through
+               e
+               (let* ((eval-closure (fluid-ref expansion-eval-closure))
+                      (m (variable-ref (eval-closure (car e) #f))))
+                 (if (eq? (macro-type m) 'syntax)
+                     ;; pass the expression through
+                     e
+                     ;; perform Guile macro transform
+                     (let ((e ((macro-transformer m)
+                               e
+                               (append r (list eval-closure)))))
+                       (if (variable? e)
+                           e
+                           (if (null? r)
+                               (sc-expand e)
+                               (sc-chi e r w)))))))))))
 
 (define generated-symbols (make-weak-key-hash-table 1019))
 
-;;; Utilities
-
-(define (psyncomp)
-  (system "mv -f psyntax.pp psyntax.pp~")
-  (let ((in (open-input-file "psyntax.ss"))
-       (out (open-output-file "psyntax.pp")))
-    (let loop ((x (read in)))
-      (if (eof-object? x)
-         (begin
-           (close-port out)
-           (close-port in))
-         (begin
-           (write (sc-expand3 x 'c '(compile load eval)) out)
-           (newline out)
-           (loop (read in)))))))
+;; We define our own gensym here because the Guile built-in one will
+;; eventually produce uninterned and unreadable symbols (as needed for
+;; safe macro expansions) and will the be inappropriate for dumping to
+;; pssyntax.pp.
+;;
+;; syncase is supposed to only require that gensym produce unique
+;; readable symbols, and they only need be unique with respect to
+;; multiple calls to gensym, not globally unique.
+;;
+(define gensym
+  (let ((counter 0))
+
+    (define next-id
+      (if (provided? 'threads)
+          (let ((symlock (make-mutex)))
+            (lambda ()
+              (let ((result #f))
+                (with-mutex symlock
+                  (set! result counter)
+                  (set! counter (+ counter 1)))
+                result)))
+          ;; faster, non-threaded case.
+          (lambda ()
+            (let ((result counter))
+              (set! counter (+ counter 1))
+              result))))
+    
+    ;; actual gensym body code.
+    (lambda (. rest)
+      (let* ((next-val (next-id))
+             (valstr (number->string next-val)))
+          (cond
+           ((null? rest)
+            (string->symbol (string-append "syntmp-" valstr)))
+           ((null? (cdr rest))
+            (string->symbol (string-append "syntmp-" (car rest) "-" valstr)))
+           (else
+            (error
+             (string-append
+              "syncase's gensym expected 0 or 1 arguments, got "
+              (length rest)))))))))
 
 ;;; Load the preprocessed code
 
                  (read-options old-read))))
 
 
-;;; The following line is necessary only if we start making changes
+;;; The following lines are necessary only if we start making changes
+;; (use-syntax sc-expand)
 ;; (load-from-path "ice-9/psyntax.ss")
 
-(define internal-eval (nested-ref the-scm-module '(app modules guile eval)))
+(define internal-eval (nested-ref the-scm-module '(%app modules guile eval)))
 
-(define-public (eval x)
+(define (eval x environment)
   (internal-eval (if (and (pair? x)
-                         (string=? (car x) "noexpand"))
+                         (equal? (car x) "noexpand"))
                     (cadr x)
-                    (sc-expand x))))
+                    (sc-expand x))
+                environment))
 
 ;;; Hack to make syncase macros work in the slib module
-(let ((m (nested-ref the-root-module '(app modules ice-9 slib))))
+(let ((m (nested-ref the-root-module '(%app modules ice-9 slib))))
   (if m
       (set-object-property! (module-local-variable m 'define)
                            '*sc-expander*
                            '(define))))
 
-(define-public syncase sc-expand)
+(define (syncase exp)
+  (with-fluids ((expansion-eval-closure
+                (module-eval-closure (current-module))))
+    (sc-expand exp)))
+
+(set-module-transformer! the-syncase-module syncase)
+
+(define-syntax define-syntax-public
+  (syntax-rules ()
+    ((_ name rules ...)
+     (begin
+       ;(eval-case ((load-toplevel) (export-syntax name)))
+       (define-syntax name rules ...)))))
+
+(fluid-set! expansion-eval-closure (env->eval-closure #f))