gash/gash/gash.scm

289 lines
12 KiB
Scheme
Raw Normal View History

2017-02-19 12:49:30 +00:00
(define-module (gash gash)
2018-06-26 19:34:07 +01:00
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26)
2018-07-10 01:10:15 +01:00
#:use-module (ice-9 buffered-input)
2018-06-26 19:34:07 +01:00
#:use-module (ice-9 ftw)
#:use-module (ice-9 getopt-long)
#:use-module (ice-9 local-eval)
#:use-module (ice-9 match)
#:use-module (ice-9 rdelim)
#:use-module (ice-9 readline)
2018-07-10 01:10:15 +01:00
#:use-module (ice-9 pretty-print)
#:use-module (ice-9 receive)
2018-06-26 19:34:07 +01:00
#:use-module (ice-9 regex)
2016-06-06 23:54:23 +01:00
#:use-module (gash config)
#:use-module (gash environment)
2018-06-26 19:34:07 +01:00
#:use-module (gash job)
#:use-module (gash pipe)
#:use-module (gash peg)
#:use-module (gash io)
#:use-module (gash util)
2016-06-06 23:54:23 +01:00
2018-07-03 19:55:14 +01:00
#:export (main
2018-07-03 19:56:49 +01:00
%debug-level
2018-07-14 10:43:17 +01:00
%prefer-builtins?
2018-07-03 19:55:14 +01:00
shell-opt?))
2016-06-06 23:54:23 +01:00
2018-07-14 10:43:17 +01:00
(define %debug-level 0) ; 1 informational, 2 verbose, 3 peg tracing
(define %prefer-builtins? #f) ; use builtin, even if COMMAND is available in PATH?
2018-07-03 19:56:49 +01:00
2017-04-08 20:39:43 +01:00
(define (remove-shell-comments s)
(string-join (map
(lambda (s)
(let* ((n (string-index s #\#)))
(if n (string-pad-right s (string-length s) #\space 0 n)
s)))
(string-split s #\newline)) "\n"))
(define (remove-escaped-newlines s)
(reduce (lambda (next prev)
(let* ((escaped? (string-suffix? "\\" next))
(next (if escaped? (string-drop-right next 1) next))
(sep (if escaped? "" "\n")))
(string-append prev sep next)))
"" (string-split s #\newline)))
2016-09-17 18:31:58 +01:00
(define (file-to-string filename)
2018-07-15 19:06:19 +01:00
(format (current-error-port) "gash: reading: ~s\n" filename)
2017-04-08 20:39:43 +01:00
((compose read-string open-input-file) filename))
2016-09-17 18:31:58 +01:00
(define (string-to-ast string)
2017-04-08 20:39:43 +01:00
((compose parse remove-escaped-newlines remove-shell-comments) string))
2016-09-17 18:31:58 +01:00
(define (file-to-ast filename)
((compose string-to-ast file-to-string) filename))
2017-02-15 22:10:24 +00:00
(define (display-help)
(display "\
2017-02-19 12:49:30 +00:00
gash [options]
2018-07-02 19:20:54 +01:00
-c, --command=STRING Evaluate STRING and exit
-e, --errexit Exit upon error
2018-07-02 19:20:54 +01:00
-d, --debug Enable PEG tracing
-h, --help Display this help
-p, --parse Parse the shell script and print the parse tree
--prefer-builtins Use builtins, even if command is available in PATH
-v, --version Display the version
-x, --xtrace Print simple command trace
2016-06-06 23:54:23 +01:00
"))
2017-02-15 22:10:24 +00:00
(define (display-version)
(display (string-append "
GASH " %version "
2017-02-15 22:10:24 +00:00
Copryright (C) 2016,2017,2018 R.E.W. van Beusekom <rutger.van.beusekom@gmail.com>
2016-06-06 23:54:23 +01:00
This is gash, Guile As SHell. Gash is free software and is covered by
the GNU General Public License version 3 or later, see COPYING for the
copyleft.
2017-02-15 22:10:24 +00:00
")))
2017-02-15 22:10:24 +00:00
(define (main args)
(let ((thunk
(lambda ()
(job-control-init)
2018-07-02 07:35:10 +01:00
(let* ((option-spec '((command (single-char #\c) (value #t))
(debug (single-char #\d))
(errexit (single-char #\e))
(help (single-char #\h))
2018-07-10 01:10:15 +01:00
(parse (single-char #\p))
(prefer-builtins)
(version (single-char #\v))
(xtrace (single-char #\x))))
2018-07-02 07:35:10 +01:00
(options (getopt-long args option-spec #:stop-at-first-non-option #t ))
(command? (option-ref options 'command #f))
2018-07-03 19:56:49 +01:00
(opt? (lambda (name) (lambda (o) (and (eq? (car o) name) (cdr o)))))
(debug (length (filter-map (opt? 'debug) options)))
2018-07-07 18:32:46 +01:00
(debug? (option-ref options 'debug #f))
2017-02-15 22:10:24 +00:00
(help? (option-ref options 'help #f))
2018-07-10 01:10:15 +01:00
(parse? (option-ref options 'parse #f))
2017-02-15 22:10:24 +00:00
(version? (option-ref options 'version #f))
(files (option-ref options '() '())))
(set! %prefer-builtins? (option-ref options 'prefer-builtins #f))
(set-shell-opt! "errexit" (option-ref options 'errexit #f))
(set-shell-opt! "xtrace" (option-ref options 'xtrace #f))
2018-07-14 07:51:12 +01:00
(when (option-ref options 'debug #f)
(set! %debug-level debug))
2017-02-15 22:10:24 +00:00
(cond
(help? (display-help))
(version? (display-version))
2018-07-02 07:35:10 +01:00
(command? (let ((ast (string-to-ast command?)))
2018-07-14 09:20:05 +01:00
(exit (assoc-ref %global-variables "?"))))
2017-02-15 22:10:24 +00:00
((pair? files)
(let* ((asts (map file-to-ast files))
2018-07-14 09:20:05 +01:00
(status (assoc-ref %global-variables "?")))
(exit status)))
2017-02-19 12:49:30 +00:00
(#t (let* ((HOME (string-append (getenv "HOME") "/.gash_history"))
2017-02-15 22:10:24 +00:00
(thunk (lambda ()
(let loop ((line (readline (prompt))))
(when (not (eof-object? line))
2018-07-14 07:51:12 +01:00
(let* ((ast (string-to-ast line)))
(when (and ast
(not (string-null? line)))
(add-history line))
2017-02-15 22:10:24 +00:00
(loop (let ((previous (if ast "" (string-append line "\n")))
(next (readline (if ast (prompt) "> "))))
(if (eof-object? next) next
(string-append previous next))))))))))
(clear-history)
(read-history HOME)
(with-readline-completion-function completion thunk)
2018-07-14 07:51:12 +01:00
(write-history HOME)
(newline))))))))
(thunk)))
2016-06-06 23:54:23 +01:00
(define (expand identifier o) ;;identifier-string -> symbol
2016-11-01 13:40:17 +00:00
(define (expand- o)
(let ((dollar-identifier (string-append "$" identifier)))
(match o
((? symbol?) o)
((? string?) (if (string=? o dollar-identifier) (string->symbol identifier) o))
2016-11-01 13:40:17 +00:00
((? list?) (map expand- o))
(_ o))))
(map expand- o))
2018-07-14 10:43:17 +01:00
(define (DEAD-background ast)
2017-02-12 12:10:23 +00:00
(match ast
(('pipeline fg rest ...) `(pipeline #f ,@rest))
(_ ast)))
2018-07-03 19:38:30 +01:00
(define (shell-opt? name)
2018-07-14 09:20:05 +01:00
(member name (string-split (assoc-ref %global-variables "SHELLOPTS") #\:)))
2018-07-07 18:32:46 +01:00
(define (tostring . args)
(with-output-to-string (cut map display args)))
2016-10-30 23:19:44 +00:00
;; transform ast -> list of expr
;; such that (map eval expr)
(define (DEAD-transform ast)
2018-07-14 07:51:12 +01:00
(format (current-error-port) "transform=~s\n" ast)
2016-06-06 23:54:23 +01:00
(match ast
2018-07-07 18:32:46 +01:00
(('script term "&") (list (background (transform term))))
(('script term) `(,(transform term)))
(('script terms ...) (transform terms))
(('substitution "$(" script ")") (local-eval (cons 'substitute (cddr (car (transform script)))) (the-environment)))
(('substitution "`" script "`") (local-eval (cons 'substitute (cddr (car (transform script)))) (the-environment)))
((('term command)) `(,(transform command)))
((('term command) ...) (map transform command))
((('term command) (('term commands) ...)) (map transform (cons command commands)))
(('compound-list terms ...) (transform terms))
(('if-clause "if" (expression "then" consequent "fi"))
`(if (equal? 0 (status:exit-val ,@(transform expression)))
(begin ,@(transform consequent))))
(('if-clause "if" (expression "then" consequent ('else-part "else" alternative) "fi"))
`(if (equal? 0 (status:exit-val ,@(transform expression)))
(begin ,@(transform consequent))
(begin ,@(transform alternative))))
(('for-clause ("for" identifier sep do-group)) #t)
(('for-clause "for" ((identifier "in" lst sep) do-group))
`(for-each (lambda (,(string->symbol identifier))
(begin ,@(expand identifier (transform do-group))))
(glob ,(transform lst))))
(('do-group "do" (command "done")) (transform command))
(('pipeline command) (pk 1) (let* ((command (transform command))) (or (builtin command) `(pipeline #t ,@command))))
(('pipeline command piped-commands) (pk 2) `(pipeline #t ,@(transform command) ,@(transform piped-commands)))
(('simple-command ('word (assignment name value))) `((lambda _ (let ((name ,(tostring (transform name)))
(value ,(tostring (transform value))))
(stderr "assignment: " name "=" value)
(set! global-variables (assoc-set! global-variables name (glob value)))))))
(('simple-command ('word s)) `((glob ,(transform s))))
(('simple-command ('word s1) ('io-redirect "<<" ('here-document s2))) `((append (glob "echo") (cons "-n" (glob ,s2))) (glob ,(transform s1))))
(('simple-command ('word s1) ('word s2)) `((append (glob ,(transform s1)) (glob ,(transform s2)))))
(('simple-command ('word s1) (('word s2) ...)) `((append (glob ,(transform s1)) (append-map glob (list ,@(map transform s2))))))
(('variable s) s)
(('literal s) (transform s))
(('singlequotes s) (string-concatenate `("'" ,s "'")))
(('doublequotes s) (string-concatenate `("\"" ,s "\"")))
(('backticks s) (string-concatenate `("`" ,s "`")))
(('delim ('singlequotes s ...)) (string-concatenate (map transform s)))
(('delim ('doublequotes s ...)) (string-concatenate (map transform s)))
(('delim ('backticks s ...)) (string-concatenate (map transform s)))
((('pipe _) command) (transform command))
(((('pipe _) command) ...) (map (compose car transform) command))
((_ o) (transform o)) ;; peel the onion: (symbol (...)) -> (...)
(_ ast))) ;; done
2016-06-06 23:54:23 +01:00
(define prompt
(let* ((l (string #\001))
(r (string #\002))
(e (string #\033))
(user (getenv "USER"))
(host (gethostname))
(home (getenv "HOME")))
(lambda ()
(let* ((cwd (getcwd))
(cwd (if (string-prefix? home cwd)
(string-replace cwd "~" 0 (string-length home))
cwd)))
(report-jobs)
(string-append
l e "[01;32m" r user "@" host l e "[00m" r ":"
2018-07-04 19:35:28 +01:00
l e "[01;34m" r cwd l e "[00m" r (if (zero? (getuid)) "# " "$ "))))))
2016-06-06 23:54:23 +01:00
2016-11-02 20:53:08 +00:00
(define (string-prefix s1 s2)
(substring/read-only s1 0 (string-prefix-length s1 s2)))
(define next->file-completion (lambda () #f))
(define next->binary-completion (lambda () #f))
(define (isdir? path)
(and (access? path F_OK) (eq? 'directory (stat:type (stat path)))))
(define (ls dir)
(map (lambda (path)
(if (isdir? (string-append dir path))
(string-append path "/")
path))
(sort (filter (negate (cut string-every #\. <>))
(scandir (if (string-null? dir) (getcwd) dir))) string<?)))
(define (complete prefix list)
(if (string-null? prefix) list
(filter (cut string-prefix? prefix <>) list)))
(define (slash dir)
(if (string-suffix? "/" dir) dir
(string-append dir "/")))
(define (after-slash path)
(let ((at (string-index-right path #\/)))
(if at (string-drop path (+ 1 at))
path)))
(define (filename-completion text continue?)
(if continue?
(next->file-completion)
(let* ((dir (slash (if (isdir? text) text (dirname text))))
(listing (ls dir))
(dir (if (string=? "./" dir) "" dir))
(completions (complete (after-slash text) listing)))
(set! next->file-completion
(lambda ()
(if (null? completions)
#f
(let ((completion (car completions)))
(set! completions (cdr completions))
(string-append dir completion)))))
(next->file-completion))))
(define (search-binary-in-path-completion text continue?)
(if (not continue?)
(let* ((paths (string-split (getenv "PATH") #\:))
(binaries (apply append (filter identity (map scandir paths))))
(completions (sort (filter (cut string-prefix? text <>) binaries) string<?)))
(set! next->binary-completion (lambda ()
(if (null? completions)
#f
(let ((completion (car completions)))
(set! completions (cdr completions))
completion))))
(next->binary-completion))
(next->binary-completion)))
(define (completion text continue?)
(or (filename-completion text continue?) (search-binary-in-path-completion text continue?)))