]> code.delx.au - gnu-emacs/blob - lisp/uniquify.el
(uniquify-rationalize-file-buffer-names): If
[gnu-emacs] / lisp / uniquify.el
1 ;;; uniquify.el --- unique buffer names dependent on pathname
2
3 ;; Copyright (c) 1989, 1995 Free Software Foundation, Inc.
4
5 ;; Author: Dick King <king@reasoning.com>
6 ;; Maintainer: Michael Ernst <mernst@theory.lcs.mit.edu>
7 ;; Created: 15 May 86
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;; Emacs's standard method for making buffer names unique adds <2>, <3>,
28 ;; etc. to the end of (all but one of) the buffers. This file replaces
29 ;; that behavior, for buffers visiting files and dired buffers, with a
30 ;; uniquification that adds parts of the pathname until the buffer names
31 ;; are unique. For instance, buffers visiting /u/mernst/tmp/Makefile and
32 ;; /usr/projects/zaphod/Makefile would be named Makefile|tmp and
33 ;; Makefile|zaphod, respectively (instead of Makefile and Makefile<2>).
34 ;; Other buffer name styles are also available.
35
36 ;; To use this file, just load it.
37 ;; To disable it after loading, set variable uniquify-buffer-name-style to nil.
38 ;; For other options, see "User-visible variables", below.
39
40 ;; A version of uniquify.el that works under Emacs 18, Emacs 19, XEmacs,
41 ;; and InfoDock is available from the maintainer.
42
43 ;;; Change Log:
44
45 ;; Originally by Dick King <king@reasoning.com> 15 May 86
46 ;; Converted for Emacs 18 by Stephen Gildea <gildea@lcs.mit.edu>
47 ;; Make uniquify-min-dir-content 0 truly non-invasive. gildea 23 May 89
48 ;; Some cleanup. uniquify-min-dir-content default 0. gildea 01 Jun 89
49 ;; Don't rename to "". Michael Ernst <mernst@theory.lcs.mit.edu> 15 Jun 94
50 ;; Add kill-buffer-hook. Kenneth Manheimer <ken.manheimer@nist.gov> 09 May 95
51 ;; Add advice for rename-buffer and create-file-buffer, handle dired buffers,
52 ;; kill-buffer-rationalize-buffer-names-p, documentation. mernst 24 May 95
53 ;; Remove free variables, fix typos. mernst 5 Jun 95
54 ;; Efficiently support Emacs 19.27 & earlier. ken.manheimer, mernst 10 Jun 95
55 ;; Rename user options to "uniquify-...", add uniquify-reverse-dir-content-p,
56 ;; add uniquify-ask-about-buffer-names-p. king, mernst 13 Jun 95
57 ;; Prefix functions by "uniquify-..."; rename mnemonic-buffer-names to
58 ;; uniquify-buffer-name-style; add 'forward and 'post-forward-angle-brackets
59 ;; styles; remove uniquify-reverse-dir-content-p; add
60 ;; uniquify-trailing-separator-p. mernst 4 Aug 95
61
62 ;; Valuable feedback was provided by
63 ;; Paul Smith <psmith@baynetworks.com>,
64 ;; Alastair Burt <burt@dfki.uni-kl.de>,
65 ;; Bob Weiner <weiner@footloose.sps.mot.com>,
66 ;; Albert L. Ting <alt@vlibs.com>,
67 ;; gyro@reasoning.com.
68
69
70 ;;; Code:
71
72 (provide 'uniquify)
73
74 ;;; User-visible variables
75
76 (defvar uniquify-buffer-name-style 'post-forward
77 "*If non-nil, buffer names are uniquified with parts of directory name.
78 The value determines the buffer name style and is one of 'forward,
79 'reverse, 'post-forward (the default), or 'post-forward-angle-brackets.
80 For example, files /foo/bar/mumble/name and /baz/quux/mumble/name
81 would be in the following buffers:
82 forward bar/mumble/name quux/mumble/name
83 reverse name\\mumble\\bar name\\mumble\\quux
84 post-forward name|bar/mumble name|quux/mumble
85 post-forward-angle-brackets name<bar/mumble> name<quux/mumble>
86 nil name name<2>")
87
88 (defvar uniquify-after-kill-buffer-p nil
89 "*If non-nil, rerationalize buffer names after a buffer has been killed.
90 This can be dangerous if Emacs Lisp code is keeping track of buffers by their
91 names (rather than keeping pointers to the buffers themselves).")
92
93 (defconst uniquify-ask-about-buffer-names-p nil
94 "*If non-nil, permit user to choose names for buffers with same base file.
95 If the user chooses to name a buffer, uniquification is preempted and no
96 other buffer names are changed.")
97
98 (defvar uniquify-min-dir-content 0
99 "*Minimum parts of directory pathname included in buffer name.")
100
101 (defvar uniquify-separator nil
102 "*String separator for buffer name components.
103 When `uniquify-buffer-name-style' is 'post-forward, separates
104 base file name from directory part in buffer names (default \"|\").
105 When `uniquify-buffer-name-style' is 'reverse, separates all
106 pathname components (default \"\\\").")
107
108 (defvar uniquify-trailing-separator-p nil
109 "*If non-nil, add a pathname separator to dired buffer names.
110 If `uniquify-buffer-name-style' is 'forward, add the separator at the end;
111 if it's is 'reverse, add the separator at the beginning; otherwise, this
112 variable is ignored.")
113
114
115 ;;; Utilities
116
117 (defmacro uniquify-push (item list)
118 (` (setq (, list) (cons (, item) (, list)))))
119
120 (defmacro uniquify-fix-list-base (a)
121 (` (car (, a))))
122
123 (defmacro uniquify-fix-list-filename (a)
124 (` (car (cdr (, a)))))
125
126 (defmacro uniquify-fix-list-buffer (a)
127 (` (car (cdr (cdr (, a))))))
128
129 (defmacro uniquify-cadddr (a)
130 (` (car (cdr (cdr (cdr (, a)))))))
131
132 ;; Internal variables used free
133 (defvar uniquify-non-file-buffer-names nil)
134 (defvar uniquify-possibly-resolvable nil)
135
136 ;;; Main entry point.
137
138 (defun uniquify-rationalize-file-buffer-names (&optional newbuffile newbuf)
139 "Makes file buffer names unique by adding segments from pathname.
140 If `uniquify-min-dir-content' > 0, always pulls that many
141 pathname elements. Arguments cause only a subset of buffers to be renamed."
142 (interactive)
143 (let (fix-list
144 uniquify-non-file-buffer-names
145 (depth uniquify-min-dir-content))
146 (let ((buffers (buffer-list)))
147 (while buffers
148 (let* ((buffer (car buffers))
149 (bfn (if (eq buffer newbuf)
150 (and newbuffile
151 (expand-file-name newbuffile))
152 (uniquify-buffer-file-name buffer)))
153 (rawname (and bfn (file-name-nondirectory bfn)))
154 (deserving (and rawname
155 (or (not newbuffile)
156 (equal rawname
157 (file-name-nondirectory newbuffile))))))
158 (if deserving
159 (uniquify-push (list rawname bfn buffer nil) fix-list)
160 (uniquify-push (list (buffer-name buffer))
161 uniquify-non-file-buffer-names)))
162 (setq buffers (cdr buffers))))
163 ;; selects buffers whose names may need changing, and others that
164 ;; may conflict.
165 (setq fix-list
166 (sort fix-list 'uniquify-fix-list-filename-lessp))
167 ;; bringing conflicting names together
168 (uniquify-rationalize-a-list fix-list depth)
169 (mapcar 'uniquify-unrationalized-buffer fix-list)))
170
171 ;; uniquify's version of buffer-file-name
172 (defun uniquify-buffer-file-name (buffer)
173 "Return name of file BUFFER is visiting, or nil if none.
174 Works on dired buffers as well as ordinary file-visiting buffers."
175 (or (buffer-file-name buffer)
176 (save-excursion
177 (set-buffer buffer)
178 list-buffers-directory)))
179
180 (defun uniquify-fix-list-filename-lessp (fixlist1 fixlist2)
181 (uniquify-filename-lessp
182 (uniquify-fix-list-filename fixlist1) (uniquify-fix-list-filename fixlist2)))
183
184 ;; This examines the filename components in reverse order.
185 (defun uniquify-filename-lessp (s1 s2)
186 (let ((s1f (file-name-nondirectory s1))
187 (s2f (file-name-nondirectory s2)))
188 (and (not (equal s2f ""))
189 (or (string-lessp s1f s2f)
190 (and (equal s1f s2f)
191 (let ((s1d (file-name-directory s1))
192 (s2d (file-name-directory s2)))
193 (and (not (<= (length s2d) 1))
194 (or (<= (length s1d) 1)
195 (uniquify-filename-lessp
196 (substring s1d 0 -1)
197 (substring s2d 0 -1))))))))))
198
199 ;; Was named do-the-buffers-you-couldnt-rationalize
200 (defun uniquify-unrationalized-buffer (item)
201 (or (uniquify-cadddr item) nil)) ;maybe better in the future
202
203 (defun uniquify-rationalize-a-list (fix-list depth)
204 (let (conflicting-sublist
205 (old-name "")
206 proposed-name uniquify-possibly-resolvable)
207 (while fix-list
208 (let ((item (car fix-list)))
209 (setq proposed-name (uniquify-get-proposed-name item depth))
210 (if (not (equal proposed-name old-name))
211 (progn
212 (uniquify-rationalize-conflicting-sublist
213 conflicting-sublist old-name depth)
214 (setq conflicting-sublist nil)))
215 (uniquify-push item conflicting-sublist)
216 (setq old-name proposed-name))
217 (setq fix-list (cdr fix-list)))
218 (uniquify-rationalize-conflicting-sublist
219 conflicting-sublist old-name depth)))
220
221 (defun uniquify-get-proposed-name (item depth)
222 (let (index
223 (extra-string "")
224 (n depth)
225 (base (uniquify-fix-list-base item))
226 (fn (uniquify-fix-list-filename item)))
227 (while (and (> n 0)
228 (setq index (string-match
229 (concat "\\(^\\|/[^/]*\\)/"
230 (regexp-quote extra-string)
231 (regexp-quote base)
232 "\\'")
233 fn)))
234 (setq extra-string (substring fn
235 (if (zerop index) 0 (1+ index))
236 ;; (- (length base)) fails for base = "".
237 ;; Equivalently, we could have used
238 ;; (apply 'substring ...
239 ;; (and (not (string= "" base))
240 ;; (list (- (length base)))))
241 (- (length fn) (length base)))
242 n (1- n)))
243 (if (zerop n) (setq uniquify-possibly-resolvable t))
244
245
246 ;; Distinguish directories by adding extra separator.
247 (if (and uniquify-trailing-separator-p
248 (file-directory-p fn)
249 (not (string-equal base "")))
250 (cond ((eq uniquify-buffer-name-style 'forward)
251 (setq base (concat base "/")))
252 ((eq uniquify-buffer-name-style 'reverse)
253 (setq base (concat (or uniquify-separator "\\") base)))))
254
255 ;; Trim trailing separator on directory part
256 (if (and (not (string-equal extra-string ""))
257 (or (eq uniquify-buffer-name-style 'post-forward)
258 (eq uniquify-buffer-name-style 'post-forward-angle-brackets)))
259 (setq extra-string (substring extra-string 0
260 (- (length extra-string) 1))))
261
262 (cond ((string-equal extra-string "")
263 base)
264 ((string-equal base "")
265 extra-string)
266 ((eq uniquify-buffer-name-style 'forward)
267 (concat extra-string base))
268 ((eq uniquify-buffer-name-style 'reverse)
269 (concat base (uniquify-reverse-components extra-string)))
270 ((eq uniquify-buffer-name-style 'post-forward)
271 (concat base (or uniquify-separator "|") extra-string))
272 ((eq uniquify-buffer-name-style 'post-forward-angle-brackets)
273 (concat base "<" extra-string ">"))
274 (t (error "Bad value for uniquify-buffer-name-style: %s"
275 uniquify-buffer-name-style)))))
276
277
278 ;; Deal with conflicting-sublist, which is set by uniquify-rationalize-a-list.
279 ;; This is only called by uniquify-rationalize-a-list.
280 (defun uniquify-rationalize-conflicting-sublist (conflicting-sublist old-name depth)
281 (or (null conflicting-sublist)
282 (and (null (cdr conflicting-sublist))
283 (not (assoc old-name uniquify-non-file-buffer-names))
284 (or (and (not (string= old-name ""))
285 (uniquify-rename-buffer (car conflicting-sublist) old-name))
286 t))
287 (if uniquify-possibly-resolvable
288 (uniquify-rationalize-a-list conflicting-sublist (1+ depth)))))
289
290 (defun uniquify-rename-buffer (item newname)
291 (let ((buffer (uniquify-fix-list-buffer item)))
292 (if (not (equal newname (buffer-name buffer)))
293 (let ((unset (current-buffer))
294 ;; avoid hooks on rename-buffer
295 (uniquify-buffer-name-style nil))
296 (set-buffer buffer)
297 (rename-buffer newname)
298 (set-buffer unset))))
299 (rplaca (nthcdr 3 item) t))
300
301 (defun uniquify-reverse-components (instring)
302 (let ((sofar '())
303 (cursor 0)
304 (len (length instring))
305 (sep (or uniquify-separator "\\")))
306 (while (< cursor len)
307 (if (= (aref instring cursor) ?/)
308 (setq sofar (cons sep sofar)
309 cursor (1+ cursor))
310 (let ((first-slash (or (string-match "/" instring cursor) len)))
311 (setq sofar (cons (substring instring cursor first-slash) sofar)
312 cursor first-slash))))
313 (apply (function concat) sofar)))
314
315
316 ;;; Hooks from the rest of Emacs
317
318 ;; Emacs 19 (GNU Emacs or XEmacs)
319
320 ;; The logical place to put all this code is in generate-new-buffer-name.
321 ;; It's written in C, so we would add a generate-new-buffer-name-function
322 ;; which, if non-nil, would be called instead of the C. One problem with
323 ;; that is that generate-new-buffer-name takes a potential buffer name as
324 ;; its argument -- not other information, such as what file the buffer will
325 ;; visit.
326
327 ;; The below solution works because generate-new-buffer-name is called
328 ;; only by rename-buffer (which, as of 19.29, is never called from C) and
329 ;; generate-new-buffer, which is called only by Lisp functions
330 ;; create-file-buffer and rename-uniquely. Rename-uniquely generally
331 ;; isn't used for buffers visiting files, so it's sufficient to hook
332 ;; rename-buffer and create-file-buffer. (Setting find-file-hooks isn't
333 ;; sufficient.)
334
335 (defadvice rename-buffer (after rename-buffer-uniquify activate)
336 "Uniquify buffer names with parts of directory name."
337 (if (and uniquify-buffer-name-style
338 ;; UNIQUE argument
339 (ad-get-arg 1))
340 (progn
341 (if uniquify-after-kill-buffer-p
342 ;; call with no argument; rationalize vs. old name as well as new
343 (uniquify-rationalize-file-buffer-names)
344 ;; call with argument: rationalize vs. new name only
345 (uniquify-rationalize-file-buffer-names
346 (uniquify-buffer-file-name (current-buffer)) (current-buffer)))
347 (setq ad-return-value (buffer-name (current-buffer))))))
348
349 (defadvice create-file-buffer (after create-file-buffer-uniquify activate)
350 "Uniquify buffer names with parts of directory name."
351 (if uniquify-buffer-name-style
352 (uniquify-rationalize-file-buffer-names (ad-get-arg 0) ad-return-value)))
353
354 ;; Buffer deletion
355 ;; Rerationalize after a buffer is killed, to reduce coinciding buffer names.
356 ;; This mechanism uses `kill-buffer-hook', which runs *before* deletion.
357 ;; That means that the kill-buffer-hook function cannot just delete the
358 ;; buffer -- it has to set something to do the rationalization *later*.
359 ;; It actually puts another function on `post-command-hook'. This other
360 ;; function runs the rationalization and then removes itself from the hook.
361 ;; Is there a better way to accomplish this?
362 ;; (This ought to set some global variables so the work is done only for
363 ;; buffers with names similar to the deleted buffer. -MDE)
364
365 (defun delay-uniquify-rationalize-file-buffer-names ()
366 "Add `delayed-uniquify-rationalize-file-buffer-names' to `post-command-hook'.
367 For use on, eg, `kill-buffer-hook', to rationalize *after* buffer deletion."
368 (if (and uniquify-buffer-name-style
369 uniquify-after-kill-buffer-p)
370 (add-hook 'post-command-hook
371 'delayed-uniquify-rationalize-file-buffer-names)))
372
373 (defun delayed-uniquify-rationalize-file-buffer-names ()
374 "Rerationalize buffer names and remove self from `post-command-hook'.
375 See also `delay-rationalize-file-buffer-names' for hook setter."
376 (uniquify-rationalize-file-buffer-names)
377 (remove-hook 'post-command-hook
378 'delayed-uniquify-rationalize-file-buffer-names))
379
380 (add-hook 'kill-buffer-hook 'delay-uniquify-rationalize-file-buffer-names)
381
382 ;;; uniquify.el ends here
383