]> git.jsancho.org Git - guile-click.git/blob - click/util.scm
Move value functions to a separated file
[guile-click.git] / click / util.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 util)
21   #:use-module (ice-9 getopt-long)
22   #:use-module (ice-9 readline)
23   #:use-module (click constant)
24   #:export (getopt-long-option-spec
25             option-property
26             program-name
27             %program-name))
28
29
30 (define %program-name (make-fluid "guile"))
31 (define (program-name)
32   (fluid-ref %program-name))
33
34 (define (getopt-long-option-spec option-spec)
35   (map (lambda (option)
36          (cons (car option)
37                (cons (list 'value (not (option-property option 'flag)))
38                      (filter (lambda (property)
39                                (not (memq (car property) CLICK_PROPERTIES)))
40                              (cdr option)))))
41        option-spec))
42
43 (define* (option-property option property-name #:optional (default #f))
44   (let ((property (assq property-name (cdr option))))
45     (if property
46         (cadr property)
47         default)))