utils: Support defaults in substitute-keyword-arguments.
* guix/utils.scm (collect-default-args, expand-default-args): New syntax. (substitute-keyword-arguments): Allow default value declarations. * tests/utils.scm (substitute-keyword-arguments): New test.
This commit is contained in:
parent
347df60158
commit
b8b129ebd8
|
@ -375,13 +375,24 @@ keywords not already present in ARGS."
|
||||||
(()
|
(()
|
||||||
args))))
|
args))))
|
||||||
|
|
||||||
|
(define-syntax collect-default-args
|
||||||
|
(syntax-rules ()
|
||||||
|
((_)
|
||||||
|
'())
|
||||||
|
((_ (_ _) rest ...)
|
||||||
|
(collect-default-args rest ...))
|
||||||
|
((_ (kw _ dflt) rest ...)
|
||||||
|
(cons* kw dflt (collect-default-args rest ...)))))
|
||||||
|
|
||||||
(define-syntax substitute-keyword-arguments
|
(define-syntax substitute-keyword-arguments
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
"Return a new list of arguments where the value for keyword arg KW is
|
"Return a new list of arguments where the value for keyword arg KW is
|
||||||
replaced by EXP. EXP is evaluated in a context where VAR is boud to the
|
replaced by EXP. EXP is evaluated in a context where VAR is bound to the
|
||||||
previous value of the keyword argument."
|
previous value of the keyword argument, or DFLT if given."
|
||||||
((_ original-args ((kw var) exp) ...)
|
((_ original-args ((kw var dflt ...) exp) ...)
|
||||||
(let loop ((args original-args)
|
(let loop ((args (default-keyword-arguments
|
||||||
|
original-args
|
||||||
|
(collect-default-args (kw var dflt ...) ...)))
|
||||||
(before '()))
|
(before '()))
|
||||||
(match args
|
(match args
|
||||||
((kw var rest (... ...))
|
((kw var rest (... ...))
|
||||||
|
|
|
@ -123,6 +123,26 @@
|
||||||
(default-keyword-arguments '(#:bar 3) '(#:foo 2))
|
(default-keyword-arguments '(#:bar 3) '(#:foo 2))
|
||||||
(default-keyword-arguments '(#:foo 2 #:bar 3) '(#:bar 6))))
|
(default-keyword-arguments '(#:foo 2 #:bar 3) '(#:bar 6))))
|
||||||
|
|
||||||
|
(test-equal "substitute-keyword-arguments"
|
||||||
|
'((#:foo 3)
|
||||||
|
(#:foo 3)
|
||||||
|
(#:foo 3 #:bar (1 2))
|
||||||
|
(#:bar (1 2) #:foo 3)
|
||||||
|
(#:foo 3))
|
||||||
|
(list (substitute-keyword-arguments '(#:foo 2)
|
||||||
|
((#:foo f) (1+ f)))
|
||||||
|
(substitute-keyword-arguments '()
|
||||||
|
((#:foo f 2) (1+ f)))
|
||||||
|
(substitute-keyword-arguments '(#:foo 2 #:bar (2))
|
||||||
|
((#:foo f) (1+ f))
|
||||||
|
((#:bar b) (cons 1 b)))
|
||||||
|
(substitute-keyword-arguments '(#:foo 2)
|
||||||
|
((#:foo _) 3)
|
||||||
|
((#:bar b '(2)) (cons 1 b)))
|
||||||
|
(substitute-keyword-arguments '(#:foo 2)
|
||||||
|
((#:foo f 1) (1+ f))
|
||||||
|
((#:bar b) (cons 42 b)))))
|
||||||
|
|
||||||
(test-assert "filtered-port, file"
|
(test-assert "filtered-port, file"
|
||||||
(let* ((file (search-path %load-path "guix.scm"))
|
(let* ((file (search-path %load-path "guix.scm"))
|
||||||
(input (open-file file "r0b")))
|
(input (open-file file "r0b")))
|
||||||
|
|
Loading…
Reference in New Issue