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