/usr/share/scsh-0.6/scsh/top.scm is in scsh-common-0.6 0.6.7-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | ;;; The scsh argv switch parser.
;;; Copyright (c) 1995 by Olin Shivers. See file COPYING.
;;; Imports:
;;; COMMAND-PROCESSOR: set-batch-mode?! command-loop
;;; ENSURES-LOADED: really-ensure-loaded
;;; ENVIRONMENTS: set-interaction-environment! environment-ref
;;; environment-define!
;;; ERROR-PACKAGE: error
;;; EVALUATION: eval
;;; EXTENDED-PORTS: make-string-input-port
;;; INTERFACES: make-simple-interface
;;; INTERRUPTS: interrupt-before-heap-overflow!
;;; PACKAGE-COMMANDS-INTERNAL: user-environment config-package
;;; get-reflective-tower
;;; PACKAGE-MUTATION: package-open!
;;; PACKAGES: structure-package structure? make-structure
;;; make-simple-package
;;; RECEIVING: mv return stuff
;;; SCSH-LEVEL-0-INTERNALS: set-command-line-args!
;;; SCSH-VERSION: scsh-version-string
;;; HANDLE: with-handler
;;; This should be defined by the package code, but it isn't.
(define (get-struct config-pack struct-name)
(let ((s (environment-ref config-pack struct-name)))
(cond ((structure? s) s)
(else (error "not a structure" s struct-name)))))
;;; ensure-loaded and load-into now write to noise-port anyway
(define (load-quietly filename p)
(if (not (string? filename))
(error "not a string in load-quietly" filename))
(let-fluid $current-noise-port (make-null-output-port)
(lambda () (load-into filename p))))
(define (load-port-quietly port p)
(let-fluid $current-noise-port (make-null-output-port)
(lambda () (load-port port p))))
(define (really-ensure-loaded noise . structs)
(let-fluid $current-noise-port (make-null-output-port)
(lambda ()
(apply ensure-loaded structs))))
(define (load-library-file file lib-dirs script-file package)
; (format (error-output-port) "Load-library-file: ~a ~s\n" file lib-dirs)
(cond ((file-name-absolute? file)
(load-quietly file package))
;; Search library dirs for FILE.
((find-library-file file lib-dirs script-file) =>
(lambda (file)
(load-quietly file package))) ; Load it.
(else (error "Couldn't find library file" file lib-dirs))))
;;; The switches:
;;; -o <struct> Open the structure in current package.
;;; -n <package> Create new package, make it current package.
;;; -m <struct> <struct>'s package becomes current package.
;;;
;;; -l <file> Load <file> into current package.
;;; -lm <file> Load <file> into config package.
;;; -le <file> Load <file> into exec package.
;;; -ll <file> As in -lm, but search the library path list.
;;; -lel <file> As in -le, but search the library path list.
;;;
;;; +lp <dir> Add <dir> onto start of library path list.
;;; lp+ <dir> Add <dir> onto end of library path list.
;;; +lpe <dir> As in +lp, but expand env vars & ~user.
;;; lpe+ <dir> As in lp+, but expand env vars & ~user.
;;; +lpsd Add the script-file's directory to front of path list
;;; lpsd+ Add the script-file's directory to end of path list
;;; -lp-clear Clear library path list to ().
;;; -lp-default Reset library path list to system default.
;;;
;;; These two require a terminating -s or -sfd arg:
;;; -ds Load terminating script into current package.
;;; -dm Load terminating script into config package.
;;; -de Load terminating script into exec package.
;;;
;;; -e <entry> Call (<entry>) to start program.
;;;
;;; Terminating switches:
;;; -c <exp> Eval <exp>, then exit.
;;; -s <script> Specify <script> to be loaded by a -ds, -dm, or -de.
;;; -sfd <num> Script is on file descriptor <num>.
;;; -- Interactive scsh.
;;; Return switch list, terminating switch, with arg, top-entry,
;;; and command-line args.
;;; - We first expand out any initial \ <filename> meta-arg.
;;; - A switch-list elt is either "-ds", "-dm", "-de", or a (switch . arg) pair
;;; for a -o, -n, -m, -l, or -lm switch.
;;; - Terminating switch is one of {s, c, #f} for -s or -sfd, -c,
;;; and -- respectively.
;;; - Terminating arg is the <exp> arg to -c, the <script> arg to -s,
;;; the input port for -sfd, otw #f.
;;; - top-entry is the <entry> arg to a -e; #f if none.
;;; - command-line args are what's left over after picking off the scsh
;;; switches.
(define (parse-scsh-args args)
(let lp ((args (meta-arg-process-arglist args))
(switches '()) ; A list of handler thunks
(top-entry #f) ; -t <entry>
(need-script? #f)) ; Found a -ds, -dm, or -de?
; (display args (current-output-port))
(if (pair? args)
(let ((arg (car args))
(args (cdr args)))
(cond ((string=? arg "-c")
(if (or need-script? top-entry (not (pair? args)))
(bad-arg)
(values (reverse switches) 'c (car args)
top-entry (cdr args))))
((string=? arg "-s")
(if (not (pair? args))
(bad-arg "-s switch requires argument")
(values (reverse switches) 's (car args)
top-entry (cdr args))))
;; -sfd <num>
((string=? arg "-sfd")
(if (not (pair? args))
(bad-arg "-sfd switch requires argument")
(let* ((fd (string->number (car args)))
(p (fdes->inport fd)))
(release-port-handle p) ; Unreveal the port.
(values (reverse switches) 'sfd p
top-entry (cdr args)))))
((string=? arg "--")
(if need-script?
(bad-arg "-ds, -dm, or -de switch requires -s <script>")
(values (reverse switches) #f #f top-entry args)))
((or (string=? arg "-ds")
(string=? arg "-dm")
(string=? arg "-de")
(string=? arg "+lpsd")
(string=? arg "lpsd+")
(string=? arg "-lp-default")
(string=? arg "-lp-clear"))
(lp args (cons arg switches) top-entry #t))
((or (string=? arg "-l")
(string=? arg "-lm")
(string=? arg "-le")
(string=? arg "-ll")
(string=? arg "-lel")
(string=? arg "lp+")
(string=? arg "+lp")
(string=? arg "lpe+")
(string=? arg "+lpe"))
(if (pair? args)
(lp (cdr args)
(cons (cons arg (car args)) switches)
top-entry
need-script?)
(bad-arg "Switch requires argument" arg)))
((or (string=? arg "-o")
(string=? arg "-n")
(string=? arg "-m"))
(if (pair? args)
(let* ((s (car args))
(name (if (and (string=? arg "-n")
(string=? s "#f"))
#f ; -n #f treated specially.
(string->symbol s))))
(lp (cdr args)
(cons (cons arg name) switches)
top-entry
need-script?))
(bad-arg "Switch requires argument" arg)))
((string=? arg "-e")
(lp (cdr args) switches
(string->symbol (car args)) need-script?))
(else (bad-arg "Unknown switch" arg))))
(values (reverse switches) #f #f top-entry '()))))
;;; Do each -ds, -dm, -de, -o, -n, -m, -l/lm/ll, +lp/+lpe/lp+/lpe+, or
;;; -lp-clear/lp-default switch, and return the final result package and a
;;; flag saying if the script was loaded by a -ds, -dm, or -de.
(define (do-switches switches script-file)
; (format #t "Switches = ~a~%" switches)
(let lp ((switches switches)
(script-loaded? #f))
(if (pair? switches)
(let ((switch (car switches))
(switches (cdr switches)))
; (format #t "Doing switch ~a~%" switch)
(cond
((equal? switch "-ds")
(load-quietly script-file (interaction-environment))
; (format #t "loaded script ~s~%" script-file)
(lp switches #t))
((equal? switch "-dm")
(load-quietly script-file (config-package))
; (format #t "loaded module ~s~%" script-file)
(lp switches #t))
((equal? switch "-de")
(load-quietly script-file (user-command-environment))
; (format #t "loaded exec ~s~%" script-file)
(lp switches #t))
((equal? switch "-lp-clear")
(clear-lib-dirs!)
(lp switches script-loaded?))
((equal? switch "-lp-default")
(reset-lib-dirs!)
(lp switches script-loaded?))
((equal? switch "+lpsd")
(lib-dirs-prepend-script-dir!)
(lp switches script-loaded?))
((equal? switch "lpsd+")
(lib-dirs-append-script-dir!)
(lp switches script-loaded?))
((string=? (car switch) "-l")
; (format #t "loading file ~s~%" (cdr switch))
(load-quietly (cdr switch) (interaction-environment))
(lp switches script-loaded?))
((string=? (car switch) "-lm")
; (format #t "loading module file ~s~%" (cdr switch))
(load-quietly (cdr switch) (config-package))
(lp switches script-loaded?))
((string=? (car switch) "-le")
; (format #t "loading exec file ~s~%" (cdr switch))
(let ((current-package (interaction-environment)))
(load-quietly (cdr switch) (user-command-environment))
(set-interaction-environment! current-package)
(lp switches script-loaded?)))
((string=? (car switch) "-ll")
(load-library-file (cdr switch) (lib-dirs) script-file
(config-package))
(lp switches script-loaded?))
((string=? (car switch) "-lel")
(let ((current-package (interaction-environment)))
(load-library-file (cdr switch) (lib-dirs) script-file
(user-command-environment))
(set-interaction-environment! current-package)
(lp switches script-loaded?)))
((string=? (car switch) "+lp")
(lib-dirs-prepend! (cdr switch))
(lp switches script-loaded?))
((string=? (car switch) "lp+")
(lib-dirs-append! (cdr switch))
(lp switches script-loaded?))
((string=? (car switch) "+lpe")
(lib-dirs-prepend! (expand-lib-dir (cdr switch)))
(lp switches script-loaded?))
((string=? (car switch) "lpe+")
(lib-dirs-append! (expand-lib-dir (cdr switch)))
(lp switches script-loaded?))
((string=? (car switch) "-o")
(let ((struct-name (cdr switch))
(cp (config-package)))
;; Should not be necessary to do this ensure-loaded, but it is.
(really-ensure-loaded #f (get-struct cp struct-name))
(package-open! (interaction-environment)
(lambda () (get-struct cp struct-name)))
; (format #t "Opened ~s~%" struct-name)
(lp switches script-loaded?)))
((string=? (car switch) "-n")
(let* ((name (cdr switch))
(pack (new-empty-package name))) ; Contains nothing
(if name ; & exports nothing.
(let* ((iface (make-simple-interface #f '()))
(struct (make-structure pack iface)))
(environment-define! (config-package) name struct)))
(set-interaction-environment! pack)
(lp switches script-loaded?)))
((string=? (car switch) "-m")
; (format #t "struct-name ~s~%" (cdr switch))
(let ((struct (get-struct (config-package) (cdr switch))))
; (format #t "struct-name ~s, struct ~s~%" (cdr switch) struct)
(let ((pack (structure-package struct)))
; (format #t "package ~s~%" pack)
(set-interaction-environment! pack)
(really-ensure-loaded #f struct)
; (format #t "Switched to ~s~%" pack)
(lp switches script-loaded?))))
(else (error "Impossible error in do-switches. Report to developers."))))
script-loaded?)))
;;; (user-environment) probably isn't right. What is this g-r-t stuff?
;;; Check w/jar.
(define (new-empty-package name)
(make-simple-package '() #t
(get-reflective-tower (user-environment)) ; ???
name))
(define (with-scsh-initialized interactive? context args thunk)
(with-scsh-sighandlers
interactive?
(lambda ()
(with-autoreaping
(lambda ()
;; environment,umask and cwd are already installed by resumers
;; c.f. {env,umask,env}-reinitializer in scsh.scm
(init-scsh-vars interactive?)
(start-new-session context
(current-input-port)
(current-output-port)
(current-error-port)
args
(not interactive?))
(with-interaction-environment
(user-environment)
thunk))))))
(define (parse-switches-and-execute all-args context)
(receive (switches term-switch term-val top-entry args)
(parse-scsh-args (cdr all-args))
(with-handler
(lambda (cond more)
(if (error? cond)
(with-handler
(lambda (c m)
(scheme-exit-now 1))
(lambda ()
(display-condition cond (current-error-port))
(scsh-exit-now 1)))
(more)))
(lambda ()
(with-scsh-initialized
(not term-switch) context args
(lambda ()
;; Have to do these before calling DO-SWITCHES, because actions
;; performed while processing the switches may use these guys.
(set-command-line-args!
(cons (if (eq? term-switch 's)
term-val ; Script file.
(if (eq? term-val 'sfd)
"file-descriptor-script" ; -sfd <num>
(car all-args)))
args))
(let* ((script-loaded? (do-switches switches term-val)))
(if (not script-loaded?) ; There wasn't a -ds, -dm, or -de,
(if (eq? term-switch 's) ; but there is a script,
(load-quietly term-val; so load it now.
(interaction-environment))
(if (eq? term-switch 'sfd)
(load-port-quietly term-val (interaction-environment)))))
(cond ((not term-switch) ; -- interactive
(scsh-exit-now ;; TODO: ,exit will bypass this
(restart-command-processor
args
context
(lambda ()
(display (string-append
"Welcome to scsh "
scsh-version-string
" (" scsh-release-name ")")
(current-output-port))
(newline (current-output-port))
(display "Type ,? for help."
(current-output-port))
(newline (current-output-port))
(in-package (user-environment) '())))))
((eq? term-switch 'c)
(let ((result (eval (read-exactly-one-sexp-from-string term-val)
(interaction-environment))))
(scsh-exit-now 0)))
(top-entry ; There was a -e <entry>.
((eval top-entry (interaction-environment))
(command-line))
(scsh-exit-now 0))
;; Otherwise, the script executed as it loaded,
;; so we're done.
(else (scsh-exit-now 0))))))))))
(define (read-exactly-one-sexp-from-string s)
(with-current-input-port (make-string-input-port s)
(let ((val (read)))
(if (eof-object? (read)) val
(error "More than one value read from string" s)))))
(define (scsh-exit-now status)
(call-exit-hooks-and-narrow
(lambda ()
(scheme-exit-now status))))
(add-narrowed-exit-hook! flush-all-ports-no-threads)
(define (bad-arg . msg)
(with-current-output-port (current-error-port)
(for-each (lambda (x) (display x) (write-char #\space)) msg)
(newline)
(display "Usage: scsh [meta-arg] [switch ..] [end-option arg ...]
meta-arg: \\ <script-file-name>
switch: -e <entry-point> Specify top-level entry point.
-o <structure> Open structure in current package.
-m <package> Switch to package.
-n <new-package> Switch to new package.
-lm <module-file-name> Load module into config package.
-le <exec-file-name> Load file into exec package.
-l <file-name> Load file into current package.
-ll <module-file-name> As in -lm, but search the library path list.
-lel <exec-file-name> As in -le, but search the library path list.
+lp <dir> Add <dir> to front of library path list.
lp+ <dir> Add <dir> to end of library path list.
+lpe <dir> +lp, with env var and ~user expansion.
lpe+ <dir> lp+, with env var and ~user expansion.
+lpsd Add script-file's dir to front of path list.
lpsd+ Add script-file's dir to end of path list.
-lp-clear Clear library path list to ().
-lp-default Reset library path list to system default.
-ds Do script.
-dm Do script module.
-de Do script exec.
end-option: -s <script> Specify script.
-sfd <num> Script is on file descriptor <num>.
-c <exp> Evaluate expression.
-- Interactive session.
" (current-error-port)))
(exit -1))
|