summaryrefslogtreecommitdiff
path: root/scsh-process.scm
diff options
context:
space:
mode:
authorPeter Bex <peter@more-magic.net>2012-10-01 18:25:05 +0100
committerPeter Bex <peter@more-magic.net>2012-10-01 18:25:05 +0100
commitae6f4ea76524c69aa701999ab13278193695432a (patch)
tree15d5453d93d25fd4a2a02563353695681ca7a9d4 /scsh-process.scm
parentd3cab9cb7d8f2066127db89bc50d38987e393340 (diff)
downloadscsh-process-ae6f4ea76524c69aa701999ab13278193695432a.tar.gz
Implement && and || (which is a bit of a hack in Chicken considering it's the empty symbol)
Diffstat (limited to 'scsh-process.scm')
-rw-r--r--scsh-process.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/scsh-process.scm b/scsh-process.scm
index 63ce220..46a107a 100644
--- a/scsh-process.scm
+++ b/scsh-process.scm
@@ -43,6 +43,7 @@
;; macros
run/collecting run/string run/strings run/port run/file run/sexp run/sexps
+ || &&
(& maybe-symbol->string) (run maybe-symbol->string) (exec-epf maybe-symbol->string))
(import chicken scheme data-structures)
@@ -151,6 +152,13 @@
(syntax-rules ()
((_ ?epf ...) (run/sexps* (lambda () (exec-epf ?epf ...))))))
+(define-syntax &&
+ (syntax-rules ()
+ ((_ ?epf ...) (and (zero? (run ?epf)) ...))))
+(define-syntax ||
+ (syntax-rules ()
+ ((_ ?epf ...) (or (zero? (run ?epf)) ...))))
+
(define-syntax &
(syntax-rules ()
((_ ?epf ...)
@@ -233,7 +241,7 @@
(setup-redirection (= 1 (current-output-port)))
(setup-redirection (= 2 (current-error-port)))
?expr0 ...))
- ((_ (epf ?args ...)) ; TODO: Figure out the point of this
+ ((_ (epf ?args ...)) ; This disambiguates redirection inside && and ||
(exec-epf ?args ...))
;; This is purely for convenience, so you don't need the (epf ...) wrapper
((_ (?prog ?arg0 ...) ?redir0 ...)