1 ;;; dired-aux.el --- less commonly used parts of dired -*-byte-compile-dynamic: t;-*-
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 1998, 2000, 2001, 2004
4 ;; Free Software Foundation, Inc.
6 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>.
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
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
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.
39 ;; We need macros in dired.el to compile properly.
40 (eval-when-compile (require 'dired
))
43 ;;;###begin dired-cmd.el
44 ;; Diffing and compressing
46 (defconst dired-star-subst-regexp
"\\(^\\|[ \t]\\)\\*\\([ \t]\\|$\\)")
47 (defconst dired-quark-subst-regexp
"\\(^\\|[ \t]\\)\\?\\([ \t]\\|$\\)")
50 (defun dired-diff (file &optional switches
)
51 "Compare file at point with file FILE using `diff'.
52 FILE defaults to the file at the mark. (That's the mark set by
53 \\[set-mark-command], not by Dired's \\[dired-mark] command.)
54 The prompted-for file is the first file given to `diff'.
55 With prefix arg, prompt for second argument SWITCHES,
56 which is options for `diff'."
58 (let ((default (if (mark t
)
59 (save-excursion (goto-char (mark t
))
60 (dired-get-filename t t
)))))
62 (list (read-file-name (format "Diff %s with: %s"
63 (dired-get-filename t
)
65 (concat "(default " default
") ")
68 (dired-current-directory)
69 (dired-dwim-target-directory))
71 (if current-prefix-arg
72 (read-string "Options for diff: "
73 (if (stringp diff-switches
)
75 (mapconcat 'identity diff-switches
" ")))))))
76 (diff file
(dired-get-filename t
) switches
))
79 (defun dired-backup-diff (&optional switches
)
80 "Diff this file with its backup file or vice versa.
81 Uses the latest backup, if there are several numerical backups.
82 If this file is a backup, diff it with its original.
83 The backup file is the first file given to `diff'.
84 With prefix arg, prompt for argument SWITCHES which is options for `diff'."
86 (if current-prefix-arg
87 (list (read-string "Options for diff: "
88 (if (stringp diff-switches
)
90 (mapconcat 'identity diff-switches
" "))))
92 (diff-backup (dired-get-filename) switches
))
95 (defun dired-compare-directories (dir2 predicate
)
96 "Mark files with different file attributes in two dired buffers.
97 Compare file attributes of files in the current directory
98 with file attributes in directory DIR2 using PREDICATE on pairs of files
99 with the same name. Mark files for which PREDICATE returns non-nil.
100 Mark files with different names if PREDICATE is nil (or interactively
101 with empty input at the predicate prompt).
103 PREDICATE is a Lisp expression that can refer to the following variables:
105 size1, size2 - file size in bytes
106 mtime1, mtime2 - last modification time in seconds, as a float
107 fa1, fa2 - list of file attributes
108 returned by function `file-attributes'
110 where 1 refers to attribute of file in the current dired buffer
111 and 2 to attribute of file in second dired buffer.
113 Examples of PREDICATE:
115 (> mtime1 mtime2) - mark newer files
116 (not (= size1 size2)) - mark files with different sizes
117 (not (string= (nth 8 fa1) (nth 8 fa2))) - mark files with different modes
118 (not (and (= (nth 2 fa1) (nth 2 fa2)) - mark files with different UID
119 (= (nth 3 fa1) (nth 3 fa2)))) and GID."
121 (list (read-directory-name (format "Compare %s with: "
122 (dired-current-directory))
123 (dired-dwim-target-directory)
124 (dired-dwim-target-directory))
125 (read-from-minibuffer "Mark if (lisp expr or RET): " nil nil t nil
"nil")))
126 (let* ((dir1 (dired-current-directory))
127 (file-alist1 (dired-files-attributes dir1
))
128 (file-alist2 (dired-files-attributes dir2
))
131 (dired-file-set-difference
132 file-alist1 file-alist2
136 (dired-file-set-difference
137 file-alist2 file-alist1
139 (dired-fun-in-all-buffers
143 (member (dired-get-filename nil t
) file-list1
) nil
)))
144 (dired-fun-in-all-buffers
148 (member (dired-get-filename nil t
) file-list2
) nil
)))
149 (message "Marked in dir1: %s files, in dir2: %s files"
151 (length file-list2
))))
153 (defun dired-file-set-difference (list1 list2 predicate
)
154 "Combine LIST1 and LIST2 using a set-difference operation.
155 The result list contains all file items that appear in LIST1 but not LIST2.
156 This is a non-destructive function; it makes a copy of the data if necessary
157 to avoid corrupting the original LIST1 and LIST2.
158 PREDICATE (see `dired-compare-directories') is an additional match
159 condition. Two file items are considered to match if they are equal
160 *and* PREDICATE evaluates to t."
161 (if (or (null list1
) (null list2
))
164 (dolist (file1 list1
)
165 (unless (let ((list list2
))
167 (not (let* ((file2 (car list
))
168 (fa1 (car (cddr file1
)))
169 (fa2 (car (cddr file2
)))
172 (mtime1 (float-time (nth 5 fa1
)))
173 (mtime2 (float-time (nth 5 fa2
))))
175 (equal (car file1
) (car file2
))
176 (not (eval predicate
))))))
177 (setq list
(cdr list
)))
179 (setq res
(cons file1 res
))))
182 (defun dired-files-attributes (dir)
183 "Return a list of all file names and attributes from DIR.
184 List has a form of (file-name full-file-name (attribute-list))"
187 (let ((full-file-name (expand-file-name file-name dir
)))
190 (file-attributes full-file-name
))))
191 (directory-files dir
)))
194 (defun dired-touch-initial (files)
195 "Create initial input value for `touch' command."
198 (let ((current (nth 5 (file-attributes (car files
)))))
199 (if (and initial
(not (equal initial current
)))
200 (setq initial
(current-time) files nil
)
201 (setq initial current
))
202 (setq files
(cdr files
))))
203 (format-time-string "%Y%m%d%H%M.%S" initial
)))
205 (defun dired-do-chxxx (attribute-name program op-symbol arg
)
206 ;; Change file attributes (mode, group, owner, timestamp) of marked files and
207 ;; refresh their file lines.
208 ;; ATTRIBUTE-NAME is a string describing the attribute to the user.
209 ;; PROGRAM is the program used to change the attribute.
210 ;; OP-SYMBOL is the type of operation (for use in dired-mark-pop-up).
211 ;; ARG describes which files to use, as in dired-get-marked-files.
212 (let* ((files (dired-get-marked-files t arg
))
214 (dired-mark-read-string
215 (concat "Change " attribute-name
" of %s to: ")
216 (if (eq op-symbol
'touch
) (dired-touch-initial files
))
217 op-symbol arg files
))
218 (operation (concat program
" " new-attribute
))
221 (dired-bunch-files 10000
222 (function dired-check-process
)
224 (list operation program
)
225 (if (eq op-symbol
'touch
)
228 (if (string-match "gnu" system-configuration
)
231 (dired-do-redisplay arg
);; moves point if ARG is an integer
234 (format "%s: error" operation
)
238 (defun dired-do-chmod (&optional arg
)
239 "Change the mode of the marked (or next ARG) files.
240 This calls chmod, thus symbolic modes like `g+w' are allowed."
242 (dired-do-chxxx "Mode" dired-chmod-program
'chmod arg
))
245 (defun dired-do-chgrp (&optional arg
)
246 "Change the group of the marked (or next ARG) files."
248 (if (memq system-type
'(ms-dos windows-nt
))
249 (error "chgrp not supported on this system"))
250 (dired-do-chxxx "Group" "chgrp" 'chgrp arg
))
253 (defun dired-do-chown (&optional arg
)
254 "Change the owner of the marked (or next ARG) files."
256 (if (memq system-type
'(ms-dos windows-nt
))
257 (error "chown not supported on this system"))
258 (dired-do-chxxx "Owner" dired-chown-program
'chown arg
))
261 (defun dired-do-touch (&optional arg
)
262 "Change the timestamp of the marked (or next ARG) files.
265 (dired-do-chxxx "Timestamp" dired-touch-program
'touch arg
))
267 ;; Process all the files in FILES in batches of a convenient size,
268 ;; by means of (FUNCALL FUNCTION ARGS... SOME-FILES...).
269 ;; Batches are chosen to need less than MAX chars for the file names,
270 ;; allowing 3 extra characters of separator per file name.
271 (defun dired-bunch-files (max function args files
)
276 ;; Accumulate files as long as they fit in MAX chars,
277 ;; then process the ones accumulated so far.
279 (let* ((thisfile (car files
))
280 (thislength (+ (length thisfile
) 3))
282 ;; If we have at least 1 pending file
283 ;; and this file won't fit in the length limit, process now.
284 (if (and pending
(> (+ thislength pending-length
) max
))
285 (setq pending
(nreverse pending
)
286 ;; The elements of PENDING are now in forward order.
287 ;; Do the operation and record failures.
288 failures
(nconc (apply function
(append args pending
))
290 ;; Transfer the elemens of PENDING onto PAST
291 ;; and clear it out. Now PAST contains the first N files
292 ;; specified (for some N), and FILES contains the rest.
293 past
(nconc past pending
)
296 ;; Do (setq pending (cons thisfile pending))
297 ;; but reuse the cons that was in `files'.
298 (setcdr files pending
)
300 (setq pending-length
(+ thislength pending-length
))
302 (setq pending
(nreverse pending
))
304 (nconc (apply function
(append args pending
))
306 ;; Now the original list FILES has been put back as it was.
307 (nconc past pending
))))
310 (defun dired-do-print (&optional arg
)
311 "Print the marked (or next ARG) files.
312 Uses the shell command coming from variables `lpr-command' and
313 `lpr-switches' as default."
315 (let* ((file-list (dired-get-marked-files t arg
))
316 (command (dired-mark-read-string
320 (if (stringp lpr-switches
)
324 'print arg file-list
)))
325 (dired-run-shell-command (dired-shell-stuff-it command file-list nil
))))
327 ;; Read arguments for a marked-files command that wants a string
328 ;; that is not a file name,
329 ;; perhaps popping up the list of marked files.
330 ;; ARG is the prefix arg and indicates whether the files came from
331 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
332 ;; If the current file was used, the list has but one element and ARG
333 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
335 (defun dired-mark-read-string (prompt initial op-symbol arg files
)
336 ;; PROMPT for a string, with INITIAL input.
337 ;; Other args are used to give user feedback and pop-up:
338 ;; OP-SYMBOL of command, prefix ARG, marked FILES.
341 (function read-string
)
342 (format prompt
(dired-mark-prompt arg files
)) initial
))
344 ;;; Cleaning a directory: flagging some backups for deletion.
346 (defvar dired-file-version-alist
)
349 (defun dired-clean-directory (keep)
350 "Flag numerical backups for deletion.
351 Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
352 Positive prefix arg KEEP overrides `dired-kept-versions';
353 Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
355 To clear the flags on these files, you can use \\[dired-flag-backup-files]
356 with a prefix argument."
358 (setq keep
(if keep
(prefix-numeric-value keep
) dired-kept-versions
))
359 (let ((early-retention (if (< keep
0) (- keep
) kept-old-versions
))
360 (late-retention (if (<= keep
0) dired-kept-versions keep
))
361 (dired-file-version-alist ()))
362 (message "Cleaning numerical backups (keeping %d late, %d old)..."
363 late-retention early-retention
)
364 ;; Look at each file.
365 ;; If the file has numeric backup versions,
366 ;; put on dired-file-version-alist an element of the form
367 ;; (FILENAME . VERSION-NUMBER-LIST)
368 (dired-map-dired-file-lines (function dired-collect-file-versions
))
369 ;; Sort each VERSION-NUMBER-LIST,
370 ;; and remove the versions not to be deleted.
371 (let ((fval dired-file-version-alist
))
373 (let* ((sorted-v-list (cons 'q
(sort (cdr (car fval
)) '<)))
374 (v-count (length sorted-v-list
)))
375 (if (> v-count
(+ early-retention late-retention
))
376 (rplacd (nthcdr early-retention sorted-v-list
)
377 (nthcdr (- v-count late-retention
)
380 (cdr sorted-v-list
)))
381 (setq fval
(cdr fval
))))
382 ;; Look at each file. If it is a numeric backup file,
383 ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion.
384 (dired-map-dired-file-lines (function dired-trample-file-versions
))
385 (message "Cleaning numerical backups...done")))
387 ;;; Subroutines of dired-clean-directory.
389 (defun dired-map-dired-file-lines (fun)
390 ;; Perform FUN with point at the end of each non-directory line.
391 ;; FUN takes one argument, the absolute filename.
393 (let (file buffer-read-only
)
394 (goto-char (point-min))
397 (and (not (looking-at dired-re-dir
))
399 (setq file
(dired-get-filename nil t
)) ; nil on non-file
401 (funcall fun file
))))
404 (defun dired-collect-file-versions (fn)
405 (let ((fn (file-name-sans-versions fn
)))
406 ;; Only do work if this file is not already in the alist.
407 (if (assoc fn dired-file-version-alist
)
409 ;; If it looks like file FN has versions, return a list of the versions.
410 ;;That is a list of strings which are file names.
411 ;;The caller may want to flag some of these files for deletion.
412 (let* ((base-versions
413 (concat (file-name-nondirectory fn
) ".~"))
414 (backup-extract-version-start (length base-versions
))
415 (possibilities (file-name-all-completions
417 (file-name-directory fn
)))
418 (versions (mapcar 'backup-extract-version possibilities
)))
420 (setq dired-file-version-alist
421 (cons (cons fn versions
)
422 dired-file-version-alist
)))))))
424 (defun dired-trample-file-versions (fn)
425 (let* ((start-vn (string-match "\\.~[0-9]+~$" fn
))
428 (setq base-version-list
; there was a base version to which
429 (assoc (substring fn
0 start-vn
) ; this looks like a
430 dired-file-version-alist
)) ; subversion
431 (not (memq (string-to-number (substring fn
(+ 2 start-vn
)))
432 base-version-list
)) ; this one doesn't make the cut
433 (progn (beginning-of-line)
435 (insert dired-del-marker
)))))
439 (defun dired-read-shell-command (prompt arg files
)
440 ;; "Read a dired shell command prompting with PROMPT (using read-string).
441 ;;ARG is the prefix arg and may be used to indicate in the prompt which
442 ;; files are affected.
443 ;;This is an extra function so that you can redefine it, e.g., to use gmhist."
446 (function read-string
)
447 (format prompt
(dired-mark-prompt arg files
))
448 nil
'shell-command-history
))
450 ;; The in-background argument is only needed in Emacs 18 where
451 ;; shell-command doesn't understand an appended ampersand `&'.
453 (defun dired-do-shell-command (command &optional arg file-list
)
454 "Run a shell command COMMAND on the marked files.
455 If no files are marked or a specific numeric prefix arg is given,
456 the next ARG files are used. Just \\[universal-argument] means the current file.
457 The prompt mentions the file(s) or the marker, as appropriate.
459 If there is a `*' in COMMAND, surrounded by whitespace, this runs
460 COMMAND just once with the entire file list substituted there.
462 If there is no `*', but there is a `?' in COMMAND, surrounded by
463 whitespace, this runs COMMAND on each file individually with the
464 file name substituted for `?'.
466 Otherwise, this runs COMMAND on each file individually with the
467 file name added at the end of COMMAND (separated by a space).
469 `*' and `?' when not surrounded by whitespace have no special
470 significance for `dired-do-shell-command', and are passed through
471 normally to the shell, but you must confirm first. To pass `*' by
472 itself to the shell as a wildcard, type `*\"\"'.
474 If COMMAND produces output, it goes to a separate buffer.
476 This feature does not try to redisplay Dired buffers afterward, as
477 there's no telling what files COMMAND may have changed.
478 Type \\[dired-do-redisplay] to redisplay the marked files.
480 When COMMAND runs, its working directory is the top-level directory of
481 the Dired buffer, so output files usually are created there instead of
484 In a noninteractive call (from Lisp code), you must specify
485 the list of file names explicitly with the FILE-LIST argument."
486 ;;Functions dired-run-shell-command and dired-shell-stuff-it do the
487 ;;actual work and can be redefined for customization.
489 (let ((files (dired-get-marked-files t current-prefix-arg
)))
491 ;; Want to give feedback whether this file or marked files are used:
492 (dired-read-shell-command (concat "! on "
498 (let* ((on-each (not (string-match dired-star-subst-regexp command
)))
499 (subst (not (string-match dired-quark-subst-regexp command
)))
500 (star (not (string-match "\\*" command
)))
501 (qmark (not (string-match "\\?" command
))))
502 ;; Get confirmation for wildcards that may have been meant
503 ;; to control substitution of a file name or the file name list.
504 (if (cond ((not (or on-each subst
))
505 (error "You can not combine `*' and `?' substitution marks"))
506 ((and star
(not on-each
))
507 (y-or-n-p "Confirm--do you mean to use `*' as a wildcard? "))
508 ((and qmark
(not subst
))
509 (y-or-n-p "Confirm--do you mean to use `?' as a wildcard? "))
513 (- 10000 (length command
))
514 (function (lambda (&rest files
)
515 (dired-run-shell-command
516 (dired-shell-stuff-it command files t arg
))))
519 ;; execute the shell command
520 (dired-run-shell-command
521 (dired-shell-stuff-it command file-list nil arg
))))))
523 ;; Might use {,} for bash or csh:
524 (defvar dired-mark-prefix
""
525 "Prepended to marked files in dired shell commands.")
526 (defvar dired-mark-postfix
""
527 "Appended to marked files in dired shell commands.")
528 (defvar dired-mark-separator
" "
529 "Separates marked files in dired shell commands.")
531 (defun dired-shell-stuff-it (command file-list on-each
&optional raw-arg
)
532 ;; "Make up a shell command line from COMMAND and FILE-LIST.
533 ;; If ON-EACH is t, COMMAND should be applied to each file, else
534 ;; simply concat all files and apply COMMAND to this.
535 ;; FILE-LIST's elements will be quoted for the shell."
536 ;; Might be redefined for smarter things and could then use RAW-ARG
537 ;; (coming from interactive P and currently ignored) to decide what to do.
538 ;; Smart would be a way to access basename or extension of file names.
540 (if (or (string-match dired-star-subst-regexp command
)
541 (string-match dired-quark-subst-regexp command
))
543 (let ((retval command
))
545 "\\(^\\|[ \t]\\)\\([*?]\\)\\([ \t]\\|$\\)" retval
)
546 (setq retval
(replace-match x t t retval
2)))
548 (lambda (x) (concat command dired-mark-separator x
)))))
550 (mapconcat stuff-it
(mapcar 'shell-quote-argument file-list
) ";")
551 (let ((files (mapconcat 'shell-quote-argument
552 file-list dired-mark-separator
)))
553 (if (> (length file-list
) 1)
554 (setq files
(concat dired-mark-prefix files dired-mark-postfix
)))
555 (funcall stuff-it files
)))))
557 ;; This is an extra function so that it can be redefined by ange-ftp.
559 (defun dired-run-shell-command (command)
561 (find-file-name-handler (directory-file-name default-directory
)
563 (if handler
(apply handler
'shell-command
(list command
))
564 (shell-command command
)))
565 ;; Return nil for sake of nconc in dired-bunch-files.
568 ;; In Emacs 19 this will return program's exit status.
569 ;; This is a separate function so that ange-ftp can redefine it.
570 (defun dired-call-process (program discard
&rest arguments
)
571 ; "Run PROGRAM with output to current buffer unless DISCARD is t.
572 ;Remaining arguments are strings passed as command arguments to PROGRAM."
573 ;; Look for a handler for default-directory in case it is a remote file name.
575 (find-file-name-handler (directory-file-name default-directory
)
576 'dired-call-process
)))
577 (if handler
(apply handler
'dired-call-process
578 program discard arguments
)
579 (apply 'call-process program nil
(not discard
) nil arguments
))))
581 (defun dired-check-process (msg program
&rest arguments
)
582 ; "Display MSG while running PROGRAM, and check for output.
583 ;Remaining arguments are strings passed as command arguments to PROGRAM.
584 ; On error, insert output
585 ; in a log buffer and return the offending ARGUMENTS or PROGRAM.
586 ; Caller can cons up a list of failed args.
587 ;Else returns nil for success."
588 (let (err-buffer err
(dir default-directory
))
589 (message "%s..." msg
)
591 ;; Get a clean buffer for error output:
592 (setq err-buffer
(get-buffer-create " *dired-check-process output*"))
593 (set-buffer err-buffer
)
595 (setq default-directory dir
; caller's default-directory
597 (apply (function dired-call-process
) program nil arguments
))))
600 (dired-log (concat program
" " (prin1-to-string arguments
) "\n"))
601 (dired-log err-buffer
)
602 (or arguments program t
))
603 (kill-buffer err-buffer
)
604 (message "%s...done" msg
)
607 ;; Commands that delete or redisplay part of the dired buffer.
609 (defun dired-kill-line (&optional arg
)
611 (setq arg
(prefix-numeric-value arg
))
612 (let (buffer-read-only file
)
614 (setq file
(dired-get-filename nil t
))
616 (error "Can only kill file lines")
617 (save-excursion (and file
618 (dired-goto-subdir file
)
619 (dired-kill-subdir)))
620 (delete-region (progn (beginning-of-line) (point))
621 (progn (forward-line 1) (point)))
626 (dired-move-to-filename)))
629 (defun dired-do-kill-lines (&optional arg fmt
)
630 "Kill all marked lines (not the files).
631 With a prefix argument, kill that many lines starting with the current line.
632 \(A negative argument kills backward.)
633 If you use this command with a prefix argument to kill the line
634 for a file that is a directory, which you have inserted in the
635 Dired buffer as a subdirectory, then it deletes that subdirectory
636 from the buffer as well.
637 To kill an entire subdirectory \(without killing its line in the
638 parent directory), go to its directory header line and use this
639 command with a prefix argument (the value does not matter)."
640 ;; Returns count of killed lines. FMT="" suppresses message.
643 (if (dired-get-subdir)
645 (dired-kill-line arg
))
647 (goto-char (point-min))
648 (let (buffer-read-only
650 (regexp (dired-marker-regexp)))
651 (while (and (not (eobp))
652 (re-search-forward regexp nil t
))
653 (setq count
(1+ count
))
654 (delete-region (progn (beginning-of-line) (point))
655 (progn (forward-line 1) (point))))
657 (message (or fmt
"Killed %d line%s.") count
(dired-plural-s count
)))
660 ;;;###end dired-cmd.el
663 ;;;###begin dired-cp.el
665 (defun dired-compress ()
666 ;; Compress or uncompress the current file.
667 ;; Return nil for success, offending filename else.
668 (let* (buffer-read-only
669 (from-file (dired-get-filename))
670 (new-file (dired-compress-file from-file
)))
672 (let ((start (point)))
673 ;; Remove any preexisting entry for the name NEW-FILE.
675 (dired-remove-entry new-file
)
678 ;; Now replace the current line with an entry for NEW-FILE.
679 (dired-update-file-line new-file
) nil
)
680 (dired-log (concat "Failed to compress" from-file
))
683 (defvar dired-compress-file-suffixes
684 '(("\\.gz\\'" "" "gunzip")
685 ("\\.tgz\\'" ".tar" "gunzip")
686 ("\\.Z\\'" "" "uncompress")
687 ;; For .z, try gunzip. It might be an old gzip file,
688 ;; or it might be from compact? pack? (which?) but gunzip handles both.
689 ("\\.z\\'" "" "gunzip")
690 ("\\.dz\\'" "" "dictunzip")
691 ("\\.tbz\\'" ".tar" "bunzip2")
692 ("\\.bz2\\'" "" "bunzip2")
693 ;; This item controls naming for compression.
694 ("\\.tar\\'" ".tgz" nil
))
695 "Control changes in file name suffixes for compression and uncompression.
696 Each element specifies one transformation rule, and has the form:
697 (REGEXP NEW-SUFFIX PROGRAM)
698 The rule applies when the old file name matches REGEXP.
699 The new file name is computed by deleting the part that matches REGEXP
700 (as well as anything after that), then adding NEW-SUFFIX in its place.
701 If PROGRAM is non-nil, the rule is an uncompression rule,
702 and uncompression is done by running PROGRAM.
703 Otherwise, the rule is a compression rule, and compression is done with gzip.")
706 (defun dired-compress-file (file)
707 ;; Compress or uncompress FILE.
708 ;; Return the name of the compressed or uncompressed file.
709 ;; Return nil if no change in files.
710 (let ((handler (find-file-name-handler file
'dired-compress-file
))
712 (suffixes dired-compress-file-suffixes
))
713 ;; See if any suffix rule matches this file name.
715 (let (case-fold-search)
716 (if (string-match (car (car suffixes
)) file
)
717 (setq suffix
(car suffixes
) suffixes nil
))
718 (setq suffixes
(cdr suffixes
))))
719 ;; If so, compute desired new name.
721 (setq newname
(concat (substring file
0 (match-beginning 0))
724 (funcall handler
'dired-compress-file file
))
725 ((file-symlink-p file
)
727 ((and suffix
(nth 2 suffix
))
728 ;; We found an uncompression rule.
729 (if (not (dired-check-process (concat "Uncompressing " file
)
730 (nth 2 suffix
) file
))
733 ;;; We don't recognize the file as compressed, so compress it.
734 ;;; Try gzip; if we don't have that, use compress.
736 (if (not (dired-check-process (concat "Compressing " file
)
739 (if (file-exists-p (concat file
".gz"))
741 (concat file
".z"))))
742 ;; Rename the compressed file to NEWNAME
743 ;; if it hasn't got that name already.
744 (if (and newname
(not (equal newname out-name
)))
746 (rename-file out-name newname t
)
750 (if (not (dired-check-process (concat "Compressing " file
)
751 "compress" "-f" file
))
752 ;; Don't use NEWNAME with `compress'.
753 (concat file
".Z"))))))))
755 (defun dired-mark-confirm (op-symbol arg
)
756 ;; Request confirmation from the user that the operation described
757 ;; by OP-SYMBOL is to be performed on the marked files.
758 ;; Confirmation consists in a y-or-n question with a file list
759 ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'.
760 ;; The files used are determined by ARG (as in dired-get-marked-files).
761 (or (eq dired-no-confirm t
)
762 (memq op-symbol dired-no-confirm
)
763 ;; Pass t for DISTINGUISH-ONE-MARKED so that a single file which
764 ;; is marked pops up a window. That will help the user see
765 ;; it isn't the current line file.
766 (let ((files (dired-get-marked-files t arg nil t
))
767 (string (if (eq op-symbol
'compress
) "Compress or uncompress"
768 (capitalize (symbol-name op-symbol
)))))
769 (dired-mark-pop-up nil op-symbol files
(function y-or-n-p
)
771 (dired-mark-prompt arg files
) "? ")))))
773 (defun dired-map-over-marks-check (fun arg op-symbol
&optional show-progress
)
774 ; "Map FUN over marked files (with second ARG like in dired-map-over-marks)
775 ; and display failures.
777 ; FUN takes zero args. It returns non-nil (the offending object, e.g.
778 ; the short form of the filename) for a failure and probably logs a
779 ; detailed error explanation using function `dired-log'.
781 ; OP-SYMBOL is a symbol describing the operation performed (e.g.
782 ; `compress'). It is used with `dired-mark-pop-up' to prompt the user
783 ; (e.g. with `Compress * [2 files]? ') and to display errors (e.g.
784 ; `Failed to compress 1 of 2 files - type W to see why ("foo")')
786 ; SHOW-PROGRESS if non-nil means redisplay dired after each file."
787 (if (dired-mark-confirm op-symbol arg
)
788 (let* ((total-list;; all of FUN's return values
789 (dired-map-over-marks (funcall fun
) arg show-progress
))
790 (total (length total-list
))
791 (failures (delq nil total-list
))
792 (count (length failures
))
793 (string (if (eq op-symbol
'compress
) "Compress or uncompress"
794 (capitalize (symbol-name op-symbol
)))))
796 (message "%s: %d file%s."
797 string total
(dired-plural-s total
))
798 ;; end this bunch of errors:
800 (format "Failed to %s %d of %d file%s"
801 (downcase string
) count total
(dired-plural-s total
))
804 (defvar dired-query-alist
805 '((?\y . y
) (?
\040 . y
) ; `y' or SPC means accept once
806 (?n . n
) (?
\177 . n
) ; `n' or DEL skips once
807 (?
! . yes
) ; `!' accepts rest
808 (?q . no
) (?\e . no
) ; `q' or ESC skips rest
809 ;; None of these keys quit - use C-g for that.
813 (defun dired-query (qs-var qs-prompt
&rest qs-args
)
814 ;; Query user and return nil or t.
815 ;; Store answer in symbol VAR (which must initially be bound to nil).
816 ;; Format PROMPT with ARGS.
817 ;; Binding variable help-form will help the user who types the help key.
818 (let* ((char (symbol-value qs-var
))
819 (action (cdr (assoc char dired-query-alist
))))
820 (cond ((eq 'yes action
)
821 t
) ; accept, and don't ask again
823 nil
) ; skip, and don't ask again
824 (t;; no lasting effects from last time we asked - ask now
825 (let ((qprompt (concat qs-prompt
827 (format " [Type yn!q or %s] "
829 (char-to-string help-char
)))
830 " [Type y, n, q or !] ")))
832 ;; Actually it looks nicer without cursor-in-echo-area - you can
833 ;; look at the dired buffer instead of at the prompt to decide.
834 (apply 'message qprompt qs-args
)
835 (setq char
(set qs-var
(read-char)))
836 (while (not (setq elt
(assoc char dired-query-alist
)))
837 (message "Invalid char - type %c for help." help-char
)
840 (apply 'message qprompt qs-args
)
841 (setq char
(set qs-var
(read-char))))
842 (memq (cdr elt
) '(t y yes
)))))))
845 (defun dired-do-compress (&optional arg
)
846 "Compress or uncompress marked (or next ARG) files."
848 (dired-map-over-marks-check (function dired-compress
) arg
'compress t
))
850 ;; Commands for Emacs Lisp files - load and byte compile
852 (defun dired-byte-compile ()
853 ;; Return nil for success, offending file name else.
854 (let* ((filename (dired-get-filename))
855 elc-file buffer-read-only failure
)
857 (save-excursion (byte-compile-file filename
))
860 (setq elc-file
(byte-compile-dest-file filename
))
861 (or (file-exists-p elc-file
)
865 (dired-log "Byte compile error for %s:\n%s\n" filename failure
)
866 (dired-make-relative filename
))
867 (dired-remove-file elc-file
)
868 (forward-line) ; insert .elc after its .el file
869 (dired-add-file elc-file
)
873 (defun dired-do-byte-compile (&optional arg
)
874 "Byte compile marked (or next ARG) Emacs Lisp files."
876 (dired-map-over-marks-check (function dired-byte-compile
) arg
'byte-compile t
))
879 ;; Return nil for success, offending file name else.
880 (let ((file (dired-get-filename)) failure
)
882 (load file nil nil t
)
883 (error (setq failure err
)))
886 (dired-log "Load error for %s:\n%s\n" file failure
)
887 (dired-make-relative file
))))
890 (defun dired-do-load (&optional arg
)
891 "Load the marked (or next ARG) Emacs Lisp files."
893 (dired-map-over-marks-check (function dired-load
) arg
'load t
))
896 (defun dired-do-redisplay (&optional arg test-for-subdir
)
897 "Redisplay all marked (or next ARG) files.
898 If on a subdir line, redisplay that subdirectory. In that case,
899 a prefix arg lets you edit the `ls' switches used for the new listing.
901 Dired remembers switches specified with a prefix arg, so that reverting
902 the buffer will not reset them. However, using `dired-undo' to re-insert
903 or delete subdirectories can bypass this machinery. Hence, you sometimes
904 may have to reset some subdirectory switches after a `dired-undo'.
905 You can reset all subdirectory switches to the default using
906 \\<dired-mode-map>\\[dired-reset-subdir-switches].
907 See Info node `(emacs-xtra)Subdir switches' for more details."
908 ;; Moves point if the next ARG files are redisplayed.
910 (if (and test-for-subdir
(dired-get-subdir))
911 (let* ((dir (dired-get-subdir))
912 (switches (cdr (assoc-string dir dired-switches-alist
))))
916 (read-string "Switches for listing: "
918 dired-subdir-switches
919 dired-actual-switches
)))))
920 (message "Redisplaying...")
921 ;; message much faster than making dired-map-over-marks show progress
923 (if (consp dired-directory
) (car dired-directory
) dired-directory
))
924 (dired-map-over-marks (let ((fname (dired-get-filename)))
925 (message "Redisplaying... %s" fname
)
926 (dired-update-file-line fname
))
928 (dired-move-to-filename)
929 (message "Redisplaying...done")))
931 (defun dired-reset-subdir-switches ()
932 "Set `dired-switches-alist' to nil and revert dired buffer."
934 (setq dired-switches-alist nil
)
937 (defun dired-update-file-line (file)
938 ;; Delete the current line, and insert an entry for FILE.
939 ;; If FILE is nil, then just delete the current line.
940 ;; Keeps any marks that may be present in column one (doing this
941 ;; here is faster than with dired-add-entry's optional arg).
942 ;; Does not update other dired buffers. Use dired-relist-entry for that.
944 (let ((char (following-char)) (opoint (point))
946 (delete-region (point) (progn (forward-line 1) (point)))
949 (dired-add-entry file nil t
)
950 ;; Replace space by old marker without moving point.
951 ;; Faster than goto+insdel inside a save-excursion?
952 (subst-char-in-region opoint
(1+ opoint
) ?
\040 char
))))
953 (dired-move-to-filename))
956 (defun dired-add-file (filename &optional marker-char
)
957 (dired-fun-in-all-buffers
958 (file-name-directory filename
) (file-name-nondirectory filename
)
959 (function dired-add-entry
) filename marker-char
))
961 (defun dired-add-entry (filename &optional marker-char relative
)
962 ;; Add a new entry for FILENAME, optionally marking it
963 ;; with MARKER-CHAR (a character, else dired-marker-char is used).
964 ;; Note that this adds the entry `out of order' if files sorted by
966 ;; At least this version inserts in the right subdirectory (if present).
967 ;; And it skips "." or ".." (see `dired-trivial-filenames').
968 ;; Hidden subdirs are exposed if a file is added there.
969 (setq filename
(directory-file-name filename
))
970 ;; Entry is always for files, even if they happen to also be directories
971 (let* ((opoint (point))
972 (cur-dir (dired-current-directory))
973 (orig-file-name filename
)
974 (directory (if relative cur-dir
(file-name-directory filename
)))
978 (file-relative-name filename directory
)
979 (file-name-nondirectory filename
))
982 (if (string= directory cur-dir
)
984 (skip-chars-forward "^\r\n")
985 (if (eq (following-char) ?
\r)
986 (dired-unhide-subdir))
987 ;; We are already where we should be, except when
988 ;; point is before the subdir line or its total line.
989 (let ((p (dired-after-subdir-garbage cur-dir
)))
992 ;; else try to find correct place to insert
993 (if (dired-goto-subdir directory
)
994 (progn ;; unhide if necessary
995 (if (looking-at "\r") ;; point is at end of subdir line
996 (dired-unhide-subdir))
997 ;; found - skip subdir and `total' line
998 ;; and uninteresting files like . and ..
999 ;; This better not moves into the next subdir!
1000 (dired-goto-next-nontrivial-file))
1002 (throw 'not-found
"Subdir not found")))
1003 (let (buffer-read-only opoint
)
1005 (setq opoint
(point))
1006 ;; Don't expand `.'. Show just the file name within directory.
1007 (let ((default-directory directory
))
1008 (dired-insert-directory directory
1009 (concat dired-actual-switches
"d")
1012 ;; Put in desired marker char.
1014 (let ((dired-marker-char
1015 (if (integerp marker-char
) marker-char dired-marker-char
)))
1017 ;; Compensate for a bug in ange-ftp.
1018 ;; It inserts the file's absolute name, rather than
1019 ;; the relative one. That may be hard to fix since it
1020 ;; is probably controlled by something in ftp.
1022 (let ((inserted-name (dired-get-filename 'verbatim
)))
1023 (if (file-name-directory inserted-name
)
1026 (forward-char (- (length inserted-name
)))
1027 (setq props
(text-properties-at (point)))
1028 (delete-char (length inserted-name
))
1031 (set-text-properties pt
(point) props
))
1035 (if dired-after-readin-hook
;; the subdir-alist is not affected...
1036 (save-excursion ;; ...so we can run it right now:
1039 (narrow-to-region (point) (save-excursion
1040 (forward-line 1) (point)))
1041 (run-hooks 'dired-after-readin-hook
))))
1042 (dired-move-to-filename))
1043 ;; return nil if all went well
1045 (if reason
; don't move away on failure
1047 (not reason
))) ; return t on success, nil else
1049 (defun dired-after-subdir-garbage (dir)
1050 ;; Return pos of first file line of DIR, skipping header and total
1051 ;; or wildcard lines.
1052 ;; Important: never moves into the next subdir.
1053 ;; DIR is assumed to be unhidden.
1054 ;; Will probably be redefined for VMS etc.
1056 (or (dired-goto-subdir dir
) (error "This cannot happen"))
1058 (while (and (not (eolp)) ; don't cross subdir boundary
1059 (not (dired-move-to-filename)))
1064 (defun dired-remove-file (file)
1065 (dired-fun-in-all-buffers
1066 (file-name-directory file
) (file-name-nondirectory file
)
1067 (function dired-remove-entry
) file
))
1069 (defun dired-remove-entry (file)
1071 (and (dired-goto-file file
)
1072 (let (buffer-read-only)
1073 (delete-region (progn (beginning-of-line) (point))
1074 (save-excursion (forward-line 1) (point)))))))
1077 (defun dired-relist-file (file)
1078 "Create or update the line for FILE in all Dired buffers it would belong in."
1079 (dired-fun-in-all-buffers (file-name-directory file
)
1080 (file-name-nondirectory file
)
1081 (function dired-relist-entry
) file
))
1083 (defun dired-relist-entry (file)
1084 ;; Relist the line for FILE, or just add it if it did not exist.
1085 ;; FILE must be an absolute file name.
1086 (let (buffer-read-only marker
)
1087 ;; If cursor is already on FILE's line delete-region will cause
1088 ;; save-excursion to fail because of floating makers,
1089 ;; moving point to beginning of line. Sigh.
1091 (and (dired-goto-file file
)
1092 (delete-region (progn (beginning-of-line)
1093 (setq marker
(following-char))
1095 (save-excursion (forward-line 1) (point))))
1096 (setq file
(directory-file-name file
))
1097 (dired-add-entry file
(if (eq ?
\040 marker
) nil marker
)))))
1099 ;;; Copy, move/rename, making hard and symbolic links
1101 (defcustom dired-backup-overwrite nil
1102 "*Non-nil if Dired should ask about making backups before overwriting files.
1103 Special value `always' suppresses confirmation."
1104 :type
'(choice (const :tag
"off" nil
)
1105 (const :tag
"suppress" always
)
1106 (other :tag
"ask" t
))
1109 (defvar dired-overwrite-confirmed
)
1111 (defun dired-handle-overwrite (to)
1112 ;; Save old version of file TO that is to be overwritten.
1113 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars
1114 ;; from dired-create-files.
1116 (if (and dired-backup-overwrite
1117 dired-overwrite-confirmed
1118 (setq backup
(car (find-backup-file-name to
)))
1119 (or (eq 'always dired-backup-overwrite
)
1120 (dired-query 'overwrite-backup-query
1121 (format "Make backup for existing file `%s'? "
1124 (rename-file to backup
0) ; confirm overwrite of old backup
1125 (dired-relist-entry backup
)))))
1128 (defun dired-copy-file (from to ok-flag
)
1129 (dired-handle-overwrite to
)
1131 (dired-copy-file-recursive from to ok-flag dired-copy-preserve-time t
1132 dired-recursive-copies
)
1133 (file-date-error (message "Can't set date")
1136 (defun dired-copy-file-recursive (from to ok-flag
&optional
1137 preserve-time top recursive
)
1138 (let ((attrs (file-attributes from
)))
1141 (or (eq recursive
'always
)
1142 (yes-or-no-p (format "Recursive copies of %s " from
))))
1143 ;; This is a directory.
1144 (let ((files (directory-files from nil dired-re-no-dot
)))
1145 (if (eq recursive
'top
) (setq recursive
'always
)) ; Don't ask any more.
1146 (if (file-exists-p to
)
1147 (or top
(dired-handle-overwrite to
))
1148 (make-directory to
))
1150 (dired-copy-file-recursive
1151 (expand-file-name (car files
) from
)
1152 (expand-file-name (car files
) to
)
1153 ok-flag preserve-time nil recursive
)
1154 (setq files
(cdr files
))))
1156 (or top
(dired-handle-overwrite to
))
1157 (if (stringp (car attrs
))
1159 (make-symbolic-link (car attrs
) to ok-flag
)
1160 (copy-file from to ok-flag dired-copy-preserve-time
)))))
1163 (defun dired-rename-file (file newname ok-if-already-exists
)
1164 (dired-handle-overwrite newname
)
1165 (rename-file file newname ok-if-already-exists
) ; error is caught in -create-files
1166 ;; Silently rename the visited file of any buffer visiting this file.
1167 (and (get-file-buffer file
)
1168 (with-current-buffer (get-file-buffer file
)
1169 (set-visited-file-name newname nil t
)))
1170 (dired-remove-file file
)
1171 ;; See if it's an inserted subdir, and rename that, too.
1172 (dired-rename-subdir file newname
))
1174 (defun dired-rename-subdir (from-dir to-dir
)
1175 (setq from-dir
(file-name-as-directory from-dir
)
1176 to-dir
(file-name-as-directory to-dir
))
1177 (dired-fun-in-all-buffers from-dir nil
1178 (function dired-rename-subdir-1
) from-dir to-dir
)
1179 ;; Update visited file name of all affected buffers
1180 (let ((expanded-from-dir (expand-file-name from-dir
))
1181 (blist (buffer-list)))
1184 (set-buffer (car blist
))
1185 (if (and buffer-file-name
1186 (dired-in-this-tree buffer-file-name expanded-from-dir
))
1187 (let ((modflag (buffer-modified-p))
1188 (to-file (dired-replace-in-string
1189 (concat "^" (regexp-quote from-dir
))
1192 (set-visited-file-name to-file
)
1193 (set-buffer-modified-p modflag
))))
1194 (setq blist
(cdr blist
)))))
1196 (defun dired-rename-subdir-1 (dir to
)
1197 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or
1198 ;; one of its subdirectories is expanded in this buffer.
1199 (let ((expanded-dir (expand-file-name dir
))
1200 (alist dired-subdir-alist
)
1203 (setq elt
(car alist
)
1205 (if (dired-in-this-tree (car elt
) expanded-dir
)
1206 ;; ELT's subdir is affected by the rename
1207 (dired-rename-subdir-2 elt dir to
)))
1208 (if (equal dir default-directory
)
1209 ;; if top level directory was renamed, lots of things have to be
1212 (dired-unadvertise dir
) ; we no longer dired DIR...
1213 (setq default-directory to
1214 dired-directory
(expand-file-name;; this is correct
1215 ;; with and without wildcards
1216 (file-name-nondirectory dired-directory
)
1218 (let ((new-name (file-name-nondirectory
1219 (directory-file-name dired-directory
))))
1220 ;; try to rename buffer, but just leave old name if new
1221 ;; name would already exist (don't try appending "<%d>")
1222 (or (get-buffer new-name
)
1223 (rename-buffer new-name
)))
1224 ;; ... we dired TO now:
1225 (dired-advertise)))))
1227 (defun dired-rename-subdir-2 (elt dir to
)
1228 ;; Update the headerline and dired-subdir-alist element, as well as
1229 ;; dired-switches-alist element, of directory described by
1230 ;; alist-element ELT to reflect the moving of DIR to TO. Thus, ELT
1231 ;; describes either DIR itself or a subdir of DIR.
1233 (let ((regexp (regexp-quote (directory-file-name dir
)))
1234 (newtext (directory-file-name to
))
1236 (goto-char (dired-get-subdir-min elt
))
1237 ;; Update subdir headerline in buffer
1238 (if (not (looking-at dired-subdir-regexp
))
1239 (error "%s not found where expected - dired-subdir-alist broken?"
1241 (goto-char (match-beginning 1))
1242 (if (re-search-forward regexp
(match-end 1) t
)
1243 (replace-match newtext t t
)
1244 (error "Expected to find `%s' in headerline of %s" dir
(car elt
))))
1245 ;; Update buffer-local dired-subdir-alist and dired-switches-alist
1246 (let ((cons (assoc-string (car elt
) dired-switches-alist
))
1247 (cur-dir (dired-normalize-subdir
1248 (dired-replace-in-string regexp newtext
(car elt
)))))
1249 (setcar elt cur-dir
)
1250 (when cons
(setcar cons cur-dir
))))))
1252 ;; The basic function for half a dozen variations on cp/mv/ln/ln -s.
1253 (defun dired-create-files (file-creator operation fn-list name-constructor
1254 &optional marker-char
)
1256 ;; Create a new file for each from a list of existing files. The user
1257 ;; is queried, dired buffers are updated, and at the end a success or
1258 ;; failure message is displayed
1260 ;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists
1262 ;; It is called for each file and must create newfile, the entry of
1263 ;; which will be added. The user will be queried if the file already
1264 ;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a
1265 ;; rename), it is FILE-CREATOR's responsibility to update dired
1266 ;; buffers. FILE-CREATOR must abort by signaling a file-error if it
1267 ;; could not create newfile. The error is caught and logged.
1269 ;; OPERATION (a capitalized string, e.g. `Copy') describes the
1270 ;; operation performed. It is used for error logging.
1272 ;; FN-LIST is the list of files to copy (full absolute file names).
1274 ;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to
1275 ;; skip. If it skips files for other reasons than a direct user
1276 ;; query, it is supposed to tell why (using dired-log).
1278 ;; Optional MARKER-CHAR is a character with which to mark every
1279 ;; newfile's entry, or t to use the current marker character if the
1280 ;; oldfile was marked.
1282 (let (failures skipped
(success-count 0) (total (length fn-list
)))
1283 (let (to overwrite-query
1284 overwrite-backup-query
) ; for dired-handle-overwrite
1288 (setq to
(funcall name-constructor from
))
1292 (dired-log "Cannot %s to same file: %s\n"
1293 (downcase operation
) from
)))
1295 (setq skipped
(cons (dired-make-relative from
) skipped
))
1296 (let* ((overwrite (file-exists-p to
))
1297 (dired-overwrite-confirmed ; for dired-handle-overwrite
1299 (let ((help-form '(format "\
1300 Type SPC or `y' to overwrite file `%s',
1301 DEL or `n' to skip to next,
1302 ESC or `q' to not overwrite any of the remaining files,
1303 `!' to overwrite all remaining files with no more questions." to
)))
1304 (dired-query 'overwrite-query
1305 "Overwrite `%s'?" to
))))
1306 ;; must determine if FROM is marked before file-creator
1307 ;; gets a chance to delete it (in case of a move).
1309 (cond ((integerp marker-char
) marker-char
)
1310 (marker-char (dired-file-marker from
)) ; slow
1314 (funcall file-creator from to dired-overwrite-confirmed
)
1316 ;; If we get here, file-creator hasn't been aborted
1317 ;; and the old entry (if any) has to be deleted
1318 ;; before adding the new entry.
1319 (dired-remove-file to
))
1320 (setq success-count
(1+ success-count
))
1321 (message "%s: %d of %d" operation success-count total
)
1322 (dired-add-file to actual-marker-char
))
1323 (file-error ; FILE-CREATOR aborted
1325 (setq failures
(cons (dired-make-relative from
) failures
))
1326 (dired-log "%s `%s' to `%s' failed:\n%s\n"
1327 operation from to err
))))))))
1332 (format "%s failed for %d of %d file%s"
1333 operation
(length failures
) total
1334 (dired-plural-s total
))
1338 (format "%s: %d of %d file%s skipped"
1339 operation
(length skipped
) total
1340 (dired-plural-s total
))
1343 (message "%s: %s file%s"
1344 operation success-count
(dired-plural-s success-count
)))))
1345 (dired-move-to-filename))
1347 (defun dired-do-create-files (op-symbol file-creator operation arg
1348 &optional marker-char op1
1350 "Create a new file for each marked file.
1351 Prompts user for target, which is a directory in which to create
1352 the new files. Target may be a plain file if only one marked
1353 file exists. The way the default for the target directory is
1354 computed depends on the value of `dired-dwim-target-directory'.
1355 OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up'
1356 will determine whether pop-ups are appropriate for this OP-SYMBOL.
1357 FILE-CREATOR and OPERATION as in `dired-create-files'.
1358 ARG as in `dired-get-marked-files'.
1359 Optional arg MARKER-CHAR as in `dired-create-files'.
1360 Optional arg OP1 is an alternate form for OPERATION if there is
1362 Optional arg HOW-TO is used to set the value of the into-dir variable
1363 which determines how to treat target.
1364 If into-dir is set to nil then target is not regarded as a directory,
1365 there must be exactly one marked file, else error.
1366 Else if into-dir is set to a list, then target is a generalized
1367 directory (e.g. some sort of archive). The first element of into-dir
1368 must be a function with at least four arguments:
1369 operation as OPERATION above.
1370 rfn-list a list of the relative names for the marked files.
1371 fn-list a list of the absolute names for the marked files.
1373 The rest of into-dir are optional arguments.
1374 Else into-dir is not a list. Target is a directory.
1375 The marked file(s) are created inside the target directory.
1377 If HOW-TO is not given (or nil), then into-dir is set to true if
1378 target is a directory and otherwise to nil.
1379 Else if HOW-TO is t, then into-dir is set to nil.
1380 Else HOW-TO is assumed to be a function of one argument, target,
1381 that looks at target and returns a value for the into-dir
1382 variable. The function `dired-into-dir-with-symlinks' is provided
1383 for the case (common when creating symlinks) that symbolic
1384 links to directories are not to be considered as directories
1385 (as `file-directory-p' would if HOW-TO had been nil)."
1386 (or op1
(setq op1 operation
))
1387 (let* ((fn-list (dired-get-marked-files nil arg
))
1388 (rfn-list (mapcar (function dired-make-relative
) fn-list
))
1389 (dired-one-file ; fluid variable inside dired-create-files
1390 (and (consp fn-list
) (null (cdr fn-list
)) (car fn-list
)))
1391 (target-dir (dired-dwim-target-directory))
1392 (default (and dired-one-file
1393 (expand-file-name (file-name-nondirectory (car fn-list
))
1395 (target (expand-file-name ; fluid variable inside dired-create-files
1396 (dired-mark-read-file-name
1397 (concat (if dired-one-file op1 operation
) " %s to: ")
1398 target-dir op-symbol arg rfn-list default
)))
1399 (into-dir (cond ((null how-to
)
1400 ;; Allow DOS/Windows users to change the letter
1401 ;; case of a directory. If we don't test these
1402 ;; conditions up front, file-directory-p below
1403 ;; will return t because the filesystem is
1404 ;; case-insensitive, and Emacs will try to move
1405 ;; foo -> foo/foo, which fails.
1406 (if (and (memq system-type
'(ms-dos windows-nt cygwin
))
1407 (eq op-symbol
'move
)
1410 (expand-file-name (car fn-list
)))
1412 (expand-file-name target
)))
1414 (file-name-nondirectory (car fn-list
))
1415 (file-name-nondirectory target
))))
1417 (file-directory-p target
)))
1419 (t (funcall how-to target
)))))
1420 (if (and (consp into-dir
) (functionp (car into-dir
)))
1421 (apply (car into-dir
) operation rfn-list fn-list target
(cdr into-dir
))
1422 (if (not (or dired-one-file into-dir
))
1423 (error "Marked %s: target must be a directory: %s" operation target
))
1424 ;; rename-file bombs when moving directories unless we do this:
1425 (or into-dir
(setq target
(directory-file-name target
)))
1427 file-creator operation fn-list
1428 (if into-dir
; target is a directory
1429 ;; This function uses fluid variable target when called
1430 ;; inside dired-create-files:
1433 (expand-file-name (file-name-nondirectory from
) target
)))
1434 (function (lambda (from) target
)))
1437 ;; Read arguments for a marked-files command that wants a file name,
1438 ;; perhaps popping up the list of marked files.
1439 ;; ARG is the prefix arg and indicates whether the files came from
1440 ;; marks (ARG=nil) or a repeat factor (integerp ARG).
1441 ;; If the current file was used, the list has but one element and ARG
1442 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
1443 ;; DEFAULT is the default value to return if the user just hits RET;
1444 ;; if it is omitted or nil, then the name of the directory is used.
1446 (defun dired-mark-read-file-name (prompt dir op-symbol arg files
1450 (function read-file-name
)
1451 (format prompt
(dired-mark-prompt arg files
)) dir default
))
1453 (defun dired-dwim-target-directory ()
1454 ;; Try to guess which target directory the user may want.
1455 ;; If there is a dired buffer displayed in the next window, use
1456 ;; its current subdir, else use current subdir of this dired buffer.
1457 (let ((this-dir (and (eq major-mode
'dired-mode
)
1458 (dired-current-directory))))
1459 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode
1460 (if dired-dwim-target
1461 (let* ((other-buf (window-buffer (next-window)))
1462 (other-dir (save-excursion
1463 (set-buffer other-buf
)
1464 (and (eq major-mode
'dired-mode
)
1465 (dired-current-directory)))))
1466 (or other-dir this-dir
))
1470 (defun dired-create-directory (directory)
1471 "Create a directory called DIRECTORY."
1473 (list (read-file-name "Create directory: " (dired-current-directory))))
1474 (let ((expanded (directory-file-name (expand-file-name directory
))))
1475 (make-directory expanded
)
1476 (dired-add-file expanded
)
1477 (dired-move-to-filename)))
1479 (defun dired-into-dir-with-symlinks (target)
1480 (and (file-directory-p target
)
1481 (not (file-symlink-p target
))))
1482 ;; This may not always be what you want, especially if target is your
1483 ;; home directory and it happens to be a symbolic link, as is often the
1484 ;; case with NFS and automounters. Or if you want to make symlinks
1485 ;; into directories that themselves are only symlinks, also quite
1488 ;; So we don't use this function as value for HOW-TO in
1489 ;; dired-do-symlink, which has the minor disadvantage of
1490 ;; making links *into* a symlinked-dir, when you really wanted to
1491 ;; *overwrite* that symlink. In that (rare, I guess) case, you'll
1492 ;; just have to remove that symlink by hand before making your marked
1495 (defvar dired-copy-how-to-fn nil
1496 "nil or a function used by `dired-do-copy' to determine target.
1497 See HOW-TO argument for `dired-do-create-files'.")
1500 (defun dired-do-copy (&optional arg
)
1501 "Copy all marked (or next ARG) files, or copy the current file.
1502 This normally preserves the last-modified date when copying.
1503 When operating on just the current file, you specify the new name.
1504 When operating on multiple or marked files, you specify a directory,
1505 and new copies of these files are made in that directory
1506 with the same names that the files currently have. The default
1507 suggested for the target directory depends on the value of
1508 `dired-dwim-target', which see."
1510 (let ((dired-recursive-copies dired-recursive-copies
))
1511 (dired-do-create-files 'copy
(function dired-copy-file
)
1512 (if dired-copy-preserve-time
"Copy [-p]" "Copy")
1513 arg dired-keep-marker-copy
1514 nil dired-copy-how-to-fn
)))
1517 (defun dired-do-symlink (&optional arg
)
1518 "Make symbolic links to current file or all marked (or next ARG) files.
1519 When operating on just the current file, you specify the new name.
1520 When operating on multiple or marked files, you specify a directory
1521 and new symbolic links are made in that directory
1522 with the same names that the files currently have. The default
1523 suggested for the target directory depends on the value of
1524 `dired-dwim-target', which see."
1526 (dired-do-create-files 'symlink
(function make-symbolic-link
)
1527 "Symlink" arg dired-keep-marker-symlink
))
1530 (defun dired-do-hardlink (&optional arg
)
1531 "Add names (hard links) current file or all marked (or next ARG) files.
1532 When operating on just the current file, you specify the new name.
1533 When operating on multiple or marked files, you specify a directory
1534 and new hard links are made in that directory
1535 with the same names that the files currently have. The default
1536 suggested for the target directory depends on the value of
1537 `dired-dwim-target', which see."
1539 (dired-do-create-files 'hardlink
(function dired-hardlink
)
1540 "Hardlink" arg dired-keep-marker-hardlink
))
1542 (defun dired-hardlink (file newname
&optional ok-if-already-exists
)
1543 (dired-handle-overwrite newname
)
1544 ;; error is caught in -create-files
1545 (add-name-to-file file newname ok-if-already-exists
)
1546 ;; Update the link count
1547 (dired-relist-file file
))
1550 (defun dired-do-rename (&optional arg
)
1551 "Rename current file or all marked (or next ARG) files.
1552 When renaming just the current file, you specify the new name.
1553 When renaming multiple or marked files, you specify a directory.
1554 This command also renames any buffers that are visiting the files.
1555 The default suggested for the target directory depends on the value
1556 of `dired-dwim-target', which see."
1558 (dired-do-create-files 'move
(function dired-rename-file
)
1559 "Move" arg dired-keep-marker-rename
"Rename"))
1560 ;;;###end dired-cp.el
1563 ;;;###begin dired-re.el
1564 (defun dired-do-create-files-regexp
1565 (file-creator operation arg regexp newname
&optional whole-name marker-char
)
1566 ;; Create a new file for each marked file using regexps.
1567 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1568 ;; ARG as in dired-get-marked-files.
1569 ;; Matches each marked file against REGEXP and constructs the new
1570 ;; filename from NEWNAME (like in function replace-match).
1571 ;; Optional arg WHOLE-NAME means match/replace the whole file name
1572 ;; instead of only the non-directory part of the file.
1573 ;; Optional arg MARKER-CHAR as in dired-create-files.
1574 (let* ((fn-list (dired-get-marked-files nil arg
))
1575 (fn-count (length fn-list
))
1576 (operation-prompt (concat operation
" `%s' to `%s'?"))
1577 (rename-regexp-help-form (format "\
1578 Type SPC or `y' to %s one match, DEL or `n' to skip to next,
1579 `!' to %s all remaining matches with no more questions."
1580 (downcase operation
)
1581 (downcase operation
)))
1582 (regexp-name-constructor
1583 ;; Function to construct new filename using REGEXP and NEWNAME:
1584 (if whole-name
; easy (but rare) case
1587 (let ((to (dired-string-replace-match regexp from newname
))
1588 ;; must bind help-form directly around call to
1590 (help-form rename-regexp-help-form
))
1592 (and (dired-query 'rename-regexp-query
1597 (dired-log "%s: %s did not match regexp %s\n"
1598 operation from regexp
)))))
1599 ;; not whole-name, replace non-directory part only
1602 (let* ((new (dired-string-replace-match
1603 regexp
(file-name-nondirectory from
) newname
))
1604 (to (and new
; nil means there was no match
1605 (expand-file-name new
1606 (file-name-directory from
))))
1607 (help-form rename-regexp-help-form
))
1609 (and (dired-query 'rename-regexp-query
1611 (dired-make-relative from
)
1612 (dired-make-relative to
))
1614 (dired-log "%s: %s did not match regexp %s\n"
1615 operation
(file-name-nondirectory from
) regexp
)))))))
1616 rename-regexp-query
)
1618 file-creator operation fn-list regexp-name-constructor marker-char
)))
1620 (defun dired-mark-read-regexp (operation)
1621 ;; Prompt user about performing OPERATION.
1622 ;; Read and return list of: regexp newname arg whole-name.
1624 (equal 0 (prefix-numeric-value current-prefix-arg
)))
1626 (if whole-name nil current-prefix-arg
))
1629 (concat (if whole-name
"Abs. " "") operation
" from (regexp): ")))
1632 (concat (if whole-name
"Abs. " "") operation
" " regexp
" to: "))))
1633 (list regexp newname arg whole-name
)))
1636 (defun dired-do-rename-regexp (regexp newname
&optional arg whole-name
)
1637 "Rename selected files whose names match REGEXP to NEWNAME.
1639 With non-zero prefix argument ARG, the command operates on the next ARG
1640 files. Otherwise, it operates on all the marked files, or the current
1641 file if none are marked.
1643 As each match is found, the user must type a character saying
1644 what to do with it. For directions, type \\[help-command] at that time.
1645 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
1646 REGEXP defaults to the last regexp used.
1648 With a zero prefix arg, renaming by regexp affects the absolute file name.
1649 Normally, only the non-directory part of the file name is used and changed."
1650 (interactive (dired-mark-read-regexp "Rename"))
1651 (dired-do-create-files-regexp
1652 (function dired-rename-file
)
1653 "Rename" arg regexp newname whole-name dired-keep-marker-rename
))
1656 (defun dired-do-copy-regexp (regexp newname
&optional arg whole-name
)
1657 "Copy selected files whose names match REGEXP to NEWNAME.
1658 See function `dired-do-rename-regexp' for more info."
1659 (interactive (dired-mark-read-regexp "Copy"))
1660 (let ((dired-recursive-copies nil
)) ; No recursive copies.
1661 (dired-do-create-files-regexp
1662 (function dired-copy-file
)
1663 (if dired-copy-preserve-time
"Copy [-p]" "Copy")
1664 arg regexp newname whole-name dired-keep-marker-copy
)))
1667 (defun dired-do-hardlink-regexp (regexp newname
&optional arg whole-name
)
1668 "Hardlink selected files whose names match REGEXP to NEWNAME.
1669 See function `dired-do-rename-regexp' for more info."
1670 (interactive (dired-mark-read-regexp "HardLink"))
1671 (dired-do-create-files-regexp
1672 (function add-name-to-file
)
1673 "HardLink" arg regexp newname whole-name dired-keep-marker-hardlink
))
1676 (defun dired-do-symlink-regexp (regexp newname
&optional arg whole-name
)
1677 "Symlink selected files whose names match REGEXP to NEWNAME.
1678 See function `dired-do-rename-regexp' for more info."
1679 (interactive (dired-mark-read-regexp "SymLink"))
1680 (dired-do-create-files-regexp
1681 (function make-symbolic-link
)
1682 "SymLink" arg regexp newname whole-name dired-keep-marker-symlink
))
1684 (defun dired-create-files-non-directory
1685 (file-creator basename-constructor operation arg
)
1686 ;; Perform FILE-CREATOR on the non-directory part of marked files
1687 ;; using function BASENAME-CONSTRUCTOR, with query for each file.
1688 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files.
1689 (let (rename-non-directory-query)
1693 (dired-get-marked-files nil arg
)
1696 (let ((to (concat (file-name-directory from
)
1697 (funcall basename-constructor
1698 (file-name-nondirectory from
)))))
1699 (and (let ((help-form (format "\
1700 Type SPC or `y' to %s one file, DEL or `n' to skip to next,
1701 `!' to %s all remaining matches with no more questions."
1702 (downcase operation
)
1703 (downcase operation
))))
1704 (dired-query 'rename-non-directory-query
1705 (concat operation
" `%s' to `%s'")
1706 (dired-make-relative from
)
1707 (dired-make-relative to
)))
1709 dired-keep-marker-rename
)))
1711 (defun dired-rename-non-directory (basename-constructor operation arg
)
1712 (dired-create-files-non-directory
1713 (function dired-rename-file
)
1714 basename-constructor operation arg
))
1717 (defun dired-upcase (&optional arg
)
1718 "Rename all marked (or next ARG) files to upper case."
1720 (dired-rename-non-directory (function upcase
) "Rename upcase" arg
))
1723 (defun dired-downcase (&optional arg
)
1724 "Rename all marked (or next ARG) files to lower case."
1726 (dired-rename-non-directory (function downcase
) "Rename downcase" arg
))
1728 ;;;###end dired-re.el
1731 ;;;###begin dired-ins.el
1734 (defun dired-maybe-insert-subdir (dirname &optional
1735 switches no-error-if-not-dir-p
)
1736 "Insert this subdirectory into the same dired buffer.
1737 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
1738 else inserts it at its natural place (as `ls -lR' would have done).
1739 With a prefix arg, you may edit the ls switches used for this listing.
1740 You can add `R' to the switches to expand the whole tree starting at
1742 This function takes some pains to conform to `ls -lR' output.
1744 Dired remembers switches specified with a prefix arg, so that reverting
1745 the buffer will not reset them. However, using `dired-undo' to re-insert
1746 or delete subdirectories can bypass this machinery. Hence, you sometimes
1747 may have to reset some subdirectory switches after a `dired-undo'.
1748 You can reset all subdirectory switches to the default using
1749 \\<dired-mode-map>\\[dired-reset-subdir-switches].
1750 See Info node `(emacs-xtra)Subdir switches' for more details."
1752 (list (dired-get-filename)
1753 (if current-prefix-arg
1754 (read-string "Switches for listing: "
1755 (or dired-subdir-switches dired-actual-switches
)))))
1756 (let ((opoint (point)))
1757 ;; We don't need a marker for opoint as the subdir is always
1758 ;; inserted *after* opoint.
1759 (setq dirname
(file-name-as-directory dirname
))
1760 (or (and (not switches
)
1761 (dired-goto-subdir dirname
))
1762 (dired-insert-subdir dirname switches no-error-if-not-dir-p
))
1763 ;; Push mark so that it's easy to find back. Do this after the
1764 ;; insert message so that the user sees the `Mark set' message.
1765 (push-mark opoint
)))
1768 (defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p
)
1769 "Insert this subdirectory into the same dired buffer.
1770 If it is already present, overwrites previous entry,
1771 else inserts it at its natural place (as `ls -lR' would have done).
1772 With a prefix arg, you may edit the `ls' switches used for this listing.
1773 You can add `R' to the switches to expand the whole tree starting at
1775 This function takes some pains to conform to `ls -lR' output."
1776 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like
1777 ;; Prospero where dired-ls does the right thing, but
1778 ;; file-directory-p has not been redefined.
1780 (list (dired-get-filename)
1781 (if current-prefix-arg
1782 (read-string "Switches for listing: "
1783 (or dired-subdir-switches dired-actual-switches
)))))
1784 (setq dirname
(file-name-as-directory (expand-file-name dirname
)))
1785 (or no-error-if-not-dir-p
1786 (file-directory-p dirname
)
1787 (error "Attempt to insert a non-directory: %s" dirname
))
1788 (let ((elt (assoc dirname dired-subdir-alist
))
1789 (cons (assoc-string dirname dired-switches-alist
))
1790 (modflag (buffer-modified-p))
1791 (old-switches switches
)
1792 switches-have-R mark-alist case-fold-search buffer-read-only
)
1793 (and (not switches
) cons
(setq switches
(cdr cons
)))
1794 (dired-insert-subdir-validate dirname switches
)
1795 ;; case-fold-search is nil now, so we can test for capital `R':
1796 (if (setq switches-have-R
(and switches
(string-match "R" switches
)))
1797 ;; avoid duplicated subdirs
1798 (setq mark-alist
(dired-kill-tree dirname t
)))
1800 ;; If subdir is already present, remove it and remember its marks
1801 (setq mark-alist
(nconc (dired-insert-subdir-del elt
) mark-alist
))
1802 (dired-insert-subdir-newpos dirname
)) ; else compute new position
1803 (dired-insert-subdir-doupdate
1804 dirname elt
(dired-insert-subdir-doinsert dirname switches
))
1807 (setcdr cons switches
)
1808 (push (cons dirname switches
) dired-switches-alist
)))
1809 (when switches-have-R
1810 (dired-build-subdir-alist switches
)
1811 (setq switches
(dired-replace-in-string "R" "" switches
))
1812 (dolist (cur-ass dired-subdir-alist
)
1813 (let ((cur-dir (car cur-ass
)))
1814 (and (dired-in-this-tree cur-dir dirname
)
1815 (let ((cur-cons (assoc-string cur-dir dired-switches-alist
)))
1817 (setcdr cur-cons switches
)
1818 (push (cons cur-dir switches
) dired-switches-alist
)))))))
1819 (dired-initial-position dirname
)
1820 (save-excursion (dired-mark-remembered mark-alist
))
1821 (restore-buffer-modified-p modflag
)))
1823 ;; This is a separate function for dired-vms.
1824 (defun dired-insert-subdir-validate (dirname &optional switches
)
1825 ;; Check that it is valid to insert DIRNAME with SWITCHES.
1826 ;; Signal an error if invalid (e.g. user typed `i' on `..').
1827 (or (dired-in-this-tree dirname
(expand-file-name default-directory
))
1828 (error "%s: not in this directory tree" dirname
))
1829 (let ((real-switches (or switches dired-subdir-switches
)))
1831 (let (case-fold-search)
1835 (or (eq (null (string-match x real-switches
))
1836 (null (string-match x dired-actual-switches
)))
1838 "Can't have dirs with and without -%s switches together" x
))))
1839 ;; all switches that make a difference to dired-get-filename:
1842 (defun dired-alist-add (dir new-marker
)
1843 ;; Add new DIR at NEW-MARKER. Sort alist.
1844 (dired-alist-add-1 dir new-marker
)
1847 (defun dired-alist-sort ()
1848 ;; Keep the alist sorted on buffer position.
1849 (setq dired-subdir-alist
1850 (sort dired-subdir-alist
1851 (function (lambda (elt1 elt2
)
1852 (> (dired-get-subdir-min elt1
)
1853 (dired-get-subdir-min elt2
)))))))
1855 (defun dired-kill-tree (dirname &optional remember-marks kill-root
)
1856 "Kill all proper subdirs of DIRNAME, excluding DIRNAME itself.
1857 Interactively, you can kill DIRNAME as well by using a prefix argument.
1858 In interactive use, the command prompts for DIRNAME.
1860 When called from Lisp, if REMEMBER-MARKS is non-nil, return an alist
1861 of marked files. If KILL-ROOT is non-nil, kill DIRNAME as well."
1862 (interactive "DKill tree below directory: \ni\nP")
1863 (setq dirname
(file-name-as-directory (expand-file-name dirname
)))
1864 (let ((s-alist dired-subdir-alist
) dir m-alist
)
1866 (setq dir
(car (car s-alist
))
1867 s-alist
(cdr s-alist
))
1868 (and (or kill-root
(not (string-equal dir dirname
)))
1869 (dired-in-this-tree dir dirname
)
1870 (dired-goto-subdir dir
)
1871 (setq m-alist
(nconc (dired-kill-subdir remember-marks
) m-alist
))))
1874 (defun dired-insert-subdir-newpos (new-dir)
1875 ;; Find pos for new subdir, according to tree order.
1876 ;;(goto-char (point-max))
1877 (let ((alist dired-subdir-alist
) elt dir pos new-pos
)
1879 (setq elt
(car alist
)
1882 pos
(dired-get-subdir-min elt
))
1883 (if (dired-tree-lessp dir new-dir
)
1884 ;; Insert NEW-DIR after DIR
1885 (setq new-pos
(dired-get-subdir-max elt
)
1887 (goto-char new-pos
))
1888 ;; want a separating newline between subdirs
1894 (defun dired-insert-subdir-del (element)
1895 ;; Erase an already present subdir (given by ELEMENT) from buffer.
1896 ;; Move to that buffer position. Return a mark-alist.
1897 (let ((begin-marker (dired-get-subdir-min element
)))
1898 (goto-char begin-marker
)
1899 ;; Are at beginning of subdir (and inside it!). Now determine its end:
1900 (goto-char (dired-subdir-max))
1901 (or (eobp);; want a separating newline _between_ subdirs:
1904 (dired-remember-marks begin-marker
(point))
1905 (delete-region begin-marker
(point)))))
1907 (defun dired-insert-subdir-doinsert (dirname switches
)
1908 ;; Insert ls output after point.
1909 ;; Return the boundary of the inserted text (as list of BEG and END).
1911 (let ((begin (point)))
1912 (let ((dired-actual-switches
1914 dired-subdir-switches
1915 (dired-replace-in-string "R" "" dired-actual-switches
))))
1916 (if (equal dirname
(car (car (last dired-subdir-alist
))))
1917 ;; If doing the top level directory of the buffer,
1918 ;; redo it as specified in dired-directory.
1919 (dired-readin-insert)
1920 (dired-insert-directory dirname dired-actual-switches nil nil t
)))
1921 (list begin
(point)))))
1923 (defun dired-insert-subdir-doupdate (dirname elt beg-end
)
1924 ;; Point is at the correct subdir alist position for ELT,
1925 ;; BEG-END is the subdir-region (as list of begin and end).
1926 (if elt
; subdir was already present
1927 ;; update its position (should actually be unchanged)
1928 (set-marker (dired-get-subdir-min elt
) (point-marker))
1929 (dired-alist-add dirname
(point-marker)))
1930 ;; The hook may depend on the subdir-alist containing the just
1931 ;; inserted subdir, so run it after dired-alist-add:
1932 (if dired-after-readin-hook
1934 (let ((begin (nth 0 beg-end
))
1935 (end (nth 1 beg-end
)))
1938 (narrow-to-region begin end
)
1939 ;; hook may add or delete lines, but the subdir boundary
1941 (run-hooks 'dired-after-readin-hook
))))))
1943 (defun dired-tree-lessp (dir1 dir2
)
1944 ;; Lexicographic order on file name components, like `ls -lR':
1945 ;; DIR1 < DIR2 iff DIR1 comes *before* DIR2 in an `ls -lR' listing,
1946 ;; i.e., iff DIR1 is a (grand)parent dir of DIR2,
1947 ;; or DIR1 and DIR2 are in the same parentdir and their last
1948 ;; components are string-lessp.
1949 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp.
1950 ;; string-lessp could arguably be replaced by file-newer-than-file-p
1951 ;; if dired-actual-switches contained `t'.
1952 (setq dir1
(file-name-as-directory dir1
)
1953 dir2
(file-name-as-directory dir2
))
1954 (let ((components-1 (dired-split "/" dir1
))
1955 (components-2 (dired-split "/" dir2
)))
1956 (while (and components-1
1958 (equal (car components-1
) (car components-2
)))
1959 (setq components-1
(cdr components-1
)
1960 components-2
(cdr components-2
)))
1961 (let ((c1 (car components-1
))
1962 (c2 (car components-2
)))
1965 (string-lessp c1 c2
))
1966 ((and (null c1
) (null c2
))
1967 nil
) ; they are equal, not lessp
1968 ((null c1
) ; c2 is a subdir of c1: c1<c2
1970 ((null c2
) ; c1 is a subdir of c2: c1>c2
1972 (t (error "This can't happen"))))))
1974 ;; There should be a builtin split function - inverse to mapconcat.
1975 (defun dired-split (pat str
&optional limit
)
1976 "Splitting on regexp PAT, turn string STR into a list of substrings.
1977 Optional third arg LIMIT (>= 1) is a limit to the length of the
1979 Thus, if SEP is a regexp that only matches itself,
1981 (mapconcat 'identity (dired-split SEP STRING) SEP)
1983 is always equal to STRING."
1984 (let* ((start (string-match pat str
))
1985 (result (list (substring str
0 start
)))
1987 (end (if start
(match-end 0))))
1988 (if end
; else nothing left
1989 (while (and (or (not (integerp limit
))
1991 (string-match pat str end
))
1992 (setq start
(match-beginning 0)
1994 result
(cons (substring str end start
) result
)
1998 (if (and (or (not (integerp limit
))
2000 end
) ; else nothing left
2002 (cons (substring str end
) result
)))
2005 ;;; moving by subdirectories
2008 (defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip
)
2009 "Go to previous subdirectory, regardless of level.
2010 When called interactively and not on a subdir line, go to this subdir's line."
2013 (list (if current-prefix-arg
2014 (prefix-numeric-value current-prefix-arg
)
2015 ;; if on subdir start already, don't stay there!
2016 (if (dired-get-subdir) 1 0))))
2017 (dired-next-subdir (- arg
) no-error-if-not-found no-skip
))
2019 (defun dired-subdir-min ()
2021 (if (not (dired-prev-subdir 0 t t
))
2022 (error "Not in a subdir!")
2026 (defun dired-goto-subdir (dir)
2027 "Go to end of header line of DIR in this dired buffer.
2028 Return value of point on success, otherwise return nil.
2029 The next char is either \\n, or \\r if DIR is hidden."
2031 (prog1 ; let push-mark display its message
2032 (list (expand-file-name
2033 (completing-read "Goto in situ directory: " ; prompt
2034 dired-subdir-alist
; table
2037 (dired-current-directory))))
2039 (setq dir
(file-name-as-directory dir
))
2040 (let ((elt (assoc dir dired-subdir-alist
)))
2042 (goto-char (dired-get-subdir-min elt
))
2043 ;; dired-subdir-hidden-p and dired-add-entry depend on point being
2044 ;; at either \r or \n after this function succeeds.
2045 (progn (skip-chars-forward "^\r\n")
2049 (defun dired-mark-subdir-files ()
2050 "Mark all files except `.' and `..' in current subdirectory.
2051 If the Dired buffer shows multiple directories, this command
2052 marks the files listed in the subdirectory that point is in."
2054 (let ((p-min (dired-subdir-min)))
2055 (dired-mark-files-in-region p-min
(dired-subdir-max))))
2058 (defun dired-kill-subdir (&optional remember-marks
)
2059 "Remove all lines of current subdirectory.
2060 Lower levels are unaffected."
2061 ;; With optional REMEMBER-MARKS, return a mark-alist.
2063 (let* ((beg (dired-subdir-min))
2064 (end (dired-subdir-max))
2065 (modflag (buffer-modified-p))
2066 (cur-dir (dired-current-directory))
2067 (cons (assoc-string cur-dir dired-switches-alist
))
2069 (if (equal cur-dir default-directory
)
2070 (error "Attempt to kill top level directory"))
2072 (if remember-marks
(dired-remember-marks beg end
))
2073 (delete-region beg end
)
2074 (if (eobp) ; don't leave final blank line
2076 (dired-unsubdir cur-dir
)
2078 (setq dired-switches-alist
(delete cons dired-switches-alist
)))
2079 (restore-buffer-modified-p modflag
))))
2081 (defun dired-unsubdir (dir)
2082 ;; Remove DIR from the alist
2083 (setq dired-subdir-alist
2084 (delq (assoc dir dired-subdir-alist
) dired-subdir-alist
)))
2087 (defun dired-tree-up (arg)
2088 "Go up ARG levels in the dired tree."
2090 (let ((dir (dired-current-directory)))
2093 dir
(file-name-directory (directory-file-name dir
))))
2094 ;;(setq dir (expand-file-name dir))
2095 (or (dired-goto-subdir dir
)
2096 (error "Cannot go up to %s - not in this tree" dir
))))
2099 (defun dired-tree-down ()
2100 "Go down in the dired tree."
2102 (let ((dir (dired-current-directory)) ; has slash
2103 pos case-fold-search
) ; filenames are case sensitive
2104 (let ((rest (reverse dired-subdir-alist
)) elt
)
2106 (setq elt
(car rest
)
2108 (if (dired-in-this-tree (directory-file-name (car elt
)) dir
)
2110 pos
(dired-goto-subdir (car elt
))))))
2113 (error "At the bottom"))))
2117 (defun dired-unhide-subdir ()
2118 (let (buffer-read-only)
2119 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?
\r ?
\n)))
2121 (defun dired-hide-check ()
2122 (or selective-display
2123 (error "selective-display must be t for subdir hiding to work!")))
2125 (defun dired-subdir-hidden-p (dir)
2126 (and selective-display
2128 (dired-goto-subdir dir
)
2129 (looking-at "\r"))))
2132 (defun dired-hide-subdir (arg)
2133 "Hide or unhide the current subdirectory and move to next directory.
2134 Optional prefix arg is a repeat factor.
2135 Use \\[dired-hide-all] to (un)hide all directories."
2138 (let ((modflag (buffer-modified-p)))
2139 (while (>= (setq arg
(1- arg
)) 0)
2140 (let* ((cur-dir (dired-current-directory))
2141 (hidden-p (dired-subdir-hidden-p cur-dir
))
2142 (elt (assoc cur-dir dired-subdir-alist
))
2143 (end-pos (1- (dired-get-subdir-max elt
)))
2145 ;; keep header line visible, hide rest
2146 (goto-char (dired-get-subdir-min elt
))
2147 (skip-chars-forward "^\n\r")
2149 (subst-char-in-region (point) end-pos ?
\r ?
\n)
2150 (subst-char-in-region (point) end-pos ?
\n ?
\r)))
2151 (dired-next-subdir 1 t
))
2152 (restore-buffer-modified-p modflag
)))
2155 (defun dired-hide-all (arg)
2156 "Hide all subdirectories, leaving only their header lines.
2157 If there is already something hidden, make everything visible again.
2158 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
2161 (let ((modflag (buffer-modified-p))
2164 (goto-char (point-min))
2165 (search-forward "\r" nil t
))
2166 ;; unhide - bombs on \r in filenames
2167 (subst-char-in-region (point-min) (point-max) ?
\r ?
\n)
2169 (let ((pos (point-max)) ; pos of end of last directory
2170 (alist dired-subdir-alist
))
2171 (while alist
; while there are dirs before pos
2172 (subst-char-in-region (dired-get-subdir-min (car alist
)) ; pos of prev dir
2174 (goto-char pos
) ; current dir
2175 ;; we're somewhere on current dir's line
2179 (setq pos
(dired-get-subdir-min (car alist
))) ; prev dir gets current dir
2180 (setq alist
(cdr alist
)))))
2181 (restore-buffer-modified-p modflag
)))
2183 ;;;###end dired-ins.el
2186 ;; Functions for searching in tags style among marked files.
2189 (defun dired-do-search (regexp)
2190 "Search through all marked files for a match for REGEXP.
2191 Stops when a match is found.
2192 To continue searching for next match, use command \\[tags-loop-continue]."
2193 (interactive "sSearch marked files (regexp): ")
2194 (tags-search regexp
'(dired-get-marked-files nil nil
'dired-nondirectory-p
)))
2197 (defun dired-do-query-replace-regexp (from to
&optional delimited
)
2198 "Do `query-replace-regexp' of FROM with TO, on all marked files.
2199 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
2200 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
2201 with the command \\[tags-loop-continue]."
2203 "sQuery replace in marked files (regexp): \nsQuery replace %s by: \nP")
2204 (dolist (file (dired-get-marked-files nil nil
'dired-nondirectory-p
))
2205 (let ((buffer (get-file-buffer file
)))
2206 (if (and buffer
(with-current-buffer buffer
2208 (error "File `%s' is visited read-only" file
))))
2209 (tags-query-replace from to delimited
2210 '(dired-get-marked-files nil nil
'dired-nondirectory-p
)))
2212 (defun dired-nondirectory-p (file)
2213 (not (file-directory-p file
)))
2216 (defun dired-show-file-type (file &optional deref-symlinks
)
2217 "Print the type of FILE, according to the `file' command.
2218 If FILE is a symbolic link and the optional argument DEREF-SYMLINKS is
2219 true then the type of the file linked to by FILE is printed instead."
2220 (interactive (list (dired-get-filename t
) current-prefix-arg
))
2223 (call-process "file" nil t t
"-L" "--" file
)
2224 (call-process "file" nil t t
"--" file
))
2226 (backward-delete-char 1))
2227 (message "%s" (buffer-string))))
2229 (provide 'dired-aux
)
2231 ;;; arch-tag: 4b508de9-a153-423d-8d3f-a1bbd86f4f60
2232 ;;; dired-aux.el ends here