1 ;;; esh-var.el --- handling of variables -*- lexical-binding:t -*-
3 ;; Copyright (C) 1999-2015 Free Software Foundation, Inc.
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 3 of the License, or
12 ;; (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>.
24 ;; These are the possible variable interpolation syntaxes. Also keep
25 ;; in mind that if an argument looks like a number, it will be
26 ;; converted to a number. This is not significant when invoking
27 ;; external commands, but it's important when calling Lisp functions.
31 ;; Interval the value of an environment variable, or a Lisp variable
35 ;; "-" is a valid part of a variable name.
39 ;; Only "MYVAR" is part of the variable name in this case.
43 ;; Returns the length of the value of VARIABLE. This could also be
44 ;; done using the `length' Lisp function.
48 ;; Returns result of lisp evaluation. Note: Used alone like this, it
49 ;; is identical to just saying (lisp); but with the variable expansion
50 ;; form, the result may be interpolated a larger string, such as
55 ;; Returns the value of an eshell subcommand. See the note above
56 ;; regarding Lisp evaluations.
60 ;; Return the 10th element of ANYVAR. If ANYVAR's value is a string,
61 ;; it will be split in order to make it a list. The splitting will
62 ;; occur at whitespace.
66 ;; As above, except that splitting occurs at the colon now.
70 ;; As above, but instead of returning just a string, it now returns a
71 ;; list of two strings. If the result is being interpolated into a
72 ;; larger string, this list will be flattened into one big string,
73 ;; with each element separated by a space.
77 ;; Separate on backslash characters. Actually, the first argument --
78 ;; if it doesn't have the form of a number, or a plain variable name
79 ;; -- can be any regular expression. So to split on numbers, use
80 ;; '$ANYVAR["[0-9]+" 10 20]'.
84 ;; Calls `assoc' on ANYVAR with 'hello', expecting it to be an alist.
88 ;; Returns the length of the cdr of the element of ANYVAR who car is
91 ;; There are also a few special variables defined by Eshell. '$$' is
92 ;; the value of the last command (t or nil, in the case of an external
93 ;; command). This makes it possible to chain results:
95 ;; /tmp $ echo /var/spool/mail/johnw
96 ;; /var/spool/mail/johnw
102 ;; '$_' refers to the last argument of the last command. And $?
103 ;; contains the exit code of the last command (0 or 1 for Lisp
104 ;; functions, based on successful completion).
118 (defgroup eshell-var nil
119 "Variable interpolation is introduced whenever the '$' character
120 appears unquoted in any argument (except when that argument is
121 surrounded by single quotes). It may be used to interpolate a
122 variable value, a subcommand, or even the result of a Lisp form."
123 :tag
"Variable handling"
128 (defcustom eshell-var-load-hook nil
129 "A list of functions to call when loading `eshell-var'."
130 :version
"24.1" ; removed eshell-var-initialize
134 (defcustom eshell-prefer-lisp-variables nil
135 "If non-nil, prefer Lisp variables to environment variables."
139 (defcustom eshell-complete-export-definition t
140 "If non-nil, completing names for `export' shows current definition."
144 (defcustom eshell-modify-global-environment nil
145 "If non-nil, using `export' changes Emacs's global environment."
149 (defcustom eshell-variable-name-regexp
"[A-Za-z0-9_-]+"
150 "A regexp identifying what constitutes a variable name reference.
151 Note that this only applies for '$NAME'. If the syntax '$<NAME>' is
152 used, then NAME can contain any character, including angle brackets,
153 if they are quoted with a backslash."
157 (defcustom eshell-variable-aliases-list
159 ("COLUMNS" (lambda (indices) (window-width)) t
)
160 ("LINES" (lambda (indices) (window-height)) t
)
163 ("_" (lambda (indices)
165 (car (last eshell-last-arguments
))
166 (eshell-apply-indices eshell-last-arguments
168 ("?" eshell-last-command-status
)
169 ("$" eshell-last-command-result
)
170 ("0" eshell-command-name
)
171 ("1" (lambda (indices) (nth 0 eshell-command-arguments
)))
172 ("2" (lambda (indices) (nth 1 eshell-command-arguments
)))
173 ("3" (lambda (indices) (nth 2 eshell-command-arguments
)))
174 ("4" (lambda (indices) (nth 3 eshell-command-arguments
)))
175 ("5" (lambda (indices) (nth 4 eshell-command-arguments
)))
176 ("6" (lambda (indices) (nth 5 eshell-command-arguments
)))
177 ("7" (lambda (indices) (nth 6 eshell-command-arguments
)))
178 ("8" (lambda (indices) (nth 7 eshell-command-arguments
)))
179 ("9" (lambda (indices) (nth 8 eshell-command-arguments
)))
180 ("*" (lambda (indices)
182 eshell-command-arguments
183 (eshell-apply-indices eshell-command-arguments
185 "This list provides aliasing for variable references.
186 It is very similar in concept to what `eshell-user-aliases-list' does
187 for commands. Each member of this defines the name of a command,
188 and the Lisp value to return for that variable if it is accessed
189 via the syntax '$NAME'.
191 If the value is a function, that function will be called with two
192 arguments: the list of the indices that was used in the reference, and
193 whether the user is requesting the length of the ultimate element.
194 For example, a reference of '$NAME[10][20]' would result in the
195 function for alias `NAME' being called (assuming it were aliased to a
196 function), and the arguments passed to this function would be the list
198 :type
'(repeat (list string sexp
199 (choice (const :tag
"Copy to environment" t
)
200 (const :tag
"Use only in Eshell" nil
))))
203 (put 'eshell-variable-aliases-list
'risky-local-variable t
)
207 (defun eshell-var-initialize ()
208 "Initialize the variable handle code."
209 ;; Break the association with our parent's environment. Otherwise,
210 ;; changing a variable will affect all of Emacs.
211 (unless eshell-modify-global-environment
212 (set (make-local-variable 'process-environment
)
213 (eshell-copy-environment)))
215 (define-key eshell-command-map
[(meta ?v
)] 'eshell-insert-envvar
)
217 (set (make-local-variable 'eshell-special-chars-inside-quoting
)
218 (append eshell-special-chars-inside-quoting
'(?$
)))
219 (set (make-local-variable 'eshell-special-chars-outside-quoting
)
220 (append eshell-special-chars-outside-quoting
'(?$
)))
222 (add-hook 'eshell-parse-argument-hook
'eshell-interpolate-variable t t
)
224 (add-hook 'eshell-prepare-command-hook
225 'eshell-handle-local-variables nil t
)
227 (when (eshell-using-module 'eshell-cmpl
)
228 (add-hook 'pcomplete-try-first-hook
229 'eshell-complete-variable-reference nil t
)
230 (add-hook 'pcomplete-try-first-hook
231 'eshell-complete-variable-assignment nil t
)))
233 (defun eshell-handle-local-variables ()
234 "Allow for the syntax 'VAR=val <command> <args>'."
235 ;; strip off any null commands, which can only happen if a variable
236 ;; evaluates to nil, such as "$var x", where `var' is nil. The
237 ;; command name in that case becomes `x', for compatibility with
238 ;; most regular shells (the difference is that they do an
239 ;; interpolation pass before the argument parsing pass, but Eshell
240 ;; does both at the same time).
241 (while (and (not eshell-last-command-name
)
242 eshell-last-arguments
)
243 (setq eshell-last-command-name
(car eshell-last-arguments
)
244 eshell-last-arguments
(cdr eshell-last-arguments
)))
245 (let ((setvar "\\`\\([A-Za-z_][A-Za-z0-9_]*\\)=\\(.*\\)\\'")
246 (command (eshell-stringify eshell-last-command-name
))
247 (args eshell-last-arguments
))
248 ;; local variable settings (such as 'CFLAGS=-O2 make') are handled
249 ;; by making the whole command into a subcommand, and calling
250 ;; setenv immediately before the command is invoked. This means
251 ;; that 'BLAH=x cd blah' won't work exactly as expected, but that
252 ;; is by no means a typical use of local environment variables.
253 (if (and command
(string-match setvar command
))
255 'eshell-replace-command
257 'eshell-as-subcommand
261 (while (string-match setvar command
)
264 (list 'setenv
(match-string 1 command
)
265 (match-string 2 command
)
266 (= (length (match-string 2 command
)) 0))))
267 (setq command
(eshell-stringify (car args
))
270 (list (list 'eshell-named-command
271 command
(list 'quote args
)))))))))
273 (defun eshell-interpolate-variable ()
274 "Parse a variable interpolation.
275 This function is explicit for adding to `eshell-parse-argument-hook'."
276 (when (and (eq (char-after) ?$
)
277 (/= (1+ (point)) (point-max)))
279 (list 'eshell-escape-arg
280 (eshell-parse-variable))))
282 (defun eshell/define
(var-alias definition
)
283 "Define a VAR-ALIAS using DEFINITION."
285 (setq eshell-variable-aliases-list
286 (delq (assoc var-alias eshell-variable-aliases-list
)
287 eshell-variable-aliases-list
))
288 (let ((def (assoc var-alias eshell-variable-aliases-list
))
291 (list 'quote
(if (= (length definition
) 1)
295 (setq eshell-variable-aliases-list
296 (delq (assoc var-alias eshell-variable-aliases-list
)
297 eshell-variable-aliases-list
)))
298 (setq eshell-variable-aliases-list
300 eshell-variable-aliases-list
))))
303 (defun eshell/export
(&rest sets
)
304 "This alias allows the `export' command to act as bash users expect."
306 (if (and (stringp (car sets
))
307 (string-match "^\\([^=]+\\)=\\(.*\\)" (car sets
)))
308 (setenv (match-string 1 (car sets
))
309 (match-string 2 (car sets
))))
310 (setq sets
(cdr sets
))))
312 (defun pcomplete/eshell-mode
/export
()
313 "Completion function for Eshell's `export'."
314 (while (pcomplete-here
315 (if eshell-complete-export-definition
317 (eshell-envvar-names)))))
319 (defun eshell/unset
(&rest args
)
320 "Unset an environment variable."
322 (if (stringp (car args
))
323 (setenv (car args
) nil t
))
324 (setq args
(cdr args
))))
326 (defun pcomplete/eshell-mode
/unset
()
327 "Completion function for Eshell's `unset'."
328 (while (pcomplete-here (eshell-envvar-names))))
330 (defun eshell/setq
(&rest args
)
331 "Allow command-ish use of `setq'."
334 (let ((sym (intern (car args
)))
336 (setq last-value
(set sym val
)
340 (defun pcomplete/eshell-mode
/setq
()
341 "Completion function for Eshell's `setq'."
342 (while (and (pcomplete-here (all-completions pcomplete-stub
346 (defun eshell/env
(&rest args
)
347 "Implementation of `env' in Lisp."
348 (eshell-init-print-buffer)
349 (eshell-eval-using-options
351 '((?h
"help" nil nil
"show this usage screen")
353 :usage
"<no arguments>")
354 (dolist (setting (sort (eshell-environment-variables) 'string-lessp
))
355 (eshell-buffered-print setting
"\n"))
358 (defun eshell-insert-envvar (envvar-name)
359 "Insert ENVVAR-NAME into the current buffer at point."
361 (list (read-envvar-name "Name of environment variable: " t
)))
362 (insert-and-inherit "$" envvar-name
))
364 (defun eshell-envvar-names (&optional environment
)
365 "Return a list of currently visible environment variable names."
368 (substring x
0 (string-match "=" x
))))
369 (or environment process-environment
)))
371 (defun eshell-environment-variables ()
372 "Return a `process-environment', fully updated.
373 This involves setting any variable aliases which affect the
374 environment, as specified in `eshell-variable-aliases-list'."
375 (let ((process-environment (eshell-copy-environment)))
376 (dolist (var-alias eshell-variable-aliases-list
)
377 (if (nth 2 var-alias
)
378 (setenv (car var-alias
)
380 (or (eshell-get-variable (car var-alias
)) "")))))
381 process-environment
))
383 (defun eshell-parse-variable ()
384 "Parse the next variable reference at point.
385 The variable name could refer to either an environment variable, or a
386 Lisp variable. The priority order depends on the setting of
387 `eshell-prefer-lisp-variables'.
389 Its purpose is to call `eshell-parse-variable-ref', and then to
390 process any indices that come after the variable reference."
391 (let* ((get-len (when (eq (char-after) ?
#)
394 (setq value
(eshell-parse-variable-ref)
395 indices
(and (not (eobp))
396 (eq (char-after) ?\
[)
397 (eshell-parse-indices))
398 value
`(let ((indices ',indices
)) ,value
))
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"
415 ((eq (char-after) ?
{)
416 (let ((end (eshell-find-delimiter ?\
{ ?\
})))
418 (throw 'eshell-incomplete ?\
{)
420 (list 'eshell-convert
421 (list 'eshell-command-to-value
422 (list 'eshell-as-subcommand
423 (eshell-parse-command
424 (cons (1+ (point)) end
)))))
425 (goto-char (1+ end
))))))
426 ((memq (char-after) '(?
\' ?
\"))
427 (let ((name (if (eq (char-after) ?
\')
428 (eshell-parse-literal-quote)
429 (eshell-parse-double-quote))))
431 (list 'eshell-get-variable
(eval name
) 'indices
))))
432 ((eq (char-after) ?\
<)
433 (let ((end (eshell-find-delimiter ?\
< ?\
>)))
435 (throw 'eshell-incomplete ?\
<)
436 (let* ((temp (make-temp-file temporary-file-directory
))
437 (cmd (concat (buffer-substring (1+ (point)) end
)
441 'let
(list (list 'eshell-current-handles
442 (list 'eshell-create-handles temp
443 (list 'quote
'overwrite
))))
446 (list 'eshell-as-subcommand
447 (eshell-parse-command cmd
))
449 (list 'nconc
'eshell-this-command-hook
453 (list 'delete-file temp
))))))
455 (goto-char (1+ end
)))))))
456 ((eq (char-after) ?\
()
458 (list 'eshell-command-to-value
459 (list 'eshell-lisp-command
460 (list 'quote
(read (current-buffer)))))
462 (throw 'eshell-incomplete ?\
())))
463 ((assoc (char-to-string (char-after))
464 eshell-variable-aliases-list
)
466 (list 'eshell-get-variable
467 (char-to-string (char-before)) 'indices
))
468 ((looking-at eshell-variable-name-regexp
)
470 (list 'eshell-get-variable
(match-string 0) 'indices
)
471 (goto-char (match-end 0))))
473 (error "Invalid variable reference"))))
475 (defvar eshell-glob-function
)
477 (defun eshell-parse-indices ()
478 "Parse and return a list of list of indices."
480 (while (eq (char-after) ?\
[)
481 (let ((end (eshell-find-delimiter ?\
[ ?\
])))
483 (throw 'eshell-incomplete ?\
[)
485 (let (eshell-glob-function)
486 (setq indices
(cons (eshell-parse-arguments (point) end
)
488 (goto-char (1+ end
)))))
491 (defun eshell-get-variable (name &optional indices
)
492 "Get the value for the variable NAME."
493 (let* ((alias (assoc name eshell-variable-aliases-list
))
497 (if (and alias
(functionp var
))
498 (funcall var indices
)
499 (eshell-apply-indices
502 (let ((sym (intern-soft var
)))
503 (if (and sym
(boundp sym
)
504 (or eshell-prefer-lisp-variables
505 (memq sym eshell--local-vars
) ; bug#15372
512 (error "Unknown variable `%s'" (eshell-stringify var
))))
515 (defun eshell-apply-indices (value indices
)
516 "Apply to VALUE all of the given INDICES, returning the sub-result.
517 The format of INDICES is:
519 ((INT-OR-NAME-OR-OTHER INT-OR-NAME INT-OR-NAME ...)
522 Each member of INDICES represents a level of nesting. If the first
523 member of a sublist is not an integer or name, and the value it's
524 reference is a string, that will be used as the regexp with which is
525 to divide the string into sub-parts. The default is whitespace.
526 Otherwise, each INT-OR-NAME refers to an element of the list value.
527 Integers imply a direct index, and names, an associate lookup using
530 For example, to retrieve the second element of a user's record in
531 '/etc/passwd', the variable reference would look like:
533 ${egrep johnw /etc/passwd}[: 2]"
535 (let ((refs (car indices
)))
536 (when (stringp value
)
538 (if (not (or (not (stringp (caar indices
)))
540 (concat "^" eshell-variable-name-regexp
"$")
542 (setq separator
(caar indices
)
545 (mapcar 'eshell-convert
546 (split-string value separator
)))))
549 (error "Invalid array variable index: %s"
550 (eshell-stringify refs
)))
552 (setq value
(eshell-index-value value
(car refs
))))
554 (let ((new-value (list t
)))
557 (list (eshell-index-value value
559 (setq refs
(cdr refs
)))
560 (setq value
(cdr new-value
))))))
561 (setq indices
(cdr indices
)))
564 (defun eshell-index-value (value index
)
565 "Reference VALUE using the given INDEX."
567 (cdr (assoc index value
))
570 (if (> index
(ring-length value
))
571 (error "Index exceeds length of ring")
572 (ring-ref value index
)))
574 (if (> index
(length value
))
575 (error "Index exceeds length of list")
578 (if (> index
(length value
))
579 (error "Index exceeds length of vector")
582 (error "Invalid data type for indexing")))))
584 ;;;_* Variable name completion
586 (defun eshell-complete-variable-reference ()
587 "If there is a variable reference, complete it."
588 (let ((arg (pcomplete-actual-arg)) index
)
591 (concat "\\$\\(" eshell-variable-name-regexp
593 (setq pcomplete-stub
(substring arg
(1+ index
)))
594 (throw 'pcomplete-completions
(eshell-variables-list)))))
596 (defun eshell-variables-list ()
597 "Generate list of applicable variables."
598 (let ((argname pcomplete-stub
)
600 (dolist (alias eshell-variable-aliases-list
)
601 (if (string-match (concat "^" argname
) (car alias
))
602 (setq completions
(cons (car alias
) completions
))))
608 (let ((value (eshell-get-variable varname
)))
611 (file-directory-p value
))
614 (eshell-envvar-names (eshell-environment-variables)))
615 (all-completions argname obarray
'boundp
)
619 (defun eshell-complete-variable-assignment ()
620 "If there is a variable assignment, allow completion of entries."
621 (let ((arg (pcomplete-actual-arg)) pos
)
622 (when (string-match (concat "\\`" eshell-variable-name-regexp
"=") arg
)
623 (setq pos
(match-end 0))
624 (if (string-match "\\(:\\)[^:]*\\'" arg
)
625 (setq pos
(match-end 1)))
626 (setq pcomplete-stub
(substring arg pos
))
627 (throw 'pcomplete-completions
(pcomplete-entries)))))
629 ;;; esh-var.el ends here