]> git.jsancho.org Git - guile-click.git/commitdiff
WIP: Nested commands
authorJavier Sancho <jsf@jsancho.org>
Sun, 17 Oct 2021 18:29:40 +0000 (20:29 +0200)
committerJavier Sancho <jsf@jsancho.org>
Sun, 17 Oct 2021 18:29:40 +0000 (20:29 +0200)
.gitignore
Makefile.am
click.scm
click/args.scm [new file with mode: 0644]
click/value.scm [deleted file]
tests/test-args.scm [new file with mode: 0644]
tests/util.scm [deleted file]

index ac5a5d7b24634a61c13a887798fd6e264fefdb79..d44304a415caf28cdbde41c26fd32cc10425a893 100644 (file)
@@ -1,4 +1,5 @@
 *.go
+*.log
 aclocal.m4
 autom4te.cache/
 build-aux/
index 976d0045e8479e04c0d8029732c82bac0b2a02cf..837f1d3a10f9081e6e2615ceda2fc6747e3f4403 100644 (file)
@@ -40,14 +40,14 @@ godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
 
 SOURCES =                                      \
   click.scm                                     \
+  click/args.scm                                \
   click/command.scm                             \
   click/constant.scm                            \
   click/help.scm                                \
-  click/util.scm                                \
-  click/value.scm
+  click/util.scm
 
 TESTS =                                                \
-  tests/util.scm
+  tests/test-args.scm
 
 TEST_EXTENSIONS = .scm
 SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE)
index e8f8c09833acf6bb8abc67a22beb6d7141bd1731..1f6c69a7c4f50ec63eedff6f3e074c68580b3954 100644 (file)
--- a/click.scm
+++ b/click.scm
 
 
 (define-module (click)
-  #:use-module (ice-9 getopt-long)
-  #:use-module (srfi srfi-9)
-  #:use-module (srfi srfi-9 gnu)
+  #:use-module (srfi srfi-1)
+  #:use-module (click args)
   #:use-module (click command)
   #:use-module (click constant)
   #:use-module (click help)
   #:use-module (click util)
-  #:use-module (click value)
   #:export (command
             group))
 
          (new-command (make-command name click-option-spec help procedure commands)))
     (let ((click-manager
            (lambda (args)
-             (let ((values
-                    (getopt-long args (getopt-long-option-spec click-option-spec))))
-               (if (option-ref values 'help #f)
-                   (let ((program-name (car args)))
-                     (display-help program-name new-command))
-                   (apply procedure (map cdr (get-values option-spec values))))))))
+             (let ((values (parse-args args click-option-spec)))
+               ;; Call current command
+               (cond ((option-ref values 'help #f)
+                      (let ((program-name (car args)))
+                        (display-help program-name new-command)))
+                     (else
+                      (when procedure
+                        (apply procedure (map cdr (get-values option-spec values))))
+                      ;; Call nested command (if exists)
+                      (call-nested-command commands values)))))))
+               
       (set-command-click-manager! new-command click-manager)
       new-command)))
