2001-07-15 19:53:53 +00:00
|
|
|
;;; esh-ext.el --- commands external to Eshell
|
2000-06-23 05:24:10 +00:00
|
|
|
|
2006-12-09 04:06:06 +00:00
|
|
|
;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
|
2010-01-13 08:35:10 +00:00
|
|
|
;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2000-06-23 05:24:10 +00:00
|
|
|
|
2000-10-16 12:27:09 +00:00
|
|
|
;; Author: John Wiegley <johnw@gnu.org>
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:36:21 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2000-06-23 05:24:10 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:36:21 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 03:36:21 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; To force a command to invoked external, either provide an explicit
|
|
|
|
;; pathname for the command argument, or prefix the command name with
|
|
|
|
;; an asterix character. Example:
|
|
|
|
;;
|
|
|
|
;; grep ; make invoke `grep' Lisp function, or `eshell/grep'
|
|
|
|
;; /bin/grep ; will definitely invoke /bin/grep
|
|
|
|
;; *grep ; will also invoke /bin/grep
|
|
|
|
|
2009-01-22 06:33:06 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2007-12-05 07:08:55 +00:00
|
|
|
(provide 'esh-ext)
|
|
|
|
|
|
|
|
(eval-when-compile
|
2008-10-08 07:42:58 +00:00
|
|
|
(require 'cl)
|
2007-12-05 07:08:55 +00:00
|
|
|
(require 'esh-cmd))
|
|
|
|
(require 'esh-util)
|
|
|
|
|
|
|
|
(defgroup eshell-ext nil
|
|
|
|
"External commands are invoked when operating system executables are
|
|
|
|
loaded into memory, thus beginning a new process."
|
|
|
|
:tag "External commands"
|
|
|
|
:group 'eshell)
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
;;; User Variables:
|
|
|
|
|
|
|
|
(defcustom eshell-ext-load-hook '(eshell-ext-initialize)
|
|
|
|
"*A hook that gets run when `eshell-ext' is loaded."
|
|
|
|
:type 'hook
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
2002-03-18 14:56:35 +00:00
|
|
|
(defcustom eshell-binary-suffixes exec-suffixes
|
2000-06-23 05:24:10 +00:00
|
|
|
"*A list of suffixes used when searching for executable files."
|
|
|
|
:type '(repeat string)
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
|
|
|
(defcustom eshell-force-execution nil
|
|
|
|
"*If non-nil, try to execute binary files regardless of permissions.
|
|
|
|
This can be useful on systems like Windows, where the operating system
|
|
|
|
doesn't happen to honor the permission bits in certain cases; or in
|
|
|
|
cases where you want to associate an interpreter with a particular
|
|
|
|
kind of script file, but the language won't let you but a '#!'
|
|
|
|
interpreter line in the file, and you don't want to make it executable
|
|
|
|
since nothing else but Eshell will be able to understand
|
|
|
|
`eshell-interpreter-alist'."
|
|
|
|
:type 'boolean
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
|
|
|
(defun eshell-search-path (name)
|
|
|
|
"Search the environment path for NAME."
|
|
|
|
(if (file-name-absolute-p name)
|
|
|
|
name
|
2009-11-24 10:25:54 +00:00
|
|
|
(let ((list (eshell-parse-colon-path eshell-path-env))
|
2000-06-23 05:24:10 +00:00
|
|
|
suffixes n1 n2 file)
|
|
|
|
(while list
|
|
|
|
(setq n1 (concat (car list) name))
|
|
|
|
(setq suffixes eshell-binary-suffixes)
|
|
|
|
(while suffixes
|
|
|
|
(setq n2 (concat n1 (car suffixes)))
|
|
|
|
(if (and (or (file-executable-p n2)
|
|
|
|
(and eshell-force-execution
|
|
|
|
(file-readable-p n2)))
|
|
|
|
(not (file-directory-p n2)))
|
|
|
|
(setq file n2 suffixes nil list nil))
|
|
|
|
(setq suffixes (cdr suffixes)))
|
|
|
|
(setq list (cdr list)))
|
|
|
|
file)))
|
|
|
|
|
|
|
|
(defcustom eshell-windows-shell-file
|
|
|
|
(if (eshell-under-windows-p)
|
|
|
|
(if (string-match "\\(\\`cmdproxy\\|sh\\)\\.\\(com\\|exe\\)"
|
|
|
|
shell-file-name)
|
|
|
|
(or (eshell-search-path "cmd.exe")
|
2005-08-27 12:16:21 +00:00
|
|
|
(eshell-search-path "command.com"))
|
2000-06-23 05:24:10 +00:00
|
|
|
shell-file-name))
|
|
|
|
"*The name of the shell command to use for DOS/Windows batch files.
|
|
|
|
This defaults to nil on non-Windows systems, where this variable is
|
|
|
|
wholly ignored."
|
2001-01-29 23:58:24 +00:00
|
|
|
:type '(choice file (const nil))
|
2000-06-23 05:24:10 +00:00
|
|
|
:group 'eshell-ext)
|
|
|
|
|
|
|
|
(defsubst eshell-invoke-batch-file (&rest args)
|
|
|
|
"Invoke a .BAT or .CMD file on DOS/Windows systems."
|
|
|
|
;; since CMD.EXE can't handle forward slashes in the initial
|
|
|
|
;; argument...
|
2005-05-31 00:14:26 +00:00
|
|
|
(setcar args (subst-char-in-string ?/ ?\\ (car args)))
|
2000-06-23 05:24:10 +00:00
|
|
|
(throw 'eshell-replace-command
|
2000-08-29 00:47:45 +00:00
|
|
|
(eshell-parse-command eshell-windows-shell-file (cons "/c" args))))
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
(defcustom eshell-interpreter-alist
|
|
|
|
(if (eshell-under-windows-p)
|
|
|
|
'(("\\.\\(bat\\|cmd\\)\\'" . eshell-invoke-batch-file)))
|
|
|
|
"*An alist defining interpreter substitutions.
|
|
|
|
Each member is a cons cell of the form:
|
|
|
|
|
|
|
|
(MATCH . INTERPRETER)
|
|
|
|
|
|
|
|
MATCH should be a regexp, which is matched against the command name,
|
|
|
|
or a function. If either returns a non-nil value, then INTERPRETER
|
|
|
|
will be used for that command.
|
|
|
|
|
|
|
|
If INTERPRETER is a string, it will be called as the command name,
|
|
|
|
with the original command name passed as the first argument, with all
|
|
|
|
subsequent arguments following. If INTERPRETER is a function, it will
|
|
|
|
be called with all of those arguments. Note that interpreter
|
|
|
|
functions should throw `eshell-replace-command' with the alternate
|
|
|
|
command form, or they should return a value compatible with the
|
|
|
|
possible return values of `eshell-external-command', which see."
|
|
|
|
:type '(repeat (cons (choice regexp (function :tag "Predicate"))
|
|
|
|
(choice string (function :tag "Interpreter"))))
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
|
|
|
(defcustom eshell-alternate-command-hook nil
|
|
|
|
"*A hook run whenever external command lookup fails.
|
|
|
|
If a functions wishes to provide an alternate command, they must throw
|
|
|
|
it using the tag `eshell-replace-command'. This is done because the
|
|
|
|
substituted command need not be external at all, and therefore must be
|
|
|
|
passed up to a higher level for re-evaluation.
|
|
|
|
|
|
|
|
Or, if the function returns a filename, that filename will be invoked
|
|
|
|
with the current command arguments rather than the command specified
|
|
|
|
by the user on the command line."
|
|
|
|
:type 'hook
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
|
|
|
(defcustom eshell-command-interpreter-max-length 256
|
|
|
|
"*The maximum length of any command interpreter string, plus args."
|
|
|
|
:type 'integer
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
2001-05-18 16:40:11 +00:00
|
|
|
(defcustom eshell-explicit-command-char ?*
|
|
|
|
"*If this char occurs before a command name, call it externally.
|
2004-09-20 15:54:10 +00:00
|
|
|
That is, although `vi' may be an alias, `\vi' will always call the
|
|
|
|
external version."
|
2001-05-18 16:40:11 +00:00
|
|
|
:type 'character
|
|
|
|
:group 'eshell-ext)
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
;;; Functions:
|
|
|
|
|
|
|
|
(defun eshell-ext-initialize ()
|
|
|
|
"Initialize the external command handling code."
|
|
|
|
(add-hook 'eshell-named-command-hook 'eshell-explicit-command nil t))
|
|
|
|
|
|
|
|
(defun eshell-explicit-command (command args)
|
|
|
|
"If a command name begins with `*', call it externally always.
|
|
|
|
This bypasses all Lisp functions and aliases."
|
|
|
|
(when (and (> (length command) 1)
|
2001-05-18 16:40:11 +00:00
|
|
|
(eq (aref command 0) eshell-explicit-command-char))
|
2000-06-23 05:24:10 +00:00
|
|
|
(let ((cmd (eshell-search-path (substring command 1))))
|
|
|
|
(if cmd
|
|
|
|
(or (eshell-external-command cmd args)
|
|
|
|
(error "%s: external command failed" cmd))
|
|
|
|
(error "%s: external command not found"
|
|
|
|
(substring command 1))))))
|
|
|
|
|
2009-11-24 10:25:54 +00:00
|
|
|
(defun eshell-remote-command (command args)
|
2000-06-23 05:24:10 +00:00
|
|
|
"Insert output from a remote COMMAND, using ARGS.
|
|
|
|
A remote command is something that executes on a different machine.
|
|
|
|
An external command simply means external to Emacs.
|
|
|
|
|
|
|
|
Note that this function is very crude at the moment. It gathers up
|
|
|
|
all the output from the remote command, and sends it all at once,
|
|
|
|
causing the user to wonder if anything's really going on..."
|
|
|
|
(let ((outbuf (generate-new-buffer " *eshell remote output*"))
|
|
|
|
(errbuf (generate-new-buffer " *eshell remote error*"))
|
|
|
|
(exitcode 1))
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq exitcode
|
2009-11-24 10:25:54 +00:00
|
|
|
(shell-command
|
|
|
|
(mapconcat 'shell-quote-argument
|
|
|
|
(append (list command) args) " ")
|
|
|
|
outbuf errbuf))
|
* url-util.el (url-insert-entities-in-string):
* url-nfs.el (url-nfs-unescape):
* url-ldap.el (url-ldap):
* url-imap.el (url-imap):
* url-cid.el (url-cid-gnus, url-cid): Use with-current-buffer.
* erc.el (erc-display-line-1, erc-process-away):
* erc-truncate.el (erc-truncate-buffer-to-size):
Use with-current-buffer.
* term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
* play/mpuz.el (mpuz-create-buffer):
* play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
(lm-print-y,s,noise, lm-print-w0, lm-init):
* play/gomoku.el (gomoku-prompt-for-move):
* play/fortune.el (fortune-in-buffer):
* play/dissociate.el (dissociated-press):
* play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
(decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
* mail/supercite.el (sc-eref-show):
* mail/smtpmail.el (smtpmail-send-it):
* mail/rmailsum.el (rmail-summary-next-labeled-message)
(rmail-summary-previous-labeled-message, rmail-summary-wipe)
(rmail-summary-undelete-many, rmail-summary-rmail-update)
(rmail-summary-goto-msg, rmail-summary-expunge)
(rmail-summary-get-new-mail, rmail-summary-search-backward)
(rmail-summary-add-label, rmail-summary-output-menu)
(rmail-summary-output-body):
* mail/rfc822.el (rfc822-addresses):
* mail/reporter.el (reporter-dump-variable, reporter-dump-state):
* mail/mailpost.el (post-mail-send-it):
* mail/hashcash.el (hashcash-generate-payment):
* mail/feedmail.el (feedmail-run-the-queue)
(feedmail-queue-send-edit-prompt-help-first)
(feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
(feedmail-deduce-address-list):
* eshell/esh-ext.el (eshell-remote-command):
* eshell/em-unix.el (eshell-occur-mode-mouse-goto):
* emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
(viper-wildcard-to-regexp, viper-glob-mswindows-files)
(viper-save-string-in-file, viper-valid-marker):
* emulation/viper-keym.el (viper-toggle-key):
* emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
(ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
(ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
* emulation/viper-cmd.el (viper-exec-form-in-vi)
(viper-exec-form-in-emacs, viper-brac-function):
* emulation/viper.el (viper-delocalize-var):
* emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
(vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
(vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
(ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
* emulation/vi.el (vi-switch-mode, vi-ex-cmd):
* emulation/edt.el (edt-electric-helpify):
* emulation/cua-rect.el (cua--rectangle-aux-replace):
* emulation/cua-gmrk.el (cua--insert-at-global-mark)
(cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
(cua-indent-to-global-mark-column):
* calendar/diary-lib.el (calendar-mark-1):
* calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
Use with-current-buffer.
* emulation/viper.el (viper-delocalize-var): Use dolist.
2009-11-03 02:04:29 +00:00
|
|
|
(eshell-print (with-current-buffer outbuf (buffer-string)))
|
|
|
|
(eshell-error (with-current-buffer errbuf (buffer-string))))
|
2000-06-23 05:24:10 +00:00
|
|
|
(eshell-close-handles exitcode 'nil)
|
|
|
|
(kill-buffer outbuf)
|
|
|
|
(kill-buffer errbuf))))
|
|
|
|
|
|
|
|
(defun eshell-external-command (command args)
|
|
|
|
"Insert output from an external COMMAND, using ARGS."
|
|
|
|
(setq args (eshell-stringify-list (eshell-flatten-list args)))
|
2009-11-24 10:25:54 +00:00
|
|
|
(if (string-equal (file-remote-p default-directory 'method) "ftp")
|
|
|
|
(eshell-remote-command command args))
|
|
|
|
(let ((interp (eshell-find-interpreter command)))
|
|
|
|
(assert interp)
|
|
|
|
(if (functionp (car interp))
|
|
|
|
(apply (car interp) (append (cdr interp) args))
|
|
|
|
(eshell-gather-process-output
|
|
|
|
(car interp) (append (cdr interp) args)))))
|
2000-06-23 05:24:10 +00:00
|
|
|
|
|
|
|
(defun eshell/addpath (&rest args)
|
|
|
|
"Add a set of paths to PATH."
|
|
|
|
(eshell-eval-using-options
|
|
|
|
"addpath" args
|
|
|
|
'((?b "begin" nil prepend "add path element at beginning")
|
|
|
|
(?h "help" nil nil "display this usage message")
|
|
|
|
:usage "[-b] PATH
|
|
|
|
Adds the given PATH to $PATH.")
|
|
|
|
(if args
|
|
|
|
(progn
|
|
|
|
(if prepend
|
|
|
|
(setq args (nreverse args)))
|
|
|
|
(while args
|
|
|
|
(setenv "PATH"
|
|
|
|
(if prepend
|
|
|
|
(concat (car args) path-separator
|
|
|
|
(getenv "PATH"))
|
|
|
|
(concat (getenv "PATH") path-separator
|
|
|
|
(car args))))
|
|
|
|
(setq args (cdr args))))
|
|
|
|
(let ((paths (parse-colon-path (getenv "PATH"))))
|
|
|
|
(while paths
|
|
|
|
(eshell-printn (car paths))
|
|
|
|
(setq paths (cdr paths)))))))
|
|
|
|
|
Set the property `eshell-no-numeric-conversions' on the following
functions (which all deal with filesystem entities, and never Lisp
numerical values): eshell/cd, eshell/pushd, eshell/popd, eshell/ls,
eshell/source, eshell/., eshell/man, eshell/rm, eshell/mkdir,
eshell/rmdir, eshell/mv, eshell/cp, eshell/ln, eshell/cat,
eshell/make, eshell/diff, eshell/locate, eshell/occur, eshell/which,
eshell/addpath.
2001-05-10 03:47:24 +00:00
|
|
|
(put 'eshell/addpath 'eshell-no-numeric-conversions t)
|
|
|
|
|
2000-06-23 05:24:10 +00:00
|
|
|
(defun eshell-script-interpreter (file)
|
|
|
|
"Extract the script to run from FILE, if it has #!<interp> in it.
|
|
|
|
Return nil, or a list of the form:
|
|
|
|
|
|
|
|
(INTERPRETER [ARGS] FILE)"
|
|
|
|
(let ((maxlen eshell-command-interpreter-max-length))
|
|
|
|
(if (and (file-readable-p file)
|
|
|
|
(file-regular-p file))
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert-file-contents-literally file nil 0 maxlen)
|
2002-04-12 20:11:06 +00:00
|
|
|
(if (looking-at "#![ \t]*\\([^ \r\t\n]+\\)\\([ \t]+\\(.+\\)\\)?")
|
2000-06-23 05:24:10 +00:00
|
|
|
(if (match-string 3)
|
|
|
|
(list (match-string 1)
|
|
|
|
(match-string 3)
|
|
|
|
file)
|
|
|
|
(list (match-string 1)
|
|
|
|
file)))))))
|
|
|
|
|
|
|
|
(defun eshell-find-interpreter (file &optional no-examine-p)
|
|
|
|
"Find the command interpreter with which to execute FILE.
|
|
|
|
If NO-EXAMINE-P is non-nil, FILE will not be inspected for a script
|
|
|
|
line of the form #!<interp>."
|
|
|
|
(let ((finterp
|
|
|
|
(catch 'found
|
|
|
|
(ignore
|
|
|
|
(eshell-for possible eshell-interpreter-alist
|
|
|
|
(cond
|
|
|
|
((functionp (car possible))
|
|
|
|
(and (funcall (car possible) file)
|
|
|
|
(throw 'found (cdr possible))))
|
|
|
|
((stringp (car possible))
|
|
|
|
(and (string-match (car possible) file)
|
|
|
|
(throw 'found (cdr possible))))
|
|
|
|
(t
|
|
|
|
(error "Invalid interpreter-alist test"))))))))
|
|
|
|
(if finterp ; first check
|
|
|
|
(list finterp file)
|
|
|
|
(let ((fullname (if (file-name-directory file) file
|
|
|
|
(eshell-search-path file)))
|
|
|
|
(suffixes eshell-binary-suffixes))
|
|
|
|
(if (and fullname (not (or eshell-force-execution
|
|
|
|
(file-executable-p fullname))))
|
|
|
|
(while suffixes
|
|
|
|
(let ((try (concat fullname (car suffixes))))
|
|
|
|
(if (or (file-executable-p try)
|
|
|
|
(and eshell-force-execution
|
|
|
|
(file-readable-p try)))
|
|
|
|
(setq fullname try suffixes nil)
|
|
|
|
(setq suffixes (cdr suffixes))))))
|
|
|
|
(cond ((not (and fullname (file-exists-p fullname)))
|
|
|
|
(let ((name (or fullname file)))
|
|
|
|
(unless (setq fullname
|
|
|
|
(run-hook-with-args-until-success
|
|
|
|
'eshell-alternate-command-hook file))
|
|
|
|
(error "%s: command not found" name))))
|
|
|
|
((not (or eshell-force-execution
|
|
|
|
(file-executable-p fullname)))
|
|
|
|
(error "%s: Permission denied" fullname)))
|
|
|
|
(let (interp)
|
|
|
|
(unless no-examine-p
|
|
|
|
(setq interp (eshell-script-interpreter fullname))
|
|
|
|
(if interp
|
|
|
|
(setq interp
|
|
|
|
(cons (car (eshell-find-interpreter (car interp) t))
|
|
|
|
(cdr interp)))))
|
|
|
|
(or interp (list fullname)))))))
|
|
|
|
|
2008-04-10 14:10:46 +00:00
|
|
|
;; arch-tag: 178d4064-7e60-4745-b81f-bab5d8d7c40f
|
2000-06-23 05:24:10 +00:00
|
|
|
;;; esh-ext.el ends here
|