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