]> code.delx.au - gnu-emacs/blob - lisp/eshell/esh-opt.el
Cleanup Eshell to rely less on dynamic scoping.
[gnu-emacs] / lisp / eshell / esh-opt.el
1 ;;; esh-opt.el --- command options processing
2
3 ;; Copyright (C) 1999-2013 Free Software Foundation, Inc.
4
5 ;; Author: John Wiegley <johnw@gnu.org>
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22 ;;; Commentary:
23
24 ;;; Code:
25
26 (provide 'esh-opt)
27
28 (require 'esh-ext)
29
30 ;; Unused.
31 ;; (defgroup eshell-opt nil
32 ;; "The options processing code handles command argument parsing for
33 ;; Eshell commands implemented in Lisp."
34 ;; :tag "Command options processing"
35 ;; :group 'eshell)
36
37 ;;; User Functions:
38
39 (defmacro eshell-eval-using-options (name macro-args options &rest body-forms)
40 "Process NAME's MACRO-ARGS using a set of command line OPTIONS.
41 After doing so, stores settings in local symbols as declared by OPTIONS;
42 then evaluates BODY-FORMS -- assuming all was OK.
43
44 OPTIONS is a list, beginning with one or more elements of the form:
45 \(SHORT LONG VALUE SYMBOL HELP-STRING)
46 Each of these elements represents a particular command-line switch.
47
48 SHORT is either nil, or a character that can be used as a switch -SHORT.
49 LONG is either nil, or a string that can be used as a switch --LONG.
50 At least one of SHORT and LONG must be non-nil.
51 VALUE is the value associated with the option. It can be either:
52 t - the option needs a value to be specified after the switch;
53 nil - the option is given the value t;
54 anything else - specifies the actual value for the option.
55 SYMBOL is either nil, or the name of the Lisp symbol that will be bound
56 to VALUE. A nil SYMBOL calls `eshell-show-usage', and so is appropriate
57 for a \"--help\" type option.
58 HELP-STRING is a documentation string for the option.
59
60 Any remaining elements of OPTIONS are :KEYWORD arguments. Some take
61 arguments, some do not. The recognized :KEYWORDS are:
62
63 :external STRING
64 STRING is an external command to run if there are unknown switches.
65
66 :usage STRING
67 STRING is the initial part of the command's documentation string.
68 It appears before the options are listed.
69
70 :post-usage STRING
71 STRING is an optional trailing part of the command's documentation string.
72 It appears after the options, but before the final part of the
73 documentation about the associated external command (if there is one).
74
75 :show-usage
76 If present, then show the usage message if the command is called with no
77 arguments.
78
79 :preserve-args
80 If present, do not pass MACRO-ARGS through `eshell-flatten-list'
81 and `eshell-stringify-list'.
82
83 For example, OPTIONS might look like:
84
85 '((?C nil nil multi-column \"multi-column display\")
86 (nil \"help\" nil nil \"show this usage display\")
87 (?r \"reverse\" nil reverse-list \"reverse order while sorting\")
88 :external \"ls\"
89 :usage \"[OPTION]... [FILE]...
90 List information about the FILEs (the current directory by default).
91 Sort entries alphabetically across.\")
92
93 `eshell-eval-using-options' returns the value of the last form in
94 BODY-FORMS. If instead an external command is run (because of
95 an unknown option), the tag `eshell-external' will be thrown with
96 the new process for its value.
97
98 Lastly, any remaining arguments will be available in a locally
99 interned variable `args' (created using a `let' form)."
100 (declare (debug (form form sexp body)))
101 `(let ((temp-args
102 ,(if (memq ':preserve-args (cadr options))
103 macro-args
104 (list 'eshell-stringify-list
105 (list 'eshell-flatten-list macro-args)))))
106 (let ,(delq nil (mapcar (lambda (opt)
107 (and (listp opt) (nth 3 opt)))
108 (cadr options)))
109 ;; FIXME: `options' ends up hiding some variable names under `quote',
110 ;; which is incompatible with lexical scoping!!
111 (eshell-do-opt ,name ,options (lambda (args) ,@body-forms) temp-args))))
112
113 ;;; Internal Functions:
114
115 ;; Documented part of the interface; see eshell-eval-using-options.
116 (defvar eshell--args)
117
118 (defun eshell-do-opt (name options body-fun args)
119 "Helper function for `eshell-eval-using-options'.
120 This code doesn't really need to be macro expanded everywhere."
121 (let* (last-value
122 (ext-command
123 (catch 'eshell-ext-command
124 (let ((usage-msg
125 (catch 'eshell-usage
126 (setq last-value nil)
127 (if (and (= (length args) 0)
128 (memq ':show-usage options))
129 (throw 'eshell-usage
130 (eshell-show-usage name options)))
131 (setq args (eshell-process-args name args options)
132 last-value (funcall body-fun args))
133 nil)))
134 (when usage-msg
135 (error "%s" usage-msg))))))
136 (if ext-command
137 (throw 'eshell-external
138 (eshell-external-command ext-command args))
139 last-value)))
140
141 (defun eshell-show-usage (name options)
142 "Display the usage message for NAME, using OPTIONS."
143 (let ((usage (format "usage: %s %s\n\n" name
144 (cadr (memq ':usage options))))
145 (extcmd (memq ':external options))
146 (post-usage (memq ':post-usage options))
147 had-option)
148 (while options
149 (when (listp (car options))
150 (let ((opt (car options)))
151 (setq had-option t)
152 (cond ((and (nth 0 opt)
153 (nth 1 opt))
154 (setq usage
155 (concat usage
156 (format " %-20s %s\n"
157 (format "-%c, --%s" (nth 0 opt)
158 (nth 1 opt))
159 (nth 4 opt)))))
160 ((nth 0 opt)
161 (setq usage
162 (concat usage
163 (format " %-20s %s\n"
164 (format "-%c" (nth 0 opt))
165 (nth 4 opt)))))
166 ((nth 1 opt)
167 (setq usage
168 (concat usage
169 (format " %-20s %s\n"
170 (format " --%s" (nth 1 opt))
171 (nth 4 opt)))))
172 (t (setq had-option nil)))))
173 (setq options (cdr options)))
174 (if post-usage
175 (setq usage (concat usage (and had-option "\n")
176 (cadr post-usage))))
177 (when extcmd
178 (setq extcmd (eshell-search-path (cadr extcmd)))
179 (if extcmd
180 (setq usage
181 (concat usage
182 (format "
183 This command is implemented in Lisp. If an unrecognized option is
184 passed to this command, the external version '%s'
185 will be called instead." extcmd)))))
186 (throw 'eshell-usage usage)))
187
188 (defun eshell-set-option (name ai opt options)
189 "Using NAME's remaining args (index AI), set the OPT within OPTIONS.
190 If the option consumes an argument for its value, the argument list
191 will be modified."
192 (if (not (nth 3 opt))
193 (eshell-show-usage name options)
194 (if (eq (nth 2 opt) t)
195 (if (> ai (length eshell--args))
196 (error "%s: missing option argument" name)
197 (set (nth 3 opt) (nth ai eshell--args))
198 (if (> ai 0)
199 (setcdr (nthcdr (1- ai) eshell--args)
200 (nthcdr (1+ ai) eshell--args))
201 (setq eshell--args (cdr eshell--args))))
202 (set (nth 3 opt) (or (nth 2 opt) t)))))
203
204 (defun eshell-process-option (name switch kind ai options)
205 "For NAME, process SWITCH (of type KIND), from args at index AI.
206 The SWITCH will be looked up in the set of OPTIONS.
207
208 SWITCH should be either a string or character. KIND should be the
209 integer 0 if it's a character, or 1 if it's a string.
210
211 The SWITCH is then be matched against OPTIONS. If no matching handler
212 is found, and an :external command is defined (and available), it will
213 be called; otherwise, an error will be triggered to say that the
214 switch is unrecognized."
215 (let* ((opts options)
216 found)
217 (while opts
218 (if (and (listp (car opts))
219 (nth kind (car opts))
220 (equal switch (nth kind (car opts))))
221 (progn
222 (eshell-set-option name ai (car opts) options)
223 (setq found t opts nil))
224 (setq opts (cdr opts))))
225 (unless found
226 (let ((extcmd (memq ':external options)))
227 (when extcmd
228 (setq extcmd (eshell-search-path (cadr extcmd)))
229 (if extcmd
230 (throw 'eshell-ext-command extcmd)
231 (error (if (characterp switch) "%s: unrecognized option -%c"
232 "%s: unrecognized option --%s")
233 name switch)))))))
234
235 (defun eshell-process-args (name args options)
236 "Process the given ARGS using OPTIONS.
237 This assumes that symbols have been intern'd by `eshell-eval-using-options'."
238 (let ((ai 0) arg
239 (eshell--args args))
240 (while (< ai (length args))
241 (setq arg (nth ai args))
242 (if (not (and (stringp arg)
243 (string-match "^-\\(-\\)?\\(.*\\)" arg)))
244 (setq ai (1+ ai))
245 (let* ((dash (match-string 1 arg))
246 (switch (match-string 2 arg)))
247 (if (= ai 0)
248 (setq args (cdr args))
249 (setcdr (nthcdr (1- ai) args) (nthcdr (1+ ai) args)))
250 (if dash
251 (if (> (length switch) 0)
252 (eshell-process-option name switch 1 ai options)
253 (setq ai (length args)))
254 (let ((len (length switch))
255 (index 0))
256 (while (< index len)
257 (eshell-process-option name (aref switch index) 0 ai options)
258 (setq index (1+ index)))))))))
259 args)
260
261 ;;; esh-opt.el ends here