Remove some unnecessary purecopy's from find-dired.
[bpt/emacs.git] / lisp / find-dired.el
CommitLineData
3b1e4dd1 1;;; find-dired.el --- run a `find' command and dired the output
c0274f38 2
73b0cd50 3;; Copyright (C) 1992, 1994-1995, 2000-2011 Free Software Foundation, Inc.
3a801d0c 4
5762abec 5;; Author: Roland McGrath <roland@gnu.org>,
a0f81711 6;; Sebastian Kremer <sk@thp.uni-koeln.de>
5027054f 7;; Maintainer: FSF
fd7fa35a 8;; Keywords: unix
c23ae044 9
b578f267
EN
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
b578f267 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
b578f267
EN
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
e5167999 24
55535639
PJ
25;;; Commentary:
26
e5167999
ER
27;;; Code:
28
aa228418 29(require 'dired)
a0f81711 30
33933d45
AS
31(defgroup find-dired nil
32 "Run a `find' command and dired the output."
33 :group 'dired
34 :prefix "find-")
35
c0d79871 36;; find's -ls corresponds to these switches.
347cd536 37;; Note -b, at least GNU find quotes spaces etc. in filenames
33933d45 38(defcustom find-ls-option
e7a395b5
GM
39 (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb")
40 '("-exec ls -ld {} \\;" . "-ld"))
9201cc28 41 "Description of the option to `find' to produce an `ls -l'-type listing.
347cd536
RM
42This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION
43gives the option (or options) to `find' that produce the desired output.
33933d45
AS
44LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output."
45 :type '(cons (string :tag "Find Option")
46 (string :tag "Ls Switches"))
47 :group 'find-dired)
aa228418 48
e7a395b5 49(defcustom find-ls-subdir-switches "-al"
a994ebb8
LT
50 "`ls' switches for inserting subdirectories in `*Find*' buffers.
51This should contain the \"-l\" switch.
52Use the \"-F\" or \"-b\" switches if and only if you also use
53them for `find-ls-option'."
54 :type 'string
55 :group 'find-dired
bf247b6e 56 :version "22.1")
a994ebb8 57
33933d45 58(defcustom find-grep-options
e7a395b5 59 (if (or (eq system-type 'berkeley-unix)
9f18e619
RS
60 (string-match "solaris2" system-configuration)
61 (string-match "irix" system-configuration))
e7a395b5 62 "-s" "-q")
9201cc28 63 "Option to grep to be as silent as possible.
efa2bb9c 64On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
33933d45
AS
65On other systems, the closest you can come is to use `-l'."
66 :type 'string
67 :group 'find-dired)
aa228418 68
da205913 69;; This used to be autoloaded (see bug#4387).
d1dbc07c 70(defcustom find-name-arg
e7a395b5 71 (if read-file-name-completion-ignore-case
d1dbc07c 72 "-iname"
e7a395b5 73 "-name")
9201cc28 74 "Argument used to specify file name pattern.
d1dbc07c 75If `read-file-name-completion-ignore-case' is non-nil, -iname is used so that
5480359e 76find also ignores case. Otherwise, -name is used."
d1dbc07c
JR
77 :type 'string
78 :group 'find-dired
79 :version "22.2")
80
aa228418
JB
81(defvar find-args nil
82 "Last arguments given to `find' by \\[find-dired].")
90e3797f 83
347cd536
RM
84;; History of find-args values entered in the minibuffer.
85(defvar find-args-history nil)
86
304d3e5d
RS
87(defvar dired-sort-inhibit)
88
90e3797f
RM
89;;;###autoload
90(defun find-dired (dir args)
0322a154 91 "Run `find' and go into Dired mode on a buffer of the output.
aa228418
JB
92The command run (after changing into DIR) is
93
db0fb4dd
RS
94 find . \\( ARGS \\) -ls
95
96except that the variable `find-ls-option' specifies what to use
97as the final argument."
7ed287b5 98 (interactive (list (read-directory-name "Run find in directory: " nil "" t)
347cd536
RM
99 (read-string "Run find (with args): " find-args
100 '(find-args-history . 1))))
0322a154
RS
101 (let ((dired-buffers dired-buffers))
102 ;; Expand DIR ("" means default-directory), and make sure it has a
103 ;; trailing slash.
a994ebb8 104 (setq dir (file-name-as-directory (expand-file-name dir)))
0322a154
RS
105 ;; Check that it's really a directory.
106 (or (file-directory-p dir)
107 (error "find-dired needs a directory: %s" dir))
108 (switch-to-buffer (get-buffer-create "*Find*"))
8ad5033b
GM
109
110 ;; See if there's still a `find' running, and offer to kill
111 ;; it first, if it is.
112 (let ((find (get-buffer-process (current-buffer))))
113 (when find
114 (if (or (not (eq (process-status find) 'run))
115 (yes-or-no-p "A `find' process is running; kill it? "))
116 (condition-case nil
117 (progn
118 (interrupt-process find)
119 (sit-for 1)
120 (delete-process find))
121 (error nil))
122 (error "Cannot have two processes in `%s' at once" (buffer-name)))))
71296446 123
0322a154
RS
124 (widen)
125 (kill-all-local-variables)
126 (setq buffer-read-only nil)
127 (erase-buffer)
128 (setq default-directory dir
a994ebb8 129 find-args args ; save for next interactive call
d1dbc07c 130 args (concat find-program " . "
0322a154
RS
131 (if (string= args "")
132 ""
2fda9976
KS
133 (concat
134 (shell-quote-argument "(")
135 " " args " "
136 (shell-quote-argument ")")
137 " "))
138 (if (equal (car find-ls-option) "-exec ls -ld {} \\;")
139 (concat "-exec ls -ld "
140 (shell-quote-argument "{}")
141 " "
142 (shell-quote-argument ";"))
143 (car find-ls-option))))
1a9c959b
MA
144 ;; Start the find process.
145 (shell-command (concat args "&") (current-buffer))
0322a154
RS
146 ;; The next statement will bomb in classic dired (no optional arg allowed)
147 (dired-mode dir (cdr find-ls-option))
1d0c2717
RS
148 (let ((map (make-sparse-keymap)))
149 (set-keymap-parent map (current-local-map))
150 (define-key map "\C-c\C-k" 'kill-find)
151 (use-local-map map))
304d3e5d
RS
152 (make-local-variable 'dired-sort-inhibit)
153 (setq dired-sort-inhibit t)
2b29f15c
MR
154 (set (make-local-variable 'revert-buffer-function)
155 `(lambda (ignore-auto noconfirm)
156 (find-dired ,dir ,find-args)))
0322a154
RS
157 ;; Set subdir-alist so that Tree Dired will work:
158 (if (fboundp 'dired-simple-subdir-alist)
159 ;; will work even with nested dired format (dired-nstd.el,v 1.15
160 ;; and later)
161 (dired-simple-subdir-alist)
162 ;; else we have an ancient tree dired (or classic dired, where
71296446 163 ;; this does no harm)
0322a154
RS
164 (set (make-local-variable 'dired-subdir-alist)
165 (list (cons default-directory (point-min-marker)))))
a994ebb8 166 (set (make-local-variable 'dired-subdir-switches) find-ls-subdir-switches)
0322a154
RS
167 (setq buffer-read-only nil)
168 ;; Subdir headlerline must come first because the first marker in
169 ;; subdir-alist points there.
170 (insert " " dir ":\n")
171 ;; Make second line a ``find'' line in analogy to the ``total'' or
71296446 172 ;; ``wildcard'' line.
0322a154 173 (insert " " args "\n")
1d0c2717 174 (setq buffer-read-only t)
1a9c959b 175 (let ((proc (get-buffer-process (current-buffer))))
0322a154
RS
176 (set-process-filter proc (function find-dired-filter))
177 (set-process-sentinel proc (function find-dired-sentinel))
178 ;; Initialize the process marker; it is used by the filter.
179 (move-marker (process-mark proc) 1 (current-buffer)))
180 (setq mode-line-process '(":%s"))))
90e3797f 181
1d0c2717
RS
182(defun kill-find ()
183 "Kill the `find' process running in the current buffer."
184 (interactive)
185 (let ((find (get-buffer-process (current-buffer))))
186 (and find (eq (process-status find) 'run)
187 (eq (process-filter find) (function find-dired-filter))
188 (condition-case nil
189 (delete-process find)
190 (error nil)))))
191
90e3797f
RM
192;;;###autoload
193(defun find-name-dired (dir pattern)
194 "Search DIR recursively for files matching the globbing pattern PATTERN,
aa228418
JB
195and run dired on those files.
196PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
197The command run (after changing into DIR) is
198
199 find . -name 'PATTERN' -ls"
200 (interactive
201 "DFind-name (directory): \nsFind-name (filename wildcard): ")
d1dbc07c 202 (find-dired dir (concat find-name-arg " " (shell-quote-argument pattern))))
90e3797f 203
aa228418
JB
204;; This functionality suggested by
205;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc)
206;; Subject: find-dired, lookfor-dired
207;; Date: 10 May 91 17:50:00 GMT
208;; Organization: University of Waterloo
209
31e1d920 210(defalias 'lookfor-dired 'find-grep-dired)
aa228418 211;;;###autoload
4367c5a2
RS
212(defun find-grep-dired (dir regexp)
213 "Find files in DIR containing a regexp REGEXP and start Dired on output.
aa228418
JB
214The command run (after changing into DIR) is
215
4367c5a2 216 find . -exec grep -s -e REGEXP {} \\\; -ls
aa228418
JB
217
218Thus ARG can also contain additional grep options."
efa2bb9c 219 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ")
aa228418
JB
220 ;; find -exec doesn't allow shell i/o redirections in the command,
221 ;; or we could use `grep -l >/dev/null'
3443c832
RS
222 ;; We use -type f, not ! -type d, to avoid getting screwed
223 ;; by FIFOs and devices. I'm not sure what's best to do
224 ;; about symlinks, so as far as I know this is not wrong.
aa228418 225 (find-dired dir
d1dbc07c 226 (concat "-type f -exec " grep-program " " find-grep-options " -e "
4367c5a2 227 (shell-quote-argument regexp)
2fda9976
KS
228 " "
229 (shell-quote-argument "{}")
230 " "
231 (shell-quote-argument ";"))))
aa228418 232
90e3797f
RM
233(defun find-dired-filter (proc string)
234 ;; Filter for \\[find-dired] processes.
1d0c2717
RS
235 (let ((buf (process-buffer proc))
236 (inhibit-read-only t))
4543e213
CY
237 (if (buffer-name buf)
238 (with-current-buffer buf
2cd119e3
AS
239 (save-excursion
240 (save-restriction
241 (widen)
242 (let ((buffer-read-only nil)
243 (beg (point-max))
244 (l-opt (and (consp find-ls-option)
245 (string-match "l" (cdr find-ls-option))))
246 (ls-regexp (concat "^ +[^ \t\r\n]+\\( +[^ \t\r\n]+\\) +"
247 "[^ \t\r\n]+ +[^ \t\r\n]+\\( +[0-9]+\\)")))
248 (goto-char beg)
249 (insert string)
4543e213 250 (goto-char beg)
2cd119e3
AS
251 (or (looking-at "^")
252 (forward-line 1))
253 (while (looking-at "^")
254 (insert " ")
255 (forward-line 1))
256 ;; Convert ` ./FILE' to ` FILE'
257 ;; This would lose if the current chunk of output
258 ;; starts or ends within the ` ./', so back up a bit:
259 (goto-char (- beg 3)) ; no error if < 0
260 (while (search-forward " ./" nil t)
261 (delete-region (point) (- (point) 2)))
262 ;; Pad the number of links and file size. This is a
263 ;; quick and dirty way of getting the columns to line up
264 ;; most of the time, but it's not foolproof.
265 (when l-opt
266 (goto-char beg)
267 (goto-char (line-beginning-position))
268 (while (re-search-forward ls-regexp nil t)
269 (replace-match (format "%4s" (match-string 1))
270 nil nil nil 1)
271 (replace-match (format "%9s" (match-string 2))
272 nil nil nil 2)
273 (forward-line 1)))
274 ;; Find all the complete lines in the unprocessed
275 ;; output and process it to add text properties.
276 (goto-char (point-max))
277 (if (search-backward "\n" (process-mark proc) t)
278 (progn
279 (dired-insert-set-properties (process-mark proc)
280 (1+ (point)))
281 (move-marker (process-mark proc) (1+ (point)))))))))
c23ae044
RM
282 ;; The buffer has been killed.
283 (delete-process proc))))
90e3797f
RM
284
285(defun find-dired-sentinel (proc state)
286 ;; Sentinel for \\[find-dired] processes.
1d0c2717
RS
287 (let ((buf (process-buffer proc))
288 (inhibit-read-only t))
c23ae044 289 (if (buffer-name buf)
7fdbcd83 290 (with-current-buffer buf
619c556e
RM
291 (let ((buffer-read-only nil))
292 (save-excursion
293 (goto-char (point-max))
0e842e15 294 (insert "\n find " state)
619c556e
RM
295 (forward-char -1) ;Back up before \n at end of STATE.
296 (insert " at " (substring (current-time-string) 0 19))
297 (forward-char 1)
298 (setq mode-line-process
6657eedf 299 (concat ":"
619c556e
RM
300 (symbol-name (process-status proc))))
301 ;; Since the buffer and mode line will show that the
302 ;; process is dead, we can delete it now. Otherwise it
303 ;; will stay around until M-x list-processes.
304 (delete-process proc)
74def44f 305 (force-mode-line-update)))
c23ae044 306 (message "find-dired %s finished." (current-buffer))))))
a994ebb8 307
a0f81711 308\f
49116ac0
JB
309(provide 'find-dired)
310
c0274f38 311;;; find-dired.el ends here