aboutsummaryrefslogtreecommitdiffstats
path: root/t3.init
diff options
context:
space:
mode:
Diffstat (limited to 't3.init')
-rw-r--r--t3.init170
1 files changed, 115 insertions, 55 deletions
diff --git a/t3.init b/t3.init
index 2b317b8..d5665d0 100644
--- a/t3.init
+++ b/t3.init
@@ -14,7 +14,10 @@
(define (scheme-implementation-type) 'T)
-(define (scheme-implementation-version) "3.1")
+(define (scheme-implementation-version)
+ (string-append (number->string (quotient *T-VERSION-NUMBER* 1000))
+ "."
+ (number->string (modulo *T-VERSION-NUMBER* 1000))))
;;; (scheme-implementation-home-page) should return a (string) URI
;;; (Uniform Resource Identifier) for this scheme implementation's home
@@ -45,35 +48,114 @@
;;; customize a computer environment for a user.
(define (home-vicinity) #f)
-;;; *FEATURES* should be set to a list of symbols describing features
-;;; of this implementation. See Template.scm for the list of feature
-;;; names.
+(define in-vicinity string-append)
+;@
+(define (user-vicinity)
+ (case (software-type)
+ ((VMS) "[.]")
+ (else "")))
+
+(define *load-pathname* #f)
+;@
+(define vicinity:suffix?
+ (let ((suffi
+ (case (software-type)
+ ((AMIGA) '(#\: #\/))
+ ((MACOS THINKC) '(#\:))
+ ((MS-DOS WINDOWS ATARIST OS/2) '(#\\ #\/))
+ ((NOSVE) '(#\: #\.))
+ ((UNIX COHERENT PLAN9) '(#\/))
+ ((VMS) '(#\: #\]))
+ (else
+ (slib:warn "require.scm" 'unknown 'software-type (software-type))
+ "/"))))
+ (lambda (chr) (and (memv chr suffi) #t))))
+;;; What is this early definition doing??
+(define program-vicinity
+ (make-simple-switch 'program-vicinity
+ (lambda (x) (or (string? x) (false? x)))
+ '#f))
+;@
+(define (pathname->vicinity pathname)
+ (let loop ((i (- (string-length pathname) 1)))
+ (cond ((negative? i) "")
+ ((vicinity:suffix? (string-ref pathname i))
+ (substring pathname 0 (+ i 1)))
+ (else (loop (- i 1))))))
+(define (program-vicinity)
+ (if *load-pathname*
+ (pathname->vicinity *load-pathname*)
+ (slib:error 'program-vicinity " called; use slib:load to load")))
+;@
+(define sub-vicinity
+ (case (software-type)
+ ((VMS) (lambda
+ (vic name)
+ (let ((l (string-length vic)))
+ (if (or (zero? (string-length vic))
+ (not (char=? #\] (string-ref vic (- l 1)))))
+ (string-append vic "[" name "]")
+ (string-append (substring vic 0 (- l 1))
+ "." name "]")))))
+ (else (let ((*vicinity-suffix*
+ (case (software-type)
+ ((NOSVE) ".")
+ ((MACOS THINKC) ":")
+ ((MS-DOS WINDOWS ATARIST OS/2) "\\")
+ ((UNIX COHERENT PLAN9 AMIGA) "/"))))
+ (lambda (vic name)
+ (string-append vic name *vicinity-suffix*))))))
+;@
+(define (make-vicinity <pathname>) <pathname>)
+;@
+(define with-load-pathname
+ (let ((exchange
+ (lambda (new)
+ (let ((old *load-pathname*))
+ (set! *load-pathname* new)
+ old))))
+ (lambda (path thunk)
+ (let* ((old (exchange path))
+ (val (thunk)))
+ (exchange old)
+ val))))
+
+;;@ *FEATURES* is a list of symbols naming the (SLIB) features
+;;; initially supported by this implementation.
(define *features*
'(
source ;can load scheme source files
- ;(slib:load-source "filename")
+ ;(SLIB:LOAD-SOURCE "filename")
compiled ;can load compiled files
- ;(slib:load-compiled "filename")
+ ;(SLIB:LOAD-COMPILED "filename")
+ vicinity
+ srfi-59
;; Scheme report features
+ ;; R5RS-compliant implementations should provide all 9 features.
-; r5rs ;conforms to
-; eval ;R5RS two-argument eval
-; values ;R5RS multiple values
-; dynamic-wind ;R5RS dynamic-wind
-; macro ;R5RS high level macros
+;;; r5rs ;conforms to
+;;; eval ;R5RS two-argument eval
+;;; values ;R5RS multiple values
+;;; dynamic-wind ;R5RS dynamic-wind
+;;; macro ;R5RS high level macros
delay ;has DELAY and FORCE
multiarg-apply ;APPLY can take more than 2 args.
char-ready?
+ rev4-optional-procedures ;LIST-TAIL, STRING-COPY,
+ ;STRING-FILL!, and VECTOR-FILL!
+
+ ;; These four features are optional in both R4RS and R5RS
+
+ multiarg/and- ;/ and - can take more than 2 args.
rationalize
- rev4-optional-procedures ;LIST-TAIL, STRING->LIST,
- ;LIST->STRING, STRING-COPY,
- ;STRING-FILL!, LIST->VECTOR,
- ;VECTOR->LIST, and VECTOR-FILL!
+ transcript ;TRANSCRIPT-ON and TRANSCRIPT-OFF
+ with-file ;has WITH-INPUT-FROM-FILE and
+ ;WITH-OUTPUT-TO-FILE
-; r4rs ;conforms to
+;;; r4rs ;conforms to
-; ieee-p1178 ;conforms to
+;;; ieee-p1178 ;conforms to
r3rs ;conforms to
@@ -84,36 +166,32 @@
;-1+, <?, <=?, =?, >?, >=?
object-hash ;has OBJECT-HASH
- multiarg/and- ;/ and - can take more than 2 args.
- with-file ;has WITH-INPUT-FROM-FILE and
- ;WITH-OUTPUT-TO-FILE
- transcript ;TRANSCRIPT-ON and TRANSCRIPT-OFF
-; ieee-floating-point ;conforms to IEEE Standard 754-1985
+ full-continuation ;can return multiple times
+;;; ieee-floating-point ;conforms to IEEE Standard 754-1985
;IEEE Standard for Binary
;Floating-Point Arithmetic.
- full-continuation ;can return multiple times
;; Other common features
-; srfi ;srfi-0, COND-EXPAND finds all srfi-*
-; sicp ;runs code from Structure and
+;;; srfi ;srfi-0, COND-EXPAND finds all srfi-*
+;;; sicp ;runs code from Structure and
;Interpretation of Computer
;Programs by Abelson and Sussman.
-; defmacro ;has Common Lisp DEFMACRO
-; record ;has user defined data structures
-; string-port ;has CALL-WITH-INPUT-STRING and
+;;; defmacro ;has Common Lisp DEFMACRO
+;;; record ;has user defined data structures
+;;; string-port ;has CALL-WITH-INPUT-STRING and
;CALL-WITH-OUTPUT-STRING
-; sort
+;;; sort
pretty-print
-; object->string
+;;; object->string
format ;Common-lisp output formatting
trace ;has macros: TRACE and UNTRACE
-; compiler ;has (COMPILER)
-; ed ;(ED) is editor
-; system ;posix (system <string>)
-; getenv ;posix (getenv <string>)
+;;; compiler ;has (COMPILER)
+;;; ed ;(ED) is editor
+;;; system ;posix (system <string>)
+;;; getenv ;posix (getenv <string>)
program-arguments ;returns list of strings (argv)
-; current-time ;returns time in seconds since 1/1/1970
+;;; current-time ;returns time in seconds since 1/1/1970
;; Implementation Specific features
@@ -273,18 +351,7 @@
(define (defmacro:load <pathname>)
(slib:eval-load <pathname> defmacro:eval))
-
-(define (slib:eval-load <pathname> evl)
- (if (not (file-exists? <pathname>))
- (set! <pathname> (string-append <pathname> (scheme-file-suffix))))
- (call-with-input-file <pathname>
- (lambda (port)
- (let ((old-load-pathname *load-pathname*))
- (set! *load-pathname* <pathname>)
- (do ((o (read port) (read port)))
- ((eof-object? o))
- (evl o))
- (set! *load-pathname* old-load-pathname)))))
+;; slib:eval-load definition moved to "require.scm"
(define slib:warn
(lambda args
@@ -308,15 +375,8 @@
(define (1- n) (+ n -1))
;(define (-1+ n) (+ n -1))
-(define program-vicinity
- (make-simple-switch 'program-vicinity
- (lambda (x) (or (string? x) (false? x)))
- '#f))
-
-(define in-vicinity string-append)
-
;;; Define SLIB:EXIT to be the implementation procedure to exit or
-;;; return if exitting not supported.
+;;; return if exiting not supported.
(define slib:exit (lambda args (exit))
(define (string . args) (apply string-append (map char->string args)))