Fix bug #9221 with memory leak in bidi display.
[emacs.git] / lisp / eshell / esh-ext.el
blob3acbeac0b891d3d85de6e4cb71e026bf1e9f157f
1 ;;; esh-ext.el --- commands external to Eshell
3 ;; Copyright (C) 1999-2011 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/>.
22 ;;; Commentary:
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
32 ;;; Code:
34 (provide 'esh-ext)
36 (eval-when-compile
37 (require 'cl)
38 (require 'esh-cmd))
39 (require 'esh-util)
41 (defgroup eshell-ext nil
42 "External commands are invoked when operating system executables are
43 loaded into memory, thus beginning a new process."
44 :tag "External commands"
45 :group 'eshell)
47 ;;; User Variables:
49 (defcustom eshell-ext-load-hook nil
50 "A hook that gets run when `eshell-ext' is loaded."
51 :version "24.1" ; removed eshell-ext-initialize
52 :type 'hook
53 :group 'eshell-ext)
55 (defcustom eshell-binary-suffixes exec-suffixes
56 "A list of suffixes used when searching for executable files."
57 :type '(repeat string)
58 :group 'eshell-ext)
60 (defcustom eshell-force-execution nil
61 "If non-nil, try to execute binary files regardless of permissions.
62 This can be useful on systems like Windows, where the operating system
63 doesn't happen to honor the permission bits in certain cases; or in
64 cases where you want to associate an interpreter with a particular
65 kind of script file, but the language won't let you but a '#!'
66 interpreter line in the file, and you don't want to make it executable
67 since nothing else but Eshell will be able to understand
68 `eshell-interpreter-alist'."
69 :type 'boolean
70 :group 'eshell-ext)
72 (defun eshell-search-path (name)
73 "Search the environment path for NAME."
74 (if (file-name-absolute-p name)
75 name
76 (let ((list (eshell-parse-colon-path eshell-path-env))
77 suffixes n1 n2 file)
78 (while list
79 (setq n1 (concat (car list) name))
80 (setq suffixes eshell-binary-suffixes)
81 (while suffixes
82 (setq n2 (concat n1 (car suffixes)))
83 (if (and (or (file-executable-p n2)
84 (and eshell-force-execution
85 (file-readable-p n2)))
86 (not (file-directory-p n2)))
87 (setq file n2 suffixes nil list nil))
88 (setq suffixes (cdr suffixes)))
89 (setq list (cdr list)))
90 file)))
92 (defcustom eshell-windows-shell-file
93 (if (eshell-under-windows-p)
94 (if (string-match "\\(\\`cmdproxy\\|sh\\)\\.\\(com\\|exe\\)"
95 shell-file-name)
96 (or (eshell-search-path "cmd.exe")
97 (eshell-search-path "command.com"))
98 shell-file-name))
99 "The name of the shell command to use for DOS/Windows batch files.
100 This defaults to nil on non-Windows systems, where this variable is
101 wholly ignored."
102 :type '(choice file (const nil))
103 :group 'eshell-ext)
105 (defsubst eshell-invoke-batch-file (&rest args)
106 "Invoke a .BAT or .CMD file on DOS/Windows systems."
107 ;; since CMD.EXE can't handle forward slashes in the initial
108 ;; argument...
109 (setcar args (subst-char-in-string ?/ ?\\ (car args)))
110 (throw 'eshell-replace-command
111 (eshell-parse-command eshell-windows-shell-file (cons "/c" args))))
113 (defcustom eshell-interpreter-alist
114 (if (eshell-under-windows-p)
115 '(("\\.\\(bat\\|cmd\\)\\'" . eshell-invoke-batch-file)))
116 "An alist defining interpreter substitutions.
117 Each member is a cons cell of the form:
119 (MATCH . INTERPRETER)
121 MATCH should be a regexp, which is matched against the command name,
122 or a function. If either returns a non-nil value, then INTERPRETER
123 will be used for that command.
125 If INTERPRETER is a string, it will be called as the command name,
126 with the original command name passed as the first argument, with all
127 subsequent arguments following. If INTERPRETER is a function, it will
128 be called with all of those arguments. Note that interpreter
129 functions should throw `eshell-replace-command' with the alternate
130 command form, or they should return a value compatible with the
131 possible return values of `eshell-external-command', which see."
132 :type '(repeat (cons (choice regexp (function :tag "Predicate"))
133 (choice string (function :tag "Interpreter"))))
134 :group 'eshell-ext)
136 (defcustom eshell-alternate-command-hook nil
137 "A hook run whenever external command lookup fails.
138 If a functions wishes to provide an alternate command, they must throw
139 it using the tag `eshell-replace-command'. This is done because the
140 substituted command need not be external at all, and therefore must be
141 passed up to a higher level for re-evaluation.
143 Or, if the function returns a filename, that filename will be invoked
144 with the current command arguments rather than the command specified
145 by the user on the command line."
146 :type 'hook
147 :group 'eshell-ext)
149 (defcustom eshell-command-interpreter-max-length 256
150 "The maximum length of any command interpreter string, plus args."
151 :type 'integer
152 :group 'eshell-ext)
154 (defcustom eshell-explicit-command-char ?*
155 "If this char occurs before a command name, call it externally.
156 That is, although `vi' may be an alias, `\vi' will always call the
157 external version."
158 :type 'character
159 :group 'eshell-ext)
161 ;;; Functions:
163 (defun eshell-ext-initialize ()
164 "Initialize the external command handling code."
165 (add-hook 'eshell-named-command-hook 'eshell-explicit-command nil t))
167 (defun eshell-explicit-command (command args)
168 "If a command name begins with `*', call it externally always.
169 This bypasses all Lisp functions and aliases."
170 (when (and (> (length command) 1)
171 (eq (aref command 0) eshell-explicit-command-char))
172 (let ((cmd (eshell-search-path (substring command 1))))
173 (if cmd
174 (or (eshell-external-command cmd args)
175 (error "%s: external command failed" cmd))
176 (error "%s: external command not found"
177 (substring command 1))))))
179 (defun eshell-remote-command (command args)
180 "Insert output from a remote COMMAND, using ARGS.
181 A remote command is something that executes on a different machine.
182 An external command simply means external to Emacs.
184 Note that this function is very crude at the moment. It gathers up
185 all the output from the remote command, and sends it all at once,
186 causing the user to wonder if anything's really going on..."
187 (let ((outbuf (generate-new-buffer " *eshell remote output*"))
188 (errbuf (generate-new-buffer " *eshell remote error*"))
189 (exitcode 1))
190 (unwind-protect
191 (progn
192 (setq exitcode
193 (shell-command
194 (mapconcat 'shell-quote-argument
195 (append (list command) args) " ")
196 outbuf errbuf))
197 (eshell-print (with-current-buffer outbuf (buffer-string)))
198 (eshell-error (with-current-buffer errbuf (buffer-string))))
199 (eshell-close-handles exitcode 'nil)
200 (kill-buffer outbuf)
201 (kill-buffer errbuf))))
203 (defun eshell-external-command (command args)
204 "Insert output from an external COMMAND, using ARGS."
205 (setq args (eshell-stringify-list (eshell-flatten-list args)))
206 (if (file-remote-p default-directory)
207 (eshell-remote-command command args))
208 (let ((interp (eshell-find-interpreter command)))
209 (assert interp)
210 (if (functionp (car interp))
211 (apply (car interp) (append (cdr interp) args))
212 (eshell-gather-process-output
213 (car interp) (append (cdr interp) args)))))
215 (defun eshell/addpath (&rest args)
216 "Add a set of paths to PATH."
217 (eshell-eval-using-options
218 "addpath" args
219 '((?b "begin" nil prepend "add path element at beginning")
220 (?h "help" nil nil "display this usage message")
221 :usage "[-b] PATH
222 Adds the given PATH to $PATH.")
223 (if args
224 (progn
225 (if prepend
226 (setq args (nreverse args)))
227 (while args
228 (setenv "PATH"
229 (if prepend
230 (concat (car args) path-separator
231 (getenv "PATH"))
232 (concat (getenv "PATH") path-separator
233 (car args))))
234 (setq args (cdr args))))
235 (let ((paths (parse-colon-path (getenv "PATH"))))
236 (while paths
237 (eshell-printn (car paths))
238 (setq paths (cdr paths)))))))
240 (put 'eshell/addpath 'eshell-no-numeric-conversions t)
242 (defun eshell-script-interpreter (file)
243 "Extract the script to run from FILE, if it has #!<interp> in it.
244 Return nil, or a list of the form:
246 (INTERPRETER [ARGS] FILE)"
247 (let ((maxlen eshell-command-interpreter-max-length))
248 (if (and (file-readable-p file)
249 (file-regular-p file))
250 (with-temp-buffer
251 (insert-file-contents-literally file nil 0 maxlen)
252 (if (looking-at "#![ \t]*\\([^ \r\t\n]+\\)\\([ \t]+\\(.+\\)\\)?")
253 (if (match-string 3)
254 (list (match-string 1)
255 (match-string 3)
256 file)
257 (list (match-string 1)
258 file)))))))
260 (defun eshell-find-interpreter (file &optional no-examine-p)
261 "Find the command interpreter with which to execute FILE.
262 If NO-EXAMINE-P is non-nil, FILE will not be inspected for a script
263 line of the form #!<interp>."
264 (let ((finterp
265 (catch 'found
266 (ignore
267 (dolist (possible eshell-interpreter-alist)
268 (cond
269 ((functionp (car possible))
270 (and (funcall (car possible) file)
271 (throw 'found (cdr possible))))
272 ((stringp (car possible))
273 (and (string-match (car possible) file)
274 (throw 'found (cdr possible))))
276 (error "Invalid interpreter-alist test"))))))))
277 (if finterp ; first check
278 (list finterp file)
279 (let ((fullname (if (file-name-directory file) file
280 (eshell-search-path file)))
281 (suffixes eshell-binary-suffixes))
282 (if (and fullname (not (or eshell-force-execution
283 (file-executable-p fullname))))
284 (while suffixes
285 (let ((try (concat fullname (car suffixes))))
286 (if (or (file-executable-p try)
287 (and eshell-force-execution
288 (file-readable-p try)))
289 (setq fullname try suffixes nil)
290 (setq suffixes (cdr suffixes))))))
291 (cond ((not (and fullname (file-exists-p fullname)))
292 (let ((name (or fullname file)))
293 (unless (setq fullname
294 (run-hook-with-args-until-success
295 'eshell-alternate-command-hook file))
296 (error "%s: command not found" name))))
297 ((not (or eshell-force-execution
298 (file-executable-p fullname)))
299 (error "%s: Permission denied" fullname)))
300 (let (interp)
301 (unless no-examine-p
302 (setq interp (eshell-script-interpreter fullname))
303 (if interp
304 (setq interp
305 (cons (car (eshell-find-interpreter (car interp) t))
306 (cdr interp)))))
307 (or interp (list fullname)))))))
309 ;;; esh-ext.el ends here