+
+
+(define (call-nested-command commands values)
+  (let ((next-command-args (cdar values)))
+    (when (not (null? next-command-args))
+      (let* ((next-command-name (car next-command-args))
+             (next-command (find (lambda (command) (
+        (display next-command-args)(newline)
+        (display next-command-name) (newline)))))
diff --git a/click/args.scm b/click/args.scm
new file mode 100644 (file)
index 0000000..b59914d
--- /dev/null
@@ -0,0 +1,69 @@
+;;; Click --- Command Line Interface Creation Kit for GNU Guile
+;;; Copyright © 2021 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; This file is part of Click.
+;;;
+;;; Click is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; Click is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with Click.  If not, see <http://www.gnu.org/licenses/>.
+
+
+(define-module (click args)
+  #:use-module (ice-9 getopt-long)
+  #:use-module (ice-9 readline)
+  #:use-module (click util)
+  #:export (get-option-default-value
+            get-values
+            parse-args))
+
+
+(define (parse-args args click-option-spec)
+  "Parse args using an option-spec click formatted"
+  (let ((values (getopt-long args
+                             (getopt-long-option-spec click-option-spec)
+                             #:stop-at-first-non-option #t)))
+    values))
+
+
+(define (get-values option-spec values)
+  "Return an associated list with values for all the options in option-spec"
+  (cond ((null? option-spec)
+         '())
+        (else
+         (let* ((option (car option-spec))
+                (option-name (car option))
+                (value (get-normalized-value values option option-name)))
+           (cons (cons option-name value)
+                 (get-values (cdr option-spec) values))))))
+
+
+(define (get-normalized-value values option option-name)
+  "Get value for option, converting from string to the appropriate value"
+  (let ((convert-proc (assoc-ref (option-type option) 'convert))
+        (value (option-ref values option-name #f)))
+    (cond ((and value (not (option-property option 'flag)))
+           (convert-proc value))
+          (value
+           value)
+          (else
+           (get-option-default-value option)))))
+
+
+(define* (get-option-default-value option #:optional (no-prompt #f))
+  "Get default value for option, asking user if prompt property is set"
+  (let ((default (option-property option 'default)))
+    (if (not default)
+        (let ((prompt (option-property option 'prompt)))
+          (if prompt
+              (readline (format #f "~a: " prompt))
+              default))
+        default)))
diff --git a/click/value.scm b/click/value.scm
deleted file mode 100644 (file)
index f42eb2f..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-;;; Click --- Command Line Interface Creation Kit for GNU Guile
-;;; Copyright © 2021 Javier Sancho <jsf@jsancho.org>
-;;;
-;;; This file is part of Click.
-;;;
-;;; Click is free software; you can redistribute it and/or modify it
-;;; under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 3 of the License, or
-;;; (at your option) any later version.
-;;;
-;;; Click is distributed in the hope that it will be useful, but
-;;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;;; General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU General Public License
-;;; along with Click.  If not, see <http://www.gnu.org/licenses/>.
-
-
-(define-module (click value)
-  #:use-module (ice-9 getopt-long)
-  #:use-module (ice-9 readline)
-  #:use-module (click util)
-  #:export (get-option-default-value
-            get-values))
-
-
-(define (get-values option-spec values)
-  "Return an associated list with values for all the options in option-spec"
-  (cond ((null? option-spec)
-         '())
-        (else
-         (let* ((option (car option-spec))
-                (option-name (car option))
-                (value (get-normalized-value values option option-name)))
-           (cons (cons option-name value)
-                 (get-values (cdr option-spec) values))))))
-
-
-(define (get-normalized-value values option option-name)
-  "Get value for option, converting from string to the appropriate value"
-  (let ((convert-proc (assoc-ref (option-type option) 'convert))
-        (value (option-ref values option-name #f)))
-    (cond ((and value (not (option-property option 'flag)))
-           (convert-proc value))
-          (value
-           value)
-          (else
-           (get-option-default-value option)))))
-
-
-(define* (get-option-default-value option #:optional (no-prompt #f))
-  "Get default value for option, asking user if prompt property is set"
-  (let ((default (option-property option 'default)))
-    (if (not default)
-        (let ((prompt (option-property option 'prompt)))
-          (if prompt
-              (readline (format #f "~a: " prompt))
-              default))
-        default)))
diff --git a/tests/test-args.scm b/tests/test-args.scm
new file mode 100644 (file)
index 0000000..d41abe2
--- /dev/null
@@ -0,0 +1,45 @@
+;;; Click --- Command Line Interface Creation Kit for GNU Guile
+;;; Copyright © 2021 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; This file is part of Click.
+;;;
+;;; Click is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; Click is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with Click.  If not, see <http://www.gnu.org/licenses/>.
+
+
+(define-module (tests test-args)
+  #:use-module (srfi srfi-64)
+  #:use-module (click args))
+
+
+(test-begin "test-args")
+
+(define option-spec
+  '((count (single-char #\c) (default 1))
+    (name  (prompt "Your name"))
+    (help  (flag #t))))
+
+(test-error #t (parse-args '("program" "--count") option-spec))
+
+(test-error #t (parse-args '("program" "-x") option-spec))
+
+(test-equal (parse-args '("program" "-c" "2" "--name" "joe") option-spec)
+            '((()) (name . "joe") (count . "2")))
+
+(test-equal (parse-args '("program" "-c" "2" "command" "-x") option-spec)
+            '((() "command" "-x") (count . "2")))
+
+(test-equal (get-values option-spec '((()) (name . "joe") (count . "2")))
+            '((count . 2) (name . "joe") (help . #f)))
+              
+(test-end "test-args")
diff --git a/tests/util.scm b/tests/util.scm
deleted file mode 100644 (file)
index 9a7574d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-;;; Click --- Command Line Interface Creation Kit for GNU Guile
-;;; Copyright © 2021 Javier Sancho <jsf@jsancho.org>
-;;;
-;;; This file is part of Click.
-;;;
-;;; Click is free software; you can redistribute it and/or modify it
-;;; under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 3 of the License, or
-;;; (at your option) any later version.
-;;;
-;;; Click is distributed in the hope that it will be useful, but
-;;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;;; General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU General Public License
-;;; along with Click.  If not, see <http://www.gnu.org/licenses/>.