1 ;;; esh-ext.el --- commands external to Eshell
3 ;; Copyright (C) 1999-2013 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 ;; To force a command to invoked external, either provide an explicit
25 ;; pathname for the command argument, or prefix the command name with
26 ;; an asterix character. Example:
28 ;; grep ; make invoke `grep' Lisp function, or `eshell/grep'
29 ;; /bin/grep ; will definitely invoke /bin/grep
30 ;; *grep ; will also invoke /bin/grep
44 (defgroup eshell-ext nil
45 "External commands are invoked when operating system executables are
46 loaded into memory, thus beginning a new process."
47 :tag
"External commands"
52 (defcustom eshell-ext-load-hook nil
53 "A hook that gets run when `eshell-ext' is loaded."
54 :version
"24.1" ; removed eshell-ext-initialize
58 (defcustom eshell-binary-suffixes exec-suffixes
59 "A list of suffixes used when searching for executable files."
60 :type
'(repeat string
)
63 (defcustom eshell-force-execution nil
64 "If non-nil, try to execute binary files regardless of permissions.
65 This can be useful on systems like Windows, where the operating system
66 doesn't happen to honor the permission bits in certain cases; or in
67 cases where you want to associate an interpreter with a particular
68 kind of script file, but the language won't let you but a '#!'
69 interpreter line in the file, and you don't want to make it executable
70 since nothing else but Eshell will be able to understand
71 `eshell-interpreter-alist'."
75 (defun eshell-search-path (name)
76 "Search the environment path for NAME."
77 (if (file-name-absolute-p name
)
79 (let ((list (eshell-parse-colon-path eshell-path-env
))
82 (setq n1
(concat (car list
) name
))
83 (setq suffixes eshell-binary-suffixes
)
85 (setq n2
(concat n1
(car suffixes
)))
86 (if (and (or (file-executable-p n2
)
87 (and eshell-force-execution
88 (file-readable-p n2
)))
89 (not (file-directory-p n2
)))
90 (setq file n2 suffixes nil list nil
))
91 (setq suffixes
(cdr suffixes
)))
92 (setq list
(cdr list
)))
95 (defcustom eshell-windows-shell-file
96 (if (eshell-under-windows-p)
97 (if (string-match "\\(cmdproxy\\|sh\\)\\.\\(com\\|exe\\)"
99 (or (eshell-search-path "cmd.exe")
100 (eshell-search-path "command.com"))
102 "The name of the shell command to use for DOS/Windows batch files.
103 This defaults to nil on non-Windows systems, where this variable is
105 :type
'(choice file
(const nil
))
108 (autoload 'eshell-parse-command
"esh-cmd")
110 (defsubst eshell-invoke-batch-file
(&rest args
)
111 "Invoke a .BAT or .CMD file on DOS/Windows systems."
112 ;; since CMD.EXE can't handle forward slashes in the initial
114 (setcar args
(subst-char-in-string ?
/ ?
\\ (car args
)))
115 (throw 'eshell-replace-command
116 (eshell-parse-command
117 (eshell-quote-argument eshell-windows-shell-file
)
120 (defcustom eshell-interpreter-alist
121 (if (eshell-under-windows-p)
122 '(("\\.\\(bat\\|cmd\\)\\'" . eshell-invoke-batch-file
)))
123 "An alist defining interpreter substitutions.
124 Each member is a cons cell of the form:
126 (MATCH . INTERPRETER)
128 MATCH should be a regexp, which is matched against the command
129 name, or a function of arity 2 receiving the COMMAND and its
130 ARGS (a list). If either returns a non-nil value, then
131 INTERPRETER will be used for that command.
133 If INTERPRETER is a string, it will be called as the command name,
134 with the original command name passed as the first argument, with all
135 subsequent arguments following. If INTERPRETER is a function, it will
136 be called with all of those arguments. Note that interpreter
137 functions should throw `eshell-replace-command' with the alternate
138 command form, or they should return a value compatible with the
139 possible return values of `eshell-external-command', which see."
140 :type
'(repeat (cons (choice regexp
(function :tag
"Predicate"))
141 (choice string
(function :tag
"Interpreter"))))
144 (defcustom eshell-alternate-command-hook nil
145 "A hook run whenever external command lookup fails.
146 If a functions wishes to provide an alternate command, they must throw
147 it using the tag `eshell-replace-command'. This is done because the
148 substituted command need not be external at all, and therefore must be
149 passed up to a higher level for re-evaluation.
151 Or, if the function returns a filename, that filename will be invoked
152 with the current command arguments rather than the command specified
153 by the user on the command line."
157 (defcustom eshell-command-interpreter-max-length
256
158 "The maximum length of any command interpreter string, plus args."
162 (defcustom eshell-explicit-command-char ?
*
163 "If this char occurs before a command name, call it externally.
164 That is, although `vi' may be an alias, `\vi' will always call the
171 (defun eshell-ext-initialize ()
172 "Initialize the external command handling code."
173 (add-hook 'eshell-named-command-hook
'eshell-explicit-command nil t
))
175 (defun eshell-explicit-command (command args
)
176 "If a command name begins with `*', call it externally always.
177 This bypasses all Lisp functions and aliases."
178 (when (and (> (length command
) 1)
179 (eq (aref command
0) eshell-explicit-command-char
))
180 (let ((cmd (eshell-search-path (substring command
1))))
182 (or (eshell-external-command cmd args
)
183 (error "%s: external command failed" cmd
))
184 (error "%s: external command not found"
185 (substring command
1))))))
187 (autoload 'eshell-close-handles
"esh-io")
189 (defun eshell-remote-command (command args
)
190 "Insert output from a remote COMMAND, using ARGS.
191 A remote command is something that executes on a different machine.
192 An external command simply means external to Emacs.
194 Note that this function is very crude at the moment. It gathers up
195 all the output from the remote command, and sends it all at once,
196 causing the user to wonder if anything's really going on..."
197 (let ((outbuf (generate-new-buffer " *eshell remote output*"))
198 (errbuf (generate-new-buffer " *eshell remote error*"))
199 (command (or (file-remote-p command
'localname
) command
))
205 (mapconcat 'shell-quote-argument
206 (append (list command
) args
) " ")
208 (eshell-print (with-current-buffer outbuf
(buffer-string)))
209 (eshell-error (with-current-buffer errbuf
(buffer-string))))
210 (eshell-close-handles exitcode
'nil
)
212 (kill-buffer errbuf
))))
214 (defun eshell-external-command (command args
)
215 "Insert output from an external COMMAND, using ARGS."
216 (setq args
(eshell-stringify-list (eshell-flatten-list args
)))
217 (let ((interp (eshell-find-interpreter
220 ;; `eshell-find-interpreter' does not work correctly
221 ;; for Tramp file name syntax. But we don't need to
222 ;; know the interpreter in that case, therefore the
223 ;; check is suppressed.
224 (or (and (stringp command
) (file-remote-p command
))
225 (file-remote-p default-directory
)))))
227 (if (functionp (car interp
))
228 (apply (car interp
) (append (cdr interp
) args
))
229 (eshell-gather-process-output
230 (car interp
) (append (cdr interp
) args
)))))
232 (defun eshell/addpath
(&rest args
)
233 "Add a set of paths to PATH."
234 (eshell-eval-using-options
236 '((?b
"begin" nil prepend
"add path element at beginning")
237 (?h
"help" nil nil
"display this usage message")
239 Adds the given PATH to $PATH.")
242 (setq eshell-path-env
(getenv "PATH")
243 args
(mapconcat 'identity args path-separator
)
246 (concat args path-separator eshell-path-env
)
247 (concat eshell-path-env path-separator args
)))
248 (setenv "PATH" eshell-path-env
))
249 (dolist (dir (parse-colon-path (getenv "PATH")))
250 (eshell-printn dir
)))))
252 (put 'eshell
/addpath
'eshell-no-numeric-conversions t
)
254 (defun eshell-script-interpreter (file)
255 "Extract the script to run from FILE, if it has #!<interp> in it.
256 Return nil, or a list of the form:
258 (INTERPRETER [ARGS] FILE)"
259 (let ((maxlen eshell-command-interpreter-max-length
))
260 (if (and (file-readable-p file
)
261 (file-regular-p file
))
263 (insert-file-contents-literally file nil
0 maxlen
)
264 (if (looking-at "#![ \t]*\\([^ \r\t\n]+\\)\\([ \t]+\\(.+\\)\\)?")
266 (list (match-string 1)
269 (list (match-string 1)
272 (defun eshell-find-interpreter (file args
&optional no-examine-p
)
273 "Find the command interpreter with which to execute FILE.
274 If NO-EXAMINE-P is non-nil, FILE will not be inspected for a script
275 line of the form #!<interp>."
279 (dolist (possible eshell-interpreter-alist
)
281 ((functionp (car possible
))
282 (let ((fn (car possible
)))
283 (and (funcall fn file args
)
284 (throw 'found
(cdr possible
)))))
285 ((stringp (car possible
))
286 (and (string-match (car possible
) file
)
287 (throw 'found
(cdr possible
))))
289 (error "Invalid interpreter-alist test"))))))))
290 (if finterp
; first check
292 (let ((fullname (if (file-name-directory file
) file
293 (eshell-search-path file
)))
294 (suffixes eshell-binary-suffixes
))
295 (if (and fullname
(not (or eshell-force-execution
296 (file-executable-p fullname
))))
298 (let ((try (concat fullname
(car suffixes
))))
299 (if (or (file-executable-p try
)
300 (and eshell-force-execution
301 (file-readable-p try
)))
302 (setq fullname try suffixes nil
)
303 (setq suffixes
(cdr suffixes
))))))
304 (cond ((not (and fullname
(file-exists-p fullname
)))
305 (let ((name (or fullname file
)))
306 (unless (setq fullname
307 (run-hook-with-args-until-success
308 'eshell-alternate-command-hook file
))
309 (error "%s: command not found" name
))))
310 ((not (or eshell-force-execution
311 (file-executable-p fullname
)))
312 (error "%s: Permission denied" fullname
)))
315 (setq interp
(eshell-script-interpreter fullname
))
318 (cons (car (eshell-find-interpreter (car interp
) args t
))
320 (or interp
(list fullname
)))))))
322 ;;; esh-ext.el ends here