7bf25a7e17
* base-0.mes (cons*): Refactor. * module/mes/read-0.mes: Implement define, define-macro using macros. * define.c: Remove. * mes.c: Remove callers. * GNUmakefile (mes.o): Remove dependency on define.
94 lines
2.8 KiB
Scheme
94 lines
2.8 KiB
Scheme
;;; -*-scheme-*-
|
|
|
|
;;; Mes --- Maxwell Equations of Software
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
;;;
|
|
;;; This file is part of Mes.
|
|
;;;
|
|
;;; Mes 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 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; Mes 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.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(mes-use-module (mes scm))
|
|
|
|
(define (f:env:define a+ a)
|
|
(set-cdr! a+ (cdr a))
|
|
(set-cdr! a a+)
|
|
;;(set-cdr! (assq '*closure* a) a+)
|
|
)
|
|
|
|
(define (env:escape-closure a n)
|
|
(if (closure? (car a)) (if (= 0 n) a
|
|
(env:escape-closure (cdr a) (- n 1)))
|
|
(env:escape-closure (cdr a) n)))
|
|
|
|
(define-macro (module-define! name value a)
|
|
`(f:env:define (cons (sexp:define (cons 'define (cons ',name (cons ,value '()))) ,a) '()) (env:escape-closure ,a 1)))
|
|
|
|
(define-macro (make-fluid . default)
|
|
`(begin
|
|
,(let ((fluid (symbol-append 'fluid: (gensym)))
|
|
(module (current-module)))
|
|
`(begin
|
|
(module-define! ,fluid
|
|
(let ((v ,(and (pair? default) (car default))))
|
|
(lambda ( . rest)
|
|
(if (null? rest) v
|
|
(set! v (car rest))))) ',module)
|
|
',fluid))))
|
|
|
|
(define (fluid-ref fluid)
|
|
(fluid))
|
|
|
|
(define (fluid-set! fluid value)
|
|
(fluid value))
|
|
|
|
(define-macro (fluid? fluid)
|
|
`(begin
|
|
(and (symbol? ,fluid)
|
|
(symbol-prefix? 'fluid: ,fluid))))
|
|
|
|
(define (with-fluid* fluid value thunk)
|
|
(let ((v (fluid)))
|
|
(fluid-set! fluid value)
|
|
(let ((r (thunk)))
|
|
(fluid-set! fluid v)
|
|
r)))
|
|
|
|
;; (define-macro (with-fluids*-macro fluids values thunk)
|
|
;; `(begin
|
|
;; ,@(map (lambda (f v) (list 'set! f v)) fluids values)
|
|
;; (,thunk)))
|
|
|
|
;; (define (with-fluids*-next fluids values thunk)
|
|
;; `(with-fluids*-macro ,fluids ,values ,thunk))
|
|
|
|
;; (define (with-fluids* fluids values thunk)
|
|
;; (primitive-eval (with-fluids*-next fluids values thunk)))
|
|
|
|
;; (define-macro (with-fluids bindings . bodies)
|
|
;; `(let ()
|
|
;; (define (expand bindings a)
|
|
;; (if (null? bindings)
|
|
;; (cons (car bindings) (expand (cdr bindings) a))))
|
|
;; (eval-env (begin ,@bodies) (expand ',bindings (current-module)))))
|
|
|
|
(define (dynamic-wind in-guard thunk out-guard)
|
|
(in-guard)
|
|
(let ((r (thunk)))
|
|
(out-guard)
|
|
r))
|