;;; 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 ;;; ;;; More imports for the new library-search facility: ;;; HANDLE: with-handler ;;; LIST-LIB: any ;;; SCSH-LEVEL-0: directory-files open-input-file file-directory? getenv ;;; SCSH-LEVEL-0: getenv ;;; SCSH-LEVEL-0: the file-name procs ;;; 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))))) ;;; The switches: ;;; -o Open the structure in current package. ;;; -n Create new package, make it current package. ;;; -m 's package becomes current package. ;;; ;;; -l Load into current package. ;;; -lm Load into config package. ;;; -ll As in -lm, but search the library path list. ;;; ;;; +lp Add onto start of library path list. ;;; lp+ Add onto end of library path list. ;;; +lpe As in +lp, but expand env vars & ~user. ;;; lpe+ 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. ;;; ;;; -e Call () to start program. ;;; ;;; Terminating switches: ;;; -c Eval , then exit. ;;; -s