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