Mercurial > emacs
annotate lisp/dired-aux.el @ 911:e18a3f6689a9
entered into RCS
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Mon, 03 Aug 1992 16:41:27 +0000 |
parents | 4fba6d4b6a28 |
children | d09aafad0e95 |
rev | line source |
---|---|
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
1 ;; dired-aux.el --- all of dired except what people usually use |
724 | 2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
5 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>. |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
6 |
724 | 7 ;; This file is part of GNU Emacs. |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
724 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
23 ;;; Commentary: |
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
24 |
724 | 25 ;; Rewritten in 1990/1991 to add tree features, file marking and |
26 ;; sorting by Sebastian Kremer <sk@thp.uni-koeln.de>. | |
27 ;; Finished up by rms in 1992. | |
28 | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
29 ;;; Code: |
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
30 |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
31 ;; We need macros in dired.el to compile properly. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
32 (eval-when-compile (require 'dired)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
33 |
724 | 34 ;;; 15K |
35 ;;;###begin dired-cmd.el | |
36 ;; Diffing and compressing | |
37 | |
38 ;;;###autoload | |
39 (defun dired-diff (file &optional switches) | |
40 "Compare file at point with file FILE using `diff'. | |
41 FILE defaults to the file at the mark. | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
42 The prompted-for file is the first file given to `diff'." |
724 | 43 (interactive |
44 (let ((default (if (mark) | |
45 (save-excursion (goto-char (mark)) | |
46 (dired-get-filename t t))))) | |
47 (list (read-file-name (format "Diff %s with: %s" | |
48 (dired-get-filename t) | |
49 (if default | |
50 (concat "(default " default ") ") | |
51 "")) | |
52 (dired-current-directory) default t) | |
53 (if (fboundp 'diff-read-switches) | |
54 (diff-read-switches "Options for diff: "))))) | |
55 (if switches ; Emacs 19's diff has but two | |
56 (diff file (dired-get-filename t) switches) ; args (yet ;-) | |
57 (diff file (dired-get-filename t)))) | |
58 | |
59 ;;;###autoload | |
60 (defun dired-backup-diff (&optional switches) | |
61 "Diff this file with its backup file or vice versa. | |
62 Uses the latest backup, if there are several numerical backups. | |
63 If this file is a backup, diff it with its original. | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
64 The backup file is the first file given to `diff'." |
724 | 65 (interactive (list (if (fboundp 'diff-read-switches) |
66 (diff-read-switches "Diff with switches: ")))) | |
878
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
67 (if switches |
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
68 (diff-backup (dired-get-filename) switches) |
5b1c5b4286e7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
69 (diff-backup (dired-get-filename)))) |
724 | 70 |
71 (defun dired-do-chxxx (attribute-name program op-symbol arg) | |
72 ;; Change file attributes (mode, group, owner) of marked files and | |
73 ;; refresh their file lines. | |
74 ;; ATTRIBUTE-NAME is a string describing the attribute to the user. | |
75 ;; PROGRAM is the program used to change the attribute. | |
76 ;; OP-SYMBOL is the type of operation (for use in dired-mark-pop-up). | |
77 ;; ARG describes which files to use, as in dired-get-marked-files. | |
78 (let* ((files (dired-get-marked-files t arg)) | |
79 (new-attribute | |
80 (dired-mark-read-string | |
81 (concat "Change " attribute-name " of %s to: ") | |
82 nil op-symbol arg files)) | |
83 (operation (concat program " " new-attribute)) | |
84 failures) | |
85 (setq failures | |
86 (dired-bunch-files 10000 | |
87 (function dired-check-process) | |
88 (list operation program new-attribute) | |
89 files)) | |
90 (dired-do-redisplay arg);; moves point if ARG is an integer | |
91 (if failures | |
92 (dired-log-summary | |
93 (format "%s: error" operation) | |
94 nil)))) | |
95 | |
96 ;;;###autoload | |
97 (defun dired-do-chmod (&optional arg) | |
98 "Change the mode of the marked (or next ARG) files. | |
99 This calls chmod, thus symbolic modes like `g+w' are allowed." | |
100 (interactive "P") | |
101 (dired-do-chxxx "Mode" "chmod" 'chmod arg)) | |
102 | |
103 ;;;###autoload | |
104 (defun dired-do-chgrp (&optional arg) | |
105 "Change the group of the marked (or next ARG) files." | |
106 (interactive "P") | |
107 (dired-do-chxxx "Group" "chgrp" 'chgrp arg)) | |
108 | |
109 ;;;###autoload | |
110 (defun dired-do-chown (&optional arg) | |
111 "Change the owner of the marked (or next ARG) files." | |
112 (interactive "P") | |
113 (dired-do-chxxx "Owner" dired-chown-program 'chown arg)) | |
114 | |
115 ;; Process all the files in FILES in batches of a convenient size, | |
116 ;; by means of (FUNCALL FUNCTION ARGS... SOME-FILES...). | |
117 ;; Batches are chosen to need less than MAX chars for the file names, | |
118 ;; allowing 3 extra characters of separator per file name. | |
119 (defun dired-bunch-files (max function args files) | |
120 (let (pending | |
121 (pending-length 0) | |
122 failures) | |
123 ;; Accumulate files as long as they fit in MAX chars, | |
124 ;; then process the ones accumulated so far. | |
125 (while files | |
126 (let* ((thisfile (car files)) | |
127 (thislength (+ (length thisfile) 3)) | |
128 (rest (cdr files))) | |
129 ;; If we have at least 1 pending file | |
130 ;; and this file won't fit in the length limit, process now. | |
131 (if (and pending (> (+ thislength pending-length) max)) | |
132 (setq failures | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
133 (nconc (apply function (append args pending)) |
724 | 134 failures) |
135 pending nil | |
136 pending-length 0)) | |
137 ;; Do (setq pending (cons thisfile pending)) | |
138 ;; but reuse the cons that was in `files'. | |
139 (setcdr files pending) | |
140 (setq pending files) | |
141 (setq pending-length (+ thislength pending-length)) | |
142 (setq files rest))) | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
143 (nconc (apply function (append args pending)) |
724 | 144 failures))) |
145 | |
146 ;;;###autoload | |
147 (defun dired-do-print (&optional arg) | |
148 "Print the marked (or next ARG) files. | |
149 Uses the shell command coming from variables `lpr-command' and | |
150 `lpr-switches' as default." | |
151 (interactive "P") | |
152 (let* ((file-list (dired-get-marked-files t arg)) | |
153 (command (dired-mark-read-string | |
154 "Print %s with: " | |
155 (apply 'concat lpr-command " " lpr-switches) | |
156 'print arg file-list))) | |
157 (dired-run-shell-command (dired-shell-stuff-it command file-list nil)))) | |
158 | |
159 ;; Read arguments for a marked-files command that wants a string | |
160 ;; that is not a file name, | |
161 ;; perhaps popping up the list of marked files. | |
162 ;; ARG is the prefix arg and indicates whether the files came from | |
163 ;; marks (ARG=nil) or a repeat factor (integerp ARG). | |
164 ;; If the current file was used, the list has but one element and ARG | |
165 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)). | |
166 | |
167 (defun dired-mark-read-string (prompt initial op-symbol arg files) | |
168 ;; PROMPT for a string, with INITIAL input. | |
169 ;; Other args are used to give user feedback and pop-up: | |
170 ;; OP-SYMBOL of command, prefix ARG, marked FILES. | |
171 (dired-mark-pop-up | |
172 nil op-symbol files | |
173 (function read-string) | |
174 (format prompt (dired-mark-prompt arg files)) initial)) | |
175 | |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
176 ;;; Cleaning a directory: flagging some backups for deletion. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
177 |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
178 (defvar dired-file-version-alist) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
179 |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
180 (defun dired-clean-directory (keep) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
181 "Flag numerical backups for deletion. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
182 Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
183 Positive prefix arg KEEP overrides `dired-kept-versions'; |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
184 Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
185 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
186 To clear the flags on these files, you can use \\[dired-flag-backup-files] |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
187 with a prefix argument." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
188 (interactive "P") |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
189 (setq keep (if keep (prefix-numeric-value keep) dired-kept-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
190 (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
191 (late-retention (if (<= keep 0) dired-kept-versions keep)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
192 (dired-file-version-alist ())) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
193 (message "Cleaning numerical backups (keeping %d late, %d old)..." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
194 late-retention early-retention) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
195 ;; Look at each file. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
196 ;; If the file has numeric backup versions, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
197 ;; put on dired-file-version-alist an element of the form |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
198 ;; (FILENAME . VERSION-NUMBER-LIST) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
199 (dired-map-dired-file-lines (function dired-collect-file-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
200 ;; Sort each VERSION-NUMBER-LIST, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
201 ;; and remove the versions not to be deleted. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
202 (let ((fval dired-file-version-alist)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
203 (while fval |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
204 (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
205 (v-count (length sorted-v-list))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
206 (if (> v-count (+ early-retention late-retention)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
207 (rplacd (nthcdr early-retention sorted-v-list) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
208 (nthcdr (- v-count late-retention) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
209 sorted-v-list))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
210 (rplacd (car fval) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
211 (cdr sorted-v-list))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
212 (setq fval (cdr fval)))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
213 ;; Look at each file. If it is a numeric backup file, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
214 ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
215 (dired-map-dired-file-lines (function dired-trample-file-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
216 (message "Cleaning numerical backups...done"))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
217 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
218 ;;; Subroutines of dired-clean-directory. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
219 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
220 (defun dired-map-dired-file-lines (fun) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
221 ;; Perform FUN with point at the end of each non-directory line. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
222 ;; FUN takes one argument, the filename (complete pathname). |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
223 (save-excursion |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
224 (let (file buffer-read-only) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
225 (goto-char (point-min)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
226 (while (not (eobp)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
227 (save-excursion |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
228 (and (not (looking-at dired-re-dir)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
229 (not (eolp)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
230 (setq file (dired-get-filename nil t)) ; nil on non-file |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
231 (progn (end-of-line) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
232 (funcall fun file)))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
233 (forward-line 1))))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
234 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
235 (defun dired-collect-file-versions (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
236 ;; "If it looks like file FN has versions, return a list of the versions. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
237 ;;That is a list of strings which are file names. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
238 ;;The caller may want to flag some of these files for deletion." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
239 (let* ((base-versions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
240 (concat (file-name-nondirectory fn) ".~")) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
241 (bv-length (length base-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
242 (possibilities (file-name-all-completions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
243 base-versions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
244 (file-name-directory fn))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
245 (versions (mapcar 'backup-extract-version possibilities))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
246 (if versions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
247 (setq dired-file-version-alist (cons (cons fn versions) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
248 dired-file-version-alist))))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
249 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
250 (defun dired-trample-file-versions (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
251 (let* ((start-vn (string-match "\\.~[0-9]+~$" fn)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
252 base-version-list) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
253 (and start-vn |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
254 (setq base-version-list ; there was a base version to which |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
255 (assoc (substring fn 0 start-vn) ; this looks like a |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
256 dired-file-version-alist)) ; subversion |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
257 (not (memq (string-to-int (substring fn (+ 2 start-vn))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
258 base-version-list)) ; this one doesn't make the cut |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
259 (progn (beginning-of-line) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
260 (delete-char 1) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
261 (insert dired-del-marker))))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
262 |
724 | 263 ;;; Shell commands |
264 ;;>>> install (move this function into simple.el) | |
265 (defun dired-shell-quote (filename) | |
266 "Quote a file name for inferior shell (see variable `shell-file-name')." | |
267 ;; Quote everything except POSIX filename characters. | |
268 ;; This should be safe enough even for really wierd shells. | |
269 (let ((result "") (start 0) end) | |
270 (while (string-match "[^---0-9a-zA-Z_./]" filename start) | |
271 (setq end (match-beginning 0) | |
272 result (concat result (substring filename start end) | |
273 "\\" (substring filename end (1+ end))) | |
274 start (1+ end))) | |
275 (concat result (substring filename start)))) | |
276 | |
277 (defun dired-read-shell-command (prompt arg files) | |
278 ;; "Read a dired shell command prompting with PROMPT (using read-string). | |
279 ;;ARG is the prefix arg and may be used to indicate in the prompt which | |
280 ;; files are affected. | |
281 ;;This is an extra function so that you can redefine it, e.g., to use gmhist." | |
282 (dired-mark-pop-up | |
283 nil 'shell files | |
284 (function read-string) | |
285 (format prompt (dired-mark-prompt arg files)))) | |
286 | |
287 ;; The in-background argument is only needed in Emacs 18 where | |
288 ;; shell-command doesn't understand an appended ampersand `&'. | |
289 ;;;###autoload | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
290 (defun dired-do-shell-command (command &optional arg) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
291 "Run a shell command COMMAND on the marked files. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
292 If no files are marked or a specific numeric prefix arg is given, |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
293 the next ARG files are used. Just \\[universal-argument] means the current file. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
294 The prompt mentions the file(s) or the marker, as appropriate. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
295 |
724 | 296 If there is output, it goes to a separate buffer. |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
297 |
724 | 298 Normally the command is run on each file individually. |
299 However, if there is a `*' in the command then it is run | |
300 just once with the entire file list substituted there. | |
301 | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
302 No automatic redisplay of dired buffers is attempted, as there's no |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
303 telling what files the command may have changed. Type |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
304 \\[dired-do-redisplay] to redisplay the marked files. |
724 | 305 |
306 The shell command has the top level directory as working directory, so | |
307 output files usually are created there instead of in a subdir." | |
308 ;;Functions dired-run-shell-command and dired-shell-stuff-it do the | |
309 ;;actual work and can be redefined for customization. | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
310 (interactive (list |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
311 ;; Want to give feedback whether this file or marked files are used: |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
312 (dired-read-shell-command (concat "! on " |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
313 "%s: ") |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
314 current-prefix-arg |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
315 (dired-get-marked-files |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
316 t current-prefix-arg)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
317 current-prefix-arg)) |
724 | 318 (let* ((on-each (not (string-match "\\*" command))) |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
319 (file-list (dired-get-marked-files t arg))) |
724 | 320 (if on-each |
321 (dired-bunch-files | |
322 (- 10000 (length command)) | |
323 (function (lambda (&rest files) | |
324 (dired-run-shell-command | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
325 (dired-shell-stuff-it command files t arg)))) |
724 | 326 nil |
327 file-list) | |
328 ;; execute the shell command | |
329 (dired-run-shell-command | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
330 (dired-shell-stuff-it command file-list nil arg))))) |
724 | 331 |
332 ;; Might use {,} for bash or csh: | |
333 (defvar dired-mark-prefix "" | |
334 "Prepended to marked files in dired shell commands.") | |
335 (defvar dired-mark-postfix "" | |
336 "Appended to marked files in dired shell commands.") | |
337 (defvar dired-mark-separator " " | |
338 "Separates marked files in dired shell commands.") | |
339 | |
340 (defun dired-shell-stuff-it (command file-list on-each &optional raw-arg) | |
341 ;; "Make up a shell command line from COMMAND and FILE-LIST. | |
342 ;; If ON-EACH is t, COMMAND should be applied to each file, else | |
343 ;; simply concat all files and apply COMMAND to this. | |
344 ;; FILE-LIST's elements will be quoted for the shell." | |
345 ;; Might be redefined for smarter things and could then use RAW-ARG | |
346 ;; (coming from interactive P and currently ignored) to decide what to do. | |
347 ;; Smart would be a way to access basename or extension of file names. | |
348 ;; See dired-trns.el for an approach to this. | |
349 ;; Bug: There is no way to quote a * | |
350 ;; On the other hand, you can never accidentally get a * into your cmd. | |
351 (let ((stuff-it | |
352 (if (string-match "\\*" command) | |
353 (function (lambda (x) | |
354 (dired-replace-in-string "\\*" x command))) | |
355 (function (lambda (x) (concat command " " x)))))) | |
356 (if on-each | |
357 (mapconcat stuff-it (mapcar 'dired-shell-quote file-list) ";") | |
358 (let ((fns (mapconcat 'dired-shell-quote | |
359 file-list dired-mark-separator))) | |
360 (if (> (length file-list) 1) | |
361 (setq fns (concat dired-mark-prefix fns dired-mark-postfix))) | |
362 (funcall stuff-it fns))))) | |
363 | |
364 ;; This is an extra function so that it can be redefined by ange-ftp. | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
365 (defun dired-run-shell-command (command) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
366 (shell-command command) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
367 ;; Return nil for sake of nconc in dired-bunch-files. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
368 nil) |
724 | 369 |
370 ;; In Emacs 19 this will return program's exit status. | |
371 ;; This is a separate function so that ange-ftp can redefine it. | |
372 (defun dired-call-process (program discard &rest arguments) | |
373 ; "Run PROGRAM with output to current buffer unless DISCARD is t. | |
374 ;Remaining arguments are strings passed as command arguments to PROGRAM." | |
375 (apply 'call-process program nil (not discard) nil arguments)) | |
376 | |
377 (defun dired-check-process (msg program &rest arguments) | |
378 ; "Display MSG while running PROGRAM, and check for output. | |
379 ;Remaining arguments are strings passed as command arguments to PROGRAM. | |
380 ; On error, insert output | |
381 ; in a log buffer and return the offending ARGUMENTS or PROGRAM. | |
382 ; Caller can cons up a list of failed args. | |
383 ;Else returns nil for success." | |
384 (let (err-buffer err (dir default-directory)) | |
385 (message "%s..." msg) | |
386 (save-excursion | |
387 ;; Get a clean buffer for error output: | |
388 (setq err-buffer (get-buffer-create " *dired-check-process output*")) | |
389 (set-buffer err-buffer) | |
390 (erase-buffer) | |
391 (setq default-directory dir ; caller's default-directory | |
392 err (/= 0 | |
393 (apply (function dired-call-process) program nil arguments))) | |
394 (if err | |
395 (progn | |
396 (dired-log (concat program " " (prin1-to-string arguments) "\n")) | |
397 (dired-log err-buffer) | |
398 (or arguments program t)) | |
399 (kill-buffer err-buffer) | |
400 (message "%s...done" msg) | |
401 nil)))) | |
402 | |
403 ;; Commands that delete or redisplay part of the dired buffer. | |
404 | |
405 (defun dired-kill-line (&optional arg) | |
406 (interactive "P") | |
407 (setq arg (prefix-numeric-value arg)) | |
408 (let (buffer-read-only file) | |
409 (while (/= 0 arg) | |
410 (setq file (dired-get-filename nil t)) | |
411 (if (not file) | |
412 (error "Can only kill file lines.") | |
413 (save-excursion (and file | |
414 (dired-goto-subdir file) | |
415 (dired-kill-subdir))) | |
416 (delete-region (progn (beginning-of-line) (point)) | |
417 (progn (forward-line 1) (point))) | |
418 (if (> arg 0) | |
419 (setq arg (1- arg)) | |
420 (setq arg (1+ arg)) | |
421 (forward-line -1)))) | |
422 (dired-move-to-filename))) | |
423 | |
424 ;;;###autoload | |
425 (defun dired-do-kill-lines (&optional arg fmt) | |
426 "Kill all marked lines (not the files). | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
427 With a prefix argument, kill that many lines starting with the current line. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
428 \(A negative argument kills lines before the current line.) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
429 To kill an entire subdirectory, go to its directory header line |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
430 and use this command with a prefix argument (the value does not matter)." |
724 | 431 ;; Returns count of killed lines. FMT="" suppresses message. |
432 (interactive "P") | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
433 (if arg |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
434 (if (dired-get-subdir) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
435 (dired-kill-subdir) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
436 (dired-kill-line arg)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
437 (save-excursion |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
438 (goto-char (point-min)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
439 (let (buffer-read-only (count 0)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
440 (if (not arg) ; kill marked lines |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
441 (let ((regexp (dired-marker-regexp))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
442 (while (and (not (eobp)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
443 (re-search-forward regexp nil t)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
444 (setq count (1+ count)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
445 (delete-region (progn (beginning-of-line) (point)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
446 (progn (forward-line 1) (point))))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
447 ;; else kill unmarked lines |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
448 (while (not (eobp)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
449 (if (or (dired-between-files) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
450 (not (looking-at "^ "))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
451 (forward-line 1) |
724 | 452 (setq count (1+ count)) |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
453 (delete-region (point) (save-excursion |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
454 (forward-line 1) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
455 (point)))))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
456 (or (equal "" fmt) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
457 (message (or fmt "Killed %d line%s.") count (dired-plural-s count))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
458 count)))) |
724 | 459 |
460 ;;;###end dired-cmd.el | |
461 | |
462 ;;; 30K | |
463 ;;;###begin dired-cp.el | |
464 | |
465 (defun dired-compress () | |
466 ;; Compress or uncompress the current file. | |
467 ;; Return nil for success, offending filename else. | |
468 (let* (buffer-read-only | |
469 (from-file (dired-get-filename))) | |
470 (cond ((save-excursion (beginning-of-line) | |
471 (looking-at dired-re-sym)) | |
472 (dired-log (concat "Attempt to compress a symbolic link:\n" | |
473 from-file)) | |
474 (dired-make-relative from-file)) | |
475 ((string-match "\\.Z$" from-file) | |
476 (if (dired-check-process (concat "Uncompressing " from-file) | |
477 "uncompress" from-file) | |
478 (dired-make-relative from-file) | |
479 (dired-update-file-line (substring from-file 0 -2)))) | |
480 (t | |
481 (if (dired-check-process (concat "Compressing " from-file) | |
482 "compress" "-f" from-file) | |
483 ;; Errors from the process are already logged. | |
484 (dired-make-relative from-file) | |
485 (dired-update-file-line (concat from-file ".Z"))))) | |
486 nil)) | |
487 | |
488 (defun dired-mark-confirm (op-symbol arg) | |
489 ;; Request confirmation from the user that the operation described | |
490 ;; by OP-SYMBOL is to be performed on the marked files. | |
491 ;; Confirmation consists in a y-or-n question with a file list | |
492 ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'. | |
493 ;; The files used are determined by ARG (as in dired-get-marked-files). | |
494 (or (memq op-symbol dired-no-confirm) | |
495 (let ((files (dired-get-marked-files t arg))) | |
496 (dired-mark-pop-up nil op-symbol files (function y-or-n-p) | |
497 (concat (capitalize (symbol-name op-symbol)) " " | |
498 (dired-mark-prompt arg files) "? "))))) | |
499 | |
500 (defun dired-map-over-marks-check (fun arg op-symbol &optional show-progress) | |
501 ; "Map FUN over marked files (with second ARG like in dired-map-over-marks) | |
502 ; and display failures. | |
503 | |
504 ; FUN takes zero args. It returns non-nil (the offending object, e.g. | |
505 ; the short form of the filename) for a failure and probably logs a | |
506 ; detailed error explanation using function `dired-log'. | |
507 | |
508 ; OP-SYMBOL is a symbol describing the operation performed (e.g. | |
509 ; `compress'). It is used with `dired-mark-pop-up' to prompt the user | |
510 ; (e.g. with `Compress * [2 files]? ') and to display errors (e.g. | |
511 ; `Failed to compress 1 of 2 files - type W to see why ("foo")') | |
512 | |
513 ; SHOW-PROGRESS if non-nil means redisplay dired after each file." | |
514 (if (dired-mark-confirm op-symbol arg) | |
515 (let* ((total-list;; all of FUN's return values | |
516 (dired-map-over-marks (funcall fun) arg show-progress)) | |
517 (total (length total-list)) | |
518 (failures (delq nil total-list)) | |
519 (count (length failures))) | |
520 (if (not failures) | |
521 (message "%s: %d file%s." | |
522 (capitalize (symbol-name op-symbol)) | |
523 total (dired-plural-s total)) | |
524 ;; end this bunch of errors: | |
525 (dired-log-summary | |
526 (format "Failed to %s %d of %d file%s" | |
527 (symbol-name op-symbol) count total (dired-plural-s total)) | |
528 failures))))) | |
529 | |
530 (defvar dired-query-alist | |
531 '((?\y . y) (?\040 . y) ; `y' or SPC means accept once | |
532 (?n . n) (?\177 . n) ; `n' or DEL skips once | |
533 (?! . yes) ; `!' accepts rest | |
534 (?q. no) (?\e . no) ; `q' or ESC skips rest | |
535 ;; None of these keys quit - use C-g for that. | |
536 )) | |
537 | |
538 (defun dired-query (qs-var qs-prompt &rest qs-args) | |
539 ;; Query user and return nil or t. | |
540 ;; Store answer in symbol VAR (which must initially be bound to nil). | |
541 ;; Format PROMPT with ARGS. | |
542 ;; Binding variable help-form will help the user who types C-h. | |
543 (let* ((char (symbol-value qs-var)) | |
544 (action (cdr (assoc char dired-query-alist)))) | |
545 (cond ((eq 'yes action) | |
546 t) ; accept, and don't ask again | |
547 ((eq 'no action) | |
548 nil) ; skip, and don't ask again | |
549 (t;; no lasting effects from last time we asked - ask now | |
550 (let ((qprompt (concat qs-prompt | |
551 (if help-form | |
552 (format " [Type yn!q or %s] " | |
553 (key-description | |
554 (char-to-string help-char))) | |
555 " [Type y, n, q or !] "))) | |
556 result elt) | |
557 ;; Actually it looks nicer without cursor-in-echo-area - you can | |
558 ;; look at the dired buffer instead of at the prompt to decide. | |
559 (apply 'message qprompt qs-args) | |
560 (setq char (set qs-var (read-char))) | |
561 (while (not (setq elt (assoc char dired-query-alist))) | |
562 (message "Invalid char - type %c for help." help-char) | |
563 (ding) | |
564 (sit-for 1) | |
565 (apply 'message qprompt qs-args) | |
566 (setq char (set qs-var (read-char)))) | |
567 (memq (cdr elt) '(t y yes))))))) | |
568 | |
569 ;;;###autoload | |
570 (defun dired-do-compress (&optional arg) | |
571 "Compress or uncompress marked (or next ARG) files." | |
572 (interactive "P") | |
573 (dired-map-over-marks-check (function dired-compress) arg 'compress t)) | |
574 | |
575 ;; Commands for Emacs Lisp files - load and byte compile | |
576 | |
577 (defun dired-byte-compile () | |
578 ;; Return nil for success, offending file name else. | |
579 (let* ((filename (dired-get-filename)) | |
580 (elc-file | |
581 (if (eq system-type 'vax-vms) | |
582 (concat (substring filename 0 (string-match ";" filename)) "c") | |
583 (concat filename "c"))) | |
584 buffer-read-only failure) | |
585 (condition-case err | |
586 (save-excursion (byte-compile-file filename)) | |
587 (error | |
588 (setq failure err))) | |
589 (if failure | |
590 (progn | |
591 (dired-log "Byte compile error for %s:\n%s\n" filename failure) | |
592 (dired-make-relative filename)) | |
593 (dired-remove-file elc-file) | |
594 (forward-line) ; insert .elc after its .el file | |
595 (dired-add-file elc-file) | |
596 nil))) | |
597 | |
598 ;;;###autoload | |
599 (defun dired-do-byte-compile (&optional arg) | |
600 "Byte compile marked (or next ARG) Emacs Lisp files." | |
601 (interactive "P") | |
602 (dired-map-over-marks-check (function dired-byte-compile) arg 'byte-compile t)) | |
603 | |
604 (defun dired-load () | |
605 ;; Return nil for success, offending file name else. | |
606 (let ((file (dired-get-filename)) failure) | |
607 (condition-case err | |
608 (load file nil nil t) | |
609 (error (setq failure err))) | |
610 (if (not failure) | |
611 nil | |
612 (dired-log "Load error for %s:\n%s\n" file failure) | |
613 (dired-make-relative file)))) | |
614 | |
615 ;;;###autoload | |
616 (defun dired-do-load (&optional arg) | |
617 "Load the marked (or next ARG) Emacs Lisp files." | |
618 (interactive "P") | |
619 (dired-map-over-marks-check (function dired-load) arg 'load t)) | |
620 | |
621 ;;;###autoload | |
622 (defun dired-do-redisplay (&optional arg test-for-subdir) | |
623 "Redisplay all marked (or next ARG) files. | |
624 If on a subdir line, redisplay that subdirectory. In that case, | |
625 a prefix arg lets you edit the `ls' switches used for the new listing." | |
626 ;; Moves point if the next ARG files are redisplayed. | |
627 (interactive "P\np") | |
628 (if (and test-for-subdir (dired-get-subdir)) | |
629 (dired-insert-subdir | |
630 (dired-get-subdir) | |
631 (if arg (read-string "Switches for listing: " dired-actual-switches))) | |
632 (message "Redisplaying...") | |
633 ;; message much faster than making dired-map-over-marks show progress | |
634 (dired-map-over-marks (let ((fname (dired-get-filename))) | |
635 (message "Redisplaying... %s" fname) | |
636 (dired-update-file-line fname)) | |
637 arg) | |
638 (dired-move-to-filename) | |
639 (message "Redisplaying...done"))) | |
640 | |
641 (defun dired-update-file-line (file) | |
642 ;; Delete the current line, and insert an entry for FILE. | |
643 ;; If FILE is nil, then just delete the current line. | |
644 ;; Keeps any marks that may be present in column one (doing this | |
645 ;; here is faster than with dired-add-entry's optional arg). | |
646 ;; Does not update other dired buffers. Use dired-relist-entry for that. | |
647 (beginning-of-line) | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
648 (let ((char (following-char)) (opoint (point)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
649 (buffer-read-only)) |
724 | 650 (delete-region (point) (progn (forward-line 1) (point))) |
651 (if file | |
652 (progn | |
653 (dired-add-entry file) | |
654 ;; Replace space by old marker without moving point. | |
655 ;; Faster than goto+insdel inside a save-excursion? | |
656 (subst-char-in-region opoint (1+ opoint) ?\040 char)))) | |
657 (dired-move-to-filename)) | |
658 | |
659 (defun dired-fun-in-all-buffers (directory fun &rest args) | |
660 ;; In all buffers dired'ing DIRECTORY, run FUN with ARGS. | |
661 ;; Return list of buffers where FUN succeeded (i.e., returned non-nil). | |
662 (let ((buf-list (dired-buffers-for-dir directory)) | |
663 (obuf (current-buffer)) | |
664 buf success-list) | |
665 (while buf-list | |
666 (setq buf (car buf-list) | |
667 buf-list (cdr buf-list)) | |
668 (unwind-protect | |
669 (progn | |
670 (set-buffer buf) | |
671 (if (apply fun args) | |
672 (setq success-list (cons (buffer-name buf) success-list)))) | |
673 (set-buffer obuf))) | |
674 success-list)) | |
675 | |
676 (defun dired-add-file (filename &optional marker-char) | |
677 (dired-fun-in-all-buffers | |
678 (file-name-directory filename) | |
679 (function dired-add-entry) filename marker-char)) | |
680 | |
681 (defun dired-add-entry (filename &optional marker-char) | |
682 ;; Add a new entry for FILENAME, optionally marking it | |
683 ;; with MARKER-CHAR (a character, else dired-marker-char is used). | |
684 ;; Note that this adds the entry `out of order' if files sorted by | |
685 ;; time, etc. | |
686 ;; At least this version inserts in the right subdirectory (if present). | |
687 ;; And it skips "." or ".." (see `dired-trivial-filenames'). | |
688 ;; Hidden subdirs are exposed if a file is added there. | |
689 (setq filename (directory-file-name filename)) | |
690 ;; Entry is always for files, even if they happen to also be directories | |
691 (let ((opoint (point)) | |
692 (cur-dir (dired-current-directory)) | |
693 (directory (file-name-directory filename)) | |
694 reason) | |
695 (setq filename (file-name-nondirectory filename) | |
696 reason | |
697 (catch 'not-found | |
698 (if (string= directory cur-dir) | |
699 (progn | |
700 (skip-chars-forward "^\r\n") | |
701 (if (eq (following-char) ?\r) | |
702 (dired-unhide-subdir)) | |
703 ;; We are already where we should be, except when | |
704 ;; point is before the subdir line or its total line. | |
705 (let ((p (dired-after-subdir-garbage cur-dir))) | |
706 (if (< (point) p) | |
707 (goto-char p)))) | |
708 ;; else try to find correct place to insert | |
709 (if (dired-goto-subdir directory) | |
710 (progn;; unhide if necessary | |
711 (if (looking-at "\r");; point is at end of subdir line | |
712 (dired-unhide-subdir)) | |
713 ;; found - skip subdir and `total' line | |
714 ;; and uninteresting files like . and .. | |
715 ;; This better not moves into the next subdir! | |
716 (dired-goto-next-nontrivial-file)) | |
717 ;; not found | |
718 (throw 'not-found "Subdir not found"))) | |
719 ;; found and point is at The Right Place: | |
720 (let (buffer-read-only) | |
721 (beginning-of-line) | |
722 (dired-add-entry-do-indentation marker-char) | |
723 (dired-ls (dired-make-absolute filename directory);; don't expand `.' ! | |
724 (concat dired-actual-switches "d")) | |
725 (forward-line -1) | |
726 ;; We want to have the non-directory part, only: | |
727 (let* ((beg (dired-move-to-filename t)) ; error for strange output | |
728 (end (dired-move-to-end-of-filename))) | |
729 (setq filename (buffer-substring beg end)) | |
730 (delete-region beg end) | |
731 (insert (file-name-nondirectory filename))) | |
732 (if dired-after-readin-hook;; the subdir-alist is not affected... | |
733 (save-excursion;; ...so we can run it right now: | |
734 (save-restriction | |
735 (beginning-of-line) | |
736 (narrow-to-region (point) (save-excursion | |
737 (forward-line 1) (point))) | |
738 (run-hooks 'dired-after-readin-hook)))) | |
739 (dired-move-to-filename)) | |
740 ;; return nil if all went well | |
741 nil)) | |
742 (if reason ; don't move away on failure | |
743 (goto-char opoint)) | |
744 (not reason))) ; return t on succes, nil else | |
745 | |
746 ;; This is a separate function for the sake of nested dired format. | |
747 (defun dired-add-entry-do-indentation (marker-char) | |
748 ;; two spaces or a marker plus a space: | |
749 (insert (if marker-char | |
750 (if (integerp marker-char) marker-char dired-marker-char) | |
751 ?\040) | |
752 ?\040)) | |
753 | |
754 (defun dired-after-subdir-garbage (dir) | |
755 ;; Return pos of first file line of DIR, skipping header and total | |
756 ;; or wildcard lines. | |
757 ;; Important: never moves into the next subdir. | |
758 ;; DIR is assumed to be unhidden. | |
759 ;; Will probably be redefined for VMS etc. | |
760 (save-excursion | |
761 (or (dired-goto-subdir dir) (error "This cannot happen")) | |
762 (forward-line 1) | |
763 (while (and (not (eolp)) ; don't cross subdir boundary | |
764 (not (dired-move-to-filename))) | |
765 (forward-line 1)) | |
766 (point))) | |
767 | |
768 (defun dired-remove-file (file) | |
769 (dired-fun-in-all-buffers | |
770 (file-name-directory file) (function dired-remove-entry) file)) | |
771 | |
772 (defun dired-remove-entry (file) | |
773 (save-excursion | |
774 (and (dired-goto-file file) | |
775 (let (buffer-read-only) | |
776 (delete-region (progn (beginning-of-line) (point)) | |
777 (save-excursion (forward-line 1) (point))))))) | |
778 | |
779 (defun dired-relist-file (file) | |
780 (dired-fun-in-all-buffers (file-name-directory file) | |
781 (function dired-relist-entry) file)) | |
782 | |
783 (defun dired-relist-entry (file) | |
784 ;; Relist the line for FILE, or just add it if it did not exist. | |
785 ;; FILE must be an absolute pathname. | |
786 (let (buffer-read-only marker) | |
787 ;; If cursor is already on FILE's line delete-region will cause | |
788 ;; save-excursion to fail because of floating makers, | |
789 ;; moving point to beginning of line. Sigh. | |
790 (save-excursion | |
791 (and (dired-goto-file file) | |
792 (delete-region (progn (beginning-of-line) | |
793 (setq marker (following-char)) | |
794 (point)) | |
795 (save-excursion (forward-line 1) (point)))) | |
796 (setq file (directory-file-name file)) | |
797 (dired-add-entry file (if (eq ?\040 marker) nil marker))))) | |
798 | |
799 ;;; Copy, move/rename, making hard and symbolic links | |
800 | |
801 (defvar dired-backup-overwrite nil | |
802 "*Non-nil if Dired should ask about making backups before overwriting files. | |
803 Special value `always' suppresses confirmation.") | |
804 | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
805 (defvar dired-overwrite-confirmed) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
806 |
724 | 807 (defun dired-handle-overwrite (to) |
808 ;; Save old version of a to be overwritten file TO. | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
809 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars |
724 | 810 ;; from dired-create-files. |
811 (if (and dired-backup-overwrite | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
812 dired-overwrite-confirmed |
724 | 813 (or (eq 'always dired-backup-overwrite) |
814 (dired-query 'overwrite-backup-query | |
815 (format "Make backup for existing file `%s'? " to)))) | |
816 (let ((backup (car (find-backup-file-name to)))) | |
817 (rename-file to backup 0) ; confirm overwrite of old backup | |
818 (dired-relist-entry backup)))) | |
819 | |
820 (defun dired-copy-file (from to ok-flag) | |
821 (dired-handle-overwrite to) | |
822 (copy-file from to ok-flag dired-copy-preserve-time)) | |
823 | |
824 (defun dired-rename-file (from to ok-flag) | |
825 (dired-handle-overwrite to) | |
826 (rename-file from to ok-flag) ; error is caught in -create-files | |
827 ;; Silently rename the visited file of any buffer visiting this file. | |
828 (and (get-file-buffer from) | |
829 (save-excursion | |
830 (set-buffer (get-file-buffer from)) | |
831 (let ((modflag (buffer-modified-p))) | |
832 (set-visited-file-name to) | |
833 (set-buffer-modified-p modflag)))) | |
834 (dired-remove-file from) | |
835 ;; See if it's an inserted subdir, and rename that, too. | |
836 (dired-rename-subdir from to)) | |
837 | |
838 (defun dired-rename-subdir (from-dir to-dir) | |
839 (setq from-dir (file-name-as-directory from-dir) | |
840 to-dir (file-name-as-directory to-dir)) | |
841 (dired-fun-in-all-buffers from-dir | |
842 (function dired-rename-subdir-1) from-dir to-dir) | |
843 ;; Update visited file name of all affected buffers | |
844 (let ((blist (buffer-list))) | |
845 (while blist | |
846 (save-excursion | |
847 (set-buffer (car blist)) | |
848 (if (and buffer-file-name | |
849 (dired-in-this-tree buffer-file-name from-dir)) | |
850 (let ((modflag (buffer-modified-p)) | |
851 (to-file (dired-replace-in-string | |
852 (concat "^" (regexp-quote from-dir)) | |
853 to-dir | |
854 buffer-file-name))) | |
855 (set-visited-file-name to-file) | |
856 (set-buffer-modified-p modflag)))) | |
857 (setq blist (cdr blist))))) | |
858 | |
859 (defun dired-rename-subdir-1 (dir to) | |
860 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or | |
861 ;; one of its subdirectories is expanded in this buffer. | |
862 (let ((alist dired-subdir-alist) | |
863 (elt nil)) | |
864 (while alist | |
865 (setq elt (car alist) | |
866 alist (cdr alist)) | |
867 (if (dired-in-this-tree (car elt) dir) | |
868 ;; ELT's subdir is affected by the rename | |
869 (dired-rename-subdir-2 elt dir to))) | |
870 (if (equal dir default-directory) | |
871 ;; if top level directory was renamed, lots of things have to be | |
872 ;; updated: | |
873 (progn | |
874 (dired-unadvertise dir) ; we no longer dired DIR... | |
875 (setq default-directory to | |
876 dired-directory (expand-file-name;; this is correct | |
877 ;; with and without wildcards | |
878 (file-name-nondirectory dired-directory) | |
879 to)) | |
880 (let ((new-name (file-name-nondirectory | |
881 (directory-file-name dired-directory)))) | |
882 ;; try to rename buffer, but just leave old name if new | |
883 ;; name would already exist (don't try appending "<%d>") | |
884 (or (get-buffer new-name) | |
885 (rename-buffer new-name))) | |
886 ;; ... we dired TO now: | |
887 (dired-advertise))))) | |
888 | |
889 (defun dired-rename-subdir-2 (elt dir to) | |
890 ;; Update the headerline and dired-subdir-alist element of directory | |
891 ;; described by alist-element ELT to reflect the moving of DIR to TO. | |
892 ;; Thus, ELT describes either DIR itself or a subdir of DIR. | |
893 (save-excursion | |
894 (let ((regexp (regexp-quote (directory-file-name dir))) | |
895 (newtext (directory-file-name to)) | |
896 buffer-read-only) | |
897 (goto-char (dired-get-subdir-min elt)) | |
898 ;; Update subdir headerline in buffer | |
899 (if (not (looking-at dired-subdir-regexp)) | |
900 (error "%s not found where expected - dired-subdir-alist broken?" | |
901 dir) | |
902 (goto-char (match-beginning 1)) | |
903 (if (re-search-forward regexp (match-end 1) t) | |
904 (replace-match newtext t t) | |
905 (error "Expected to find `%s' in headerline of %s" dir (car elt)))) | |
906 ;; Update buffer-local dired-subdir-alist | |
907 (setcar elt | |
908 (dired-normalize-subdir | |
909 (dired-replace-in-string regexp newtext (car elt))))))) | |
910 | |
911 ;; Cloning replace-match to work on strings instead of in buffer: | |
912 ;; The FIXEDCASE parameter of replace-match is not implemented. | |
913 ;;;###autoload | |
914 (defun dired-string-replace-match (regexp string newtext | |
915 &optional literal global) | |
916 "Replace first match of REGEXP in STRING with NEWTEXT. | |
917 If it does not match, nil is returned instead of the new string. | |
918 Optional arg LITERAL means to take NEWTEXT literally. | |
919 Optional arg GLOBAL means to replace all matches." | |
920 (if global | |
921 (let ((result "") (start 0) mb me) | |
922 (while (string-match regexp string start) | |
923 (setq mb (match-beginning 0) | |
924 me (match-end 0) | |
925 result (concat result | |
926 (substring string start mb) | |
927 (if literal | |
928 newtext | |
929 (dired-expand-newtext string newtext))) | |
930 start me)) | |
931 (if mb ; matched at least once | |
932 (concat result (substring string start)) | |
933 nil)) | |
934 ;; not GLOBAL | |
935 (if (not (string-match regexp string 0)) | |
936 nil | |
937 (concat (substring string 0 (match-beginning 0)) | |
938 (if literal newtext (dired-expand-newtext string newtext)) | |
939 (substring string (match-end 0)))))) | |
940 | |
941 (defun dired-expand-newtext (string newtext) | |
942 ;; Expand \& and \1..\9 (referring to STRING) in NEWTEXT, using match data. | |
943 ;; Note that in Emacs 18 match data are clipped to current buffer | |
944 ;; size...so the buffer should better not be smaller than STRING. | |
945 (let ((pos 0) | |
946 (len (length newtext)) | |
947 (expanded-newtext "")) | |
948 (while (< pos len) | |
949 (setq expanded-newtext | |
950 (concat expanded-newtext | |
951 (let ((c (aref newtext pos))) | |
952 (if (= ?\\ c) | |
953 (cond ((= ?\& (setq c | |
954 (aref newtext | |
955 (setq pos (1+ pos))))) | |
956 (substring string | |
957 (match-beginning 0) | |
958 (match-end 0))) | |
959 ((and (>= c ?1) (<= c ?9)) | |
960 ;; return empty string if N'th | |
961 ;; sub-regexp did not match: | |
962 (let ((n (- c ?0))) | |
963 (if (match-beginning n) | |
964 (substring string | |
965 (match-beginning n) | |
966 (match-end n)) | |
967 ""))) | |
968 (t | |
969 (char-to-string c))) | |
970 (char-to-string c))))) | |
971 (setq pos (1+ pos))) | |
972 expanded-newtext)) | |
973 | |
974 ;; The basic function for half a dozen variations on cp/mv/ln/ln -s. | |
975 (defun dired-create-files (file-creator operation fn-list name-constructor | |
976 &optional marker-char) | |
977 | |
978 ;; Create a new file for each from a list of existing files. The user | |
979 ;; is queried, dired buffers are updated, and at the end a success or | |
980 ;; failure message is displayed | |
981 | |
982 ;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists | |
983 | |
984 ;; It is called for each file and must create newfile, the entry of | |
985 ;; which will be added. The user will be queried if the file already | |
986 ;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a | |
987 ;; rename), it is FILE-CREATOR's responsibility to update dired | |
988 ;; buffers. FILE-CREATOR must abort by signalling a file-error if it | |
989 ;; could not create newfile. The error is caught and logged. | |
990 | |
991 ;; OPERATION (a capitalized string, e.g. `Copy') describes the | |
992 ;; operation performed. It is used for error logging. | |
993 | |
994 ;; FN-LIST is the list of files to copy (full absolute pathnames). | |
995 | |
996 ;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to | |
997 ;; skip. If it skips files for other reasons than a direct user | |
998 ;; query, it is supposed to tell why (using dired-log). | |
999 | |
1000 ;; Optional MARKER-CHAR is a character with which to mark every | |
1001 ;; newfile's entry, or t to use the current marker character if the | |
1002 ;; oldfile was marked. | |
1003 | |
1004 (let (failures skipped (success-count 0) (total (length fn-list))) | |
1005 (let (to overwrite-query | |
1006 overwrite-backup-query) ; for dired-handle-overwrite | |
1007 (mapcar | |
1008 (function | |
1009 (lambda (from) | |
1010 (setq to (funcall name-constructor from)) | |
1011 (if (equal to from) | |
1012 (progn | |
1013 (setq to nil) | |
1014 (dired-log "Cannot %s to same file: %s\n" | |
1015 (downcase operation) from))) | |
1016 (if (not to) | |
1017 (setq skipped (cons (dired-make-relative from) skipped)) | |
1018 (let* ((overwrite (file-exists-p to)) | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
1019 (dired-overwrite-confirmed ; for dired-handle-overwrite |
724 | 1020 (and overwrite |
1021 (let ((help-form '(format "\ | |
1022 Type SPC or `y' to overwrite file `%s', | |
1023 DEL or `n' to skip to next, | |
1024 ESC or `q' to not overwrite any of the remaining files, | |
1025 `!' to overwrite all remaining files with no more questions." to))) | |
1026 (dired-query 'overwrite-query | |
1027 "Overwrite `%s'?" to)))) | |
1028 ;; must determine if FROM is marked before file-creator | |
1029 ;; gets a chance to delete it (in case of a move). | |
1030 (actual-marker-char | |
1031 (cond ((integerp marker-char) marker-char) | |
1032 (marker-char (dired-file-marker from)) ; slow | |
1033 (t nil)))) | |
1034 (condition-case err | |
1035 (progn | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
1036 (funcall file-creator from to dired-overwrite-confirmed) |
724 | 1037 (if overwrite |
1038 ;; If we get here, file-creator hasn't been aborted | |
1039 ;; and the old entry (if any) has to be deleted | |
1040 ;; before adding the new entry. | |
1041 (dired-remove-file to)) | |
1042 (setq success-count (1+ success-count)) | |
1043 (message "%s: %d of %d" operation success-count total) | |
1044 (dired-add-file to actual-marker-char)) | |
1045 (file-error ; FILE-CREATOR aborted | |
1046 (progn | |
1047 (setq failures (cons (dired-make-relative from) failures)) | |
1048 (dired-log "%s `%s' to `%s' failed:\n%s\n" | |
1049 operation from to err)))))))) | |
1050 fn-list)) | |
1051 (cond | |
1052 (failures | |
1053 (dired-log-summary | |
1054 (format "%s failed for %d of %d file%s" | |
1055 operation (length failures) total | |
1056 (dired-plural-s total)) | |
1057 failures)) | |
1058 (skipped | |
1059 (dired-log-summary | |
1060 (format "%s: %d of %d file%s skipped" | |
1061 operation (length skipped) total | |
1062 (dired-plural-s total)) | |
1063 skipped)) | |
1064 (t | |
1065 (message "%s: %s file%s" | |
1066 operation success-count (dired-plural-s success-count))))) | |
1067 (dired-move-to-filename)) | |
1068 | |
1069 (defun dired-do-create-files (op-symbol file-creator operation arg | |
1070 &optional marker-char op1 | |
1071 how-to) | |
1072 ;; Create a new file for each marked file. | |
1073 ;; Prompts user for target, which is a directory in which to create | |
1074 ;; the new files. Target may be a plain file if only one marked | |
1075 ;; file exists. | |
1076 ;; OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up' | |
1077 ;; will determine wether pop-ups are appropriate for this OP-SYMBOL. | |
1078 ;; FILE-CREATOR and OPERATION as in dired-create-files. | |
1079 ;; ARG as in dired-get-marked-files. | |
1080 ;; Optional arg OP1 is an alternate form for OPERATION if there is | |
1081 ;; only one file. | |
1082 ;; Optional arg MARKER-CHAR as in dired-create-files. | |
1083 ;; Optional arg HOW-TO determines how to treat target: | |
1084 ;; If HOW-TO is not given (or nil), and target is a directory, the | |
1085 ;; file(s) are created inside the target directory. If target | |
1086 ;; is not a directory, there must be exactly one marked file, | |
1087 ;; else error. | |
1088 ;; If HOW-TO is t, then target is not modified. There must be | |
1089 ;; exactly one marked file, else error. | |
1090 ;; Else HOW-TO is assumed to be a function of one argument, target, | |
1091 ;; that looks at target and returns a value for the into-dir | |
1092 ;; variable. The function dired-into-dir-with-symlinks is provided | |
1093 ;; for the case (common when creating symlinks) that symbolic | |
1094 ;; links to directories are not to be considered as directories | |
1095 ;; (as file-directory-p would if HOW-TO had been nil). | |
1096 (or op1 (setq op1 operation)) | |
1097 (let* ((fn-list (dired-get-marked-files nil arg)) | |
1098 (fn-count (length fn-list)) | |
1099 (target (expand-file-name | |
1100 (dired-mark-read-file-name | |
1101 (concat (if (= 1 fn-count) op1 operation) " %s to: ") | |
1102 (dired-dwim-target-directory) | |
1103 op-symbol arg (mapcar (function dired-make-relative) fn-list)))) | |
1104 (into-dir (cond ((null how-to) (file-directory-p target)) | |
1105 ((eq how-to t) nil) | |
1106 (t (funcall how-to target))))) | |
1107 (if (and (> fn-count 1) | |
1108 (not into-dir)) | |
1109 (error "Marked %s: target must be a directory: %s" operation target)) | |
1110 ;; rename-file bombs when moving directories unless we do this: | |
1111 (or into-dir (setq target (directory-file-name target))) | |
1112 (dired-create-files | |
1113 file-creator operation fn-list | |
1114 (if into-dir ; target is a directory | |
1115 ;; This function uses fluid vars into-dir and target when called | |
1116 ;; inside dired-create-files: | |
1117 (function (lambda (from) | |
1118 (expand-file-name (file-name-nondirectory from) target))) | |
1119 (function (lambda (from) target))) | |
1120 marker-char))) | |
1121 | |
1122 ;; Read arguments for a marked-files command that wants a file name, | |
1123 ;; perhaps popping up the list of marked files. | |
1124 ;; ARG is the prefix arg and indicates whether the files came from | |
1125 ;; marks (ARG=nil) or a repeat factor (integerp ARG). | |
1126 ;; If the current file was used, the list has but one element and ARG | |
1127 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)). | |
1128 | |
1129 (defun dired-mark-read-file-name (prompt dir op-symbol arg files) | |
1130 (dired-mark-pop-up | |
1131 nil op-symbol files | |
1132 (function read-file-name) | |
1133 (format prompt (dired-mark-prompt arg files)) dir)) | |
1134 | |
1135 (defun dired-dwim-target-directory () | |
1136 ;; Try to guess which target directory the user may want. | |
1137 ;; If there is a dired buffer displayed in the next window, use | |
1138 ;; its current subdir, else use current subdir of this dired buffer. | |
1139 (let ((this-dir (and (eq major-mode 'dired-mode) | |
1140 (dired-current-directory)))) | |
1141 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode | |
1142 (if dired-dwim-target | |
1143 (let* ((other-buf (window-buffer (next-window))) | |
1144 (other-dir (save-excursion | |
1145 (set-buffer other-buf) | |
1146 (and (eq major-mode 'dired-mode) | |
1147 (dired-current-directory))))) | |
1148 (or other-dir this-dir)) | |
1149 this-dir))) | |
1150 | |
1151 ;;;###autoload | |
1152 (defun dired-create-directory (directory) | |
1153 "Create a directory called DIRECTORY." | |
1154 (interactive | |
1155 (list (read-file-name "Create directory: " (dired-current-directory)))) | |
1156 (let ((expanded (directory-file-name (expand-file-name directory)))) | |
1157 (make-directory expanded) | |
1158 (dired-add-file expanded) | |
1159 (dired-move-to-filename))) | |
1160 | |
1161 (defun dired-into-dir-with-symlinks (target) | |
1162 (and (file-directory-p target) | |
1163 (not (file-symlink-p target)))) | |
1164 ;; This may not always be what you want, especially if target is your | |
1165 ;; home directory and it happens to be a symbolic link, as is often the | |
1166 ;; case with NFS and automounters. Or if you want to make symlinks | |
1167 ;; into directories that themselves are only symlinks, also quite | |
1168 ;; common. | |
1169 | |
1170 ;; So we don't use this function as value for HOW-TO in | |
1171 ;; dired-do-symlink, which has the minor disadvantage of | |
1172 ;; making links *into* a symlinked-dir, when you really wanted to | |
1173 ;; *overwrite* that symlink. In that (rare, I guess) case, you'll | |
1174 ;; just have to remove that symlink by hand before making your marked | |
1175 ;; symlinks. | |
1176 | |
1177 ;;;###autoload | |
1178 (defun dired-do-copy (&optional arg) | |
1179 "Copy all marked (or next ARG) files, or copy the current file. | |
1180 This normally preserves the last-modified date when copying. | |
1181 When operating on just the current file, you specify the new name. | |
1182 When operating on multiple or marked files, you specify a directory | |
1183 and new symbolic links are made in that directory | |
1184 with the same names that the files currently have." | |
1185 (interactive "P") | |
1186 (dired-do-create-files 'copy (function dired-copy-file) | |
1187 (if dired-copy-preserve-time "Copy [-p]" "Copy") | |
1188 arg dired-keep-marker-copy)) | |
1189 | |
1190 ;;;###autoload | |
1191 (defun dired-do-symlink (&optional arg) | |
1192 "Make symbolic links to current file or all marked (or next ARG) files. | |
1193 When operating on just the current file, you specify the new name. | |
1194 When operating on multiple or marked files, you specify a directory | |
1195 and new symbolic links are made in that directory | |
1196 with the same names that the files currently have." | |
1197 (interactive "P") | |
1198 (dired-do-create-files 'symlink (function make-symbolic-link) | |
1199 "Symlink" arg dired-keep-marker-symlink)) | |
1200 | |
1201 ;;;###autoload | |
1202 (defun dired-do-hardlink (&optional arg) | |
1203 "Add names (hard links) current file or all marked (or next ARG) files. | |
1204 When operating on just the current file, you specify the new name. | |
1205 When operating on multiple or marked files, you specify a directory | |
1206 and new hard links are made in that directory | |
1207 with the same names that the files currently have." | |
1208 (interactive "P") | |
1209 (dired-do-create-files 'hardlink (function add-name-to-file) | |
1210 "Hardlink" arg dired-keep-marker-hardlink)) | |
1211 | |
1212 ;;;###autoload | |
1213 (defun dired-do-rename (&optional arg) | |
1214 "Rename current file or all marked (or next ARG) files. | |
1215 When renaming just the current file, you specify the new name. | |
1216 When renaming multiple or marked files, you specify a directory." | |
1217 (interactive "P") | |
1218 (dired-do-create-files 'move (function dired-rename-file) | |
1219 "Move" arg dired-keep-marker-rename "Rename")) | |
1220 ;;;###end dired-cp.el | |
1221 | |
1222 ;;; 5K | |
1223 ;;;###begin dired-re.el | |
1224 (defun dired-do-create-files-regexp | |
1225 (file-creator operation arg regexp newname &optional whole-path marker-char) | |
1226 ;; Create a new file for each marked file using regexps. | |
1227 ;; FILE-CREATOR and OPERATION as in dired-create-files. | |
1228 ;; ARG as in dired-get-marked-files. | |
1229 ;; Matches each marked file against REGEXP and constructs the new | |
1230 ;; filename from NEWNAME (like in function replace-match). | |
1231 ;; Optional arg WHOLE-PATH means match/replace the whole pathname | |
1232 ;; instead of only the non-directory part of the file. | |
1233 ;; Optional arg MARKER-CHAR as in dired-create-files. | |
1234 (let* ((fn-list (dired-get-marked-files nil arg)) | |
1235 (fn-count (length fn-list)) | |
1236 (operation-prompt (concat operation " `%s' to `%s'?")) | |
1237 (rename-regexp-help-form (format "\ | |
1238 Type SPC or `y' to %s one match, DEL or `n' to skip to next, | |
1239 `!' to %s all remaining matches with no more questions." | |
1240 (downcase operation) | |
1241 (downcase operation))) | |
1242 (regexp-name-constructor | |
1243 ;; Function to construct new filename using REGEXP and NEWNAME: | |
1244 (if whole-path ; easy (but rare) case | |
1245 (function | |
1246 (lambda (from) | |
1247 (let ((to (dired-string-replace-match regexp from newname)) | |
1248 ;; must bind help-form directly around call to | |
1249 ;; dired-query | |
1250 (help-form rename-regexp-help-form)) | |
1251 (if to | |
1252 (and (dired-query 'rename-regexp-query | |
1253 operation-prompt | |
1254 from | |
1255 to) | |
1256 to) | |
1257 (dired-log "%s: %s did not match regexp %s\n" | |
1258 operation from regexp))))) | |
1259 ;; not whole-path, replace non-directory part only | |
1260 (function | |
1261 (lambda (from) | |
1262 (let* ((new (dired-string-replace-match | |
1263 regexp (file-name-nondirectory from) newname)) | |
1264 (to (and new ; nil means there was no match | |
1265 (expand-file-name new | |
1266 (file-name-directory from)))) | |
1267 (help-form rename-regexp-help-form)) | |
1268 (if to | |
1269 (and (dired-query 'rename-regexp-query | |
1270 operation-prompt | |
1271 (dired-make-relative from) | |
1272 (dired-make-relative to)) | |
1273 to) | |
1274 (dired-log "%s: %s did not match regexp %s\n" | |
1275 operation (file-name-nondirectory from) regexp))))))) | |
1276 rename-regexp-query) | |
1277 (dired-create-files | |
1278 file-creator operation fn-list regexp-name-constructor marker-char))) | |
1279 | |
1280 (defun dired-mark-read-regexp (operation) | |
1281 ;; Prompt user about performing OPERATION. | |
1282 ;; Read and return list of: regexp newname arg whole-path. | |
1283 (let* ((whole-path | |
1284 (equal 0 (prefix-numeric-value current-prefix-arg))) | |
1285 (arg | |
1286 (if whole-path nil current-prefix-arg)) | |
1287 (regexp | |
1288 (dired-read-regexp | |
1289 (concat (if whole-path "Path " "") operation " from (regexp): ") | |
1290 dired-flagging-regexp)) | |
1291 (newname | |
1292 (read-string | |
1293 (concat (if whole-path "Path " "") operation " " regexp " to: ")))) | |
1294 (list regexp newname arg whole-path))) | |
1295 | |
1296 ;;;###autoload | |
1297 (defun dired-do-rename-regexp (regexp newname &optional arg whole-path) | |
1298 "Rename marked files containing REGEXP to NEWNAME. | |
1299 As each match is found, the user must type a character saying | |
1300 what to do with it. For directions, type \\[help-command] at that time. | |
1301 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'. | |
1302 REGEXP defaults to the last regexp used. | |
1303 With a zero prefix arg, renaming by regexp affects the complete | |
1304 pathname - usually only the non-directory part of file names is used | |
1305 and changed." | |
1306 (interactive (dired-mark-read-regexp "Rename")) | |
1307 (dired-do-create-files-regexp | |
1308 (function dired-rename-file) | |
1309 "Rename" arg regexp newname whole-path dired-keep-marker-rename)) | |
1310 | |
1311 ;;;###autoload | |
1312 (defun dired-do-copy-regexp (regexp newname &optional arg whole-path) | |
1313 "Copy all marked files containing REGEXP to NEWNAME. | |
1314 See function `dired-rename-regexp' for more info." | |
1315 (interactive (dired-mark-read-regexp "Copy")) | |
1316 (dired-do-create-files-regexp | |
1317 (function dired-copy-file) | |
1318 (if dired-copy-preserve-time "Copy [-p]" "Copy") | |
1319 arg regexp newname whole-path dired-keep-marker-copy)) | |
1320 | |
1321 ;;;###autoload | |
1322 (defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path) | |
1323 "Hardlink all marked files containing REGEXP to NEWNAME. | |
1324 See function `dired-rename-regexp' for more info." | |
1325 (interactive (dired-mark-read-regexp "HardLink")) | |
1326 (dired-do-create-files-regexp | |
1327 (function add-name-to-file) | |
1328 "HardLink" arg regexp newname whole-path dired-keep-marker-hardlink)) | |
1329 | |
1330 ;;;###autoload | |
1331 (defun dired-do-symlink-regexp (regexp newname &optional arg whole-path) | |
1332 "Symlink all marked files containing REGEXP to NEWNAME. | |
1333 See function `dired-rename-regexp' for more info." | |
1334 (interactive (dired-mark-read-regexp "SymLink")) | |
1335 (dired-do-create-files-regexp | |
1336 (function make-symbolic-link) | |
1337 "SymLink" arg regexp newname whole-path dired-keep-marker-symlink)) | |
1338 | |
1339 (defun dired-create-files-non-directory | |
1340 (file-creator basename-constructor operation arg) | |
1341 ;; Perform FILE-CREATOR on the non-directory part of marked files | |
1342 ;; using function BASENAME-CONSTRUCTOR, with query for each file. | |
1343 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files. | |
1344 (let (rename-non-directory-query) | |
1345 (dired-create-files | |
1346 file-creator | |
1347 operation | |
1348 (dired-get-marked-files nil arg) | |
1349 (function | |
1350 (lambda (from) | |
1351 (let ((to (concat (file-name-directory from) | |
1352 (funcall basename-constructor | |
1353 (file-name-nondirectory from))))) | |
1354 (and (let ((help-form (format "\ | |
1355 Type SPC or `y' to %s one file, DEL or `n' to skip to next, | |
1356 `!' to %s all remaining matches with no more questions." | |
1357 (downcase operation) | |
1358 (downcase operation)))) | |
1359 (dired-query 'rename-non-directory-query | |
1360 (concat operation " `%s' to `%s'") | |
1361 (dired-make-relative from) | |
1362 (dired-make-relative to))) | |
1363 to)))) | |
1364 dired-keep-marker-rename))) | |
1365 | |
1366 (defun dired-rename-non-directory (basename-constructor operation arg) | |
1367 (dired-create-files-non-directory | |
1368 (function dired-rename-file) | |
1369 basename-constructor operation arg)) | |
1370 | |
1371 ;;;###autoload | |
1372 (defun dired-upcase (&optional arg) | |
1373 "Rename all marked (or next ARG) files to upper case." | |
1374 (interactive "P") | |
1375 (dired-rename-non-directory (function upcase) "Rename upcase" arg)) | |
1376 | |
1377 ;;;###autoload | |
1378 (defun dired-downcase (&optional arg) | |
1379 "Rename all marked (or next ARG) files to lower case." | |
1380 (interactive "P") | |
1381 (dired-rename-non-directory (function downcase) "Rename downcase" arg)) | |
1382 | |
1383 ;;;###end dired-re.el | |
1384 | |
1385 ;;; 13K | |
1386 ;;;###begin dired-ins.el | |
1387 | |
1388 ;;;###autoload | |
1389 (defun dired-maybe-insert-subdir (dirname &optional | |
1390 switches no-error-if-not-dir-p) | |
1391 "Insert this subdirectory into the same dired buffer. | |
1392 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh), | |
1393 else inserts it at its natural place (as `ls -lR' would have done). | |
1394 With a prefix arg, you may edit the ls switches used for this listing. | |
1395 You can add `R' to the switches to expand the whole tree starting at | |
1396 this subdirectory. | |
1397 This function takes some pains to conform to `ls -lR' output." | |
1398 (interactive | |
1399 (list (dired-get-filename) | |
1400 (if current-prefix-arg | |
1401 (read-string "Switches for listing: " dired-actual-switches)))) | |
1402 (let ((opoint (point))) | |
1403 ;; We don't need a marker for opoint as the subdir is always | |
1404 ;; inserted *after* opoint. | |
1405 (setq dirname (file-name-as-directory dirname)) | |
1406 (or (and (not switches) | |
1407 (dired-goto-subdir dirname)) | |
1408 (dired-insert-subdir dirname switches no-error-if-not-dir-p)) | |
1409 ;; Push mark so that it's easy to find back. Do this after the | |
1410 ;; insert message so that the user sees the `Mark set' message. | |
1411 (push-mark opoint))) | |
1412 | |
1413 (defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p) | |
1414 "Insert this subdirectory into the same dired buffer. | |
1415 If it is already present, overwrites previous entry, | |
1416 else inserts it at its natural place (as `ls -lR' would have done). | |
1417 With a prefix arg, you may edit the `ls' switches used for this listing. | |
1418 You can add `R' to the switches to expand the whole tree starting at | |
1419 this subdirectory. | |
1420 This function takes some pains to conform to `ls -lR' output." | |
1421 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like | |
1422 ;; Prospero where dired-ls does the right thing, but | |
1423 ;; file-directory-p has not been redefined. | |
1424 (interactive | |
1425 (list (dired-get-filename) | |
1426 (if current-prefix-arg | |
1427 (read-string "Switches for listing: " dired-actual-switches)))) | |
1428 (setq dirname (file-name-as-directory (expand-file-name dirname))) | |
1429 (dired-insert-subdir-validate dirname switches) | |
1430 (or no-error-if-not-dir-p | |
1431 (file-directory-p dirname) | |
1432 (error "Attempt to insert a non-directory: %s" dirname)) | |
1433 (let ((elt (assoc dirname dired-subdir-alist)) | |
1434 switches-have-R mark-alist case-fold-search buffer-read-only) | |
1435 ;; case-fold-search is nil now, so we can test for capital `R': | |
1436 (if (setq switches-have-R (and switches (string-match "R" switches))) | |
1437 ;; avoid duplicated subdirs | |
1438 (setq mark-alist (dired-kill-tree dirname t))) | |
1439 (if elt | |
1440 ;; If subdir is already present, remove it and remember its marks | |
1441 (setq mark-alist (nconc (dired-insert-subdir-del elt) mark-alist)) | |
1442 (dired-insert-subdir-newpos dirname)) ; else compute new position | |
1443 (dired-insert-subdir-doupdate | |
1444 dirname elt (dired-insert-subdir-doinsert dirname switches)) | |
1445 (if switches-have-R (dired-build-subdir-alist)) | |
1446 (dired-initial-position dirname) | |
1447 (save-excursion (dired-mark-remembered mark-alist)))) | |
1448 | |
1449 ;; This is a separate function for dired-vms. | |
1450 (defun dired-insert-subdir-validate (dirname &optional switches) | |
1451 ;; Check that it is valid to insert DIRNAME with SWITCHES. | |
1452 ;; Signal an error if invalid (e.g. user typed `i' on `..'). | |
1453 (or (dired-in-this-tree dirname default-directory) | |
1454 (error "%s: not in this directory tree" dirname)) | |
1455 (if switches | |
1456 (let (case-fold-search) | |
1457 (mapcar | |
1458 (function | |
1459 (lambda (x) | |
1460 (or (eq (null (string-match x switches)) | |
1461 (null (string-match x dired-actual-switches))) | |
1462 (error "Can't have dirs with and without -%s switches together" | |
1463 x)))) | |
1464 ;; all switches that make a difference to dired-get-filename: | |
1465 '("F" "b"))))) | |
1466 | |
1467 (defun dired-alist-add (dir new-marker) | |
1468 ;; Add new DIR at NEW-MARKER. Sort alist. | |
1469 (dired-alist-add-1 dir new-marker) | |
1470 (dired-alist-sort)) | |
1471 | |
1472 (defun dired-alist-sort () | |
1473 ;; Keep the alist sorted on buffer position. | |
1474 (setq dired-subdir-alist | |
1475 (sort dired-subdir-alist | |
1476 (function (lambda (elt1 elt2) | |
1477 (> (dired-get-subdir-min elt1) | |
1478 (dired-get-subdir-min elt2))))))) | |
1479 | |
1480 (defun dired-kill-tree (dirname &optional remember-marks) | |
1481 ;;"Kill all proper subdirs of DIRNAME, excluding DIRNAME itself. | |
1482 ;; With optional arg REMEMBER-MARKS, return an alist of marked files." | |
1483 (interactive "DKill tree below directory: ") | |
1484 (let ((s-alist dired-subdir-alist) dir m-alist) | |
1485 (while s-alist | |
1486 (setq dir (car (car s-alist)) | |
1487 s-alist (cdr s-alist)) | |
1488 (if (and (not (string-equal dir dirname)) | |
1489 (dired-in-this-tree dir dirname) | |
1490 (dired-goto-subdir dir)) | |
1491 (setq m-alist (nconc (dired-kill-subdir remember-marks) m-alist)))) | |
1492 m-alist)) | |
1493 | |
1494 (defun dired-insert-subdir-newpos (new-dir) | |
1495 ;; Find pos for new subdir, according to tree order. | |
1496 ;;(goto-char (point-max)) | |
1497 (let ((alist dired-subdir-alist) elt dir pos new-pos) | |
1498 (while alist | |
1499 (setq elt (car alist) | |
1500 alist (cdr alist) | |
1501 dir (car elt) | |
1502 pos (dired-get-subdir-min elt)) | |
1503 (if (dired-tree-lessp dir new-dir) | |
1504 ;; Insert NEW-DIR after DIR | |
1505 (setq new-pos (dired-get-subdir-max elt) | |
1506 alist nil))) | |
1507 (goto-char new-pos)) | |
1508 ;; want a separating newline between subdirs | |
1509 (or (eobp) | |
1510 (forward-line -1)) | |
1511 (insert "\n") | |
1512 (point)) | |
1513 | |
1514 (defun dired-insert-subdir-del (element) | |
1515 ;; Erase an already present subdir (given by ELEMENT) from buffer. | |
1516 ;; Move to that buffer position. Return a mark-alist. | |
1517 (let ((begin-marker (dired-get-subdir-min element))) | |
1518 (goto-char begin-marker) | |
1519 ;; Are at beginning of subdir (and inside it!). Now determine its end: | |
1520 (goto-char (dired-subdir-max)) | |
1521 (or (eobp);; want a separating newline _between_ subdirs: | |
1522 (forward-char -1)) | |
1523 (prog1 | |
1524 (dired-remember-marks begin-marker (point)) | |
1525 (delete-region begin-marker (point))))) | |
1526 | |
1527 (defun dired-insert-subdir-doinsert (dirname switches) | |
1528 ;; Insert ls output after point and put point on the correct | |
1529 ;; position for the subdir alist. | |
1530 ;; Return the boundary of the inserted text (as list of BEG and END). | |
1531 (let ((begin (point)) end) | |
1532 (message "Reading directory %s..." dirname) | |
1533 (let ((dired-actual-switches | |
1534 (or switches | |
1535 (dired-replace-in-string "R" "" dired-actual-switches)))) | |
1536 (if (equal dirname (car (car (reverse dired-subdir-alist)))) | |
1537 ;; top level directory may contain wildcards: | |
1538 (dired-readin-insert dired-directory) | |
1539 (dired-ls dirname dired-actual-switches nil t))) | |
1540 (message "Reading directory %s...done" dirname) | |
1541 (setq end (point-marker)) | |
1542 (indent-rigidly begin end 2) | |
1543 ;; call dired-insert-headerline afterwards, as under VMS dired-ls | |
1544 ;; does insert the headerline itself and the insert function just | |
1545 ;; moves point. | |
1546 ;; Need a marker for END as this inserts text. | |
1547 (goto-char begin) | |
1548 (dired-insert-headerline dirname) | |
1549 ;; point is now like in dired-build-subdir-alist | |
1550 (prog1 | |
1551 (list begin (marker-position end)) | |
1552 (set-marker end nil)))) | |
1553 | |
1554 (defun dired-insert-subdir-doupdate (dirname elt beg-end) | |
1555 ;; Point is at the correct subdir alist position for ELT, | |
1556 ;; BEG-END is the subdir-region (as list of begin and end). | |
1557 (if elt ; subdir was already present | |
1558 ;; update its position (should actually be unchanged) | |
1559 (set-marker (dired-get-subdir-min elt) (point-marker)) | |
1560 (dired-alist-add dirname (point-marker))) | |
1561 ;; The hook may depend on the subdir-alist containing the just | |
1562 ;; inserted subdir, so run it after dired-alist-add: | |
1563 (if dired-after-readin-hook | |
1564 (save-excursion | |
1565 (let ((begin (nth 0 beg-end)) | |
1566 (end (nth 1 beg-end))) | |
1567 (goto-char begin) | |
1568 (save-restriction | |
1569 (narrow-to-region begin end) | |
1570 ;; hook may add or delete lines, but the subdir boundary | |
1571 ;; marker floats | |
1572 (run-hooks 'dired-after-readin-hook)))))) | |
1573 | |
1574 (defun dired-tree-lessp (dir1 dir2) | |
1575 ;; Lexicographic order on pathname components, like `ls -lR': | |
1576 ;; DIR1 < DIR2 iff DIR1 comes *before* DIR2 in an `ls -lR' listing, | |
1577 ;; i.e., iff DIR1 is a (grand)parent dir of DIR2, | |
1578 ;; or DIR1 and DIR2 are in the same parentdir and their last | |
1579 ;; components are string-lessp. | |
1580 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp. | |
1581 ;; string-lessp could arguably be replaced by file-newer-than-file-p | |
1582 ;; if dired-actual-switches contained `t'. | |
1583 (setq dir1 (file-name-as-directory dir1) | |
1584 dir2 (file-name-as-directory dir2)) | |
1585 (let ((components-1 (dired-split "/" dir1)) | |
1586 (components-2 (dired-split "/" dir2))) | |
1587 (while (and components-1 | |
1588 components-2 | |
1589 (equal (car components-1) (car components-2))) | |
1590 (setq components-1 (cdr components-1) | |
1591 components-2 (cdr components-2))) | |
1592 (let ((c1 (car components-1)) | |
1593 (c2 (car components-2))) | |
1594 | |
1595 (cond ((and c1 c2) | |
1596 (string-lessp c1 c2)) | |
1597 ((and (null c1) (null c2)) | |
1598 nil) ; they are equal, not lessp | |
1599 ((null c1) ; c2 is a subdir of c1: c1<c2 | |
1600 t) | |
1601 ((null c2) ; c1 is a subdir of c2: c1>c2 | |
1602 nil) | |
1603 (t (error "This can't happen")))))) | |
1604 | |
1605 ;; There should be a builtin split function - inverse to mapconcat. | |
1606 (defun dired-split (pat str &optional limit) | |
1607 "Splitting on regexp PAT, turn string STR into a list of substrings. | |
1608 Optional third arg LIMIT (>= 1) is a limit to the length of the | |
1609 resulting list. | |
1610 Thus, if SEP is a regexp that only matches itself, | |
1611 | |
1612 (mapconcat 'identity (dired-split SEP STRING) SEP) | |
1613 | |
1614 is always equal to STRING." | |
1615 (let* ((start (string-match pat str)) | |
1616 (result (list (substring str 0 start))) | |
1617 (count 1) | |
1618 (end (if start (match-end 0)))) | |
1619 (if end ; else nothing left | |
1620 (while (and (or (not (integerp limit)) | |
1621 (< count limit)) | |
1622 (string-match pat str end)) | |
1623 (setq start (match-beginning 0) | |
1624 count (1+ count) | |
1625 result (cons (substring str end start) result) | |
1626 end (match-end 0) | |
1627 start end) | |
1628 )) | |
1629 (if (and (or (not (integerp limit)) | |
1630 (< count limit)) | |
1631 end) ; else nothing left | |
1632 (setq result | |
1633 (cons (substring str end) result))) | |
1634 (nreverse result))) | |
1635 | |
1636 ;;; moving by subdirectories | |
1637 | |
1638 (defun dired-subdir-index (dir) | |
1639 ;; Return an index into alist for use with nth | |
1640 ;; for the sake of subdir moving commands. | |
1641 (let (found (index 0) (alist dired-subdir-alist)) | |
1642 (while alist | |
1643 (if (string= dir (car (car alist))) | |
1644 (setq alist nil found t) | |
1645 (setq alist (cdr alist) index (1+ index)))) | |
1646 (if found index nil))) | |
1647 | |
1648 ;;;###autoload | |
1649 (defun dired-next-subdir (arg &optional no-error-if-not-found no-skip) | |
1650 "Go to next subdirectory, regardless of level." | |
1651 ;; Use 0 arg to go to this directory's header line. | |
1652 ;; NO-SKIP prevents moving to end of header line, returning whatever | |
1653 ;; position was found in dired-subdir-alist. | |
1654 (interactive "p") | |
1655 (let ((this-dir (dired-current-directory)) | |
1656 pos index) | |
1657 ;; nth with negative arg does not return nil but the first element | |
1658 (setq index (- (dired-subdir-index this-dir) arg)) | |
1659 (setq pos (if (>= index 0) | |
1660 (dired-get-subdir-min (nth index dired-subdir-alist)))) | |
1661 (if pos | |
1662 (progn | |
1663 (goto-char pos) | |
1664 (or no-skip (skip-chars-forward "^\n\r")) | |
1665 (point)) | |
1666 (if no-error-if-not-found | |
1667 nil ; return nil if not found | |
1668 (error "%s directory" (if (> arg 0) "Last" "First")))))) | |
1669 | |
1670 ;;;###autoload | |
1671 (defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip) | |
1672 "Go to previous subdirectory, regardless of level. | |
1673 When called interactively and not on a subdir line, go to this subdir's line." | |
1674 ;;(interactive "p") | |
1675 (interactive | |
1676 (list (if current-prefix-arg | |
1677 (prefix-numeric-value current-prefix-arg) | |
1678 ;; if on subdir start already, don't stay there! | |
1679 (if (dired-get-subdir) 1 0)))) | |
1680 (dired-next-subdir (- arg) no-error-if-not-found no-skip)) | |
1681 | |
1682 (defun dired-subdir-min () | |
1683 (save-excursion | |
1684 (if (not (dired-prev-subdir 0 t t)) | |
1685 (error "Not in a subdir!") | |
1686 (point)))) | |
1687 | |
1688 ;;;###autoload | |
1689 (defun dired-goto-subdir (dir) | |
1690 "Go to end of header line of DIR in this dired buffer. | |
1691 Return value of point on success, otherwise return nil. | |
1692 The next char is either \\n, or \\r if DIR is hidden." | |
1693 (interactive | |
1694 (prog1 ; let push-mark display its message | |
1695 (list (expand-file-name | |
1696 (completing-read "Goto in situ directory: " ; prompt | |
1697 dired-subdir-alist ; table | |
1698 nil ; predicate | |
1699 t ; require-match | |
1700 (dired-current-directory)))) | |
1701 (push-mark))) | |
1702 (setq dir (file-name-as-directory dir)) | |
1703 (let ((elt (assoc dir dired-subdir-alist))) | |
1704 (and elt | |
1705 (goto-char (dired-get-subdir-min elt)) | |
1706 ;; dired-subdir-hidden-p and dired-add-entry depend on point being | |
1707 ;; at either \r or \n after this function succeeds. | |
1708 (progn (skip-chars-forward "^\r\n") | |
1709 (point))))) | |
1710 | |
1711 ;;;###autoload | |
1712 (defun dired-mark-subdir-files () | |
1713 "Mark all files except `.' and `..'." | |
1714 (interactive "P") | |
1715 (let ((p-min (dired-subdir-min))) | |
1716 (dired-mark-files-in-region p-min (dired-subdir-max)))) | |
1717 | |
1718 ;;;###autoload | |
1719 (defun dired-kill-subdir (&optional remember-marks) | |
1720 "Remove all lines of current subdirectory. | |
1721 Lower levels are unaffected." | |
1722 ;; With optional REMEMBER-MARKS, return a mark-alist. | |
1723 (interactive) | |
1724 (let ((beg (dired-subdir-min)) | |
1725 (end (dired-subdir-max)) | |
1726 buffer-read-only cur-dir) | |
1727 (setq cur-dir (dired-current-directory)) | |
1728 (if (equal cur-dir default-directory) | |
1729 (error "Attempt to kill top level directory")) | |
1730 (prog1 | |
1731 (if remember-marks (dired-remember-marks beg end)) | |
1732 (delete-region beg end) | |
1733 (if (eobp) ; don't leave final blank line | |
1734 (delete-char -1)) | |
1735 (dired-unsubdir cur-dir)))) | |
1736 | |
1737 (defun dired-unsubdir (dir) | |
1738 ;; Remove DIR from the alist | |
1739 (setq dired-subdir-alist | |
1740 (delq (assoc dir dired-subdir-alist) dired-subdir-alist))) | |
1741 | |
1742 ;;;###autoload | |
1743 (defun dired-tree-up (arg) | |
1744 "Go up ARG levels in the dired tree." | |
1745 (interactive "p") | |
1746 (let ((dir (dired-current-directory))) | |
1747 (while (>= arg 1) | |
1748 (setq arg (1- arg) | |
1749 dir (file-name-directory (directory-file-name dir)))) | |
1750 ;;(setq dir (expand-file-name dir)) | |
1751 (or (dired-goto-subdir dir) | |
1752 (error "Cannot go up to %s - not in this tree." dir)))) | |
1753 | |
1754 ;;;###autoload | |
1755 (defun dired-tree-down () | |
1756 "Go down in the dired tree." | |
1757 (interactive) | |
1758 (let ((dir (dired-current-directory)) ; has slash | |
1759 pos case-fold-search) ; filenames are case sensitive | |
1760 (let ((rest (reverse dired-subdir-alist)) elt) | |
1761 (while rest | |
1762 (setq elt (car rest) | |
1763 rest (cdr rest)) | |
1764 (if (dired-in-this-tree (directory-file-name (car elt)) dir) | |
1765 (setq rest nil | |
1766 pos (dired-goto-subdir (car elt)))))) | |
1767 (if pos | |
1768 (goto-char pos) | |
1769 (error "At the bottom")))) | |
1770 | |
1771 ;;; hiding | |
1772 | |
1773 (defun dired-unhide-subdir () | |
1774 (let (buffer-read-only) | |
1775 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?\r ?\n))) | |
1776 | |
1777 (defun dired-hide-check () | |
1778 (or selective-display | |
1779 (error "selective-display must be t for subdir hiding to work!"))) | |
1780 | |
1781 (defun dired-subdir-hidden-p (dir) | |
1782 (and selective-display | |
1783 (save-excursion | |
1784 (dired-goto-subdir dir) | |
1785 (looking-at "\r")))) | |
1786 | |
1787 ;;;###autoload | |
1788 (defun dired-hide-subdir (arg) | |
1789 "Hide or unhide the current subdirectory and move to next directory. | |
1790 Optional prefix arg is a repeat factor. | |
1791 Use \\[dired-hide-all] to (un)hide all directories." | |
1792 (interactive "p") | |
1793 (dired-hide-check) | |
1794 (while (>= (setq arg (1- arg)) 0) | |
1795 (let* ((cur-dir (dired-current-directory)) | |
1796 (hidden-p (dired-subdir-hidden-p cur-dir)) | |
1797 (elt (assoc cur-dir dired-subdir-alist)) | |
1798 (end-pos (1- (dired-get-subdir-max elt))) | |
1799 buffer-read-only) | |
1800 ;; keep header line visible, hide rest | |
1801 (goto-char (dired-get-subdir-min elt)) | |
1802 (skip-chars-forward "^\n\r") | |
1803 (if hidden-p | |
1804 (subst-char-in-region (point) end-pos ?\r ?\n) | |
1805 (subst-char-in-region (point) end-pos ?\n ?\r))) | |
1806 (dired-next-subdir 1 t))) | |
1807 | |
1808 ;;;###autoload | |
1809 (defun dired-hide-all (arg) | |
1810 "Hide all subdirectories, leaving only their header lines. | |
1811 If there is already something hidden, make everything visible again. | |
1812 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." | |
1813 (interactive "P") | |
1814 (dired-hide-check) | |
1815 (let (buffer-read-only) | |
1816 (if (save-excursion | |
1817 (goto-char (point-min)) | |
1818 (search-forward "\r" nil t)) | |
1819 ;; unhide - bombs on \r in filenames | |
1820 (subst-char-in-region (point-min) (point-max) ?\r ?\n) | |
1821 ;; hide | |
1822 (let ((pos (point-max)) ; pos of end of last directory | |
1823 (alist dired-subdir-alist)) | |
1824 (while alist ; while there are dirs before pos | |
1825 (subst-char-in-region (dired-get-subdir-min (car alist)) ; pos of prev dir | |
1826 (save-excursion | |
1827 (goto-char pos) ; current dir | |
1828 ;; we're somewhere on current dir's line | |
1829 (forward-line -1) | |
1830 (point)) | |
1831 ?\n ?\r) | |
1832 (setq pos (dired-get-subdir-min (car alist))) ; prev dir gets current dir | |
1833 (setq alist (cdr alist))))))) | |
1834 | |
1835 ;;;###end dired-ins.el | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
1836 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
1837 ;;; dired-aux.el ends here |