changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/cli/clap/cli.lisp

changeset 625: e49442cd6010
parent: a304c9713a51
child: cc13027df6fa
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 25 Aug 2024 21:38:07 -0400
permissions: -rw-r--r--
description: cli tweaks
1 ;;; cli/clap/cli.lisp --- Clap CLI Class
2 
3 ;; Top-level command object of a CLI App
4 
5 ;;; Code:
6 (in-package :cli/clap/obj)
7 
8 (defun make-cli (kind &rest slots)
9  "Creates a new CLI object of the given kind."
10  (declare (type (member :opt :cmd :cli t) kind))
11  (cond
12  ((eql kind :cli) (apply #'make-instance 'cli slots))
13  ((eql kind :opt) (apply #'make-cli-opt slots))
14  ((eql kind :cmd) (apply #'make-instance 'cli-cmd slots))
15  (t (apply #'make-instance kind slots))))
16 
17 (defmacro define-cli (sym &key name version description thunk opts cmds)
18  "Define a symbol NAME bound to a top-level CLI object."
19  (with-gensyms (%name %class)
20  (if (atom sym)
21  (setq %name sym
22  %class :cli)
23  (setq %name (car sym)
24  %class (cdr sym)))
25  `(,*default-cli-def* ,%name (make-cli ,%class :name ,name
26  :version ,version
27  :description ,description
28  :thunk ,thunk
29  :opts (make-opts ',opts)
30  :cmds (make-cmds ',cmds)))))
31 
32 (defmacro defmain ((&key (exit t) (export t)) &body body)
33  "Define a CLI main function in the current package."
34  (let ((main (symbolicate "MAIN")))
35  `(let ((*no-exit* ,(not exit)))
36  (defun ,main ()
37  "Run the top-level function and print to *STDOUT*."
38  (with-cli-handlers
39  (progn
40  ,@body (terpri))))
41  ,@(when export `((export ',main))))))
42 
43 ;; RESEARCH 2023-09-12: closed over hash-table with short/long flags
44 ;; to avoid conflicts. if not, need something like a flag-function
45 ;; slot at class allocation.
46 (defun make-opts (opts)
47  "Make a vector of CLI-OPTs based on OPTS."
48  (map 'vector
49  (lambda (x)
50  (etypecase x
51  (string (make-cli-opt :name x))
52  (list (apply #'make-cli :opt x))
53  (t (make-cli :opt :name (format nil "~(~A~)" x) :global t))))
54  opts))
55 
56 (defun make-cmds (cmds)
57  "Make a vector of CLI-CMDs based on CMDS."
58  (map 'vector
59  (lambda (x)
60  (etypecase x
61  (string (make-cli :cmd :name x))
62  (list (apply #'make-cli :cmd x))
63  (t (make-cli :cmd :name (format nil "~(~A~)" x)))))
64  cmds))
65 
66 (defclass cli (cli-cmd)
67  ;; name slot defaults to *package*, must be string
68  ((name :initarg :name :initform (string-downcase (package-name *package*)) :accessor cli-name :type string)
69  (version :initarg :version :initform "0.1.0" :accessor cli-version :type string)
70  ;; TODO 2023-10-11: look into pushd popd - cd-stack?
71  (cd :initarg :cd :initform (sb-posix:getcwd) :type string :accessor cli-cd
72  :documentation "working directory of the top-level CLI."))
73  (:documentation "CLI"))
74 
75 (defmethod print-usage ((self cli) &optional stream)
76  (iprintln (format nil "usage: ~A [global] <command> [<arg>]~%" (cli-name self)) 2 stream))
77 
78 (defmethod print-version ((self cli) &optional stream)
79  (println (cli-version self) stream))
80 
81 (defmethod print-help ((self cli) &optional stream)
82  (println (format nil "~A v~A --- ~A~%" (cli-name self) (cli-version self) (cli-description self)) stream)
83  (print-usage self stream)
84  ;; (terpri stream)
85  (println "options:" stream)
86  (with-slots (opts cmds) self
87  (unless (null opts)
88  (loop for o across opts
89  do (iprintln (print-usage o) 2 stream)))
90  (terpri stream)
91  (println "commands:" stream)
92  (unless (null cmds)
93  (loop for c across cmds
94  do (iprintln (print-usage c) 2 stream)))))
95 
96 (defmethod cli-equal :before ((a cli) (b cli))
97  "Return T if A is the same cli object as B.
98 
99 Currently this function is intended only for instances of the CLI
100 class and is used as a specialized EQL for DEFINE-CONSTANT."
101  (with-slots (version) a
102  (with-slots ((bv version)) b
103  (string= version bv))))
104 
105 (declaim (inline debug-opts))
106 (defun debug-opts (cli)
107  (let ((o (active-opts cli))
108  (a (cli-cmd-args cli))
109  (c (active-cmds cli)))
110  (log:debug! :pwd (cli-cd cli) :active-opts o :cmd-args a :active-cmds c)))
111 
112 (defmethod do-opts ((self cli) &optional global)
113  (loop for opt across (active-opts self global)
114  do (do-opt opt)))
115 
116 (defmacro with-cli (slots cli &body body)
117  "Like with-slots with some extra bindings.
118 
119 SLOTS is a list passed to WITH-SLOTS.
120 
121 CLI is updated based on the current environment and dynamically bound to
122 *CLI*."
123  `(progn
124  (setq *cli* ,cli)
125  (setf (cli-cd ,cli) (sb-posix:getcwd))
126  (with-slots ,slots (parse-args ,cli (args) :compile t)
127  ,@body)))