1999-09-14 09:32:05 -04:00
|
|
|
;;; The packages that scsh uses/defines.
|
|
|
|
;;; Copyright (c) 1994 by Olin Shivers.
|
|
|
|
|
|
|
|
;;; Note: field-reader package (fr.scm) and here docs use READ-LINE.
|
|
|
|
;;; It is defined in rdelim.scm.
|
|
|
|
|
|
|
|
;;; You link up a scsh package by defining a package named OS-DEPENDENT
|
|
|
|
;;; that satisfies the interfaces for packages
|
|
|
|
;;; buffered-io-flags
|
|
|
|
;;; posix-fdflags
|
|
|
|
;;; posix-errno
|
|
|
|
;;; posix-signals
|
|
|
|
;;; Anything else it provides should be specified in an interface called
|
|
|
|
;;; os-extras-interface. See the scsh structure below.
|
|
|
|
;;; Then the scsh structure can be instantiated.
|
|
|
|
;;;
|
|
|
|
;;; The architecture directories, like next/ and irix/ and so forth,
|
|
|
|
;;; provide packages that can serve as the os-dependent package. E.g.,
|
|
|
|
;;; the next-defs package, defined in next/packages.
|
|
|
|
;;;
|
|
|
|
;;; This whole mechanism would be better solved with a functor.
|
|
|
|
;;; -Olin
|
|
|
|
|
|
|
|
|
|
|
|
;;; The LET-OPT package for optional argument parsing & defaulting
|
|
|
|
;;; is found in the let-opt.scm file.
|
|
|
|
|
|
|
|
|
|
|
|
(define-structure error-package (export error warn)
|
1999-09-23 13:46:46 -04:00
|
|
|
(open signals)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
(define-structure scsh-utilities scsh-utilities-interface
|
2001-07-09 14:29:26 -04:00
|
|
|
(open bitwise error-package loopholes let-opt scheme define-record-types
|
2001-10-03 10:42:46 -04:00
|
|
|
records
|
2002-08-13 02:49:22 -04:00
|
|
|
threads threads-internal placeholders locks srfi-1)
|
1999-09-23 13:46:46 -04:00
|
|
|
(files utilities)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
2001-07-07 15:29:29 -04:00
|
|
|
(define-structure weak-tables weak-tables-interface
|
|
|
|
(open scheme
|
|
|
|
weak
|
|
|
|
tables)
|
|
|
|
(files weaktables))
|
1999-09-14 09:32:05 -04:00
|
|
|
|
2002-09-03 08:30:08 -04:00
|
|
|
(define-structure string-collectors string-collectors-interface
|
|
|
|
(open scheme
|
|
|
|
defrec-package)
|
|
|
|
(files stringcoll))
|
|
|
|
|
2002-09-03 08:41:45 -04:00
|
|
|
(define-structure delimited-readers delimited-readers-interface
|
|
|
|
(open scheme
|
|
|
|
byte-vectors
|
|
|
|
signals ; ERROR
|
|
|
|
let-opt
|
|
|
|
receiving
|
2002-09-03 08:53:47 -04:00
|
|
|
re-level-0 rx-syntax
|
|
|
|
(subset srfi-14 (char-set x->char-set char-set-contains?))
|
2002-09-03 08:41:45 -04:00
|
|
|
ascii
|
|
|
|
i/o-internal ports)
|
|
|
|
(files rdelim))
|
|
|
|
|
2002-08-14 10:23:41 -04:00
|
|
|
(define list-lib srfi-1)
|
|
|
|
(define string-lib srfi-13)
|
|
|
|
(define char-set-lib srfi-14)
|
|
|
|
|
|
|
|
|
1999-09-14 09:32:05 -04:00
|
|
|
;;; This guy goes into the FOR-SYNTAX part of scsh's syntax exports.
|
|
|
|
(define-structure scsh-syntax-helpers
|
|
|
|
(export transcribe-extended-process-form)
|
|
|
|
(open receiving ; receive
|
|
|
|
error-package
|
1999-09-15 20:20:37 -04:00
|
|
|
names ; generated? by JMG
|
1999-09-14 09:32:05 -04:00
|
|
|
scsh-utilities ; check-arg
|
|
|
|
scheme
|
|
|
|
)
|
1999-09-23 13:46:46 -04:00
|
|
|
(files syntax-helpers)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
;;; The bufpol/{block, line, none} values
|
|
|
|
(define-structure buffered-io-flags buffered-io-flags-interface
|
|
|
|
(open defenum-package scheme)
|
1999-09-23 13:46:46 -04:00
|
|
|
(files (machine bufpol))
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-structures ((tty-flags tty-flags-interface)
|
|
|
|
(scsh-internal-tty-flags scsh-internal-tty-flags-interface))
|
|
|
|
(open scheme ascii bitwise)
|
1999-09-23 13:46:46 -04:00
|
|
|
(files (machine tty-consts))
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
(define-structure scsh-version scsh-version-interface
|
|
|
|
(open scheme)
|
|
|
|
(files scsh-version))
|
|
|
|
|
2002-09-03 08:25:12 -04:00
|
|
|
(define-structure scsh-errors scsh-errors-interface
|
|
|
|
(open scheme
|
2003-01-08 04:16:47 -05:00
|
|
|
architecture
|
|
|
|
(subset srfi-1 (last drop-right))
|
2002-09-03 08:25:12 -04:00
|
|
|
handle conditions signals)
|
|
|
|
(files scsh-condition))
|
|
|
|
|
2002-09-03 09:12:32 -04:00
|
|
|
(define-structure scsh-endian scsh-endian-interface
|
|
|
|
(open scheme
|
|
|
|
bitwise)
|
|
|
|
(files endian))
|
|
|
|
|
1999-09-14 09:32:05 -04:00
|
|
|
;;; The scsh-level-0 package is for implementation convenience.
|
|
|
|
;;; The scsh startup and top-level modules need access to scsh
|
|
|
|
;;; procedures, but they export procedures that are themselves
|
|
|
|
;;; part of scsh. So scsh-level-0 is the core scsh stuff, which is
|
|
|
|
;;; imported by these two modules. These modules all collectively
|
|
|
|
;;; export the whole scsh enchilada.
|
|
|
|
|
|
|
|
(define-structures
|
|
|
|
((scsh-level-0
|
|
|
|
(compound-interface posix-fdflags-interface
|
|
|
|
posix-errno-interface
|
|
|
|
posix-signals-interface
|
|
|
|
sockets-network-interface ; Standard Network Interface
|
|
|
|
os-extras-interface ; Extra stuff from OS.
|
|
|
|
scsh-delimited-readers-interface
|
|
|
|
scsh-errors-interface
|
|
|
|
scsh-io-interface
|
|
|
|
scsh-file-interface
|
|
|
|
scsh-process-interface
|
|
|
|
scsh-process-state-interface
|
|
|
|
scsh-user/group-db-interface
|
|
|
|
scsh-command-line-interface
|
|
|
|
scsh-signals-interface
|
|
|
|
scsh-environment-interface
|
|
|
|
scsh-home-interface
|
|
|
|
scsh-string-interface
|
|
|
|
scsh-file-names-interface
|
|
|
|
scsh-misc-interface
|
|
|
|
scsh-high-level-process-interface
|
|
|
|
scsh-time-interface ; new in 0.2
|
|
|
|
scsh-sockets-interface ; new in 0.3
|
2002-09-03 09:12:32 -04:00
|
|
|
scsh-endian-interface
|
1999-09-14 09:32:05 -04:00
|
|
|
tty-interface ; new in 0.4
|
|
|
|
scsh-version-interface
|
2002-12-17 10:43:23 -05:00
|
|
|
(interface-of srfi-14) ;; export this here for
|
|
|
|
(export ->char-set) ;; this kludge
|
1999-09-14 09:32:05 -04:00
|
|
|
signal-handler-interface
|
|
|
|
;; This stuff would probably be better off kept
|
|
|
|
;; in separate modules, but we'll toss it in for now.
|
|
|
|
(interface-of ascii) ; char<->ascii
|
|
|
|
string-ports-interface
|
2001-01-02 09:43:27 -05:00
|
|
|
syslog-interface
|
2001-12-17 04:24:05 -05:00
|
|
|
crypt-interface
|
2002-09-06 08:23:18 -04:00
|
|
|
uname-interface
|
1999-09-14 09:32:05 -04:00
|
|
|
))
|
|
|
|
(scsh-level-0-internals (export set-command-line-args!
|
|
|
|
init-scsh-hindbrain
|
2001-08-08 05:21:20 -04:00
|
|
|
initialize-cwd
|
1999-09-14 09:32:05 -04:00
|
|
|
init-scsh-vars))
|
1999-09-23 13:46:46 -04:00
|
|
|
; (scsh-regexp-package scsh-regexp-interface)
|
|
|
|
)
|
|
|
|
(for-syntax (open scsh-syntax-helpers scheme))
|
2001-10-18 05:02:52 -04:00
|
|
|
(access rts-sigevents sigevents threads)
|
1999-09-23 13:46:46 -04:00
|
|
|
(open enumerated
|
2001-01-02 09:43:27 -05:00
|
|
|
defenum-package
|
1999-09-22 20:43:13 -04:00
|
|
|
external-calls ;JMG new FFI
|
1999-09-14 09:32:05 -04:00
|
|
|
structure-refs
|
|
|
|
receiving
|
|
|
|
defrec-package
|
2001-03-23 07:45:31 -05:00
|
|
|
define-record-types
|
1999-09-14 09:32:05 -04:00
|
|
|
formats
|
2002-09-03 08:30:08 -04:00
|
|
|
string-collectors
|
2002-09-03 08:41:45 -04:00
|
|
|
delimited-readers
|
1999-09-14 09:32:05 -04:00
|
|
|
os-dependent ; OS dependent stuff
|
|
|
|
buffered-io-flags ; stdio dependent
|
|
|
|
ascii
|
|
|
|
records
|
|
|
|
extended-ports
|
1999-09-23 19:02:54 -04:00
|
|
|
ports
|
1999-09-14 09:32:05 -04:00
|
|
|
build
|
|
|
|
bigbit
|
|
|
|
bitwise
|
|
|
|
signals
|
|
|
|
conditions
|
2002-11-28 05:42:09 -05:00
|
|
|
(subset srfi-1 (filter reverse! fold delete any))
|
1999-09-14 09:32:05 -04:00
|
|
|
scsh-utilities
|
|
|
|
handle
|
2001-07-09 14:29:26 -04:00
|
|
|
fluids thread-fluids
|
2001-07-07 15:29:29 -04:00
|
|
|
weak-tables
|
1999-09-14 09:32:05 -04:00
|
|
|
|
2002-08-14 10:23:41 -04:00
|
|
|
srfi-14
|
1999-09-14 09:32:05 -04:00
|
|
|
; scsh-regexp-package
|
|
|
|
; scsh-regexp-internals
|
|
|
|
scsh-version
|
|
|
|
tty-flags
|
|
|
|
scsh-internal-tty-flags ; Not exported
|
2001-06-01 12:22:26 -04:00
|
|
|
|
|
|
|
syslog
|
|
|
|
|
1999-09-14 09:32:05 -04:00
|
|
|
let-opt ; optional-arg parsing & defaulting
|
|
|
|
|
1999-09-23 13:46:46 -04:00
|
|
|
architecture ; Was this by JMG ??
|
1999-09-14 09:32:05 -04:00
|
|
|
|
1999-09-23 13:46:46 -04:00
|
|
|
re-level-0
|
|
|
|
rx-syntax
|
|
|
|
|
2002-08-14 10:23:41 -04:00
|
|
|
srfi-13
|
1999-09-23 13:46:46 -04:00
|
|
|
|
2002-05-07 04:58:53 -04:00
|
|
|
thread-fluids ; For exec-path-list
|
2001-03-11 13:58:54 -05:00
|
|
|
loopholes ; For my bogus CALL-TERMINALLY implementation.
|
1999-09-23 13:46:46 -04:00
|
|
|
|
2002-11-19 07:16:08 -05:00
|
|
|
(modify scheme (hide call-with-input-file
|
|
|
|
call-with-output-file
|
|
|
|
with-input-from-file
|
|
|
|
with-output-to-file
|
|
|
|
open-input-file
|
|
|
|
open-output-file))
|
|
|
|
|
1999-11-04 15:48:47 -05:00
|
|
|
low-interrupt ; for sighandler and procobj
|
2002-11-19 07:16:08 -05:00
|
|
|
;; all these seem to be for scsh-0.6 JMG
|
|
|
|
i/o
|
1999-09-14 09:32:05 -04:00
|
|
|
i/o-internal
|
|
|
|
channels channel-i/o
|
1999-09-22 20:43:13 -04:00
|
|
|
low-channels
|
1999-11-04 15:48:47 -05:00
|
|
|
byte-vectors
|
2000-06-28 06:30:59 -04:00
|
|
|
threads locks placeholders
|
1999-09-14 09:32:05 -04:00
|
|
|
primitives
|
|
|
|
escapes
|
|
|
|
command-levels
|
|
|
|
features
|
1999-11-04 15:48:47 -05:00
|
|
|
general-tables
|
2002-09-03 08:25:12 -04:00
|
|
|
simple-syntax
|
2002-09-25 07:40:07 -04:00
|
|
|
exit-hooks
|
2002-09-03 08:25:12 -04:00
|
|
|
|
2002-09-03 09:12:32 -04:00
|
|
|
scsh-errors
|
|
|
|
scsh-endian)
|
1999-09-14 09:32:05 -04:00
|
|
|
(for-syntax (open scsh-syntax-helpers scheme))
|
1999-11-04 15:48:47 -05:00
|
|
|
(access interrupts
|
2001-08-08 05:21:20 -04:00
|
|
|
sort
|
1999-11-04 15:48:47 -05:00
|
|
|
command-processor
|
1999-09-14 09:32:05 -04:00
|
|
|
escapes
|
|
|
|
i/o ; S48's force-output
|
2000-07-27 09:38:35 -04:00
|
|
|
exceptions ; signal-exception
|
1999-09-14 09:32:05 -04:00
|
|
|
formats
|
2000-06-28 06:30:59 -04:00
|
|
|
threads-internal
|
1999-09-14 09:32:05 -04:00
|
|
|
records ; I don't think this is necessary. !!!
|
|
|
|
scheme) ; For accessing the normal I/O operators.
|
|
|
|
(files syntax
|
|
|
|
syscalls
|
|
|
|
fname
|
|
|
|
rw
|
|
|
|
newports
|
|
|
|
fdports
|
|
|
|
procobj ; New in release 0.4.
|
|
|
|
(machine waitcodes) ; OS dependent code.
|
|
|
|
filesys
|
|
|
|
fileinfo
|
|
|
|
glob
|
2002-02-21 08:22:27 -05:00
|
|
|
filemtch
|
1999-09-14 09:32:05 -04:00
|
|
|
time ; New in release 0.2.
|
|
|
|
(machine time_dep)
|
|
|
|
network ; New in release 0.3.
|
|
|
|
flock ; New in release 0.4.
|
|
|
|
tty ; New in release 0.4.
|
|
|
|
pty ; New in release 0.4.
|
|
|
|
sighandlers ; New in release 0.5.
|
|
|
|
scsh
|
1999-09-23 13:46:46 -04:00
|
|
|
; re
|
|
|
|
)
|
|
|
|
; (optimize auto-integrate)
|
2002-08-14 10:23:41 -04:00
|
|
|
(begin
|
|
|
|
;; work around for SRFI 14 naming fuckage
|
|
|
|
(define ->char-set x->char-set))
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
(define-structure defrec-package (export (define-record :syntax))
|
|
|
|
(open records scheme)
|
|
|
|
(for-syntax (open scheme error-package receiving))
|
1999-09-23 13:46:46 -04:00
|
|
|
(files defrec)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
(define-structure defenum-package (export (define-enum-constant :syntax)
|
2001-01-02 09:43:27 -05:00
|
|
|
(define-enum-constants :syntax)
|
|
|
|
(define-enum-constants-from-zero
|
|
|
|
:syntax))
|
1999-09-14 09:32:05 -04:00
|
|
|
(open scheme)
|
1999-09-23 13:46:46 -04:00
|
|
|
(files enumconst)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
;;; This code opens so many modules of gruesome, low-level S48 internals
|
|
|
|
;;; that these two modules are segregated into separate packages, each
|
|
|
|
;;; exporting just two definitions.
|
|
|
|
|
1999-10-08 14:41:05 -04:00
|
|
|
(define-structure scsh-startup-package (export dump-scsh-program
|
|
|
|
dump-scsh
|
|
|
|
make-scsh-starter
|
|
|
|
scsh-stand-alone-resumer)
|
1999-09-14 09:32:05 -04:00
|
|
|
(open scsh-level-0-internals ; init-scsh-* set-command-line-args!
|
|
|
|
scsh-level-0 ; error-output-port command-line-arguments
|
|
|
|
scsh-top-package ; parse-switches-and-execute
|
|
|
|
handle ; with-handler
|
|
|
|
command-levels ; user-context
|
|
|
|
write-images ; write-image
|
|
|
|
build-internals ; simple-condition-handler
|
|
|
|
low-level ; flush-the-symbol-table!
|
|
|
|
command-processor ; command-output
|
1999-10-08 14:41:05 -04:00
|
|
|
package-commands-internal
|
1999-09-14 09:32:05 -04:00
|
|
|
filenames ; translate
|
|
|
|
usual-resumer ; usual-resumer
|
2001-11-27 13:11:38 -05:00
|
|
|
environments ; with-interaction-environment
|
1999-09-22 20:43:13 -04:00
|
|
|
fluids-internal ; JMG: get-dynamic-env
|
2002-08-16 10:11:50 -04:00
|
|
|
threads threads-internal queues scheduler
|
2002-05-03 09:42:36 -04:00
|
|
|
structure-refs
|
1999-09-14 09:32:05 -04:00
|
|
|
scsh-utilities
|
|
|
|
interrupts
|
2000-08-28 08:51:22 -04:00
|
|
|
low-interrupt
|
2001-10-18 05:02:52 -04:00
|
|
|
sigevents
|
1999-09-14 09:32:05 -04:00
|
|
|
primitives
|
2002-11-19 07:16:08 -05:00
|
|
|
(modify scheme (hide call-with-input-file
|
|
|
|
call-with-output-file
|
|
|
|
with-input-from-file
|
|
|
|
with-output-to-file
|
|
|
|
open-input-file
|
|
|
|
open-output-file)))
|
2002-05-03 09:42:36 -04:00
|
|
|
(access threads-internal)
|
1999-09-14 09:32:05 -04:00
|
|
|
(files startup))
|
|
|
|
|
2002-05-16 10:34:58 -04:00
|
|
|
(define-structure scsh-top-package (export parse-switches-and-execute
|
2002-11-27 02:29:54 -05:00
|
|
|
with-scsh-initialized)
|
1999-09-14 09:32:05 -04:00
|
|
|
(open command-processor
|
|
|
|
command-levels ; with-new-session
|
2002-06-26 08:19:04 -04:00
|
|
|
conditions
|
1999-09-14 09:32:05 -04:00
|
|
|
ensures-loaded
|
|
|
|
environments
|
|
|
|
error-package
|
|
|
|
evaluation
|
|
|
|
extended-ports
|
2001-10-03 10:42:46 -04:00
|
|
|
fluids
|
1999-09-14 09:32:05 -04:00
|
|
|
interfaces
|
2001-10-18 05:02:52 -04:00
|
|
|
sigevents
|
1999-11-04 15:48:47 -05:00
|
|
|
low-interrupt
|
1999-09-22 20:43:13 -04:00
|
|
|
fluids-internal ; JMG: get-dynamic-env
|
|
|
|
handle ; JMG: with-handler
|
1999-10-08 14:41:05 -04:00
|
|
|
; package-commands
|
1999-09-14 09:32:05 -04:00
|
|
|
interrupts
|
|
|
|
i/o
|
|
|
|
package-commands-internal
|
|
|
|
package-mutation
|
|
|
|
packages
|
|
|
|
receiving
|
|
|
|
scsh-version
|
|
|
|
scsh-level-0 ; with-current-input-port error-output-port
|
|
|
|
; with-current-output-port exit
|
|
|
|
scsh-level-0-internals ; set-command-line-args! init-scsh-vars
|
2000-08-28 08:51:22 -04:00
|
|
|
threads
|
2002-08-14 10:23:41 -04:00
|
|
|
(subset srfi-1 (any))
|
|
|
|
(subset srfi-14 (char-set
|
|
|
|
char-set-complement!
|
|
|
|
char-set-contains?
|
|
|
|
string->char-set))
|
2001-11-21 09:20:16 -05:00
|
|
|
root-scheduler ; scheme-exit-now
|
2002-09-25 07:40:07 -04:00
|
|
|
exit-hooks
|
1999-09-14 09:32:05 -04:00
|
|
|
scheme)
|
|
|
|
(files top meta-arg))
|
|
|
|
|
2002-09-25 07:40:07 -04:00
|
|
|
(define-structure exit-hooks exit-hooks-interface
|
|
|
|
(open scheme
|
|
|
|
threads)
|
|
|
|
(begin
|
|
|
|
(define *exit-hooks* '())
|
|
|
|
(define (add-exit-hook! thunk)
|
|
|
|
(set! *exit-hooks* (cons thunk *exit-hooks*)))
|
|
|
|
(define (call-exit-hooks!)
|
|
|
|
(for-each (lambda (thunk) (thunk)) *exit-hooks*))
|
|
|
|
|
|
|
|
(define *narrowed-exit-hooks* '())
|
|
|
|
(define (add-narrowed-exit-hook! thunk)
|
|
|
|
(set! *narrowed-exit-hooks* (cons thunk *narrowed-exit-hooks*)))
|
|
|
|
(define (call-narrowed-exit-hooks!)
|
|
|
|
(for-each (lambda (thunk) (thunk)) *narrowed-exit-hooks*))
|
|
|
|
|
|
|
|
(define (call-exit-hooks-and-narrow thunk)
|
|
|
|
(call-exit-hooks!)
|
|
|
|
(narrow
|
|
|
|
(lambda ()
|
|
|
|
(call-narrowed-exit-hooks!)
|
|
|
|
(thunk))))))
|
|
|
|
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
(define-structure field-reader-package scsh-field-reader-interface
|
2001-03-23 07:45:31 -05:00
|
|
|
(open receiving ; receive
|
2002-08-13 02:49:22 -04:00
|
|
|
scsh-utilities ; deprecated-proc
|
1999-09-14 09:32:05 -04:00
|
|
|
error-package ; error
|
2002-08-14 10:23:41 -04:00
|
|
|
(subset srfi-13 (string-join))
|
|
|
|
(subset srfi-14 (char-set?
|
|
|
|
char-set:whitespace
|
|
|
|
char-set
|
|
|
|
x->char-set
|
|
|
|
char-set-complement))
|
2002-09-03 08:53:47 -04:00
|
|
|
delimited-readers
|
1999-09-23 13:46:46 -04:00
|
|
|
re-exports
|
1999-09-14 09:32:05 -04:00
|
|
|
let-opt ; optional-arg parsing & defaulting
|
|
|
|
scheme
|
|
|
|
)
|
2001-03-23 07:45:31 -05:00
|
|
|
(files fr)
|
|
|
|
;; Handle a little bit of backwards compatibility.
|
|
|
|
(begin (define join-strings (deprecated-proc string-join 'join-strings
|
2002-08-14 10:23:41 -04:00
|
|
|
"Use SRFI-13 STRING-JOIN.")))
|
2001-03-23 07:45:31 -05:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
(define-structures
|
1999-09-23 13:46:46 -04:00
|
|
|
((awk-expander-package (export expand-awk expand-awk/obsolete))
|
1999-09-14 09:32:05 -04:00
|
|
|
(awk-support-package (export next-range next-:range
|
|
|
|
next-range: next-:range:)))
|
|
|
|
(open receiving ; receive
|
2002-08-14 10:45:33 -04:00
|
|
|
;; scsh-utilities
|
|
|
|
(subset srfi-1 (any filter))
|
1999-09-14 09:32:05 -04:00
|
|
|
error-package ; error
|
1999-09-23 13:46:46 -04:00
|
|
|
; scsh-regexp-package
|
|
|
|
; re-exports
|
|
|
|
sre-syntax-tools
|
1999-09-14 09:32:05 -04:00
|
|
|
scheme
|
|
|
|
)
|
1999-09-24 19:54:22 -04:00
|
|
|
(files awk)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
(define-structure awk-package awk-interface
|
1999-09-23 13:46:46 -04:00
|
|
|
(open awk-support-package ; These packages provide all the stuff
|
|
|
|
re-exports ; that appears in the code produced by
|
|
|
|
receiving ; an awk expansion.
|
|
|
|
scheme)
|
1999-09-14 09:32:05 -04:00
|
|
|
(for-syntax (open awk-expander-package scheme))
|
1999-09-23 13:46:46 -04:00
|
|
|
(begin (define-syntax awk expand-awk)
|
|
|
|
(define-syntax awk/posix-string expand-awk/obsolete)))
|
1999-09-14 09:32:05 -04:00
|
|
|
|
1999-09-23 13:46:46 -04:00
|
|
|
;;; Exports an AWK macro that is just AWK/POSIX-STRING.
|
|
|
|
(define-structure obsolete-awk-package (export (awk :syntax))
|
|
|
|
(open awk-package)
|
|
|
|
(begin (define-syntax awk
|
|
|
|
(syntax-rules () ((awk body ...) (awk/posix-string body ....))))))
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
(define-structure scsh
|
|
|
|
(compound-interface (interface-of scsh-level-0)
|
|
|
|
(interface-of scsh-startup-package)
|
1999-09-23 13:46:46 -04:00
|
|
|
; scsh-regexp-interface
|
|
|
|
re-exports-interface
|
|
|
|
re-old-funs-interface
|
|
|
|
scsh-field-reader-interface ; new in 0.3
|
1999-09-14 09:32:05 -04:00
|
|
|
; scsh-dbm-interface
|
1999-09-23 13:46:46 -04:00
|
|
|
awk-interface
|
2001-06-06 07:06:05 -04:00
|
|
|
char-predicates-interface; Urk -- Some of this is R5RS!
|
2001-12-17 04:24:05 -05:00
|
|
|
dot-locking-interface
|
1999-09-22 20:43:13 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
(open structure-refs
|
|
|
|
scsh-level-0
|
|
|
|
scsh-level-0-internals
|
1999-09-23 13:46:46 -04:00
|
|
|
re-exports
|
|
|
|
re-old-funs
|
|
|
|
; scsh-regexp-package
|
1999-09-14 09:32:05 -04:00
|
|
|
scsh-startup-package
|
|
|
|
; dbm
|
1999-09-23 13:46:46 -04:00
|
|
|
awk-package
|
|
|
|
field-reader-package
|
2001-06-06 07:06:05 -04:00
|
|
|
char-predicates-lib ; Urk -- Some of this is R5RS!
|
2000-09-27 07:53:21 -04:00
|
|
|
dot-locking
|
1999-09-14 09:32:05 -04:00
|
|
|
scheme)
|
|
|
|
|
|
|
|
(access scsh-top-package)
|
1999-10-08 14:41:05 -04:00
|
|
|
; (optimize auto-integrate)
|
1999-09-23 13:46:46 -04:00
|
|
|
)
|
1999-09-14 09:32:05 -04:00
|
|
|
|
2002-11-19 07:16:08 -05:00
|
|
|
(define-structure scheme-with-scsh
|
|
|
|
(compound-interface (interface-of scsh)
|
|
|
|
(interface-of scheme))
|
|
|
|
(open scsh
|
|
|
|
(modify scheme (hide call-with-input-file
|
|
|
|
call-with-output-file
|
|
|
|
with-input-from-file
|
|
|
|
with-output-to-file
|
|
|
|
open-input-file
|
|
|
|
open-output-file))))
|
|
|
|
|
1999-09-14 09:32:05 -04:00
|
|
|
(define-structure scsh-here-string-hax (export)
|
|
|
|
(open reading
|
|
|
|
receiving
|
|
|
|
scsh ; Just need the delimited readers.
|
|
|
|
features ; make-immutable!
|
2002-08-14 10:23:41 -04:00
|
|
|
(subset srfi-14 (char-set))
|
1999-09-14 09:32:05 -04:00
|
|
|
scheme)
|
|
|
|
(files here))
|
|
|
|
|
2001-10-18 05:02:52 -04:00
|
|
|
(define-structure sigevents sigevents-interface
|
1999-09-14 09:32:05 -04:00
|
|
|
(open scsh-level-0
|
|
|
|
scheme
|
2001-01-09 10:52:52 -05:00
|
|
|
structure-refs
|
|
|
|
low-interrupt
|
2001-10-18 05:02:52 -04:00
|
|
|
rts-sigevents)
|
1999-09-14 09:32:05 -04:00
|
|
|
(files event))
|
|
|
|
|
1999-11-04 15:48:47 -05:00
|
|
|
(define-structure simple-syntax (export define-simple-syntax)
|
|
|
|
(open scheme)
|
|
|
|
(begin (define-syntax define-simple-syntax
|
|
|
|
(syntax-rules ()
|
|
|
|
((define-simple-syntax (name . pattern) result)
|
|
|
|
(define-syntax name (syntax-rules () ((name . pattern) result))))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define-structure low-interrupt low-interrupt-interface
|
2001-01-09 10:52:52 -05:00
|
|
|
(open scheme
|
|
|
|
enumerated
|
|
|
|
bigbit
|
|
|
|
bitwise)
|
1999-11-04 15:48:47 -05:00
|
|
|
(files low-interrupt))
|
|
|
|
|
1999-09-23 19:02:54 -04:00
|
|
|
;(define-structure test-package (export test-proc)
|
|
|
|
; (open scsh-regexp-package scheme)
|
|
|
|
; (begin (define (test-proc p)
|
|
|
|
; (regexp-substitute p
|
|
|
|
; (string-match "(foo)(.*)(bar)" "Hello foo Olin bar quux")
|
|
|
|
; 'post 3 1 2 'pre))))
|
1999-09-14 09:32:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
(define-structure scsh-threads
|
|
|
|
(export fork/thread
|
|
|
|
fork/process
|
|
|
|
wait/thread
|
|
|
|
wait/process)
|
|
|
|
(open structure-refs
|
|
|
|
scheme)
|
|
|
|
(access scsh-level-0
|
|
|
|
threads
|
|
|
|
threads-internal)
|
1999-11-14 19:23:11 -05:00
|
|
|
(files threads))
|
2000-09-27 07:53:21 -04:00
|
|
|
|
2001-12-17 04:24:05 -05:00
|
|
|
(define-structure dot-locking dot-locking-interface
|
|
|
|
(open scsh-level-0
|
2000-09-27 07:53:21 -04:00
|
|
|
scheme
|
2001-12-17 04:24:05 -05:00
|
|
|
let-opt
|
2001-12-27 12:29:17 -05:00
|
|
|
threads ; sleep
|
|
|
|
random)
|
2001-12-17 04:24:05 -05:00
|
|
|
(files dot-locking))
|
2001-06-01 12:22:26 -04:00
|
|
|
|
2001-12-03 10:21:46 -05:00
|
|
|
(define-structures ((syslog syslog-interface)
|
|
|
|
(syslog-channels syslog-channels-interface))
|
|
|
|
(open scheme
|
|
|
|
define-record-types finite-types enum-sets
|
2001-06-01 12:22:26 -04:00
|
|
|
locks thread-fluids
|
|
|
|
external-calls
|
|
|
|
bitwise)
|
|
|
|
(files syslog))
|
2001-12-03 10:21:46 -05:00
|
|
|
|
2002-05-23 05:52:26 -04:00
|
|
|
(define-structure libscsh (export dump-libscsh-image)
|
2002-05-16 10:50:46 -04:00
|
|
|
(open scheme
|
|
|
|
external-calls
|
|
|
|
(subset i/o (current-error-port))
|
|
|
|
(subset extended-ports (make-string-input-port))
|
|
|
|
(subset handle (with-handler))
|
|
|
|
(subset escapes (with-continuation))
|
|
|
|
(subset environments (with-interaction-environment))
|
|
|
|
(subset package-commands-internal (user-environment))
|
|
|
|
(subset command-levels (user-context start-new-session))
|
|
|
|
(subset command-processor (user-command-environment))
|
|
|
|
(subset scsh-startup-package (dump-scsh-program)))
|
|
|
|
(files libscsh))
|
2002-06-27 08:14:23 -04:00
|
|
|
|
|
|
|
(define-structure md5 md5-interface
|
|
|
|
(open scheme
|
|
|
|
ascii
|
|
|
|
define-record-types
|
|
|
|
bitwise
|
|
|
|
(subset i/o (read-block))
|
|
|
|
(subset srfi-13 (string-fold-right))
|
|
|
|
signals
|
|
|
|
external-calls)
|
|
|
|
(files md5))
|