remove eval-options
[bpt/guile.git] / module / ice-9 / boot-9.scm
1 ;;; -*- mode: scheme; coding: utf-8; -*-
2
3 ;;;; Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010
4 ;;;; Free Software Foundation, Inc.
5 ;;;;
6 ;;;; This library is free software; you can redistribute it and/or
7 ;;;; modify it under the terms of the GNU Lesser General Public
8 ;;;; License as published by the Free Software Foundation; either
9 ;;;; version 3 of the License, or (at your option) any later version.
10 ;;;;
11 ;;;; This library is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ;;;; Lesser General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU Lesser General Public
17 ;;;; License along with this library; if not, write to the Free Software
18 ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 ;;;;
20
21 \f
22
23 ;;; Commentary:
24
25 ;;; This file is the first thing loaded into Guile. It adds many mundane
26 ;;; definitions and a few that are interesting.
27 ;;;
28 ;;; The module system (hence the hierarchical namespace) are defined in this
29 ;;; file.
30 ;;;
31
32 ;;; Code:
33
34 \f
35
36 ;; Before compiling, make sure any symbols are resolved in the (guile)
37 ;; module, the primary location of those symbols, rather than in
38 ;; (guile-user), the default module that we compile in.
39
40 (eval-when (compile)
41 (set-current-module (resolve-module '(guile))))
42
43 \f
44
45 ;;; {Error handling}
46 ;;;
47
48 ;; Define delimited continuation operators, and implement catch and throw in
49 ;; terms of them.
50
51 (define make-prompt-tag
52 (lambda* (#:optional (stem "prompt"))
53 (gensym stem)))
54
55 (define default-prompt-tag
56 ;; not sure if we should expose this to the user as a fluid
57 (let ((%default-prompt-tag (make-prompt-tag)))
58 (lambda ()
59 %default-prompt-tag)))
60
61 (define (call-with-prompt tag thunk handler)
62 (@prompt tag (thunk) handler))
63 (define (abort-to-prompt tag . args)
64 (@abort tag args))
65
66
67 ;; Define catch and with-throw-handler, using some common helper routines and a
68 ;; shared fluid. Hide the helpers in a lexical contour.
69
70 (define with-throw-handler #f)
71 (let ()
72 ;; Ideally we'd like to be able to give these default values for all threads,
73 ;; even threads not created by Guile; but alack, that does not currently seem
74 ;; possible. So wrap the getters in thunks.
75 (define %running-exception-handlers (make-fluid))
76 (define %exception-handler (make-fluid))
77
78 (define (running-exception-handlers)
79 (or (fluid-ref %running-exception-handlers)
80 (begin
81 (fluid-set! %running-exception-handlers '())
82 '())))
83 (define (exception-handler)
84 (or (fluid-ref %exception-handler)
85 (begin
86 (fluid-set! %exception-handler default-exception-handler)
87 default-exception-handler)))
88
89 (define (default-exception-handler k . args)
90 (cond
91 ((eq? k 'quit)
92 (primitive-exit (cond
93 ((not (pair? args)) 0)
94 ((integer? (car args)) (car args))
95 ((not (car args)) 1)
96 (else 0))))
97 (else
98 (format (current-error-port) "guile: uncaught throw to ~a: ~a\n" k args)
99 (primitive-exit 1))))
100
101 (define (default-throw-handler prompt-tag catch-k)
102 (let ((prev (exception-handler)))
103 (lambda (thrown-k . args)
104 (if (or (eq? thrown-k catch-k) (eqv? catch-k #t))
105 (apply abort-to-prompt prompt-tag thrown-k args)
106 (apply prev thrown-k args)))))
107
108 (define (custom-throw-handler prompt-tag catch-k pre)
109 (let ((prev (exception-handler)))
110 (lambda (thrown-k . args)
111 (if (or (eq? thrown-k catch-k) (eqv? catch-k #t))
112 (let ((running (running-exception-handlers)))
113 (with-fluids ((%running-exception-handlers (cons pre running)))
114 (if (not (memq pre running))
115 (apply pre thrown-k args))
116 ;; fall through
117 (if prompt-tag
118 (apply abort-to-prompt prompt-tag thrown-k args)
119 (apply prev thrown-k args))))
120 (apply prev thrown-k args)))))
121
122 (set! catch
123 (lambda* (k thunk handler #:optional pre-unwind-handler)
124 "Invoke @var{thunk} in the dynamic context of @var{handler} for
125 exceptions matching @var{key}. If thunk throws to the symbol
126 @var{key}, then @var{handler} is invoked this way:
127 @lisp
128 (handler key args ...)
129 @end lisp
130
131 @var{key} is a symbol or @code{#t}.
132
133 @var{thunk} takes no arguments. If @var{thunk} returns
134 normally, that is the return value of @code{catch}.
135
136 Handler is invoked outside the scope of its own @code{catch}.
137 If @var{handler} again throws to the same key, a new handler
138 from further up the call chain is invoked.
139
140 If the key is @code{#t}, then a throw to @emph{any} symbol will
141 match this call to @code{catch}.
142
143 If a @var{pre-unwind-handler} is given and @var{thunk} throws
144 an exception that matches @var{key}, Guile calls the
145 @var{pre-unwind-handler} before unwinding the dynamic state and
146 invoking the main @var{handler}. @var{pre-unwind-handler} should
147 be a procedure with the same signature as @var{handler}, that
148 is @code{(lambda (key . args))}. It is typically used to save
149 the stack at the point where the exception occurred, but can also
150 query other parts of the dynamic state at that point, such as
151 fluid values.
152
153 A @var{pre-unwind-handler} can exit either normally or non-locally.
154 If it exits normally, Guile unwinds the stack and dynamic context
155 and then calls the normal (third argument) handler. If it exits
156 non-locally, that exit determines the continuation."
157 (if (not (or (symbol? k) (eqv? k #t)))
158 (scm-error "catch" 'wrong-type-arg
159 "Wrong type argument in position ~a: ~a"
160 (list 1 k) (list k)))
161 (let ((tag (make-prompt-tag "catch")))
162 (call-with-prompt
163 tag
164 (lambda ()
165 (with-fluids
166 ((%exception-handler
167 (if pre-unwind-handler
168 (custom-throw-handler tag k pre-unwind-handler)
169 (default-throw-handler tag k))))
170 (thunk)))
171 (lambda (cont k . args)
172 (apply handler k args))))))
173
174 (set! with-throw-handler
175 (lambda (k thunk pre-unwind-handler)
176 "Add @var{handler} to the dynamic context as a throw handler
177 for key @var{key}, then invoke @var{thunk}."
178 (if (not (or (symbol? k) (eqv? k #t)))
179 (scm-error "with-throw-handler" 'wrong-type-arg
180 "Wrong type argument in position ~a: ~a"
181 (list 1 k) (list k)))
182 (with-fluids ((%exception-handler
183 (custom-throw-handler #f k pre-unwind-handler)))
184 (thunk))))
185
186 (set! throw
187 (lambda (key . args)
188 "Invoke the catch form matching @var{key}, passing @var{args} to the
189 @var{handler}.
190
191 @var{key} is a symbol. It will match catches of the same symbol or of @code{#t}.
192
193 If there is no handler at all, Guile prints an error and then exits."
194 (if (not (symbol? key))
195 ((exception-handler) 'wrong-type-arg "throw"
196 "Wrong type argument in position ~a: ~a" (list 1 key) (list key))
197 (apply (exception-handler) key args)))))
198
199
200 \f
201
202 ;;; {R4RS compliance}
203 ;;;
204
205 (primitive-load-path "ice-9/r4rs")
206
207 \f
208
209 ;;; {Simple Debugging Tools}
210 ;;;
211
212 ;; peek takes any number of arguments, writes them to the
213 ;; current ouput port, and returns the last argument.
214 ;; It is handy to wrap around an expression to look at
215 ;; a value each time is evaluated, e.g.:
216 ;;
217 ;; (+ 10 (troublesome-fn))
218 ;; => (+ 10 (pk 'troublesome-fn-returned (troublesome-fn)))
219 ;;
220
221 (define (peek . stuff)
222 (newline)
223 (display ";;; ")
224 (write stuff)
225 (newline)
226 (car (last-pair stuff)))
227
228 (define pk peek)
229
230
231 (define (warn . stuff)
232 (with-output-to-port (current-error-port)
233 (lambda ()
234 (newline)
235 (display ";;; WARNING ")
236 (display stuff)
237 (newline)
238 (car (last-pair stuff)))))
239
240 \f
241
242 ;;; {Features}
243 ;;;
244
245 (define (provide sym)
246 (if (not (memq sym *features*))
247 (set! *features* (cons sym *features*))))
248
249 ;; Return #t iff FEATURE is available to this Guile interpreter. In SLIB,
250 ;; provided? also checks to see if the module is available. We should do that
251 ;; too, but don't.
252
253 (define (provided? feature)
254 (and (memq feature *features*) #t))
255
256 \f
257
258 ;;; {Structs}
259 ;;;
260
261 (define (make-struct/no-tail vtable . args)
262 (apply make-struct vtable 0 args))
263
264 \f
265
266 ;;; {and-map and or-map}
267 ;;;
268 ;;; (and-map fn lst) is like (and (fn (car lst)) (fn (cadr lst)) (fn...) ...)
269 ;;; (or-map fn lst) is like (or (fn (car lst)) (fn (cadr lst)) (fn...) ...)
270 ;;;
271
272 ;; and-map f l
273 ;;
274 ;; Apply f to successive elements of l until exhaustion or f returns #f.
275 ;; If returning early, return #f. Otherwise, return the last value returned
276 ;; by f. If f has never been called because l is empty, return #t.
277 ;;
278 (define (and-map f lst)
279 (let loop ((result #t)
280 (l lst))
281 (and result
282 (or (and (null? l)
283 result)
284 (loop (f (car l)) (cdr l))))))
285
286 ;; or-map f l
287 ;;
288 ;; Apply f to successive elements of l until exhaustion or while f returns #f.
289 ;; If returning early, return the return value of f.
290 ;;
291 (define (or-map f lst)
292 (let loop ((result #f)
293 (l lst))
294 (or result
295 (and (not (null? l))
296 (loop (f (car l)) (cdr l))))))
297
298 \f
299
300 ;; let format alias simple-format until the more complete version is loaded
301
302 (define format simple-format)
303
304 ;; this is scheme wrapping the C code so the final pred call is a tail call,
305 ;; per SRFI-13 spec
306 (define string-any
307 (lambda* (char_pred s #:optional (start 0) (end (string-length s)))
308 (if (and (procedure? char_pred)
309 (> end start)
310 (<= end (string-length s))) ;; let c-code handle range error
311 (or (string-any-c-code char_pred s start (1- end))
312 (char_pred (string-ref s (1- end))))
313 (string-any-c-code char_pred s start end))))
314
315 ;; this is scheme wrapping the C code so the final pred call is a tail call,
316 ;; per SRFI-13 spec
317 (define string-every
318 (lambda* (char_pred s #:optional (start 0) (end (string-length s)))
319 (if (and (procedure? char_pred)
320 (> end start)
321 (<= end (string-length s))) ;; let c-code handle range error
322 (and (string-every-c-code char_pred s start (1- end))
323 (char_pred (string-ref s (1- end))))
324 (string-every-c-code char_pred s start end))))
325
326 ;; A variant of string-fill! that we keep for compatability
327 ;;
328 (define (substring-fill! str start end fill)
329 (string-fill! str fill start end))
330
331 \f
332
333 ;; Define a minimal stub of the module API for psyntax, before modules
334 ;; have booted.
335 (define (module-name x)
336 '(guile))
337 (define (module-define! module sym val)
338 (let ((v (hashq-ref (%get-pre-modules-obarray) sym)))
339 (if v
340 (variable-set! v val)
341 (hashq-set! (%get-pre-modules-obarray) sym
342 (make-variable val)))))
343 (define (module-ref module sym)
344 (let ((v (module-variable module sym)))
345 (if v (variable-ref v) (error "badness!" (pk module) (pk sym)))))
346 (define (resolve-module . args)
347 #f)
348
349 ;; API provided by psyntax
350 (define syntax-violation #f)
351 (define datum->syntax #f)
352 (define syntax->datum #f)
353 (define syntax-source #f)
354 (define identifier? #f)
355 (define generate-temporaries #f)
356 (define bound-identifier=? #f)
357 (define free-identifier=? #f)
358
359 ;; $sc-dispatch is an implementation detail of psyntax. It is used by
360 ;; expanded macros, to dispatch an input against a set of patterns.
361 (define $sc-dispatch #f)
362
363 ;; Load it up!
364 (primitive-load-path "ice-9/psyntax-pp")
365 ;; The binding for `macroexpand' has now been overridden, making psyntax the
366 ;; expander now.
367
368 (define-syntax and
369 (syntax-rules ()
370 ((_) #t)
371 ((_ x) x)
372 ((_ x y ...) (if x (and y ...) #f))))
373
374 (define-syntax or
375 (syntax-rules ()
376 ((_) #f)
377 ((_ x) x)
378 ((_ x y ...) (let ((t x)) (if t t (or y ...))))))
379
380 ;; The "maybe-more" bits are something of a hack, so that we can support
381 ;; SRFI-61. Rewrites into a standalone syntax-case macro would be
382 ;; appreciated.
383 (define-syntax cond
384 (syntax-rules (=> else)
385 ((_ "maybe-more" test consequent)
386 (if test consequent))
387
388 ((_ "maybe-more" test consequent clause ...)
389 (if test consequent (cond clause ...)))
390
391 ((_ (else else1 else2 ...))
392 (begin else1 else2 ...))
393
394 ((_ (test => receiver) more-clause ...)
395 (let ((t test))
396 (cond "maybe-more" t (receiver t) more-clause ...)))
397
398 ((_ (generator guard => receiver) more-clause ...)
399 (call-with-values (lambda () generator)
400 (lambda t
401 (cond "maybe-more"
402 (apply guard t) (apply receiver t) more-clause ...))))
403
404 ((_ (test => receiver ...) more-clause ...)
405 (syntax-violation 'cond "wrong number of receiver expressions"
406 '(test => receiver ...)))
407 ((_ (generator guard => receiver ...) more-clause ...)
408 (syntax-violation 'cond "wrong number of receiver expressions"
409 '(generator guard => receiver ...)))
410
411 ((_ (test) more-clause ...)
412 (let ((t test))
413 (cond "maybe-more" t t more-clause ...)))
414
415 ((_ (test body1 body2 ...) more-clause ...)
416 (cond "maybe-more"
417 test (begin body1 body2 ...) more-clause ...))))
418
419 (define-syntax case
420 (syntax-rules (else)
421 ((case (key ...)
422 clauses ...)
423 (let ((atom-key (key ...)))
424 (case atom-key clauses ...)))
425 ((case key
426 (else result1 result2 ...))
427 (begin result1 result2 ...))
428 ((case key
429 ((atoms ...) result1 result2 ...))
430 (if (memv key '(atoms ...))
431 (begin result1 result2 ...)))
432 ((case key
433 ((atoms ...) result1 result2 ...)
434 clause clauses ...)
435 (if (memv key '(atoms ...))
436 (begin result1 result2 ...)
437 (case key clause clauses ...)))))
438
439 (define-syntax do
440 (syntax-rules ()
441 ((do ((var init step ...) ...)
442 (test expr ...)
443 command ...)
444 (letrec
445 ((loop
446 (lambda (var ...)
447 (if test
448 (begin
449 (if #f #f)
450 expr ...)
451 (begin
452 command
453 ...
454 (loop (do "step" var step ...)
455 ...))))))
456 (loop init ...)))
457 ((do "step" x)
458 x)
459 ((do "step" x y)
460 y)))
461
462 (define-syntax delay
463 (syntax-rules ()
464 ((_ exp) (make-promise (lambda () exp)))))
465
466 (include-from-path "ice-9/quasisyntax")
467
468 (define-syntax current-source-location
469 (lambda (x)
470 (syntax-case x ()
471 ((_)
472 (with-syntax ((s (datum->syntax x (syntax-source x))))
473 #''s)))))
474
475
476 \f
477
478 ;;; {Defmacros}
479 ;;;
480
481 (define-syntax define-macro
482 (lambda (x)
483 "Define a defmacro."
484 (syntax-case x ()
485 ((_ (macro . args) doc body1 body ...)
486 (string? (syntax->datum #'doc))
487 #'(define-macro macro doc (lambda args body1 body ...)))
488 ((_ (macro . args) body ...)
489 #'(define-macro macro #f (lambda args body ...)))
490 ((_ macro doc transformer)
491 (or (string? (syntax->datum #'doc))
492 (not (syntax->datum #'doc)))
493 #'(define-syntax macro
494 (lambda (y)
495 doc
496 #((macro-type . defmacro)
497 (defmacro-args args))
498 (syntax-case y ()
499 ((_ . args)
500 (let ((v (syntax->datum #'args)))
501 (datum->syntax y (apply transformer v)))))))))))
502
503 (define-syntax defmacro
504 (lambda (x)
505 "Define a defmacro, with the old lispy defun syntax."
506 (syntax-case x ()
507 ((_ macro args doc body1 body ...)
508 (string? (syntax->datum #'doc))
509 #'(define-macro macro doc (lambda args body1 body ...)))
510 ((_ macro args body ...)
511 #'(define-macro macro #f (lambda args body ...))))))
512
513 (provide 'defmacro)
514
515 \f
516
517 ;;; {Deprecation}
518 ;;;
519
520 (define-syntax begin-deprecated
521 (lambda (x)
522 (syntax-case x ()
523 ((_ form form* ...)
524 (if (include-deprecated-features)
525 #'(begin form form* ...)
526 #'(begin))))))
527
528 \f
529
530 ;;; {Trivial Functions}
531 ;;;
532
533 (define (identity x) x)
534 (define (and=> value procedure) (and value (procedure value)))
535 (define call/cc call-with-current-continuation)
536
537 (define-syntax false-if-exception
538 (syntax-rules ()
539 ((_ expr)
540 (catch #t
541 (lambda () expr)
542 (lambda (k . args) #f)))))
543
544 \f
545
546 ;;; {General Properties}
547 ;;;
548
549 ;; Properties are a lispy way to associate random info with random objects.
550 ;; Traditionally properties are implemented as an alist or a plist actually
551 ;; pertaining to the object in question.
552 ;;
553 ;; These "object properties" have the advantage that they can be associated with
554 ;; any object, even if the object has no plist. Object properties are good when
555 ;; you are extending pre-existing objects in unexpected ways. They also present
556 ;; a pleasing, uniform procedure-with-setter interface. But if you have a data
557 ;; type that always has properties, it's often still best to store those
558 ;; properties within the object itself.
559
560 (define (make-object-property)
561 (let ((prop (primitive-make-property #f)))
562 (make-procedure-with-setter
563 (lambda (obj) (primitive-property-ref prop obj))
564 (lambda (obj val) (primitive-property-set! prop obj val)))))
565
566 \f
567
568 ;;; {Symbol Properties}
569 ;;;
570
571 ;;; Symbol properties are something you see in old Lisp code. In most current
572 ;;; Guile code, symbols are not used as a data structure -- they are used as
573 ;;; keys into other data structures.
574
575 (define (symbol-property sym prop)
576 (let ((pair (assoc prop (symbol-pref sym))))
577 (and pair (cdr pair))))
578
579 (define (set-symbol-property! sym prop val)
580 (let ((pair (assoc prop (symbol-pref sym))))
581 (if pair
582 (set-cdr! pair val)
583 (symbol-pset! sym (acons prop val (symbol-pref sym))))))
584
585 (define (symbol-property-remove! sym prop)
586 (let ((pair (assoc prop (symbol-pref sym))))
587 (if pair
588 (symbol-pset! sym (delq! pair (symbol-pref sym))))))
589
590 \f
591
592 ;;; {Arrays}
593 ;;;
594
595 (define (array-shape a)
596 (map (lambda (ind) (if (number? ind) (list 0 (+ -1 ind)) ind))
597 (array-dimensions a)))
598
599 \f
600
601 ;;; {Keywords}
602 ;;;
603
604 ;;; It's much better if you can use lambda* / define*, of course.
605
606 (define (kw-arg-ref args kw)
607 (let ((rem (member kw args)))
608 (and rem (pair? (cdr rem)) (cadr rem))))
609
610 \f
611
612 ;;; {Structs}
613 ;;;
614
615 (define (struct-layout s)
616 (struct-ref (struct-vtable s) vtable-index-layout))
617
618 \f
619
620 ;;; {Records}
621 ;;;
622
623 ;; Printing records: by default, records are printed as
624 ;;
625 ;; #<type-name field1: val1 field2: val2 ...>
626 ;;
627 ;; You can change that by giving a custom printing function to
628 ;; MAKE-RECORD-TYPE (after the list of field symbols). This function
629 ;; will be called like
630 ;;
631 ;; (<printer> object port)
632 ;;
633 ;; It should print OBJECT to PORT.
634
635 (define (inherit-print-state old-port new-port)
636 (if (get-print-state old-port)
637 (port-with-print-state new-port (get-print-state old-port))
638 new-port))
639
640 ;; 0: type-name, 1: fields, 2: constructor
641 (define record-type-vtable
642 ;; FIXME: This should just call make-vtable, not make-vtable-vtable; but for
643 ;; that we need to expose the bare vtable-vtable to Scheme.
644 (make-vtable-vtable "prprpw" 0
645 (lambda (s p)
646 (cond ((eq? s record-type-vtable)
647 (display "#<record-type-vtable>" p))
648 (else
649 (display "#<record-type " p)
650 (display (record-type-name s) p)
651 (display ">" p))))))
652
653 (define (record-type? obj)
654 (and (struct? obj) (eq? record-type-vtable (struct-vtable obj))))
655
656 (define* (make-record-type type-name fields #:optional printer)
657 ;; Pre-generate constructors for nfields < 20.
658 (define-syntax make-constructor
659 (lambda (x)
660 (define *max-static-argument-count* 20)
661 (define (make-formals n)
662 (let lp ((i 0))
663 (if (< i n)
664 (cons (datum->syntax
665 x
666 (string->symbol
667 (string (integer->char (+ (char->integer #\a) i)))))
668 (lp (1+ i)))
669 '())))
670 (syntax-case x ()
671 ((_ rtd exp) (not (identifier? #'exp))
672 #'(let ((n exp))
673 (make-constructor rtd n)))
674 ((_ rtd nfields)
675 #`(case nfields
676 #,@(let lp ((n 0))
677 (if (< n *max-static-argument-count*)
678 (cons (with-syntax (((formal ...) (make-formals n))
679 (n n))
680 #'((n)
681 (lambda (formal ...)
682 (make-struct rtd 0 formal ...))))
683 (lp (1+ n)))
684 '()))
685 (else
686 (lambda args
687 (if (= (length args) nfields)
688 (apply make-struct rtd 0 args)
689 (scm-error 'wrong-number-of-args
690 (format #f "make-~a" type-name)
691 "Wrong number of arguments" '() #f)))))))))
692
693 (define (default-record-printer s p)
694 (display "#<" p)
695 (display (record-type-name (record-type-descriptor s)) p)
696 (let loop ((fields (record-type-fields (record-type-descriptor s)))
697 (off 0))
698 (cond
699 ((not (null? fields))
700 (display " " p)
701 (display (car fields) p)
702 (display ": " p)
703 (display (struct-ref s off) p)
704 (loop (cdr fields) (+ 1 off)))))
705 (display ">" p))
706
707 (let ((rtd (make-struct record-type-vtable 0
708 (make-struct-layout
709 (apply string-append
710 (map (lambda (f) "pw") fields)))
711 (or printer default-record-printer)
712 type-name
713 (copy-tree fields))))
714 (struct-set! rtd (+ vtable-offset-user 2)
715 (make-constructor rtd (length fields)))
716 ;; Temporary solution: Associate a name to the record type descriptor
717 ;; so that the object system can create a wrapper class for it.
718 (set-struct-vtable-name! rtd (if (symbol? type-name)
719 type-name
720 (string->symbol type-name)))
721 rtd))
722
723 (define (record-type-name obj)
724 (if (record-type? obj)
725 (struct-ref obj vtable-offset-user)
726 (error 'not-a-record-type obj)))
727
728 (define (record-type-fields obj)
729 (if (record-type? obj)
730 (struct-ref obj (+ 1 vtable-offset-user))
731 (error 'not-a-record-type obj)))
732
733 (define* (record-constructor rtd #:optional field-names)
734 (if (not field-names)
735 (struct-ref rtd (+ 2 vtable-offset-user))
736 (primitive-eval
737 `(lambda ,field-names
738 (make-struct ',rtd 0 ,@(map (lambda (f)
739 (if (memq f field-names)
740 f
741 #f))
742 (record-type-fields rtd)))))))
743
744 (define (record-predicate rtd)
745 (lambda (obj) (and (struct? obj) (eq? rtd (struct-vtable obj)))))
746
747 (define (%record-type-error rtd obj) ;; private helper
748 (or (eq? rtd (record-type-descriptor obj))
749 (scm-error 'wrong-type-arg "%record-type-check"
750 "Wrong type record (want `~S'): ~S"
751 (list (record-type-name rtd) obj)
752 #f)))
753
754 (define (record-accessor rtd field-name)
755 (let ((pos (list-index (record-type-fields rtd) field-name)))
756 (if (not pos)
757 (error 'no-such-field field-name))
758 (lambda (obj)
759 (if (eq? (struct-vtable obj) rtd)
760 (struct-ref obj pos)
761 (%record-type-error rtd obj)))))
762
763 (define (record-modifier rtd field-name)
764 (let ((pos (list-index (record-type-fields rtd) field-name)))
765 (if (not pos)
766 (error 'no-such-field field-name))
767 (lambda (obj val)
768 (if (eq? (struct-vtable obj) rtd)
769 (struct-set! obj pos val)
770 (%record-type-error rtd obj)))))
771
772 (define (record? obj)
773 (and (struct? obj) (record-type? (struct-vtable obj))))
774
775 (define (record-type-descriptor obj)
776 (if (struct? obj)
777 (struct-vtable obj)
778 (error 'not-a-record obj)))
779
780 (provide 'record)
781
782 \f
783
784 ;;; {Booleans}
785 ;;;
786
787 (define (->bool x) (not (not x)))
788
789 \f
790
791 ;;; {Symbols}
792 ;;;
793
794 (define (symbol-append . args)
795 (string->symbol (apply string-append (map symbol->string args))))
796
797 (define (list->symbol . args)
798 (string->symbol (apply list->string args)))
799
800 (define (symbol . args)
801 (string->symbol (apply string args)))
802
803 \f
804
805 ;;; {Lists}
806 ;;;
807
808 (define (list-index l k)
809 (let loop ((n 0)
810 (l l))
811 (and (not (null? l))
812 (if (eq? (car l) k)
813 n
814 (loop (+ n 1) (cdr l))))))
815
816 \f
817
818 (if (provided? 'posix)
819 (primitive-load-path "ice-9/posix"))
820
821 (if (provided? 'socket)
822 (primitive-load-path "ice-9/networking"))
823
824 ;; For reference, Emacs file-exists-p uses stat in this same way.
825 (define file-exists?
826 (if (provided? 'posix)
827 (lambda (str)
828 (->bool (stat str #f)))
829 (lambda (str)
830 (let ((port (catch 'system-error (lambda () (open-file str OPEN_READ))
831 (lambda args #f))))
832 (if port (begin (close-port port) #t)
833 #f)))))
834
835 (define file-is-directory?
836 (if (provided? 'posix)
837 (lambda (str)
838 (eq? (stat:type (stat str)) 'directory))
839 (lambda (str)
840 (let ((port (catch 'system-error
841 (lambda () (open-file (string-append str "/.")
842 OPEN_READ))
843 (lambda args #f))))
844 (if port (begin (close-port port) #t)
845 #f)))))
846
847 (define (system-error-errno args)
848 (if (eq? (car args) 'system-error)
849 (car (list-ref args 4))
850 #f))
851
852 \f
853
854 ;;; {Error Handling}
855 ;;;
856
857 (define error
858 (case-lambda
859 (()
860 (scm-error 'misc-error #f "?" #f #f))
861 ((message . args)
862 (let ((msg (string-join (cons "~A" (make-list (length args) "~S")))))
863 (scm-error 'misc-error #f msg (cons message args) #f)))))
864
865 \f
866
867 ;;; {Time Structures}
868 ;;;
869
870 (define (tm:sec obj) (vector-ref obj 0))
871 (define (tm:min obj) (vector-ref obj 1))
872 (define (tm:hour obj) (vector-ref obj 2))
873 (define (tm:mday obj) (vector-ref obj 3))
874 (define (tm:mon obj) (vector-ref obj 4))
875 (define (tm:year obj) (vector-ref obj 5))
876 (define (tm:wday obj) (vector-ref obj 6))
877 (define (tm:yday obj) (vector-ref obj 7))
878 (define (tm:isdst obj) (vector-ref obj 8))
879 (define (tm:gmtoff obj) (vector-ref obj 9))
880 (define (tm:zone obj) (vector-ref obj 10))
881
882 (define (set-tm:sec obj val) (vector-set! obj 0 val))
883 (define (set-tm:min obj val) (vector-set! obj 1 val))
884 (define (set-tm:hour obj val) (vector-set! obj 2 val))
885 (define (set-tm:mday obj val) (vector-set! obj 3 val))
886 (define (set-tm:mon obj val) (vector-set! obj 4 val))
887 (define (set-tm:year obj val) (vector-set! obj 5 val))
888 (define (set-tm:wday obj val) (vector-set! obj 6 val))
889 (define (set-tm:yday obj val) (vector-set! obj 7 val))
890 (define (set-tm:isdst obj val) (vector-set! obj 8 val))
891 (define (set-tm:gmtoff obj val) (vector-set! obj 9 val))
892 (define (set-tm:zone obj val) (vector-set! obj 10 val))
893
894 (define (tms:clock obj) (vector-ref obj 0))
895 (define (tms:utime obj) (vector-ref obj 1))
896 (define (tms:stime obj) (vector-ref obj 2))
897 (define (tms:cutime obj) (vector-ref obj 3))
898 (define (tms:cstime obj) (vector-ref obj 4))
899
900 \f
901
902 ;;; {File Descriptors and Ports}
903 ;;;
904
905 (define file-position ftell)
906 (define* (file-set-position port offset #:optional (whence SEEK_SET))
907 (seek port offset whence))
908
909 (define (move->fdes fd/port fd)
910 (cond ((integer? fd/port)
911 (dup->fdes fd/port fd)
912 (close fd/port)
913 fd)
914 (else
915 (primitive-move->fdes fd/port fd)
916 (set-port-revealed! fd/port 1)
917 fd/port)))
918
919 (define (release-port-handle port)
920 (let ((revealed (port-revealed port)))
921 (if (> revealed 0)
922 (set-port-revealed! port (- revealed 1)))))
923
924 (define dup->port
925 (case-lambda
926 ((port/fd mode)
927 (fdopen (dup->fdes port/fd) mode))
928 ((port/fd mode new-fd)
929 (let ((port (fdopen (dup->fdes port/fd new-fd) mode)))
930 (set-port-revealed! port 1)
931 port))))
932
933 (define dup->inport
934 (case-lambda
935 ((port/fd)
936 (dup->port port/fd "r"))
937 ((port/fd new-fd)
938 (dup->port port/fd "r" new-fd))))
939
940 (define dup->outport
941 (case-lambda
942 ((port/fd)
943 (dup->port port/fd "w"))
944 ((port/fd new-fd)
945 (dup->port port/fd "w" new-fd))))
946
947 (define dup
948 (case-lambda
949 ((port/fd)
950 (if (integer? port/fd)
951 (dup->fdes port/fd)
952 (dup->port port/fd (port-mode port/fd))))
953 ((port/fd new-fd)
954 (if (integer? port/fd)
955 (dup->fdes port/fd new-fd)
956 (dup->port port/fd (port-mode port/fd) new-fd)))))
957
958 (define (duplicate-port port modes)
959 (dup->port port modes))
960
961 (define (fdes->inport fdes)
962 (let loop ((rest-ports (fdes->ports fdes)))
963 (cond ((null? rest-ports)
964 (let ((result (fdopen fdes "r")))
965 (set-port-revealed! result 1)
966 result))
967 ((input-port? (car rest-ports))
968 (set-port-revealed! (car rest-ports)
969 (+ (port-revealed (car rest-ports)) 1))
970 (car rest-ports))
971 (else
972 (loop (cdr rest-ports))))))
973
974 (define (fdes->outport fdes)
975 (let loop ((rest-ports (fdes->ports fdes)))
976 (cond ((null? rest-ports)
977 (let ((result (fdopen fdes "w")))
978 (set-port-revealed! result 1)
979 result))
980 ((output-port? (car rest-ports))
981 (set-port-revealed! (car rest-ports)
982 (+ (port-revealed (car rest-ports)) 1))
983 (car rest-ports))
984 (else
985 (loop (cdr rest-ports))))))
986
987 (define (port->fdes port)
988 (set-port-revealed! port (+ (port-revealed port) 1))
989 (fileno port))
990
991 (define (setenv name value)
992 (if value
993 (putenv (string-append name "=" value))
994 (putenv name)))
995
996 (define (unsetenv name)
997 "Remove the entry for NAME from the environment."
998 (putenv name))
999
1000 \f
1001
1002 ;;; {Load Paths}
1003 ;;;
1004
1005 (define (in-vicinity vicinity file)
1006 (let ((tail (let ((len (string-length vicinity)))
1007 (if (zero? len)
1008 #f
1009 (string-ref vicinity (- len 1))))))
1010 (string-append vicinity
1011 (if (or (not tail)
1012 (eq? tail #\/))
1013 ""
1014 "/")
1015 file)))
1016
1017 \f
1018
1019 ;;; {Help for scm_shell}
1020 ;;;
1021 ;;; The argument-processing code used by Guile-based shells generates
1022 ;;; Scheme code based on the argument list. This page contains help
1023 ;;; functions for the code it generates.
1024 ;;;
1025
1026 (define (command-line) (program-arguments))
1027
1028 ;; This is mostly for the internal use of the code generated by
1029 ;; scm_compile_shell_switches.
1030
1031 (define (turn-on-debugging)
1032 (debug-enable 'debug)
1033 (debug-enable 'backtrace)
1034 (read-enable 'positions))
1035
1036 (define (load-user-init)
1037 (let* ((home (or (getenv "HOME")
1038 (false-if-exception (passwd:dir (getpwuid (getuid))))
1039 "/")) ;; fallback for cygwin etc.
1040 (init-file (in-vicinity home ".guile")))
1041 (if (file-exists? init-file)
1042 (primitive-load init-file))))
1043
1044 \f
1045
1046 ;;; {The interpreter stack}
1047 ;;;
1048
1049 ;; %stacks defined in stacks.c
1050 (define (%start-stack tag thunk)
1051 (let ((prompt-tag (make-prompt-tag "start-stack")))
1052 (call-with-prompt
1053 prompt-tag
1054 (lambda ()
1055 (with-fluids ((%stacks (acons tag prompt-tag
1056 (or (fluid-ref %stacks) '()))))
1057 (thunk)))
1058 (lambda (k . args)
1059 (%start-stack tag (lambda () (apply k args)))))))
1060 (define-syntax start-stack
1061 (syntax-rules ()
1062 ((_ tag exp)
1063 (%start-stack tag (lambda () exp)))))
1064
1065 \f
1066
1067 ;;; {Loading by paths}
1068 ;;;
1069
1070 ;;; Load a Scheme source file named NAME, searching for it in the
1071 ;;; directories listed in %load-path, and applying each of the file
1072 ;;; name extensions listed in %load-extensions.
1073 (define (load-from-path name)
1074 (start-stack 'load-stack
1075 (primitive-load-path name)))
1076
1077 (define %load-verbosely #f)
1078 (define (assert-load-verbosity v) (set! %load-verbosely v))
1079
1080 (define (%load-announce file)
1081 (if %load-verbosely
1082 (with-output-to-port (current-error-port)
1083 (lambda ()
1084 (display ";;; ")
1085 (display "loading ")
1086 (display file)
1087 (newline)
1088 (force-output)))))
1089
1090 (set! %load-hook %load-announce)
1091
1092 (define* (load name #:optional reader)
1093 ;; Returns the .go file corresponding to `name'. Does not search load
1094 ;; paths, only the fallback path. If the .go file is missing or out of
1095 ;; date, and autocompilation is enabled, will try autocompilation, just
1096 ;; as primitive-load-path does internally. primitive-load is
1097 ;; unaffected. Returns #f if autocompilation failed or was disabled.
1098 ;;
1099 ;; NB: Unless we need to compile the file, this function should not cause
1100 ;; (system base compile) to be loaded up. For that reason compiled-file-name
1101 ;; partially duplicates functionality from (system base compile).
1102 (define (compiled-file-name canon-path)
1103 (and %compile-fallback-path
1104 (string-append
1105 %compile-fallback-path
1106 ;; no need for '/' separator here, canon-path is absolute
1107 canon-path
1108 (cond ((or (null? %load-compiled-extensions)
1109 (string-null? (car %load-compiled-extensions)))
1110 (warn "invalid %load-compiled-extensions"
1111 %load-compiled-extensions)
1112 ".go")
1113 (else (car %load-compiled-extensions))))))
1114 (define (fresh-compiled-file-name go-path)
1115 (catch #t
1116 (lambda ()
1117 (let* ((scmstat (stat name))
1118 (gostat (stat go-path #f)))
1119 (if (and gostat
1120 (or (> (stat:mtime gostat) (stat:mtime scmstat))
1121 (and (= (stat:mtime gostat) (stat:mtime scmstat))
1122 (>= (stat:mtimensec gostat)
1123 (stat:mtimensec scmstat)))))
1124 go-path
1125 (begin
1126 (if gostat
1127 (format (current-error-port)
1128 ";;; note: source file ~a\n;;; newer than compiled ~a\n"
1129 name go-path))
1130 (cond
1131 (%load-should-autocompile
1132 (%warn-autocompilation-enabled)
1133 (format (current-error-port) ";;; compiling ~a\n" name)
1134 ;; This use of @ is (ironically?) boot-safe, as modules have
1135 ;; not been booted yet, so the resolve-module call in psyntax
1136 ;; doesn't try to load a module, and compile-file will be
1137 ;; treated as a function, not a macro.
1138 (let ((cfn ((@ (system base compile) compile-file) name
1139 #:env (current-module))))
1140 (format (current-error-port) ";;; compiled ~a\n" cfn)
1141 cfn))
1142 (else #f))))))
1143 (lambda (k . args)
1144 (format (current-error-port)
1145 ";;; WARNING: compilation of ~a failed:\n;;; key ~a, throw_args ~s\n"
1146 name k args)
1147 #f)))
1148 (with-fluids ((current-reader reader))
1149 (let ((cfn (and=> (and=> (false-if-exception (canonicalize-path name))
1150 compiled-file-name)
1151 fresh-compiled-file-name)))
1152 (if cfn
1153 (load-compiled cfn)
1154 (start-stack 'load-stack
1155 (primitive-load name))))))
1156
1157 \f
1158
1159 ;;; {Reader Extensions}
1160 ;;;
1161 ;;; Reader code for various "#c" forms.
1162 ;;;
1163
1164 (define read-eval? (make-fluid))
1165 (fluid-set! read-eval? #f)
1166 (read-hash-extend #\.
1167 (lambda (c port)
1168 (if (fluid-ref read-eval?)
1169 (eval (read port) (interaction-environment))
1170 (error
1171 "#. read expansion found and read-eval? is #f."))))
1172
1173 \f
1174
1175 ;;; {Low Level Modules}
1176 ;;;
1177 ;;; These are the low level data structures for modules.
1178 ;;;
1179 ;;; Every module object is of the type 'module-type', which is a record
1180 ;;; consisting of the following members:
1181 ;;;
1182 ;;; - eval-closure: the function that defines for its module the strategy that
1183 ;;; shall be followed when looking up symbols in the module.
1184 ;;;
1185 ;;; An eval-closure is a function taking two arguments: the symbol to be
1186 ;;; looked up and a boolean value telling whether a binding for the symbol
1187 ;;; should be created if it does not exist yet. If the symbol lookup
1188 ;;; succeeded (either because an existing binding was found or because a new
1189 ;;; binding was created), a variable object representing the binding is
1190 ;;; returned. Otherwise, the value #f is returned. Note that the eval
1191 ;;; closure does not take the module to be searched as an argument: During
1192 ;;; construction of the eval-closure, the eval-closure has to store the
1193 ;;; module it belongs to in its environment. This means, that any
1194 ;;; eval-closure can belong to only one module.
1195 ;;;
1196 ;;; The eval-closure of a module can be defined arbitrarily. However, three
1197 ;;; special cases of eval-closures are to be distinguished: During startup
1198 ;;; the module system is not yet activated. In this phase, no modules are
1199 ;;; defined and all bindings are automatically stored by the system in the
1200 ;;; pre-modules-obarray. Since no eval-closures exist at this time, the
1201 ;;; functions which require an eval-closure as their argument need to be
1202 ;;; passed the value #f.
1203 ;;;
1204 ;;; The other two special cases of eval-closures are the
1205 ;;; standard-eval-closure and the standard-interface-eval-closure. Both
1206 ;;; behave equally for the case that no new binding is to be created. The
1207 ;;; difference between the two comes in, when the boolean argument to the
1208 ;;; eval-closure indicates that a new binding shall be created if it is not
1209 ;;; found.
1210 ;;;
1211 ;;; Given that no new binding shall be created, both standard eval-closures
1212 ;;; define the following standard strategy of searching bindings in the
1213 ;;; module: First, the module's obarray is searched for the symbol. Second,
1214 ;;; if no binding for the symbol was found in the module's obarray, the
1215 ;;; module's binder procedure is exececuted. If this procedure did not
1216 ;;; return a binding for the symbol, the modules referenced in the module's
1217 ;;; uses list are recursively searched for a binding of the symbol. If the
1218 ;;; binding can not be found in these modules also, the symbol lookup has
1219 ;;; failed.
1220 ;;;
1221 ;;; If a new binding shall be created, the standard-interface-eval-closure
1222 ;;; immediately returns indicating failure. That is, it does not even try
1223 ;;; to look up the symbol. In contrast, the standard-eval-closure would
1224 ;;; first search the obarray, and if no binding was found there, would
1225 ;;; create a new binding in the obarray, therefore not calling the binder
1226 ;;; procedure or searching the modules in the uses list.
1227 ;;;
1228 ;;; The explanation of the following members obarray, binder and uses
1229 ;;; assumes that the symbol lookup follows the strategy that is defined in
1230 ;;; the standard-eval-closure and the standard-interface-eval-closure.
1231 ;;;
1232 ;;; - obarray: a hash table that maps symbols to variable objects. In this
1233 ;;; hash table, the definitions are found that are local to the module (that
1234 ;;; is, not imported from other modules). When looking up bindings in the
1235 ;;; module, this hash table is searched first.
1236 ;;;
1237 ;;; - binder: either #f or a function taking a module and a symbol argument.
1238 ;;; If it is a function it is called after the obarray has been
1239 ;;; unsuccessfully searched for a binding. It then can provide bindings
1240 ;;; that would otherwise not be found locally in the module.
1241 ;;;
1242 ;;; - uses: a list of modules from which non-local bindings can be inherited.
1243 ;;; These modules are the third place queried for bindings after the obarray
1244 ;;; has been unsuccessfully searched and the binder function did not deliver
1245 ;;; a result either.
1246 ;;;
1247 ;;; - transformer: either #f or a function taking a scheme expression as
1248 ;;; delivered by read. If it is a function, it will be called to perform
1249 ;;; syntax transformations (e. g. makro expansion) on the given scheme
1250 ;;; expression. The output of the transformer function will then be passed
1251 ;;; to Guile's internal memoizer. This means that the output must be valid
1252 ;;; scheme code. The only exception is, that the output may make use of the
1253 ;;; syntax extensions provided to identify the modules that a binding
1254 ;;; belongs to.
1255 ;;;
1256 ;;; - name: the name of the module. This is used for all kinds of printing
1257 ;;; outputs. In certain places the module name also serves as a way of
1258 ;;; identification. When adding a module to the uses list of another
1259 ;;; module, it is made sure that the new uses list will not contain two
1260 ;;; modules of the same name.
1261 ;;;
1262 ;;; - kind: classification of the kind of module. The value is (currently?)
1263 ;;; only used for printing. It has no influence on how a module is treated.
1264 ;;; Currently the following values are used when setting the module kind:
1265 ;;; 'module, 'directory, 'interface, 'custom-interface. If no explicit kind
1266 ;;; is set, it defaults to 'module.
1267 ;;;
1268 ;;; - duplicates-handlers: a list of procedures that get called to make a
1269 ;;; choice between two duplicate bindings when name clashes occur. See the
1270 ;;; `duplicate-handlers' global variable below.
1271 ;;;
1272 ;;; - observers: a list of procedures that get called when the module is
1273 ;;; modified.
1274 ;;;
1275 ;;; - weak-observers: a weak-key hash table of procedures that get called
1276 ;;; when the module is modified. See `module-observe-weak' for details.
1277 ;;;
1278 ;;; In addition, the module may (must?) contain a binding for
1279 ;;; `%module-public-interface'. This variable should be bound to a module
1280 ;;; representing the exported interface of a module. See the
1281 ;;; `module-public-interface' and `module-export!' procedures.
1282 ;;;
1283 ;;; !!! warning: The interface to lazy binder procedures is going
1284 ;;; to be changed in an incompatible way to permit all the basic
1285 ;;; module ops to be virtualized.
1286 ;;;
1287 ;;; (make-module size use-list lazy-binding-proc) => module
1288 ;;; module-{obarray,uses,binder}[|-set!]
1289 ;;; (module? obj) => [#t|#f]
1290 ;;; (module-locally-bound? module symbol) => [#t|#f]
1291 ;;; (module-bound? module symbol) => [#t|#f]
1292 ;;; (module-symbol-locally-interned? module symbol) => [#t|#f]
1293 ;;; (module-symbol-interned? module symbol) => [#t|#f]
1294 ;;; (module-local-variable module symbol) => [#<variable ...> | #f]
1295 ;;; (module-variable module symbol) => [#<variable ...> | #f]
1296 ;;; (module-symbol-binding module symbol opt-value)
1297 ;;; => [ <obj> | opt-value | an error occurs ]
1298 ;;; (module-make-local-var! module symbol) => #<variable...>
1299 ;;; (module-add! module symbol var) => unspecified
1300 ;;; (module-remove! module symbol) => unspecified
1301 ;;; (module-for-each proc module) => unspecified
1302 ;;; (make-scm-module) => module ; a lazy copy of the symhash module
1303 ;;; (set-current-module module) => unspecified
1304 ;;; (current-module) => #<module...>
1305 ;;;
1306 ;;;
1307
1308 \f
1309
1310 ;;; {Printing Modules}
1311 ;;;
1312
1313 ;; This is how modules are printed. You can re-define it.
1314 (define (%print-module mod port)
1315 (display "#<" port)
1316 (display (or (module-kind mod) "module") port)
1317 (display " " port)
1318 (display (module-name mod) port)
1319 (display " " port)
1320 (display (number->string (object-address mod) 16) port)
1321 (display ">" port))
1322
1323 (letrec-syntax
1324 ;; Locally extend the syntax to allow record accessors to be defined at
1325 ;; compile-time. Cache the rtd locally to the constructor, the getters and
1326 ;; the setters, in order to allow for redefinition of the record type; not
1327 ;; relevant in the case of modules, but perhaps if we make this public, it
1328 ;; could matter.
1329
1330 ((define-record-type
1331 (lambda (x)
1332 (define (make-id scope . fragments)
1333 (datum->syntax #'scope
1334 (apply symbol-append
1335 (map (lambda (x)
1336 (if (symbol? x) x (syntax->datum x)))
1337 fragments))))
1338
1339 (define (getter rtd type-name field slot)
1340 #`(define #,(make-id rtd type-name '- field)
1341 (let ((rtd #,rtd))
1342 (lambda (#,type-name)
1343 (if (eq? (struct-vtable #,type-name) rtd)
1344 (struct-ref #,type-name #,slot)
1345 (%record-type-error rtd #,type-name))))))
1346
1347 (define (setter rtd type-name field slot)
1348 #`(define #,(make-id rtd 'set- type-name '- field '!)
1349 (let ((rtd #,rtd))
1350 (lambda (#,type-name val)
1351 (if (eq? (struct-vtable #,type-name) rtd)
1352 (struct-set! #,type-name #,slot val)
1353 (%record-type-error rtd #,type-name))))))
1354
1355 (define (accessors rtd type-name fields n exp)
1356 (syntax-case fields ()
1357 (() exp)
1358 (((field #:no-accessors) field* ...) (identifier? #'field)
1359 (accessors rtd type-name #'(field* ...) (1+ n)
1360 exp))
1361 (((field #:no-setter) field* ...) (identifier? #'field)
1362 (accessors rtd type-name #'(field* ...) (1+ n)
1363 #`(begin #,exp
1364 #,(getter rtd type-name #'field n))))
1365 (((field #:no-getter) field* ...) (identifier? #'field)
1366 (accessors rtd type-name #'(field* ...) (1+ n)
1367 #`(begin #,exp
1368 #,(setter rtd type-name #'field n))))
1369 ((field field* ...) (identifier? #'field)
1370 (accessors rtd type-name #'(field* ...) (1+ n)
1371 #`(begin #,exp
1372 #,(getter rtd type-name #'field n)
1373 #,(setter rtd type-name #'field n))))))
1374
1375 (define (predicate rtd type-name fields exp)
1376 (accessors
1377 rtd type-name fields 0
1378 #`(begin
1379 #,exp
1380 (define (#,(make-id rtd type-name '?) obj)
1381 (and (struct? obj) (eq? (struct-vtable obj) #,rtd))))))
1382
1383 (define (field-list fields)
1384 (syntax-case fields ()
1385 (() '())
1386 (((f . opts) . rest) (identifier? #'f)
1387 (cons #'f (field-list #'rest)))
1388 ((f . rest) (identifier? #'f)
1389 (cons #'f (field-list #'rest)))))
1390
1391 (define (constructor rtd type-name fields exp)
1392 (let ((ctor (make-id rtd type-name '-constructor))
1393 (args (field-list fields)))
1394 (predicate rtd type-name fields
1395 #`(begin #,exp
1396 (define #,ctor
1397 (let ((rtd #,rtd))
1398 (lambda #,args
1399 (make-struct rtd 0 #,@args))))
1400 (struct-set! #,rtd (+ vtable-offset-user 2)
1401 #,ctor)))))
1402
1403 (define (type type-name printer fields)
1404 (define (make-layout)
1405 (let lp ((fields fields) (slots '()))
1406 (syntax-case fields ()
1407 (() (datum->syntax #'here
1408 (make-struct-layout
1409 (apply string-append slots))))
1410 ((_ . rest) (lp #'rest (cons "pw" slots))))))
1411
1412 (let ((rtd (make-id type-name type-name '-type)))
1413 (constructor rtd type-name fields
1414 #`(begin
1415 (define #,rtd
1416 (make-struct record-type-vtable 0
1417 '#,(make-layout)
1418 #,printer
1419 '#,type-name
1420 '#,(field-list fields)))
1421 (set-struct-vtable-name! #,rtd '#,type-name)))))
1422
1423 (syntax-case x ()
1424 ((_ type-name printer (field ...))
1425 (type #'type-name #'printer #'(field ...)))))))
1426
1427 ;; module-type
1428 ;;
1429 ;; A module is characterized by an obarray in which local symbols
1430 ;; are interned, a list of modules, "uses", from which non-local
1431 ;; bindings can be inherited, and an optional lazy-binder which
1432 ;; is a (CLOSURE module symbol) which, as a last resort, can provide
1433 ;; bindings that would otherwise not be found locally in the module.
1434 ;;
1435 ;; NOTE: If you change the set of fields or their order, you also need to
1436 ;; change the constants in libguile/modules.h.
1437 ;;
1438 ;; NOTE: The getter `module-eval-closure' is used in libguile/modules.c.
1439 ;; NOTE: The getter `module-transfomer' is defined libguile/modules.c.
1440 ;; NOTE: The getter `module-name' is defined later, due to boot reasons.
1441 ;; NOTE: The getter `module-public-interface' is used in libguile/modules.c.
1442 ;;
1443 (define-record-type module
1444 (lambda (obj port) (%print-module obj port))
1445 (obarray
1446 uses
1447 binder
1448 eval-closure
1449 (transformer #:no-getter)
1450 (name #:no-getter)
1451 kind
1452 duplicates-handlers
1453 (import-obarray #:no-setter)
1454 observers
1455 (weak-observers #:no-setter)
1456 version
1457 submodules
1458 submodule-binder
1459 public-interface
1460 filename)))
1461
1462
1463 ;; make-module &opt size uses binder
1464 ;;
1465 ;; Create a new module, perhaps with a particular size of obarray,
1466 ;; initial uses list, or binding procedure.
1467 ;;
1468 (define* (make-module #:optional (size 31) (uses '()) (binder #f))
1469 (define %default-import-size
1470 ;; Typical number of imported bindings actually used by a module.
1471 600)
1472
1473 (if (not (integer? size))
1474 (error "Illegal size to make-module." size))
1475 (if (not (and (list? uses)
1476 (and-map module? uses)))
1477 (error "Incorrect use list." uses))
1478 (if (and binder (not (procedure? binder)))
1479 (error
1480 "Lazy-binder expected to be a procedure or #f." binder))
1481
1482 (let ((module (module-constructor (make-hash-table size)
1483 uses binder #f macroexpand
1484 #f #f #f
1485 (make-hash-table %default-import-size)
1486 '()
1487 (make-weak-key-hash-table 31) #f
1488 (make-hash-table 7) #f #f #f)))
1489
1490 ;; We can't pass this as an argument to module-constructor,
1491 ;; because we need it to close over a pointer to the module
1492 ;; itself.
1493 (set-module-eval-closure! module (standard-eval-closure module))
1494
1495 module))
1496
1497
1498 \f
1499
1500 ;;; {Observer protocol}
1501 ;;;
1502
1503 (define (module-observe module proc)
1504 (set-module-observers! module (cons proc (module-observers module)))
1505 (cons module proc))
1506
1507 (define* (module-observe-weak module observer-id #:optional (proc observer-id))
1508 ;; Register PROC as an observer of MODULE under name OBSERVER-ID (which can
1509 ;; be any Scheme object). PROC is invoked and passed MODULE any time
1510 ;; MODULE is modified. PROC gets unregistered when OBSERVER-ID gets GC'd
1511 ;; (thus, it is never unregistered if OBSERVER-ID is an immediate value,
1512 ;; for instance).
1513
1514 ;; The two-argument version is kept for backward compatibility: when called
1515 ;; with two arguments, the observer gets unregistered when closure PROC
1516 ;; gets GC'd (making it impossible to use an anonymous lambda for PROC).
1517 (hashq-set! (module-weak-observers module) observer-id proc))
1518
1519 (define (module-unobserve token)
1520 (let ((module (car token))
1521 (id (cdr token)))
1522 (if (integer? id)
1523 (hash-remove! (module-weak-observers module) id)
1524 (set-module-observers! module (delq1! id (module-observers module)))))
1525 *unspecified*)
1526
1527 (define module-defer-observers #f)
1528 (define module-defer-observers-mutex (make-mutex 'recursive))
1529 (define module-defer-observers-table (make-hash-table))
1530
1531 (define (module-modified m)
1532 (if module-defer-observers
1533 (hash-set! module-defer-observers-table m #t)
1534 (module-call-observers m)))
1535
1536 ;;; This function can be used to delay calls to observers so that they
1537 ;;; can be called once only in the face of massive updating of modules.
1538 ;;;
1539 (define (call-with-deferred-observers thunk)
1540 (dynamic-wind
1541 (lambda ()
1542 (lock-mutex module-defer-observers-mutex)
1543 (set! module-defer-observers #t))
1544 thunk
1545 (lambda ()
1546 (set! module-defer-observers #f)
1547 (hash-for-each (lambda (m dummy)
1548 (module-call-observers m))
1549 module-defer-observers-table)
1550 (hash-clear! module-defer-observers-table)
1551 (unlock-mutex module-defer-observers-mutex))))
1552
1553 (define (module-call-observers m)
1554 (for-each (lambda (proc) (proc m)) (module-observers m))
1555
1556 ;; We assume that weak observers don't (un)register themselves as they are
1557 ;; called since this would preclude proper iteration over the hash table
1558 ;; elements.
1559 (hash-for-each (lambda (id proc) (proc m)) (module-weak-observers m)))
1560
1561 \f
1562
1563 ;;; {Module Searching in General}
1564 ;;;
1565 ;;; We sometimes want to look for properties of a symbol
1566 ;;; just within the obarray of one module. If the property
1567 ;;; holds, then it is said to hold ``locally'' as in, ``The symbol
1568 ;;; DISPLAY is locally rebound in the module `safe-guile'.''
1569 ;;;
1570 ;;;
1571 ;;; Other times, we want to test for a symbol property in the obarray
1572 ;;; of M and, if it is not found there, try each of the modules in the
1573 ;;; uses list of M. This is the normal way of testing for some
1574 ;;; property, so we state these properties without qualification as
1575 ;;; in: ``The symbol 'fnord is interned in module M because it is
1576 ;;; interned locally in module M2 which is a member of the uses list
1577 ;;; of M.''
1578 ;;;
1579
1580 ;; module-search fn m
1581 ;;
1582 ;; return the first non-#f result of FN applied to M and then to
1583 ;; the modules in the uses of m, and so on recursively. If all applications
1584 ;; return #f, then so does this function.
1585 ;;
1586 (define (module-search fn m v)
1587 (define (loop pos)
1588 (and (pair? pos)
1589 (or (module-search fn (car pos) v)
1590 (loop (cdr pos)))))
1591 (or (fn m v)
1592 (loop (module-uses m))))
1593
1594
1595 ;;; {Is a symbol bound in a module?}
1596 ;;;
1597 ;;; Symbol S in Module M is bound if S is interned in M and if the binding
1598 ;;; of S in M has been set to some well-defined value.
1599 ;;;
1600
1601 ;; module-locally-bound? module symbol
1602 ;;
1603 ;; Is a symbol bound (interned and defined) locally in a given module?
1604 ;;
1605 (define (module-locally-bound? m v)
1606 (let ((var (module-local-variable m v)))
1607 (and var
1608 (variable-bound? var))))
1609
1610 ;; module-bound? module symbol
1611 ;;
1612 ;; Is a symbol bound (interned and defined) anywhere in a given module
1613 ;; or its uses?
1614 ;;
1615 (define (module-bound? m v)
1616 (let ((var (module-variable m v)))
1617 (and var
1618 (variable-bound? var))))
1619
1620 ;;; {Is a symbol interned in a module?}
1621 ;;;
1622 ;;; Symbol S in Module M is interned if S occurs in
1623 ;;; of S in M has been set to some well-defined value.
1624 ;;;
1625 ;;; It is possible to intern a symbol in a module without providing
1626 ;;; an initial binding for the corresponding variable. This is done
1627 ;;; with:
1628 ;;; (module-add! module symbol (make-undefined-variable))
1629 ;;;
1630 ;;; In that case, the symbol is interned in the module, but not
1631 ;;; bound there. The unbound symbol shadows any binding for that
1632 ;;; symbol that might otherwise be inherited from a member of the uses list.
1633 ;;;
1634
1635 (define (module-obarray-get-handle ob key)
1636 ((if (symbol? key) hashq-get-handle hash-get-handle) ob key))
1637
1638 (define (module-obarray-ref ob key)
1639 ((if (symbol? key) hashq-ref hash-ref) ob key))
1640
1641 (define (module-obarray-set! ob key val)
1642 ((if (symbol? key) hashq-set! hash-set!) ob key val))
1643
1644 (define (module-obarray-remove! ob key)
1645 ((if (symbol? key) hashq-remove! hash-remove!) ob key))
1646
1647 ;; module-symbol-locally-interned? module symbol
1648 ;;
1649 ;; is a symbol interned (not neccessarily defined) locally in a given module
1650 ;; or its uses? Interned symbols shadow inherited bindings even if
1651 ;; they are not themselves bound to a defined value.
1652 ;;
1653 (define (module-symbol-locally-interned? m v)
1654 (not (not (module-obarray-get-handle (module-obarray m) v))))
1655
1656 ;; module-symbol-interned? module symbol
1657 ;;
1658 ;; is a symbol interned (not neccessarily defined) anywhere in a given module
1659 ;; or its uses? Interned symbols shadow inherited bindings even if
1660 ;; they are not themselves bound to a defined value.
1661 ;;
1662 (define (module-symbol-interned? m v)
1663 (module-search module-symbol-locally-interned? m v))
1664
1665
1666 ;;; {Mapping modules x symbols --> variables}
1667 ;;;
1668
1669 ;; module-local-variable module symbol
1670 ;; return the local variable associated with a MODULE and SYMBOL.
1671 ;;
1672 ;;; This function is very important. It is the only function that can
1673 ;;; return a variable from a module other than the mutators that store
1674 ;;; new variables in modules. Therefore, this function is the location
1675 ;;; of the "lazy binder" hack.
1676 ;;;
1677 ;;; If symbol is defined in MODULE, and if the definition binds symbol
1678 ;;; to a variable, return that variable object.
1679 ;;;
1680 ;;; If the symbols is not found at first, but the module has a lazy binder,
1681 ;;; then try the binder.
1682 ;;;
1683 ;;; If the symbol is not found at all, return #f.
1684 ;;;
1685 ;;; (This is now written in C, see `modules.c'.)
1686 ;;;
1687
1688 ;;; {Mapping modules x symbols --> bindings}
1689 ;;;
1690 ;;; These are similar to the mapping to variables, except that the
1691 ;;; variable is dereferenced.
1692 ;;;
1693
1694 ;; module-symbol-binding module symbol opt-value
1695 ;;
1696 ;; return the binding of a variable specified by name within
1697 ;; a given module, signalling an error if the variable is unbound.
1698 ;; If the OPT-VALUE is passed, then instead of signalling an error,
1699 ;; return OPT-VALUE.
1700 ;;
1701 (define (module-symbol-local-binding m v . opt-val)
1702 (let ((var (module-local-variable m v)))
1703 (if (and var (variable-bound? var))
1704 (variable-ref var)
1705 (if (not (null? opt-val))
1706 (car opt-val)
1707 (error "Locally unbound variable." v)))))
1708
1709 ;; module-symbol-binding module symbol opt-value
1710 ;;
1711 ;; return the binding of a variable specified by name within
1712 ;; a given module, signalling an error if the variable is unbound.
1713 ;; If the OPT-VALUE is passed, then instead of signalling an error,
1714 ;; return OPT-VALUE.
1715 ;;
1716 (define (module-symbol-binding m v . opt-val)
1717 (let ((var (module-variable m v)))
1718 (if (and var (variable-bound? var))
1719 (variable-ref var)
1720 (if (not (null? opt-val))
1721 (car opt-val)
1722 (error "Unbound variable." v)))))
1723
1724
1725 \f
1726
1727 ;;; {Adding Variables to Modules}
1728 ;;;
1729
1730 ;; module-make-local-var! module symbol
1731 ;;
1732 ;; ensure a variable for V in the local namespace of M.
1733 ;; If no variable was already there, then create a new and uninitialzied
1734 ;; variable.
1735 ;;
1736 ;; This function is used in modules.c.
1737 ;;
1738 (define (module-make-local-var! m v)
1739 (or (let ((b (module-obarray-ref (module-obarray m) v)))
1740 (and (variable? b)
1741 (begin
1742 ;; Mark as modified since this function is called when
1743 ;; the standard eval closure defines a binding
1744 (module-modified m)
1745 b)))
1746
1747 ;; Create a new local variable.
1748 (let ((local-var (make-undefined-variable)))
1749 (module-add! m v local-var)
1750 local-var)))
1751
1752 ;; module-ensure-local-variable! module symbol
1753 ;;
1754 ;; Ensure that there is a local variable in MODULE for SYMBOL. If
1755 ;; there is no binding for SYMBOL, create a new uninitialized
1756 ;; variable. Return the local variable.
1757 ;;
1758 (define (module-ensure-local-variable! module symbol)
1759 (or (module-local-variable module symbol)
1760 (let ((var (make-undefined-variable)))
1761 (module-add! module symbol var)
1762 var)))
1763
1764 ;; module-add! module symbol var
1765 ;;
1766 ;; ensure a particular variable for V in the local namespace of M.
1767 ;;
1768 (define (module-add! m v var)
1769 (if (not (variable? var))
1770 (error "Bad variable to module-add!" var))
1771 (module-obarray-set! (module-obarray m) v var)
1772 (module-modified m))
1773
1774 ;; module-remove!
1775 ;;
1776 ;; make sure that a symbol is undefined in the local namespace of M.
1777 ;;
1778 (define (module-remove! m v)
1779 (module-obarray-remove! (module-obarray m) v)
1780 (module-modified m))
1781
1782 (define (module-clear! m)
1783 (hash-clear! (module-obarray m))
1784 (module-modified m))
1785
1786 ;; MODULE-FOR-EACH -- exported
1787 ;;
1788 ;; Call PROC on each symbol in MODULE, with arguments of (SYMBOL VARIABLE).
1789 ;;
1790 (define (module-for-each proc module)
1791 (hash-for-each proc (module-obarray module)))
1792
1793 (define (module-map proc module)
1794 (hash-map->list proc (module-obarray module)))
1795
1796 ;; Submodules
1797 ;;
1798 ;; Modules exist in a separate namespace from values, because you generally do
1799 ;; not want the name of a submodule, which you might not even use, to collide
1800 ;; with local variables that happen to be named the same as the submodule.
1801 ;;
1802 (define (module-ref-submodule module name)
1803 (or (hashq-ref (module-submodules module) name)
1804 (and (module-submodule-binder module)
1805 ((module-submodule-binder module) module name))))
1806
1807 (define (module-define-submodule! module name submodule)
1808 (hashq-set! (module-submodules module) name submodule))
1809
1810 ;; It used to be, however, that module names were also present in the
1811 ;; value namespace. When we enable deprecated code, we preserve this
1812 ;; legacy behavior.
1813 ;;
1814 ;; These shims are defined here instead of in deprecated.scm because we
1815 ;; need their definitions before loading other modules.
1816 ;;
1817 (begin-deprecated
1818 (define (module-ref-submodule module name)
1819 (or (hashq-ref (module-submodules module) name)
1820 (and (module-submodule-binder module)
1821 ((module-submodule-binder module) module name))
1822 (let ((var (module-local-variable module name)))
1823 (and var (variable-bound? var) (module? (variable-ref var))
1824 (begin
1825 (warn "module" module "not in submodules table")
1826 (variable-ref var))))))
1827
1828 (define (module-define-submodule! module name submodule)
1829 (let ((var (module-local-variable module name)))
1830 (if (and var
1831 (or (not (variable-bound? var))
1832 (not (module? (variable-ref var)))))
1833 (warn "defining module" module ": not overriding local definition" var)
1834 (module-define! module name submodule)))
1835 (hashq-set! (module-submodules module) name submodule)))
1836
1837 \f
1838
1839 ;;; {Module-based Loading}
1840 ;;;
1841
1842 (define (save-module-excursion thunk)
1843 (let ((inner-module (current-module))
1844 (outer-module #f))
1845 (dynamic-wind (lambda ()
1846 (set! outer-module (current-module))
1847 (set-current-module inner-module)
1848 (set! inner-module #f))
1849 thunk
1850 (lambda ()
1851 (set! inner-module (current-module))
1852 (set-current-module outer-module)
1853 (set! outer-module #f)))))
1854
1855 (define basic-load load)
1856
1857 (define* (load-module filename #:optional reader)
1858 (save-module-excursion
1859 (lambda ()
1860 (let ((oldname (and (current-load-port)
1861 (port-filename (current-load-port)))))
1862 (basic-load (if (and oldname
1863 (> (string-length filename) 0)
1864 (not (char=? (string-ref filename 0) #\/))
1865 (not (string=? (dirname oldname) ".")))
1866 (string-append (dirname oldname) "/" filename)
1867 filename)
1868 reader)))))
1869
1870
1871 \f
1872
1873 ;;; {MODULE-REF -- exported}
1874 ;;;
1875
1876 ;; Returns the value of a variable called NAME in MODULE or any of its
1877 ;; used modules. If there is no such variable, then if the optional third
1878 ;; argument DEFAULT is present, it is returned; otherwise an error is signaled.
1879 ;;
1880 (define (module-ref module name . rest)
1881 (let ((variable (module-variable module name)))
1882 (if (and variable (variable-bound? variable))
1883 (variable-ref variable)
1884 (if (null? rest)
1885 (error "No variable named" name 'in module)
1886 (car rest) ; default value
1887 ))))
1888
1889 ;; MODULE-SET! -- exported
1890 ;;
1891 ;; Sets the variable called NAME in MODULE (or in a module that MODULE uses)
1892 ;; to VALUE; if there is no such variable, an error is signaled.
1893 ;;
1894 (define (module-set! module name value)
1895 (let ((variable (module-variable module name)))
1896 (if variable
1897 (variable-set! variable value)
1898 (error "No variable named" name 'in module))))
1899
1900 ;; MODULE-DEFINE! -- exported
1901 ;;
1902 ;; Sets the variable called NAME in MODULE to VALUE; if there is no such
1903 ;; variable, it is added first.
1904 ;;
1905 (define (module-define! module name value)
1906 (let ((variable (module-local-variable module name)))
1907 (if variable
1908 (begin
1909 (variable-set! variable value)
1910 (module-modified module))
1911 (let ((variable (make-variable value)))
1912 (module-add! module name variable)))))
1913
1914 ;; MODULE-DEFINED? -- exported
1915 ;;
1916 ;; Return #t iff NAME is defined in MODULE (or in a module that MODULE
1917 ;; uses)
1918 ;;
1919 (define (module-defined? module name)
1920 (let ((variable (module-variable module name)))
1921 (and variable (variable-bound? variable))))
1922
1923 ;; MODULE-USE! module interface
1924 ;;
1925 ;; Add INTERFACE to the list of interfaces used by MODULE.
1926 ;;
1927 (define (module-use! module interface)
1928 (if (not (or (eq? module interface)
1929 (memq interface (module-uses module))))
1930 (begin
1931 ;; Newly used modules must be appended rather than consed, so that
1932 ;; `module-variable' traverses the use list starting from the first
1933 ;; used module.
1934 (set-module-uses! module
1935 (append (filter (lambda (m)
1936 (not
1937 (equal? (module-name m)
1938 (module-name interface))))
1939 (module-uses module))
1940 (list interface)))
1941 (hash-clear! (module-import-obarray module))
1942 (module-modified module))))
1943
1944 ;; MODULE-USE-INTERFACES! module interfaces
1945 ;;
1946 ;; Same as MODULE-USE! but add multiple interfaces and check for duplicates
1947 ;;
1948 (define (module-use-interfaces! module interfaces)
1949 (set-module-uses! module
1950 (append (module-uses module) interfaces))
1951 (hash-clear! (module-import-obarray module))
1952 (module-modified module))
1953
1954 \f
1955
1956 ;;; {Recursive Namespaces}
1957 ;;;
1958 ;;; A hierarchical namespace emerges if we consider some module to be
1959 ;;; root, and submodules of that module to be nested namespaces.
1960 ;;;
1961 ;;; The routines here manage variable names in hierarchical namespace.
1962 ;;; Each variable name is a list of elements, looked up in successively nested
1963 ;;; modules.
1964 ;;;
1965 ;;; (nested-ref some-root-module '(foo bar baz))
1966 ;;; => <value of a variable named baz in the submodule bar of
1967 ;;; the submodule foo of some-root-module>
1968 ;;;
1969 ;;;
1970 ;;; There are:
1971 ;;;
1972 ;;; ;; a-root is a module
1973 ;;; ;; name is a list of symbols
1974 ;;;
1975 ;;; nested-ref a-root name
1976 ;;; nested-set! a-root name val
1977 ;;; nested-define! a-root name val
1978 ;;; nested-remove! a-root name
1979 ;;;
1980 ;;; These functions manipulate values in namespaces. For referencing the
1981 ;;; namespaces themselves, use the following:
1982 ;;;
1983 ;;; nested-ref-module a-root name
1984 ;;; nested-define-module! a-root name mod
1985 ;;;
1986 ;;; (current-module) is a natural choice for a root so for convenience there are
1987 ;;; also:
1988 ;;;
1989 ;;; local-ref name == nested-ref (current-module) name
1990 ;;; local-set! name val == nested-set! (current-module) name val
1991 ;;; local-define name val == nested-define! (current-module) name val
1992 ;;; local-remove name == nested-remove! (current-module) name
1993 ;;; local-ref-module name == nested-ref-module (current-module) name
1994 ;;; local-define-module! name m == nested-define-module! (current-module) name m
1995 ;;;
1996
1997
1998 (define (nested-ref root names)
1999 (if (null? names)
2000 root
2001 (let loop ((cur root)
2002 (head (car names))
2003 (tail (cdr names)))
2004 (if (null? tail)
2005 (module-ref cur head #f)
2006 (let ((cur (module-ref-submodule cur head)))
2007 (and cur
2008 (loop cur (car tail) (cdr tail))))))))
2009
2010 (define (nested-set! root names val)
2011 (let loop ((cur root)
2012 (head (car names))
2013 (tail (cdr names)))
2014 (if (null? tail)
2015 (module-set! cur head val)
2016 (let ((cur (module-ref-submodule cur head)))
2017 (if (not cur)
2018 (error "failed to resolve module" names)
2019 (loop cur (car tail) (cdr tail)))))))
2020
2021 (define (nested-define! root names val)
2022 (let loop ((cur root)
2023 (head (car names))
2024 (tail (cdr names)))
2025 (if (null? tail)
2026 (module-define! cur head val)
2027 (let ((cur (module-ref-submodule cur head)))
2028 (if (not cur)
2029 (error "failed to resolve module" names)
2030 (loop cur (car tail) (cdr tail)))))))
2031
2032 (define (nested-remove! root names)
2033 (let loop ((cur root)
2034 (head (car names))
2035 (tail (cdr names)))
2036 (if (null? tail)
2037 (module-remove! cur head)
2038 (let ((cur (module-ref-submodule cur head)))
2039 (if (not cur)
2040 (error "failed to resolve module" names)
2041 (loop cur (car tail) (cdr tail)))))))
2042
2043
2044 (define (nested-ref-module root names)
2045 (let loop ((cur root)
2046 (names names))
2047 (if (null? names)
2048 cur
2049 (let ((cur (module-ref-submodule cur (car names))))
2050 (and cur
2051 (loop cur (cdr names)))))))
2052
2053 (define (nested-define-module! root names module)
2054 (if (null? names)
2055 (error "can't redefine root module" root module)
2056 (let loop ((cur root)
2057 (head (car names))
2058 (tail (cdr names)))
2059 (if (null? tail)
2060 (module-define-submodule! cur head module)
2061 (let ((cur (or (module-ref-submodule cur head)
2062 (let ((m (make-module 31)))
2063 (set-module-kind! m 'directory)
2064 (set-module-name! m (append (module-name cur)
2065 (list head)))
2066 (module-define-submodule! cur head m)
2067 m))))
2068 (loop cur (car tail) (cdr tail)))))))
2069
2070
2071 (define (local-ref names)
2072 (nested-ref (current-module) names))
2073
2074 (define (local-set! names val)
2075 (nested-set! (current-module) names val))
2076
2077 (define (local-define names val)
2078 (nested-define! (current-module) names val))
2079
2080 (define (local-remove names)
2081 (nested-remove! (current-module) names))
2082
2083 (define (local-ref-module names)
2084 (nested-ref-module (current-module) names))
2085
2086 (define (local-define-module names mod)
2087 (nested-define-module! (current-module) names mod))
2088
2089
2090
2091 \f
2092
2093 ;;; {The (guile) module}
2094 ;;;
2095 ;;; The standard module, which has the core Guile bindings. Also called the
2096 ;;; "root module", as it is imported by many other modules, but it is not
2097 ;;; necessarily the root of anything; and indeed, the module named '() might be
2098 ;;; better thought of as a root.
2099 ;;;
2100
2101 (define (set-system-module! m s)
2102 (set-procedure-property! (module-eval-closure m) 'system-module s))
2103
2104 ;; The root module uses the pre-modules-obarray as its obarray. This
2105 ;; special obarray accumulates all bindings that have been established
2106 ;; before the module system is fully booted.
2107 ;;
2108 ;; (The obarray continues to be used by code that has been closed over
2109 ;; before the module system has been booted.)
2110 ;;
2111 (define the-root-module
2112 (let ((m (make-module 0)))
2113 (set-module-obarray! m (%get-pre-modules-obarray))
2114 (set-module-name! m '(guile))
2115 (set-system-module! m #t)
2116 m))
2117
2118 ;; The root interface is a module that uses the same obarray as the
2119 ;; root module. It does not allow new definitions, tho.
2120 ;;
2121 (define the-scm-module
2122 (let ((m (make-module 0)))
2123 (set-module-obarray! m (%get-pre-modules-obarray))
2124 (set-module-eval-closure! m (standard-interface-eval-closure m))
2125 (set-module-name! m '(guile))
2126 (set-module-kind! m 'interface)
2127 (set-system-module! m #t)
2128 m))
2129
2130 (set-module-public-interface! the-root-module the-scm-module)
2131
2132 \f
2133
2134 ;; Now that we have a root module, even though modules aren't fully booted,
2135 ;; expand the definition of resolve-module.
2136 ;;
2137 (define (resolve-module name . args)
2138 (if (equal? name '(guile))
2139 the-root-module
2140 (error "unexpected module to resolve during module boot" name)))
2141
2142 ;; Cheat. These bindings are needed by modules.c, but we don't want
2143 ;; to move their real definition here because that would be unnatural.
2144 ;;
2145 (define process-define-module #f)
2146 (define process-use-modules #f)
2147 (define module-export! #f)
2148 (define default-duplicate-binding-procedures #f)
2149
2150 ;; This boots the module system. All bindings needed by modules.c
2151 ;; must have been defined by now.
2152 ;;
2153 (set-current-module the-root-module)
2154
2155
2156 \f
2157
2158 ;; Now that modules are booted, give module-name its final definition.
2159 ;;
2160 (define module-name
2161 (let ((accessor (record-accessor module-type 'name)))
2162 (lambda (mod)
2163 (or (accessor mod)
2164 (let ((name (list (gensym))))
2165 ;; Name MOD and bind it in the module root so that it's visible to
2166 ;; `resolve-module'. This is important as `psyntax' stores module
2167 ;; names and relies on being able to `resolve-module' them.
2168 (set-module-name! mod name)
2169 (nested-define-module! (resolve-module '() #f) name mod)
2170 (accessor mod))))))
2171
2172 (define (make-modules-in module name)
2173 (or (nested-ref-module module name)
2174 (let ((m (make-module 31)))
2175 (set-module-kind! m 'directory)
2176 (set-module-name! m (append (module-name module) name))
2177 (nested-define-module! module name m)
2178 m)))
2179
2180 (define (beautify-user-module! module)
2181 (let ((interface (module-public-interface module)))
2182 (if (or (not interface)
2183 (eq? interface module))
2184 (let ((interface (make-module 31)))
2185 (set-module-name! interface (module-name module))
2186 (set-module-version! interface (module-version module))
2187 (set-module-kind! interface 'interface)
2188 (set-module-public-interface! module interface))))
2189 (if (and (not (memq the-scm-module (module-uses module)))
2190 (not (eq? module the-root-module)))
2191 ;; Import the default set of bindings (from the SCM module) in MODULE.
2192 (module-use! module the-scm-module)))
2193
2194 (define (version-matches? version-ref target)
2195 (define (sub-versions-match? v-refs t)
2196 (define (sub-version-matches? v-ref t)
2197 (let ((matches? (lambda (v) (sub-version-matches? v t))))
2198 (cond
2199 ((number? v-ref) (eqv? v-ref t))
2200 ((list? v-ref)
2201 (case (car v-ref)
2202 ((>=) (>= t (cadr v-ref)))
2203 ((<=) (<= t (cadr v-ref)))
2204 ((and) (and-map matches? (cdr v-ref)))
2205 ((or) (or-map matches? (cdr v-ref)))
2206 ((not) (not (matches? (cadr v-ref))))
2207 (else (error "Invalid sub-version reference" v-ref))))
2208 (else (error "Invalid sub-version reference" v-ref)))))
2209 (or (null? v-refs)
2210 (and (not (null? t))
2211 (sub-version-matches? (car v-refs) (car t))
2212 (sub-versions-match? (cdr v-refs) (cdr t)))))
2213
2214 (let ((matches? (lambda (v) (version-matches? v target))))
2215 (or (null? version-ref)
2216 (case (car version-ref)
2217 ((and) (and-map matches? (cdr version-ref)))
2218 ((or) (or-map matches? (cdr version-ref)))
2219 ((not) (not (matches? (cadr version-ref))))
2220 (else (sub-versions-match? version-ref target))))))
2221
2222 (define (make-fresh-user-module)
2223 (let ((m (make-module)))
2224 (beautify-user-module! m)
2225 m))
2226
2227 ;; NOTE: This binding is used in libguile/modules.c.
2228 ;;
2229 (define resolve-module
2230 (let ((root (make-module)))
2231 (set-module-name! root '())
2232 ;; Define the-root-module as '(guile).
2233 (module-define-submodule! root 'guile the-root-module)
2234
2235 (lambda* (name #:optional (autoload #t) (version #f) #:key (ensure #t))
2236 (let ((already (nested-ref-module root name)))
2237 (cond
2238 ((and already
2239 (or (not autoload) (module-public-interface already)))
2240 ;; A hit, a palpable hit.
2241 (if (and version
2242 (not (version-matches? version (module-version already))))
2243 (error "incompatible module version already loaded" name))
2244 already)
2245 (autoload
2246 ;; Try to autoload the module, and recurse.
2247 (try-load-module name version)
2248 (resolve-module name #f #:ensure ensure))
2249 (else
2250 ;; No module found (or if one was, it had no public interface), and
2251 ;; we're not autoloading. Make an empty module if #:ensure is true.
2252 (or already
2253 (and ensure
2254 (make-modules-in root name)))))))))
2255
2256
2257 (define (try-load-module name version)
2258 (try-module-autoload name version))
2259
2260 (define (purify-module! module)
2261 "Removes bindings in MODULE which are inherited from the (guile) module."
2262 (let ((use-list (module-uses module)))
2263 (if (and (pair? use-list)
2264 (eq? (car (last-pair use-list)) the-scm-module))
2265 (set-module-uses! module (reverse (cdr (reverse use-list)))))))
2266
2267 ;; Return a module that is an interface to the module designated by
2268 ;; NAME.
2269 ;;
2270 ;; `resolve-interface' takes four keyword arguments:
2271 ;;
2272 ;; #:select SELECTION
2273 ;;
2274 ;; SELECTION is a list of binding-specs to be imported; A binding-spec
2275 ;; is either a symbol or a pair of symbols (ORIG . SEEN), where ORIG
2276 ;; is the name in the used module and SEEN is the name in the using
2277 ;; module. Note that SEEN is also passed through RENAMER, below. The
2278 ;; default is to select all bindings. If you specify no selection but
2279 ;; a renamer, only the bindings that already exist in the used module
2280 ;; are made available in the interface. Bindings that are added later
2281 ;; are not picked up.
2282 ;;
2283 ;; #:hide BINDINGS
2284 ;;
2285 ;; BINDINGS is a list of bindings which should not be imported.
2286 ;;
2287 ;; #:prefix PREFIX
2288 ;;
2289 ;; PREFIX is a symbol that will be appended to each exported name.
2290 ;; The default is to not perform any renaming.
2291 ;;
2292 ;; #:renamer RENAMER
2293 ;;
2294 ;; RENAMER is a procedure that takes a symbol and returns its new
2295 ;; name. The default is not perform any renaming.
2296 ;;
2297 ;; Signal "no code for module" error if module name is not resolvable
2298 ;; or its public interface is not available. Signal "no binding"
2299 ;; error if selected binding does not exist in the used module.
2300 ;;
2301 (define* (resolve-interface name #:key
2302 (select #f)
2303 (hide '())
2304 (prefix #f)
2305 (renamer (if prefix
2306 (symbol-prefix-proc prefix)
2307 identity))
2308 version)
2309 (let* ((module (resolve-module name #t version #:ensure #f))
2310 (public-i (and module (module-public-interface module))))
2311 (and (or (not module) (not public-i))
2312 (error "no code for module" name))
2313 (if (and (not select) (null? hide) (eq? renamer identity))
2314 public-i
2315 (let ((selection (or select (module-map (lambda (sym var) sym)
2316 public-i)))
2317 (custom-i (make-module 31)))
2318 (set-module-kind! custom-i 'custom-interface)
2319 (set-module-name! custom-i name)
2320 ;; XXX - should use a lazy binder so that changes to the
2321 ;; used module are picked up automatically.
2322 (for-each (lambda (bspec)
2323 (let* ((direct? (symbol? bspec))
2324 (orig (if direct? bspec (car bspec)))
2325 (seen (if direct? bspec (cdr bspec)))
2326 (var (or (module-local-variable public-i orig)
2327 (module-local-variable module orig)
2328 (error
2329 ;; fixme: format manually for now
2330 (simple-format
2331 #f "no binding `~A' in module ~A"
2332 orig name)))))
2333 (if (memq orig hide)
2334 (set! hide (delq! orig hide))
2335 (module-add! custom-i
2336 (renamer seen)
2337 var))))
2338 selection)
2339 ;; Check that we are not hiding bindings which don't exist
2340 (for-each (lambda (binding)
2341 (if (not (module-local-variable public-i binding))
2342 (error
2343 (simple-format
2344 #f "no binding `~A' to hide in module ~A"
2345 binding name))))
2346 hide)
2347 custom-i))))
2348
2349 (define (symbol-prefix-proc prefix)
2350 (lambda (symbol)
2351 (symbol-append prefix symbol)))
2352
2353 ;; This function is called from "modules.c". If you change it, be
2354 ;; sure to update "modules.c" as well.
2355
2356 (define (process-define-module args)
2357 (let* ((module-id (car args))
2358 (module (resolve-module module-id #f))
2359 (kws (cdr args))
2360 (unrecognized (lambda (arg)
2361 (error "unrecognized define-module argument" arg))))
2362 (beautify-user-module! module)
2363 (let loop ((kws kws)
2364 (reversed-interfaces '())
2365 (exports '())
2366 (re-exports '())
2367 (replacements '())
2368 (autoloads '()))
2369
2370 (if (null? kws)
2371 (call-with-deferred-observers
2372 (lambda ()
2373 (module-use-interfaces! module (reverse reversed-interfaces))
2374 (module-export! module exports)
2375 (module-replace! module replacements)
2376 (module-re-export! module re-exports)
2377 (if (not (null? autoloads))
2378 (apply module-autoload! module autoloads))))
2379 (case (car kws)
2380 ((#:use-module #:use-syntax)
2381 (or (pair? (cdr kws))
2382 (unrecognized kws))
2383 (cond
2384 ((equal? (caadr kws) '(ice-9 syncase))
2385 (issue-deprecation-warning
2386 "(ice-9 syncase) is deprecated. Support for syntax-case is now in Guile core.")
2387 (loop (cddr kws)
2388 reversed-interfaces
2389 exports
2390 re-exports
2391 replacements
2392 autoloads))
2393 (else
2394 (let* ((interface-args (cadr kws))
2395 (interface (apply resolve-interface interface-args)))
2396 (and (eq? (car kws) #:use-syntax)
2397 (or (symbol? (caar interface-args))
2398 (error "invalid module name for use-syntax"
2399 (car interface-args)))
2400 (set-module-transformer!
2401 module
2402 (module-ref interface
2403 (car (last-pair (car interface-args)))
2404 #f)))
2405 (loop (cddr kws)
2406 (cons interface reversed-interfaces)
2407 exports
2408 re-exports
2409 replacements
2410 autoloads)))))
2411 ((#:autoload)
2412 (or (and (pair? (cdr kws)) (pair? (cddr kws)))
2413 (unrecognized kws))
2414 (loop (cdddr kws)
2415 reversed-interfaces
2416 exports
2417 re-exports
2418 replacements
2419 (let ((name (cadr kws))
2420 (bindings (caddr kws)))
2421 (cons* name bindings autoloads))))
2422 ((#:no-backtrace)
2423 (set-system-module! module #t)
2424 (loop (cdr kws) reversed-interfaces exports re-exports
2425 replacements autoloads))
2426 ((#:pure)
2427 (purify-module! module)
2428 (loop (cdr kws) reversed-interfaces exports re-exports
2429 replacements autoloads))
2430 ((#:version)
2431 (or (pair? (cdr kws))
2432 (unrecognized kws))
2433 (let ((version (cadr kws)))
2434 (set-module-version! module version)
2435 (set-module-version! (module-public-interface module) version))
2436 (loop (cddr kws) reversed-interfaces exports re-exports
2437 replacements autoloads))
2438 ((#:duplicates)
2439 (if (not (pair? (cdr kws)))
2440 (unrecognized kws))
2441 (set-module-duplicates-handlers!
2442 module
2443 (lookup-duplicates-handlers (cadr kws)))
2444 (loop (cddr kws) reversed-interfaces exports re-exports
2445 replacements autoloads))
2446 ((#:export #:export-syntax)
2447 (or (pair? (cdr kws))
2448 (unrecognized kws))
2449 (loop (cddr kws)
2450 reversed-interfaces
2451 (append (cadr kws) exports)
2452 re-exports
2453 replacements
2454 autoloads))
2455 ((#:re-export #:re-export-syntax)
2456 (or (pair? (cdr kws))
2457 (unrecognized kws))
2458 (loop (cddr kws)
2459 reversed-interfaces
2460 exports
2461 (append (cadr kws) re-exports)
2462 replacements
2463 autoloads))
2464 ((#:replace #:replace-syntax)
2465 (or (pair? (cdr kws))
2466 (unrecognized kws))
2467 (loop (cddr kws)
2468 reversed-interfaces
2469 exports
2470 re-exports
2471 (append (cadr kws) replacements)
2472 autoloads))
2473 ((#:filename)
2474 (or (pair? (cdr kws))
2475 (unrecognized kws))
2476 (set-module-filename! module (cadr kws))
2477 (loop (cddr kws)
2478 reversed-interfaces
2479 exports
2480 re-exports
2481 replacements
2482 autoloads))
2483 (else
2484 (unrecognized kws)))))
2485 (run-hook module-defined-hook module)
2486 module))
2487
2488 ;; `module-defined-hook' is a hook that is run whenever a new module
2489 ;; is defined. Its members are called with one argument, the new
2490 ;; module.
2491 (define module-defined-hook (make-hook 1))
2492
2493 \f
2494
2495 ;;; {Autoload}
2496 ;;;
2497
2498 (define (make-autoload-interface module name bindings)
2499 (let ((b (lambda (a sym definep)
2500 (and (memq sym bindings)
2501 (let ((i (module-public-interface (resolve-module name))))
2502 (if (not i)
2503 (error "missing interface for module" name))
2504 (let ((autoload (memq a (module-uses module))))
2505 ;; Replace autoload-interface with actual interface if
2506 ;; that has not happened yet.
2507 (if (pair? autoload)
2508 (set-car! autoload i)))
2509 (module-local-variable i sym))))))
2510 (module-constructor (make-hash-table 0) '() b #f #f name 'autoload #f
2511 (make-hash-table 0) '() (make-weak-value-hash-table 31) #f
2512 (make-hash-table 0) #f #f #f)))
2513
2514 (define (module-autoload! module . args)
2515 "Have @var{module} automatically load the module named @var{name} when one
2516 of the symbols listed in @var{bindings} is looked up. @var{args} should be a
2517 list of module-name/binding-list pairs, e.g., as in @code{(module-autoload!
2518 module '(ice-9 q) '(make-q q-length))}."
2519 (let loop ((args args))
2520 (cond ((null? args)
2521 #t)
2522 ((null? (cdr args))
2523 (error "invalid name+binding autoload list" args))
2524 (else
2525 (let ((name (car args))
2526 (bindings (cadr args)))
2527 (module-use! module (make-autoload-interface module
2528 name bindings))
2529 (loop (cddr args)))))))
2530
2531
2532 \f
2533
2534 ;;; {Autoloading modules}
2535 ;;;
2536
2537 (define autoloads-in-progress '())
2538
2539 ;; This function is called from "modules.c". If you change it, be
2540 ;; sure to update "modules.c" as well.
2541
2542 (define* (try-module-autoload module-name #:optional version)
2543 (let* ((reverse-name (reverse module-name))
2544 (name (symbol->string (car reverse-name)))
2545 (dir-hint-module-name (reverse (cdr reverse-name)))
2546 (dir-hint (apply string-append
2547 (map (lambda (elt)
2548 (string-append (symbol->string elt) "/"))
2549 dir-hint-module-name))))
2550 (resolve-module dir-hint-module-name #f)
2551 (and (not (autoload-done-or-in-progress? dir-hint name))
2552 (let ((didit #f))
2553 (dynamic-wind
2554 (lambda () (autoload-in-progress! dir-hint name))
2555 (lambda ()
2556 (with-fluids ((current-reader #f))
2557 (save-module-excursion
2558 (lambda ()
2559 ;; The initial environment when loading a module is a fresh
2560 ;; user module.
2561 (set-current-module (make-fresh-user-module))
2562 ;; Here we could allow some other search strategy (other than
2563 ;; primitive-load-path), for example using versions encoded
2564 ;; into the file system -- but then we would have to figure
2565 ;; out how to locate the compiled file, do autocompilation,
2566 ;; etc. Punt for now, and don't use versions when locating
2567 ;; the file.
2568 (primitive-load-path (in-vicinity dir-hint name) #f)
2569 (set! didit #t)))))
2570 (lambda () (set-autoloaded! dir-hint name didit)))
2571 didit))))
2572
2573 \f
2574
2575 ;;; {Dynamic linking of modules}
2576 ;;;
2577
2578 (define autoloads-done '((guile . guile)))
2579
2580 (define (autoload-done-or-in-progress? p m)
2581 (let ((n (cons p m)))
2582 (->bool (or (member n autoloads-done)
2583 (member n autoloads-in-progress)))))
2584
2585 (define (autoload-done! p m)
2586 (let ((n (cons p m)))
2587 (set! autoloads-in-progress
2588 (delete! n autoloads-in-progress))
2589 (or (member n autoloads-done)
2590 (set! autoloads-done (cons n autoloads-done)))))
2591
2592 (define (autoload-in-progress! p m)
2593 (let ((n (cons p m)))
2594 (set! autoloads-done
2595 (delete! n autoloads-done))
2596 (set! autoloads-in-progress (cons n autoloads-in-progress))))
2597
2598 (define (set-autoloaded! p m done?)
2599 (if done?
2600 (autoload-done! p m)
2601 (let ((n (cons p m)))
2602 (set! autoloads-done (delete! n autoloads-done))
2603 (set! autoloads-in-progress (delete! n autoloads-in-progress)))))
2604
2605 \f
2606
2607 ;;; {Run-time options}
2608 ;;;
2609
2610 (define-syntax define-option-interface
2611 (syntax-rules ()
2612 ((_ (interface (options enable disable) (option-set!)))
2613 (begin
2614 (define options
2615 (case-lambda
2616 (() (interface))
2617 ((arg)
2618 (if (list? arg)
2619 (begin (interface arg) (interface))
2620 (for-each
2621 (lambda (option)
2622 (apply (lambda (name value documentation)
2623 (display name)
2624 (if (< (string-length (symbol->string name)) 8)
2625 (display #\tab))
2626 (display #\tab)
2627 (display value)
2628 (display #\tab)
2629 (display documentation)
2630 (newline))
2631 option))
2632 (interface #t))))))
2633 (define (enable . flags)
2634 (interface (append flags (interface)))
2635 (interface))
2636 (define (disable . flags)
2637 (let ((options (interface)))
2638 (for-each (lambda (flag) (set! options (delq! flag options)))
2639 flags)
2640 (interface options)
2641 (interface)))
2642 (define-syntax option-set!
2643 (syntax-rules ()
2644 ((_ opt val)
2645 (options (append (options) (list 'opt val))))))))))
2646
2647 (define-option-interface
2648 (debug-options-interface
2649 (debug-options debug-enable debug-disable)
2650 (debug-set!)))
2651
2652 (define-option-interface
2653 (evaluator-traps-interface
2654 (traps trap-enable trap-disable)
2655 (trap-set!)))
2656
2657 (define-option-interface
2658 (read-options-interface
2659 (read-options read-enable read-disable)
2660 (read-set!)))
2661
2662 (define-option-interface
2663 (print-options-interface
2664 (print-options print-enable print-disable)
2665 (print-set!)))
2666
2667 \f
2668
2669 ;;; {The Unspecified Value}
2670 ;;;
2671 ;;; Currently Guile represents unspecified values via one particular value,
2672 ;;; which may be obtained by evaluating (if #f #f). It would be nice in the
2673 ;;; future if we could replace this with a return of 0 values, though.
2674 ;;;
2675
2676 (define-syntax *unspecified*
2677 (identifier-syntax (if #f #f)))
2678
2679 (define (unspecified? v) (eq? v *unspecified*))
2680
2681
2682 \f
2683
2684 ;;; {Running Repls}
2685 ;;;
2686
2687 (define *repl-stack* (make-fluid))
2688
2689 ;; Programs can call `batch-mode?' to see if they are running as part of a
2690 ;; script or if they are running interactively. REPL implementations ensure that
2691 ;; `batch-mode?' returns #f during their extent.
2692 ;;
2693 (define (batch-mode?)
2694 (null? (or (fluid-ref *repl-stack*) '())))
2695
2696 ;; Programs can re-enter batch mode, for example after a fork, by calling
2697 ;; `ensure-batch-mode!'. It's not a great interface, though; it would be better
2698 ;; to abort to the outermost prompt, and call a thunk there.
2699 ;;
2700 (define (ensure-batch-mode!)
2701 (set! batch-mode? (lambda () #t)))
2702
2703 (define (quit . args)
2704 (apply throw 'quit args))
2705
2706 (define exit quit)
2707
2708 (define (gc-run-time)
2709 (cdr (assq 'gc-time-taken (gc-stats))))
2710
2711 (define abort-hook (make-hook))
2712 (define before-error-hook (make-hook))
2713 (define after-error-hook (make-hook))
2714 (define before-backtrace-hook (make-hook))
2715 (define after-backtrace-hook (make-hook))
2716
2717 (define before-read-hook (make-hook))
2718 (define after-read-hook (make-hook))
2719 (define before-eval-hook (make-hook 1))
2720 (define after-eval-hook (make-hook 1))
2721 (define before-print-hook (make-hook 1))
2722 (define after-print-hook (make-hook 1))
2723
2724 ;;; This hook is run at the very end of an interactive session.
2725 ;;;
2726 (define exit-hook (make-hook))
2727
2728 ;;; The default repl-reader function. We may override this if we've
2729 ;;; the readline library.
2730 (define repl-reader
2731 (lambda* (prompt #:optional (reader (fluid-ref current-reader)))
2732 (if (not (char-ready?))
2733 (display (if (string? prompt) prompt (prompt))))
2734 (force-output)
2735 (run-hook before-read-hook)
2736 ((or reader read) (current-input-port))))
2737
2738
2739 \f
2740
2741 ;;; {IOTA functions: generating lists of numbers}
2742 ;;;
2743
2744 (define (iota n)
2745 (let loop ((count (1- n)) (result '()))
2746 (if (< count 0) result
2747 (loop (1- count) (cons count result)))))
2748
2749 \f
2750
2751 ;;; {While}
2752 ;;;
2753 ;;; with `continue' and `break'.
2754 ;;;
2755
2756 ;; The inliner will remove the prompts at compile-time if it finds that
2757 ;; `continue' or `break' are not used.
2758 ;;
2759 (define-syntax while
2760 (lambda (x)
2761 (syntax-case x ()
2762 ((while cond body ...)
2763 #`(let ((break-tag (make-prompt-tag "break"))
2764 (continue-tag (make-prompt-tag "continue")))
2765 (call-with-prompt
2766 break-tag
2767 (lambda ()
2768 (define-syntax #,(datum->syntax #'while 'break)
2769 (lambda (x)
2770 (syntax-case x ()
2771 ((_)
2772 #'(abort-to-prompt break-tag))
2773 ((_ . args)
2774 (syntax-violation 'break "too many arguments" x))
2775 (_
2776 #'(lambda ()
2777 (abort-to-prompt break-tag))))))
2778 (let lp ()
2779 (call-with-prompt
2780 continue-tag
2781 (lambda ()
2782 (define-syntax #,(datum->syntax #'while 'continue)
2783 (lambda (x)
2784 (syntax-case x ()
2785 ((_)
2786 #'(abort-to-prompt continue-tag))
2787 ((_ . args)
2788 (syntax-violation 'continue "too many arguments" x))
2789 (_
2790 #'(lambda args
2791 (apply abort-to-prompt continue-tag args))))))
2792 (do () ((not cond)) body ...))
2793 (lambda (k) (lp)))))
2794 (lambda (k)
2795 #t)))))))
2796
2797
2798 \f
2799
2800 ;;; {Module System Macros}
2801 ;;;
2802
2803 ;; Return a list of expressions that evaluate to the appropriate
2804 ;; arguments for resolve-interface according to SPEC.
2805
2806 (eval-when (compile)
2807 (if (memq 'prefix (read-options))
2808 (error "boot-9 must be compiled with #:kw, not :kw")))
2809
2810 (define (keyword-like-symbol->keyword sym)
2811 (symbol->keyword (string->symbol (substring (symbol->string sym) 1))))
2812
2813 ;; FIXME: we really need to clean up the guts of the module system.
2814 ;; We can compile to something better than process-define-module.
2815 ;;
2816 (define-syntax define-module
2817 (lambda (x)
2818 (define (keyword-like? stx)
2819 (let ((dat (syntax->datum stx)))
2820 (and (symbol? dat)
2821 (eqv? (string-ref (symbol->string dat) 0) #\:))))
2822 (define (->keyword sym)
2823 (symbol->keyword (string->symbol (substring (symbol->string sym) 1))))
2824
2825 (define (quotify-iface args)
2826 (let loop ((in args) (out '()))
2827 (syntax-case in ()
2828 (() (reverse! out))
2829 ;; The user wanted #:foo, but wrote :foo. Fix it.
2830 ((sym . in) (keyword-like? #'sym)
2831 (loop #`(#,(->keyword (syntax->datum #'sym)) . in) out))
2832 ((kw . in) (not (keyword? (syntax->datum #'kw)))
2833 (syntax-violation 'define-module "expected keyword arg" x #'kw))
2834 ((#:renamer renamer . in)
2835 (loop #'in (cons* #'renamer #:renamer out)))
2836 ((kw val . in)
2837 (loop #'in (cons* #''val #'kw out))))))
2838
2839 (define (quotify args)
2840 ;; Just quote everything except #:use-module and #:use-syntax. We
2841 ;; need to know about all arguments regardless since we want to turn
2842 ;; symbols that look like keywords into real keywords, and the
2843 ;; keyword args in a define-module form are not regular
2844 ;; (i.e. no-backtrace doesn't take a value).
2845 (let loop ((in args) (out '()))
2846 (syntax-case in ()
2847 (() (reverse! out))
2848 ;; The user wanted #:foo, but wrote :foo. Fix it.
2849 ((sym . in) (keyword-like? #'sym)
2850 (loop #`(#,(->keyword (syntax->datum #'sym)) . in) out))
2851 ((kw . in) (not (keyword? (syntax->datum #'kw)))
2852 (syntax-violation 'define-module "expected keyword arg" x #'kw))
2853 ((#:no-backtrace . in)
2854 (loop #'in (cons #:no-backtrace out)))
2855 ((#:pure . in)
2856 (loop #'in (cons #:pure out)))
2857 ((kw)
2858 (syntax-violation 'define-module "keyword arg without value" x #'kw))
2859 ((use-module (name name* ...) . in)
2860 (and (memq (syntax->datum #'use-module) '(#:use-module #:use-syntax))
2861 (and-map symbol? (syntax->datum #'(name name* ...))))
2862 (loop #'in
2863 (cons* #''((name name* ...))
2864 #'use-module
2865 out)))
2866 ((use-module ((name name* ...) arg ...) . in)
2867 (and (memq (syntax->datum #'use-module) '(#:use-module #:use-syntax))
2868 (and-map symbol? (syntax->datum #'(name name* ...))))
2869 (loop #'in
2870 (cons* #`(list '(name name* ...) #,@(quotify-iface #'(arg ...)))
2871 #'use-module
2872 out)))
2873 ((#:autoload name bindings . in)
2874 (loop #'in (cons* #''bindings #''name #:autoload out)))
2875 ((kw val . in)
2876 (loop #'in (cons* #''val #'kw out))))))
2877
2878 (syntax-case x ()
2879 ((_ (name name* ...) arg ...)
2880 (with-syntax (((quoted-arg ...) (quotify #'(arg ...))))
2881 #'(eval-when (eval load compile expand)
2882 (let ((m (process-define-module
2883 (list '(name name* ...)
2884 #:filename (assq-ref
2885 (or (current-source-location) '())
2886 'filename)
2887 quoted-arg ...))))
2888 (set-current-module m)
2889 m)))))))
2890
2891 ;; The guts of the use-modules macro. Add the interfaces of the named
2892 ;; modules to the use-list of the current module, in order.
2893
2894 ;; This function is called by "modules.c". If you change it, be sure
2895 ;; to change scm_c_use_module as well.
2896
2897 (define (process-use-modules module-interface-args)
2898 (let ((interfaces (map (lambda (mif-args)
2899 (or (apply resolve-interface mif-args)
2900 (error "no such module" mif-args)))
2901 module-interface-args)))
2902 (call-with-deferred-observers
2903 (lambda ()
2904 (module-use-interfaces! (current-module) interfaces)))))
2905
2906 (define-syntax use-modules
2907 (lambda (x)
2908 (define (keyword-like? stx)
2909 (let ((dat (syntax->datum stx)))
2910 (and (symbol? dat)
2911 (eqv? (string-ref (symbol->string dat) 0) #\:))))
2912 (define (->keyword sym)
2913 (symbol->keyword (string->symbol (substring (symbol->string sym) 1))))
2914
2915 (define (quotify-iface args)
2916 (let loop ((in args) (out '()))
2917 (syntax-case in ()
2918 (() (reverse! out))
2919 ;; The user wanted #:foo, but wrote :foo. Fix it.
2920 ((sym . in) (keyword-like? #'sym)
2921 (loop #`(#,(->keyword (syntax->datum #'sym)) . in) out))
2922 ((kw . in) (not (keyword? (syntax->datum #'kw)))
2923 (syntax-violation 'define-module "expected keyword arg" x #'kw))
2924 ((#:renamer renamer . in)
2925 (loop #'in (cons* #'renamer #:renamer out)))
2926 ((kw val . in)
2927 (loop #'in (cons* #''val #'kw out))))))
2928
2929 (define (quotify specs)
2930 (let lp ((in specs) (out '()))
2931 (syntax-case in ()
2932 (() (reverse out))
2933 (((name name* ...) . in)
2934 (and-map symbol? (syntax->datum #'(name name* ...)))
2935 (lp #'in (cons #''((name name* ...)) out)))
2936 ((((name name* ...) arg ...) . in)
2937 (and-map symbol? (syntax->datum #'(name name* ...)))
2938 (with-syntax (((quoted-arg ...) (quotify-iface #'(arg ...))))
2939 (lp #'in (cons #`(list '(name name* ...) quoted-arg ...)
2940 out)))))))
2941
2942 (syntax-case x ()
2943 ((_ spec ...)
2944 (with-syntax (((quoted-args ...) (quotify #'(spec ...))))
2945 #'(eval-when (eval load compile expand)
2946 (process-use-modules (list quoted-args ...))
2947 *unspecified*))))))
2948
2949 (define-syntax use-syntax
2950 (syntax-rules ()
2951 ((_ spec ...)
2952 (begin
2953 (eval-when (eval load compile expand)
2954 (issue-deprecation-warning
2955 "`use-syntax' is deprecated. Please contact guile-devel for more info."))
2956 (use-modules spec ...)))))
2957
2958 (include-from-path "ice-9/r6rs-libraries")
2959
2960 (define-syntax define-private
2961 (syntax-rules ()
2962 ((_ foo bar)
2963 (define foo bar))))
2964
2965 (define-syntax define-public
2966 (syntax-rules ()
2967 ((_ (name . args) . body)
2968 (define-public name (lambda args . body)))
2969 ((_ name val)
2970 (begin
2971 (define name val)
2972 (export name)))))
2973
2974 (define-syntax defmacro-public
2975 (syntax-rules ()
2976 ((_ name args . body)
2977 (begin
2978 (defmacro name args . body)
2979 (export-syntax name)))))
2980
2981 ;; And now for the most important macro.
2982 (define-syntax λ
2983 (syntax-rules ()
2984 ((_ formals body ...)
2985 (lambda formals body ...))))
2986
2987 \f
2988 ;; Export a local variable
2989
2990 ;; This function is called from "modules.c". If you change it, be
2991 ;; sure to update "modules.c" as well.
2992
2993 (define (module-export! m names)
2994 (let ((public-i (module-public-interface m)))
2995 (for-each (lambda (name)
2996 (let* ((internal-name (if (pair? name) (car name) name))
2997 (external-name (if (pair? name) (cdr name) name))
2998 (var (module-ensure-local-variable! m internal-name)))
2999 (module-add! public-i external-name var)))
3000 names)))
3001
3002 (define (module-replace! m names)
3003 (let ((public-i (module-public-interface m)))
3004 (for-each (lambda (name)
3005 (let* ((internal-name (if (pair? name) (car name) name))
3006 (external-name (if (pair? name) (cdr name) name))
3007 (var (module-ensure-local-variable! m internal-name)))
3008 (set-object-property! var 'replace #t)
3009 (module-add! public-i external-name var)))
3010 names)))
3011
3012 ;; Export all local variables from a module
3013 ;;
3014 (define (module-export-all! mod)
3015 (define (fresh-interface!)
3016 (let ((iface (make-module)))
3017 (set-module-name! iface (module-name mod))
3018 (set-module-version! iface (module-version mod))
3019 (set-module-kind! iface 'interface)
3020 (set-module-public-interface! mod iface)
3021 iface))
3022 (let ((iface (or (module-public-interface mod)
3023 (fresh-interface!))))
3024 (set-module-obarray! iface (module-obarray mod))))
3025
3026 ;; Re-export a imported variable
3027 ;;
3028 (define (module-re-export! m names)
3029 (let ((public-i (module-public-interface m)))
3030 (for-each (lambda (name)
3031 (let* ((internal-name (if (pair? name) (car name) name))
3032 (external-name (if (pair? name) (cdr name) name))
3033 (var (module-variable m internal-name)))
3034 (cond ((not var)
3035 (error "Undefined variable:" internal-name))
3036 ((eq? var (module-local-variable m internal-name))
3037 (error "re-exporting local variable:" internal-name))
3038 (else
3039 (module-add! public-i external-name var)))))
3040 names)))
3041
3042 (define-syntax export
3043 (syntax-rules ()
3044 ((_ name ...)
3045 (eval-when (eval load compile expand)
3046 (call-with-deferred-observers
3047 (lambda ()
3048 (module-export! (current-module) '(name ...))))))))
3049
3050 (define-syntax re-export
3051 (syntax-rules ()
3052 ((_ name ...)
3053 (eval-when (eval load compile expand)
3054 (call-with-deferred-observers
3055 (lambda ()
3056 (module-re-export! (current-module) '(name ...))))))))
3057
3058 (define-syntax export!
3059 (syntax-rules ()
3060 ((_ name ...)
3061 (eval-when (eval load compile expand)
3062 (call-with-deferred-observers
3063 (lambda ()
3064 (module-replace! (current-module) '(name ...))))))))
3065
3066 (define-syntax export-syntax
3067 (syntax-rules ()
3068 ((_ name ...)
3069 (export name ...))))
3070
3071 (define-syntax re-export-syntax
3072 (syntax-rules ()
3073 ((_ name ...)
3074 (re-export name ...))))
3075
3076 (define load load-module)
3077
3078 \f
3079
3080 ;;; {Parameters}
3081 ;;;
3082
3083 (define* (make-mutable-parameter init #:optional (converter identity))
3084 (let ((fluid (make-fluid)))
3085 (fluid-set! fluid (converter init))
3086 (case-lambda
3087 (() (fluid-ref fluid))
3088 ((val) (fluid-set! fluid (converter val))))))
3089
3090
3091 \f
3092
3093 ;;; {Handling of duplicate imported bindings}
3094 ;;;
3095
3096 ;; Duplicate handlers take the following arguments:
3097 ;;
3098 ;; module importing module
3099 ;; name conflicting name
3100 ;; int1 old interface where name occurs
3101 ;; val1 value of binding in old interface
3102 ;; int2 new interface where name occurs
3103 ;; val2 value of binding in new interface
3104 ;; var previous resolution or #f
3105 ;; val value of previous resolution
3106 ;;
3107 ;; A duplicate handler can take three alternative actions:
3108 ;;
3109 ;; 1. return #f => leave responsibility to next handler
3110 ;; 2. exit with an error
3111 ;; 3. return a variable resolving the conflict
3112 ;;
3113
3114 (define duplicate-handlers
3115 (let ((m (make-module 7)))
3116
3117 (define (check module name int1 val1 int2 val2 var val)
3118 (scm-error 'misc-error
3119 #f
3120 "~A: `~A' imported from both ~A and ~A"
3121 (list (module-name module)
3122 name
3123 (module-name int1)
3124 (module-name int2))
3125 #f))
3126
3127 (define (warn module name int1 val1 int2 val2 var val)
3128 (format (current-error-port)
3129 "WARNING: ~A: `~A' imported from both ~A and ~A\n"
3130 (module-name module)
3131 name
3132 (module-name int1)
3133 (module-name int2))
3134 #f)
3135
3136 (define (replace module name int1 val1 int2 val2 var val)
3137 (let ((old (or (and var (object-property var 'replace) var)
3138 (module-variable int1 name)))
3139 (new (module-variable int2 name)))
3140 (if (object-property old 'replace)
3141 (and (or (eq? old new)
3142 (not (object-property new 'replace)))
3143 old)
3144 (and (object-property new 'replace)
3145 new))))
3146
3147 (define (warn-override-core module name int1 val1 int2 val2 var val)
3148 (and (eq? int1 the-scm-module)
3149 (begin
3150 (format (current-error-port)
3151 "WARNING: ~A: imported module ~A overrides core binding `~A'\n"
3152 (module-name module)
3153 (module-name int2)
3154 name)
3155 (module-local-variable int2 name))))
3156
3157 (define (first module name int1 val1 int2 val2 var val)
3158 (or var (module-local-variable int1 name)))
3159
3160 (define (last module name int1 val1 int2 val2 var val)
3161 (module-local-variable int2 name))
3162
3163 (define (noop module name int1 val1 int2 val2 var val)
3164 #f)
3165
3166 (set-module-name! m 'duplicate-handlers)
3167 (set-module-kind! m 'interface)
3168 (module-define! m 'check check)
3169 (module-define! m 'warn warn)
3170 (module-define! m 'replace replace)
3171 (module-define! m 'warn-override-core warn-override-core)
3172 (module-define! m 'first first)
3173 (module-define! m 'last last)
3174 (module-define! m 'merge-generics noop)
3175 (module-define! m 'merge-accessors noop)
3176 m))
3177
3178 (define (lookup-duplicates-handlers handler-names)
3179 (and handler-names
3180 (map (lambda (handler-name)
3181 (or (module-symbol-local-binding
3182 duplicate-handlers handler-name #f)
3183 (error "invalid duplicate handler name:"
3184 handler-name)))
3185 (if (list? handler-names)
3186 handler-names
3187 (list handler-names)))))
3188
3189 (define default-duplicate-binding-procedures
3190 (make-mutable-parameter #f))
3191
3192 (define default-duplicate-binding-handler
3193 (make-mutable-parameter '(replace warn-override-core warn last)
3194 (lambda (handler-names)
3195 (default-duplicate-binding-procedures
3196 (lookup-duplicates-handlers handler-names))
3197 handler-names)))
3198
3199 \f
3200
3201 ;;; {`cond-expand' for SRFI-0 support.}
3202 ;;;
3203 ;;; This syntactic form expands into different commands or
3204 ;;; definitions, depending on the features provided by the Scheme
3205 ;;; implementation.
3206 ;;;
3207 ;;; Syntax:
3208 ;;;
3209 ;;; <cond-expand>
3210 ;;; --> (cond-expand <cond-expand-clause>+)
3211 ;;; | (cond-expand <cond-expand-clause>* (else <command-or-definition>))
3212 ;;; <cond-expand-clause>
3213 ;;; --> (<feature-requirement> <command-or-definition>*)
3214 ;;; <feature-requirement>
3215 ;;; --> <feature-identifier>
3216 ;;; | (and <feature-requirement>*)
3217 ;;; | (or <feature-requirement>*)
3218 ;;; | (not <feature-requirement>)
3219 ;;; <feature-identifier>
3220 ;;; --> <a symbol which is the name or alias of a SRFI>
3221 ;;;
3222 ;;; Additionally, this implementation provides the
3223 ;;; <feature-identifier>s `guile' and `r5rs', so that programs can
3224 ;;; determine the implementation type and the supported standard.
3225 ;;;
3226 ;;; Currently, the following feature identifiers are supported:
3227 ;;;
3228 ;;; guile r5rs srfi-0 srfi-4 srfi-6 srfi-13 srfi-14 srfi-55 srfi-61
3229 ;;;
3230 ;;; Remember to update the features list when adding more SRFIs.
3231 ;;;
3232
3233 (define %cond-expand-features
3234 ;; Adjust the above comment when changing this.
3235 '(guile
3236 guile-2
3237 r5rs
3238 srfi-0 ;; cond-expand itself
3239 srfi-4 ;; homogenous numeric vectors
3240 srfi-6 ;; open-input-string etc, in the guile core
3241 srfi-13 ;; string library
3242 srfi-14 ;; character sets
3243 srfi-55 ;; require-extension
3244 srfi-61 ;; general cond clause
3245 ))
3246
3247 ;; This table maps module public interfaces to the list of features.
3248 ;;
3249 (define %cond-expand-table (make-hash-table 31))
3250
3251 ;; Add one or more features to the `cond-expand' feature list of the
3252 ;; module `module'.
3253 ;;
3254 (define (cond-expand-provide module features)
3255 (let ((mod (module-public-interface module)))
3256 (and mod
3257 (hashq-set! %cond-expand-table mod
3258 (append (hashq-ref %cond-expand-table mod '())
3259 features)))))
3260
3261 (define-syntax cond-expand
3262 (lambda (x)
3263 (define (module-has-feature? mod sym)
3264 (or-map (lambda (mod)
3265 (memq sym (hashq-ref %cond-expand-table mod '())))
3266 (module-uses mod)))
3267
3268 (define (condition-matches? condition)
3269 (syntax-case condition (and or not)
3270 ((and c ...)
3271 (and-map condition-matches? #'(c ...)))
3272 ((or c ...)
3273 (or-map condition-matches? #'(c ...)))
3274 ((not c)
3275 (if (condition-matches? #'c) #f #t))
3276 (c
3277 (identifier? #'c)
3278 (let ((sym (syntax->datum #'c)))
3279 (if (memq sym %cond-expand-features)
3280 #t
3281 (module-has-feature? (current-module) sym))))))
3282
3283 (define (match clauses alternate)
3284 (syntax-case clauses ()
3285 (((condition form ...) . rest)
3286 (if (condition-matches? #'condition)
3287 #'(begin form ...)
3288 (match #'rest alternate)))
3289 (() (alternate))))
3290
3291 (syntax-case x (else)
3292 ((_ clause ... (else form ...))
3293 (match #'(clause ...)
3294 (lambda ()
3295 #'(begin form ...))))
3296 ((_ clause ...)
3297 (match #'(clause ...)
3298 (lambda ()
3299 (syntax-violation 'cond-expand "unfulfilled cond-expand" x)))))))
3300
3301 ;; This procedure gets called from the startup code with a list of
3302 ;; numbers, which are the numbers of the SRFIs to be loaded on startup.
3303 ;;
3304 (define (use-srfis srfis)
3305 (process-use-modules
3306 (map (lambda (num)
3307 (list (list 'srfi (string->symbol
3308 (string-append "srfi-" (number->string num))))))
3309 srfis)))
3310
3311 \f
3312
3313 ;;; srfi-55: require-extension
3314 ;;;
3315
3316 (define-syntax require-extension
3317 (lambda (x)
3318 (syntax-case x (srfi)
3319 ((_ (srfi n ...))
3320 (and-map integer? (syntax->datum #'(n ...)))
3321 (with-syntax
3322 (((srfi-n ...)
3323 (map (lambda (n)
3324 (datum->syntax x (symbol-append 'srfi- n)))
3325 (map string->symbol
3326 (map number->string (syntax->datum #'(n ...)))))))
3327 #'(use-modules (srfi srfi-n) ...)))
3328 ((_ (type arg ...))
3329 (identifier? #'type)
3330 (syntax-violation 'require-extension "Not a recognized extension type"
3331 x)))))
3332
3333 \f
3334
3335 (define using-readline?
3336 (let ((using-readline? (make-fluid)))
3337 (make-procedure-with-setter
3338 (lambda () (fluid-ref using-readline?))
3339 (lambda (v) (fluid-set! using-readline? v)))))
3340
3341 \f
3342
3343 ;;; {Deprecated stuff}
3344 ;;;
3345
3346 (begin-deprecated
3347 (module-use! the-scm-module (resolve-interface '(ice-9 deprecated))))
3348
3349 \f
3350
3351 ;;; Place the user in the guile-user module.
3352 ;;;
3353
3354 ;; FIXME:
3355 (module-use! the-scm-module (resolve-interface '(srfi srfi-4)))
3356
3357 (define-module (guile-user)
3358 #:autoload (system base compile) (compile))
3359
3360 ;; Remain in the `(guile)' module at compilation-time so that the
3361 ;; `-Wunused-toplevel' warning works as expected.
3362 (eval-when (compile) (set-current-module the-root-module))
3363
3364 ;;; boot-9.scm ends here