2007-10-25 16:27:34 -04:00
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
2008-01-29 00:34:34 -05:00
|
|
|
;;; Copyright (C) 2006,2007,2008 Abdulaziz Ghuloum
|
2007-10-25 16:27:34 -04:00
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2007-10-09 07:56:30 -04:00
|
|
|
|
|
|
|
(library (psyntax compat)
|
2007-10-09 08:54:28 -04:00
|
|
|
(export define-record make-parameter parameterize format gensym
|
2007-10-12 02:59:27 -04:00
|
|
|
eval-core symbol-value set-symbol-value!
|
2008-07-24 21:58:53 -04:00
|
|
|
make-struct-type read-annotated
|
2007-12-19 19:05:23 -05:00
|
|
|
annotation? annotation-expression annotation-source
|
2008-05-06 15:38:05 -04:00
|
|
|
annotation-stripped
|
2008-10-13 17:33:25 -04:00
|
|
|
read-library-source-file
|
|
|
|
library-version-mismatch-warning
|
2009-05-28 02:02:47 -04:00
|
|
|
library-stale-warning
|
2008-11-11 14:47:35 -05:00
|
|
|
file-locator-resolution-error
|
2008-12-27 00:36:13 -05:00
|
|
|
label-binding set-label-binding! remove-location
|
|
|
|
make-source-position-condition)
|
2007-10-09 07:56:30 -04:00
|
|
|
(import
|
2008-02-14 17:45:15 -05:00
|
|
|
(only (ikarus.compiler) eval-core)
|
2008-05-21 02:21:37 -04:00
|
|
|
(only (ikarus.reader.annotated) read-library-source-file)
|
2007-10-12 02:59:27 -04:00
|
|
|
(ikarus))
|
2009-05-28 02:02:47 -04:00
|
|
|
|
2008-10-13 17:33:25 -04:00
|
|
|
(define (library-version-mismatch-warning name depname filename)
|
|
|
|
(fprintf (current-error-port)
|
|
|
|
"WARNING: library ~s has an inconsistent dependency \
|
|
|
|
on library ~s; file ~s will be recompiled from \
|
|
|
|
source.\n"
|
|
|
|
name depname filename))
|
2009-05-28 02:02:47 -04:00
|
|
|
|
|
|
|
(define (library-stale-warning name filename)
|
|
|
|
(fprintf (current-error-port)
|
|
|
|
"WARNING: library ~s is stale; file ~s will be recompiled from source.\n"
|
|
|
|
name filename))
|
2008-10-13 17:33:25 -04:00
|
|
|
|
2009-05-28 02:02:47 -04:00
|
|
|
(define (file-locator-resolution-error libname failed-list pending-list)
|
|
|
|
(define-condition-type &library-resolution &condition
|
|
|
|
make-library-resolution-condition
|
|
|
|
library-resolution-condition?
|
|
|
|
(library condition-library)
|
|
|
|
(files condition-files))
|
|
|
|
(define-condition-type &imported-from &condition
|
|
|
|
make-imported-from-condition imported-from-condition?
|
|
|
|
(importing-library importing-library))
|
2009-01-03 20:23:33 -05:00
|
|
|
|
2009-05-28 02:02:47 -04:00
|
|
|
(raise
|
|
|
|
(apply condition (make-error)
|
|
|
|
(make-who-condition 'expander)
|
|
|
|
(make-message-condition
|
|
|
|
"cannot locate library in library-path")
|
|
|
|
(make-library-resolution-condition
|
|
|
|
libname failed-list)
|
|
|
|
(map make-imported-from-condition pending-list))))
|
2008-02-18 20:28:54 -05:00
|
|
|
|
2007-10-09 07:56:30 -04:00
|
|
|
(define-syntax define-record
|
|
|
|
(syntax-rules ()
|
|
|
|
[(_ name (field* ...) printer)
|
|
|
|
(begin
|
2007-10-12 02:59:27 -04:00
|
|
|
(define-struct name (field* ...))
|
2007-10-09 07:56:30 -04:00
|
|
|
(module ()
|
|
|
|
(set-rtd-printer! (type-descriptor name)
|
|
|
|
printer)))]
|
|
|
|
[(_ name (field* ...))
|
2008-11-11 14:47:35 -05:00
|
|
|
(define-struct name (field* ...))]))
|
|
|
|
|
|
|
|
(define (set-label-binding! label binding)
|
|
|
|
(set-symbol-value! label binding))
|
2008-11-12 18:15:42 -05:00
|
|
|
|
2008-11-11 14:47:35 -05:00
|
|
|
(define (label-binding label)
|
2008-11-12 18:15:42 -05:00
|
|
|
(and (symbol-bound? label) (symbol-value label)))
|
|
|
|
|
|
|
|
(define (remove-location x)
|
|
|
|
(import (ikarus system $symbols))
|
|
|
|
($unintern-gensym x)))
|
2007-10-09 07:56:30 -04:00
|
|
|
|