Mercurial > emacs
annotate lisp/find-dired.el @ 15958:58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
(ange-ftp-before-parse-ls-hook): Add defvar.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 28 Aug 1996 23:36:44 +0000 |
parents | 83f275dcd93a |
children | a3c07728832a |
rev | line source |
---|---|
2230
6314334d7c2b
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1225
diff
changeset
|
1 ;;; find-dired.el --- run a `find' command and dired the output |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
14169 | 3 ;; Copyright (C) 1992, 1994, 1995 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
5 ;; Author: Roland McGrath <roland@gnu.ai.mit.edu>, |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
6 ;; Sebastian Kremer <sk@thp.uni-koeln.de> |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: unix |
294 | 8 |
14169 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 |
292 | 28 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
29 |
11035 | 30 ;; find's -ls corresponds to these switches. |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
31 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
474 | 32 ;;;###autoload |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
33 (defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
34 '("-exec ls -ld {} \\;" . "-ld")) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
35 "*Description of the option to `find' to produce an `ls -l'-type listing. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
36 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
37 gives the option (or options) to `find' that produce the desired output. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
38 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") |
474 | 39 |
40 ;;;###autoload | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
41 (defvar find-grep-options (if (eq system-type 'berkeley-unix) "-s" "-q") |
474 | 42 "*Option to grep to be as silent as possible. |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
43 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
44 On other systems, the closest you can come is to use `-l'.") |
292 | 45 |
46 (defvar find-args nil | |
47 "Last arguments given to `find' by \\[find-dired].") | |
48 | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
49 ;; History of find-args values entered in the minibuffer. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
50 (defvar find-args-history nil) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
51 |
292 | 52 ;;;###autoload |
53 (defun find-dired (dir args) | |
54 "Run `find' and go into dired-mode on a buffer of the output. | |
474 | 55 The command run (after changing into DIR) is |
56 | |
57 find . \\( ARGS \\) -ls" | |
292 | 58 (interactive (list (read-file-name "Run find in directory: " nil "" t) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
59 (read-string "Run find (with args): " find-args |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
60 '(find-args-history . 1)))) |
474 | 61 ;; Expand DIR ("" means default-directory), and make sure it has a |
62 ;; trailing slash. | |
292 | 63 (setq dir (file-name-as-directory (expand-file-name dir))) |
64 ;; Check that it's really a directory. | |
65 (or (file-directory-p dir) | |
474 | 66 (error "find-dired needs a directory: %s" dir)) |
292 | 67 (switch-to-buffer (get-buffer-create "*Find*")) |
68 (widen) | |
69 (kill-all-local-variables) | |
70 (setq buffer-read-only nil) | |
71 (erase-buffer) | |
72 (setq default-directory dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
73 find-args args ; save for next interactive call |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
74 args (concat "find . " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
75 (if (string= args "") |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
76 "" |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
77 (concat "\\( " args " \\) ")) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
78 (car find-ls-option))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
79 ;; The next statement will bomb in classic dired (no optional arg allowed) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
80 (dired-mode dir (cdr find-ls-option)) |
12485
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
81 ;; This really should rerun the find command, but I don't |
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
82 ;; have time for that. |
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
83 (use-local-map (append (make-sparse-keymap) (current-local-map))) |
df3f81ceb780
(find-dired): Undefine the g command.
Richard M. Stallman <rms@gnu.org>
parents:
11996
diff
changeset
|
84 (define-key (current-local-map) "g" 'undefined) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
85 ;; Set subdir-alist so that Tree Dired will work: |
11996
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
86 (if (fboundp 'dired-simple-subdir-alist) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
87 ;; will work even with nested dired format (dired-nstd.el,v 1.15 |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
88 ;; and later) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
89 (dired-simple-subdir-alist) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
90 ;; else we have an ancient tree dired (or classic dired, where |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
91 ;; this does no harm) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
92 (set (make-local-variable 'dired-subdir-alist) |
d330b9cd3529
(find-dired): If dired-simple-subdir-alist is not
Karl Heuer <kwzh@gnu.org>
parents:
11585
diff
changeset
|
93 (list (cons default-directory (point-min-marker))))) |
474 | 94 (setq buffer-read-only nil) |
95 ;; Subdir headlerline must come first because the first marker in | |
96 ;; subdir-alist points there. | |
97 (insert " " dir ":\n") | |
98 ;; Make second line a ``find'' line in analogy to the ``total'' or | |
99 ;; ``wildcard'' line. | |
100 (insert " " args "\n") | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
101 ;; Start the find process. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
102 (let ((proc (start-process-shell-command "find" (current-buffer) args))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
103 (set-process-filter proc (function find-dired-filter)) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
104 (set-process-sentinel proc (function find-dired-sentinel)) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
105 ;; Initialize the process marker; it is used by the filter. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
106 (move-marker (process-mark proc) 1 (current-buffer))) |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
107 (setq mode-line-process '(":%s"))) |
292 | 108 |
109 ;;;###autoload | |
110 (defun find-name-dired (dir pattern) | |
111 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 112 and run dired on those files. |
113 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
114 The command run (after changing into DIR) is | |
115 | |
116 find . -name 'PATTERN' -ls" | |
117 (interactive | |
118 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
292 | 119 (find-dired dir (concat "-name '" pattern "'"))) |
120 | |
474 | 121 ;; This functionality suggested by |
122 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
123 ;; Subject: find-dired, lookfor-dired | |
124 ;; Date: 10 May 91 17:50:00 GMT | |
125 ;; Organization: University of Waterloo | |
126 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
127 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 128 ;;;###autoload |
129 (defun find-grep-dired (dir args) | |
130 "Find files in DIR containing a regexp ARG and start Dired on output. | |
131 The command run (after changing into DIR) is | |
132 | |
133 find . -exec grep -s ARG {} \\\; -ls | |
134 | |
135 Thus ARG can also contain additional grep options." | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
136 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 137 ;; find -exec doesn't allow shell i/o redirections in the command, |
138 ;; or we could use `grep -l >/dev/null' | |
139 (find-dired dir | |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
140 (concat "! -type d -exec grep " find-grep-options " " |
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
141 args " {} \\\; "))) |
474 | 142 |
292 | 143 (defun find-dired-filter (proc string) |
144 ;; Filter for \\[find-dired] processes. | |
294 | 145 (let ((buf (process-buffer proc))) |
146 (if (buffer-name buf) ; not killed? | |
147 (save-excursion | |
148 (set-buffer buf) | |
149 (save-restriction | |
150 (widen) | |
151 (save-excursion | |
152 (let ((buffer-read-only nil) | |
153 (end (point-max))) | |
154 (goto-char end) | |
155 (insert string) | |
156 (goto-char end) | |
157 (or (looking-at "^") | |
158 (forward-line 1)) | |
159 (while (looking-at "^") | |
160 (insert " ") | |
474 | 161 (forward-line 1)) |
162 ;; Convert ` ./FILE' to ` FILE' | |
163 ;; This would lose if the current chunk of output | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
164 ;; starts or ends within the ` ./', so back up a bit: |
474 | 165 (goto-char (- end 3)) ; no error if < 0 |
166 (while (search-forward " ./" nil t) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
167 (delete-region (point) (- (point) 2))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
168 ;; Find all the complete lines in the unprocessed |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
169 ;; output and process it to add text properties. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
170 (goto-char end) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
171 (if (search-backward "\n" (process-mark proc) t) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
172 (progn |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
173 (dired-insert-set-properties (process-mark proc) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
174 (1+ (point))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
175 (move-marker (process-mark proc) (1+ (point))))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
176 )))) |
294 | 177 ;; The buffer has been killed. |
178 (delete-process proc)))) | |
292 | 179 |
180 (defun find-dired-sentinel (proc state) | |
181 ;; Sentinel for \\[find-dired] processes. | |
294 | 182 (let ((buf (process-buffer proc))) |
183 (if (buffer-name buf) | |
184 (save-excursion | |
185 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
186 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
187 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
188 (goto-char (point-max)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
189 (insert "\nfind " state) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
190 (forward-char -1) ;Back up before \n at end of STATE. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
191 (insert " at " (substring (current-time-string) 0 19)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
192 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
193 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
194 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
195 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
196 ;; Since the buffer and mode line will show that the |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
197 ;; process is dead, we can delete it now. Otherwise it |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
198 ;; will stay around until M-x list-processes. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
199 (delete-process proc) |
11585
e28ae3856c1d
(find-dired-sentinel): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11035
diff
changeset
|
200 (force-mode-line-update))) |
294 | 201 (message "find-dired %s finished." (current-buffer)))))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
202 |
584 | 203 (provide 'find-dired) |
204 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
205 ;;; find-dired.el ends here |