]> git.jsancho.org Git - guile-click.git/blob - click/value.scm
ec00445a0ec7ac104907f35a06c18795fd1a8a21
[guile-click.git] / click / value.scm
1 ;;; Click --- Command Line Interface Creation Kit for GNU Guile
2 ;;; Copyright © 2021 Javier Sancho <jsf@jsancho.org>
3 ;;;
4 ;;; This file is part of Click.
5 ;;;
6 ;;; Click is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or
9 ;;; (at your option) any later version.
10 ;;;
11 ;;; Click is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;;; General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with Click.  If not, see <http://www.gnu.org/licenses/>.
18
19
20 (define-module (click value)
21   #:use-module (ice-9 getopt-long)
22   #:use-module (ice-9 readline)
23   #:use-module (click util)
24   #:export (get-option-default-value
25             get-values))
26
27
28 (define (get-values option-spec values)
29   "Return an associated list with values for all the options in option-spec"
30   (cond ((null? option-spec)
31          '())
32         (else
33          (let* ((option (car option-spec))
34                 (option-name (car option))
35                 (value (or (option-ref values option-name #f)
36                            (get-option-default-value option))))
37            (cons (cons option-name value)
38                  (get-values (cdr option-spec) values))))))
39
40
41 (define* (get-option-default-value option #:optional (no-prompt #f))
42   "Get value for option, asking user if prompt property is set"
43   (let ((default (option-property option 'default)))
44     (if (not default)
45         (let ((prompt (option-property option 'prompt)))
46           (if prompt
47               (readline (format #f "~a: " prompt))
48               default))
49         default)))