1 ;;; esh-var.el --- handling of variables
3 ;; Copyright (C) 1999, 2000, 2005 Free Software Foundation
5 ;; Author: John Wiegley <johnw@gnu.org>
7 ;; This file is part of GNU Emacs.
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 2, or (at your option)
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.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
26 (eval-when-compile (require 'esh-maint
))
28 (defgroup eshell-var nil
29 "Variable interpolation is introduced whenever the '$' character
30 appears unquoted in any argument (except when that argument is
31 surrounded by single quotes) . It may be used to interpolate a
32 variable value, a subcommand, or even the result of a Lisp form."
33 :tag
"Variable handling"
38 ;; These are the possible variable interpolation syntaxes. Also keep
39 ;; in mind that if an argument looks like a number, it will be
40 ;; converted to a number. This is not significant when invoking
41 ;; external commands, but it's important when calling Lisp functions.
45 ;; Interval the value of an environment variable, or a Lisp variable
49 ;; "-" is a legal part of a variable name.
53 ;; Only "MYVAR" is part of the variable name in this case.
57 ;; Returns the length of the value of VARIABLE. This could also be
58 ;; done using the `length' Lisp function.
62 ;; Returns result of lisp evaluation. Note: Used alone like this, it
63 ;; is identical to just saying (lisp); but with the variable expansion
64 ;; form, the result may be interpolated a larger string, such as
69 ;; Returns the value of an eshell subcommand. See the note above
70 ;; regarding Lisp evaluations.
74 ;; Return the 10th element of ANYVAR. If ANYVAR's value is a string,
75 ;; it will be split in order to make it a list. The splitting will
76 ;; occur at whitespace.
80 ;; As above, except that splitting occurs at the colon now.
84 ;; As above, but instead of returning just a string, it now returns a
85 ;; list of two strings. If the result is being interpolated into a
86 ;; larger string, this list will be flattened into one big string,
87 ;; with each element separated by a space.
91 ;; Separate on backslash characters. Actually, the first argument --
92 ;; if it doesn't have the form of a number, or a plain variable name
93 ;; -- can be any regular expression. So to split on numbers, use
94 ;; '$ANYVAR["[0-9]+" 10 20]'.
98 ;; Calls `assoc' on ANYVAR with 'hello', expecting it to be an alist.
102 ;; Returns the length of the cdr of the element of ANYVAR who car is
105 ;; There are also a few special variables defined by Eshell. '$$' is
106 ;; the value of the last command (t or nil, in the case of an external
107 ;; command). This makes it possible to chain results:
109 ;; /tmp $ echo /var/spool/mail/johnw
110 ;; /var/spool/mail/johnw
116 ;; '$_' refers to the last argument of the last command. And $?
117 ;; contains the exit code of the last command (0 or 1 for Lisp
118 ;; functions, based on successful completion).
125 (defcustom eshell-var-load-hook
'(eshell-var-initialize)
126 "*A list of functions to call when loading `eshell-var'."
130 (defcustom eshell-prefer-lisp-variables nil
131 "*If non-nil, prefer Lisp variables to environment variables."
135 (defcustom eshell-complete-export-definition t
136 "*If non-nil, completing names for `export' shows current definition."
140 (defcustom eshell-modify-global-environment nil
141 "*If non-nil, using `export' changes Emacs's global environment."
145 (defcustom eshell-variable-name-regexp
"[A-Za-z0-9_-]+"
146 "*A regexp identifying what constitutes a variable name reference.
147 Note that this only applies for '$NAME'. If the syntax '$<NAME>' is
148 used, then NAME can contain any character, including angle brackets,
149 if they are quoted with a backslash."
153 (defcustom eshell-variable-aliases-list
155 ("COLUMNS" (lambda (indices) (window-width)) t
)
156 ("LINES" (lambda (indices) (window-height)) t
)
159 ("_" (lambda (indices)
161 (car (last eshell-last-arguments
))
162 (eshell-apply-indices eshell-last-arguments
164 ("?" eshell-last-command-status
)
165 ("$" eshell-last-command-result
)
166 ("0" eshell-command-name
)
167 ("1" (lambda (indices) (nth 0 eshell-command-arguments
)))
168 ("2" (lambda (indices) (nth 1 eshell-command-arguments
)))
169 ("3" (lambda (indices) (nth 2 eshell-command-arguments
)))
170 ("4" (lambda (indices) (nth 3 eshell-command-arguments
)))
171 ("5" (lambda (indices) (nth 4 eshell-command-arguments
)))
172 ("6" (lambda (indices) (nth 5 eshell-command-arguments
)))
173 ("7" (lambda (indices) (nth 6 eshell-command-arguments
)))
174 ("8" (lambda (indices) (nth 7 eshell-command-arguments
)))
175 ("9" (lambda (indices) (nth 8 eshell-command-arguments
)))
176 ("*" (lambda (indices)
178 eshell-command-arguments
179 (eshell-apply-indices eshell-command-arguments
181 "*This list provides aliasing for variable references.
182 It is very similar in concept to what `eshell-user-aliases-list' does
183 for commands. Each member of this defines defines the name of a
184 command, and the Lisp value to return for that variable if it is
185 accessed via the syntax '$NAME'.
187 If the value is a function, that function will be called with two
188 arguments: the list of the indices that was used in the reference, and
189 whether the user is requesting the length of the ultimate element.
190 For example, a reference of '$NAME[10][20]' would result in the
191 function for alias `NAME' being called (assuming it were aliased to a
192 function), and the arguments passed to this function would be the list
194 :type
'(repeat (list string sexp
195 (choice (const :tag
"Copy to environment" t
)
196 (const :tag
"Use only in Eshell" nil
))))
199 (put 'eshell-variable-aliases-list
'risky-local-variable t
)
203 (defun eshell-var-initialize ()
204 "Initialize the variable handle code."
205 ;; Break the association with our parent's environment. Otherwise,
206 ;; changing a variable will affect all of Emacs.
207 (unless eshell-modify-global-environment
208 (set (make-local-variable 'process-environment
)
209 (eshell-copy-environment)))
211 (define-key eshell-command-map
[(meta ?v
)] 'eshell-insert-envvar
)
213 (set (make-local-variable 'eshell-special-chars-inside-quoting
)
214 (append eshell-special-chars-inside-quoting
'(?$
)))
215 (set (make-local-variable 'eshell-special-chars-outside-quoting
)
216 (append eshell-special-chars-outside-quoting
'(?$
)))
218 (add-hook 'eshell-parse-argument-hook
'eshell-interpolate-variable t t
)
220 (add-hook 'eshell-prepare-command-hook
221 'eshell-handle-local-variables nil t
)
223 (when (eshell-using-module 'eshell-cmpl
)
224 (add-hook 'pcomplete-try-first-hook
225 'eshell-complete-variable-reference nil t
)
226 (add-hook 'pcomplete-try-first-hook
227 'eshell-complete-variable-assignment nil t
)))
229 (defun eshell-handle-local-variables ()
230 "Allow for the syntax 'VAR=val <command> <args>'."
231 ;; strip off any null commands, which can only happen if a variable
232 ;; evaluates to nil, such as "$var x", where `var' is nil. The
233 ;; command name in that case becomes `x', for compatibility with
234 ;; most regular shells (the difference is that they do an
235 ;; interpolation pass before the argument parsing pass, but Eshell
236 ;; does both at the same time).
237 (while (and (not eshell-last-command-name
)
238 eshell-last-arguments
)
239 (setq eshell-last-command-name
(car eshell-last-arguments
)
240 eshell-last-arguments
(cdr eshell-last-arguments
)))
241 (let ((setvar "\\`\\([A-Za-z_][A-Za-z0-9_]*\\)=\\(.*\\)\\'")
242 (command (eshell-stringify eshell-last-command-name
))
243 (args eshell-last-arguments
))
244 ;; local variable settings (such as 'CFLAGS=-O2 make') are handled
245 ;; by making the whole command into a subcommand, and calling
246 ;; setenv immediately before the command is invoked. This means
247 ;; that 'BLAH=x cd blah' won't work exactly as expected, but that
248 ;; is by no means a typical use of local environment variables.
249 (if (and command
(string-match setvar command
))
251 'eshell-replace-command
253 'eshell-as-subcommand
257 (while (string-match setvar command
)
260 (list 'setenv
(match-string 1 command
)
261 (match-string 2 command
)
262 (= (length (match-string 2 command
)) 0))))
263 (setq command
(eshell-stringify (car args
))
266 (list (list 'eshell-named-command
267 command
(list 'quote args
)))))))))
269 (defun eshell-interpolate-variable ()
270 "Parse a variable interpolation.
271 This function is explicit for adding to `eshell-parse-argument-hook'."
272 (when (and (eq (char-after) ?$
)
273 (/= (1+ (point)) (point-max)))
275 (list 'eshell-escape-arg
276 (eshell-parse-variable))))
278 (defun eshell/define
(var-alias definition
)
279 "Define a VAR-ALIAS using DEFINITION."
281 (setq eshell-variable-aliases-list
282 (delq (assoc var-alias eshell-variable-aliases-list
)
283 eshell-variable-aliases-list
))
284 (let ((def (assoc var-alias eshell-variable-aliases-list
))
287 (list 'quote
(if (= (length definition
) 1)
291 (setq eshell-variable-aliases-list
292 (delq (assoc var-alias eshell-variable-aliases-list
)
293 eshell-variable-aliases-list
)))
294 (setq eshell-variable-aliases-list
296 eshell-variable-aliases-list
))))
299 (defun eshell/export
(&rest sets
)
300 "This alias allows the 'export' command to act as bash users expect."
302 (if (and (stringp (car sets
))
303 (string-match "^\\([^=]+\\)=\\(.*\\)" (car sets
)))
304 (setenv (match-string 1 (car sets
))
305 (match-string 2 (car sets
))))
306 (setq sets
(cdr sets
))))
308 (defun pcomplete/eshell-mode
/export
()
309 "Completion function for Eshell's `export'."
310 (while (pcomplete-here
311 (if eshell-complete-export-definition
313 (eshell-envvar-names)))))
315 (defun eshell/unset
(&rest args
)
316 "Unset an environment variable."
318 (if (stringp (car args
))
319 (setenv (car args
) nil t
))
320 (setq args
(cdr args
))))
322 (defun pcomplete/eshell-mode
/unset
()
323 "Completion function for Eshell's `unset'."
324 (while (pcomplete-here (eshell-envvar-names))))
326 (defun eshell/setq
(&rest args
)
327 "Allow command-ish use of `setq'."
330 (let ((sym (intern (car args
)))
332 (setq last-value
(set sym val
)
336 (defun pcomplete/eshell-mode
/setq
()
337 "Completion function for Eshell's `setq'."
338 (while (and (pcomplete-here (all-completions pcomplete-stub
342 (defun eshell/env
(&rest args
)
343 "Implemention of `env' in Lisp."
344 (eshell-init-print-buffer)
345 (eshell-eval-using-options
347 '((?h
"help" nil nil
"show this usage screen")
349 :usage
"<no arguments>")
350 (eshell-for setting
(sort (eshell-environment-variables)
352 (eshell-buffered-print setting
"\n"))
355 (defun eshell-insert-envvar (envvar-name)
356 "Insert ENVVAR-NAME into the current buffer at point."
358 (list (read-envvar-name "Name of environment variable: " t
)))
359 (insert-and-inherit "$" envvar-name
))
361 (defun eshell-envvar-names (&optional environment
)
362 "Return a list of currently visible environment variable names."
365 (substring x
0 (string-match "=" x
))))
366 (or environment process-environment
)))
368 (defun eshell-environment-variables ()
369 "Return a `process-environment', fully updated.
370 This involves setting any variable aliases which affect the
371 environment, as specified in `eshell-variable-aliases-list'."
372 (let ((process-environment (eshell-copy-environment)))
373 (eshell-for var-alias eshell-variable-aliases-list
374 (if (nth 2 var-alias
)
375 (setenv (car var-alias
)
377 (or (eshell-get-variable (car var-alias
)) "")))))
378 process-environment
))
380 (defun eshell-parse-variable ()
381 "Parse the next variable reference at point.
382 The variable name could refer to either an environment variable, or a
383 Lisp variable. The priority order depends on the setting of
384 `eshell-prefer-lisp-variables'.
386 Its purpose is to call `eshell-parse-variable-ref', and then to
387 process any indices that come after the variable reference."
388 (let* ((get-len (when (eq (char-after) ?
#)
391 (setq value
(eshell-parse-variable-ref)
392 indices
(and (not (eobp))
393 (eq (char-after) ?\
[)
394 (eshell-parse-indices))
397 (list 'quote indices
)))
403 (defun eshell-parse-variable-ref ()
404 "Eval a variable reference.
405 Returns a Lisp form which, if evaluated, will return the value of the
408 Possible options are:
410 NAME an environment or Lisp variable value
411 <LONG-NAME> disambiguates the length of the name
412 {COMMAND} result of command is variable's value
413 (LISP-FORM) result of Lisp form is variable's value"
416 ((eq (char-after) ?
{)
417 (let ((end (eshell-find-delimiter ?\
{ ?\
})))
419 (throw 'eshell-incomplete ?\
{)
421 (list 'eshell-convert
422 (list 'eshell-command-to-value
423 (list 'eshell-as-subcommand
424 (eshell-parse-command
425 (cons (1+ (point)) end
)))))
426 (goto-char (1+ end
))))))
427 ((memq (char-after) '(?
\' ?
\"))
428 (let ((name (if (eq (char-after) ?
\')
429 (eshell-parse-literal-quote)
430 (eshell-parse-double-quote))))
432 (list 'eshell-get-variable
(eval name
) 'indices
))))
433 ((eq (char-after) ?\
<)
434 (let ((end (eshell-find-delimiter ?\
< ?\
>)))
436 (throw 'eshell-incomplete ?\
<)
437 (let* ((temp (make-temp-file temporary-file-directory
))
438 (cmd (concat (buffer-substring (1+ (point)) end
)
442 'let
(list (list 'eshell-current-handles
443 (list 'eshell-create-handles temp
444 (list 'quote
'overwrite
))))
447 (list 'eshell-as-subcommand
448 (eshell-parse-command cmd
))
450 (list 'nconc
'eshell-this-command-hook
454 (list 'delete-file temp
))))))
456 (goto-char (1+ end
)))))))
457 ((eq (char-after) ?\
()
459 (list 'eshell-command-to-value
460 (list 'eshell-lisp-command
461 (list 'quote
(read (current-buffer)))))
463 (throw 'eshell-incomplete ?\
())))
464 ((assoc (char-to-string (char-after))
465 eshell-variable-aliases-list
)
467 (list 'eshell-get-variable
468 (char-to-string (char-before)) 'indices
))
469 ((looking-at eshell-variable-name-regexp
)
471 (list 'eshell-get-variable
(match-string 0) 'indices
)
472 (goto-char (match-end 0))))
474 (error "Invalid variable reference")))))
476 (eshell-deftest var interp-cmd
477 "Interpolate command result"
478 (eshell-command-result-p "+ ${+ 1 2} 3" "6\n"))
480 (eshell-deftest var interp-lisp
481 "Interpolate Lisp form evalution"
482 (eshell-command-result-p "+ $(+ 1 2) 3" "6\n"))
484 (eshell-deftest var interp-concat
485 "Interpolate and concat command"
486 (eshell-command-result-p "+ ${+ 1 2}3 3" "36\n"))
488 (eshell-deftest var interp-concat-lisp
489 "Interpolate and concat Lisp form"
490 (eshell-command-result-p "+ $(+ 1 2)3 3" "36\n"))
492 (eshell-deftest var interp-concat2
493 "Interpolate and concat two commands"
494 (eshell-command-result-p "+ ${+ 1 2}${+ 1 2} 3" "36\n"))
496 (eshell-deftest var interp-concat-lisp2
497 "Interpolate and concat two Lisp forms"
498 (eshell-command-result-p "+ $(+ 1 2)$(+ 1 2) 3" "36\n"))
500 (defun eshell-parse-indices ()
501 "Parse and return a list of list of indices."
503 (while (eq (char-after) ?\
[)
504 (let ((end (eshell-find-delimiter ?\
[ ?\
])))
506 (throw 'eshell-incomplete ?\
[)
508 (let (eshell-glob-function)
509 (setq indices
(cons (eshell-parse-arguments (point) end
)
511 (goto-char (1+ end
)))))
514 (defun eshell-get-variable (name &optional indices
)
515 "Get the value for the variable NAME."
516 (let* ((alias (assoc name eshell-variable-aliases-list
))
520 (if (and alias
(functionp var
))
521 (funcall var indices
)
522 (eshell-apply-indices
525 (let ((sym (intern-soft var
)))
526 (if (and sym
(boundp sym
)
527 (or eshell-prefer-lisp-variables
534 (error "Unknown variable `%s'" (eshell-stringify var
))))
537 (defun eshell-apply-indices (value indices
)
538 "Apply to VALUE all of the given INDICES, returning the sub-result.
539 The format of INDICES is:
541 ((INT-OR-NAME-OR-OTHER INT-OR-NAME INT-OR-NAME ...)
544 Each member of INDICES represents a level of nesting. If the first
545 member of a sublist is not an integer or name, and the value it's
546 reference is a string, that will be used as the regexp with which is
547 to divide the string into sub-parts. The default is whitespace.
548 Otherwise, each INT-OR-NAME refers to an element of the list value.
549 Integers imply a direct index, and names, an associate lookup using
552 For example, to retrieve the second element of a user's record in
553 '/etc/passwd', the variable reference would look like:
555 ${egrep johnw /etc/passwd}[: 2]"
557 (let ((refs (car indices
)))
558 (when (stringp value
)
560 (if (not (or (not (stringp (caar indices
)))
562 (concat "^" eshell-variable-name-regexp
"$")
564 (setq separator
(caar indices
)
567 (mapcar 'eshell-convert
568 (split-string value separator
)))))
571 (error "Invalid array variable index: %s"
572 (eshell-stringify refs
)))
574 (setq value
(eshell-index-value value
(car refs
))))
576 (let ((new-value (list t
)))
579 (list (eshell-index-value value
581 (setq refs
(cdr refs
)))
582 (setq value
(cdr new-value
))))))
583 (setq indices
(cdr indices
)))
586 (defun eshell-index-value (value index
)
587 "Reference VALUE using the given INDEX."
589 (cdr (assoc index value
))
592 (if (> index
(ring-length value
))
593 (error "Index exceeds length of ring")
594 (ring-ref value index
)))
596 (if (> index
(length value
))
597 (error "Index exceeds length of list")
600 (if (> index
(length value
))
601 (error "Index exceeds length of vector")
604 (error "Invalid data type for indexing")))))
606 ;;;_* Variable name completion
608 (defun eshell-complete-variable-reference ()
609 "If there is a variable reference, complete it."
610 (let ((arg (pcomplete-actual-arg)) index
)
613 (concat "\\$\\(" eshell-variable-name-regexp
615 (setq pcomplete-stub
(substring arg
(1+ index
)))
616 (throw 'pcomplete-completions
(eshell-variables-list)))))
618 (defun eshell-variables-list ()
619 "Generate list of applicable variables."
620 (let ((argname pcomplete-stub
)
622 (eshell-for alias eshell-variable-aliases-list
623 (if (string-match (concat "^" argname
) (car alias
))
624 (setq completions
(cons (car alias
) completions
))))
630 (let ((value (eshell-get-variable varname
)))
633 (file-directory-p value
))
636 (eshell-envvar-names (eshell-environment-variables)))
637 (all-completions argname obarray
'boundp
)
641 (defun eshell-complete-variable-assignment ()
642 "If there is a variable assignment, allow completion of entries."
643 (let ((arg (pcomplete-actual-arg)) pos
)
644 (when (string-match (concat "\\`" eshell-variable-name-regexp
"=") arg
)
645 (setq pos
(match-end 0))
646 (if (string-match "\\(:\\)[^:]*\\'" arg
)
647 (setq pos
(match-end 1)))
648 (setq pcomplete-stub
(substring arg pos
))
649 (throw 'pcomplete-completions
(pcomplete-entries)))))
653 ;;; arch-tag: 393654fe-bdad-4f27-9a10-b1472ded14cf
654 ;;; esh-var.el ends here