* bitmaps/README:
[bpt/emacs.git] / lisp / dirtrack.el
CommitLineData
76889e51
RS
1;;; dirtrack.el --- Directory Tracking by watching the prompt
2
e91081eb 3;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005,
409cc4a3 4;; 2006, 2007, 2008 Free Software Foundation, Inc.
76889e51 5
d1212648 6;; Author: Peter Breton <pbreton@cs.umb.edu>
76889e51
RS
7;; Created: Sun Nov 17 1996
8;; Keywords: processes
76889e51
RS
9
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
76889e51 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
76889e51
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
76889e51
RS
24
25;;; Commentary:
26
27;; Shell directory tracking by watching the prompt.
28;;
29;; This is yet another attempt at a directory-tracking package for
df8a0bff 30;; Emacs shell-mode. However, this package makes one strong assumption:
76889e51 31;; that you can customize your shell's prompt to contain the
df8a0bff 32;; current working directory. Most shells do support this, including
76889e51
RS
33;; almost every type of Bourne and C shell on Unix, the native shells on
34;; Windows95 (COMMAND.COM) and Windows NT (CMD.EXE), and most 3rd party
df8a0bff 35;; Windows shells. If you cannot do this, or do not wish to, this package
76889e51
RS
36;; will be useless to you.
37;;
38;; Installation:
39;;
40;; 1) Set your shell's prompt to contain the current working directory.
41;; You may need to consult your shell's documentation to find out how to
42;; do this.
c60ee5e7
JB
43;;
44;; Note that directory tracking is done by matching regular expressions,
76889e51 45;; therefore it is *VERY IMPORTANT* for your prompt to be easily
df8a0bff 46;; distinguishable from other output. If your prompt regexp is too general,
76889e51
RS
47;; you will see error messages from the dirtrack filter as it attempts to cd
48;; to non-existent directories.
49;;
df8a0bff 50;; 2) Set the variable `dirtrack-list' to an appropriate value. This
76889e51
RS
51;; should be a list of two elements: the first is a regular expression
52;; which matches your prompt up to and including the pathname part.
c60ee5e7 53;; The second is a number which tells which regular expression group to
df8a0bff
SM
54;; match to extract only the pathname. If you use a multi-line prompt,
55;; add 't' as a third element. Note that some of the functions in
76889e51 56;; 'comint.el' assume a single-line prompt (eg, comint-bol).
c60ee5e7 57;;
ac37dedb
GM
58;; Determining this information may take some experimentation. Using
59;; `dirtrack-debug-mode' may help; it causes the directory-tracking
60;; filter to log messages to the buffer `dirtrack-debug-buffer'.
c60ee5e7 61;;
ac37dedb
GM
62;; 3) Activate `dirtrack-mode'. You may wish to turn ordinary shell
63;; tracking off by calling `shell-dirtrack-mode'.
76889e51
RS
64;;
65;; Examples:
66;;
67;; 1) On Windows NT, my prompt is set to emacs$S$P$G.
68;; 'dirtrack-list' is set to (list "^emacs \\([a-zA-Z]:.*\\)>" 1)
69;;
70;; 2) On Solaris running bash, my prompt is set like this:
71;; PS1="\w\012emacs@\h(\!) [\t]% "
72;; 'dirtrack-list' is set to (list "^\\([/~].*\\)\nemacs@[^%]+% *" 1 t)
73;;
74;; I'd appreciate other examples from people who use this package.
c60ee5e7 75;;
d1212648
RS
76;; Here's one from Stephen Eglen:
77;;
78;; Running under tcsh:
79;; (setq-default dirtrack-list '("^%E \\([^ ]+\\)" 1))
c60ee5e7 80;;
d1212648
RS
81;; It might be worth mentioning in your file that emacs sources start up
82;; files of the form: ~/.emacs_<SHELL> where <SHELL> is the name of the
83;; shell. So for example, I have the following in ~/.emacs_tcsh:
c60ee5e7 84;;
d1212648 85;; set prompt = "%%E %~ %h% "
c60ee5e7 86;;
d1212648 87;; This produces a prompt of the form:
c60ee5e7
JB
88;; %E /var/spool 10%
89;;
d1212648
RS
90;; This saves me from having to use the %E prefix in other non-emacs
91;; shells.
261f6363
KH
92;;
93;; A final note:
c60ee5e7 94;;
9b4b0c9e
RS
95;; I run LOTS of shell buffers through Emacs, sometimes as different users
96;; (eg, when logged in as myself, I'll run a root shell in the same Emacs).
97;; If you do this, and the shell prompt contains a ~, Emacs will interpret
98;; this relative to the user which owns the Emacs process, not the user
df8a0bff 99;; who owns the shell buffer. This may cause dirtrack to behave strangely
9b4b0c9e 100;; (typically it reports that it is unable to cd to a directory
261f6363
KH
101;; with a ~ in it).
102;;
9b4b0c9e
RS
103;; The same behavior can occur if you use dirtrack with remote filesystems
104;; (using telnet, rlogin, etc) as Emacs will be checking the local
df8a0bff 105;; filesystem, not the remote one. This problem is not specific to dirtrack,
9b4b0c9e 106;; but also affects file completion, etc.
76889e51
RS
107
108;;; Code:
109
110(eval-when-compile
111 (require 'comint)
112 (require 'shell))
113
d1212648
RS
114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
115;; Customization Variables
116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
117
118(defgroup dirtrack nil
119 "Directory tracking by watching the prompt."
120 :prefix "dirtrack-"
121 :group 'shell)
122
123(defcustom dirtrack-list (list "^emacs \\([a-zA-Z]:.*\\)>" 1)
df8a0bff 124 "List for directory tracking.
76889e51 125First item is a regexp that describes where to find the path in a prompt.
4f5ab6d5
JB
126Second is a number, the regexp group to match. Optional third item is
127whether the prompt is multi-line. If nil or omitted, prompt is assumed to
d1212648
RS
128be on a single line."
129 :group 'dirtrack
c60ee5e7 130 :type '(sexp (regexp :tag "Prompt Expression")
d1212648 131 (integer :tag "Regexp Group")
df8a0bff 132 (boolean :tag "Multiline Prompt")))
76889e51
RS
133
134(make-variable-buffer-local 'dirtrack-list)
135
d1212648 136(defcustom dirtrack-debug nil
df8a0bff 137 "If non-nil, the function `dirtrack' will report debugging info."
d1212648 138 :group 'dirtrack
df8a0bff 139 :type 'boolean)
76889e51 140
d1212648 141(defcustom dirtrack-debug-buffer "*Directory Tracking Log*"
ac37dedb 142 "Buffer in which to write directory tracking debug information."
d1212648 143 :group 'dirtrack
df8a0bff 144 :type 'string)
76889e51 145
d1212648 146(defcustom dirtrackp t
df8a0bff 147 "If non-nil, directory tracking via `dirtrack' is enabled."
d1212648 148 :group 'dirtrack
df8a0bff 149 :type 'boolean)
76889e51
RS
150
151(make-variable-buffer-local 'dirtrackp)
152
c60ee5e7
JB
153(defcustom dirtrack-directory-function
154 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
76889e51 155 'dirtrack-windows-directory-function
df8a0bff
SM
156 'file-name-as-directory)
157 "Function to apply to the prompt directory for comparison purposes."
d1212648 158 :group 'dirtrack
df8a0bff 159 :type 'function)
76889e51 160
c60ee5e7
JB
161(defcustom dirtrack-canonicalize-function
162 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
76889e51 163 'downcase 'identity)
df8a0bff 164 "Function to apply to the default directory for comparison purposes."
d1212648 165 :group 'dirtrack
df8a0bff 166 :type 'function)
d1212648 167
12b0f451
KH
168(defcustom dirtrack-directory-change-hook nil
169 "Hook that is called when a directory change is made."
170 :group 'dirtrack
df8a0bff 171 :type 'hook)
12b0f451
KH
172
173
d1212648
RS
174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
175;; Functions
176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
76889e51 177
76889e51
RS
178
179(defun dirtrack-windows-directory-function (dir)
180 "Return a canonical directory for comparison purposes.
c60ee5e7 181Such a directory is all lowercase, has forward-slashes as delimiters,
76889e51 182and ends with a forward slash."
df8a0bff 183 (file-name-as-directory (downcase (subst-char-in-string ?\\ ?/ dir))))
76889e51 184
b9e316dd
PB
185(defun dirtrack-cygwin-directory-function (dir)
186 "Return a canonical directory taken from a Cygwin path for comparison purposes."
187 (if (string-match "/cygdrive/\\([A-Z]\\)\\(.*\\)" dir)
188 (concat (match-string 1 dir) ":" (match-string 2 dir))
189 dir))
190
ac37dedb
GM
191
192;;;###autoload
193(define-minor-mode dirtrack-mode
194 "Enable or disable Dirtrack directory tracking in a shell buffer.
370d4074
GM
195This method requires that your shell prompt contain the full
196current working directory at all times, and that `dirtrack-list'
197is set to match the prompt. This is an alternative to
198`shell-dirtrack-mode', which works differently, by tracking `cd'
199and similar commands which change the shell working directory."
ac37dedb
GM
200 nil nil nil
201 (if dirtrack-mode
df8a0bff 202 (add-hook 'comint-preoutput-filter-functions 'dirtrack nil t)
ac37dedb 203 (remove-hook 'comint-preoutput-filter-functions 'dirtrack t)))
76889e51 204
ac37dedb
GM
205(define-obsolete-function-alias 'dirtrack-toggle 'dirtrack-mode "23.1")
206(define-obsolete-variable-alias 'dirtrackp 'dirtrack-mode "23.1")
207
208
209(define-minor-mode dirtrack-debug-mode
261f6363 210 "Enable or disable Dirtrack debugging."
ac37dedb
GM
211 nil nil nil
212 (if dirtrack-debug-mode
213 (display-buffer (get-buffer-create dirtrack-debug-buffer))))
214
215(define-obsolete-function-alias 'dirtrack-debug-toggle 'dirtrack-debug-mode
216 "23.1")
217(define-obsolete-variable-alias 'dirtrack-debug 'dirtrack-debug-mode "23.1")
218
261f6363 219
76889e51 220(defun dirtrack-debug-message (string)
ac37dedb
GM
221 "Insert string at the end of `dirtrack-debug-buffer'."
222 (when dirtrack-debug-mode
223 (with-current-buffer (get-buffer-create dirtrack-debug-buffer)
224 (goto-char (point-max))
225 (insert (concat string "\n")))))
76889e51
RS
226
227;;;###autoload
228(defun dirtrack (input)
9b4b0c9e
RS
229 "Determine the current directory by scanning the process output for a prompt.
230The prompt to look for is the first item in `dirtrack-list'.
231
ac37dedb 232You can toggle directory tracking by using the function `dirtrack-mode'.
9b4b0c9e
RS
233
234If directory tracking does not seem to be working, you can use the
ac37dedb
GM
235function `dirtrack-debug-mode' to turn on debugging output."
236 (unless (or (null dirtrack-mode)
237 (eq (point) (point-min))) ; no output?
7ff58c39 238 (let (prompt-path
76889e51 239 (current-dir default-directory)
8e717a45 240 (dirtrack-regexp (nth 0 dirtrack-list))
76889e51 241 (match-num (nth 1 dirtrack-list))
df8a0bff
SM
242 ;; Currently unimplemented, it seems. --Stef
243 (multi-line (nth 2 dirtrack-list)))
244 (save-excursion
245 ;; No match
ac37dedb
GM
246 (if (not (string-match dirtrack-regexp input))
247 (dirtrack-debug-message
248 (format "Input `%s' failed to match `dirtrack-regexp'" input))
df8a0bff
SM
249 (setq prompt-path (match-string match-num input))
250 ;; Empty string
251 (if (not (> (length prompt-path) 0))
ac37dedb 252 (dirtrack-debug-message "Match is empty string")
df8a0bff
SM
253 ;; Transform prompts into canonical forms
254 (setq prompt-path (funcall dirtrack-directory-function
ac37dedb
GM
255 prompt-path)
256 current-dir (funcall dirtrack-canonicalize-function
df8a0bff 257 current-dir))
ac37dedb
GM
258 (dirtrack-debug-message
259 (format "Prompt is %s\nCurrent directory is %s"
260 prompt-path current-dir))
df8a0bff
SM
261 ;; Compare them
262 (if (or (string= current-dir prompt-path)
ac37dedb
GM
263 (string= current-dir (abbreviate-file-name prompt-path)))
264 (dirtrack-debug-message (format "Not changing directory"))
df8a0bff
SM
265 ;; It's possible that Emacs will think the directory
266 ;; won't exist (eg, rlogin buffers)
267 (if (file-accessible-directory-p prompt-path)
268 ;; Change directory
269 (and (shell-process-cd prompt-path)
270 (run-hooks 'dirtrack-directory-change-hook)
df8a0bff
SM
271 (dirtrack-debug-message
272 (format "Changing directory to %s" prompt-path)))
273 (error "Directory %s does not exist" prompt-path)))
274 )))))
9b4b0c9e 275 input)
76889e51
RS
276
277(provide 'dirtrack)
278
df8a0bff 279;; arch-tag: 168de071-be88-4937-aff6-2aba9f328d5a
76889e51 280;;; dirtrack.el ends here