Merge from emacs-23
[bpt/emacs.git] / lisp / dired-aux.el
1 ;;; dired-aux.el --- less commonly used parts of dired
2
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 1998, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
6
7 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>.
8 ;; Maintainer: FSF
9 ;; Keywords: files
10 ;; Package: emacs
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; The parts of dired mode not normally used. This is a space-saving hack
30 ;; to avoid having to load a large mode when all that's wanted are a few
31 ;; functions.
32
33 ;; Rewritten in 1990/1991 to add tree features, file marking and
34 ;; sorting by Sebastian Kremer <sk@thp.uni-koeln.de>.
35 ;; Finished up by rms in 1992.
36
37 ;;; Code:
38
39 ;; We need macros in dired.el to compile properly,
40 ;; and we call subroutines in it too.
41 (require 'dired)
42
43 (defvar dired-create-files-failures nil
44 "Variable where `dired-create-files' records failing file names.
45 Functions that operate recursively can store additional names
46 into this list; they also should call `dired-log' to log the errors.")
47
48 ;;; 15K
49 ;;;###begin dired-cmd.el
50 ;; Diffing and compressing
51
52 (defconst dired-star-subst-regexp "\\(^\\|[ \t]\\)\\*\\([ \t]\\|$\\)")
53 (defconst dired-quark-subst-regexp "\\(^\\|[ \t]\\)\\?\\([ \t]\\|$\\)")
54
55 ;;;###autoload
56 (defun dired-diff (file &optional switches)
57 "Compare file at point with file FILE using `diff'.
58 FILE defaults to the file at the mark. (That's the mark set by
59 \\[set-mark-command], not by Dired's \\[dired-mark] command.)
60 The prompted-for file is the first file given to `diff'.
61 With prefix arg, prompt for second argument SWITCHES,
62 which is options for `diff'."
63 (interactive
64 (let* ((current (dired-get-filename t))
65 ;; Get the file at the mark.
66 (file-at-mark (if (mark t)
67 (save-excursion (goto-char (mark t))
68 (dired-get-filename t t))))
69 ;; Use it as default if it's not the same as the current file,
70 ;; and the target dir is the current dir or the mark is active.
71 (default (if (and (not (equal file-at-mark current))
72 (or (equal (dired-dwim-target-directory)
73 (dired-current-directory))
74 mark-active))
75 file-at-mark))
76 (target-dir (if default
77 (dired-current-directory)
78 (dired-dwim-target-directory)))
79 (defaults (dired-dwim-target-defaults (list current) target-dir)))
80 (require 'diff)
81 (list
82 (minibuffer-with-setup-hook
83 (lambda ()
84 (set (make-local-variable 'minibuffer-default-add-function) nil)
85 (setq minibuffer-default defaults))
86 (read-file-name
87 (format "Diff %s with%s: " current
88 (if default (format " (default %s)" default) ""))
89 target-dir default t))
90 (if current-prefix-arg
91 (read-string "Options for diff: "
92 (if (stringp diff-switches)
93 diff-switches
94 (mapconcat 'identity diff-switches " ")))))))
95 (let ((current (dired-get-filename t)))
96 (when (or (equal (expand-file-name file)
97 (expand-file-name current))
98 (and (file-directory-p file)
99 (equal (expand-file-name current file)
100 (expand-file-name current))))
101 (error "Attempt to compare the file to itself"))
102 (diff file current switches)))
103
104 ;;;###autoload
105 (defun dired-backup-diff (&optional switches)
106 "Diff this file with its backup file or vice versa.
107 Uses the latest backup, if there are several numerical backups.
108 If this file is a backup, diff it with its original.
109 The backup file is the first file given to `diff'.
110 With prefix arg, prompt for argument SWITCHES which is options for `diff'."
111 (interactive
112 (if current-prefix-arg
113 (list (read-string "Options for diff: "
114 (if (stringp diff-switches)
115 diff-switches
116 (mapconcat 'identity diff-switches " "))))
117 nil))
118 (diff-backup (dired-get-filename) switches))
119
120 ;;;###autoload
121 (defun dired-compare-directories (dir2 predicate)
122 "Mark files with different file attributes in two dired buffers.
123 Compare file attributes of files in the current directory
124 with file attributes in directory DIR2 using PREDICATE on pairs of files
125 with the same name. Mark files for which PREDICATE returns non-nil.
126 Mark files with different names if PREDICATE is nil (or interactively
127 with empty input at the predicate prompt).
128
129 PREDICATE is a Lisp expression that can refer to the following variables:
130
131 size1, size2 - file size in bytes
132 mtime1, mtime2 - last modification time in seconds, as a float
133 fa1, fa2 - list of file attributes
134 returned by function `file-attributes'
135
136 where 1 refers to attribute of file in the current dired buffer
137 and 2 to attribute of file in second dired buffer.
138
139 Examples of PREDICATE:
140
141 (> mtime1 mtime2) - mark newer files
142 (not (= size1 size2)) - mark files with different sizes
143 (not (string= (nth 8 fa1) (nth 8 fa2))) - mark files with different modes
144 (not (and (= (nth 2 fa1) (nth 2 fa2)) - mark files with different UID
145 (= (nth 3 fa1) (nth 3 fa2)))) and GID."
146 (interactive
147 (list
148 (let* ((target-dir (dired-dwim-target-directory))
149 (defaults (dired-dwim-target-defaults nil target-dir)))
150 (minibuffer-with-setup-hook
151 (lambda ()
152 (set (make-local-variable 'minibuffer-default-add-function) nil)
153 (setq minibuffer-default defaults))
154 (read-directory-name (format "Compare %s with: "
155 (dired-current-directory))
156 target-dir target-dir t)))
157 (read-from-minibuffer "Mark if (lisp expr or RET): " nil nil t nil "nil")))
158 (let* ((dir1 (dired-current-directory))
159 (file-alist1 (dired-files-attributes dir1))
160 (file-alist2 (dired-files-attributes dir2))
161 file-list1 file-list2)
162 (setq file-alist1 (delq (assoc "." file-alist1) file-alist1))
163 (setq file-alist1 (delq (assoc ".." file-alist1) file-alist1))
164 (setq file-alist2 (delq (assoc "." file-alist2) file-alist2))
165 (setq file-alist2 (delq (assoc ".." file-alist2) file-alist2))
166 (setq file-list1 (mapcar
167 'cadr
168 (dired-file-set-difference
169 file-alist1 file-alist2
170 predicate))
171 file-list2 (mapcar
172 'cadr
173 (dired-file-set-difference
174 file-alist2 file-alist1
175 predicate)))
176 (dired-fun-in-all-buffers
177 dir1 nil
178 (lambda ()
179 (dired-mark-if
180 (member (dired-get-filename nil t) file-list1) nil)))
181 (dired-fun-in-all-buffers
182 dir2 nil
183 (lambda ()
184 (dired-mark-if
185 (member (dired-get-filename nil t) file-list2) nil)))
186 (message "Marked in dir1: %s files, in dir2: %s files"
187 (length file-list1)
188 (length file-list2))))
189
190 (defun dired-file-set-difference (list1 list2 predicate)
191 "Combine LIST1 and LIST2 using a set-difference operation.
192 The result list contains all file items that appear in LIST1 but not LIST2.
193 This is a non-destructive function; it makes a copy of the data if necessary
194 to avoid corrupting the original LIST1 and LIST2.
195 PREDICATE (see `dired-compare-directories') is an additional match
196 condition. Two file items are considered to match if they are equal
197 *and* PREDICATE evaluates to t."
198 (if (or (null list1) (null list2))
199 list1
200 (let (res)
201 (dolist (file1 list1)
202 (unless (let ((list list2))
203 (while (and list
204 (not (let* ((file2 (car list))
205 (fa1 (car (cddr file1)))
206 (fa2 (car (cddr file2)))
207 (size1 (nth 7 fa1))
208 (size2 (nth 7 fa2))
209 (mtime1 (float-time (nth 5 fa1)))
210 (mtime2 (float-time (nth 5 fa2))))
211 (and
212 (equal (car file1) (car file2))
213 (not (eval predicate))))))
214 (setq list (cdr list)))
215 list)
216 (setq res (cons file1 res))))
217 (nreverse res))))
218
219 (defun dired-files-attributes (dir)
220 "Return a list of all file names and attributes from DIR.
221 List has a form of (file-name full-file-name (attribute-list))."
222 (mapcar
223 (lambda (file-name)
224 (let ((full-file-name (expand-file-name file-name dir)))
225 (list file-name
226 full-file-name
227 (file-attributes full-file-name))))
228 (directory-files dir)))
229 \f
230
231 (defun dired-touch-initial (files)
232 "Create initial input value for `touch' command."
233 (let (initial)
234 (while files
235 (let ((current (nth 5 (file-attributes (car files)))))
236 (if (and initial (not (equal initial current)))
237 (setq initial (current-time) files nil)
238 (setq initial current))
239 (setq files (cdr files))))
240 (format-time-string "%Y%m%d%H%M.%S" initial)))
241
242 (defun dired-do-chxxx (attribute-name program op-symbol arg)
243 ;; Change file attributes (mode, group, owner, timestamp) of marked files and
244 ;; refresh their file lines.
245 ;; ATTRIBUTE-NAME is a string describing the attribute to the user.
246 ;; PROGRAM is the program used to change the attribute.
247 ;; OP-SYMBOL is the type of operation (for use in dired-mark-pop-up).
248 ;; ARG describes which files to use, as in dired-get-marked-files.
249 (let* ((files (dired-get-marked-files t arg))
250 (new-attribute
251 (dired-mark-read-string
252 (concat "Change " attribute-name " of %s to: ")
253 (if (eq op-symbol 'touch) (dired-touch-initial files))
254 op-symbol arg files))
255 (operation (concat program " " new-attribute))
256 failures)
257 (setq failures
258 (dired-bunch-files 10000
259 (function dired-check-process)
260 (append
261 (list operation program)
262 (if (eq op-symbol 'touch)
263 '("-t") nil)
264 (list new-attribute)
265 (if (string-match "gnu" system-configuration)
266 '("--") nil))
267 files))
268 (dired-do-redisplay arg);; moves point if ARG is an integer
269 (if failures
270 (dired-log-summary
271 (format "%s: error" operation)
272 nil))))
273
274 ;;;###autoload
275 (defun dired-do-chmod (&optional arg)
276 "Change the mode of the marked (or next ARG) files.
277 Symbolic modes like `g+w' are allowed."
278 (interactive "P")
279 (let* ((files (dired-get-marked-files t arg))
280 (modestr (and (stringp (car files))
281 (nth 8 (file-attributes (car files)))))
282 (default
283 (and (stringp modestr)
284 (string-match "^.\\(...\\)\\(...\\)\\(...\\)$" modestr)
285 (replace-regexp-in-string
286 "-" ""
287 (format "u=%s,g=%s,o=%s"
288 (match-string 1 modestr)
289 (match-string 2 modestr)
290 (match-string 3 modestr)))))
291 (modes (dired-mark-read-string
292 "Change mode of %s to: " nil
293 'chmod arg files default))
294 (num-modes (if (string-match "^[0-7]+" modes)
295 (string-to-number modes 8))))
296 (dolist (file files)
297 (set-file-modes
298 file
299 (if num-modes num-modes
300 (file-modes-symbolic-to-number modes (file-modes file)))))
301 (dired-do-redisplay arg)))
302
303 ;;;###autoload
304 (defun dired-do-chgrp (&optional arg)
305 "Change the group of the marked (or next ARG) files."
306 (interactive "P")
307 (if (memq system-type '(ms-dos windows-nt))
308 (error "chgrp not supported on this system"))
309 (dired-do-chxxx "Group" "chgrp" 'chgrp arg))
310
311 ;;;###autoload
312 (defun dired-do-chown (&optional arg)
313 "Change the owner of the marked (or next ARG) files."
314 (interactive "P")
315 (if (memq system-type '(ms-dos windows-nt))
316 (error "chown not supported on this system"))
317 (dired-do-chxxx "Owner" dired-chown-program 'chown arg))
318
319 ;;;###autoload
320 (defun dired-do-touch (&optional arg)
321 "Change the timestamp of the marked (or next ARG) files.
322 This calls touch."
323 (interactive "P")
324 (dired-do-chxxx "Timestamp" dired-touch-program 'touch arg))
325
326 ;; Process all the files in FILES in batches of a convenient size,
327 ;; by means of (FUNCALL FUNCTION ARGS... SOME-FILES...).
328 ;; Batches are chosen to need less than MAX chars for the file names,
329 ;; allowing 3 extra characters of separator per file name.
330 (defun dired-bunch-files (max function args files)
331 (let (pending
332 past
333 (pending-length 0)
334 failures)
335 ;; Accumulate files as long as they fit in MAX chars,
336 ;; then process the ones accumulated so far.
337 (while files
338 (let* ((thisfile (car files))
339 (thislength (+ (length thisfile) 3))
340 (rest (cdr files)))
341 ;; If we have at least 1 pending file
342 ;; and this file won't fit in the length limit, process now.
343 (if (and pending (> (+ thislength pending-length) max))
344 (setq pending (nreverse pending)
345 ;; The elements of PENDING are now in forward order.
346 ;; Do the operation and record failures.
347 failures (nconc (apply function (append args pending))
348 failures)
349 ;; Transfer the elemens of PENDING onto PAST
350 ;; and clear it out. Now PAST contains the first N files
351 ;; specified (for some N), and FILES contains the rest.
352 past (nconc past pending)
353 pending nil
354 pending-length 0))
355 ;; Do (setq pending (cons thisfile pending))
356 ;; but reuse the cons that was in `files'.
357 (setcdr files pending)
358 (setq pending files)
359 (setq pending-length (+ thislength pending-length))
360 (setq files rest)))
361 (setq pending (nreverse pending))
362 (prog1
363 (nconc (apply function (append args pending))
364 failures)
365 ;; Now the original list FILES has been put back as it was.
366 (nconc past pending))))
367
368 ;;;###autoload
369 (defun dired-do-print (&optional arg)
370 "Print the marked (or next ARG) files.
371 Uses the shell command coming from variables `lpr-command' and
372 `lpr-switches' as default."
373 (interactive "P")
374 (let* ((file-list (dired-get-marked-files t arg))
375 (command (dired-mark-read-string
376 "Print %s with: "
377 (mapconcat 'identity
378 (cons lpr-command
379 (if (stringp lpr-switches)
380 (list lpr-switches)
381 lpr-switches))
382 " ")
383 'print arg file-list)))
384 (dired-run-shell-command (dired-shell-stuff-it command file-list nil))))
385
386 ;; Read arguments for a marked-files command that wants a string
387 ;; that is not a file name,
388 ;; perhaps popping up the list of marked files.
389 ;; ARG is the prefix arg and indicates whether the files came from
390 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
391 ;; If the current file was used, the list has but one element and ARG
392 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
393
394 (defun dired-mark-read-string (prompt initial op-symbol arg files &optional default)
395 ;; PROMPT for a string, with INITIAL input and DEFAULT value.
396 ;; Other args are used to give user feedback and pop-up:
397 ;; OP-SYMBOL of command, prefix ARG, marked FILES.
398 (dired-mark-pop-up
399 nil op-symbol files
400 (function read-string)
401 (format prompt (dired-mark-prompt arg files)) initial nil default))
402 \f
403 ;;; Cleaning a directory: flagging some backups for deletion.
404
405 (defvar dired-file-version-alist)
406
407 ;;;###autoload
408 (defun dired-clean-directory (keep)
409 "Flag numerical backups for deletion.
410 Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
411 Positive prefix arg KEEP overrides `dired-kept-versions';
412 Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
413
414 To clear the flags on these files, you can use \\[dired-flag-backup-files]
415 with a prefix argument."
416 (interactive "P")
417 (setq keep (if keep (prefix-numeric-value keep) dired-kept-versions))
418 (let ((early-retention (if (< keep 0) (- keep) kept-old-versions))
419 (late-retention (if (<= keep 0) dired-kept-versions keep))
420 (dired-file-version-alist ()))
421 (message "Cleaning numerical backups (keeping %d late, %d old)..."
422 late-retention early-retention)
423 ;; Look at each file.
424 ;; If the file has numeric backup versions,
425 ;; put on dired-file-version-alist an element of the form
426 ;; (FILENAME . VERSION-NUMBER-LIST)
427 (dired-map-dired-file-lines (function dired-collect-file-versions))
428 ;; Sort each VERSION-NUMBER-LIST,
429 ;; and remove the versions not to be deleted.
430 (let ((fval dired-file-version-alist))
431 (while fval
432 (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<)))
433 (v-count (length sorted-v-list)))
434 (if (> v-count (+ early-retention late-retention))
435 (rplacd (nthcdr early-retention sorted-v-list)
436 (nthcdr (- v-count late-retention)
437 sorted-v-list)))
438 (rplacd (car fval)
439 (cdr sorted-v-list)))
440 (setq fval (cdr fval))))
441 ;; Look at each file. If it is a numeric backup file,
442 ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
443 (dired-map-dired-file-lines (function dired-trample-file-versions))
444 (message "Cleaning numerical backups...done")))
445
446 ;;; Subroutines of dired-clean-directory.
447
448 (defun dired-map-dired-file-lines (fun)
449 ;; Perform FUN with point at the end of each non-directory line.
450 ;; FUN takes one argument, the absolute filename.
451 (save-excursion
452 (let (file buffer-read-only)
453 (goto-char (point-min))
454 (while (not (eobp))
455 (save-excursion
456 (and (not (looking-at dired-re-dir))
457 (not (eolp))
458 (setq file (dired-get-filename nil t)) ; nil on non-file
459 (progn (end-of-line)
460 (funcall fun file))))
461 (forward-line 1)))))
462
463 (defun dired-collect-file-versions (fn)
464 (let ((fn (file-name-sans-versions fn)))
465 ;; Only do work if this file is not already in the alist.
466 (if (assoc fn dired-file-version-alist)
467 nil
468 ;; If it looks like file FN has versions, return a list of the versions.
469 ;;That is a list of strings which are file names.
470 ;;The caller may want to flag some of these files for deletion.
471 (let* ((base-versions
472 (concat (file-name-nondirectory fn) ".~"))
473 (backup-extract-version-start (length base-versions))
474 (possibilities (file-name-all-completions
475 base-versions
476 (file-name-directory fn)))
477 (versions (mapcar 'backup-extract-version possibilities)))
478 (if versions
479 (setq dired-file-version-alist
480 (cons (cons fn versions)
481 dired-file-version-alist)))))))
482
483 (defun dired-trample-file-versions (fn)
484 (let* ((start-vn (string-match "\\.~[0-9]+~$" fn))
485 base-version-list)
486 (and start-vn
487 (setq base-version-list ; there was a base version to which
488 (assoc (substring fn 0 start-vn) ; this looks like a
489 dired-file-version-alist)) ; subversion
490 (not (memq (string-to-number (substring fn (+ 2 start-vn)))
491 base-version-list)) ; this one doesn't make the cut
492 (progn (beginning-of-line)
493 (delete-char 1)
494 (insert dired-del-marker)))))
495 \f
496 ;;; Shell commands
497
498 (declare-function mailcap-file-default-commands "mailcap" (files))
499
500 (defun minibuffer-default-add-dired-shell-commands ()
501 "Return a list of all commands associated with current dired files.
502 This function is used to add all related commands retrieved by `mailcap'
503 to the end of the list of defaults just after the default value."
504 (interactive)
505 (let ((commands (and (boundp 'files) (require 'mailcap nil t)
506 (mailcap-file-default-commands files))))
507 (if (listp minibuffer-default)
508 (append minibuffer-default commands)
509 (cons minibuffer-default commands))))
510
511 ;; This is an extra function so that you can redefine it, e.g., to use gmhist.
512 (defun dired-read-shell-command (prompt arg files)
513 "Read a dired shell command prompting with PROMPT (using `read-shell-command').
514 ARG is the prefix arg and may be used to indicate in the prompt which
515 FILES are affected."
516 (minibuffer-with-setup-hook
517 (lambda ()
518 (set (make-local-variable 'minibuffer-default-add-function)
519 'minibuffer-default-add-dired-shell-commands))
520 (dired-mark-pop-up
521 nil 'shell files
522 #'read-shell-command
523 (format prompt (dired-mark-prompt arg files))
524 nil nil)))
525
526 ;;;###autoload
527 (defun dired-do-async-shell-command (command &optional arg file-list)
528 "Run a shell command COMMAND on the marked files asynchronously.
529
530 Like `dired-do-shell-command' but if COMMAND doesn't end in ampersand,
531 adds `* &' surrounded by whitespace and executes the command asynchronously.
532 The output appears in the buffer `*Async Shell Command*'."
533 (interactive
534 (let ((files (dired-get-marked-files t current-prefix-arg)))
535 (list
536 ;; Want to give feedback whether this file or marked files are used:
537 (dired-read-shell-command "& on %s: " current-prefix-arg files)
538 current-prefix-arg
539 files)))
540 (unless (string-match "[*?][ \t]*\\'" command)
541 (setq command (concat command " *")))
542 (unless (string-match "&[ \t]*\\'" command)
543 (setq command (concat command " &")))
544 (dired-do-shell-command command arg file-list))
545
546 ;; The in-background argument is only needed in Emacs 18 where
547 ;; shell-command doesn't understand an appended ampersand `&'.
548 ;;;###autoload
549 (defun dired-do-shell-command (command &optional arg file-list)
550 "Run a shell command COMMAND on the marked files.
551 If no files are marked or a specific numeric prefix arg is given,
552 the next ARG files are used. Just \\[universal-argument] means the current file.
553 The prompt mentions the file(s) or the marker, as appropriate.
554
555 If there is a `*' in COMMAND, surrounded by whitespace, this runs
556 COMMAND just once with the entire file list substituted there.
557
558 If there is no `*', but there is a `?' in COMMAND, surrounded by
559 whitespace, this runs COMMAND on each file individually with the
560 file name substituted for `?'.
561
562 Otherwise, this runs COMMAND on each file individually with the
563 file name added at the end of COMMAND (separated by a space).
564
565 `*' and `?' when not surrounded by whitespace have no special
566 significance for `dired-do-shell-command', and are passed through
567 normally to the shell, but you must confirm first. To pass `*' by
568 itself to the shell as a wildcard, type `*\"\"'.
569
570 If COMMAND produces output, it goes to a separate buffer.
571
572 This feature does not try to redisplay Dired buffers afterward, as
573 there's no telling what files COMMAND may have changed.
574 Type \\[dired-do-redisplay] to redisplay the marked files.
575
576 When COMMAND runs, its working directory is the top-level directory
577 of the Dired buffer, so output files usually are created there
578 instead of in a subdir.
579
580 In a noninteractive call (from Lisp code), you must specify
581 the list of file names explicitly with the FILE-LIST argument, which
582 can be produced by `dired-get-marked-files', for example."
583 ;;Functions dired-run-shell-command and dired-shell-stuff-it do the
584 ;;actual work and can be redefined for customization.
585 (interactive
586 (let ((files (dired-get-marked-files t current-prefix-arg)))
587 (list
588 ;; Want to give feedback whether this file or marked files are used:
589 (dired-read-shell-command (concat "! on "
590 "%s: ")
591 current-prefix-arg
592 files)
593 current-prefix-arg
594 files)))
595 (let* ((on-each (not (string-match dired-star-subst-regexp command)))
596 (subst (not (string-match dired-quark-subst-regexp command)))
597 (star (not (string-match "\\*" command)))
598 (qmark (not (string-match "\\?" command))))
599 ;; Get confirmation for wildcards that may have been meant
600 ;; to control substitution of a file name or the file name list.
601 (if (cond ((not (or on-each subst))
602 (error "You can not combine `*' and `?' substitution marks"))
603 ((and star (not on-each))
604 (y-or-n-p "Confirm--do you mean to use `*' as a wildcard? "))
605 ((and qmark (not subst))
606 (y-or-n-p "Confirm--do you mean to use `?' as a wildcard? "))
607 (t))
608 (if on-each
609 (dired-bunch-files
610 (- 10000 (length command))
611 (function (lambda (&rest files)
612 (dired-run-shell-command
613 (dired-shell-stuff-it command files t arg))))
614 nil
615 file-list)
616 ;; execute the shell command
617 (dired-run-shell-command
618 (dired-shell-stuff-it command file-list nil arg))))))
619
620 ;; Might use {,} for bash or csh:
621 (defvar dired-mark-prefix ""
622 "Prepended to marked files in dired shell commands.")
623 (defvar dired-mark-postfix ""
624 "Appended to marked files in dired shell commands.")
625 (defvar dired-mark-separator " "
626 "Separates marked files in dired shell commands.")
627
628 (defun dired-shell-stuff-it (command file-list on-each &optional raw-arg)
629 ;; "Make up a shell command line from COMMAND and FILE-LIST.
630 ;; If ON-EACH is t, COMMAND should be applied to each file, else
631 ;; simply concat all files and apply COMMAND to this.
632 ;; FILE-LIST's elements will be quoted for the shell."
633 ;; Might be redefined for smarter things and could then use RAW-ARG
634 ;; (coming from interactive P and currently ignored) to decide what to do.
635 ;; Smart would be a way to access basename or extension of file names.
636 (let ((stuff-it
637 (if (or (string-match dired-star-subst-regexp command)
638 (string-match dired-quark-subst-regexp command))
639 (lambda (x)
640 (let ((retval command))
641 (while (string-match
642 "\\(^\\|[ \t]\\)\\([*?]\\)\\([ \t]\\|$\\)" retval)
643 (setq retval (replace-match x t t retval 2)))
644 retval))
645 (lambda (x) (concat command dired-mark-separator x)))))
646 (if on-each
647 (mapconcat stuff-it (mapcar 'shell-quote-argument file-list) ";")
648 (let ((files (mapconcat 'shell-quote-argument
649 file-list dired-mark-separator)))
650 (if (> (length file-list) 1)
651 (setq files (concat dired-mark-prefix files dired-mark-postfix)))
652 (funcall stuff-it files)))))
653
654 ;; This is an extra function so that it can be redefined by ange-ftp.
655 ;;;###autoload
656 (defun dired-run-shell-command (command)
657 (let ((handler
658 (find-file-name-handler (directory-file-name default-directory)
659 'shell-command)))
660 (if handler (apply handler 'shell-command (list command))
661 (shell-command command)))
662 ;; Return nil for sake of nconc in dired-bunch-files.
663 nil)
664 \f
665
666 (defun dired-check-process (msg program &rest arguments)
667 ; "Display MSG while running PROGRAM, and check for output.
668 ;Remaining arguments are strings passed as command arguments to PROGRAM.
669 ; On error, insert output
670 ; in a log buffer and return the offending ARGUMENTS or PROGRAM.
671 ; Caller can cons up a list of failed args.
672 ;Else returns nil for success."
673 (let (err-buffer err (dir default-directory))
674 (message "%s..." msg)
675 (save-excursion
676 ;; Get a clean buffer for error output:
677 (setq err-buffer (get-buffer-create " *dired-check-process output*"))
678 (set-buffer err-buffer)
679 (erase-buffer)
680 (setq default-directory dir ; caller's default-directory
681 err (not (eq 0 (apply 'process-file program nil t nil arguments))))
682 (if err
683 (progn
684 (dired-log (concat program " " (prin1-to-string arguments) "\n"))
685 (dired-log err-buffer)
686 (or arguments program t))
687 (kill-buffer err-buffer)
688 (message "%s...done" msg)
689 nil))))
690 \f
691 ;; Commands that delete or redisplay part of the dired buffer.
692
693 (defun dired-kill-line (&optional arg)
694 (interactive "P")
695 (setq arg (prefix-numeric-value arg))
696 (let (buffer-read-only file)
697 (while (/= 0 arg)
698 (setq file (dired-get-filename nil t))
699 (if (not file)
700 (error "Can only kill file lines")
701 (save-excursion (and file
702 (dired-goto-subdir file)
703 (dired-kill-subdir)))
704 (delete-region (line-beginning-position)
705 (progn (forward-line 1) (point)))
706 (if (> arg 0)
707 (setq arg (1- arg))
708 (setq arg (1+ arg))
709 (forward-line -1))))
710 (dired-move-to-filename)))
711
712 ;;;###autoload
713 (defun dired-do-kill-lines (&optional arg fmt)
714 "Kill all marked lines (not the files).
715 With a prefix argument, kill that many lines starting with the current line.
716 \(A negative argument kills backward.)
717 If you use this command with a prefix argument to kill the line
718 for a file that is a directory, which you have inserted in the
719 Dired buffer as a subdirectory, then it deletes that subdirectory
720 from the buffer as well.
721 To kill an entire subdirectory \(without killing its line in the
722 parent directory), go to its directory header line and use this
723 command with a prefix argument (the value does not matter)."
724 ;; Returns count of killed lines. FMT="" suppresses message.
725 (interactive "P")
726 (if arg
727 (if (dired-get-subdir)
728 (dired-kill-subdir)
729 (dired-kill-line arg))
730 (save-excursion
731 (goto-char (point-min))
732 (let (buffer-read-only
733 (count 0)
734 (regexp (dired-marker-regexp)))
735 (while (and (not (eobp))
736 (re-search-forward regexp nil t))
737 (setq count (1+ count))
738 (delete-region (line-beginning-position)
739 (progn (forward-line 1) (point))))
740 (or (equal "" fmt)
741 (message (or fmt "Killed %d line%s.") count (dired-plural-s count)))
742 count))))
743
744 ;;;###end dired-cmd.el
745 \f
746 ;;; 30K
747 ;;;###begin dired-cp.el
748
749 (defun dired-compress ()
750 ;; Compress or uncompress the current file.
751 ;; Return nil for success, offending filename else.
752 (let* (buffer-read-only
753 (from-file (dired-get-filename))
754 (new-file (dired-compress-file from-file)))
755 (if new-file
756 (let ((start (point)))
757 ;; Remove any preexisting entry for the name NEW-FILE.
758 (condition-case nil
759 (dired-remove-entry new-file)
760 (error nil))
761 (goto-char start)
762 ;; Now replace the current line with an entry for NEW-FILE.
763 (dired-update-file-line new-file) nil)
764 (dired-log (concat "Failed to compress" from-file))
765 from-file)))
766
767 (defvar dired-compress-file-suffixes
768 '(("\\.gz\\'" "" "gunzip")
769 ("\\.tgz\\'" ".tar" "gunzip")
770 ("\\.Z\\'" "" "uncompress")
771 ;; For .z, try gunzip. It might be an old gzip file,
772 ;; or it might be from compact? pack? (which?) but gunzip handles both.
773 ("\\.z\\'" "" "gunzip")
774 ("\\.dz\\'" "" "dictunzip")
775 ("\\.tbz\\'" ".tar" "bunzip2")
776 ("\\.bz2\\'" "" "bunzip2")
777 ("\\.xz\\'" "" "unxz")
778 ;; This item controls naming for compression.
779 ("\\.tar\\'" ".tgz" nil))
780 "Control changes in file name suffixes for compression and uncompression.
781 Each element specifies one transformation rule, and has the form:
782 (REGEXP NEW-SUFFIX PROGRAM)
783 The rule applies when the old file name matches REGEXP.
784 The new file name is computed by deleting the part that matches REGEXP
785 (as well as anything after that), then adding NEW-SUFFIX in its place.
786 If PROGRAM is non-nil, the rule is an uncompression rule,
787 and uncompression is done by running PROGRAM.
788 Otherwise, the rule is a compression rule, and compression is done with gzip.")
789
790 ;;;###autoload
791 (defun dired-compress-file (file)
792 ;; Compress or uncompress FILE.
793 ;; Return the name of the compressed or uncompressed file.
794 ;; Return nil if no change in files.
795 (let ((handler (find-file-name-handler file 'dired-compress-file))
796 suffix newname
797 (suffixes dired-compress-file-suffixes))
798 ;; See if any suffix rule matches this file name.
799 (while suffixes
800 (let (case-fold-search)
801 (if (string-match (car (car suffixes)) file)
802 (setq suffix (car suffixes) suffixes nil))
803 (setq suffixes (cdr suffixes))))
804 ;; If so, compute desired new name.
805 (if suffix
806 (setq newname (concat (substring file 0 (match-beginning 0))
807 (nth 1 suffix))))
808 (cond (handler
809 (funcall handler 'dired-compress-file file))
810 ((file-symlink-p file)
811 nil)
812 ((and suffix (nth 2 suffix))
813 ;; We found an uncompression rule.
814 (if (not (dired-check-process (concat "Uncompressing " file)
815 (nth 2 suffix) file))
816 newname))
817 (t
818 ;;; We don't recognize the file as compressed, so compress it.
819 ;;; Try gzip; if we don't have that, use compress.
820 (condition-case nil
821 (let ((out-name (concat file ".gz")))
822 (and (or (not (file-exists-p out-name))
823 (y-or-n-p
824 (format "File %s already exists. Really compress? "
825 out-name)))
826 (not (dired-check-process (concat "Compressing " file)
827 "gzip" "-f" file))
828 (or (file-exists-p out-name)
829 (setq out-name (concat file ".z")))
830 ;; Rename the compressed file to NEWNAME
831 ;; if it hasn't got that name already.
832 (if (and newname (not (equal newname out-name)))
833 (progn
834 (rename-file out-name newname t)
835 newname)
836 out-name)))
837 (file-error
838 (if (not (dired-check-process (concat "Compressing " file)
839 "compress" "-f" file))
840 ;; Don't use NEWNAME with `compress'.
841 (concat file ".Z"))))))))
842 \f
843 (defun dired-mark-confirm (op-symbol arg)
844 ;; Request confirmation from the user that the operation described
845 ;; by OP-SYMBOL is to be performed on the marked files.
846 ;; Confirmation consists in a y-or-n question with a file list
847 ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'.
848 ;; The files used are determined by ARG (as in dired-get-marked-files).
849 (or (eq dired-no-confirm t)
850 (memq op-symbol dired-no-confirm)
851 ;; Pass t for DISTINGUISH-ONE-MARKED so that a single file which
852 ;; is marked pops up a window. That will help the user see
853 ;; it isn't the current line file.
854 (let ((files (dired-get-marked-files t arg nil t))
855 (string (if (eq op-symbol 'compress) "Compress or uncompress"
856 (capitalize (symbol-name op-symbol)))))
857 (dired-mark-pop-up nil op-symbol files (function y-or-n-p)
858 (concat string " "
859 (dired-mark-prompt arg files) "? ")))))
860
861 (defun dired-map-over-marks-check (fun arg op-symbol &optional show-progress)
862 ; "Map FUN over marked files (with second ARG like in dired-map-over-marks)
863 ; and display failures.
864
865 ; FUN takes zero args. It returns non-nil (the offending object, e.g.
866 ; the short form of the filename) for a failure and probably logs a
867 ; detailed error explanation using function `dired-log'.
868
869 ; OP-SYMBOL is a symbol describing the operation performed (e.g.
870 ; `compress'). It is used with `dired-mark-pop-up' to prompt the user
871 ; (e.g. with `Compress * [2 files]? ') and to display errors (e.g.
872 ; `Failed to compress 1 of 2 files - type W to see why ("foo")')
873
874 ; SHOW-PROGRESS if non-nil means redisplay dired after each file."
875 (if (dired-mark-confirm op-symbol arg)
876 (let* ((total-list;; all of FUN's return values
877 (dired-map-over-marks (funcall fun) arg show-progress))
878 (total (length total-list))
879 (failures (delq nil total-list))
880 (count (length failures))
881 (string (if (eq op-symbol 'compress) "Compress or uncompress"
882 (capitalize (symbol-name op-symbol)))))
883 (if (not failures)
884 (message "%s: %d file%s."
885 string total (dired-plural-s total))
886 ;; end this bunch of errors:
887 (dired-log-summary
888 (format "Failed to %s %d of %d file%s"
889 (downcase string) count total (dired-plural-s total))
890 failures)))))
891
892 (defvar dired-query-alist
893 '((?y . y) (?\040 . y) ; `y' or SPC means accept once
894 (?n . n) (?\177 . n) ; `n' or DEL skips once
895 (?! . yes) ; `!' accepts rest
896 (?q . no) (?\e . no) ; `q' or ESC skips rest
897 ;; None of these keys quit - use C-g for that.
898 ))
899
900 ;;;###autoload
901 (defun dired-query (qs-var qs-prompt &rest qs-args)
902 "Query user and return nil or t.
903 Store answer in symbol VAR (which must initially be bound to nil).
904 Format PROMPT with ARGS.
905 Binding variable `help-form' will help the user who types the help key."
906 (let* ((char (symbol-value qs-var))
907 (action (cdr (assoc char dired-query-alist))))
908 (cond ((eq 'yes action)
909 t) ; accept, and don't ask again
910 ((eq 'no action)
911 nil) ; skip, and don't ask again
912 (t;; no lasting effects from last time we asked - ask now
913 (let ((cursor-in-echo-area t)
914 (executing-kbd-macro executing-kbd-macro)
915 (qprompt (concat qs-prompt
916 (if help-form
917 (format " [Type yn!q or %s] "
918 (key-description
919 (char-to-string help-char)))
920 " [Type y, n, q or !] ")))
921 done result elt)
922 (while (not done)
923 (apply 'message qprompt qs-args)
924 (setq char (set qs-var (read-event)))
925 (if (numberp char)
926 (cond ((and executing-kbd-macro (= char -1))
927 ;; read-event returns -1 if we are in a kbd
928 ;; macro and there are no more events in the
929 ;; macro. Attempt to get an event
930 ;; interactively.
931 (setq executing-kbd-macro nil))
932 ((eq (key-binding (vector char)) 'keyboard-quit)
933 (keyboard-quit))
934 (t
935 (setq done (setq elt (assoc char
936 dired-query-alist)))))))
937 ;; Display the question with the answer.
938 (message "%s" (concat (apply 'format qprompt qs-args)
939 (char-to-string char)))
940 (memq (cdr elt) '(t y yes)))))))
941 \f
942 ;;;###autoload
943 (defun dired-do-compress (&optional arg)
944 "Compress or uncompress marked (or next ARG) files."
945 (interactive "P")
946 (dired-map-over-marks-check (function dired-compress) arg 'compress t))
947
948 ;; Commands for Emacs Lisp files - load and byte compile
949
950 (defun dired-byte-compile ()
951 ;; Return nil for success, offending file name else.
952 (let* ((filename (dired-get-filename))
953 elc-file buffer-read-only failure)
954 (condition-case err
955 (save-excursion (byte-compile-file filename))
956 (error
957 (setq failure err)))
958 (setq elc-file (byte-compile-dest-file filename))
959 (or (file-exists-p elc-file)
960 (setq failure t))
961 (if failure
962 (progn
963 (dired-log "Byte compile error for %s:\n%s\n" filename failure)
964 (dired-make-relative filename))
965 (dired-remove-file elc-file)
966 (forward-line) ; insert .elc after its .el file
967 (dired-add-file elc-file)
968 nil)))
969
970 ;;;###autoload
971 (defun dired-do-byte-compile (&optional arg)
972 "Byte compile marked (or next ARG) Emacs Lisp files."
973 (interactive "P")
974 (dired-map-over-marks-check (function dired-byte-compile) arg 'byte-compile t))
975
976 (defun dired-load ()
977 ;; Return nil for success, offending file name else.
978 (let ((file (dired-get-filename)) failure)
979 (condition-case err
980 (load file nil nil t)
981 (error (setq failure err)))
982 (if (not failure)
983 nil
984 (dired-log "Load error for %s:\n%s\n" file failure)
985 (dired-make-relative file))))
986
987 ;;;###autoload
988 (defun dired-do-load (&optional arg)
989 "Load the marked (or next ARG) Emacs Lisp files."
990 (interactive "P")
991 (dired-map-over-marks-check (function dired-load) arg 'load t))
992
993 ;;;###autoload
994 (defun dired-do-redisplay (&optional arg test-for-subdir)
995 "Redisplay all marked (or next ARG) files.
996 If on a subdir line, redisplay that subdirectory. In that case,
997 a prefix arg lets you edit the `ls' switches used for the new listing.
998
999 Dired remembers switches specified with a prefix arg, so that reverting
1000 the buffer will not reset them. However, using `dired-undo' to re-insert
1001 or delete subdirectories can bypass this machinery. Hence, you sometimes
1002 may have to reset some subdirectory switches after a `dired-undo'.
1003 You can reset all subdirectory switches to the default using
1004 \\<dired-mode-map>\\[dired-reset-subdir-switches].
1005 See Info node `(emacs)Subdir switches' for more details."
1006 ;; Moves point if the next ARG files are redisplayed.
1007 (interactive "P\np")
1008 (if (and test-for-subdir (dired-get-subdir))
1009 (let* ((dir (dired-get-subdir))
1010 (switches (cdr (assoc-string dir dired-switches-alist))))
1011 (dired-insert-subdir
1012 dir
1013 (when arg
1014 (read-string "Switches for listing: "
1015 (or switches
1016 dired-subdir-switches
1017 dired-actual-switches)))))
1018 (message "Redisplaying...")
1019 ;; message much faster than making dired-map-over-marks show progress
1020 (dired-uncache
1021 (if (consp dired-directory) (car dired-directory) dired-directory))
1022 (dired-map-over-marks (let ((fname (dired-get-filename)))
1023 (message "Redisplaying... %s" fname)
1024 (dired-update-file-line fname))
1025 arg)
1026 (dired-move-to-filename)
1027 (message "Redisplaying...done")))
1028
1029 (defun dired-reset-subdir-switches ()
1030 "Set `dired-switches-alist' to nil and revert dired buffer."
1031 (interactive)
1032 (setq dired-switches-alist nil)
1033 (revert-buffer))
1034 \f
1035 (defun dired-update-file-line (file)
1036 ;; Delete the current line, and insert an entry for FILE.
1037 ;; If FILE is nil, then just delete the current line.
1038 ;; Keeps any marks that may be present in column one (doing this
1039 ;; here is faster than with dired-add-entry's optional arg).
1040 ;; Does not update other dired buffers. Use dired-relist-entry for that.
1041 (let ((char (following-char))
1042 (opoint (line-beginning-position))
1043 (buffer-read-only))
1044 (delete-region opoint (progn (forward-line 1) (point)))
1045 (if file
1046 (progn
1047 (dired-add-entry file nil t)
1048 ;; Replace space by old marker without moving point.
1049 ;; Faster than goto+insdel inside a save-excursion?
1050 (subst-char-in-region opoint (1+ opoint) ?\040 char))))
1051 (dired-move-to-filename))
1052
1053 ;;;###autoload
1054 (defun dired-add-file (filename &optional marker-char)
1055 (dired-fun-in-all-buffers
1056 (file-name-directory filename) (file-name-nondirectory filename)
1057 (function dired-add-entry) filename marker-char))
1058
1059 (defun dired-add-entry (filename &optional marker-char relative)
1060 ;; Add a new entry for FILENAME, optionally marking it
1061 ;; with MARKER-CHAR (a character, else dired-marker-char is used).
1062 ;; Note that this adds the entry `out of order' if files sorted by
1063 ;; time, etc.
1064 ;; At least this version inserts in the right subdirectory (if present).
1065 ;; And it skips "." or ".." (see `dired-trivial-filenames').
1066 ;; Hidden subdirs are exposed if a file is added there.
1067 (setq filename (directory-file-name filename))
1068 ;; Entry is always for files, even if they happen to also be directories
1069 (let* ((opoint (point))
1070 (cur-dir (dired-current-directory))
1071 (orig-file-name filename)
1072 (directory (if relative cur-dir (file-name-directory filename)))
1073 reason)
1074 (setq filename
1075 (if relative
1076 (file-relative-name filename directory)
1077 (file-name-nondirectory filename))
1078 reason
1079 (catch 'not-found
1080 (if (string= directory cur-dir)
1081 (progn
1082 (skip-chars-forward "^\r\n")
1083 (if (eq (following-char) ?\r)
1084 (dired-unhide-subdir))
1085 ;; We are already where we should be, except when
1086 ;; point is before the subdir line or its total line.
1087 (let ((p (dired-after-subdir-garbage cur-dir)))
1088 (if (< (point) p)
1089 (goto-char p))))
1090 ;; else try to find correct place to insert
1091 (if (dired-goto-subdir directory)
1092 (progn ;; unhide if necessary
1093 (if (looking-at "\r") ;; point is at end of subdir line
1094 (dired-unhide-subdir))
1095 ;; found - skip subdir and `total' line
1096 ;; and uninteresting files like . and ..
1097 ;; This better not moves into the next subdir!
1098 (dired-goto-next-nontrivial-file))
1099 ;; not found
1100 (throw 'not-found "Subdir not found")))
1101 (let (buffer-read-only opoint)
1102 (beginning-of-line)
1103 (setq opoint (point))
1104 ;; Don't expand `.'. Show just the file name within directory.
1105 (let ((default-directory directory))
1106 (dired-insert-directory directory
1107 (concat dired-actual-switches " -d")
1108 (list filename)))
1109 (goto-char opoint)
1110 ;; Put in desired marker char.
1111 (when marker-char
1112 (let ((dired-marker-char
1113 (if (integerp marker-char) marker-char dired-marker-char)))
1114 (dired-mark nil)))
1115 ;; Compensate for a bug in ange-ftp.
1116 ;; It inserts the file's absolute name, rather than
1117 ;; the relative one. That may be hard to fix since it
1118 ;; is probably controlled by something in ftp.
1119 (goto-char opoint)
1120 (let ((inserted-name (dired-get-filename 'verbatim)))
1121 (if (file-name-directory inserted-name)
1122 (let (props)
1123 (end-of-line)
1124 (forward-char (- (length inserted-name)))
1125 (setq props (text-properties-at (point)))
1126 (delete-char (length inserted-name))
1127 (let ((pt (point)))
1128 (insert filename)
1129 (set-text-properties pt (point) props))
1130 (forward-char 1))
1131 (forward-line 1)))
1132 (forward-line -1)
1133 (if dired-after-readin-hook ;; the subdir-alist is not affected...
1134 (save-excursion ;; ...so we can run it right now:
1135 (save-restriction
1136 (beginning-of-line)
1137 (narrow-to-region (point) (line-beginning-position 2))
1138 (run-hooks 'dired-after-readin-hook))))
1139 (dired-move-to-filename))
1140 ;; return nil if all went well
1141 nil))
1142 (if reason ; don't move away on failure
1143 (goto-char opoint))
1144 (not reason))) ; return t on success, nil else
1145
1146 (defun dired-after-subdir-garbage (dir)
1147 ;; Return pos of first file line of DIR, skipping header and total
1148 ;; or wildcard lines.
1149 ;; Important: never moves into the next subdir.
1150 ;; DIR is assumed to be unhidden.
1151 (save-excursion
1152 (or (dired-goto-subdir dir) (error "This cannot happen"))
1153 (forward-line 1)
1154 (while (and (not (eolp)) ; don't cross subdir boundary
1155 (not (dired-move-to-filename)))
1156 (forward-line 1))
1157 (point)))
1158
1159 ;;;###autoload
1160 (defun dired-remove-file (file)
1161 (dired-fun-in-all-buffers
1162 (file-name-directory file) (file-name-nondirectory file)
1163 (function dired-remove-entry) file))
1164
1165 (defun dired-remove-entry (file)
1166 (save-excursion
1167 (and (dired-goto-file file)
1168 (let (buffer-read-only)
1169 (delete-region (progn (beginning-of-line) (point))
1170 (line-beginning-position 2))))))
1171
1172 ;;;###autoload
1173 (defun dired-relist-file (file)
1174 "Create or update the line for FILE in all Dired buffers it would belong in."
1175 (dired-fun-in-all-buffers (file-name-directory file)
1176 (file-name-nondirectory file)
1177 (function dired-relist-entry) file))
1178
1179 (defun dired-relist-entry (file)
1180 ;; Relist the line for FILE, or just add it if it did not exist.
1181 ;; FILE must be an absolute file name.
1182 (let (buffer-read-only marker)
1183 ;; If cursor is already on FILE's line delete-region will cause
1184 ;; save-excursion to fail because of floating makers,
1185 ;; moving point to beginning of line. Sigh.
1186 (save-excursion
1187 (and (dired-goto-file file)
1188 (delete-region (progn (beginning-of-line)
1189 (setq marker (following-char))
1190 (point))
1191 (line-beginning-position 2)))
1192 (setq file (directory-file-name file))
1193 (dired-add-entry file (if (eq ?\040 marker) nil marker)))))
1194 \f
1195 ;;; Copy, move/rename, making hard and symbolic links
1196
1197 (defcustom dired-backup-overwrite nil
1198 "Non-nil if Dired should ask about making backups before overwriting files.
1199 Special value `always' suppresses confirmation."
1200 :type '(choice (const :tag "off" nil)
1201 (const :tag "suppress" always)
1202 (other :tag "ask" t))
1203 :group 'dired)
1204
1205 ;; This is a fluid var used in dired-handle-overwrite. It should be
1206 ;; let-bound whenever dired-copy-file etc are called. See
1207 ;; dired-create-files for an example.
1208 (defvar dired-overwrite-confirmed)
1209
1210 (defun dired-handle-overwrite (to)
1211 ;; Save old version of file TO that is to be overwritten.
1212 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars
1213 ;; from dired-create-files.
1214 (let (backup)
1215 (when (and dired-backup-overwrite
1216 dired-overwrite-confirmed
1217 (setq backup (car (find-backup-file-name to)))
1218 (or (eq 'always dired-backup-overwrite)
1219 (dired-query 'overwrite-backup-query
1220 "Make backup for existing file `%s'? "
1221 to)))
1222 (rename-file to backup 0) ; confirm overwrite of old backup
1223 (dired-relist-entry backup))))
1224
1225 ;;;###autoload
1226 (defun dired-copy-file (from to ok-flag)
1227 (dired-handle-overwrite to)
1228 (dired-copy-file-recursive from to ok-flag dired-copy-preserve-time t
1229 dired-recursive-copies))
1230
1231 (declare-function make-symbolic-link "fileio.c")
1232
1233 (defun dired-copy-file-recursive (from to ok-flag &optional
1234 preserve-time top recursive)
1235 (let ((attrs (file-attributes from))
1236 dirfailed)
1237 (if (and recursive
1238 (eq t (car attrs))
1239 (or (eq recursive 'always)
1240 (yes-or-no-p (format "Recursive copies of %s? " from))))
1241 ;; This is a directory.
1242 (copy-directory from to dired-copy-preserve-time)
1243 ;; Not a directory.
1244 (or top (dired-handle-overwrite to))
1245 (condition-case err
1246 (if (stringp (car attrs))
1247 ;; It is a symlink
1248 (make-symbolic-link (car attrs) to ok-flag)
1249 (copy-file from to ok-flag dired-copy-preserve-time))
1250 (file-date-error
1251 (push (dired-make-relative from)
1252 dired-create-files-failures)
1253 (dired-log "Can't set date on %s:\n%s\n" from err))))))
1254
1255 ;;;###autoload
1256 (defun dired-rename-file (file newname ok-if-already-exists)
1257 (dired-handle-overwrite newname)
1258 (rename-file file newname ok-if-already-exists) ; error is caught in -create-files
1259 ;; Silently rename the visited file of any buffer visiting this file.
1260 (and (get-file-buffer file)
1261 (with-current-buffer (get-file-buffer file)
1262 (set-visited-file-name newname nil t)))
1263 (dired-remove-file file)
1264 ;; See if it's an inserted subdir, and rename that, too.
1265 (dired-rename-subdir file newname))
1266
1267 (defun dired-rename-subdir (from-dir to-dir)
1268 (setq from-dir (file-name-as-directory from-dir)
1269 to-dir (file-name-as-directory to-dir))
1270 (dired-fun-in-all-buffers from-dir nil
1271 (function dired-rename-subdir-1) from-dir to-dir)
1272 ;; Update visited file name of all affected buffers
1273 (let ((expanded-from-dir (expand-file-name from-dir))
1274 (blist (buffer-list)))
1275 (while blist
1276 (with-current-buffer (car blist)
1277 (if (and buffer-file-name
1278 (dired-in-this-tree buffer-file-name expanded-from-dir))
1279 (let ((modflag (buffer-modified-p))
1280 (to-file (dired-replace-in-string
1281 (concat "^" (regexp-quote from-dir))
1282 to-dir
1283 buffer-file-name)))
1284 (set-visited-file-name to-file)
1285 (set-buffer-modified-p modflag))))
1286 (setq blist (cdr blist)))))
1287
1288 (defun dired-rename-subdir-1 (dir to)
1289 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or
1290 ;; one of its subdirectories is expanded in this buffer.
1291 (let ((expanded-dir (expand-file-name dir))
1292 (alist dired-subdir-alist)
1293 (elt nil))
1294 (while alist
1295 (setq elt (car alist)
1296 alist (cdr alist))
1297 (if (dired-in-this-tree (car elt) expanded-dir)
1298 ;; ELT's subdir is affected by the rename
1299 (dired-rename-subdir-2 elt dir to)))
1300 (if (equal dir default-directory)
1301 ;; if top level directory was renamed, lots of things have to be
1302 ;; updated:
1303 (progn
1304 (dired-unadvertise dir) ; we no longer dired DIR...
1305 (setq default-directory to
1306 dired-directory (expand-file-name;; this is correct
1307 ;; with and without wildcards
1308 (file-name-nondirectory dired-directory)
1309 to))
1310 (let ((new-name (file-name-nondirectory
1311 (directory-file-name dired-directory))))
1312 ;; try to rename buffer, but just leave old name if new
1313 ;; name would already exist (don't try appending "<%d>")
1314 (or (get-buffer new-name)
1315 (rename-buffer new-name)))
1316 ;; ... we dired TO now:
1317 (dired-advertise)))))
1318
1319 (defun dired-rename-subdir-2 (elt dir to)
1320 ;; Update the headerline and dired-subdir-alist element, as well as
1321 ;; dired-switches-alist element, of directory described by
1322 ;; alist-element ELT to reflect the moving of DIR to TO. Thus, ELT
1323 ;; describes either DIR itself or a subdir of DIR.
1324 (save-excursion
1325 (let ((regexp (regexp-quote (directory-file-name dir)))
1326 (newtext (directory-file-name to))
1327 buffer-read-only)
1328 (goto-char (dired-get-subdir-min elt))
1329 ;; Update subdir headerline in buffer
1330 (if (not (looking-at dired-subdir-regexp))
1331 (error "%s not found where expected - dired-subdir-alist broken?"
1332 dir)
1333 (goto-char (match-beginning 1))
1334 (if (re-search-forward regexp (match-end 1) t)
1335 (replace-match newtext t t)
1336 (error "Expected to find `%s' in headerline of %s" dir (car elt))))
1337 ;; Update buffer-local dired-subdir-alist and dired-switches-alist
1338 (let ((cons (assoc-string (car elt) dired-switches-alist))
1339 (cur-dir (dired-normalize-subdir
1340 (dired-replace-in-string regexp newtext (car elt)))))
1341 (setcar elt cur-dir)
1342 (when cons (setcar cons cur-dir))))))
1343 \f
1344 ;; The basic function for half a dozen variations on cp/mv/ln/ln -s.
1345 (defun dired-create-files (file-creator operation fn-list name-constructor
1346 &optional marker-char)
1347
1348 ;; Create a new file for each from a list of existing files. The user
1349 ;; is queried, dired buffers are updated, and at the end a success or
1350 ;; failure message is displayed
1351
1352 ;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists
1353
1354 ;; It is called for each file and must create newfile, the entry of
1355 ;; which will be added. The user will be queried if the file already
1356 ;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a
1357 ;; rename), it is FILE-CREATOR's responsibility to update dired
1358 ;; buffers. FILE-CREATOR must abort by signaling a file-error if it
1359 ;; could not create newfile. The error is caught and logged.
1360
1361 ;; OPERATION (a capitalized string, e.g. `Copy') describes the
1362 ;; operation performed. It is used for error logging.
1363
1364 ;; FN-LIST is the list of files to copy (full absolute file names).
1365
1366 ;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to
1367 ;; skip. If it skips files for other reasons than a direct user
1368 ;; query, it is supposed to tell why (using dired-log).
1369
1370 ;; Optional MARKER-CHAR is a character with which to mark every
1371 ;; newfile's entry, or t to use the current marker character if the
1372 ;; oldfile was marked.
1373
1374 (let (dired-create-files-failures failures
1375 skipped (success-count 0) (total (length fn-list)))
1376 (let (to overwrite-query
1377 overwrite-backup-query) ; for dired-handle-overwrite
1378 (dolist (from fn-list)
1379 (setq to (funcall name-constructor from))
1380 (if (equal to from)
1381 (progn
1382 (setq to nil)
1383 (dired-log "Cannot %s to same file: %s\n"
1384 (downcase operation) from)))
1385 (if (not to)
1386 (setq skipped (cons (dired-make-relative from) skipped))
1387 (let* ((overwrite (file-exists-p to))
1388 (dired-overwrite-confirmed ; for dired-handle-overwrite
1389 (and overwrite
1390 (let ((help-form '(format "\
1391 Type SPC or `y' to overwrite file `%s',
1392 DEL or `n' to skip to next,
1393 ESC or `q' to not overwrite any of the remaining files,
1394 `!' to overwrite all remaining files with no more questions." to)))
1395 (dired-query 'overwrite-query
1396 "Overwrite `%s'?" to))))
1397 ;; must determine if FROM is marked before file-creator
1398 ;; gets a chance to delete it (in case of a move).
1399 (actual-marker-char
1400 (cond ((integerp marker-char) marker-char)
1401 (marker-char (dired-file-marker from)) ; slow
1402 (t nil))))
1403 (condition-case err
1404 (progn
1405 (funcall file-creator from to dired-overwrite-confirmed)
1406 (if overwrite
1407 ;; If we get here, file-creator hasn't been aborted
1408 ;; and the old entry (if any) has to be deleted
1409 ;; before adding the new entry.
1410 (dired-remove-file to))
1411 (setq success-count (1+ success-count))
1412 (message "%s: %d of %d" operation success-count total)
1413 (dired-add-file to actual-marker-char))
1414 (file-error ; FILE-CREATOR aborted
1415 (progn
1416 (push (dired-make-relative from)
1417 failures)
1418 (dired-log "%s `%s' to `%s' failed:\n%s\n"
1419 operation from to err))))))))
1420 (cond
1421 (dired-create-files-failures
1422 (setq failures (nconc failures dired-create-files-failures))
1423 (dired-log-summary
1424 (format "%s failed for %d file%s in %d requests"
1425 operation (length failures)
1426 (dired-plural-s (length failures))
1427 total)
1428 failures))
1429 (failures
1430 (dired-log-summary
1431 (format "%s failed for %d of %d file%s"
1432 operation (length failures)
1433 total (dired-plural-s total))
1434 failures))
1435 (skipped
1436 (dired-log-summary
1437 (format "%s: %d of %d file%s skipped"
1438 operation (length skipped) total
1439 (dired-plural-s total))
1440 skipped))
1441 (t
1442 (message "%s: %s file%s"
1443 operation success-count (dired-plural-s success-count)))))
1444 (dired-move-to-filename))
1445 \f
1446 (defun dired-do-create-files (op-symbol file-creator operation arg
1447 &optional marker-char op1
1448 how-to)
1449 "Create a new file for each marked file.
1450 Prompts user for target, which is a directory in which to create
1451 the new files. Target may also be a plain file if only one marked
1452 file exists. The way the default for the target directory is
1453 computed depends on the value of `dired-dwim-target-directory'.
1454 OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up'
1455 will determine whether pop-ups are appropriate for this OP-SYMBOL.
1456 FILE-CREATOR and OPERATION as in `dired-create-files'.
1457 ARG as in `dired-get-marked-files'.
1458 Optional arg MARKER-CHAR as in `dired-create-files'.
1459 Optional arg OP1 is an alternate form for OPERATION if there is
1460 only one file.
1461 Optional arg HOW-TO determiness how to treat the target.
1462 If HOW-TO is nil, use `file-directory-p' to determine if the
1463 target is a directory. If so, the marked file(s) are created
1464 inside that directory. Otherwise, the target is a plain file;
1465 an error is raised unless there is exactly one marked file.
1466 If HOW-TO is t, target is always treated as a plain file.
1467 Otherwise, HOW-TO should be a function of one argument, TARGET.
1468 If its return value is nil, TARGET is regarded as a plain file.
1469 If it return value is a list, TARGET is a generalized
1470 directory (e.g. some sort of archive). The first element of
1471 this list must be a function with at least four arguments:
1472 operation - as OPERATION above.
1473 rfn-list - list of the relative names for the marked files.
1474 fn-list - list of the absolute names for the marked files.
1475 target - the name of the target itself.
1476 The rest of into-dir are optional arguments.
1477 For any other return value, TARGET is treated as a directory."
1478 (or op1 (setq op1 operation))
1479 (let* ((fn-list (dired-get-marked-files nil arg))
1480 (rfn-list (mapcar (function dired-make-relative) fn-list))
1481 (dired-one-file ; fluid variable inside dired-create-files
1482 (and (consp fn-list) (null (cdr fn-list)) (car fn-list)))
1483 (target-dir (dired-dwim-target-directory))
1484 (default (and dired-one-file
1485 (expand-file-name (file-name-nondirectory (car fn-list))
1486 target-dir)))
1487 (defaults (dired-dwim-target-defaults fn-list target-dir))
1488 (target (expand-file-name ; fluid variable inside dired-create-files
1489 (minibuffer-with-setup-hook
1490 (lambda ()
1491 (set (make-local-variable 'minibuffer-default-add-function) nil)
1492 (setq minibuffer-default defaults))
1493 (dired-mark-read-file-name
1494 (concat (if dired-one-file op1 operation) " %s to: ")
1495 target-dir op-symbol arg rfn-list default))))
1496 (into-dir (cond ((null how-to)
1497 ;; Allow DOS/Windows users to change the letter
1498 ;; case of a directory. If we don't test these
1499 ;; conditions up front, file-directory-p below
1500 ;; will return t because the filesystem is
1501 ;; case-insensitive, and Emacs will try to move
1502 ;; foo -> foo/foo, which fails.
1503 (if (and (memq system-type '(ms-dos windows-nt cygwin))
1504 (eq op-symbol 'move)
1505 dired-one-file
1506 (string= (downcase
1507 (expand-file-name (car fn-list)))
1508 (downcase
1509 (expand-file-name target)))
1510 (not (string=
1511 (file-name-nondirectory (car fn-list))
1512 (file-name-nondirectory target))))
1513 nil
1514 (file-directory-p target)))
1515 ((eq how-to t) nil)
1516 (t (funcall how-to target)))))
1517 (if (and (consp into-dir) (functionp (car into-dir)))
1518 (apply (car into-dir) operation rfn-list fn-list target (cdr into-dir))
1519 (if (not (or dired-one-file into-dir))
1520 (error "Marked %s: target must be a directory: %s" operation target))
1521 ;; rename-file bombs when moving directories unless we do this:
1522 (or into-dir (setq target (directory-file-name target)))
1523 (dired-create-files
1524 file-creator operation fn-list
1525 (if into-dir ; target is a directory
1526 ;; This function uses fluid variable target when called
1527 ;; inside dired-create-files:
1528 (function
1529 (lambda (from)
1530 (expand-file-name (file-name-nondirectory from) target)))
1531 (function (lambda (from) target)))
1532 marker-char))))
1533
1534 ;; Read arguments for a marked-files command that wants a file name,
1535 ;; perhaps popping up the list of marked files.
1536 ;; ARG is the prefix arg and indicates whether the files came from
1537 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
1538 ;; If the current file was used, the list has but one element and ARG
1539 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
1540 ;; DEFAULT is the default value to return if the user just hits RET;
1541 ;; if it is omitted or nil, then the name of the directory is used.
1542
1543 (defun dired-mark-read-file-name (prompt dir op-symbol arg files
1544 &optional default)
1545 (dired-mark-pop-up
1546 nil op-symbol files
1547 (function read-file-name)
1548 (format prompt (dired-mark-prompt arg files)) dir default))
1549
1550 (defun dired-dwim-target-directory ()
1551 ;; Try to guess which target directory the user may want.
1552 ;; If there is a dired buffer displayed in one of the next windows,
1553 ;; use its current subdir, else use current subdir of this dired buffer.
1554 (let ((this-dir (and (eq major-mode 'dired-mode)
1555 (dired-current-directory))))
1556 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode
1557 (if dired-dwim-target
1558 (let* ((other-win (get-window-with-predicate
1559 (lambda (window)
1560 (with-current-buffer (window-buffer window)
1561 (eq major-mode 'dired-mode)))))
1562 (other-dir (and other-win
1563 (with-current-buffer (window-buffer other-win)
1564 (and (eq major-mode 'dired-mode)
1565 (dired-current-directory))))))
1566 (or other-dir this-dir))
1567 this-dir)))
1568
1569 (defun dired-dwim-target-defaults (fn-list target-dir)
1570 ;; Return a list of default values for file-reading functions in Dired.
1571 ;; This list may contain directories from Dired buffers in other windows.
1572 ;; `fn-list' is a list of file names used to build a list of defaults.
1573 ;; When nil or more than one element, a list of defaults will
1574 ;; contain only directory names. `target-dir' is a directory name
1575 ;; to exclude from the returned list, for the case when this
1576 ;; directory name is already presented in initial input.
1577 ;; For Dired operations that support `dired-dwim-target',
1578 ;; the argument `target-dir' should have the value returned
1579 ;; from `dired-dwim-target-directory'.
1580 (let ((dired-one-file
1581 (and (consp fn-list) (null (cdr fn-list)) (car fn-list)))
1582 (current-dir (and (eq major-mode 'dired-mode)
1583 (dired-current-directory)))
1584 dired-dirs)
1585 ;; Get a list of directories of visible buffers in dired-mode.
1586 (walk-windows (lambda (w)
1587 (with-current-buffer (window-buffer w)
1588 (and (eq major-mode 'dired-mode)
1589 (push (dired-current-directory) dired-dirs)))))
1590 ;; Force the current dir to be the first in the list.
1591 (setq dired-dirs
1592 (delete-dups (delq nil (cons current-dir (nreverse dired-dirs)))))
1593 ;; Remove the target dir (if specified) or the current dir from
1594 ;; default values, because it should be already in initial input.
1595 (setq dired-dirs (delete (or target-dir current-dir) dired-dirs))
1596 ;; Return a list of default values.
1597 (if dired-one-file
1598 ;; For one file operation, provide a list that contains
1599 ;; other directories, other directories with the appended filename
1600 ;; and the current directory with the appended filename, e.g.
1601 ;; 1. /TARGET-DIR/
1602 ;; 2. /TARGET-DIR/FILENAME
1603 ;; 3. /CURRENT-DIR/FILENAME
1604 (append dired-dirs
1605 (mapcar (lambda (dir)
1606 (expand-file-name
1607 (file-name-nondirectory (car fn-list)) dir))
1608 (reverse dired-dirs))
1609 (list (expand-file-name
1610 (file-name-nondirectory (car fn-list))
1611 (or target-dir current-dir))))
1612 ;; For multi-file operation, return only a list of other directories.
1613 dired-dirs)))
1614
1615 \f
1616 ;;;###autoload
1617 (defun dired-create-directory (directory)
1618 "Create a directory called DIRECTORY."
1619 (interactive
1620 (list (read-file-name "Create directory: " (dired-current-directory))))
1621 (let* ((expanded (directory-file-name (expand-file-name directory)))
1622 (try expanded) new)
1623 ;; Find the topmost nonexistent parent dir (variable `new')
1624 (while (and try (not (file-exists-p try)) (not (equal new try)))
1625 (setq new try
1626 try (directory-file-name (file-name-directory try))))
1627 (make-directory expanded t)
1628 (when new
1629 (dired-add-file new)
1630 (dired-move-to-filename))))
1631
1632 (defun dired-into-dir-with-symlinks (target)
1633 (and (file-directory-p target)
1634 (not (file-symlink-p target))))
1635 ;; This may not always be what you want, especially if target is your
1636 ;; home directory and it happens to be a symbolic link, as is often the
1637 ;; case with NFS and automounters. Or if you want to make symlinks
1638 ;; into directories that themselves are only symlinks, also quite
1639 ;; common.
1640
1641 ;; So we don't use this function as value for HOW-TO in
1642 ;; dired-do-symlink, which has the minor disadvantage of
1643 ;; making links *into* a symlinked-dir, when you really wanted to
1644 ;; *overwrite* that symlink. In that (rare, I guess) case, you'll
1645 ;; just have to remove that symlink by hand before making your marked
1646 ;; symlinks.
1647
1648 (defvar dired-copy-how-to-fn nil
1649 "Either nil or a function used by `dired-do-copy' to determine target.
1650 See HOW-TO argument for `dired-do-create-files'.")
1651
1652 ;;;###autoload
1653 (defun dired-do-copy (&optional arg)
1654 "Copy all marked (or next ARG) files, or copy the current file.
1655 This normally preserves the last-modified date when copying.
1656 When operating on just the current file, you specify the new name.
1657 When operating on multiple or marked files, you specify a directory,
1658 and new copies of these files are made in that directory
1659 with the same names that the files currently have. The default
1660 suggested for the target directory depends on the value of
1661 `dired-dwim-target', which see.
1662
1663 This command copies symbolic links by creating new ones,
1664 like `cp -d'."
1665 (interactive "P")
1666 (let ((dired-recursive-copies dired-recursive-copies))
1667 (dired-do-create-files 'copy (function dired-copy-file)
1668 "Copy"
1669 arg dired-keep-marker-copy
1670 nil dired-copy-how-to-fn)))
1671
1672 ;;;###autoload
1673 (defun dired-do-symlink (&optional arg)
1674 "Make symbolic links to current file or all marked (or next ARG) files.
1675 When operating on just the current file, you specify the new name.
1676 When operating on multiple or marked files, you specify a directory
1677 and new symbolic links are made in that directory
1678 with the same names that the files currently have. The default
1679 suggested for the target directory depends on the value of
1680 `dired-dwim-target', which see.
1681
1682 For relative symlinks, use \\[dired-do-relsymlink]."
1683 (interactive "P")
1684 (dired-do-create-files 'symlink (function make-symbolic-link)
1685 "Symlink" arg dired-keep-marker-symlink))
1686
1687 ;;;###autoload
1688 (defun dired-do-hardlink (&optional arg)
1689 "Add names (hard links) current file or all marked (or next ARG) files.
1690 When operating on just the current file, you specify the new name.
1691 When operating on multiple or marked files, you specify a directory
1692 and new hard links are made in that directory
1693 with the same names that the files currently have. The default
1694 suggested for the target directory depends on the value of
1695 `dired-dwim-target', which see."
1696 (interactive "P")
1697 (dired-do-create-files 'hardlink (function dired-hardlink)
1698 "Hardlink" arg dired-keep-marker-hardlink))
1699
1700 (defun dired-hardlink (file newname &optional ok-if-already-exists)
1701 (dired-handle-overwrite newname)
1702 ;; error is caught in -create-files
1703 (add-name-to-file file newname ok-if-already-exists)
1704 ;; Update the link count
1705 (dired-relist-file file))
1706
1707 ;;;###autoload
1708 (defun dired-do-rename (&optional arg)
1709 "Rename current file or all marked (or next ARG) files.
1710 When renaming just the current file, you specify the new name.
1711 When renaming multiple or marked files, you specify a directory.
1712 This command also renames any buffers that are visiting the files.
1713 The default suggested for the target directory depends on the value
1714 of `dired-dwim-target', which see."
1715 (interactive "P")
1716 (dired-do-create-files 'move (function dired-rename-file)
1717 "Move" arg dired-keep-marker-rename "Rename"))
1718 ;;;###end dired-cp.el
1719 \f
1720 ;;; 5K
1721 ;;;###begin dired-re.el
1722 (defun dired-do-create-files-regexp
1723 (file-creator operation arg regexp newname &optional whole-name marker-char)
1724 ;; Create a new file for each marked file using regexps.
1725 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1726 ;; ARG as in dired-get-marked-files.
1727 ;; Matches each marked file against REGEXP and constructs the new
1728 ;; filename from NEWNAME (like in function replace-match).
1729 ;; Optional arg WHOLE-NAME means match/replace the whole file name
1730 ;; instead of only the non-directory part of the file.
1731 ;; Optional arg MARKER-CHAR as in dired-create-files.
1732 (let* ((fn-list (dired-get-marked-files nil arg))
1733 (fn-count (length fn-list))
1734 (operation-prompt (concat operation " `%s' to `%s'?"))
1735 (rename-regexp-help-form (format "\
1736 Type SPC or `y' to %s one match, DEL or `n' to skip to next,
1737 `!' to %s all remaining matches with no more questions."
1738 (downcase operation)
1739 (downcase operation)))
1740 (regexp-name-constructor
1741 ;; Function to construct new filename using REGEXP and NEWNAME:
1742 (if whole-name ; easy (but rare) case
1743 (function
1744 (lambda (from)
1745 (let ((to (dired-string-replace-match regexp from newname))
1746 ;; must bind help-form directly around call to
1747 ;; dired-query
1748 (help-form rename-regexp-help-form))
1749 (if to
1750 (and (dired-query 'rename-regexp-query
1751 operation-prompt
1752 from
1753 to)
1754 to)
1755 (dired-log "%s: %s did not match regexp %s\n"
1756 operation from regexp)))))
1757 ;; not whole-name, replace non-directory part only
1758 (function
1759 (lambda (from)
1760 (let* ((new (dired-string-replace-match
1761 regexp (file-name-nondirectory from) newname))
1762 (to (and new ; nil means there was no match
1763 (expand-file-name new
1764 (file-name-directory from))))
1765 (help-form rename-regexp-help-form))
1766 (if to
1767 (and (dired-query 'rename-regexp-query
1768 operation-prompt
1769 (dired-make-relative from)
1770 (dired-make-relative to))
1771 to)
1772 (dired-log "%s: %s did not match regexp %s\n"
1773 operation (file-name-nondirectory from) regexp)))))))
1774 rename-regexp-query)
1775 (dired-create-files
1776 file-creator operation fn-list regexp-name-constructor marker-char)))
1777
1778 (defun dired-mark-read-regexp (operation)
1779 ;; Prompt user about performing OPERATION.
1780 ;; Read and return list of: regexp newname arg whole-name.
1781 (let* ((whole-name
1782 (equal 0 (prefix-numeric-value current-prefix-arg)))
1783 (arg
1784 (if whole-name nil current-prefix-arg))
1785 (regexp
1786 (dired-read-regexp
1787 (concat (if whole-name "Abs. " "") operation " from (regexp): ")))
1788 (newname
1789 (read-string
1790 (concat (if whole-name "Abs. " "") operation " " regexp " to: "))))
1791 (list regexp newname arg whole-name)))
1792
1793 ;;;###autoload
1794 (defun dired-do-rename-regexp (regexp newname &optional arg whole-name)
1795 "Rename selected files whose names match REGEXP to NEWNAME.
1796
1797 With non-zero prefix argument ARG, the command operates on the next ARG
1798 files. Otherwise, it operates on all the marked files, or the current
1799 file if none are marked.
1800
1801 As each match is found, the user must type a character saying
1802 what to do with it. For directions, type \\[help-command] at that time.
1803 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
1804 REGEXP defaults to the last regexp used.
1805
1806 With a zero prefix arg, renaming by regexp affects the absolute file name.
1807 Normally, only the non-directory part of the file name is used and changed."
1808 (interactive (dired-mark-read-regexp "Rename"))
1809 (dired-do-create-files-regexp
1810 (function dired-rename-file)
1811 "Rename" arg regexp newname whole-name dired-keep-marker-rename))
1812
1813 ;;;###autoload
1814 (defun dired-do-copy-regexp (regexp newname &optional arg whole-name)
1815 "Copy selected files whose names match REGEXP to NEWNAME.
1816 See function `dired-do-rename-regexp' for more info."
1817 (interactive (dired-mark-read-regexp "Copy"))
1818 (let ((dired-recursive-copies nil)) ; No recursive copies.
1819 (dired-do-create-files-regexp
1820 (function dired-copy-file)
1821 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1822 arg regexp newname whole-name dired-keep-marker-copy)))
1823
1824 ;;;###autoload
1825 (defun dired-do-hardlink-regexp (regexp newname &optional arg whole-name)
1826 "Hardlink selected files whose names match REGEXP to NEWNAME.
1827 See function `dired-do-rename-regexp' for more info."
1828 (interactive (dired-mark-read-regexp "HardLink"))
1829 (dired-do-create-files-regexp
1830 (function add-name-to-file)
1831 "HardLink" arg regexp newname whole-name dired-keep-marker-hardlink))
1832
1833 ;;;###autoload
1834 (defun dired-do-symlink-regexp (regexp newname &optional arg whole-name)
1835 "Symlink selected files whose names match REGEXP to NEWNAME.
1836 See function `dired-do-rename-regexp' for more info."
1837 (interactive (dired-mark-read-regexp "SymLink"))
1838 (dired-do-create-files-regexp
1839 (function make-symbolic-link)
1840 "SymLink" arg regexp newname whole-name dired-keep-marker-symlink))
1841
1842 (defun dired-create-files-non-directory
1843 (file-creator basename-constructor operation arg)
1844 ;; Perform FILE-CREATOR on the non-directory part of marked files
1845 ;; using function BASENAME-CONSTRUCTOR, with query for each file.
1846 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files.
1847 (let (rename-non-directory-query)
1848 (dired-create-files
1849 file-creator
1850 operation
1851 (dired-get-marked-files nil arg)
1852 (function
1853 (lambda (from)
1854 (let ((to (concat (file-name-directory from)
1855 (funcall basename-constructor
1856 (file-name-nondirectory from)))))
1857 (and (let ((help-form (format "\
1858 Type SPC or `y' to %s one file, DEL or `n' to skip to next,
1859 `!' to %s all remaining matches with no more questions."
1860 (downcase operation)
1861 (downcase operation))))
1862 (dired-query 'rename-non-directory-query
1863 (concat operation " `%s' to `%s'")
1864 (dired-make-relative from)
1865 (dired-make-relative to)))
1866 to))))
1867 dired-keep-marker-rename)))
1868
1869 (defun dired-rename-non-directory (basename-constructor operation arg)
1870 (dired-create-files-non-directory
1871 (function dired-rename-file)
1872 basename-constructor operation arg))
1873
1874 ;;;###autoload
1875 (defun dired-upcase (&optional arg)
1876 "Rename all marked (or next ARG) files to upper case."
1877 (interactive "P")
1878 (dired-rename-non-directory (function upcase) "Rename upcase" arg))
1879
1880 ;;;###autoload
1881 (defun dired-downcase (&optional arg)
1882 "Rename all marked (or next ARG) files to lower case."
1883 (interactive "P")
1884 (dired-rename-non-directory (function downcase) "Rename downcase" arg))
1885
1886 ;;;###end dired-re.el
1887 \f
1888 ;;; 13K
1889 ;;;###begin dired-ins.el
1890
1891 ;;;###autoload
1892 (defun dired-maybe-insert-subdir (dirname &optional
1893 switches no-error-if-not-dir-p)
1894 "Insert this subdirectory into the same dired buffer.
1895 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
1896 else inserts it at its natural place (as `ls -lR' would have done).
1897 With a prefix arg, you may edit the ls switches used for this listing.
1898 You can add `R' to the switches to expand the whole tree starting at
1899 this subdirectory.
1900 This function takes some pains to conform to `ls -lR' output.
1901
1902 Dired remembers switches specified with a prefix arg, so that reverting
1903 the buffer will not reset them. However, using `dired-undo' to re-insert
1904 or delete subdirectories can bypass this machinery. Hence, you sometimes
1905 may have to reset some subdirectory switches after a `dired-undo'.
1906 You can reset all subdirectory switches to the default using
1907 \\<dired-mode-map>\\[dired-reset-subdir-switches].
1908 See Info node `(emacs)Subdir switches' for more details."
1909 (interactive
1910 (list (dired-get-filename)
1911 (if current-prefix-arg
1912 (read-string "Switches for listing: "
1913 (or dired-subdir-switches dired-actual-switches)))))
1914 (let ((opoint (point)))
1915 ;; We don't need a marker for opoint as the subdir is always
1916 ;; inserted *after* opoint.
1917 (setq dirname (file-name-as-directory dirname))
1918 (or (and (not switches)
1919 (dired-goto-subdir dirname))
1920 (dired-insert-subdir dirname switches no-error-if-not-dir-p))
1921 ;; Push mark so that it's easy to find back. Do this after the
1922 ;; insert message so that the user sees the `Mark set' message.
1923 (push-mark opoint)))
1924
1925 ;;;###autoload
1926 (defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p)
1927 "Insert this subdirectory into the same dired buffer.
1928 If it is already present, overwrites previous entry,
1929 else inserts it at its natural place (as `ls -lR' would have done).
1930 With a prefix arg, you may edit the `ls' switches used for this listing.
1931 You can add `R' to the switches to expand the whole tree starting at
1932 this subdirectory.
1933 This function takes some pains to conform to `ls -lR' output."
1934 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like
1935 ;; Prospero where dired-ls does the right thing, but
1936 ;; file-directory-p has not been redefined.
1937 (interactive
1938 (list (dired-get-filename)
1939 (if current-prefix-arg
1940 (read-string "Switches for listing: "
1941 (or dired-subdir-switches dired-actual-switches)))))
1942 (setq dirname (file-name-as-directory (expand-file-name dirname)))
1943 (or no-error-if-not-dir-p
1944 (file-directory-p dirname)
1945 (error "Attempt to insert a non-directory: %s" dirname))
1946 (let ((elt (assoc dirname dired-subdir-alist))
1947 (cons (assoc-string dirname dired-switches-alist))
1948 (modflag (buffer-modified-p))
1949 (old-switches switches)
1950 switches-have-R mark-alist case-fold-search buffer-read-only)
1951 (and (not switches) cons (setq switches (cdr cons)))
1952 (dired-insert-subdir-validate dirname switches)
1953 ;; case-fold-search is nil now, so we can test for capital `R':
1954 (if (setq switches-have-R (and switches (string-match "R" switches)))
1955 ;; avoid duplicated subdirs
1956 (setq mark-alist (dired-kill-tree dirname t)))
1957 (if elt
1958 ;; If subdir is already present, remove it and remember its marks
1959 (setq mark-alist (nconc (dired-insert-subdir-del elt) mark-alist))
1960 (dired-insert-subdir-newpos dirname)) ; else compute new position
1961 (dired-insert-subdir-doupdate
1962 dirname elt (dired-insert-subdir-doinsert dirname switches))
1963 (when old-switches
1964 (if cons
1965 (setcdr cons switches)
1966 (push (cons dirname switches) dired-switches-alist)))
1967 (when switches-have-R
1968 (dired-build-subdir-alist switches)
1969 (setq switches (dired-replace-in-string "R" "" switches))
1970 (dolist (cur-ass dired-subdir-alist)
1971 (let ((cur-dir (car cur-ass)))
1972 (and (dired-in-this-tree cur-dir dirname)
1973 (let ((cur-cons (assoc-string cur-dir dired-switches-alist)))
1974 (if cur-cons
1975 (setcdr cur-cons switches)
1976 (push (cons cur-dir switches) dired-switches-alist)))))))
1977 (dired-initial-position dirname)
1978 (save-excursion (dired-mark-remembered mark-alist))
1979 (restore-buffer-modified-p modflag)))
1980
1981 (defun dired-insert-subdir-validate (dirname &optional switches)
1982 ;; Check that it is valid to insert DIRNAME with SWITCHES.
1983 ;; Signal an error if invalid (e.g. user typed `i' on `..').
1984 (or (dired-in-this-tree dirname (expand-file-name default-directory))
1985 (error "%s: not in this directory tree" dirname))
1986 (let ((real-switches (or switches dired-subdir-switches)))
1987 (when real-switches
1988 (let (case-fold-search)
1989 (mapcar
1990 (function
1991 (lambda (x)
1992 (or (eq (null (string-match x real-switches))
1993 (null (string-match x dired-actual-switches)))
1994 (error
1995 "Can't have dirs with and without -%s switches together" x))))
1996 ;; all switches that make a difference to dired-get-filename:
1997 '("F" "b"))))))
1998
1999 (defun dired-alist-add (dir new-marker)
2000 ;; Add new DIR at NEW-MARKER. Sort alist.
2001 (dired-alist-add-1 dir new-marker)
2002 (dired-alist-sort))
2003
2004 (defun dired-alist-sort ()
2005 ;; Keep the alist sorted on buffer position.
2006 (setq dired-subdir-alist
2007 (sort dired-subdir-alist
2008 (function (lambda (elt1 elt2)
2009 (> (dired-get-subdir-min elt1)
2010 (dired-get-subdir-min elt2)))))))
2011
2012 (defun dired-kill-tree (dirname &optional remember-marks kill-root)
2013 "Kill all proper subdirs of DIRNAME, excluding DIRNAME itself.
2014 Interactively, you can kill DIRNAME as well by using a prefix argument.
2015 In interactive use, the command prompts for DIRNAME.
2016
2017 When called from Lisp, if REMEMBER-MARKS is non-nil, return an alist
2018 of marked files. If KILL-ROOT is non-nil, kill DIRNAME as well."
2019 (interactive "DKill tree below directory: \ni\nP")
2020 (setq dirname (file-name-as-directory (expand-file-name dirname)))
2021 (let ((s-alist dired-subdir-alist) dir m-alist)
2022 (while s-alist
2023 (setq dir (car (car s-alist))
2024 s-alist (cdr s-alist))
2025 (and (or kill-root (not (string-equal dir dirname)))
2026 (dired-in-this-tree dir dirname)
2027 (dired-goto-subdir dir)
2028 (setq m-alist (nconc (dired-kill-subdir remember-marks) m-alist))))
2029 m-alist))
2030
2031 (defun dired-insert-subdir-newpos (new-dir)
2032 ;; Find pos for new subdir, according to tree order.
2033 ;;(goto-char (point-max))
2034 (let ((alist dired-subdir-alist) elt dir pos new-pos)
2035 (while alist
2036 (setq elt (car alist)
2037 alist (cdr alist)
2038 dir (car elt)
2039 pos (dired-get-subdir-min elt))
2040 (if (dired-tree-lessp dir new-dir)
2041 ;; Insert NEW-DIR after DIR
2042 (setq new-pos (dired-get-subdir-max elt)
2043 alist nil)))
2044 (goto-char new-pos))
2045 ;; want a separating newline between subdirs
2046 (or (eobp)
2047 (forward-line -1))
2048 (insert "\n")
2049 (point))
2050
2051 (defun dired-insert-subdir-del (element)
2052 ;; Erase an already present subdir (given by ELEMENT) from buffer.
2053 ;; Move to that buffer position. Return a mark-alist.
2054 (let ((begin-marker (dired-get-subdir-min element)))
2055 (goto-char begin-marker)
2056 ;; Are at beginning of subdir (and inside it!). Now determine its end:
2057 (goto-char (dired-subdir-max))
2058 (or (eobp);; want a separating newline _between_ subdirs:
2059 (forward-char -1))
2060 (prog1
2061 (dired-remember-marks begin-marker (point))
2062 (delete-region begin-marker (point)))))
2063
2064 (defun dired-insert-subdir-doinsert (dirname switches)
2065 ;; Insert ls output after point.
2066 ;; Return the boundary of the inserted text (as list of BEG and END).
2067 (save-excursion
2068 (let ((begin (point)))
2069 (let ((dired-actual-switches
2070 (or switches
2071 dired-subdir-switches
2072 (dired-replace-in-string "R" "" dired-actual-switches))))
2073 (if (equal dirname (car (car (last dired-subdir-alist))))
2074 ;; If doing the top level directory of the buffer,
2075 ;; redo it as specified in dired-directory.
2076 (dired-readin-insert)
2077 (dired-insert-directory dirname dired-actual-switches nil nil t)))
2078 (list begin (point)))))
2079
2080 (defun dired-insert-subdir-doupdate (dirname elt beg-end)
2081 ;; Point is at the correct subdir alist position for ELT,
2082 ;; BEG-END is the subdir-region (as list of begin and end).
2083 (if elt ; subdir was already present
2084 ;; update its position (should actually be unchanged)
2085 (set-marker (dired-get-subdir-min elt) (point-marker))
2086 (dired-alist-add dirname (point-marker)))
2087 ;; The hook may depend on the subdir-alist containing the just
2088 ;; inserted subdir, so run it after dired-alist-add:
2089 (if dired-after-readin-hook
2090 (save-excursion
2091 (let ((begin (nth 0 beg-end))
2092 (end (nth 1 beg-end)))
2093 (goto-char begin)
2094 (save-restriction
2095 (narrow-to-region begin end)
2096 ;; hook may add or delete lines, but the subdir boundary
2097 ;; marker floats
2098 (run-hooks 'dired-after-readin-hook))))))
2099
2100 (defun dired-tree-lessp (dir1 dir2)
2101 ;; Lexicographic order on file name components, like `ls -lR':
2102 ;; DIR1 < DIR2 if DIR1 comes *before* DIR2 in an `ls -lR' listing,
2103 ;; i.e., if DIR1 is a (grand)parent dir of DIR2,
2104 ;; or DIR1 and DIR2 are in the same parentdir and their last
2105 ;; components are string-lessp.
2106 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp.
2107 ;; string-lessp could arguably be replaced by file-newer-than-file-p
2108 ;; if dired-actual-switches contained `t'.
2109 (setq dir1 (file-name-as-directory dir1)
2110 dir2 (file-name-as-directory dir2))
2111 (let ((components-1 (dired-split "/" dir1))
2112 (components-2 (dired-split "/" dir2)))
2113 (while (and components-1
2114 components-2
2115 (equal (car components-1) (car components-2)))
2116 (setq components-1 (cdr components-1)
2117 components-2 (cdr components-2)))
2118 (let ((c1 (car components-1))
2119 (c2 (car components-2)))
2120
2121 (cond ((and c1 c2)
2122 (string-lessp c1 c2))
2123 ((and (null c1) (null c2))
2124 nil) ; they are equal, not lessp
2125 ((null c1) ; c2 is a subdir of c1: c1<c2
2126 t)
2127 ((null c2) ; c1 is a subdir of c2: c1>c2
2128 nil)
2129 (t (error "This can't happen"))))))
2130
2131 ;; There should be a builtin split function - inverse to mapconcat.
2132 (defun dired-split (pat str &optional limit)
2133 "Splitting on regexp PAT, turn string STR into a list of substrings.
2134 Optional third arg LIMIT (>= 1) is a limit to the length of the
2135 resulting list.
2136 Thus, if SEP is a regexp that only matches itself,
2137
2138 (mapconcat 'identity (dired-split SEP STRING) SEP)
2139
2140 is always equal to STRING."
2141 (let* ((start (string-match pat str))
2142 (result (list (substring str 0 start)))
2143 (count 1)
2144 (end (if start (match-end 0))))
2145 (if end ; else nothing left
2146 (while (and (or (not (integerp limit))
2147 (< count limit))
2148 (string-match pat str end))
2149 (setq start (match-beginning 0)
2150 count (1+ count)
2151 result (cons (substring str end start) result)
2152 end (match-end 0)
2153 start end)
2154 ))
2155 (if (and (or (not (integerp limit))
2156 (< count limit))
2157 end) ; else nothing left
2158 (setq result
2159 (cons (substring str end) result)))
2160 (nreverse result)))
2161 \f
2162 ;;; moving by subdirectories
2163
2164 ;;;###autoload
2165 (defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip)
2166 "Go to previous subdirectory, regardless of level.
2167 When called interactively and not on a subdir line, go to this subdir's line."
2168 ;;(interactive "p")
2169 (interactive
2170 (list (if current-prefix-arg
2171 (prefix-numeric-value current-prefix-arg)
2172 ;; if on subdir start already, don't stay there!
2173 (if (dired-get-subdir) 1 0))))
2174 (dired-next-subdir (- arg) no-error-if-not-found no-skip))
2175
2176 (defun dired-subdir-min ()
2177 (save-excursion
2178 (if (not (dired-prev-subdir 0 t t))
2179 (error "Not in a subdir!")
2180 (point))))
2181
2182 ;;;###autoload
2183 (defun dired-goto-subdir (dir)
2184 "Go to end of header line of DIR in this dired buffer.
2185 Return value of point on success, otherwise return nil.
2186 The next char is either \\n, or \\r if DIR is hidden."
2187 (interactive
2188 (prog1 ; let push-mark display its message
2189 (list (expand-file-name
2190 (completing-read "Goto in situ directory: " ; prompt
2191 dired-subdir-alist ; table
2192 nil ; predicate
2193 t ; require-match
2194 (dired-current-directory))))
2195 (push-mark)))
2196 (setq dir (file-name-as-directory dir))
2197 (let ((elt (assoc dir dired-subdir-alist)))
2198 (and elt
2199 (goto-char (dired-get-subdir-min elt))
2200 ;; dired-subdir-hidden-p and dired-add-entry depend on point being
2201 ;; at either \r or \n after this function succeeds.
2202 (progn (skip-chars-forward "^\r\n")
2203 (point)))))
2204 \f
2205 ;;;###autoload
2206 (defun dired-mark-subdir-files ()
2207 "Mark all files except `.' and `..' in current subdirectory.
2208 If the Dired buffer shows multiple directories, this command
2209 marks the files listed in the subdirectory that point is in."
2210 (interactive)
2211 (let ((p-min (dired-subdir-min)))
2212 (dired-mark-files-in-region p-min (dired-subdir-max))))
2213
2214 ;;;###autoload
2215 (defun dired-kill-subdir (&optional remember-marks)
2216 "Remove all lines of current subdirectory.
2217 Lower levels are unaffected."
2218 ;; With optional REMEMBER-MARKS, return a mark-alist.
2219 (interactive)
2220 (let* ((beg (dired-subdir-min))
2221 (end (dired-subdir-max))
2222 (modflag (buffer-modified-p))
2223 (cur-dir (dired-current-directory))
2224 (cons (assoc-string cur-dir dired-switches-alist))
2225 buffer-read-only)
2226 (if (equal cur-dir default-directory)
2227 (error "Attempt to kill top level directory"))
2228 (prog1
2229 (if remember-marks (dired-remember-marks beg end))
2230 (delete-region beg end)
2231 (if (eobp) ; don't leave final blank line
2232 (delete-char -1))
2233 (dired-unsubdir cur-dir)
2234 (when cons
2235 (setq dired-switches-alist (delete cons dired-switches-alist)))
2236 (restore-buffer-modified-p modflag))))
2237
2238 (defun dired-unsubdir (dir)
2239 ;; Remove DIR from the alist
2240 (setq dired-subdir-alist
2241 (delq (assoc dir dired-subdir-alist) dired-subdir-alist)))
2242
2243 ;;;###autoload
2244 (defun dired-tree-up (arg)
2245 "Go up ARG levels in the dired tree."
2246 (interactive "p")
2247 (let ((dir (dired-current-directory)))
2248 (while (>= arg 1)
2249 (setq arg (1- arg)
2250 dir (file-name-directory (directory-file-name dir))))
2251 ;;(setq dir (expand-file-name dir))
2252 (or (dired-goto-subdir dir)
2253 (error "Cannot go up to %s - not in this tree" dir))))
2254
2255 ;;;###autoload
2256 (defun dired-tree-down ()
2257 "Go down in the dired tree."
2258 (interactive)
2259 (let ((dir (dired-current-directory)) ; has slash
2260 pos case-fold-search) ; filenames are case sensitive
2261 (let ((rest (reverse dired-subdir-alist)) elt)
2262 (while rest
2263 (setq elt (car rest)
2264 rest (cdr rest))
2265 (if (dired-in-this-tree (directory-file-name (car elt)) dir)
2266 (setq rest nil
2267 pos (dired-goto-subdir (car elt))))))
2268 (if pos
2269 (goto-char pos)
2270 (error "At the bottom"))))
2271 \f
2272 ;;; hiding
2273
2274 (defun dired-unhide-subdir ()
2275 (let (buffer-read-only)
2276 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?\r ?\n)))
2277
2278 (defun dired-hide-check ()
2279 (or selective-display
2280 (error "selective-display must be t for subdir hiding to work!")))
2281
2282 (defun dired-subdir-hidden-p (dir)
2283 (and selective-display
2284 (save-excursion
2285 (dired-goto-subdir dir)
2286 (looking-at "\r"))))
2287
2288 ;;;###autoload
2289 (defun dired-hide-subdir (arg)
2290 "Hide or unhide the current subdirectory and move to next directory.
2291 Optional prefix arg is a repeat factor.
2292 Use \\[dired-hide-all] to (un)hide all directories."
2293 (interactive "p")
2294 (dired-hide-check)
2295 (let ((modflag (buffer-modified-p)))
2296 (while (>= (setq arg (1- arg)) 0)
2297 (let* ((cur-dir (dired-current-directory))
2298 (hidden-p (dired-subdir-hidden-p cur-dir))
2299 (elt (assoc cur-dir dired-subdir-alist))
2300 (end-pos (1- (dired-get-subdir-max elt)))
2301 buffer-read-only)
2302 ;; keep header line visible, hide rest
2303 (goto-char (dired-get-subdir-min elt))
2304 (skip-chars-forward "^\n\r")
2305 (if hidden-p
2306 (subst-char-in-region (point) end-pos ?\r ?\n)
2307 (subst-char-in-region (point) end-pos ?\n ?\r)))
2308 (dired-next-subdir 1 t))
2309 (restore-buffer-modified-p modflag)))
2310
2311 ;;;###autoload
2312 (defun dired-hide-all (&optional ignored)
2313 "Hide all subdirectories, leaving only their header lines.
2314 If there is already something hidden, make everything visible again.
2315 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
2316 (interactive "P")
2317 (dired-hide-check)
2318 (let ((modflag (buffer-modified-p))
2319 buffer-read-only)
2320 (if (save-excursion
2321 (goto-char (point-min))
2322 (search-forward "\r" nil t))
2323 ;; unhide - bombs on \r in filenames
2324 (subst-char-in-region (point-min) (point-max) ?\r ?\n)
2325 ;; hide
2326 (let ((pos (point-max)) ; pos of end of last directory
2327 (alist dired-subdir-alist))
2328 (while alist ; while there are dirs before pos
2329 (subst-char-in-region (dired-get-subdir-min (car alist)) ; pos of prev dir
2330 (save-excursion
2331 (goto-char pos) ; current dir
2332 ;; we're somewhere on current dir's line
2333 (forward-line -1)
2334 (point))
2335 ?\n ?\r)
2336 (setq pos (dired-get-subdir-min (car alist))) ; prev dir gets current dir
2337 (setq alist (cdr alist)))))
2338 (restore-buffer-modified-p modflag)))
2339
2340 ;;;###end dired-ins.el
2341
2342 \f
2343 ;; Search only in file names in the Dired buffer.
2344
2345 (defcustom dired-isearch-filenames nil
2346 "Non-nil to Isearch in file names only.
2347 If t, Isearch in Dired always matches only file names.
2348 If `dwim', Isearch matches file names when initial point position is on
2349 a file name. Otherwise, it searches the whole buffer without restrictions."
2350 :type '(choice (const :tag "No restrictions" nil)
2351 (const :tag "When point is on a file name initially, search file names" dwim)
2352 (const :tag "Always search in file names" t))
2353 :group 'dired
2354 :version "23.1")
2355
2356 (defvar dired-isearch-filter-predicate-orig nil)
2357
2358 (defun dired-isearch-filenames-toggle ()
2359 "Toggle file names searching on or off.
2360 When on, Isearch skips matches outside file names using the predicate
2361 `dired-isearch-filter-filenames' that matches only at file names.
2362 When off, it uses the original predicate."
2363 (interactive)
2364 (setq isearch-filter-predicate
2365 (if (eq isearch-filter-predicate 'dired-isearch-filter-filenames)
2366 dired-isearch-filter-predicate-orig
2367 'dired-isearch-filter-filenames))
2368 (setq isearch-success t isearch-adjusted t)
2369 (isearch-update))
2370
2371 ;;;###autoload
2372 (defun dired-isearch-filenames-setup ()
2373 "Set up isearch to search in Dired file names.
2374 Intended to be added to `isearch-mode-hook'."
2375 (when (or (eq dired-isearch-filenames t)
2376 (and (eq dired-isearch-filenames 'dwim)
2377 (get-text-property (point) 'dired-filename)))
2378 (setq isearch-message-prefix-add "filename ")
2379 (define-key isearch-mode-map "\M-sf" 'dired-isearch-filenames-toggle)
2380 (setq dired-isearch-filter-predicate-orig
2381 (default-value 'isearch-filter-predicate))
2382 (setq-default isearch-filter-predicate 'dired-isearch-filter-filenames)
2383 (add-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end nil t)))
2384
2385 (defun dired-isearch-filenames-end ()
2386 "Clean up the Dired file name search after terminating isearch."
2387 (setq isearch-message-prefix-add nil)
2388 (define-key isearch-mode-map "\M-sf" nil)
2389 (setq-default isearch-filter-predicate dired-isearch-filter-predicate-orig)
2390 (remove-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end t))
2391
2392 (defun dired-isearch-filter-filenames (beg end)
2393 "Test whether the current search hit is a visible file name.
2394 Return non-nil if the text from BEG to END is part of a file
2395 name (has the text property `dired-filename') and is visible."
2396 (and (isearch-filter-visible beg end)
2397 (if dired-isearch-filenames
2398 (text-property-not-all (min beg end) (max beg end)
2399 'dired-filename nil)
2400 t)))
2401
2402 ;;;###autoload
2403 (defun dired-isearch-filenames ()
2404 "Search for a string using Isearch only in file names in the Dired buffer."
2405 (interactive)
2406 (let ((dired-isearch-filenames t))
2407 (isearch-forward)))
2408
2409 ;;;###autoload
2410 (defun dired-isearch-filenames-regexp ()
2411 "Search for a regexp using Isearch only in file names in the Dired buffer."
2412 (interactive)
2413 (let ((dired-isearch-filenames t))
2414 (isearch-forward-regexp)))
2415
2416 \f
2417 ;; Functions for searching in tags style among marked files.
2418
2419 ;;;###autoload
2420 (defun dired-do-isearch ()
2421 "Search for a string through all marked files using Isearch."
2422 (interactive)
2423 (multi-isearch-files
2424 (dired-get-marked-files nil nil 'dired-nondirectory-p)))
2425
2426 ;;;###autoload
2427 (defun dired-do-isearch-regexp ()
2428 "Search for a regexp through all marked files using Isearch."
2429 (interactive)
2430 (multi-isearch-files-regexp
2431 (dired-get-marked-files nil nil 'dired-nondirectory-p)))
2432
2433 ;;;###autoload
2434 (defun dired-do-search (regexp)
2435 "Search through all marked files for a match for REGEXP.
2436 Stops when a match is found.
2437 To continue searching for next match, use command \\[tags-loop-continue]."
2438 (interactive "sSearch marked files (regexp): ")
2439 (tags-search regexp '(dired-get-marked-files nil nil 'dired-nondirectory-p)))
2440
2441 ;;;###autoload
2442 (defun dired-do-query-replace-regexp (from to &optional delimited)
2443 "Do `query-replace-regexp' of FROM with TO, on all marked files.
2444 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
2445 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
2446 with the command \\[tags-loop-continue]."
2447 (interactive
2448 (let ((common
2449 (query-replace-read-args
2450 "Query replace regexp in marked files" t t)))
2451 (list (nth 0 common) (nth 1 common) (nth 2 common))))
2452 (dolist (file (dired-get-marked-files nil nil 'dired-nondirectory-p))
2453 (let ((buffer (get-file-buffer file)))
2454 (if (and buffer (with-current-buffer buffer
2455 buffer-read-only))
2456 (error "File `%s' is visited read-only" file))))
2457 (tags-query-replace from to delimited
2458 '(dired-get-marked-files nil nil 'dired-nondirectory-p)))
2459
2460 (defun dired-nondirectory-p (file)
2461 (not (file-directory-p file)))
2462 \f
2463 ;;;###autoload
2464 (defun dired-show-file-type (file &optional deref-symlinks)
2465 "Print the type of FILE, according to the `file' command.
2466 If FILE is a symbolic link and the optional argument DEREF-SYMLINKS is
2467 true then the type of the file linked to by FILE is printed instead."
2468 (interactive (list (dired-get-filename t) current-prefix-arg))
2469 (let (process-file-side-effects)
2470 (with-temp-buffer
2471 (if deref-symlinks
2472 (process-file "file" nil t t "-L" "--" file)
2473 (process-file "file" nil t t "--" file))
2474 (when (bolp)
2475 (backward-delete-char 1))
2476 (message "%s" (buffer-string)))))
2477
2478 (provide 'dired-aux)
2479
2480 ;; Local Variables:
2481 ;; byte-compile-dynamic: t
2482 ;; generated-autoload-file: "dired.el"
2483 ;; End:
2484
2485 ;;; dired-aux.el ends here