Revert changes adding format args to yes-or-no-p and y-or-n-p.
[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, 2011
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 ;;;###autoload
893 (defun dired-query (sym prompt &rest args)
894 "Format PROMPT with ARGS, query user, and store the result in SYM.
895 The return value is either nil or t.
896
897 The user may type y or SPC to accept once; n or DEL to skip once;
898 ! to accept this and subsequent queries; or q or ESC to decline
899 this and subsequent queries.
900
901 If SYM is already bound to a non-nil value, this function may
902 return automatically without querying the user. If SYM is !,
903 return t; if SYM is q or ESC, return nil."
904 (let* ((char (symbol-value sym))
905 (char-choices '(?y ?\s ?n ?\177 ?! ?q ?\e)))
906 (cond ((eq char ?!)
907 t) ; accept, and don't ask again
908 ((memq char '(?q ?\e))
909 nil) ; skip, and don't ask again
910 (t ; no previous answer - ask now
911 (setq prompt
912 (concat (apply 'format prompt args)
913 (if help-form
914 (format " [Type yn!q or %s] "
915 (key-description
916 (char-to-string help-char)))
917 " [Type y, n, q or !] ")))
918 (set sym (setq char (read-char-choice prompt char-choices)))
919 (if (memq char '(?y ?\s ?!)) t)))))
920
921 \f
922 ;;;###autoload
923 (defun dired-do-compress (&optional arg)
924 "Compress or uncompress marked (or next ARG) files."
925 (interactive "P")
926 (dired-map-over-marks-check (function dired-compress) arg 'compress t))
927
928 ;; Commands for Emacs Lisp files - load and byte compile
929
930 (defun dired-byte-compile ()
931 ;; Return nil for success, offending file name else.
932 (let* ((filename (dired-get-filename))
933 elc-file buffer-read-only failure)
934 (condition-case err
935 (save-excursion (byte-compile-file filename))
936 (error
937 (setq failure err)))
938 (setq elc-file (byte-compile-dest-file filename))
939 (or (file-exists-p elc-file)
940 (setq failure t))
941 (if failure
942 (progn
943 (dired-log "Byte compile error for %s:\n%s\n" filename failure)
944 (dired-make-relative filename))
945 (dired-remove-file elc-file)
946 (forward-line) ; insert .elc after its .el file
947 (dired-add-file elc-file)
948 nil)))
949
950 ;;;###autoload
951 (defun dired-do-byte-compile (&optional arg)
952 "Byte compile marked (or next ARG) Emacs Lisp files."
953 (interactive "P")
954 (dired-map-over-marks-check (function dired-byte-compile) arg 'byte-compile t))
955
956 (defun dired-load ()
957 ;; Return nil for success, offending file name else.
958 (let ((file (dired-get-filename)) failure)
959 (condition-case err
960 (load file nil nil t)
961 (error (setq failure err)))
962 (if (not failure)
963 nil
964 (dired-log "Load error for %s:\n%s\n" file failure)
965 (dired-make-relative file))))
966
967 ;;;###autoload
968 (defun dired-do-load (&optional arg)
969 "Load the marked (or next ARG) Emacs Lisp files."
970 (interactive "P")
971 (dired-map-over-marks-check (function dired-load) arg 'load t))
972
973 ;;;###autoload
974 (defun dired-do-redisplay (&optional arg test-for-subdir)
975 "Redisplay all marked (or next ARG) files.
976 If on a subdir line, redisplay that subdirectory. In that case,
977 a prefix arg lets you edit the `ls' switches used for the new listing.
978
979 Dired remembers switches specified with a prefix arg, so that reverting
980 the buffer will not reset them. However, using `dired-undo' to re-insert
981 or delete subdirectories can bypass this machinery. Hence, you sometimes
982 may have to reset some subdirectory switches after a `dired-undo'.
983 You can reset all subdirectory switches to the default using
984 \\<dired-mode-map>\\[dired-reset-subdir-switches].
985 See Info node `(emacs)Subdir switches' for more details."
986 ;; Moves point if the next ARG files are redisplayed.
987 (interactive "P\np")
988 (if (and test-for-subdir (dired-get-subdir))
989 (let* ((dir (dired-get-subdir))
990 (switches (cdr (assoc-string dir dired-switches-alist))))
991 (dired-insert-subdir
992 dir
993 (when arg
994 (read-string "Switches for listing: "
995 (or switches
996 dired-subdir-switches
997 dired-actual-switches)))))
998 (message "Redisplaying...")
999 ;; message much faster than making dired-map-over-marks show progress
1000 (dired-uncache
1001 (if (consp dired-directory) (car dired-directory) dired-directory))
1002 (dired-map-over-marks (let ((fname (dired-get-filename))
1003 ;; Postphone readin hook till we map
1004 ;; over all marked files (Bug#6810).
1005 (dired-after-readin-hook nil))
1006 (message "Redisplaying... %s" fname)
1007 (dired-update-file-line fname))
1008 arg)
1009 (run-hooks 'dired-after-readin-hook)
1010 (dired-move-to-filename)
1011 (message "Redisplaying...done")))
1012
1013 (defun dired-reset-subdir-switches ()
1014 "Set `dired-switches-alist' to nil and revert dired buffer."
1015 (interactive)
1016 (setq dired-switches-alist nil)
1017 (revert-buffer))
1018 \f
1019 (defun dired-update-file-line (file)
1020 ;; Delete the current line, and insert an entry for FILE.
1021 ;; If FILE is nil, then just delete the current line.
1022 ;; Keeps any marks that may be present in column one (doing this
1023 ;; here is faster than with dired-add-entry's optional arg).
1024 ;; Does not update other dired buffers. Use dired-relist-entry for that.
1025 (let ((char (following-char))
1026 (opoint (line-beginning-position))
1027 (buffer-read-only))
1028 (delete-region opoint (progn (forward-line 1) (point)))
1029 (if file
1030 (progn
1031 (dired-add-entry file nil t)
1032 ;; Replace space by old marker without moving point.
1033 ;; Faster than goto+insdel inside a save-excursion?
1034 (subst-char-in-region opoint (1+ opoint) ?\040 char))))
1035 (dired-move-to-filename))
1036
1037 ;;;###autoload
1038 (defun dired-add-file (filename &optional marker-char)
1039 (dired-fun-in-all-buffers
1040 (file-name-directory filename) (file-name-nondirectory filename)
1041 (function dired-add-entry) filename marker-char))
1042
1043 (defun dired-add-entry (filename &optional marker-char relative)
1044 ;; Add a new entry for FILENAME, optionally marking it
1045 ;; with MARKER-CHAR (a character, else dired-marker-char is used).
1046 ;; Note that this adds the entry `out of order' if files sorted by
1047 ;; time, etc.
1048 ;; At least this version inserts in the right subdirectory (if present).
1049 ;; And it skips "." or ".." (see `dired-trivial-filenames').
1050 ;; Hidden subdirs are exposed if a file is added there.
1051 (setq filename (directory-file-name filename))
1052 ;; Entry is always for files, even if they happen to also be directories
1053 (let* ((opoint (point))
1054 (cur-dir (dired-current-directory))
1055 (orig-file-name filename)
1056 (directory (if relative cur-dir (file-name-directory filename)))
1057 reason)
1058 (setq filename
1059 (if relative
1060 (file-relative-name filename directory)
1061 (file-name-nondirectory filename))
1062 reason
1063 (catch 'not-found
1064 (if (string= directory cur-dir)
1065 (progn
1066 (skip-chars-forward "^\r\n")
1067 (if (eq (following-char) ?\r)
1068 (dired-unhide-subdir))
1069 ;; We are already where we should be, except when
1070 ;; point is before the subdir line or its total line.
1071 (let ((p (dired-after-subdir-garbage cur-dir)))
1072 (if (< (point) p)
1073 (goto-char p))))
1074 ;; else try to find correct place to insert
1075 (if (dired-goto-subdir directory)
1076 (progn ;; unhide if necessary
1077 (if (looking-at "\r") ;; point is at end of subdir line
1078 (dired-unhide-subdir))
1079 ;; found - skip subdir and `total' line
1080 ;; and uninteresting files like . and ..
1081 ;; This better not moves into the next subdir!
1082 (dired-goto-next-nontrivial-file))
1083 ;; not found
1084 (throw 'not-found "Subdir not found")))
1085 (let (buffer-read-only opoint)
1086 (beginning-of-line)
1087 (setq opoint (point))
1088 ;; Don't expand `.'. Show just the file name within directory.
1089 (let ((default-directory directory))
1090 (dired-insert-directory directory
1091 (concat dired-actual-switches " -d")
1092 (list filename)))
1093 (goto-char opoint)
1094 ;; Put in desired marker char.
1095 (when marker-char
1096 (let ((dired-marker-char
1097 (if (integerp marker-char) marker-char dired-marker-char)))
1098 (dired-mark nil)))
1099 ;; Compensate for a bug in ange-ftp.
1100 ;; It inserts the file's absolute name, rather than
1101 ;; the relative one. That may be hard to fix since it
1102 ;; is probably controlled by something in ftp.
1103 (goto-char opoint)
1104 (let ((inserted-name (dired-get-filename 'verbatim)))
1105 (if (file-name-directory inserted-name)
1106 (let (props)
1107 (end-of-line)
1108 (forward-char (- (length inserted-name)))
1109 (setq props (text-properties-at (point)))
1110 (delete-char (length inserted-name))
1111 (let ((pt (point)))
1112 (insert filename)
1113 (set-text-properties pt (point) props))
1114 (forward-char 1))
1115 (forward-line 1)))
1116 (forward-line -1)
1117 (if dired-after-readin-hook ;; the subdir-alist is not affected...
1118 (save-excursion ;; ...so we can run it right now:
1119 (save-restriction
1120 (beginning-of-line)
1121 (narrow-to-region (point) (line-beginning-position 2))
1122 (run-hooks 'dired-after-readin-hook))))
1123 (dired-move-to-filename))
1124 ;; return nil if all went well
1125 nil))
1126 (if reason ; don't move away on failure
1127 (goto-char opoint))
1128 (not reason))) ; return t on success, nil else
1129
1130 (defun dired-after-subdir-garbage (dir)
1131 ;; Return pos of first file line of DIR, skipping header and total
1132 ;; or wildcard lines.
1133 ;; Important: never moves into the next subdir.
1134 ;; DIR is assumed to be unhidden.
1135 (save-excursion
1136 (or (dired-goto-subdir dir) (error "This cannot happen"))
1137 (forward-line 1)
1138 (while (and (not (eolp)) ; don't cross subdir boundary
1139 (not (dired-move-to-filename)))
1140 (forward-line 1))
1141 (point)))
1142
1143 ;;;###autoload
1144 (defun dired-remove-file (file)
1145 (dired-fun-in-all-buffers
1146 (file-name-directory file) (file-name-nondirectory file)
1147 (function dired-remove-entry) file))
1148
1149 (defun dired-remove-entry (file)
1150 (save-excursion
1151 (and (dired-goto-file file)
1152 (let (buffer-read-only)
1153 (delete-region (progn (beginning-of-line) (point))
1154 (line-beginning-position 2))))))
1155
1156 ;;;###autoload
1157 (defun dired-relist-file (file)
1158 "Create or update the line for FILE in all Dired buffers it would belong in."
1159 (dired-fun-in-all-buffers (file-name-directory file)
1160 (file-name-nondirectory file)
1161 (function dired-relist-entry) file))
1162
1163 (defun dired-relist-entry (file)
1164 ;; Relist the line for FILE, or just add it if it did not exist.
1165 ;; FILE must be an absolute file name.
1166 (let (buffer-read-only marker)
1167 ;; If cursor is already on FILE's line delete-region will cause
1168 ;; save-excursion to fail because of floating makers,
1169 ;; moving point to beginning of line. Sigh.
1170 (save-excursion
1171 (and (dired-goto-file file)
1172 (delete-region (progn (beginning-of-line)
1173 (setq marker (following-char))
1174 (point))
1175 (line-beginning-position 2)))
1176 (setq file (directory-file-name file))
1177 (dired-add-entry file (if (eq ?\040 marker) nil marker)))))
1178 \f
1179 ;;; Copy, move/rename, making hard and symbolic links
1180
1181 (defcustom dired-backup-overwrite nil
1182 "Non-nil if Dired should ask about making backups before overwriting files.
1183 Special value `always' suppresses confirmation."
1184 :type '(choice (const :tag "off" nil)
1185 (const :tag "suppress" always)
1186 (other :tag "ask" t))
1187 :group 'dired)
1188
1189 ;; This is a fluid var used in dired-handle-overwrite. It should be
1190 ;; let-bound whenever dired-copy-file etc are called. See
1191 ;; dired-create-files for an example.
1192 (defvar dired-overwrite-confirmed)
1193
1194 (defun dired-handle-overwrite (to)
1195 ;; Save old version of file TO that is to be overwritten.
1196 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars
1197 ;; from dired-create-files.
1198 (let (backup)
1199 (when (and dired-backup-overwrite
1200 dired-overwrite-confirmed
1201 (setq backup (car (find-backup-file-name to)))
1202 (or (eq 'always dired-backup-overwrite)
1203 (dired-query 'overwrite-backup-query
1204 "Make backup for existing file `%s'? "
1205 to)))
1206 (rename-file to backup 0) ; confirm overwrite of old backup
1207 (dired-relist-entry backup))))
1208
1209 ;;;###autoload
1210 (defun dired-copy-file (from to ok-flag)
1211 (dired-handle-overwrite to)
1212 (dired-copy-file-recursive from to ok-flag dired-copy-preserve-time t
1213 dired-recursive-copies))
1214
1215 (declare-function make-symbolic-link "fileio.c")
1216
1217 (defun dired-copy-file-recursive (from to ok-flag &optional
1218 preserve-time top recursive)
1219 (let ((attrs (file-attributes from))
1220 dirfailed)
1221 (if (and recursive
1222 (eq t (car attrs))
1223 (or (eq recursive 'always)
1224 (yes-or-no-p (format "Recursive copies of %s? " from))))
1225 ;; This is a directory.
1226 (copy-directory from to dired-copy-preserve-time)
1227 ;; Not a directory.
1228 (or top (dired-handle-overwrite to))
1229 (condition-case err
1230 (if (stringp (car attrs))
1231 ;; It is a symlink
1232 (make-symbolic-link (car attrs) to ok-flag)
1233 (copy-file from to ok-flag dired-copy-preserve-time))
1234 (file-date-error
1235 (push (dired-make-relative from)
1236 dired-create-files-failures)
1237 (dired-log "Can't set date on %s:\n%s\n" from err))))))
1238
1239 ;;;###autoload
1240 (defun dired-rename-file (file newname ok-if-already-exists)
1241 (dired-handle-overwrite newname)
1242 (rename-file file newname ok-if-already-exists) ; error is caught in -create-files
1243 ;; Silently rename the visited file of any buffer visiting this file.
1244 (and (get-file-buffer file)
1245 (with-current-buffer (get-file-buffer file)
1246 (set-visited-file-name newname nil t)))
1247 (dired-remove-file file)
1248 ;; See if it's an inserted subdir, and rename that, too.
1249 (dired-rename-subdir file newname))
1250
1251 (defun dired-rename-subdir (from-dir to-dir)
1252 (setq from-dir (file-name-as-directory from-dir)
1253 to-dir (file-name-as-directory to-dir))
1254 (dired-fun-in-all-buffers from-dir nil
1255 (function dired-rename-subdir-1) from-dir to-dir)
1256 ;; Update visited file name of all affected buffers
1257 (let ((expanded-from-dir (expand-file-name from-dir))
1258 (blist (buffer-list)))
1259 (while blist
1260 (with-current-buffer (car blist)
1261 (if (and buffer-file-name
1262 (dired-in-this-tree buffer-file-name expanded-from-dir))
1263 (let ((modflag (buffer-modified-p))
1264 (to-file (dired-replace-in-string
1265 (concat "^" (regexp-quote from-dir))
1266 to-dir
1267 buffer-file-name)))
1268 (set-visited-file-name to-file)
1269 (set-buffer-modified-p modflag))))
1270 (setq blist (cdr blist)))))
1271
1272 (defun dired-rename-subdir-1 (dir to)
1273 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or
1274 ;; one of its subdirectories is expanded in this buffer.
1275 (let ((expanded-dir (expand-file-name dir))
1276 (alist dired-subdir-alist)
1277 (elt nil))
1278 (while alist
1279 (setq elt (car alist)
1280 alist (cdr alist))
1281 (if (dired-in-this-tree (car elt) expanded-dir)
1282 ;; ELT's subdir is affected by the rename
1283 (dired-rename-subdir-2 elt dir to)))
1284 (if (equal dir default-directory)
1285 ;; if top level directory was renamed, lots of things have to be
1286 ;; updated:
1287 (progn
1288 (dired-unadvertise dir) ; we no longer dired DIR...
1289 (setq default-directory to
1290 dired-directory (expand-file-name;; this is correct
1291 ;; with and without wildcards
1292 (file-name-nondirectory dired-directory)
1293 to))
1294 (let ((new-name (file-name-nondirectory
1295 (directory-file-name dired-directory))))
1296 ;; try to rename buffer, but just leave old name if new
1297 ;; name would already exist (don't try appending "<%d>")
1298 (or (get-buffer new-name)
1299 (rename-buffer new-name)))
1300 ;; ... we dired TO now:
1301 (dired-advertise)))))
1302
1303 (defun dired-rename-subdir-2 (elt dir to)
1304 ;; Update the headerline and dired-subdir-alist element, as well as
1305 ;; dired-switches-alist element, of directory described by
1306 ;; alist-element ELT to reflect the moving of DIR to TO. Thus, ELT
1307 ;; describes either DIR itself or a subdir of DIR.
1308 (save-excursion
1309 (let ((regexp (regexp-quote (directory-file-name dir)))
1310 (newtext (directory-file-name to))
1311 buffer-read-only)
1312 (goto-char (dired-get-subdir-min elt))
1313 ;; Update subdir headerline in buffer
1314 (if (not (looking-at dired-subdir-regexp))
1315 (error "%s not found where expected - dired-subdir-alist broken?"
1316 dir)
1317 (goto-char (match-beginning 1))
1318 (if (re-search-forward regexp (match-end 1) t)
1319 (replace-match newtext t t)
1320 (error "Expected to find `%s' in headerline of %s" dir (car elt))))
1321 ;; Update buffer-local dired-subdir-alist and dired-switches-alist
1322 (let ((cons (assoc-string (car elt) dired-switches-alist))
1323 (cur-dir (dired-normalize-subdir
1324 (dired-replace-in-string regexp newtext (car elt)))))
1325 (setcar elt cur-dir)
1326 (when cons (setcar cons cur-dir))))))
1327 \f
1328 ;; The basic function for half a dozen variations on cp/mv/ln/ln -s.
1329 (defun dired-create-files (file-creator operation fn-list name-constructor
1330 &optional marker-char)
1331
1332 ;; Create a new file for each from a list of existing files. The user
1333 ;; is queried, dired buffers are updated, and at the end a success or
1334 ;; failure message is displayed
1335
1336 ;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists
1337
1338 ;; It is called for each file and must create newfile, the entry of
1339 ;; which will be added. The user will be queried if the file already
1340 ;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a
1341 ;; rename), it is FILE-CREATOR's responsibility to update dired
1342 ;; buffers. FILE-CREATOR must abort by signaling a file-error if it
1343 ;; could not create newfile. The error is caught and logged.
1344
1345 ;; OPERATION (a capitalized string, e.g. `Copy') describes the
1346 ;; operation performed. It is used for error logging.
1347
1348 ;; FN-LIST is the list of files to copy (full absolute file names).
1349
1350 ;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to
1351 ;; skip. If it skips files for other reasons than a direct user
1352 ;; query, it is supposed to tell why (using dired-log).
1353
1354 ;; Optional MARKER-CHAR is a character with which to mark every
1355 ;; newfile's entry, or t to use the current marker character if the
1356 ;; oldfile was marked.
1357
1358 (let (dired-create-files-failures failures
1359 skipped (success-count 0) (total (length fn-list)))
1360 (let (to overwrite-query
1361 overwrite-backup-query) ; for dired-handle-overwrite
1362 (dolist (from fn-list)
1363 (setq to (funcall name-constructor from))
1364 (if (equal to from)
1365 (progn
1366 (setq to nil)
1367 (dired-log "Cannot %s to same file: %s\n"
1368 (downcase operation) from)))
1369 (if (not to)
1370 (setq skipped (cons (dired-make-relative from) skipped))
1371 (let* ((overwrite (file-exists-p to))
1372 (dired-overwrite-confirmed ; for dired-handle-overwrite
1373 (and overwrite
1374 (let ((help-form '(format "\
1375 Type SPC or `y' to overwrite file `%s',
1376 DEL or `n' to skip to next,
1377 ESC or `q' to not overwrite any of the remaining files,
1378 `!' to overwrite all remaining files with no more questions." to)))
1379 (dired-query 'overwrite-query
1380 "Overwrite `%s'?" to))))
1381 ;; must determine if FROM is marked before file-creator
1382 ;; gets a chance to delete it (in case of a move).
1383 (actual-marker-char
1384 (cond ((integerp marker-char) marker-char)
1385 (marker-char (dired-file-marker from)) ; slow
1386 (t nil))))
1387 (condition-case err
1388 (progn
1389 (funcall file-creator from to dired-overwrite-confirmed)
1390 (if overwrite
1391 ;; If we get here, file-creator hasn't been aborted
1392 ;; and the old entry (if any) has to be deleted
1393 ;; before adding the new entry.
1394 (dired-remove-file to))
1395 (setq success-count (1+ success-count))
1396 (message "%s: %d of %d" operation success-count total)
1397 (dired-add-file to actual-marker-char))
1398 (file-error ; FILE-CREATOR aborted
1399 (progn
1400 (push (dired-make-relative from)
1401 failures)
1402 (dired-log "%s `%s' to `%s' failed:\n%s\n"
1403 operation from to err))))))))
1404 (cond
1405 (dired-create-files-failures
1406 (setq failures (nconc failures dired-create-files-failures))
1407 (dired-log-summary
1408 (format "%s failed for %d file%s in %d requests"
1409 operation (length failures)
1410 (dired-plural-s (length failures))
1411 total)
1412 failures))
1413 (failures
1414 (dired-log-summary
1415 (format "%s failed for %d of %d file%s"
1416 operation (length failures)
1417 total (dired-plural-s total))
1418 failures))
1419 (skipped
1420 (dired-log-summary
1421 (format "%s: %d of %d file%s skipped"
1422 operation (length skipped) total
1423 (dired-plural-s total))
1424 skipped))
1425 (t
1426 (message "%s: %s file%s"
1427 operation success-count (dired-plural-s success-count)))))
1428 (dired-move-to-filename))
1429 \f
1430 (defun dired-do-create-files (op-symbol file-creator operation arg
1431 &optional marker-char op1
1432 how-to)
1433 "Create a new file for each marked file.
1434 Prompts user for target, which is a directory in which to create
1435 the new files. Target may also be a plain file if only one marked
1436 file exists. The way the default for the target directory is
1437 computed depends on the value of `dired-dwim-target-directory'.
1438 OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up'
1439 will determine whether pop-ups are appropriate for this OP-SYMBOL.
1440 FILE-CREATOR and OPERATION as in `dired-create-files'.
1441 ARG as in `dired-get-marked-files'.
1442 Optional arg MARKER-CHAR as in `dired-create-files'.
1443 Optional arg OP1 is an alternate form for OPERATION if there is
1444 only one file.
1445 Optional arg HOW-TO determiness how to treat the target.
1446 If HOW-TO is nil, use `file-directory-p' to determine if the
1447 target is a directory. If so, the marked file(s) are created
1448 inside that directory. Otherwise, the target is a plain file;
1449 an error is raised unless there is exactly one marked file.
1450 If HOW-TO is t, target is always treated as a plain file.
1451 Otherwise, HOW-TO should be a function of one argument, TARGET.
1452 If its return value is nil, TARGET is regarded as a plain file.
1453 If it return value is a list, TARGET is a generalized
1454 directory (e.g. some sort of archive). The first element of
1455 this list must be a function with at least four arguments:
1456 operation - as OPERATION above.
1457 rfn-list - list of the relative names for the marked files.
1458 fn-list - list of the absolute names for the marked files.
1459 target - the name of the target itself.
1460 The rest of into-dir are optional arguments.
1461 For any other return value, TARGET is treated as a directory."
1462 (or op1 (setq op1 operation))
1463 (let* ((fn-list (dired-get-marked-files nil arg))
1464 (rfn-list (mapcar (function dired-make-relative) fn-list))
1465 (dired-one-file ; fluid variable inside dired-create-files
1466 (and (consp fn-list) (null (cdr fn-list)) (car fn-list)))
1467 (target-dir (dired-dwim-target-directory))
1468 (default (and dired-one-file
1469 (expand-file-name (file-name-nondirectory (car fn-list))
1470 target-dir)))
1471 (defaults (dired-dwim-target-defaults fn-list target-dir))
1472 (target (expand-file-name ; fluid variable inside dired-create-files
1473 (minibuffer-with-setup-hook
1474 (lambda ()
1475 (set (make-local-variable 'minibuffer-default-add-function) nil)
1476 (setq minibuffer-default defaults))
1477 (dired-mark-read-file-name
1478 (concat (if dired-one-file op1 operation) " %s to: ")
1479 target-dir op-symbol arg rfn-list default))))
1480 (into-dir (cond ((null how-to)
1481 ;; Allow DOS/Windows users to change the letter
1482 ;; case of a directory. If we don't test these
1483 ;; conditions up front, file-directory-p below
1484 ;; will return t because the filesystem is
1485 ;; case-insensitive, and Emacs will try to move
1486 ;; foo -> foo/foo, which fails.
1487 (if (and (memq system-type '(ms-dos windows-nt cygwin))
1488 (eq op-symbol 'move)
1489 dired-one-file
1490 (string= (downcase
1491 (expand-file-name (car fn-list)))
1492 (downcase
1493 (expand-file-name target)))
1494 (not (string=
1495 (file-name-nondirectory (car fn-list))
1496 (file-name-nondirectory target))))
1497 nil
1498 (file-directory-p target)))
1499 ((eq how-to t) nil)
1500 (t (funcall how-to target)))))
1501 (if (and (consp into-dir) (functionp (car into-dir)))
1502 (apply (car into-dir) operation rfn-list fn-list target (cdr into-dir))
1503 (if (not (or dired-one-file into-dir))
1504 (error "Marked %s: target must be a directory: %s" operation target))
1505 ;; rename-file bombs when moving directories unless we do this:
1506 (or into-dir (setq target (directory-file-name target)))
1507 (dired-create-files
1508 file-creator operation fn-list
1509 (if into-dir ; target is a directory
1510 ;; This function uses fluid variable target when called
1511 ;; inside dired-create-files:
1512 (function
1513 (lambda (from)
1514 (expand-file-name (file-name-nondirectory from) target)))
1515 (function (lambda (from) target)))
1516 marker-char))))
1517
1518 ;; Read arguments for a marked-files command that wants a file name,
1519 ;; perhaps popping up the list of marked files.
1520 ;; ARG is the prefix arg and indicates whether the files came from
1521 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
1522 ;; If the current file was used, the list has but one element and ARG
1523 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
1524 ;; DEFAULT is the default value to return if the user just hits RET;
1525 ;; if it is omitted or nil, then the name of the directory is used.
1526
1527 (defun dired-mark-read-file-name (prompt dir op-symbol arg files
1528 &optional default)
1529 (dired-mark-pop-up
1530 nil op-symbol files
1531 (function read-file-name)
1532 (format prompt (dired-mark-prompt arg files)) dir default))
1533
1534 (defun dired-dwim-target-directory ()
1535 ;; Try to guess which target directory the user may want.
1536 ;; If there is a dired buffer displayed in one of the next windows,
1537 ;; use its current subdir, else use current subdir of this dired buffer.
1538 (let ((this-dir (and (eq major-mode 'dired-mode)
1539 (dired-current-directory))))
1540 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode
1541 (if dired-dwim-target
1542 (let* ((other-win (get-window-with-predicate
1543 (lambda (window)
1544 (with-current-buffer (window-buffer window)
1545 (eq major-mode 'dired-mode)))))
1546 (other-dir (and other-win
1547 (with-current-buffer (window-buffer other-win)
1548 (and (eq major-mode 'dired-mode)
1549 (dired-current-directory))))))
1550 (or other-dir this-dir))
1551 this-dir)))
1552
1553 (defun dired-dwim-target-defaults (fn-list target-dir)
1554 ;; Return a list of default values for file-reading functions in Dired.
1555 ;; This list may contain directories from Dired buffers in other windows.
1556 ;; `fn-list' is a list of file names used to build a list of defaults.
1557 ;; When nil or more than one element, a list of defaults will
1558 ;; contain only directory names. `target-dir' is a directory name
1559 ;; to exclude from the returned list, for the case when this
1560 ;; directory name is already presented in initial input.
1561 ;; For Dired operations that support `dired-dwim-target',
1562 ;; the argument `target-dir' should have the value returned
1563 ;; from `dired-dwim-target-directory'.
1564 (let ((dired-one-file
1565 (and (consp fn-list) (null (cdr fn-list)) (car fn-list)))
1566 (current-dir (and (eq major-mode 'dired-mode)
1567 (dired-current-directory)))
1568 dired-dirs)
1569 ;; Get a list of directories of visible buffers in dired-mode.
1570 (walk-windows (lambda (w)
1571 (with-current-buffer (window-buffer w)
1572 (and (eq major-mode 'dired-mode)
1573 (push (dired-current-directory) dired-dirs)))))
1574 ;; Force the current dir to be the first in the list.
1575 (setq dired-dirs
1576 (delete-dups (delq nil (cons current-dir (nreverse dired-dirs)))))
1577 ;; Remove the target dir (if specified) or the current dir from
1578 ;; default values, because it should be already in initial input.
1579 (setq dired-dirs (delete (or target-dir current-dir) dired-dirs))
1580 ;; Return a list of default values.
1581 (if dired-one-file
1582 ;; For one file operation, provide a list that contains
1583 ;; other directories, other directories with the appended filename
1584 ;; and the current directory with the appended filename, e.g.
1585 ;; 1. /TARGET-DIR/
1586 ;; 2. /TARGET-DIR/FILENAME
1587 ;; 3. /CURRENT-DIR/FILENAME
1588 (append dired-dirs
1589 (mapcar (lambda (dir)
1590 (expand-file-name
1591 (file-name-nondirectory (car fn-list)) dir))
1592 (reverse dired-dirs))
1593 (list (expand-file-name
1594 (file-name-nondirectory (car fn-list))
1595 (or target-dir current-dir))))
1596 ;; For multi-file operation, return only a list of other directories.
1597 dired-dirs)))
1598
1599 \f
1600 ;;;###autoload
1601 (defun dired-create-directory (directory)
1602 "Create a directory called DIRECTORY."
1603 (interactive
1604 (list (read-file-name "Create directory: " (dired-current-directory))))
1605 (let* ((expanded (directory-file-name (expand-file-name directory)))
1606 (try expanded) new)
1607 ;; Find the topmost nonexistent parent dir (variable `new')
1608 (while (and try (not (file-exists-p try)) (not (equal new try)))
1609 (setq new try
1610 try (directory-file-name (file-name-directory try))))
1611 (make-directory expanded t)
1612 (when new
1613 (dired-add-file new)
1614 (dired-move-to-filename))))
1615
1616 (defun dired-into-dir-with-symlinks (target)
1617 (and (file-directory-p target)
1618 (not (file-symlink-p target))))
1619 ;; This may not always be what you want, especially if target is your
1620 ;; home directory and it happens to be a symbolic link, as is often the
1621 ;; case with NFS and automounters. Or if you want to make symlinks
1622 ;; into directories that themselves are only symlinks, also quite
1623 ;; common.
1624
1625 ;; So we don't use this function as value for HOW-TO in
1626 ;; dired-do-symlink, which has the minor disadvantage of
1627 ;; making links *into* a symlinked-dir, when you really wanted to
1628 ;; *overwrite* that symlink. In that (rare, I guess) case, you'll
1629 ;; just have to remove that symlink by hand before making your marked
1630 ;; symlinks.
1631
1632 (defvar dired-copy-how-to-fn nil
1633 "Either nil or a function used by `dired-do-copy' to determine target.
1634 See HOW-TO argument for `dired-do-create-files'.")
1635
1636 ;;;###autoload
1637 (defun dired-do-copy (&optional arg)
1638 "Copy all marked (or next ARG) files, or copy the current file.
1639 This normally preserves the last-modified date when copying.
1640 When operating on just the current file, you specify the new name.
1641 When operating on multiple or marked files, you specify a directory,
1642 and new copies of these files are made in that directory
1643 with the same names that the files currently have. The default
1644 suggested for the target directory depends on the value of
1645 `dired-dwim-target', which see.
1646
1647 This command copies symbolic links by creating new ones,
1648 like `cp -d'."
1649 (interactive "P")
1650 (let ((dired-recursive-copies dired-recursive-copies))
1651 (dired-do-create-files 'copy (function dired-copy-file)
1652 "Copy"
1653 arg dired-keep-marker-copy
1654 nil dired-copy-how-to-fn)))
1655
1656 ;;;###autoload
1657 (defun dired-do-symlink (&optional arg)
1658 "Make symbolic links to current file or all marked (or next ARG) files.
1659 When operating on just the current file, you specify the new name.
1660 When operating on multiple or marked files, you specify a directory
1661 and new symbolic links are made in that directory
1662 with the same names that the files currently have. The default
1663 suggested for the target directory depends on the value of
1664 `dired-dwim-target', which see.
1665
1666 For relative symlinks, use \\[dired-do-relsymlink]."
1667 (interactive "P")
1668 (dired-do-create-files 'symlink (function make-symbolic-link)
1669 "Symlink" arg dired-keep-marker-symlink))
1670
1671 ;;;###autoload
1672 (defun dired-do-hardlink (&optional arg)
1673 "Add names (hard links) current file or all marked (or next ARG) files.
1674 When operating on just the current file, you specify the new name.
1675 When operating on multiple or marked files, you specify a directory
1676 and new hard links are made in that directory
1677 with the same names that the files currently have. The default
1678 suggested for the target directory depends on the value of
1679 `dired-dwim-target', which see."
1680 (interactive "P")
1681 (dired-do-create-files 'hardlink (function dired-hardlink)
1682 "Hardlink" arg dired-keep-marker-hardlink))
1683
1684 (defun dired-hardlink (file newname &optional ok-if-already-exists)
1685 (dired-handle-overwrite newname)
1686 ;; error is caught in -create-files
1687 (add-name-to-file file newname ok-if-already-exists)
1688 ;; Update the link count
1689 (dired-relist-file file))
1690
1691 ;;;###autoload
1692 (defun dired-do-rename (&optional arg)
1693 "Rename current file or all marked (or next ARG) files.
1694 When renaming just the current file, you specify the new name.
1695 When renaming multiple or marked files, you specify a directory.
1696 This command also renames any buffers that are visiting the files.
1697 The default suggested for the target directory depends on the value
1698 of `dired-dwim-target', which see."
1699 (interactive "P")
1700 (dired-do-create-files 'move (function dired-rename-file)
1701 "Move" arg dired-keep-marker-rename "Rename"))
1702 ;;;###end dired-cp.el
1703 \f
1704 ;;; 5K
1705 ;;;###begin dired-re.el
1706 (defun dired-do-create-files-regexp
1707 (file-creator operation arg regexp newname &optional whole-name marker-char)
1708 ;; Create a new file for each marked file using regexps.
1709 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1710 ;; ARG as in dired-get-marked-files.
1711 ;; Matches each marked file against REGEXP and constructs the new
1712 ;; filename from NEWNAME (like in function replace-match).
1713 ;; Optional arg WHOLE-NAME means match/replace the whole file name
1714 ;; instead of only the non-directory part of the file.
1715 ;; Optional arg MARKER-CHAR as in dired-create-files.
1716 (let* ((fn-list (dired-get-marked-files nil arg))
1717 (fn-count (length fn-list))
1718 (operation-prompt (concat operation " `%s' to `%s'?"))
1719 (rename-regexp-help-form (format "\
1720 Type SPC or `y' to %s one match, DEL or `n' to skip to next,
1721 `!' to %s all remaining matches with no more questions."
1722 (downcase operation)
1723 (downcase operation)))
1724 (regexp-name-constructor
1725 ;; Function to construct new filename using REGEXP and NEWNAME:
1726 (if whole-name ; easy (but rare) case
1727 (function
1728 (lambda (from)
1729 (let ((to (dired-string-replace-match regexp from newname))
1730 ;; must bind help-form directly around call to
1731 ;; dired-query
1732 (help-form rename-regexp-help-form))
1733 (if to
1734 (and (dired-query 'rename-regexp-query
1735 operation-prompt
1736 from
1737 to)
1738 to)
1739 (dired-log "%s: %s did not match regexp %s\n"
1740 operation from regexp)))))
1741 ;; not whole-name, replace non-directory part only
1742 (function
1743 (lambda (from)
1744 (let* ((new (dired-string-replace-match
1745 regexp (file-name-nondirectory from) newname))
1746 (to (and new ; nil means there was no match
1747 (expand-file-name new
1748 (file-name-directory from))))
1749 (help-form rename-regexp-help-form))
1750 (if to
1751 (and (dired-query 'rename-regexp-query
1752 operation-prompt
1753 (dired-make-relative from)
1754 (dired-make-relative to))
1755 to)
1756 (dired-log "%s: %s did not match regexp %s\n"
1757 operation (file-name-nondirectory from) regexp)))))))
1758 rename-regexp-query)
1759 (dired-create-files
1760 file-creator operation fn-list regexp-name-constructor marker-char)))
1761
1762 (defun dired-mark-read-regexp (operation)
1763 ;; Prompt user about performing OPERATION.
1764 ;; Read and return list of: regexp newname arg whole-name.
1765 (let* ((whole-name
1766 (equal 0 (prefix-numeric-value current-prefix-arg)))
1767 (arg
1768 (if whole-name nil current-prefix-arg))
1769 (regexp
1770 (dired-read-regexp
1771 (concat (if whole-name "Abs. " "") operation " from (regexp): ")))
1772 (newname
1773 (read-string
1774 (concat (if whole-name "Abs. " "") operation " " regexp " to: "))))
1775 (list regexp newname arg whole-name)))
1776
1777 ;;;###autoload
1778 (defun dired-do-rename-regexp (regexp newname &optional arg whole-name)
1779 "Rename selected files whose names match REGEXP to NEWNAME.
1780
1781 With non-zero prefix argument ARG, the command operates on the next ARG
1782 files. Otherwise, it operates on all the marked files, or the current
1783 file if none are marked.
1784
1785 As each match is found, the user must type a character saying
1786 what to do with it. For directions, type \\[help-command] at that time.
1787 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
1788 REGEXP defaults to the last regexp used.
1789
1790 With a zero prefix arg, renaming by regexp affects the absolute file name.
1791 Normally, only the non-directory part of the file name is used and changed."
1792 (interactive (dired-mark-read-regexp "Rename"))
1793 (dired-do-create-files-regexp
1794 (function dired-rename-file)
1795 "Rename" arg regexp newname whole-name dired-keep-marker-rename))
1796
1797 ;;;###autoload
1798 (defun dired-do-copy-regexp (regexp newname &optional arg whole-name)
1799 "Copy selected files whose names match REGEXP to NEWNAME.
1800 See function `dired-do-rename-regexp' for more info."
1801 (interactive (dired-mark-read-regexp "Copy"))
1802 (let ((dired-recursive-copies nil)) ; No recursive copies.
1803 (dired-do-create-files-regexp
1804 (function dired-copy-file)
1805 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1806 arg regexp newname whole-name dired-keep-marker-copy)))
1807
1808 ;;;###autoload
1809 (defun dired-do-hardlink-regexp (regexp newname &optional arg whole-name)
1810 "Hardlink selected files whose names match REGEXP to NEWNAME.
1811 See function `dired-do-rename-regexp' for more info."
1812 (interactive (dired-mark-read-regexp "HardLink"))
1813 (dired-do-create-files-regexp
1814 (function add-name-to-file)
1815 "HardLink" arg regexp newname whole-name dired-keep-marker-hardlink))
1816
1817 ;;;###autoload
1818 (defun dired-do-symlink-regexp (regexp newname &optional arg whole-name)
1819 "Symlink selected files whose names match REGEXP to NEWNAME.
1820 See function `dired-do-rename-regexp' for more info."
1821 (interactive (dired-mark-read-regexp "SymLink"))
1822 (dired-do-create-files-regexp
1823 (function make-symbolic-link)
1824 "SymLink" arg regexp newname whole-name dired-keep-marker-symlink))
1825
1826 (defun dired-create-files-non-directory
1827 (file-creator basename-constructor operation arg)
1828 ;; Perform FILE-CREATOR on the non-directory part of marked files
1829 ;; using function BASENAME-CONSTRUCTOR, with query for each file.
1830 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files.
1831 (let (rename-non-directory-query)
1832 (dired-create-files
1833 file-creator
1834 operation
1835 (dired-get-marked-files nil arg)
1836 (function
1837 (lambda (from)
1838 (let ((to (concat (file-name-directory from)
1839 (funcall basename-constructor
1840 (file-name-nondirectory from)))))
1841 (and (let ((help-form (format "\
1842 Type SPC or `y' to %s one file, DEL or `n' to skip to next,
1843 `!' to %s all remaining matches with no more questions."
1844 (downcase operation)
1845 (downcase operation))))
1846 (dired-query 'rename-non-directory-query
1847 (concat operation " `%s' to `%s'")
1848 (dired-make-relative from)
1849 (dired-make-relative to)))
1850 to))))
1851 dired-keep-marker-rename)))
1852
1853 (defun dired-rename-non-directory (basename-constructor operation arg)
1854 (dired-create-files-non-directory
1855 (function dired-rename-file)
1856 basename-constructor operation arg))
1857
1858 ;;;###autoload
1859 (defun dired-upcase (&optional arg)
1860 "Rename all marked (or next ARG) files to upper case."
1861 (interactive "P")
1862 (dired-rename-non-directory (function upcase) "Rename upcase" arg))
1863
1864 ;;;###autoload
1865 (defun dired-downcase (&optional arg)
1866 "Rename all marked (or next ARG) files to lower case."
1867 (interactive "P")
1868 (dired-rename-non-directory (function downcase) "Rename downcase" arg))
1869
1870 ;;;###end dired-re.el
1871 \f
1872 ;;; 13K
1873 ;;;###begin dired-ins.el
1874
1875 ;;;###autoload
1876 (defun dired-maybe-insert-subdir (dirname &optional
1877 switches no-error-if-not-dir-p)
1878 "Insert this subdirectory into the same dired buffer.
1879 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
1880 else inserts it at its natural place (as `ls -lR' would have done).
1881 With a prefix arg, you may edit the ls switches used for this listing.
1882 You can add `R' to the switches to expand the whole tree starting at
1883 this subdirectory.
1884 This function takes some pains to conform to `ls -lR' output.
1885
1886 Dired remembers switches specified with a prefix arg, so that reverting
1887 the buffer will not reset them. However, using `dired-undo' to re-insert
1888 or delete subdirectories can bypass this machinery. Hence, you sometimes
1889 may have to reset some subdirectory switches after a `dired-undo'.
1890 You can reset all subdirectory switches to the default using
1891 \\<dired-mode-map>\\[dired-reset-subdir-switches].
1892 See Info node `(emacs)Subdir switches' for more details."
1893 (interactive
1894 (list (dired-get-filename)
1895 (if current-prefix-arg
1896 (read-string "Switches for listing: "
1897 (or dired-subdir-switches dired-actual-switches)))))
1898 (let ((opoint (point)))
1899 ;; We don't need a marker for opoint as the subdir is always
1900 ;; inserted *after* opoint.
1901 (setq dirname (file-name-as-directory dirname))
1902 (or (and (not switches)
1903 (dired-goto-subdir dirname))
1904 (dired-insert-subdir dirname switches no-error-if-not-dir-p))
1905 ;; Push mark so that it's easy to find back. Do this after the
1906 ;; insert message so that the user sees the `Mark set' message.
1907 (push-mark opoint)))
1908
1909 ;;;###autoload
1910 (defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p)
1911 "Insert this subdirectory into the same dired buffer.
1912 If it is already present, overwrites previous entry,
1913 else inserts it at its natural place (as `ls -lR' would have done).
1914 With a prefix arg, you may edit the `ls' switches used for this listing.
1915 You can add `R' to the switches to expand the whole tree starting at
1916 this subdirectory.
1917 This function takes some pains to conform to `ls -lR' output."
1918 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like
1919 ;; Prospero where dired-ls does the right thing, but
1920 ;; file-directory-p has not been redefined.
1921 (interactive
1922 (list (dired-get-filename)
1923 (if current-prefix-arg
1924 (read-string "Switches for listing: "
1925 (or dired-subdir-switches dired-actual-switches)))))
1926 (setq dirname (file-name-as-directory (expand-file-name dirname)))
1927 (or no-error-if-not-dir-p
1928 (file-directory-p dirname)
1929 (error "Attempt to insert a non-directory: %s" dirname))
1930 (let ((elt (assoc dirname dired-subdir-alist))
1931 (cons (assoc-string dirname dired-switches-alist))
1932 (modflag (buffer-modified-p))
1933 (old-switches switches)
1934 switches-have-R mark-alist case-fold-search buffer-read-only)
1935 (and (not switches) cons (setq switches (cdr cons)))
1936 (dired-insert-subdir-validate dirname switches)
1937 ;; case-fold-search is nil now, so we can test for capital `R':
1938 (if (setq switches-have-R (and switches (string-match "R" switches)))
1939 ;; avoid duplicated subdirs
1940 (setq mark-alist (dired-kill-tree dirname t)))
1941 (if elt
1942 ;; If subdir is already present, remove it and remember its marks
1943 (setq mark-alist (nconc (dired-insert-subdir-del elt) mark-alist))
1944 (dired-insert-subdir-newpos dirname)) ; else compute new position
1945 (dired-insert-subdir-doupdate
1946 dirname elt (dired-insert-subdir-doinsert dirname switches))
1947 (when old-switches
1948 (if cons
1949 (setcdr cons switches)
1950 (push (cons dirname switches) dired-switches-alist)))
1951 (when switches-have-R
1952 (dired-build-subdir-alist switches)
1953 (setq switches (dired-replace-in-string "R" "" switches))
1954 (dolist (cur-ass dired-subdir-alist)
1955 (let ((cur-dir (car cur-ass)))
1956 (and (dired-in-this-tree cur-dir dirname)
1957 (let ((cur-cons (assoc-string cur-dir dired-switches-alist)))
1958 (if cur-cons
1959 (setcdr cur-cons switches)
1960 (push (cons cur-dir switches) dired-switches-alist)))))))
1961 (dired-initial-position dirname)
1962 (save-excursion (dired-mark-remembered mark-alist))
1963 (restore-buffer-modified-p modflag)))
1964
1965 (defun dired-insert-subdir-validate (dirname &optional switches)
1966 ;; Check that it is valid to insert DIRNAME with SWITCHES.
1967 ;; Signal an error if invalid (e.g. user typed `i' on `..').
1968 (or (dired-in-this-tree dirname (expand-file-name default-directory))
1969 (error "%s: not in this directory tree" dirname))
1970 (let ((real-switches (or switches dired-subdir-switches)))
1971 (when real-switches
1972 (let (case-fold-search)
1973 (mapcar
1974 (function
1975 (lambda (x)
1976 (or (eq (null (string-match x real-switches))
1977 (null (string-match x dired-actual-switches)))
1978 (error
1979 "Can't have dirs with and without -%s switches together" x))))
1980 ;; all switches that make a difference to dired-get-filename:
1981 '("F" "b"))))))
1982
1983 (defun dired-alist-add (dir new-marker)
1984 ;; Add new DIR at NEW-MARKER. Sort alist.
1985 (dired-alist-add-1 dir new-marker)
1986 (dired-alist-sort))
1987
1988 (defun dired-alist-sort ()
1989 ;; Keep the alist sorted on buffer position.
1990 (setq dired-subdir-alist
1991 (sort dired-subdir-alist
1992 (function (lambda (elt1 elt2)
1993 (> (dired-get-subdir-min elt1)
1994 (dired-get-subdir-min elt2)))))))
1995
1996 (defun dired-kill-tree (dirname &optional remember-marks kill-root)
1997 "Kill all proper subdirs of DIRNAME, excluding DIRNAME itself.
1998 Interactively, you can kill DIRNAME as well by using a prefix argument.
1999 In interactive use, the command prompts for DIRNAME.
2000
2001 When called from Lisp, if REMEMBER-MARKS is non-nil, return an alist
2002 of marked files. If KILL-ROOT is non-nil, kill DIRNAME as well."
2003 (interactive "DKill tree below directory: \ni\nP")
2004 (setq dirname (file-name-as-directory (expand-file-name dirname)))
2005 (let ((s-alist dired-subdir-alist) dir m-alist)
2006 (while s-alist
2007 (setq dir (car (car s-alist))
2008 s-alist (cdr s-alist))
2009 (and (or kill-root (not (string-equal dir dirname)))
2010 (dired-in-this-tree dir dirname)
2011 (dired-goto-subdir dir)
2012 (setq m-alist (nconc (dired-kill-subdir remember-marks) m-alist))))
2013 m-alist))
2014
2015 (defun dired-insert-subdir-newpos (new-dir)
2016 ;; Find pos for new subdir, according to tree order.
2017 ;;(goto-char (point-max))
2018 (let ((alist dired-subdir-alist) elt dir pos new-pos)
2019 (while alist
2020 (setq elt (car alist)
2021 alist (cdr alist)
2022 dir (car elt)
2023 pos (dired-get-subdir-min elt))
2024 (if (dired-tree-lessp dir new-dir)
2025 ;; Insert NEW-DIR after DIR
2026 (setq new-pos (dired-get-subdir-max elt)
2027 alist nil)))
2028 (goto-char new-pos))
2029 ;; want a separating newline between subdirs
2030 (or (eobp)
2031 (forward-line -1))
2032 (insert "\n")
2033 (point))
2034
2035 (defun dired-insert-subdir-del (element)
2036 ;; Erase an already present subdir (given by ELEMENT) from buffer.
2037 ;; Move to that buffer position. Return a mark-alist.
2038 (let ((begin-marker (dired-get-subdir-min element)))
2039 (goto-char begin-marker)
2040 ;; Are at beginning of subdir (and inside it!). Now determine its end:
2041 (goto-char (dired-subdir-max))
2042 (or (eobp);; want a separating newline _between_ subdirs:
2043 (forward-char -1))
2044 (prog1
2045 (dired-remember-marks begin-marker (point))
2046 (delete-region begin-marker (point)))))
2047
2048 (defun dired-insert-subdir-doinsert (dirname switches)
2049 ;; Insert ls output after point.
2050 ;; Return the boundary of the inserted text (as list of BEG and END).
2051 (save-excursion
2052 (let ((begin (point)))
2053 (let ((dired-actual-switches
2054 (or switches
2055 dired-subdir-switches
2056 (dired-replace-in-string "R" "" dired-actual-switches))))
2057 (if (equal dirname (car (car (last dired-subdir-alist))))
2058 ;; If doing the top level directory of the buffer,
2059 ;; redo it as specified in dired-directory.
2060 (dired-readin-insert)
2061 (dired-insert-directory dirname dired-actual-switches nil nil t)))
2062 (list begin (point)))))
2063
2064 (defun dired-insert-subdir-doupdate (dirname elt beg-end)
2065 ;; Point is at the correct subdir alist position for ELT,
2066 ;; BEG-END is the subdir-region (as list of begin and end).
2067 (if elt ; subdir was already present
2068 ;; update its position (should actually be unchanged)
2069 (set-marker (dired-get-subdir-min elt) (point-marker))
2070 (dired-alist-add dirname (point-marker)))
2071 ;; The hook may depend on the subdir-alist containing the just
2072 ;; inserted subdir, so run it after dired-alist-add:
2073 (if dired-after-readin-hook
2074 (save-excursion
2075 (let ((begin (nth 0 beg-end))
2076 (end (nth 1 beg-end)))
2077 (goto-char begin)
2078 (save-restriction
2079 (narrow-to-region begin end)
2080 ;; hook may add or delete lines, but the subdir boundary
2081 ;; marker floats
2082 (run-hooks 'dired-after-readin-hook))))))
2083
2084 (defun dired-tree-lessp (dir1 dir2)
2085 ;; Lexicographic order on file name components, like `ls -lR':
2086 ;; DIR1 < DIR2 if DIR1 comes *before* DIR2 in an `ls -lR' listing,
2087 ;; i.e., if DIR1 is a (grand)parent dir of DIR2,
2088 ;; or DIR1 and DIR2 are in the same parentdir and their last
2089 ;; components are string-lessp.
2090 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp.
2091 ;; string-lessp could arguably be replaced by file-newer-than-file-p
2092 ;; if dired-actual-switches contained `t'.
2093 (setq dir1 (file-name-as-directory dir1)
2094 dir2 (file-name-as-directory dir2))
2095 (let ((components-1 (dired-split "/" dir1))
2096 (components-2 (dired-split "/" dir2)))
2097 (while (and components-1
2098 components-2
2099 (equal (car components-1) (car components-2)))
2100 (setq components-1 (cdr components-1)
2101 components-2 (cdr components-2)))
2102 (let ((c1 (car components-1))
2103 (c2 (car components-2)))
2104
2105 (cond ((and c1 c2)
2106 (string-lessp c1 c2))
2107 ((and (null c1) (null c2))
2108 nil) ; they are equal, not lessp
2109 ((null c1) ; c2 is a subdir of c1: c1<c2
2110 t)
2111 ((null c2) ; c1 is a subdir of c2: c1>c2
2112 nil)
2113 (t (error "This can't happen"))))))
2114
2115 ;; There should be a builtin split function - inverse to mapconcat.
2116 (defun dired-split (pat str &optional limit)
2117 "Splitting on regexp PAT, turn string STR into a list of substrings.
2118 Optional third arg LIMIT (>= 1) is a limit to the length of the
2119 resulting list.
2120 Thus, if SEP is a regexp that only matches itself,
2121
2122 (mapconcat 'identity (dired-split SEP STRING) SEP)
2123
2124 is always equal to STRING."
2125 (let* ((start (string-match pat str))
2126 (result (list (substring str 0 start)))
2127 (count 1)
2128 (end (if start (match-end 0))))
2129 (if end ; else nothing left
2130 (while (and (or (not (integerp limit))
2131 (< count limit))
2132 (string-match pat str end))
2133 (setq start (match-beginning 0)
2134 count (1+ count)
2135 result (cons (substring str end start) result)
2136 end (match-end 0)
2137 start end)
2138 ))
2139 (if (and (or (not (integerp limit))
2140 (< count limit))
2141 end) ; else nothing left
2142 (setq result
2143 (cons (substring str end) result)))
2144 (nreverse result)))
2145 \f
2146 ;;; moving by subdirectories
2147
2148 ;;;###autoload
2149 (defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip)
2150 "Go to previous subdirectory, regardless of level.
2151 When called interactively and not on a subdir line, go to this subdir's line."
2152 ;;(interactive "p")
2153 (interactive
2154 (list (if current-prefix-arg
2155 (prefix-numeric-value current-prefix-arg)
2156 ;; if on subdir start already, don't stay there!
2157 (if (dired-get-subdir) 1 0))))
2158 (dired-next-subdir (- arg) no-error-if-not-found no-skip))
2159
2160 (defun dired-subdir-min ()
2161 (save-excursion
2162 (if (not (dired-prev-subdir 0 t t))
2163 (error "Not in a subdir!")
2164 (point))))
2165
2166 ;;;###autoload
2167 (defun dired-goto-subdir (dir)
2168 "Go to end of header line of DIR in this dired buffer.
2169 Return value of point on success, otherwise return nil.
2170 The next char is either \\n, or \\r if DIR is hidden."
2171 (interactive
2172 (prog1 ; let push-mark display its message
2173 (list (expand-file-name
2174 (completing-read "Goto in situ directory: " ; prompt
2175 dired-subdir-alist ; table
2176 nil ; predicate
2177 t ; require-match
2178 (dired-current-directory))))
2179 (push-mark)))
2180 (setq dir (file-name-as-directory dir))
2181 (let ((elt (assoc dir dired-subdir-alist)))
2182 (and elt
2183 (goto-char (dired-get-subdir-min elt))
2184 ;; dired-subdir-hidden-p and dired-add-entry depend on point being
2185 ;; at either \r or \n after this function succeeds.
2186 (progn (skip-chars-forward "^\r\n")
2187 (point)))))
2188 \f
2189 ;;;###autoload
2190 (defun dired-mark-subdir-files ()
2191 "Mark all files except `.' and `..' in current subdirectory.
2192 If the Dired buffer shows multiple directories, this command
2193 marks the files listed in the subdirectory that point is in."
2194 (interactive)
2195 (let ((p-min (dired-subdir-min)))
2196 (dired-mark-files-in-region p-min (dired-subdir-max))))
2197
2198 ;;;###autoload
2199 (defun dired-kill-subdir (&optional remember-marks)
2200 "Remove all lines of current subdirectory.
2201 Lower levels are unaffected."
2202 ;; With optional REMEMBER-MARKS, return a mark-alist.
2203 (interactive)
2204 (let* ((beg (dired-subdir-min))
2205 (end (dired-subdir-max))
2206 (modflag (buffer-modified-p))
2207 (cur-dir (dired-current-directory))
2208 (cons (assoc-string cur-dir dired-switches-alist))
2209 buffer-read-only)
2210 (if (equal cur-dir default-directory)
2211 (error "Attempt to kill top level directory"))
2212 (prog1
2213 (if remember-marks (dired-remember-marks beg end))
2214 (delete-region beg end)
2215 (if (eobp) ; don't leave final blank line
2216 (delete-char -1))
2217 (dired-unsubdir cur-dir)
2218 (when cons
2219 (setq dired-switches-alist (delete cons dired-switches-alist)))
2220 (restore-buffer-modified-p modflag))))
2221
2222 (defun dired-unsubdir (dir)
2223 ;; Remove DIR from the alist
2224 (setq dired-subdir-alist
2225 (delq (assoc dir dired-subdir-alist) dired-subdir-alist)))
2226
2227 ;;;###autoload
2228 (defun dired-tree-up (arg)
2229 "Go up ARG levels in the dired tree."
2230 (interactive "p")
2231 (let ((dir (dired-current-directory)))
2232 (while (>= arg 1)
2233 (setq arg (1- arg)
2234 dir (file-name-directory (directory-file-name dir))))
2235 ;;(setq dir (expand-file-name dir))
2236 (or (dired-goto-subdir dir)
2237 (error "Cannot go up to %s - not in this tree" dir))))
2238
2239 ;;;###autoload
2240 (defun dired-tree-down ()
2241 "Go down in the dired tree."
2242 (interactive)
2243 (let ((dir (dired-current-directory)) ; has slash
2244 pos case-fold-search) ; filenames are case sensitive
2245 (let ((rest (reverse dired-subdir-alist)) elt)
2246 (while rest
2247 (setq elt (car rest)
2248 rest (cdr rest))
2249 (if (dired-in-this-tree (directory-file-name (car elt)) dir)
2250 (setq rest nil
2251 pos (dired-goto-subdir (car elt))))))
2252 (if pos
2253 (goto-char pos)
2254 (error "At the bottom"))))
2255 \f
2256 ;;; hiding
2257
2258 (defun dired-unhide-subdir ()
2259 (let (buffer-read-only)
2260 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?\r ?\n)))
2261
2262 (defun dired-hide-check ()
2263 (or selective-display
2264 (error "selective-display must be t for subdir hiding to work!")))
2265
2266 (defun dired-subdir-hidden-p (dir)
2267 (and selective-display
2268 (save-excursion
2269 (dired-goto-subdir dir)
2270 (looking-at "\r"))))
2271
2272 ;;;###autoload
2273 (defun dired-hide-subdir (arg)
2274 "Hide or unhide the current subdirectory and move to next directory.
2275 Optional prefix arg is a repeat factor.
2276 Use \\[dired-hide-all] to (un)hide all directories."
2277 (interactive "p")
2278 (dired-hide-check)
2279 (let ((modflag (buffer-modified-p)))
2280 (while (>= (setq arg (1- arg)) 0)
2281 (let* ((cur-dir (dired-current-directory))
2282 (hidden-p (dired-subdir-hidden-p cur-dir))
2283 (elt (assoc cur-dir dired-subdir-alist))
2284 (end-pos (1- (dired-get-subdir-max elt)))
2285 buffer-read-only)
2286 ;; keep header line visible, hide rest
2287 (goto-char (dired-get-subdir-min elt))
2288 (skip-chars-forward "^\n\r")
2289 (if hidden-p
2290 (subst-char-in-region (point) end-pos ?\r ?\n)
2291 (subst-char-in-region (point) end-pos ?\n ?\r)))
2292 (dired-next-subdir 1 t))
2293 (restore-buffer-modified-p modflag)))
2294
2295 ;;;###autoload
2296 (defun dired-hide-all (&optional ignored)
2297 "Hide all subdirectories, leaving only their header lines.
2298 If there is already something hidden, make everything visible again.
2299 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
2300 (interactive "P")
2301 (dired-hide-check)
2302 (let ((modflag (buffer-modified-p))
2303 buffer-read-only)
2304 (if (save-excursion
2305 (goto-char (point-min))
2306 (search-forward "\r" nil t))
2307 ;; unhide - bombs on \r in filenames
2308 (subst-char-in-region (point-min) (point-max) ?\r ?\n)
2309 ;; hide
2310 (let ((pos (point-max)) ; pos of end of last directory
2311 (alist dired-subdir-alist))
2312 (while alist ; while there are dirs before pos
2313 (subst-char-in-region (dired-get-subdir-min (car alist)) ; pos of prev dir
2314 (save-excursion
2315 (goto-char pos) ; current dir
2316 ;; we're somewhere on current dir's line
2317 (forward-line -1)
2318 (point))
2319 ?\n ?\r)
2320 (setq pos (dired-get-subdir-min (car alist))) ; prev dir gets current dir
2321 (setq alist (cdr alist)))))
2322 (restore-buffer-modified-p modflag)))
2323
2324 ;;;###end dired-ins.el
2325
2326 \f
2327 ;; Search only in file names in the Dired buffer.
2328
2329 (defcustom dired-isearch-filenames nil
2330 "Non-nil to Isearch in file names only.
2331 If t, Isearch in Dired always matches only file names.
2332 If `dwim', Isearch matches file names when initial point position is on
2333 a file name. Otherwise, it searches the whole buffer without restrictions."
2334 :type '(choice (const :tag "No restrictions" nil)
2335 (const :tag "When point is on a file name initially, search file names" dwim)
2336 (const :tag "Always search in file names" t))
2337 :group 'dired
2338 :version "23.1")
2339
2340 (defvar dired-isearch-filter-predicate-orig nil)
2341
2342 (defun dired-isearch-filenames-toggle ()
2343 "Toggle file names searching on or off.
2344 When on, Isearch skips matches outside file names using the predicate
2345 `dired-isearch-filter-filenames' that matches only at file names.
2346 When off, it uses the original predicate."
2347 (interactive)
2348 (setq isearch-filter-predicate
2349 (if (eq isearch-filter-predicate 'dired-isearch-filter-filenames)
2350 dired-isearch-filter-predicate-orig
2351 'dired-isearch-filter-filenames))
2352 (setq isearch-success t isearch-adjusted t)
2353 (isearch-update))
2354
2355 ;;;###autoload
2356 (defun dired-isearch-filenames-setup ()
2357 "Set up isearch to search in Dired file names.
2358 Intended to be added to `isearch-mode-hook'."
2359 (when (or (eq dired-isearch-filenames t)
2360 (and (eq dired-isearch-filenames 'dwim)
2361 (get-text-property (point) 'dired-filename)))
2362 (setq isearch-message-prefix-add "filename ")
2363 (define-key isearch-mode-map "\M-sf" 'dired-isearch-filenames-toggle)
2364 (setq dired-isearch-filter-predicate-orig
2365 (default-value 'isearch-filter-predicate))
2366 (setq-default isearch-filter-predicate 'dired-isearch-filter-filenames)
2367 (add-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end nil t)))
2368
2369 (defun dired-isearch-filenames-end ()
2370 "Clean up the Dired file name search after terminating isearch."
2371 (setq isearch-message-prefix-add nil)
2372 (define-key isearch-mode-map "\M-sf" nil)
2373 (setq-default isearch-filter-predicate dired-isearch-filter-predicate-orig)
2374 (remove-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end t))
2375
2376 (defun dired-isearch-filter-filenames (beg end)
2377 "Test whether the current search hit is a visible file name.
2378 Return non-nil if the text from BEG to END is part of a file
2379 name (has the text property `dired-filename') and is visible."
2380 (and (isearch-filter-visible beg end)
2381 (if dired-isearch-filenames
2382 (text-property-not-all (min beg end) (max beg end)
2383 'dired-filename nil)
2384 t)))
2385
2386 ;;;###autoload
2387 (defun dired-isearch-filenames ()
2388 "Search for a string using Isearch only in file names in the Dired buffer."
2389 (interactive)
2390 (let ((dired-isearch-filenames t))
2391 (isearch-forward)))
2392
2393 ;;;###autoload
2394 (defun dired-isearch-filenames-regexp ()
2395 "Search for a regexp using Isearch only in file names in the Dired buffer."
2396 (interactive)
2397 (let ((dired-isearch-filenames t))
2398 (isearch-forward-regexp)))
2399
2400 \f
2401 ;; Functions for searching in tags style among marked files.
2402
2403 ;;;###autoload
2404 (defun dired-do-isearch ()
2405 "Search for a string through all marked files using Isearch."
2406 (interactive)
2407 (multi-isearch-files
2408 (dired-get-marked-files nil nil 'dired-nondirectory-p)))
2409
2410 ;;;###autoload
2411 (defun dired-do-isearch-regexp ()
2412 "Search for a regexp through all marked files using Isearch."
2413 (interactive)
2414 (multi-isearch-files-regexp
2415 (dired-get-marked-files nil nil 'dired-nondirectory-p)))
2416
2417 ;;;###autoload
2418 (defun dired-do-search (regexp)
2419 "Search through all marked files for a match for REGEXP.
2420 Stops when a match is found.
2421 To continue searching for next match, use command \\[tags-loop-continue]."
2422 (interactive "sSearch marked files (regexp): ")
2423 (tags-search regexp '(dired-get-marked-files nil nil 'dired-nondirectory-p)))
2424
2425 ;;;###autoload
2426 (defun dired-do-query-replace-regexp (from to &optional delimited)
2427 "Do `query-replace-regexp' of FROM with TO, on all marked files.
2428 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
2429 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
2430 with the command \\[tags-loop-continue]."
2431 (interactive
2432 (let ((common
2433 (query-replace-read-args
2434 "Query replace regexp in marked files" t t)))
2435 (list (nth 0 common) (nth 1 common) (nth 2 common))))
2436 (dolist (file (dired-get-marked-files nil nil 'dired-nondirectory-p))
2437 (let ((buffer (get-file-buffer file)))
2438 (if (and buffer (with-current-buffer buffer
2439 buffer-read-only))
2440 (error "File `%s' is visited read-only" file))))
2441 (tags-query-replace from to delimited
2442 '(dired-get-marked-files nil nil 'dired-nondirectory-p)))
2443
2444 (defun dired-nondirectory-p (file)
2445 (not (file-directory-p file)))
2446 \f
2447 ;;;###autoload
2448 (defun dired-show-file-type (file &optional deref-symlinks)
2449 "Print the type of FILE, according to the `file' command.
2450 If FILE is a symbolic link and the optional argument DEREF-SYMLINKS is
2451 true then the type of the file linked to by FILE is printed instead."
2452 (interactive (list (dired-get-filename t) current-prefix-arg))
2453 (let (process-file-side-effects)
2454 (with-temp-buffer
2455 (if deref-symlinks
2456 (process-file "file" nil t t "-L" "--" file)
2457 (process-file "file" nil t t "--" file))
2458 (when (bolp)
2459 (backward-delete-char 1))
2460 (message "%s" (buffer-string)))))
2461
2462 (provide 'dired-aux)
2463
2464 ;; Local Variables:
2465 ;; byte-compile-dynamic: t
2466 ;; generated-autoload-file: "dired.el"
2467 ;; End:
2468
2469 ;;; dired-aux.el ends here