* ports.c: add SCM_PROC declarations for pt-size and pt-member.
[bpt/guile.git] / ice-9 / boot-9.scm
CommitLineData
0f2d19dd
JB
1;;; installed-scm-file
2
d0cbd20c 3;;;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
0f2d19dd
JB
4;;;;
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.
9;;;;
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.
14;;;;
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
17;;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18;;;;
19\f
20
21;;; This file is the first thing loaded into Guile. It adds many mundane
22;;; definitions and a few that are interesting.
23;;;
24;;; The module system (hence the hierarchical namespace) are defined in this
25;;; file.
26;;;
27
28\f
21ed9efe
MD
29;;; During Guile development, we want to use debugging evaluator and record
30;;; positions of source expressions in boot-9.scm by default.
31
32(debug-options-interface (cons 'debug (debug-options-interface)))
33(read-options-interface (cons 'positions (read-options-interface)))
34
35\f
36;;; {Features}
37;;
38
39(define (provide sym)
40 (if (not (memq sym *features*))
41 (set! *features* (cons sym *features*))))
42
43\f
79451588
JB
44;;; {R4RS compliance}
45
46(primitive-load-path "ice-9/r4rs.scm")
47
48\f
44cf1f0f 49;;; {Simple Debugging Tools}
0f2d19dd
JB
50;;
51
52
53;; peek takes any number of arguments, writes them to the
54;; current ouput port, and returns the last argument.
55;; It is handy to wrap around an expression to look at
56;; a value each time is evaluated, e.g.:
57;;
58;; (+ 10 (troublesome-fn))
59;; => (+ 10 (pk 'troublesome-fn-returned (troublesome-fn)))
60;;
61
62(define (peek . stuff)
63 (newline)
64 (display ";;; ")
65 (write stuff)
66 (newline)
67 (car (last-pair stuff)))
68
69(define pk peek)
70
71(define (warn . stuff)
72 (with-output-to-port (current-error-port)
73 (lambda ()
74 (newline)
75 (display ";;; WARNING ")
6355358a 76 (display stuff)
0f2d19dd
JB
77 (newline)
78 (car (last-pair stuff)))))
79
80\f
81;;; {apply and call-with-current-continuation}
82;;;
83;;; These turn syntax, @apply and @call-with-current-continuation,
84;;; into procedures.
85;;;
86
87(set! apply (lambda (fun . args) (@apply fun (apply:nconc2last args))))
44cf1f0f
JB
88(define (call-with-current-continuation proc)
89 (@call-with-current-continuation proc))
0f2d19dd
JB
90
91
92\f
79451588 93;;; {Trivial Functions}
0f2d19dd 94;;;
79451588
JB
95
96(define (id x) x)
97(define (1+ n) (+ n 1))
98(define (-1+ n) (+ n -1))
99(define 1- -1+)
100(define return-it noop)
132e5fac 101(define (and=> value procedure) (and value (procedure value)))
79451588
JB
102(define (make-hash-table k) (make-vector k '()))
103
0f2d19dd
JB
104;;; apply-to-args is functionally redunant with apply and, worse,
105;;; is less general than apply since it only takes two arguments.
106;;;
107;;; On the other hand, apply-to-args is a syntacticly convenient way to
108;;; perform binding in many circumstances when the "let" family of
109;;; of forms don't cut it. E.g.:
110;;;
111;;; (apply-to-args (return-3d-mouse-coords)
112;;; (lambda (x y z)
113;;; ...))
114;;;
115
116(define (apply-to-args args fn) (apply fn args))
117
118\f
0f2d19dd
JB
119;;; {Integer Math}
120;;;
121
0f2d19dd
JB
122(define (ipow-by-squaring x k acc proc)
123 (cond ((zero? k) acc)
124 ((= 1 k) (proc acc x))
125 (else (logical:ipow-by-squaring (proc x x)
126 (quotient k 2)
127 (if (even? k) acc (proc acc x))
128 proc))))
129
130(define string-character-length string-length)
131
132
133
134;; A convenience function for combining flag bits. Like logior, but
135;; handles the cases of 0 and 1 arguments.
136;;
137(define (flags . args)
138 (cond
139 ((null? args) 0)
140 ((null? (cdr args)) (car args))
141 (else (apply logior args))))
142
143\f
0f2d19dd
JB
144;;; {Symbol Properties}
145;;;
146
147(define (symbol-property sym prop)
148 (let ((pair (assoc prop (symbol-pref sym))))
149 (and pair (cdr pair))))
150
151(define (set-symbol-property! sym prop val)
152 (let ((pair (assoc prop (symbol-pref sym))))
153 (if pair
154 (set-cdr! pair val)
155 (symbol-pset! sym (acons prop val (symbol-pref sym))))))
156
157(define (symbol-property-remove! sym prop)
158 (let ((pair (assoc prop (symbol-pref sym))))
159 (if pair
160 (symbol-pset! sym (delq! pair (symbol-pref sym))))))
161
162\f
163;;; {Arrays}
164;;;
165
166(begin
167 (define uniform-vector? array?)
168 (define make-uniform-vector dimensions->uniform-array)
169 ; (define uniform-vector-ref array-ref)
170 (define (uniform-vector-set! u i o)
171 (uniform-vector-set1! u o i))
172 (define uniform-vector-fill! array-fill!)
173 (define uniform-vector-read! uniform-array-read!)
174 (define uniform-vector-write uniform-array-write)
175
176 (define (make-array fill . args)
177 (dimensions->uniform-array args () fill))
178 (define (make-uniform-array prot . args)
179 (dimensions->uniform-array args prot))
180 (define (list->array ndim lst)
181 (list->uniform-array ndim '() lst))
182 (define (list->uniform-vector prot lst)
183 (list->uniform-array 1 prot lst))
184 (define (array-shape a)
185 (map (lambda (ind) (if (number? ind) (list 0 (+ -1 ind)) ind))
186 (array-dimensions a))))
187
188\f
189;;; {Keywords}
190;;;
191
192(define (symbol->keyword symbol)
193 (make-keyword-from-dash-symbol (symbol-append '- symbol)))
194
195(define (keyword->symbol kw)
196 (let ((sym (keyword-dash-symbol kw)))
197 (string->symbol (substring sym 1 (length sym)))))
198
199(define (kw-arg-ref args kw)
200 (let ((rem (member kw args)))
201 (and rem (pair? (cdr rem)) (cadr rem))))
202
203\f
0f2d19dd 204;;; {Print}
6355358a
MD
205;;; MDJ 960919 <djurfeldt@nada.kth.se>: This code will probably be
206;;; removed before the first release of Guile. Later releases may
207;;; contain more fancy printing code.
0f2d19dd
JB
208
209(define (print obj . args)
210 (let ((default-args (list (current-output-port) 0 0 default-print-style #f)))
211 (apply-to-args (append args (list-cdr-ref default-args (length args)))
212 (lambda (port depth length style table)
213 (cond
c7c03b9f
JB
214 ((and table (print-table-ref table obj))
215 ((print-style-tag-hook style 'eq-val)
216 obj port depth length style table))
0f2d19dd
JB
217 (else
218 (and table (print-table-add! table obj))
219 (cond
c7c03b9f
JB
220 ((print-style-max-depth? style depth)
221 ((print-style-excess-depth-hook style)))
222 ((print-style-max-length? style length)
223 ((print-style-excess-length-hook style)))
224 (else
225 ((print-style-hook style obj)
226 obj port depth length style table)))))))))
0f2d19dd 227
95b6af86 228(define (make-print-style) (make-vector 59 '()))
0f2d19dd 229
c7c03b9f
JB
230(define (extend-print-style! style utag printer)
231 (hashq-set! style utag printer))
0f2d19dd
JB
232
233(define (print-style-hook style obj)
234 (let ((type-tag (tag obj)))
235 (or (hashq-ref style type-tag)
236 (hashq-ref style (logand type-tag 255))
237 print-obj)))
238
239(define (print-style-tag-hook style type-tag)
240 (or (hashq-ref style type-tag)
241 print-obj))
242
243(define (print-style-max-depth? style d) #f)
244(define (print-style-max-length? style l) #f)
c7c03b9f
JB
245(define (print-style-excess-length-hook style)
246 (hashq-ref style 'excess-length-hook))
247(define (print-style-excess-depth-hook style)
248 (hashq-ref style 'excess-depth-hook))
0f2d19dd 249
95b6af86 250(define (make-print-table) (make-vector 59 '()))
0f2d19dd
JB
251(define (print-table-ref table obj) (hashq-ref table obj))
252(define (print-table-add! table obj) (hashq-set! table obj (gensym 'ref)))
253
254(define (print-obj obj port depth length style table) (write obj port))
255
256(define (print-pair pair port depth length style table)
257 (if (= 0 length)
258 (display #\( port))
259
260 (print (car pair) port (+ 1 depth) 0 style table)
261
262 (cond
263 ((and (pair? (cdr pair))
264 (or (not table)
265 (not (print-table-ref table (cdr pair)))))
266
267 (display #\space port)
268 (print (cdr pair) port depth (+ 1 length) style table))
269
270 ((null? (cdr pair)) (display #\) port))
271
272 (else (display " . " port)
c7c03b9f
JB
273 (print (cdr pair) port (+ 1 depth) 0
274 style table)
0f2d19dd
JB
275 (display #\) port))))
276
277(define (print-vector obj port depth length style table)
278 (if (= 0 length)
279 (cond
074fa9cf 280 ((weak-key-hash-table? obj) (display "#wh(" port))
0f2d19dd
JB
281 ((weak-value-hash-table? obj) (display "#whv(" port))
282 ((doubly-weak-hash-table? obj) (display "#whd(" port))
283 (else (display "#(" port))))
284
285 (if (< length (vector-length obj))
286 (print (vector-ref obj length) port (+ 1 depth) 0 style table))
287
288 (cond
289 ((>= (+ 1 length) (vector-length obj)) (display #\) port))
290 (else (display #\space port)
c7c03b9f
JB
291 (print obj port depth
292 (+ 1 length)
293 style table))))
0f2d19dd
JB
294
295(define default-print-style (make-print-style))
296
297(extend-print-style! default-print-style utag_vector print-vector)
298(extend-print-style! default-print-style utag_wvect print-vector)
299(extend-print-style! default-print-style utag_pair print-pair)
300(extend-print-style! default-print-style 'eq-val
301 (lambda (obj port depth length style table)
302 (if (symbol? obj)
303 (display obj)
304 (begin
305 (display "##" port)
306 (display (print-table-ref table obj))))))
307
308\f
309;;; {Records}
310;;;
311
312(define record-type-vtable (make-vtable-vtable "prpr" 0))
313
314(define (record-type? obj)
315 (and (struct? obj) (eq? record-type-vtable (struct-vtable obj))))
316
317(define (make-record-type type-name fields . opt)
8e693424 318 (let ((printer-fn (and (pair? opt) (car opt))))
0f2d19dd 319 (let ((struct (make-struct record-type-vtable 0
c7c03b9f
JB
320 (make-struct-layout
321 (apply symbol-append
322 (map (lambda (f) "pw") fields)))
0f2d19dd
JB
323 type-name
324 (copy-tree fields))))
325 ;; !!! leaks printer functions
6355358a
MD
326 ;; MDJ 960919 <djurfeldt@nada.kth.se>: *fixme* need to make it
327 ;; possible to print records nicely.
328 ;(if printer-fn
329; (extend-print-style! default-print-style
330; (logior utag_struct_base (ash (struct-vtable-tag struct) 8))
331; printer-fn))
0f2d19dd
JB
332 struct)))
333
334(define (record-type-name obj)
335 (if (record-type? obj)
336 (struct-ref obj struct-vtable-offset)
337 (error 'not-a-record-type obj)))
338
339(define (record-type-fields obj)
340 (if (record-type? obj)
341 (struct-ref obj (+ 1 struct-vtable-offset))
342 (error 'not-a-record-type obj)))
343
344(define (record-constructor rtd . opt)
8e693424 345 (let ((field-names (if (pair? opt) (car opt) (record-type-fields rtd))))
0f2d19dd
JB
346 (eval `(lambda ,field-names
347 (make-struct ',rtd 0 ,@(map (lambda (f)
348 (if (memq f field-names)
349 f
350 #f))
351 (record-type-fields rtd)))))))
352
353(define (record-predicate rtd)
354 (lambda (obj) (and (struct? obj) (eq? rtd (struct-vtable obj)))))
355
356(define (record-accessor rtd field-name)
357 (let* ((pos (list-index (record-type-fields rtd) field-name)))
358 (if (not pos)
359 (error 'no-such-field field-name))
360 (eval `(lambda (obj)
361 (and (eq? ',rtd (record-type-descriptor obj))
362 (struct-ref obj ,pos))))))
363
364(define (record-modifier rtd field-name)
365 (let* ((pos (list-index (record-type-fields rtd) field-name)))
366 (if (not pos)
367 (error 'no-such-field field-name))
368 (eval `(lambda (obj val)
369 (and (eq? ',rtd (record-type-descriptor obj))
370 (struct-set! obj ,pos val))))))
371
372
373(define (record? obj)
374 (and (struct? obj) (record-type? (struct-vtable obj))))
375
376(define (record-type-descriptor obj)
377 (if (struct? obj)
378 (struct-vtable obj)
379 (error 'not-a-record obj)))
380
21ed9efe
MD
381(provide 'record)
382
0f2d19dd
JB
383\f
384;;; {Booleans}
385;;;
386
387(define (->bool x) (not (not x)))
388
389\f
390;;; {Symbols}
391;;;
392
393(define (symbol-append . args)
394 (string->symbol (apply string-append args)))
395
396(define (list->symbol . args)
397 (string->symbol (apply list->string args)))
398
399(define (symbol . args)
400 (string->symbol (apply string args)))
401
402(define (obarray-symbol-append ob . args)
403 (string->obarray-symbol (apply string-append ob args)))
404
405(define obarray-gensym
406 (let ((n -1))
407 (lambda (obarray . opt)
408 (if (null? opt)
409 (set! opt '(%%gensym)))
410 (let loop ((proposed-name (apply string-append opt)))
411 (if (string->obarray-symbol obarray proposed-name #t)
412 (loop (apply string-append (append opt (begin (set! n (1+ n)) (list (number->string n))))))
413 (string->obarray-symbol obarray proposed-name))))))
414
415(define (gensym . args) (apply obarray-gensym #f args))
416
417\f
418;;; {Lists}
419;;;
420
421(define (list-index l k)
422 (let loop ((n 0)
423 (l l))
424 (and (not (null? l))
425 (if (eq? (car l) k)
426 n
427 (loop (+ n 1) (cdr l))))))
428
429(define (make-list n init)
430 (let loop ((answer '())
431 (n n))
432 (if (<= n 0)
433 answer
434 (loop (cons init answer) (- n 1)))))
435
436
437\f
438;;; {and-map, or-map, and map-in-order}
439;;;
440;;; (and-map fn lst) is like (and (fn (car lst)) (fn (cadr lst)) (fn...) ...)
441;;; (or-map fn lst) is like (or (fn (car lst)) (fn (cadr lst)) (fn...) ...)
442;;; (map-in-order fn lst) is like (map fn lst) but definately in order of lst.
443;;;
444
445;; and-map f l
446;;
447;; Apply f to successive elements of l until exhaustion or f returns #f.
448;; If returning early, return #f. Otherwise, return the last value returned
449;; by f. If f has never been called because l is empty, return #t.
450;;
451(define (and-map f lst)
452 (let loop ((result #t)
453 (l lst))
454 (and result
455 (or (and (null? l)
456 result)
457 (loop (f (car l)) (cdr l))))))
458
459;; or-map f l
460;;
461;; Apply f to successive elements of l until exhaustion or while f returns #f.
462;; If returning early, return the return value of f.
463;;
464(define (or-map f lst)
465 (let loop ((result #f)
466 (l lst))
467 (or result
468 (and (not (null? l))
469 (loop (f (car l)) (cdr l))))))
470
471;; map-in-order
472;;
473;; Like map, but guaranteed to process the list in order.
474;;
475(define (map-in-order fn l)
476 (if (null? l)
477 '()
478 (cons (fn (car l))
479 (map-in-order fn (cdr l)))))
480
481\f
482;;; {Files}
483;;; !!!! these should be implemented using Tcl commands, not fports.
484;;;
485
6fa8995c
GH
486(define (feature? feature)
487 (and (memq feature *features*) #t))
488
3afb28ce
GH
489;; Using the vector returned by stat directly is probably not a good
490;; idea (it could just as well be a record). Hence some accessors.
491(define (stat:dev f) (vector-ref f 0))
492(define (stat:ino f) (vector-ref f 1))
493(define (stat:mode f) (vector-ref f 2))
494(define (stat:nlink f) (vector-ref f 3))
495(define (stat:uid f) (vector-ref f 4))
496(define (stat:gid f) (vector-ref f 5))
497(define (stat:rdev f) (vector-ref f 6))
498(define (stat:size f) (vector-ref f 7))
499(define (stat:atime f) (vector-ref f 8))
500(define (stat:mtime f) (vector-ref f 9))
501(define (stat:ctime f) (vector-ref f 10))
502(define (stat:blksize f) (vector-ref f 11))
503(define (stat:blocks f) (vector-ref f 12))
504
505;; derived from stat mode.
506(define (stat:type f) (vector-ref f 13))
507(define (stat:perms f) (vector-ref f 14))
508
6fa8995c
GH
509(define file-exists?
510 (if (feature? 'posix)
511 (lambda (str)
512 (access? str F_OK))
513 (lambda (str)
514 (let ((port (catch 'system-error (lambda () (open-file str OPEN_READ))
515 (lambda args #f))))
516 (if port (begin (close-port port) #t)
517 #f)))))
518
519(define file-is-directory?
520 (if (feature? 'i/o-extensions)
521 (lambda (str)
3afb28ce 522 (eq? (stat:type (stat str)) 'directory))
6fa8995c
GH
523 (lambda (str)
524 (display str)
525 (newline)
526 (let ((port (catch 'system-error
527 (lambda () (open-file (string-append str "/.")
528 OPEN_READ))
529 (lambda args #f))))
530 (if port (begin (close-port port) #t)
531 #f)))))
0f2d19dd
JB
532
533(define (has-suffix? str suffix)
534 (let ((sufl (string-length suffix))
535 (sl (string-length str)))
536 (and (> sl sufl)
537 (string=? (substring str (- sl sufl) sl) suffix))))
538
0f2d19dd
JB
539\f
540;;; {Error Handling}
541;;;
542
0f2d19dd 543(define (error . args)
21ed9efe 544 (save-stack)
2194b6f0 545 (if (null? args)
5552355a 546 (scm-error 'misc-error #f "?" #f #f)
2194b6f0
GH
547 (let loop ((msg "%s")
548 (rest (cdr args)))
549 (if (not (null? rest))
550 (loop (string-append msg " %S")
551 (cdr rest))
5552355a 552 (scm-error 'misc-error #f msg args #f)))))
be2d2c70
GH
553
554(define (scm-error key subr message args rest)
555 (throw key subr message args rest))
0f2d19dd 556
1349bd53 557;; bad-throw is the hook that is called upon a throw to a an unhandled
9a0d70e2
GH
558;; key (unless the throw has four arguments, in which case
559;; it's usually interpreted as an error throw.)
560;; If the key has a default handler (a throw-handler-default property),
0f2d19dd
JB
561;; it is applied to the throw.
562;;
1349bd53 563(define (bad-throw key . args)
0f2d19dd
JB
564 (let ((default (symbol-property key 'throw-handler-default)))
565 (or (and default (apply default key args))
2194b6f0 566 (apply error "unhandled-exception:" key args))))
0f2d19dd 567
2194b6f0
GH
568;; mostly obsolete.
569;; A number of internally defined error types were represented
0f2d19dd
JB
570;; as integers. Here is the mapping to symbolic names
571;; and error messages.
572;;
2194b6f0
GH
573;(define %%system-errors
574; '((-1 UNKNOWN "Unknown error")
575; (0 ARGn "Wrong type argument to ")
576; (1 ARG1 "Wrong type argument in position 1 to ")
577; (2 ARG2 "Wrong type argument in position 2 to ")
578; (3 ARG3 "Wrong type argument in position 3 to ")
579; (4 ARG4 "Wrong type argument in position 4 to ")
580; (5 ARG5 "Wrong type argument in position 5 to ")
581; (6 ARG5 "Wrong type argument in position 5 to ")
582; (7 ARG5 "Wrong type argument in position 5 to ")
583; (8 WNA "Wrong number of arguments to ")
584; (9 OVFLOW "Numerical overflow to ")
585; (10 OUTOFRANGE "Argument out of range to ")
586; (11 NALLOC "Could not allocate to ")
587; (12 STACK_OVFLOW "Stack overflow")
588; (13 EXIT "Exit (internal error?).")
589; (14 HUP_SIGNAL "hang-up")
590; (15 INT_SIGNAL "user interrupt")
591; (16 FPE_SIGNAL "arithmetic error")
592; (17 BUS_SIGNAL "bus error")
593; (18 SEGV_SIGNAL "segmentation violation")
594; (19 ALRM_SIGNAL "alarm")
595; (20 GC_SIGNAL "gc")
596; (21 TICK_SIGNAL "tick")))
0f2d19dd
JB
597
598
599(define (timer-thunk) #t)
600(define (gc-thunk) #t)
601(define (alarm-thunk) #t)
602
603(define (signal-handler n)
2194b6f0
GH
604 (let* (
605 ;; these numbers are set in libguile, not the same as those
be2d2c70 606 ;; interned in posix.c for SIGSEGV etc.
2194b6f0
GH
607 ;;
608 (signal-messages `((14 . "hang-up")
609 (15 . "user interrupt")
610 (16 . "arithmetic error")
611 (17 . "bus error")
612 (18 . "segmentation violation"))))
613 (cond
614 ((= n 21) (unmask-signals) (timer-thunk))
615 ((= n 20) (unmask-signals) (gc-thunk))
616 ((= n 19) (unmask-signals) (alarm-thunk))
1c6cd8e8
MD
617 (else (set! the-last-stack
618 (make-stack #t
619 (list-ref (list %hup-thunk
620 %int-thunk
621 %fpe-thunk
622 %bus-thunk
623 %segv-thunk)
624 (- n 14))
625 1))
21ed9efe
MD
626 (set! stack-saved? #t)
627 (if (not (and (memq 'debug (debug-options-interface))
628 (eq? (stack-id the-last-stack) 'repl-stack)))
5f771ab1
MD
629 (set! the-last-stack #f))
630 (unmask-signals)
2194b6f0 631 (let ((sig-pair (assoc n signal-messages)))
5552355a
GH
632 (scm-error 'error-signal #f
633 (cdr (or sig-pair
6fa8995c 634 (cons n "Unknown signal: %s")))
5552355a
GH
635 (if sig-pair
636 #f
637 (list n))
638 (list n)))))))
2194b6f0 639
0f2d19dd 640\f
44cf1f0f
JB
641;;; {Non-polymorphic versions of POSIX functions}
642
02b754d3
GH
643(define (getgrnam name) (getgr name))
644(define (getgrgid id) (getgr id))
645(define (gethostbyaddr addr) (gethost addr))
646(define (gethostbyname name) (gethost name))
647(define (getnetbyaddr addr) (getnet addr))
648(define (getnetbyname name) (getnet name))
649(define (getprotobyname name) (getproto name))
650(define (getprotobynumber addr) (getproto addr))
651(define (getpwnam name) (getpw name))
652(define (getpwuid uid) (getpw uid))
920235cc
GH
653(define (getservbyname name proto) (getserv name proto))
654(define (getservbyport port proto) (getserv port proto))
0f2d19dd
JB
655(define (endgrent) (setgr))
656(define (endhostent) (sethost))
657(define (endnetent) (setnet))
658(define (endprotoent) (setproto))
659(define (endpwent) (setpw))
660(define (endservent) (setserv))
661(define (file-position . args) (apply ftell args))
662(define (file-set-position . args) (apply fseek args))
02b754d3
GH
663(define (getgrent) (getgr))
664(define (gethostent) (gethost))
665(define (getnetent) (getnet))
666(define (getprotoent) (getproto))
667(define (getpwent) (getpw))
668(define (getservent) (getserv))
0f2d19dd
JB
669(define (reopen-file . args) (apply freopen args))
670(define (setgrent arg) (setgr arg))
671(define (sethostent arg) (sethost arg))
672(define (setnetent arg) (setnet arg))
673(define (setprotoent arg) (setproto arg))
674(define (setpwent arg) (setpw arg))
675(define (setservent arg) (setserv arg))
8b13c6b3 676
02b754d3 677(define (move->fdes port fd)
8b13c6b3
GH
678 (primitive-move->fdes port fd)
679 (set-port-revealed! port 1)
680 port)
681
682(define (release-port-handle port)
683 (let ((revealed (port-revealed port)))
684 (if (> revealed 0)
685 (set-port-revealed! port (- revealed 1)))))
0f2d19dd
JB
686
687\f
688;;; {Load Paths}
689;;;
690
0f2d19dd
JB
691;;; Here for backward compatability
692;;
693(define scheme-file-suffix (lambda () ".scm"))
694
3cab8392
JB
695(define (in-vicinity vicinity file)
696 (let ((tail (let ((len (string-length vicinity)))
697 (if (zero? len) #f
698 (string-ref vicinity (- len 1))))))
699 (string-append vicinity
700 (if (eq? tail #\/) "" "/")
701 file)))
02ceadb8 702
0f2d19dd 703\f
a06181a2
JB
704;;; {Loading by paths}
705
706;;; Load a Scheme source file named NAME, searching for it in the
707;;; directories listed in %load-path, and applying each of the file
708;;; name extensions listed in %load-extensions.
709(define (load-from-path name)
710 (start-stack 'load-stack
711 (primitive-load-path name #t read-sharp)))
0f2d19dd 712
5552355a 713
0f2d19dd 714\f
0f2d19dd
JB
715;;; {Transcendental Functions}
716;;;
717;;; Derived from "Transcen.scm", Complex trancendental functions for SCM.
718;;; Copyright (C) 1992, 1993 Jerry D. Hedden.
719;;; See the file `COPYING' for terms applying to this program.
720;;;
721
722(define (exp z)
723 (if (real? z) ($exp z)
724 (make-polar ($exp (real-part z)) (imag-part z))))
725
726(define (log z)
727 (if (and (real? z) (>= z 0))
728 ($log z)
729 (make-rectangular ($log (magnitude z)) (angle z))))
730
731(define (sqrt z)
732 (if (real? z)
733 (if (negative? z) (make-rectangular 0 ($sqrt (- z)))
734 ($sqrt z))
735 (make-polar ($sqrt (magnitude z)) (/ (angle z) 2))))
736
737(define expt
738 (let ((integer-expt integer-expt))
739 (lambda (z1 z2)
740 (cond ((exact? z2)
741 (integer-expt z1 z2))
742 ((and (real? z2) (real? z1) (>= z1 0))
743 ($expt z1 z2))
744 (else
745 (exp (* z2 (log z1))))))))
746
747(define (sinh z)
748 (if (real? z) ($sinh z)
749 (let ((x (real-part z)) (y (imag-part z)))
750 (make-rectangular (* ($sinh x) ($cos y))
751 (* ($cosh x) ($sin y))))))
752(define (cosh z)
753 (if (real? z) ($cosh z)
754 (let ((x (real-part z)) (y (imag-part z)))
755 (make-rectangular (* ($cosh x) ($cos y))
756 (* ($sinh x) ($sin y))))))
757(define (tanh z)
758 (if (real? z) ($tanh z)
759 (let* ((x (* 2 (real-part z)))
760 (y (* 2 (imag-part z)))
761 (w (+ ($cosh x) ($cos y))))
762 (make-rectangular (/ ($sinh x) w) (/ ($sin y) w)))))
763
764(define (asinh z)
765 (if (real? z) ($asinh z)
766 (log (+ z (sqrt (+ (* z z) 1))))))
767
768(define (acosh z)
769 (if (and (real? z) (>= z 1))
770 ($acosh z)
771 (log (+ z (sqrt (- (* z z) 1))))))
772
773(define (atanh z)
774 (if (and (real? z) (> z -1) (< z 1))
775 ($atanh z)
776 (/ (log (/ (+ 1 z) (- 1 z))) 2)))
777
778(define (sin z)
779 (if (real? z) ($sin z)
780 (let ((x (real-part z)) (y (imag-part z)))
781 (make-rectangular (* ($sin x) ($cosh y))
782 (* ($cos x) ($sinh y))))))
783(define (cos z)
784 (if (real? z) ($cos z)
785 (let ((x (real-part z)) (y (imag-part z)))
786 (make-rectangular (* ($cos x) ($cosh y))
787 (- (* ($sin x) ($sinh y)))))))
788(define (tan z)
789 (if (real? z) ($tan z)
790 (let* ((x (* 2 (real-part z)))
791 (y (* 2 (imag-part z)))
792 (w (+ ($cos x) ($cosh y))))
793 (make-rectangular (/ ($sin x) w) (/ ($sinh y) w)))))
794
795(define (asin z)
796 (if (and (real? z) (>= z -1) (<= z 1))
797 ($asin z)
798 (* -i (asinh (* +i z)))))
799
800(define (acos z)
801 (if (and (real? z) (>= z -1) (<= z 1))
802 ($acos z)
803 (+ (/ (angle -1) 2) (* +i (asinh (* +i z))))))
804
805(define (atan z . y)
806 (if (null? y)
807 (if (real? z) ($atan z)
808 (/ (log (/ (- +i z) (+ +i z))) +2i))
809 ($atan2 z (car y))))
810
811(set! abs magnitude)
812
813\f
814;;; {User Settable Hooks}
815;;;
816;;; Parts of the C code check the bindings of these variables.
817;;;
818
819(define ticks-interrupt #f)
820(define user-interrupt #f)
821(define alarm-interrupt #f)
822(define out-of-storage #f)
823(define could-not-open #f)
824(define end-of-program #f)
825(define hang-up #f)
826(define arithmetic-error #f)
827(define read-sharp #f)
828
829\f
830
831;;; {Reader Extensions}
832;;;
833
834;;; Reader code for various "#c" forms.
835;;;
836
837(define (parse-path-symbol s)
21ed9efe 838 (define (separate-fields-discarding-char ch str ret)
0f2d19dd
JB
839 (let loop ((fields '())
840 (str str))
841 (cond
842 ((string-rindex str ch)
843 => (lambda (pos) (loop (cons (make-shared-substring str (+ 1 pos)) fields)
844 (make-shared-substring str 0 pos))))
845 (else (ret (cons str fields))))))
21ed9efe 846 (separate-fields-discarding-char #\/
0f2d19dd
JB
847 s
848 (lambda (fields)
849 (map string->symbol fields))))
850
851
852(define (%read-sharp c port)
853 (define (barf)
854 (error "unknown # object" c))
855
856 (case c
857 ((#\/) (let ((look (peek-char port)))
858 (if (or (eof-object? look)
859 (and (char? look)
860 (or (char-whitespace? look)
861 (string-index ")" look))))
862 '()
863 (parse-path-symbol (read port #t read-sharp)))))
864 ((#\') (read port #t read-sharp))
865 ((#\.) (eval (read port #t read-sharp)))
866 ((#\b) (read:uniform-vector #t port))
867 ((#\a) (read:uniform-vector #\a port))
868 ((#\u) (read:uniform-vector 1 port))
869 ((#\e) (read:uniform-vector -1 port))
870 ((#\s) (read:uniform-vector 1.0 port))
871 ((#\i) (read:uniform-vector 1/3 port))
872 ((#\c) (read:uniform-vector 0+i port))
873 ((#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9)
874 (read:array c port))
0f2d19dd
JB
875 (else (barf))))
876
877(define (read:array digit port)
878 (define chr0 (char->integer #\0))
879 (let ((rank (let readnum ((val (- (char->integer digit) chr0)))
880 (if (char-numeric? (peek-char port))
881 (readnum (+ (* 10 val)
882 (- (char->integer (read-char port)) chr0)))
883 val)))
884 (prot (if (eq? #\( (peek-char port))
885 '()
886 (let ((c (read-char port)))
887 (case c ((#\b) #t)
888 ((#\a) #\a)
889 ((#\u) 1)
890 ((#\e) -1)
891 ((#\s) 1.0)
892 ((#\i) 1/3)
893 ((#\c) 0+i)
894 (else (error "read:array unknown option " c)))))))
895 (if (eq? (peek-char port) #\()
896 (list->uniform-array rank prot (read port #t read-sharp))
897 (error "read:array list not found"))))
898
899(define (read:uniform-vector proto port)
900 (if (eq? #\( (peek-char port))
901 (list->uniform-array 1 proto (read port #t read-sharp))
902 (error "read:uniform-vector list not found")))
903
904
905(define read-sharp (lambda a (apply %read-sharp a)))
906
907
908\f
909;;; {Dynamic Roots}
910;;;
911
912; mystery integers passed dynamic root error handlers
913(define repl-quit -1)
914(define repl-abort -2)
915
916
917\f
918;;; {Command Line Options}
919;;;
920
921(define (get-option argv kw-opts kw-args return)
922 (cond
923 ((null? argv)
924 (return #f #f argv))
925
926 ((or (not (eq? #\- (string-ref (car argv) 0)))
927 (eq? (string-length (car argv)) 1))
928 (return 'normal-arg (car argv) (cdr argv)))
929
930 ((eq? #\- (string-ref (car argv) 1))
931 (let* ((kw-arg-pos (or (string-index (car argv) #\=)
932 (string-length (car argv))))
933 (kw (symbol->keyword (substring (car argv) 2 kw-arg-pos)))
934 (kw-opt? (member kw kw-opts))
935 (kw-arg? (member kw kw-args))
936 (arg (or (and (not (eq? kw-arg-pos (string-length (car argv))))
937 (substring (car argv)
938 (+ kw-arg-pos 1)
939 (string-length (car argv))))
940 (and kw-arg?
941 (begin (set! argv (cdr argv)) (car argv))))))
942 (if (or kw-opt? kw-arg?)
943 (return kw arg (cdr argv))
944 (return 'usage-error kw (cdr argv)))))
945
946 (else
947 (let* ((char (substring (car argv) 1 2))
948 (kw (symbol->keyword char)))
949 (cond
950
951 ((member kw kw-opts)
952 (let* ((rest-car (substring (car argv) 2 (string-length (car argv))))
953 (new-argv (if (= 0 (string-length rest-car))
954 (cdr argv)
955 (cons (string-append "-" rest-car) (cdr argv)))))
956 (return kw #f new-argv)))
957
958 ((member kw kw-args)
959 (let* ((rest-car (substring (car argv) 2 (string-length (car argv))))
960 (arg (if (= 0 (string-length rest-car))
961 (cadr argv)
962 rest-car))
963 (new-argv (if (= 0 (string-length rest-car))
964 (cddr argv)
965 (cdr argv))))
966 (return kw arg new-argv)))
967
968 (else (return 'usage-error kw argv)))))))
969
970(define (for-next-option proc argv kw-opts kw-args)
971 (let loop ((argv argv))
972 (get-option argv kw-opts kw-args
973 (lambda (opt opt-arg argv)
974 (and opt (proc opt opt-arg argv loop))))))
975
976(define (display-usage-report kw-desc)
977 (for-each
978 (lambda (kw)
979 (or (eq? (car kw) #t)
980 (eq? (car kw) 'else)
981 (let* ((opt-desc kw)
982 (help (cadr opt-desc))
983 (opts (car opt-desc))
984 (opts-proper (if (string? (car opts)) (cdr opts) opts))
985 (arg-name (if (string? (car opts))
986 (string-append "<" (car opts) ">")
987 ""))
988 (left-part (string-append
989 (with-output-to-string
990 (lambda ()
991 (map (lambda (x) (display (keyword-symbol x)) (display " "))
992 opts-proper)))
993 arg-name))
994 (middle-part (if (and (< (length left-part) 30)
995 (< (length help) 40))
996 (make-string (- 30 (length left-part)) #\ )
997 "\n\t")))
998 (display left-part)
999 (display middle-part)
1000 (display help)
1001 (newline))))
1002 kw-desc))
1003
1004
1005
0f2d19dd
JB
1006(define (transform-usage-lambda cases)
1007 (let* ((raw-usage (delq! 'else (map car cases)))
1008 (usage-sans-specials (map (lambda (x)
1009 (or (and (not (list? x)) x)
1010 (and (symbol? (car x)) #t)
1011 (and (boolean? (car x)) #t)
1012 x))
1013 raw-usage))
ed440df5 1014 (usage-desc (delq! #t usage-sans-specials))
0f2d19dd
JB
1015 (kw-desc (map car usage-desc))
1016 (kw-opts (apply append (map (lambda (x) (and (not (string? (car x))) x)) kw-desc)))
1017 (kw-args (apply append (map (lambda (x) (and (string? (car x)) (cdr x))) kw-desc)))
1018 (transmogrified-cases (map (lambda (case)
1019 (cons (let ((opts (car case)))
1020 (if (or (boolean? opts) (eq? 'else opts))
1021 opts
1022 (cond
1023 ((symbol? (car opts)) opts)
1024 ((boolean? (car opts)) opts)
1025 ((string? (caar opts)) (cdar opts))
1026 (else (car opts)))))
1027 (cdr case)))
1028 cases)))
1029 `(let ((%display-usage (lambda () (display-usage-report ',usage-desc))))
1030 (lambda (%argv)
1031 (let %next-arg ((%argv %argv))
1032 (get-option %argv
1033 ',kw-opts
1034 ',kw-args
1035 (lambda (%opt %arg %new-argv)
1036 (case %opt
1037 ,@ transmogrified-cases))))))))
1038
1039
1040\f
1041
1042;;; {Low Level Modules}
1043;;;
1044;;; These are the low level data structures for modules.
1045;;;
1046;;; !!! warning: The interface to lazy binder procedures is going
1047;;; to be changed in an incompatible way to permit all the basic
1048;;; module ops to be virtualized.
1049;;;
1050;;; (make-module size use-list lazy-binding-proc) => module
1051;;; module-{obarray,uses,binder}[|-set!]
1052;;; (module? obj) => [#t|#f]
1053;;; (module-locally-bound? module symbol) => [#t|#f]
1054;;; (module-bound? module symbol) => [#t|#f]
1055;;; (module-symbol-locally-interned? module symbol) => [#t|#f]
1056;;; (module-symbol-interned? module symbol) => [#t|#f]
1057;;; (module-local-variable module symbol) => [#<variable ...> | #f]
1058;;; (module-variable module symbol) => [#<variable ...> | #f]
1059;;; (module-symbol-binding module symbol opt-value)
1060;;; => [ <obj> | opt-value | an error occurs ]
1061;;; (module-make-local-var! module symbol) => #<variable...>
1062;;; (module-add! module symbol var) => unspecified
1063;;; (module-remove! module symbol) => unspecified
1064;;; (module-for-each proc module) => unspecified
1065;;; (make-scm-module) => module ; a lazy copy of the symhash module
1066;;; (set-current-module module) => unspecified
1067;;; (current-module) => #<module...>
1068;;;
1069;;;
1070
1071\f
44cf1f0f
JB
1072;;; {Printing Modules}
1073;; This is how modules are printed. You can re-define it.
0f2d19dd
JB
1074;;
1075(define (%print-module mod port depth length style table)
1076 (display "#<" port)
1077 (display (or (module-kind mod) "module") port)
1078 (let ((name (module-name mod)))
1079 (if name
1080 (begin
1081 (display " " port)
1082 (display name port))))
1083 (display " " port)
1084 (display (number->string (object-address mod) 16) port)
1085 (display ">" port))
1086
1087;; module-type
1088;;
1089;; A module is characterized by an obarray in which local symbols
1090;; are interned, a list of modules, "uses", from which non-local
1091;; bindings can be inherited, and an optional lazy-binder which
31d50456 1092;; is a (CLOSURE module symbol) which, as a last resort, can provide
0f2d19dd
JB
1093;; bindings that would otherwise not be found locally in the module.
1094;;
1095(define module-type
31d50456 1096 (make-record-type 'module '(obarray uses binder eval-closure name kind)
8b718458 1097 %print-module))
0f2d19dd 1098
8b718458 1099;; make-module &opt size uses binder
0f2d19dd 1100;;
8b718458
JB
1101;; Create a new module, perhaps with a particular size of obarray,
1102;; initial uses list, or binding procedure.
0f2d19dd 1103;;
0f2d19dd
JB
1104(define make-module
1105 (lambda args
0f2d19dd 1106
8b718458
JB
1107 (define (parse-arg index default)
1108 (if (> (length args) index)
1109 (list-ref args index)
1110 default))
1111
1112 (if (> (length args) 3)
1113 (error "Too many args to make-module." args))
0f2d19dd 1114
8b718458
JB
1115 (let ((size (parse-arg 0 1021))
1116 (uses (parse-arg 1 '()))
1117 (binder (parse-arg 2 #f)))
0f2d19dd 1118
8b718458
JB
1119 (if (not (integer? size))
1120 (error "Illegal size to make-module." size))
1121 (if (not (and (list? uses)
1122 (and-map module? uses)))
1123 (error "Incorrect use list." uses))
0f2d19dd
JB
1124 (if (and binder (not (procedure? binder)))
1125 (error
1126 "Lazy-binder expected to be a procedure or #f." binder))
1127
8b718458
JB
1128 (let ((module (module-constructor (make-vector size '())
1129 uses binder #f #f #f)))
1130
1131 ;; We can't pass this as an argument to module-constructor,
1132 ;; because we need it to close over a pointer to the module
1133 ;; itself.
31d50456 1134 (set-module-eval-closure! module
8b718458
JB
1135 (lambda (symbol define?)
1136 (if define?
1137 (module-make-local-var! module symbol)
1138 (module-variable module symbol))))
1139
1140 module))))
0f2d19dd 1141
8b718458 1142(define module-constructor (record-constructor module-type))
0f2d19dd
JB
1143(define module-obarray (record-accessor module-type 'obarray))
1144(define set-module-obarray! (record-modifier module-type 'obarray))
1145(define module-uses (record-accessor module-type 'uses))
1146(define set-module-uses! (record-modifier module-type 'uses))
1147(define module-binder (record-accessor module-type 'binder))
1148(define set-module-binder! (record-modifier module-type 'binder))
31d50456
JB
1149(define module-eval-closure (record-accessor module-type 'eval-closure))
1150(define set-module-eval-closure! (record-modifier module-type 'eval-closure))
0f2d19dd
JB
1151(define module-name (record-accessor module-type 'name))
1152(define set-module-name! (record-modifier module-type 'name))
1153(define module-kind (record-accessor module-type 'kind))
1154(define set-module-kind! (record-modifier module-type 'kind))
1155(define module? (record-predicate module-type))
1156
8b718458 1157
0f2d19dd 1158(define (eval-in-module exp module)
31d50456 1159 (eval2 exp (module-eval-closure module)))
0f2d19dd
JB
1160
1161\f
1162;;; {Module Searching in General}
1163;;;
1164;;; We sometimes want to look for properties of a symbol
1165;;; just within the obarray of one module. If the property
1166;;; holds, then it is said to hold ``locally'' as in, ``The symbol
1167;;; DISPLAY is locally rebound in the module `safe-guile'.''
1168;;;
1169;;;
1170;;; Other times, we want to test for a symbol property in the obarray
1171;;; of M and, if it is not found there, try each of the modules in the
1172;;; uses list of M. This is the normal way of testing for some
1173;;; property, so we state these properties without qualification as
1174;;; in: ``The symbol 'fnord is interned in module M because it is
1175;;; interned locally in module M2 which is a member of the uses list
1176;;; of M.''
1177;;;
1178
1179;; module-search fn m
1180;;
1181;; return the first non-#f result of FN applied to M and then to
1182;; the modules in the uses of m, and so on recursively. If all applications
1183;; return #f, then so does this function.
1184;;
1185(define (module-search fn m v)
1186 (define (loop pos)
1187 (and (pair? pos)
1188 (or (module-search fn (car pos) v)
1189 (loop (cdr pos)))))
1190 (or (fn m v)
1191 (loop (module-uses m))))
1192
1193
1194;;; {Is a symbol bound in a module?}
1195;;;
1196;;; Symbol S in Module M is bound if S is interned in M and if the binding
1197;;; of S in M has been set to some well-defined value.
1198;;;
1199
1200;; module-locally-bound? module symbol
1201;;
1202;; Is a symbol bound (interned and defined) locally in a given module?
1203;;
1204(define (module-locally-bound? m v)
1205 (let ((var (module-local-variable m v)))
1206 (and var
1207 (variable-bound? var))))
1208
1209;; module-bound? module symbol
1210;;
1211;; Is a symbol bound (interned and defined) anywhere in a given module
1212;; or its uses?
1213;;
1214(define (module-bound? m v)
1215 (module-search module-locally-bound? m v))
1216
1217;;; {Is a symbol interned in a module?}
1218;;;
1219;;; Symbol S in Module M is interned if S occurs in
1220;;; of S in M has been set to some well-defined value.
1221;;;
1222;;; It is possible to intern a symbol in a module without providing
1223;;; an initial binding for the corresponding variable. This is done
1224;;; with:
1225;;; (module-add! module symbol (make-undefined-variable))
1226;;;
1227;;; In that case, the symbol is interned in the module, but not
1228;;; bound there. The unbound symbol shadows any binding for that
1229;;; symbol that might otherwise be inherited from a member of the uses list.
1230;;;
1231
1232(define (module-obarray-get-handle ob key)
1233 ((if (symbol? key) hashq-get-handle hash-get-handle) ob key))
1234
1235(define (module-obarray-ref ob key)
1236 ((if (symbol? key) hashq-ref hash-ref) ob key))
1237
1238(define (module-obarray-set! ob key val)
1239 ((if (symbol? key) hashq-set! hash-set!) ob key val))
1240
1241(define (module-obarray-remove! ob key)
1242 ((if (symbol? key) hashq-remove! hash-remove!) ob key))
1243
1244;; module-symbol-locally-interned? module symbol
1245;;
1246;; is a symbol interned (not neccessarily defined) locally in a given module
1247;; or its uses? Interned symbols shadow inherited bindings even if
1248;; they are not themselves bound to a defined value.
1249;;
1250(define (module-symbol-locally-interned? m v)
1251 (not (not (module-obarray-get-handle (module-obarray m) v))))
1252
1253;; module-symbol-interned? module symbol
1254;;
1255;; is a symbol interned (not neccessarily defined) anywhere in a given module
1256;; or its uses? Interned symbols shadow inherited bindings even if
1257;; they are not themselves bound to a defined value.
1258;;
1259(define (module-symbol-interned? m v)
1260 (module-search module-symbol-locally-interned? m v))
1261
1262
1263;;; {Mapping modules x symbols --> variables}
1264;;;
1265
1266;; module-local-variable module symbol
1267;; return the local variable associated with a MODULE and SYMBOL.
1268;;
1269;;; This function is very important. It is the only function that can
1270;;; return a variable from a module other than the mutators that store
1271;;; new variables in modules. Therefore, this function is the location
1272;;; of the "lazy binder" hack.
1273;;;
1274;;; If symbol is defined in MODULE, and if the definition binds symbol
1275;;; to a variable, return that variable object.
1276;;;
1277;;; If the symbols is not found at first, but the module has a lazy binder,
1278;;; then try the binder.
1279;;;
1280;;; If the symbol is not found at all, return #f.
1281;;;
1282(define (module-local-variable m v)
6fa8995c
GH
1283; (caddr
1284; (list m v
0f2d19dd
JB
1285 (let ((b (module-obarray-ref (module-obarray m) v)))
1286 (or (and (variable? b) b)
1287 (and (module-binder m)
6fa8995c
GH
1288 ((module-binder m) m v #f)))))
1289;))
0f2d19dd
JB
1290
1291;; module-variable module symbol
1292;;
1293;; like module-local-variable, except search the uses in the
1294;; case V is not found in M.
1295;;
1296(define (module-variable m v)
1297 (module-search module-local-variable m v))
1298
1299
1300;;; {Mapping modules x symbols --> bindings}
1301;;;
1302;;; These are similar to the mapping to variables, except that the
1303;;; variable is dereferenced.
1304;;;
1305
1306;; module-symbol-binding module symbol opt-value
1307;;
1308;; return the binding of a variable specified by name within
1309;; a given module, signalling an error if the variable is unbound.
1310;; If the OPT-VALUE is passed, then instead of signalling an error,
1311;; return OPT-VALUE.
1312;;
1313(define (module-symbol-local-binding m v . opt-val)
1314 (let ((var (module-local-variable m v)))
1315 (if var
1316 (variable-ref var)
1317 (if (not (null? opt-val))
1318 (car opt-val)
1319 (error "Locally unbound variable." v)))))
1320
1321;; module-symbol-binding module symbol opt-value
1322;;
1323;; return the binding of a variable specified by name within
1324;; a given module, signalling an error if the variable is unbound.
1325;; If the OPT-VALUE is passed, then instead of signalling an error,
1326;; return OPT-VALUE.
1327;;
1328(define (module-symbol-binding m v . opt-val)
1329 (let ((var (module-variable m v)))
1330 (if var
1331 (variable-ref var)
1332 (if (not (null? opt-val))
1333 (car opt-val)
1334 (error "Unbound variable." v)))))
1335
1336
1337\f
1338;;; {Adding Variables to Modules}
1339;;;
1340;;;
1341
1342
1343;; module-make-local-var! module symbol
1344;;
1345;; ensure a variable for V in the local namespace of M.
1346;; If no variable was already there, then create a new and uninitialzied
1347;; variable.
1348;;
1349(define (module-make-local-var! m v)
1350 (or (let ((b (module-obarray-ref (module-obarray m) v)))
1351 (and (variable? b) b))
1352 (and (module-binder m)
1353 ((module-binder m) m v #t))
1354 (begin
1355 (let ((answer (make-undefined-variable v)))
1356 (module-obarray-set! (module-obarray m) v answer)
1357 answer))))
1358
1359;; module-add! module symbol var
1360;;
1361;; ensure a particular variable for V in the local namespace of M.
1362;;
1363(define (module-add! m v var)
1364 (if (not (variable? var))
1365 (error "Bad variable to module-add!" var))
1366 (module-obarray-set! (module-obarray m) v var))
1367
1368;; module-remove!
1369;;
1370;; make sure that a symbol is undefined in the local namespace of M.
1371;;
1372(define (module-remove! m v)
1373 (module-obarray-remove! (module-obarray m) v))
1374
1375(define (module-clear! m)
1376 (vector-fill! (module-obarray m) '()))
1377
1378;; MODULE-FOR-EACH -- exported
1379;;
1380;; Call PROC on each symbol in MODULE, with arguments of (SYMBOL VARIABLE).
1381;;
1382(define (module-for-each proc module)
1383 (let ((obarray (module-obarray module)))
1384 (do ((index 0 (+ index 1))
1385 (end (vector-length obarray)))
1386 ((= index end))
1387 (for-each
1388 (lambda (bucket)
1389 (proc (car bucket) (cdr bucket)))
1390 (vector-ref obarray index)))))
1391
1392
1393(define (module-map proc module)
1394 (let* ((obarray (module-obarray module))
1395 (end (vector-length obarray)))
1396
1397 (let loop ((i 0)
1398 (answer '()))
1399 (if (= i end)
1400 answer
1401 (loop (+ 1 i)
1402 (append!
1403 (map (lambda (bucket)
1404 (proc (car bucket) (cdr bucket)))
1405 (vector-ref obarray i))
1406 answer))))))
1407\f
1408
1409;;; {Low Level Bootstrapping}
1410;;;
1411
1412;; make-root-module
1413
21ed9efe 1414;; A root module uses the symhash table (the system's privileged
0f2d19dd
JB
1415;; obarray). Being inside a root module is like using SCM without
1416;; any module system.
1417;;
1418
1419
31d50456 1420(define (root-module-closure m s define?)
0f2d19dd
JB
1421 (let ((bi (and (symbol-interned? #f s)
1422 (builtin-variable s))))
1423 (and bi
1424 (or define? (variable-bound? bi))
1425 (begin
1426 (module-add! m s bi)
1427 bi))))
1428
1429(define (make-root-module)
31d50456 1430 (make-module 1019 '() root-module-closure))
0f2d19dd
JB
1431
1432
1433;; make-scm-module
1434
1435;; An scm module is a module into which the lazy binder copies
1436;; variable bindings from the system symhash table. The mapping is
1437;; one way only; newly introduced bindings in an scm module are not
1438;; copied back into the system symhash table (and can be used to override
1439;; bindings from the symhash table).
1440;;
1441
1442(define (make-scm-module)
8b718458 1443 (make-module 1019 '()
0f2d19dd
JB
1444 (lambda (m s define?)
1445 (let ((bi (and (symbol-interned? #f s)
1446 (builtin-variable s))))
1447 (and bi
1448 (variable-bound? bi)
1449 (begin
1450 (module-add! m s bi)
1451 bi))))))
1452
1453
1454
1455
1456;; the-module
1457;;
1458(define the-module #f)
1459
1460;; set-current-module module
1461;;
1462;; set the current module as viewed by the normalizer.
1463;;
1464(define (set-current-module m)
1465 (set! the-module m)
1466 (if m
31d50456
JB
1467 (set! *top-level-lookup-closure* (module-eval-closure the-module))
1468 (set! *top-level-lookup-closure* #f)))
0f2d19dd
JB
1469
1470
1471;; current-module
1472;;
1473;; return the current module as viewed by the normalizer.
1474;;
1475(define (current-module) the-module)
1476\f
1477;;; {Module-based Loading}
1478;;;
1479
1480(define (save-module-excursion thunk)
1481 (let ((inner-module (current-module))
1482 (outer-module #f))
1483 (dynamic-wind (lambda ()
1484 (set! outer-module (current-module))
1485 (set-current-module inner-module)
1486 (set! inner-module #f))
1487 thunk
1488 (lambda ()
1489 (set! inner-module (current-module))
1490 (set-current-module outer-module)
1491 (set! outer-module #f)))))
1492
0f2d19dd
JB
1493(define basic-load load)
1494
0f2d19dd
JB
1495(define (load-module . args)
1496 (save-module-excursion (lambda () (apply basic-load args))))
1497
1498
1499\f
44cf1f0f 1500;;; {MODULE-REF -- exported}
0f2d19dd
JB
1501;;
1502;; Returns the value of a variable called NAME in MODULE or any of its
1503;; used modules. If there is no such variable, then if the optional third
1504;; argument DEFAULT is present, it is returned; otherwise an error is signaled.
1505;;
1506(define (module-ref module name . rest)
1507 (let ((variable (module-variable module name)))
1508 (if (and variable (variable-bound? variable))
1509 (variable-ref variable)
1510 (if (null? rest)
1511 (error "No variable named" name 'in module)
1512 (car rest) ; default value
1513 ))))
1514
1515;; MODULE-SET! -- exported
1516;;
1517;; Sets the variable called NAME in MODULE (or in a module that MODULE uses)
1518;; to VALUE; if there is no such variable, an error is signaled.
1519;;
1520(define (module-set! module name value)
1521 (let ((variable (module-variable module name)))
1522 (if variable
1523 (variable-set! variable value)
1524 (error "No variable named" name 'in module))))
1525
1526;; MODULE-DEFINE! -- exported
1527;;
1528;; Sets the variable called NAME in MODULE to VALUE; if there is no such
1529;; variable, it is added first.
1530;;
1531(define (module-define! module name value)
1532 (let ((variable (module-local-variable module name)))
1533 (if variable
1534 (variable-set! variable value)
1535 (module-add! module name (make-variable value name)))))
1536
1537;; MODULE-USE! module interface
1538;;
1539;; Add INTERFACE to the list of interfaces used by MODULE.
1540;;
1541(define (module-use! module interface)
1542 (set-module-uses! module
1543 (cons interface (delq! interface (module-uses module)))))
1544
1545\f
0f2d19dd
JB
1546;;; {Recursive Namespaces}
1547;;;
1548;;;
1549;;; A hierarchical namespace emerges if we consider some module to be
1550;;; root, and variables bound to modules as nested namespaces.
1551;;;
1552;;; The routines in this file manage variable names in hierarchical namespace.
1553;;; Each variable name is a list of elements, looked up in successively nested
1554;;; modules.
1555;;;
0dd5491c 1556;;; (nested-ref some-root-module '(foo bar baz))
0f2d19dd
JB
1557;;; => <value of a variable named baz in the module bound to bar in
1558;;; the module bound to foo in some-root-module>
1559;;;
1560;;;
1561;;; There are:
1562;;;
1563;;; ;; a-root is a module
1564;;; ;; name is a list of symbols
1565;;;
0dd5491c
MD
1566;;; nested-ref a-root name
1567;;; nested-set! a-root name val
1568;;; nested-define! a-root name val
1569;;; nested-remove! a-root name
0f2d19dd
JB
1570;;;
1571;;;
1572;;; (current-module) is a natural choice for a-root so for convenience there are
1573;;; also:
1574;;;
0dd5491c
MD
1575;;; local-ref name == nested-ref (current-module) name
1576;;; local-set! name val == nested-set! (current-module) name val
1577;;; local-define! name val == nested-define! (current-module) name val
1578;;; local-remove! name == nested-remove! (current-module) name
0f2d19dd
JB
1579;;;
1580
1581
0dd5491c 1582(define (nested-ref root names)
0f2d19dd
JB
1583 (let loop ((cur root)
1584 (elts names))
1585 (cond
1586 ((null? elts) cur)
1587 ((not (module? cur)) #f)
1588 (else (loop (module-ref cur (car elts) #f) (cdr elts))))))
1589
0dd5491c 1590(define (nested-set! root names val)
0f2d19dd
JB
1591 (let loop ((cur root)
1592 (elts names))
1593 (if (null? (cdr elts))
1594 (module-set! cur (car elts) val)
1595 (loop (module-ref cur (car elts)) (cdr elts)))))
1596
0dd5491c 1597(define (nested-define! root names val)
0f2d19dd
JB
1598 (let loop ((cur root)
1599 (elts names))
1600 (if (null? (cdr elts))
1601 (module-define! cur (car elts) val)
1602 (loop (module-ref cur (car elts)) (cdr elts)))))
1603
0dd5491c 1604(define (nested-remove! root names)
0f2d19dd
JB
1605 (let loop ((cur root)
1606 (elts names))
1607 (if (null? (cdr elts))
1608 (module-remove! cur (car elts))
1609 (loop (module-ref cur (car elts)) (cdr elts)))))
1610
0dd5491c
MD
1611(define (local-ref names) (nested-ref (current-module) names))
1612(define (local-set! names val) (nested-set! (current-module) names val))
1613(define (local-define names val) (nested-define! (current-module) names val))
1614(define (local-remove names) (nested-remove! (current-module) names))
0f2d19dd
JB
1615
1616
1617\f
44cf1f0f 1618;;; {#/app}
0f2d19dd
JB
1619;;;
1620;;; The root of conventionally named objects not directly in the top level.
1621;;;
1622;;; #/app/modules
1623;;; #/app/modules/guile
1624;;;
1625;;; The directory of all modules and the standard root module.
1626;;;
1627
1628(define (module-public-interface m) (module-ref m '%module-public-interface #f))
1629(define (set-module-public-interface! m i) (module-define! m '%module-public-interface i))
1630(define the-root-module (make-root-module))
1631(define the-scm-module (make-scm-module))
1632(set-module-public-interface! the-root-module the-scm-module)
1633(set-module-name! the-root-module 'the-root-module)
1634(set-module-name! the-scm-module 'the-scm-module)
1635
1636(set-current-module the-root-module)
1637
1638(define app (make-module 31))
0dd5491c
MD
1639(local-define '(app modules) (make-module 31))
1640(local-define '(app modules guile) the-root-module)
0f2d19dd
JB
1641
1642;; (define-special-value '(app modules new-ws) (lambda () (make-scm-module)))
1643
0209ca9a 1644(define (resolve-module name . maybe-autoload)
0f2d19dd 1645 (let ((full-name (append '(app modules) name)))
0dd5491c 1646 (let ((already (local-ref full-name)))
0f2d19dd
JB
1647 (or already
1648 (begin
0209ca9a 1649 (if (or (null? maybe-autoload) (car maybe-autoload))
d0cbd20c
MV
1650 (or (try-module-autoload name)
1651 (try-module-dynamic-link name)))
0f2d19dd
JB
1652 (make-modules-in (current-module) full-name))))))
1653
1654(define (beautify-user-module! module)
1655 (if (not (module-public-interface module))
1656 (let ((interface (make-module 31)))
1657 (set-module-name! interface (module-name module))
1658 (set-module-kind! interface 'interface)
1659 (set-module-public-interface! module interface)))
1660 (if (not (memq the-scm-module (module-uses module)))
1661 (set-module-uses! module (append (module-uses module) (list the-scm-module)))))
1662
1663(define (make-modules-in module name)
1664 (if (null? name)
1665 module
1666 (cond
1667 ((module-ref module (car name) #f) => (lambda (m) (make-modules-in m (cdr name))))
1668 (else (let ((m (make-module 31)))
1669 (set-module-kind! m 'directory)
1670 (set-module-name! m (car name))
1671 (module-define! module (car name) m)
1672 (make-modules-in m (cdr name)))))))
1673
1674(define (resolve-interface name)
1675 (let ((module (resolve-module name)))
1676 (and module (module-public-interface module))))
1677
1678
1679(define %autoloader-developer-mode #t)
1680
1681(define (process-define-module args)
1682 (let* ((module-id (car args))
0209ca9a 1683 (module (resolve-module module-id #f))
0f2d19dd
JB
1684 (kws (cdr args)))
1685 (beautify-user-module! module)
0209ca9a
MV
1686 (let loop ((kws kws)
1687 (reversed-interfaces '()))
1688 (if (null? kws)
1689 (for-each (lambda (interface)
1690 (module-use! module interface))
1691 reversed-interfaces)
1692 (case (car kws)
1693 ((:use-module)
1694 (if (not (pair? (cdr kws)))
1695 (error "unrecognized defmodule argument" kws))
1696 (let* ((used-name (cadr kws))
1697 (used-module (resolve-module used-name)))
1698 (if (not (module-ref used-module '%module-public-interface #f))
1699 (begin
1700 ((if %autoloader-developer-mode warn error)
1701 "no code for module" (module-name used-module))
1702 (beautify-user-module! used-module)))
1703 (let ((interface (module-public-interface used-module)))
1704 (if (not interface)
1705 (error "missing interface for use-module" used-module))
1706 (loop (cddr kws) (cons interface reversed-interfaces)))))
1707 (else
1708 (error "unrecognized defmodule argument" kws)))))
0f2d19dd
JB
1709 module))
1710\f
44cf1f0f 1711;;; {Autoloading modules}
0f2d19dd
JB
1712
1713(define autoloads-in-progress '())
1714
1715(define (try-module-autoload module-name)
6fa8995c 1716
0f2d19dd
JB
1717 (define (sfx name) (string-append name (scheme-file-suffix)))
1718 (let* ((reverse-name (reverse module-name))
1719 (name (car reverse-name))
1720 (dir-hint-module-name (reverse (cdr reverse-name)))
1721 (dir-hint (apply symbol-append (map (lambda (elt) (symbol-append elt "/")) dir-hint-module-name))))
0209ca9a 1722 (resolve-module dir-hint-module-name #f)
0f2d19dd
JB
1723 (and (not (autoload-done-or-in-progress? dir-hint name))
1724 (let ((didit #f))
1725 (dynamic-wind
1726 (lambda () (autoload-in-progress! dir-hint name))
1727 (lambda ()
1728 (let loop ((dirs %load-path))
1729 (and (not (null? dirs))
1730 (or
1731 (let ((d (car dirs))
1732 (trys (list
1733 dir-hint
1734 (sfx dir-hint)
1735 (in-vicinity dir-hint name)
1736 (in-vicinity dir-hint (sfx name)))))
1737 (and (or-map (lambda (f)
1738 (let ((full (in-vicinity d f)))
1739 full
6fa8995c
GH
1740 (and (file-exists? full)
1741 (not (file-is-directory? full))
0f2d19dd
JB
1742 (begin
1743 (save-module-excursion
1744 (lambda ()
5552355a
GH
1745 (load (string-append
1746 d "/" f))))
0f2d19dd
JB
1747 #t))))
1748 trys)
1749 (begin
1750 (set! didit #t)
1751 #t)))
1752 (loop (cdr dirs))))))
1753 (lambda () (set-autoloaded! dir-hint name didit)))
1754 didit))))
1755
d0cbd20c
MV
1756;;; Dynamic linking of modules
1757
1758;; Initializing a module that is written in C is a two step process.
1759;; First the module's `module init' function is called. This function
1760;; is expected to call `scm_register_module_xxx' to register the `real
1761;; init' function. Later, when the module is referenced for the first
1762;; time, this real init function is called in the right context. See
1763;; gtcltk-lib/gtcltk-module.c for an example.
1764;;
1765;; The code for the module can be in a regular shared library (so that
1766;; the `module init' function will be called when libguile is
1767;; initialized). Or it can be dynamically linked.
1768;;
1769;; You can safely call `scm_register_module_xxx' before libguile
1770;; itself is initialized. You could call it from an C++ constructor
1771;; of a static object, for example.
1772;;
1773;; To make your Guile extension into a dynamic linkable module, follow
1774;; these easy steps:
1775;;
1776;; - Find a name for your module, like #/ice-9/gtcltk
1777;; - Write a function with a name like
1778;;
1779;; scm_init_ice_9_gtcltk_module
1780;;
1781;; This is your `module init' function. It should call
1782;;
1783;; scm_register_module_xxx ("ice-9 gtcltk", scm_init_gtcltk);
1784;;
1785;; "ice-9 gtcltk" is the C version of the module name. Slashes are
1786;; replaced by spaces, the rest is untouched. `scm_init_gtcltk' is
1787;; the real init function that executes the usual initilizations
1788;; like making new smobs, etc.
1789;;
1790;; - Make a shared library with your code and a name like
1791;;
1792;; ice-9/libgtcltk.so
1793;;
1794;; and put it somewhere in %load-path.
1795;;
1796;; - Then you can simply write `:use-module #/ice-9/gtcltk' and it
1797;; will be linked automatically.
1798;;
1799;; This is all very experimental.
1800
1801(define (split-c-module-name str)
1802 (let loop ((rev '())
1803 (start 0)
1804 (pos 0)
1805 (end (string-length str)))
1806 (cond
1807 ((= pos end)
1808 (reverse (cons (string->symbol (substring str start pos)) rev)))
1809 ((eq? (string-ref str pos) #\space)
1810 (loop (cons (string->symbol (substring str start pos)) rev)
1811 (+ pos 1)
1812 (+ pos 1)
1813 end))
1814 (else
1815 (loop rev start (+ pos 1) end)))))
1816
1817(define (convert-c-registered-modules dynobj)
1818 (let ((res (map (lambda (c)
1819 (list (split-c-module-name (car c)) (cdr c) dynobj))
1820 (c-registered-modules))))
1821 (c-clear-registered-modules)
1822 res))
1823
1824(define registered-modules (convert-c-registered-modules #f))
1825
1826(define (init-dynamic-module modname)
1827 (or-map (lambda (modinfo)
1828 (if (equal? (car modinfo) modname)
1829 (let ((mod (resolve-module modname #f)))
1830 (save-module-excursion
1831 (lambda ()
1832 (set-current-module mod)
1833 (dynamic-call (cadr modinfo) (caddr modinfo))
1834 (set-module-public-interface! mod mod)))
1835 (set! registered-modules (delq! modinfo registered-modules))
1836 #t)
1837 #f))
1838 registered-modules))
1839
1840(define (dynamic-maybe-call name dynobj)
1841 (catch #t ; could use false-if-exception here
1842 (lambda ()
1843 (dynamic-call name dynobj))
1844 (lambda args
1845 #f)))
1846
1847(define (find-and-link-dynamic-module module-name)
1848 (define (make-init-name mod-name)
1849 (string-append 'scm_init
1850 (list->string (map (lambda (c)
1851 (if (or (char-alphabetic? c)
1852 (char-numeric? c))
1853 c
1854 #\_))
1855 (string->list mod-name)))
1856 '_module))
1857 (let ((libname
1858 (let loop ((dirs "")
1859 (syms module-name))
1860 (cond
1861 ((null? (cdr syms))
1862 (string-append dirs "lib" (car syms) ".so"))
1863 (else
1864 (loop (string-append dirs (car syms) "/") (cdr syms))))))
1865 (init (make-init-name (apply string-append
1866 (map (lambda (s)
1867 (string-append "_" s))
1868 module-name)))))
1869 ;; (pk 'libname libname 'init init)
1870 (or-map
1871 (lambda (dir)
1872 (let ((full (in-vicinity dir libname)))
1873 ;; (pk 'trying full)
1874 (if (file-exists? full)
1875 (begin
1876 (link-dynamic-module full init)
1877 #t)
1878 #f)))
1879 %load-path)))
1880
1881(define (link-dynamic-module filename initname)
1882 (let ((dynobj (dynamic-link filename)))
1883 (if (dynamic-maybe-call initname dynobj)
1884 (set! registered-modules (append! (convert-c-registered-modules dynobj)
1885 registered-modules))
1886 (dynamic-unlink dynobj))))
1887
1888(define (try-module-dynamic-link module-name)
1889 (or (init-dynamic-module module-name)
1890 (and (find-and-link-dynamic-module module-name)
1891 (init-dynamic-module module-name))))
1892
0f2d19dd
JB
1893(define autoloads-done '((guile . guile)))
1894
1895(define (autoload-done-or-in-progress? p m)
1896 (let ((n (cons p m)))
1897 (->bool (or (member n autoloads-done)
1898 (member n autoloads-in-progress)))))
1899
1900(define (autoload-done! p m)
1901 (let ((n (cons p m)))
1902 (set! autoloads-in-progress
1903 (delete! n autoloads-in-progress))
1904 (or (member n autoloads-done)
1905 (set! autoloads-done (cons n autoloads-done)))))
1906
1907(define (autoload-in-progress! p m)
1908 (let ((n (cons p m)))
1909 (set! autoloads-done
1910 (delete! n autoloads-done))
1911 (set! autoloads-in-progress (cons n autoloads-in-progress))))
1912
1913(define (set-autoloaded! p m done?)
1914 (if done?
1915 (autoload-done! p m)
1916 (let ((n (cons p m)))
1917 (set! autoloads-done (delete! n autoloads-done))
1918 (set! autoloads-in-progress (delete! n autoloads-in-progress)))))
1919
1920
1921
1922
1923\f
1924;;; {Macros}
1925;;;
1926
9591db87
MD
1927(define macro-table (make-weak-key-hash-table 523))
1928(define xformer-table (make-weak-key-hash-table 523))
0f2d19dd
JB
1929
1930(define (defmacro? m) (hashq-ref macro-table m))
1931(define (assert-defmacro?! m) (hashq-set! macro-table m #t))
1932(define (defmacro-transformer m) (hashq-ref xformer-table m))
1933(define (set-defmacro-transformer! m t) (hashq-set! xformer-table m t))
1934
1935(define defmacro:transformer
1936 (lambda (f)
1937 (let* ((xform (lambda (exp env)
1938 (copy-tree (apply f (cdr exp)))))
1939 (a (procedure->memoizing-macro xform)))
1940 (assert-defmacro?! a)
1941 (set-defmacro-transformer! a f)
1942 a)))
1943
1944
1945(define defmacro
1946 (let ((defmacro-transformer
1947 (lambda (name parms . body)
1948 (let ((transformer `(lambda ,parms ,@body)))
1949 `(define ,name
1950 (,(lambda (transformer)
1951 (defmacro:transformer transformer))
1952 ,transformer))))))
1953 (defmacro:transformer defmacro-transformer)))
1954
1955(define defmacro:syntax-transformer
1956 (lambda (f)
1957 (procedure->syntax
1958 (lambda (exp env)
1959 (copy-tree (apply f (cdr exp)))))))
1960
1961(define (macroexpand-1 e)
1962 (cond
1963 ((pair? e) (let* ((a (car e))
b1818df3 1964 (val (and (symbol? a) (defined? a) (eval a))))
0f2d19dd
JB
1965 (if (defmacro? val)
1966 (apply (defmacro-transformer val) (cdr e))
1967 e)))
1968 (#t e)))
1969
1970(define (macroexpand e)
1971 (cond
1972 ((pair? e) (let* ((a (car e))
b1818df3 1973 (val (and (symbol? a) (defined? a) (eval a))))
0f2d19dd
JB
1974 (if (defmacro? val)
1975 (macroexpand (apply (defmacro-transformer val) (cdr e)))
1976 e)))
1977 (#t e)))
1978
1979(define gentemp
1980 (let ((*gensym-counter* -1))
1981 (lambda ()
1982 (set! *gensym-counter* (+ *gensym-counter* 1))
1983 (string->symbol
1984 (string-append "scm:G" (number->string *gensym-counter*))))))
1985
1986
1987\f
1988
1989;;; {Running Repls}
1990;;;
1991
1992(define (repl read evaler print)
1993 (let loop ((source (read (current-input-port) #t read-sharp)))
1994 (print (evaler source))
1995 (loop (read (current-input-port) #t read-sharp))))
1996
1997;; A provisional repl that acts like the SCM repl:
1998;;
1999(define scm-repl-silent #f)
2000(define (assert-repl-silence v) (set! scm-repl-silent v))
2001
21ed9efe
MD
2002(define *unspecified* (if #f #f))
2003(define (unspecified? v) (eq? v *unspecified*))
2004
2005(define scm-repl-print-unspecified #f)
2006(define (assert-repl-print-unspecified v) (set! scm-repl-print-unspecified v))
2007
79451588 2008(define scm-repl-verbose #f)
0f2d19dd
JB
2009(define (assert-repl-verbosity v) (set! scm-repl-verbose v))
2010
2011(define scm-repl-prompt #t)
2012(define (assert-repl-prompt v) (set! scm-repl-prompt v))
2013
2014(define the-prompt-string "guile> ")
2015
2016(define (error-catching-loop thunk)
2017 (define (loop first)
2018 (let ((next
2019 (catch #t
9b7def66
MD
2020 (lambda ()
2021 (lazy-catch #t
2022 (lambda ()
2023 (dynamic-wind
2024 (lambda () (unmask-signals))
2025 (lambda ()
2026 (first)
2027
2028 ;; This line is needed because mark doesn't do closures quite right.
2029 ;; Unreferenced locals should be collected.
2030 ;;
2031 (set! first #f)
2032 (let loop ((v (thunk)))
2033 (loop (thunk)))
2034 #f)
2035 (lambda () (mask-signals))))
2036
21ed9efe
MD
2037 (lambda args
2038 (save-stack 1)
2039 (apply throw args))))
1c6cd8e8 2040
9b7def66
MD
2041 (lambda (key . args)
2042 (case key
2043 ((quit)
2044 (force-output)
9b7def66
MD
2045 #f)
2046
2047 ((switch-repl)
2048 (apply throw 'switch-repl args))
2049
2050 ((abort)
2051 ;; This is one of the closures that require
2052 ;; (set! first #f) above
2053 ;;
0f2d19dd 2054 (lambda ()
9b7def66 2055 (force-output)
21ed9efe 2056 (display "ABORT: " (current-error-port))
9b7def66 2057 (write args (current-error-port))
21ed9efe
MD
2058 (newline (current-error-port))
2059 (if (and (not has-shown-debugger-hint?)
2060 (not (memq 'backtrace (debug-options-interface)))
2061 (stack? the-last-stack))
2062 (begin
2063 (newline (current-error-port))
16050117 2064 (display "Type \"(backtrace)\" to get more information.\n" (current-error-port))
21ed9efe
MD
2065 (set! has-shown-debugger-hint? #t)))
2066 (set! stack-saved? #f)))
9a0d70e2 2067
9b7def66
MD
2068 (else
2069 ;; This is the other cons-leak closure...
2070 (lambda ()
9a0d70e2 2071 (cond ((= (length args) 4)
35c5db87 2072 (apply handle-system-error key args))
9a0d70e2
GH
2073 (else
2074 (apply bad-throw key args))))))))))
0f2d19dd
JB
2075 (and next (loop next))))
2076 (loop (lambda () #t)))
2077
1c6cd8e8 2078(define the-last-stack #f)
21ed9efe
MD
2079(define stack-saved? #f)
2080
2081(define (save-stack . narrowing)
2082 (cond (stack-saved?)
2083 ((not (memq 'debug (debug-options-interface)))
2084 (set! the-last-stack #f)
2085 (set! stack-saved? #t))
2086 (else
2087 (set! the-last-stack
2088 (case (stack-id #t)
2089 ((repl-stack)
2090 (apply make-stack #t save-stack eval narrowing))
2091 ((load-stack)
2092 (apply make-stack #t save-stack gsubr-apply narrowing))
2093 ((tk-stack)
2094 (apply make-stack #t save-stack tk-stack-mark narrowing))
2095 ((#t)
2096 (apply make-stack #t save-stack narrowing))
2097 (else (let ((id (stack-id #t)))
2098 (and (procedure? id)
2099 (apply make-stack #t save-stack id narrowing))))))
2100 (set! stack-saved? #t))))
1c6cd8e8
MD
2101
2102(define before-error-hook #f)
2103(define after-error-hook #f)
2104(define before-backtrace-hook #f)
2105(define after-backtrace-hook #f)
2106
21ed9efe
MD
2107(define has-shown-debugger-hint? #f)
2108
35c5db87
GH
2109(define (handle-system-error key . args)
2110 (let ((cep (current-error-port)))
21ed9efe
MD
2111 (cond ((not (stack? the-last-stack)))
2112 ((memq 'backtrace (debug-options-interface))
2113 (and before-backtrace-hook (before-backtrace-hook))
2114 (newline cep)
2115 (display-backtrace the-last-stack cep)
2116 (newline cep)
2117 (and after-backtrace-hook (after-backtrace-hook))))
1c6cd8e8 2118 (and before-error-hook (before-error-hook))
c27659c8 2119 (apply display-error the-last-stack cep args)
1c6cd8e8 2120 (and after-error-hook (after-error-hook))
35c5db87
GH
2121 (force-output cep)
2122 (throw 'abort key)))
21ed9efe 2123
0f2d19dd
JB
2124(define (quit . args)
2125 (apply throw 'quit args))
2126
21ed9efe
MD
2127(define has-shown-backtrace-hint? #f)
2128
2129(define (backtrace)
2130 (if the-last-stack
2131 (begin
2132 (newline)
2133 (display-backtrace the-last-stack (current-output-port))
2134 (newline)
2135 (if (and (not has-shown-backtrace-hint?)
2136 (not (memq 'backtrace (debug-options-interface))))
2137 (begin
2138 (display
2139"Type \"(debug-enable 'backtrace)\" if you would like a backtrace
2140automatically if an error occurs in the future.\n")
2141 (set! has-shown-backtrace-hint? #t))))
2142 (display "No backtrace available.\n")))
2143
0f2d19dd
JB
2144(define (error-catching-repl r e p)
2145 (error-catching-loop (lambda () (p (e (r))))))
2146
2147(define (gc-run-time)
2148 (cdr (assq 'gc-time-taken (gc-stats))))
2149
21ed9efe 2150(define before-read-hook #f)
1c6cd8e8
MD
2151(define after-read-hook #f)
2152
0f2d19dd
JB
2153(define (scm-style-repl)
2154 (letrec (
2155 (start-gc-rt #f)
2156 (start-rt #f)
2157 (repl-report-reset (lambda () #f))
2158 (repl-report-start-timing (lambda ()
2159 (set! start-gc-rt (gc-run-time))
2160 (set! start-rt (get-internal-run-time))))
2161 (repl-report (lambda ()
2162 (display ";;; ")
2163 (display (inexact->exact
2164 (* 1000 (/ (- (get-internal-run-time) start-rt)
2165 internal-time-units-per-second))))
2166 (display " msec (")
2167 (display (inexact->exact
2168 (* 1000 (/ (- (gc-run-time) start-gc-rt)
2169 internal-time-units-per-second))))
2170 (display " msec in gc)\n")))
2171 (-read (lambda ()
2172 (if scm-repl-prompt
2173 (begin
2174 (display the-prompt-string)
2175 (force-output)
2176 (repl-report-reset)))
21ed9efe 2177 (and before-read-hook (before-read-hook))
0f2d19dd 2178 (let ((val (read (current-input-port) #t read-sharp)))
1c6cd8e8 2179 (and after-read-hook (after-read-hook))
0f2d19dd
JB
2180 (if (eof-object? val)
2181 (begin
2182 (if scm-repl-verbose
2183 (begin
2184 (newline)
2185 (display ";;; EOF -- quitting")
2186 (newline)))
2187 (quit 0)))
2188 val)))
2189
2190 (-eval (lambda (sourc)
2191 (repl-report-start-timing)
4cdee789 2192 (start-stack 'repl-stack (eval sourc))))
0f2d19dd
JB
2193
2194 (-print (lambda (result)
2195 (if (not scm-repl-silent)
2196 (begin
21ed9efe
MD
2197 (if (or scm-repl-print-unspecified
2198 (not (unspecified? result)))
2199 (begin
2200 (write result)
2201 (newline)))
0f2d19dd
JB
2202 (if scm-repl-verbose
2203 (repl-report))
2204 (force-output)))))
2205
2206 (-quit (lambda ()
2207 (if scm-repl-verbose
2208 (begin
2209 (display ";;; QUIT executed, repl exitting")
2210 (newline)
2211 (repl-report)))
2212 #t))
2213
2214 (-abort (lambda ()
2215 (if scm-repl-verbose
2216 (begin
2217 (display ";;; ABORT executed.")
2218 (newline)
2219 (repl-report)))
2220 (repl -read -eval -print))))
2221
2222 (error-catching-repl -read
2223 -eval
2224 -print)))
2225
2226(define (stand-alone-repl)
2227 (let ((oport (current-input-port)))
2228 (set-current-input-port *stdin*)
2229 (scm-style-repl)
2230 (set-current-input-port oport)))
2231
2232
2233\f
44cf1f0f 2234;;; {IOTA functions: generating lists of numbers}
0f2d19dd
JB
2235
2236(define (reverse-iota n) (if (> n 0) (cons (1- n) (reverse-iota (1- n))) '()))
2237(define (iota n) (list-reverse! (reverse-iota n)))
2238
2239\f
2240;;; {While}
2241;;;
2242;;; with `continue' and `break'.
2243;;;
2244
2245(defmacro while (cond . body)
2246 `(letrec ((continue (lambda () (or (not ,cond) (begin (begin ,@ body) (continue)))))
2247 (break (lambda val (apply throw 'break val))))
2248 (catch 'break
2249 (lambda () (continue))
2250 (lambda v (cadr v)))))
2251
2252
2253\f
2254
2255;;; {Macros}
2256;;;
2257
2258;; actually....hobbit might be able to hack these with a little
2259;; coaxing
2260;;
2261
2262(defmacro define-macro (first . rest)
2263 (let ((name (if (symbol? first) first (car first)))
2264 (transformer
2265 (if (symbol? first)
2266 (car rest)
2267 `(lambda ,(cdr first) ,@rest))))
2268 `(define ,name (defmacro:transformer ,transformer))))
2269
2270
2271(defmacro define-syntax-macro (first . rest)
2272 (let ((name (if (symbol? first) first (car first)))
2273 (transformer
2274 (if (symbol? first)
2275 (car rest)
2276 `(lambda ,(cdr first) ,@rest))))
2277 `(define ,name (defmacro:syntax-transformer ,transformer))))
2278\f
2279;;; {Module System Macros}
2280;;;
2281
2282(defmacro define-module args
2283 `(let* ((process-define-module process-define-module)
2284 (set-current-module set-current-module)
2285 (module (process-define-module ',args)))
2286 (set-current-module module)
2287 module))
2288
33cf699f
MD
2289(defmacro use-modules modules
2290 `(for-each (lambda (module)
2291 (module-use! (current-module)
2292 (resolve-interface module)))
2293 (reverse ',modules)))
2294
0f2d19dd
JB
2295(define define-private define)
2296
2297(defmacro define-public args
2298 (define (syntax)
2299 (error "bad syntax" (list 'define-public args)))
2300 (define (defined-name n)
2301 (cond
2302 ((symbol? n) n)
2303 ((pair? n) (defined-name (car n)))
2304 (else (syntax))))
2305 (cond
2306 ((null? args) (syntax))
2307
2308 (#t (let ((name (defined-name (car args))))
2309 `(begin
2310 (let ((public-i (module-public-interface (current-module))))
2311 ;; Make sure there is a local variable:
2312 ;;
2313 (module-define! (current-module)
2314 ',name
2315 (module-ref (current-module) ',name #f))
2316
2317 ;; Make sure that local is exported:
2318 ;;
2319 (module-add! public-i ',name (module-variable (current-module) ',name)))
2320
2321 ;; Now (re)define the var normally.
2322 ;;
2323 (define-private ,@ args))))))
2324
2325
2326
2327(defmacro defmacro-public args
2328 (define (syntax)
2329 (error "bad syntax" (list 'defmacro-public args)))
2330 (define (defined-name n)
2331 (cond
2332 ((symbol? n) n)
2333 (else (syntax))))
2334 (cond
2335 ((null? args) (syntax))
2336
2337 (#t (let ((name (defined-name (car args))))
2338 `(begin
2339 (let ((public-i (module-public-interface (current-module))))
2340 ;; Make sure there is a local variable:
2341 ;;
2342 (module-define! (current-module)
2343 ',name
2344 (module-ref (current-module) ',name #f))
2345
2346 ;; Make sure that local is exported:
2347 ;;
2348 (module-add! public-i ',name (module-variable (current-module) ',name)))
2349
2350 ;; Now (re)define the var normally.
2351 ;;
2352 (defmacro ,@ args))))))
2353
2354
2355
2356
0f2d19dd 2357(define load load-module)
1c6cd8e8
MD
2358;(define (load . args)
2359; (start-stack 'load-stack (apply load-module args)))
0f2d19dd
JB
2360
2361
2362\f
44cf1f0f 2363;;; {I/O functions for Tcl channels (disabled)}
0f2d19dd
JB
2364
2365;; (define in-ch (get-standard-channel TCL_STDIN))
2366;; (define out-ch (get-standard-channel TCL_STDOUT))
2367;; (define err-ch (get-standard-channel TCL_STDERR))
2368;;
2369;; (define inp (%make-channel-port in-ch "r"))
2370;; (define outp (%make-channel-port out-ch "w"))
2371;; (define errp (%make-channel-port err-ch "w"))
2372;;
2373;; (define %system-char-ready? char-ready?)
2374;;
2375;; (define (char-ready? p)
2376;; (if (not (channel-port? p))
2377;; (%system-char-ready? p)
2378;; (let* ((channel (%channel-port-channel p))
2379;; (old-blocking (channel-option-ref channel :blocking)))
2380;; (dynamic-wind
2381;; (lambda () (set-channel-option the-root-tcl-interpreter channel :blocking "0"))
2382;; (lambda () (not (eof-object? (peek-char p))))
2383;; (lambda () (set-channel-option the-root-tcl-interpreter channel :blocking old-blocking))))))
2384;;
2385;; (define (top-repl)
2386;; (with-input-from-port inp
2387;; (lambda ()
2388;; (with-output-to-port outp
2389;; (lambda ()
2390;; (with-error-to-port errp
2391;; (lambda ()
2392;; (scm-style-repl))))))))
2393;;
2394;; (set-current-input-port inp)
2395;; (set-current-output-port outp)
2396;; (set-current-error-port errp)
2397
2398(define (top-repl) (scm-style-repl))
2399
02b754d3
GH
2400(defmacro false-if-exception (expr)
2401 `(catch #t (lambda () ,expr)
2402 (lambda args #f)))
2403
0f2d19dd 2404\f
44cf1f0f 2405;;; {Calling Conventions}
0f2d19dd
JB
2406(define-module (ice-9 calling))
2407
2408;;;;
0f2d19dd
JB
2409;;;
2410;;; This file contains a number of macros that support
2411;;; common calling conventions.
2412
2413;;;
2414;;; with-excursion-function <vars> proc
2415;;; <vars> is an unevaluated list of names that are bound in the caller.
2416;;; proc is a procedure, called:
2417;;; (proc excursion)
2418;;;
2419;;; excursion is a procedure isolates all changes to <vars>
2420;;; in the dynamic scope of the call to proc. In other words,
2421;;; the values of <vars> are saved when proc is entered, and when
2422;;; proc returns, those values are restored. Values are also restored
2423;;; entering and leaving the call to proc non-locally, such as using
2424;;; call-with-current-continuation, error, or throw.
2425;;;
2426(defmacro-public with-excursion-function (vars proc)
2427 `(,proc ,(excursion-function-syntax vars)))
2428
2429
2430
2431;;; with-getter-and-setter <vars> proc
2432;;; <vars> is an unevaluated list of names that are bound in the caller.
2433;;; proc is a procedure, called:
2434;;; (proc getter setter)
2435;;;
2436;;; getter and setter are procedures used to access
2437;;; or modify <vars>.
2438;;;
2439;;; setter, called with keywords arguments, modifies the named
2440;;; values. If "foo" and "bar" are among <vars>, then:
2441;;;
2442;;; (setter :foo 1 :bar 2)
2443;;; == (set! foo 1 bar 2)
2444;;;
2445;;; getter, called with just keywords, returns
2446;;; a list of the corresponding values. For example,
2447;;; if "foo" and "bar" are among the <vars>, then
2448;;;
2449;;; (getter :foo :bar)
2450;;; => (<value-of-foo> <value-of-bar>)
2451;;;
2452;;; getter, called with no arguments, returns a list of all accepted
2453;;; keywords and the corresponding values. If "foo" and "bar" are
2454;;; the *only* <vars>, then:
2455;;;
2456;;; (getter)
2457;;; => (:foo <value-of-bar> :bar <value-of-foo>)
2458;;;
2459;;; The unusual calling sequence of a getter supports too handy
2460;;; idioms:
2461;;;
2462;;; (apply setter (getter)) ;; save and restore
2463;;;
2464;;; (apply-to-args (getter :foo :bar) ;; fetch and bind
2465;;; (lambda (foo bar) ....))
2466;;;
2467;;; ;; [ "apply-to-args" is just like two-argument "apply" except that it
2468;;; ;; takes its arguments in a different order.
2469;;;
2470;;;
2471(defmacro-public with-getter-and-setter (vars proc)
2472 `(,proc ,@ (getter-and-setter-syntax vars)))
2473
2474;;; with-getter vars proc
2475;;; A short-hand for a call to with-getter-and-setter.
2476;;; The procedure is called:
2477;;; (proc getter)
2478;;;
2479(defmacro-public with-getter (vars proc)
2480 `(,proc ,(car (getter-and-setter-syntax vars))))
2481
2482
2483;;; with-delegating-getter-and-setter <vars> get-delegate set-delegate proc
2484;;; Compose getters and setters.
2485;;;
2486;;; <vars> is an unevaluated list of names that are bound in the caller.
2487;;;
2488;;; get-delegate is called by the new getter to extend the set of
2489;;; gettable variables beyond just <vars>
2490;;; set-delegate is called by the new setter to extend the set of
2491;;; gettable variables beyond just <vars>
2492;;;
2493;;; proc is a procedure that is called
2494;;; (proc getter setter)
2495;;;
2496(defmacro-public with-delegating-getter-and-setter (vars get-delegate set-delegate proc)
2497 `(,proc ,@ (delegating-getter-and-setter-syntax vars get-delegate set-delegate)))
2498
2499
2500;;; with-delegating-getter-and-setter <vars> get-delegate set-delegate proc
2501;;; <vars> is an unevaluated list of names that are bound in the caller.
2502;;; proc is called:
2503;;;
2504;;; (proc excursion getter setter)
2505;;;
2506;;; See also:
2507;;; with-getter-and-setter
2508;;; with-excursion-function
2509;;;
2510(defmacro-public with-excursion-getter-and-setter (vars proc)
2511 `(,proc ,(excursion-function-syntax vars)
2512 ,@ (getter-and-setter-syntax vars)))
2513
2514
2515(define (excursion-function-syntax vars)
2516 (let ((saved-value-names (map gensym vars))
2517 (tmp-var-name (gensym 'temp))
2518 (swap-fn-name (gensym 'swap))
2519 (thunk-name (gensym 'thunk)))
2520 `(lambda (,thunk-name)
2521 (letrec ((,tmp-var-name #f)
2522 (,swap-fn-name
2523 (lambda () ,@ (map (lambda (n sn) `(set! ,tmp-var-name ,n ,n ,sn ,sn ,tmp-var-name))
2524 vars saved-value-names)))
2525 ,@ (map (lambda (sn n) `(,sn ,n)) saved-value-names vars))
2526 (dynamic-wind
2527 ,swap-fn-name
2528 ,thunk-name
2529 ,swap-fn-name)))))
2530
2531
2532(define (getter-and-setter-syntax vars)
2533 (let ((args-name (gensym 'args))
2534 (an-arg-name (gensym 'an-arg))
2535 (new-val-name (gensym 'new-value))
2536 (loop-name (gensym 'loop))
2537 (kws (map symbol->keyword vars)))
2538 (list `(lambda ,args-name
2539 (let ,loop-name ((,args-name ,args-name))
2540 (if (null? ,args-name)
2541 ,(if (null? kws)
2542 ''()
2543 `(let ((all-vals (,loop-name ',kws)))
2544 (let ,loop-name ((vals all-vals)
2545 (kws ',kws))
2546 (if (null? vals)
2547 '()
2548 `(,(car kws) ,(car vals) ,@(,loop-name (cdr vals) (cdr kws)))))))
2549 (map (lambda (,an-arg-name)
2550 (case ,an-arg-name
2551 ,@ (append
2552 (map (lambda (kw v) `((,kw) ,v)) kws vars)
2553 `((else (throw 'bad-get-option ,an-arg-name))))))
2554 ,args-name))))
2555
2556 `(lambda ,args-name
2557 (let ,loop-name ((,args-name ,args-name))
2558 (or (null? ,args-name)
2559 (null? (cdr ,args-name))
2560 (let ((,an-arg-name (car ,args-name))
2561 (,new-val-name (cadr ,args-name)))
2562 (case ,an-arg-name
2563 ,@ (append
2564 (map (lambda (kw v) `((,kw) (set! ,v ,new-val-name))) kws vars)
2565 `((else (throw 'bad-set-option ,an-arg-name)))))
2566 (,loop-name (cddr ,args-name)))))))))
2567
2568(define (delegating-getter-and-setter-syntax vars get-delegate set-delegate)
2569 (let ((args-name (gensym 'args))
2570 (an-arg-name (gensym 'an-arg))
2571 (new-val-name (gensym 'new-value))
2572 (loop-name (gensym 'loop))
2573 (kws (map symbol->keyword vars)))
2574 (list `(lambda ,args-name
2575 (let ,loop-name ((,args-name ,args-name))
2576 (if (null? ,args-name)
2577 (append!
2578 ,(if (null? kws)
2579 ''()
2580 `(let ((all-vals (,loop-name ',kws)))
2581 (let ,loop-name ((vals all-vals)
2582 (kws ',kws))
2583 (if (null? vals)
2584 '()
2585 `(,(car kws) ,(car vals) ,@(,loop-name (cdr vals) (cdr kws)))))))
2586 (,get-delegate))
2587 (map (lambda (,an-arg-name)
2588 (case ,an-arg-name
2589 ,@ (append
2590 (map (lambda (kw v) `((,kw) ,v)) kws vars)
2591 `((else (car (,get-delegate ,an-arg-name)))))))
2592 ,args-name))))
2593
2594 `(lambda ,args-name
2595 (let ,loop-name ((,args-name ,args-name))
2596 (or (null? ,args-name)
2597 (null? (cdr ,args-name))
2598 (let ((,an-arg-name (car ,args-name))
2599 (,new-val-name (cadr ,args-name)))
2600 (case ,an-arg-name
2601 ,@ (append
2602 (map (lambda (kw v) `((,kw) (set! ,v ,new-val-name))) kws vars)
2603 `((else (,set-delegate ,an-arg-name ,new-val-name)))))
2604 (,loop-name (cddr ,args-name)))))))))
2605
2606
2607
2608
2609;;; with-configuration-getter-and-setter <vars-etc> proc
2610;;;
2611;;; Create a getter and setter that can trigger arbitrary computation.
2612;;;
2613;;; <vars-etc> is a list of variable specifiers, explained below.
2614;;; proc is called:
2615;;;
2616;;; (proc getter setter)
2617;;;
2618;;; Each element of the <vars-etc> list is of the form:
2619;;;
2620;;; (<var> getter-hook setter-hook)
2621;;;
2622;;; Both hook elements are evaluated; the variable name is not.
2623;;; Either hook may be #f or procedure.
2624;;;
2625;;; A getter hook is a thunk that returns a value for the corresponding
2626;;; variable. If omitted (#f is passed), the binding of <var> is
2627;;; returned.
2628;;;
2629;;; A setter hook is a procedure of one argument that accepts a new value
2630;;; for the corresponding variable. If omitted, the binding of <var>
2631;;; is simply set using set!.
2632;;;
2633(defmacro-public with-configuration-getter-and-setter (vars-etc proc)
2634 `((lambda (simpler-get simpler-set body-proc)
2635 (with-delegating-getter-and-setter ()
2636 simpler-get simpler-set body-proc))
2637
2638 (lambda (kw)
2639 (case kw
2640 ,@(map (lambda (v) `((,(symbol->keyword (car v)))
2641 ,(cond
2642 ((cadr v) => list)
2643 (else `(list ,(car v))))))
2644 vars-etc)))
2645
2646 (lambda (kw new-val)
2647 (case kw
2648 ,@(map (lambda (v) `((,(symbol->keyword (car v)))
2649 ,(cond
2650 ((caddr v) => (lambda (proc) `(,proc new-val)))
2651 (else `(set! ,(car v) new-val)))))
2652 vars-etc)))
2653
2654 ,proc))
2655
2656(defmacro-public with-delegating-configuration-getter-and-setter (vars-etc delegate-get delegate-set proc)
2657 `((lambda (simpler-get simpler-set body-proc)
2658 (with-delegating-getter-and-setter ()
2659 simpler-get simpler-set body-proc))
2660
2661 (lambda (kw)
2662 (case kw
2663 ,@(append! (map (lambda (v) `((,(symbol->keyword (car v)))
2664 ,(cond
2665 ((cadr v) => list)
2666 (else `(list ,(car v))))))
2667 vars-etc)
2668 `((else (,delegate-get kw))))))
2669
2670 (lambda (kw new-val)
2671 (case kw
2672 ,@(append! (map (lambda (v) `((,(symbol->keyword (car v)))
2673 ,(cond
2674 ((caddr v) => (lambda (proc) `(,proc new-val)))
2675 (else `(set! ,(car v) new-val)))))
2676 vars-etc)
2677 `((else (,delegate-set kw new-val))))))
2678
2679 ,proc))
2680
2681
2682;;; let-configuration-getter-and-setter <vars-etc> proc
2683;;;
2684;;; This procedure is like with-configuration-getter-and-setter (q.v.)
2685;;; except that each element of <vars-etc> is:
2686;;;
2687;;; (<var> initial-value getter-hook setter-hook)
2688;;;
2689;;; Unlike with-configuration-getter-and-setter, let-configuration-getter-and-setter
2690;;; introduces bindings for the variables named in <vars-etc>.
2691;;; It is short-hand for:
2692;;;
2693;;; (let ((<var1> initial-value-1)
2694;;; (<var2> initial-value-2)
2695;;; ...)
2696;;; (with-configuration-getter-and-setter ((<var1> v1-get v1-set) ...) proc))
2697;;;
2698(defmacro-public let-with-configuration-getter-and-setter (vars-etc proc)
2699 `(let ,(map (lambda (v) `(,(car v) ,(cadr v))) vars-etc)
2700 (with-configuration-getter-and-setter ,(map (lambda (v) `(,(car v) ,(caddr v) ,(cadddr v))) vars-etc)
2701 ,proc)))
2702
2703
2704
2705\f
44cf1f0f
JB
2706;;; {Implementation of COMMON LISP list functions for Scheme}
2707
0f2d19dd
JB
2708(define-module (ice-9 common-list))
2709
2710;;"comlist.scm" Implementation of COMMON LISP list functions for Scheme
2711; Copyright (C) 1991, 1993, 1995 Aubrey Jaffer.
2712;
2713;Permission to copy this software, to redistribute it, and to use it
2714;for any purpose is granted, subject to the following restrictions and
2715;understandings.
2716;
2717;1. Any copy made of this software must include this copyright notice
2718;in full.
2719;
2720;2. I have made no warrantee or representation that the operation of
2721;this software will be error-free, and I am under no obligation to
2722;provide any services, by way of maintenance, update, or otherwise.
2723;
2724;3. In conjunction with products arising from the use of this
2725;material, there shall be no use of my name in any advertising,
2726;promotional, or sales literature without prior written consent in
2727;each case.
2728
0f2d19dd
JB
2729;;;From: hugh@ear.mit.edu (Hugh Secker-Walker)
2730(define-public (make-list k . init)
2731 (set! init (if (pair? init) (car init)))
2732 (do ((k k (+ -1 k))
2733 (result '() (cons init result)))
2734 ((<= k 0) result)))
2735
2736(define-public (adjoin e l) (if (memq e l) l (cons e l)))
2737
2738(define-public (union l1 l2)
2739 (cond ((null? l1) l2)
2740 ((null? l2) l1)
2741 (else (union (cdr l1) (adjoin (car l1) l2)))))
2742
2743(define-public (intersection l1 l2)
2744 (cond ((null? l1) l1)
2745 ((null? l2) l2)
2746 ((memv (car l1) l2) (cons (car l1) (intersection (cdr l1) l2)))
2747 (else (intersection (cdr l1) l2))))
2748
2749(define-public (set-difference l1 l2)
2750 (cond ((null? l1) l1)
2751 ((memv (car l1) l2) (set-difference (cdr l1) l2))
2752 (else (cons (car l1) (set-difference (cdr l1) l2)))))
2753
2754(define-public (reduce-init p init l)
2755 (if (null? l)
2756 init
2757 (reduce-init p (p init (car l)) (cdr l))))
2758
2759(define-public (reduce p l)
2760 (cond ((null? l) l)
2761 ((null? (cdr l)) (car l))
2762 (else (reduce-init p (car l) (cdr l)))))
2763
2764(define-public (some pred l . rest)
2765 (cond ((null? rest)
2766 (let mapf ((l l))
2767 (and (not (null? l))
2768 (or (pred (car l)) (mapf (cdr l))))))
2769 (else (let mapf ((l l) (rest rest))
2770 (and (not (null? l))
2771 (or (apply pred (car l) (map car rest))
2772 (mapf (cdr l) (map cdr rest))))))))
2773
2774(define-public (every pred l . rest)
2775 (cond ((null? rest)
2776 (let mapf ((l l))
2777 (or (null? l)
2778 (and (pred (car l)) (mapf (cdr l))))))
2779 (else (let mapf ((l l) (rest rest))
2780 (or (null? l)
2781 (and (apply pred (car l) (map car rest))
2782 (mapf (cdr l) (map cdr rest))))))))
2783
2784(define-public (notany pred . ls) (not (apply some pred ls)))
2785
2786(define-public (notevery pred . ls) (not (apply every pred ls)))
2787
2788(define-public (find-if t l)
2789 (cond ((null? l) #f)
2790 ((t (car l)) (car l))
2791 (else (find-if t (cdr l)))))
2792
2793(define-public (member-if t l)
2794 (cond ((null? l) #f)
2795 ((t (car l)) l)
2796 (else (member-if t (cdr l)))))
2797
2798(define-public (remove-if p l)
2799 (cond ((null? l) '())
2800 ((p (car l)) (remove-if p (cdr l)))
2801 (else (cons (car l) (remove-if p (cdr l))))))
2802
2803(define-public (delete-if! pred list)
2804 (let delete-if ((list list))
2805 (cond ((null? list) '())
2806 ((pred (car list)) (delete-if (cdr list)))
2807 (else
2808 (set-cdr! list (delete-if (cdr list)))
2809 list))))
2810
2811(define-public (delete-if-not! pred list)
2812 (let delete-if ((list list))
2813 (cond ((null? list) '())
2814 ((not (pred (car list))) (delete-if (cdr list)))
2815 (else
2816 (set-cdr! list (delete-if (cdr list)))
2817 list))))
2818
2819(define-public (butlast lst n)
2820 (letrec ((l (- (length lst) n))
2821 (bl (lambda (lst n)
2822 (cond ((null? lst) lst)
2823 ((positive? n)
2824 (cons (car lst) (bl (cdr lst) (+ -1 n))))
2825 (else '())))))
2826 (bl lst (if (negative? n)
2827 (slib:error "negative argument to butlast" n)
2828 l))))
2829
2830(define-public (and? . args)
2831 (cond ((null? args) #t)
2832 ((car args) (apply and? (cdr args)))
2833 (else #f)))
2834
2835(define-public (or? . args)
2836 (cond ((null? args) #f)
2837 ((car args) #t)
2838 (else (apply or? (cdr args)))))
2839
2840(define-public (has-duplicates? lst)
2841 (cond ((null? lst) #f)
2842 ((member (car lst) (cdr lst)) #t)
2843 (else (has-duplicates? (cdr lst)))))
2844
2845(define-public (list* x . y)
2846 (define (list*1 x)
2847 (if (null? (cdr x))
2848 (car x)
2849 (cons (car x) (list*1 (cdr x)))))
2850 (if (null? y)
2851 x
2852 (cons x (list*1 y))))
2853
2854;; pick p l
2855;; Apply P to each element of L, returning a list of elts
2856;; for which P returns a non-#f value.
2857;;
2858(define-public (pick p l)
2859 (let loop ((s '())
2860 (l l))
2861 (cond
2862 ((null? l) s)
2863 ((p (car l)) (loop (cons (car l) s) (cdr l)))
2864 (else (loop s (cdr l))))))
2865
2866;; pick p l
2867;; Apply P to each element of L, returning a list of the
2868;; non-#f return values of P.
2869;;
2870(define-public (pick-mappings p l)
2871 (let loop ((s '())
2872 (l l))
2873 (cond
2874 ((null? l) s)
2875 ((p (car l)) => (lambda (mapping) (loop (cons mapping s) (cdr l))))
2876 (else (loop s (cdr l))))))
2877
2878(define-public (uniq l)
2879 (if (null? l)
2880 '()
2881 (let ((u (uniq (cdr l))))
2882 (if (memq (car l) u)
2883 u
2884 (cons (car l) u)))))
2885
2886\f
44cf1f0f
JB
2887;;; {Functions for browsing modules}
2888
0f2d19dd
JB
2889(define-module (ice-9 ls)
2890 :use-module (ice-9 common-list))
2891
0f2d19dd
JB
2892;;;;
2893;;; local-definitions-in root name
8b718458
JB
2894;;; Returns a list of names defined locally in the named
2895;;; subdirectory of root.
0f2d19dd 2896;;; definitions-in root name
8b718458
JB
2897;;; Returns a list of all names defined in the named
2898;;; subdirectory of root. The list includes alll locally
2899;;; defined names as well as all names inherited from a
2900;;; member of a use-list.
0f2d19dd
JB
2901;;;
2902;;; A convenient interface for examining the nature of things:
2903;;;
2904;;; ls . various-names
2905;;;
8b718458
JB
2906;;; With just one argument, interpret that argument as the
2907;;; name of a subdirectory of the current module and
2908;;; return a list of names defined there.
0f2d19dd 2909;;;
8b718458
JB
2910;;; With more than one argument, still compute
2911;;; subdirectory lists, but return a list:
0f2d19dd
JB
2912;;; ((<subdir-name> . <names-defined-there>)
2913;;; (<subdir-name> . <names-defined-there>)
2914;;; ...)
2915;;;
2916
2917(define-public (local-definitions-in root names)
0dd5491c 2918 (let ((m (nested-ref root names))
0f2d19dd
JB
2919 (answer '()))
2920 (if (not (module? m))
2921 (set! answer m)
2922 (module-for-each (lambda (k v) (set! answer (cons k answer))) m))
2923 answer))
2924
2925(define-public (definitions-in root names)
0dd5491c 2926 (let ((m (nested-ref root names)))
0f2d19dd
JB
2927 (if (not (module? m))
2928 m
2929 (reduce union
2930 (cons (local-definitions-in m '())
8b718458
JB
2931 (map (lambda (m2) (definitions-in m2 '()))
2932 (module-uses m)))))))
0f2d19dd
JB
2933
2934(define-public (ls . various-refs)
2935 (and various-refs
2936 (if (cdr various-refs)
2937 (map (lambda (ref)
2938 (cons ref (definitions-in (current-module) ref)))
2939 various-refs)
2940 (definitions-in (current-module) (car various-refs)))))
2941
2942(define-public (lls . various-refs)
2943 (and various-refs
2944 (if (cdr various-refs)
2945 (map (lambda (ref)
2946 (cons ref (local-definitions-in (current-module) ref)))
2947 various-refs)
2948 (local-definitions-in (current-module) (car various-refs)))))
2949
0dd5491c 2950(define-public (recursive-local-define name value)
0f2d19dd
JB
2951 (let ((parent (reverse! (cdr (reverse name)))))
2952 (and parent (make-modules-in (current-module) parent))
0dd5491c 2953 (local-define name value)))
0f2d19dd 2954\f
44cf1f0f
JB
2955;;; {Queues}
2956
0f2d19dd
JB
2957(define-module (ice-9 q))
2958
2959;;;; Copyright (C) 1995 Free Software Foundation, Inc.
2960;;;;
2961;;;; This program is free software; you can redistribute it and/or modify
2962;;;; it under the terms of the GNU General Public License as published by
2963;;;; the Free Software Foundation; either version 2, or (at your option)
2964;;;; any later version.
2965;;;;
2966;;;; This program is distributed in the hope that it will be useful,
2967;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2968;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2969;;;; GNU General Public License for more details.
2970;;;;
2971;;;; You should have received a copy of the GNU General Public License
2972;;;; along with this software; see the file COPYING. If not, write to
2973;;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
2974;;;;
2975
0f2d19dd
JB
2976;;;;
2977;;; Q: Based on the interface to
2978;;;
2979;;; "queue.scm" Queues/Stacks for Scheme
2980;;; Written by Andrew Wilcox (awilcox@astro.psu.edu) on April 1, 1992.
2981;;;
2982
0f2d19dd
JB
2983;;;;
2984;;; {Q}
2985;;;
2986;;; A list is just a bunch of cons pairs that follows some constrains, right?
2987;;; Association lists are the same. Hash tables are just vectors and association
2988;;; lists. You can print them, read them, write them as constants, pun them off as other data
2989;;; structures etc. This is good. This is lisp. These structures are fast and compact
2990;;; and easy to manipulate arbitrarily because of their simple, regular structure and
2991;;; non-disjointedness (associations being lists and so forth).
2992;;;
2993;;; So I figured, queues should be the same -- just a "subtype" of cons-pair
2994;;; structures in general.
2995;;;
2996;;; A queue is a cons pair:
2997;;; ( <the-q> . <last-pair> )
2998;;;
2999;;; <the-q> is a list of things in the q. New elements go at the end of that list.
3000;;;
3001;;; <last-pair> is #f if the q is empty, and otherwise is the last pair of <the-q>.
3002;;;
3003;;; q's print nicely, but alas, they do not read well because the eq?-ness of
3004;;; <last-pair> and (last-pair <the-q>) is lost by read. The procedure
3005;;;
3006;;; (sync-q! q)
3007;;;
3008;;; recomputes and resets the <last-pair> component of a queue.
3009;;;
3010
3011(define-public (sync-q! obj) (set-cdr! obj (and (car obj) (last-pair (car obj)))))
3012
3013;;; make-q
3014;;; return a new q.
3015;;;
3016(define-public (make-q) (cons '() '()))
3017
3018;;; q? obj
3019;;; Return true if obj is a Q.
3020;;; An object is a queue if it is equal? to '(#f . #f) or
3021;;; if it is a pair P with (list? (car P)) and (eq? (cdr P) (last-pair P)).
3022;;;
3023(define-public (q? obj) (and (pair? obj)
3024 (or (and (null? (car obj))
3025 (null? (cdr obj)))
3026 (and
3027 (list? (car obj))
3028 (eq? (cdr obj) (last-pair (car obj)))))))
3029
3030;;; q-empty? obj
3031;;;
3032(define-public (q-empty? obj) (null? (car obj)))
3033
3034;;; q-empty-check q
3035;;; Throw a q-empty exception if Q is empty.
3036(define-public (q-empty-check q) (if (q-empty? q) (throw 'q-empty q)))
3037
3038
3039;;; q-front q
3040;;; Return the first element of Q.
3041(define-public (q-front q) (q-empty-check q) (caar q))
3042
3043;;; q-front q
3044;;; Return the last element of Q.
3045(define-public (q-rear q) (q-empty-check q) (cadr q))
3046
3047;;; q-remove! q obj
3048;;; Remove all occurences of obj from Q.
3049(define-public (q-remove! q obj)
3050 (while (memq obj (car q))
3051 (set-car! q (delq! obj (car q))))
3052 (set-cdr! q (last-pair (car q))))
3053
3054;;; q-push! q obj
3055;;; Add obj to the front of Q
3056(define-public (q-push! q d)
3057 (let ((h (cons d (car q))))
3058 (set-car! q h)
3059 (if (null? (cdr q))
3060 (set-cdr! q h))))
3061
3062;;; enq! q obj
3063;;; Add obj to the rear of Q
3064(define-public (enq! q d)
3065 (let ((h (cons d '())))
3066 (if (not (null? (cdr q)))
3067 (set-cdr! (cdr q) h)
3068 (set-car! q h))
3069 (set-cdr! q h)))
3070
3071;;; q-pop! q
3072;;; Take the front of Q and return it.
3073(define-public (q-pop! q)
3074 (q-empty-check q)
3075 (let ((it (caar q))
3076 (next (cdar q)))
3077 (if (not next)
3078 (set-cdr! q #f))
3079 (set-car! q next)
3080 it))
3081
3082;;; deq! q
3083;;; Take the front of Q and return it.
3084(define-public deq! q-pop!)
3085
3086;;; q-length q
3087;;; Return the number of enqueued elements.
3088;;;
3089(define-public (q-length q) (length (car q)))
3090
3091
3092
3093\f
44cf1f0f
JB
3094;;; {The runq data structure}
3095
0f2d19dd
JB
3096(define-module (ice-9 runq)
3097 :use-module (ice-9 q))
3098
0f2d19dd
JB
3099;;;; Copyright (C) 1996 Free Software Foundation, Inc.
3100;;;;
3101;;;; This program is free software; you can redistribute it and/or modify
3102;;;; it under the terms of the GNU General Public License as published by
3103;;;; the Free Software Foundation; either version 2, or (at your option)
3104;;;; any later version.
3105;;;;
3106;;;; This program is distributed in the hope that it will be useful,
3107;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
3108;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3109;;;; GNU General Public License for more details.
3110;;;;
3111;;;; You should have received a copy of the GNU General Public License
3112;;;; along with this software; see the file COPYING. If not, write to
3113;;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
3114;;;;
3115
0f2d19dd 3116;;;;
0f2d19dd
JB
3117;;;
3118;;; One way to schedule parallel computations in a serial environment is
3119;;; to explicitly divide each task up into small, finite execution time,
3120;;; strips. Then you interleave the execution of strips from various
3121;;; tasks to achieve a kind of parallelism. Runqs are a handy data
3122;;; structure for this style of programming.
3123;;;
3124;;; We use thunks (nullary procedures) and lists of thunks to represent
3125;;; strips. By convention, the return value of a strip-thunk must either
3126;;; be another strip or the value #f.
3127;;;
3128;;; A runq is a procedure that manages a queue of strips. Called with no
3129;;; arguments, it processes one strip from the queue. Called with
3130;;; arguments, the arguments form a control message for the queue. The
3131;;; first argument is a symbol which is the message selector.
3132;;;
3133;;; A strip is processed this way: If the strip is a thunk, the thunk is
3134;;; called -- if it returns a strip, that strip is added back to the
3135;;; queue. To process a strip which is a list of thunks, the CAR of that
3136;;; list is called. After a call to that CAR, there are 0, 1, or 2 strips
3137;;; -- perhaps one returned by the thunk, and perhaps the CDR of the
3138;;; original strip if that CDR is not nil. The runq puts whichever of
3139;;; these strips exist back on the queue. (The exact order in which
3140;;; strips are put back on the queue determines the scheduling behavior of
3141;;; a particular queue -- it's a parameter.)
3142;;;
3143;;;
3144
3145
3146
3147;;;;
3148;;; (runq-control q msg . args)
3149;;;
3150;;; processes in the default way the control messages that
3151;;; can be sent to a runq. Q should be an ordinary
3152;;; Q (see utils/q.scm).
3153;;;
3154;;; The standard runq messages are:
3155;;;
3156;;; 'add! strip0 strip1... ;; to enqueue one or more strips
3157;;; 'enqueue! strip0 strip1... ;; to enqueue one or more strips
3158;;; 'push! strip0 ... ;; add strips to the front of the queue
3159;;; 'empty? ;; true if it is
3160;;; 'length ;; how many strips in the queue?
3161;;; 'kill! ;; empty the queue
3162;;; else ;; throw 'not-understood
3163;;;
3164(define-public (runq-control q msg . args)
3165 (case msg
3166 ((add!) (for-each (lambda (t) (enq! q t)) args) '*unspecified*)
3167 ((enque!) (for-each (lambda (t) (enq! q t)) args) '*unspecified*)
3168 ((push!) (for-each (lambda (t) (q-push! q t)) args) '*unspecified*)
3169 ((empty?) (q-empty? q))
3170 ((length) (q-length q))
3171 ((kill!) (set! q (make-q)))
3172 (else (throw 'not-understood msg args))))
3173
3174(define (run-strip thunk) (catch #t thunk (lambda ign (warn 'runq-strip thunk ign) #f)))
3175
3176;;;;
3177;;; make-void-runq
3178;;;
3179;;; Make a runq that discards all messages except "length", for which
3180;;; it returns 0.
3181;;;
3182(define-public (make-void-runq)
3183 (lambda opts
3184 (and opts
3185 (apply-to-args opts
3186 (lambda (msg . args)
3187 (case msg
3188 ((length) 0)
3189 (else #f)))))))
3190
3191;;;;
3192;;; (make-fair-runq)
3193;;;
3194;;; Returns a runq procedure.
3195;;; Called with no arguments, the procedure processes one strip from the queue.
3196;;; Called with arguments, it uses runq-control.
3197;;;
3198;;; In a fair runq, if a strip returns a new strip X, X is added
3199;;; to the end of the queue, meaning it will be the last to execute
3200;;; of all the remaining procedures.
3201;;;
3202(define-public (make-fair-runq)
3203 (letrec ((q (make-q))
3204 (self
3205 (lambda ctl
3206 (if ctl
3207 (apply runq-control q ctl)
3208 (and (not (q-empty? q))
3209 (let ((next-strip (deq! q)))
3210 (cond
3211 ((procedure? next-strip) (let ((k (run-strip next-strip)))
3212 (and k (enq! q k))))
3213 ((pair? next-strip) (let ((k (run-strip (car next-strip))))
3214 (and k (enq! q k)))
3215 (if (not (null? (cdr next-strip)))
3216 (enq! q (cdr next-strip)))))
3217 self))))))
3218 self))
3219
3220
3221;;;;
3222;;; (make-exclusive-runq)
3223;;;
3224;;; Returns a runq procedure.
3225;;; Called with no arguments, the procedure processes one strip from the queue.
3226;;; Called with arguments, it uses runq-control.
3227;;;
3228;;; In an exclusive runq, if a strip W returns a new strip X, X is added
3229;;; to the front of the queue, meaning it will be the next to execute
3230;;; of all the remaining procedures.
3231;;;
3232;;; An exception to this occurs if W was the CAR of a list of strips.
3233;;; In that case, after the return value of W is pushed onto the front
3234;;; of the queue, the CDR of the list of strips is pushed in front
3235;;; of that (if the CDR is not nil). This way, the rest of the thunks
3236;;; in the list that contained W have priority over the return value of W.
3237;;;
3238(define-public (make-exclusive-runq)
3239 (letrec ((q (make-q))
3240 (self
3241 (lambda ctl
3242 (if ctl
3243 (apply runq-control q ctl)
3244 (and (not (q-empty? q))
3245 (let ((next-strip (deq! q)))
3246 (cond
3247 ((procedure? next-strip) (let ((k (run-strip next-strip)))
3248 (and k (q-push! q k))))
3249 ((pair? next-strip) (let ((k (run-strip (car next-strip))))
3250 (and k (q-push! q k)))
3251 (if (not (null? (cdr next-strip)))
3252 (q-push! q (cdr next-strip)))))
3253 self))))))
3254 self))
3255
3256
3257;;;;
3258;;; (make-subordinate-runq-to superior basic-inferior)
3259;;;
3260;;; Returns a runq proxy for the runq basic-inferior.
3261;;;
3262;;; The proxy watches for operations on the basic-inferior that cause
3263;;; a transition from a queue length of 0 to a non-zero length and
3264;;; vice versa. While the basic-inferior queue is not empty,
3265;;; the proxy installs a task on the superior runq. Each strip
3266;;; of that task processes N strips from the basic-inferior where
3267;;; N is the length of the basic-inferior queue when the proxy
3268;;; strip is entered. [Countless scheduling variations are possible.]
3269;;;
3270(define-public (make-subordinate-runq-to superior-runq basic-runq)
3271 (let ((runq-task (cons #f #f)))
3272 (set-car! runq-task
3273 (lambda ()
3274 (if (basic-runq 'empty?)
3275 (set-cdr! runq-task #f)
3276 (do ((n (basic-runq 'length) (1- n)))
3277 ((<= n 0) #f)
3278 (basic-runq)))))
3279 (letrec ((self
3280 (lambda ctl
3281 (if (not ctl)
3282 (let ((answer (basic-runq)))
3283 (self 'empty?)
3284 answer)
3285 (begin
3286 (case (car ctl)
3287 ((suspend) (set-cdr! runq-task #f))
3288 (else (let ((answer (apply basic-runq ctl)))
3289 (if (and (not (cdr runq-task)) (not (basic-runq 'empty?)))
3290 (begin
3291 (set-cdr! runq-task runq-task)
3292 (superior-runq 'add! runq-task)))
3293 answer))))))))
3294 self)))
3295
3296;;;;
3297;;; (define fork-strips (lambda args args))
3298;;; Return a strip that starts several strips in
3299;;; parallel. If this strip is enqueued on a fair
3300;;; runq, strips of the parallel subtasks will run
3301;;; round-robin style.
3302;;;
3303(define fork-strips (lambda args args))
3304
3305
3306;;;;
3307;;; (strip-sequence . strips)
3308;;;
3309;;; Returns a new strip which is the concatenation of the argument strips.
3310;;;
3311(define-public ((strip-sequence . strips))
3312 (let loop ((st (let ((a strips)) (set! strips #f) a)))
3313 (and (not (null? st))
3314 (let ((then ((car st))))
3315 (if then
3316 (lambda () (loop (cons then (cdr st))))
3317 (lambda () (loop (cdr st))))))))
3318
3319
3320;;;;
3321;;; (fair-strip-subtask . initial-strips)
3322;;;
3323;;; Returns a new strip which is the synchronos, fair,
3324;;; parallel execution of the argument strips.
3325;;;
3326;;;
3327;;;
3328(define-public (fair-strip-subtask . initial-strips)
3329 (let ((st (make-fair-runq)))
3330 (apply st 'add! initial-strips)
3331 st))
3332
3333\f
44cf1f0f 3334;;; {String Fun}
0f2d19dd 3335
0f2d19dd
JB
3336(define-module (ice-9 string-fun))
3337
0f2d19dd 3338;;;;
0f2d19dd
JB
3339;;;
3340;;; Various string funcitons, particularly those that take
3341;;; advantage of the "shared substring" capability.
3342;;;
3343\f
44cf1f0f 3344;;; {String Fun: Dividing Strings Into Fields}
0f2d19dd
JB
3345;;;
3346;;; The names of these functions are very regular.
3347;;; Here is a grammar of a call to one of these:
3348;;;
3349;;; <string-function-invocation>
3350;;; := (<action>-<seperator-disposition>-<seperator-determination> <seperator-param> <str> <ret>)
3351;;;
3352;;; <str> = the string
3353;;;
3354;;; <ret> = The continuation. String functions generally return
3355;;; multiple values by passing them to this procedure.
3356;;;
3357;;; <action> = split
3358;;; | separate-fields
3359;;;
3360;;; "split" means to divide a string into two parts.
3361;;; <ret> will be called with two arguments.
3362;;;
3363;;; "separate-fields" means to divide a string into as many
3364;;; parts as possible. <ret> will be called with
3365;;; however many fields are found.
3366;;;
3367;;; <seperator-disposition> = before
3368;;; | after
3369;;; | discarding
3370;;;
3371;;; "before" means to leave the seperator attached to
3372;;; the beginning of the field to its right.
3373;;; "after" means to leave the seperator attached to
3374;;; the end of the field to its left.
3375;;; "discarding" means to discard seperators.
3376;;;
3377;;; Other dispositions might be handy. For example, "isolate"
3378;;; could mean to treat the separator as a field unto itself.
3379;;;
3380;;; <seperator-determination> = char
3381;;; | predicate
3382;;;
3383;;; "char" means to use a particular character as field seperator.
3384;;; "predicate" means to check each character using a particular predicate.
3385;;;
3386;;; Other determinations might be handy. For example, "character-set-member".
3387;;;
3388;;; <seperator-param> = A parameter that completes the meaning of the determinations.
3389;;; For example, if the determination is "char", then this parameter
3390;;; says which character. If it is "predicate", the parameter is the
3391;;; predicate.
3392;;;
3393;;;
3394;;; For example:
3395;;;
3396;;; (separate-fields-discarding-char #\, "foo, bar, baz, , bat" list)
3397;;; => ("foo" " bar" " baz" " " " bat")
3398;;;
3399;;; (split-after-char #\- 'an-example-of-split list)
3400;;; => ("an-" "example-of-split")
3401;;;
3402;;; As an alternative to using a determination "predicate", or to trying to do anything
3403;;; complicated with these functions, consider using regular expressions.
3404;;;
3405
3406(define-public (split-after-char char str ret)
3407 (let ((end (cond
3408 ((string-index str char) => 1+)
3409 (else (string-length str)))))
3410 (ret (make-shared-substring str 0 end)
3411 (make-shared-substring str end))))
3412
3413(define-public (split-before-char char str ret)
3414 (let ((end (or (string-index str char)
3415 (string-length str))))
3416 (ret (make-shared-substring str 0 end)
3417 (make-shared-substring str end))))
3418
3419(define-public (split-discarding-char char str ret)
3420 (let ((end (string-index str char)))
3421 (if (not end)
3422 (ret str "")
3423 (ret (make-shared-substring str 0 end)
3424 (make-shared-substring str (1+ end))))))
3425
3426(define-public (split-after-char-last char str ret)
3427 (let ((end (cond
3428 ((string-rindex str char) => 1+)
3429 (else 0))))
3430 (ret (make-shared-substring str 0 end)
3431 (make-shared-substring str end))))
3432
3433(define-public (split-before-char-last char str ret)
3434 (let ((end (or (string-rindex str char) 0)))
3435 (ret (make-shared-substring str 0 end)
3436 (make-shared-substring str end))))
3437
3438(define-public (split-discarding-char-last char str ret)
3439 (let ((end (string-rindex str char)))
3440 (if (not end)
3441 (ret str "")
3442 (ret (make-shared-substring str 0 end)
3443 (make-shared-substring str (1+ end))))))
3444
3445(define (split-before-predicate pred str ret)
3446 (let loop ((n 0))
3447 (cond
3448 ((= n (length str)) (ret str ""))
3449 ((not (pred (string-ref str n))) (loop (1+ n)))
3450 (else (ret (make-shared-substring str 0 n)
3451 (make-shared-substring str n))))))
3452(define (split-after-predicate pred str ret)
3453 (let loop ((n 0))
3454 (cond
3455 ((= n (length str)) (ret str ""))
3456 ((not (pred (string-ref str n))) (loop (1+ n)))
3457 (else (ret (make-shared-substring str 0 (1+ n))
3458 (make-shared-substring str (1+ n)))))))
3459
3460(define (split-discarding-predicate pred str ret)
3461 (let loop ((n 0))
3462 (cond
3463 ((= n (length str)) (ret str ""))
3464 ((not (pred (string-ref str n))) (loop (1+ n)))
3465 (else (ret (make-shared-substring str 0 n)
3466 (make-shared-substring str (1+ n)))))))
3467
21ed9efe 3468(define-public (separate-fields-discarding-char ch str ret)
0f2d19dd
JB
3469 (let loop ((fields '())
3470 (str str))
3471 (cond
3472 ((string-rindex str ch)
3473 => (lambda (pos) (loop (cons (make-shared-substring str (+ 1 w)) fields)
3474 (make-shared-substring str 0 w))))
3475 (else (ret (cons str fields))))))
3476
21ed9efe 3477(define-public (separate-fields-after-char ch str ret)
0f2d19dd
JB
3478 (let loop ((fields '())
3479 (str str))
3480 (cond
3481 ((string-rindex str ch)
3482 => (lambda (pos) (loop (cons (make-shared-substring str (+ 1 w)) fields)
3483 (make-shared-substring str 0 (+ 1 w)))))
3484 (else (ret (cons str fields))))))
3485
21ed9efe 3486(define-public (separate-fields-before-char ch str ret)
0f2d19dd
JB
3487 (let loop ((fields '())
3488 (str str))
3489 (cond
3490 ((string-rindex str ch)
3491 => (lambda (pos) (loop (cons (make-shared-substring str w) fields)
3492 (make-shared-substring str 0 w))))
3493 (else (ret (cons str fields))))))
3494
3495\f
44cf1f0f 3496;;; {String Fun: String Prefix Predicates}
0f2d19dd
JB
3497;;;
3498;;; Very simple:
3499;;;
21ed9efe 3500;;; (define-public ((string-prefix-predicate pred?) prefix str)
0f2d19dd
JB
3501;;; (and (<= (length prefix) (length str))
3502;;; (pred? prefix (make-shared-substring str 0 (length prefix)))))
3503;;;
3504;;; (define-public string-prefix=? (string-prefix-predicate string=?))
3505;;;
3506
3507(define-public ((string-prefix-predicate pred?) prefix str)
3508 (and (<= (length prefix) (length str))
3509 (pred? prefix (make-shared-substring str 0 (length prefix)))))
3510
3511(define-public string-prefix=? (string-prefix-predicate string=?))
3512
3513\f
44cf1f0f 3514;;; {String Fun: Strippers}
0f2d19dd
JB
3515;;;
3516;;; <stripper> = sans-<removable-part>
3517;;;
3518;;; <removable-part> = surrounding-whitespace
3519;;; | trailing-whitespace
3520;;; | leading-whitespace
3521;;; | final-newline
3522;;;
3523
3524(define-public (sans-surrounding-whitespace s)
3525 (let ((st 0)
3526 (end (string-length s)))
3527 (while (and (< st (string-length s))
3528 (char-whitespace? (string-ref s st)))
3529 (set! st (1+ st)))
3530 (while (and (< 0 end)
3531 (char-whitespace? (string-ref s (1- end))))
3532 (set! end (1- end)))
3533 (if (< end st)
3534 ""
3535 (make-shared-substring s st end))))
3536
3537(define-public (sans-trailing-whitespace s)
3538 (let ((st 0)
3539 (end (string-length s)))
3540 (while (and (< 0 end)
3541 (char-whitespace? (string-ref s (1- end))))
3542 (set! end (1- end)))
3543 (if (< end st)
3544 ""
3545 (make-shared-substring s st end))))
3546
3547(define-public (sans-leading-whitespace s)
3548 (let ((st 0)
3549 (end (string-length s)))
3550 (while (and (< st (string-length s))
3551 (char-whitespace? (string-ref s st)))
3552 (set! st (1+ st)))
3553 (if (< end st)
3554 ""
3555 (make-shared-substring s st end))))
3556
3557(define-public (sans-final-newline str)
3558 (cond
3559 ((= 0 (string-length str))
3560 str)
3561
3562 ((char=? #\nl (string-ref str (1- (string-length str))))
3563 (make-shared-substring str 0 (1- (string-length str))))
3564
3565 (else str)))
3566\f
44cf1f0f 3567;;; {String Fun: has-trailing-newline?}
0f2d19dd
JB
3568;;;
3569
3570(define-public (has-trailing-newline? str)
3571 (and (< 0 (string-length str))
3572 (char=? #\nl (string-ref str (1- (string-length str))))))
3573
3574
3575\f
44cf1f0f 3576;;; {String Fun: with-regexp-parts}
0f2d19dd
JB
3577
3578(define-public (with-regexp-parts regexp fields str return fail)
3579 (let ((parts (regexec regexp str fields)))
3580 (if (number? parts)
3581 (fail parts)
3582 (apply return parts))))
3583
3584\f
c56634ba
MD
3585;;; {Load debug extension code if debug extensions present.}
3586;;;
3587;;; *fixme* This is a temporary solution.
3588;;;
0f2d19dd 3589
c56634ba 3590(if (memq 'debug-extensions *features*)
90895e5c
MD
3591 (define-module (guile) :use-module (ice-9 debug)))
3592
3593\f
90895e5c
MD
3594;;; {Load thread code if threads are present.}
3595;;;
3596;;; *fixme* This is a temporary solution.
3597;;;
3598
3599(if (memq 'threads *features*)
3600 (define-module (guile) :use-module (ice-9 threads)))
3601
21ed9efe
MD
3602\f
3603;;; {Load emacs interface support if emacs option is given.}
3604;;;
3605;;; *fixme* This is a temporary solution.
3606;;;
3607
3608(if (or (member "-e" (cdr (program-arguments)))
3609 (member "--emacs" (cdr (program-arguments))))
3610 (define-module (guile) :use-module (ice-9 emacs)))
3611
3612\f
3613
90895e5c 3614(define-module (guile))
6fa8995c
GH
3615
3616(append! %load-path (cons "." ()))