]> code.delx.au - gnu-emacs/blob - lisp/progmodes/grep.el
Merge from emacs--rel--22
[gnu-emacs] / lisp / progmodes / grep.el
1 ;;; grep.el --- run Grep as inferior of Emacs, parse match messages
2
3 ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Roland McGrath <roland@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: tools, processes
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
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
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;; This package provides the grep facilities documented in the Emacs
30 ;; user's manual.
31
32 ;;; Code:
33
34 (require 'compile)
35
36
37 (defgroup grep nil
38 "Run grep as inferior of Emacs, parse error messages."
39 :group 'tools
40 :group 'processes)
41
42
43 ;;;###autoload
44 (defcustom grep-window-height nil
45 "*Number of lines in a grep window. If nil, use `compilation-window-height'."
46 :type '(choice (const :tag "Default" nil)
47 integer)
48 :version "22.1"
49 :group 'grep)
50
51 (defcustom grep-highlight-matches 'auto-detect
52 "If t, use special markers to highlight grep matches.
53
54 Some grep programs are able to surround matches with special
55 markers in grep output. Such markers can be used to highlight
56 matches in grep mode.
57
58 This option sets the environment variable GREP_COLOR to specify
59 markers for highlighting and GREP_OPTIONS to add the --color
60 option in front of any explicit grep options before starting
61 the grep.
62
63 The default value of this variable is set up by `grep-compute-defaults';
64 call that function before using this variable in your program."
65 :type '(choice (const :tag "Do not highlight matches with grep markers" nil)
66 (const :tag "Highlight matches with grep markers" t)
67 (other :tag "Not Set" auto-detect))
68 :version "22.1"
69 :group 'grep)
70
71 (defcustom grep-scroll-output nil
72 "*Non-nil to scroll the *grep* buffer window as output appears.
73
74 Setting it causes the grep commands to put point at the end of their
75 output window so that the end of the output is always visible rather
76 than the begining."
77 :type 'boolean
78 :version "22.1"
79 :group 'grep)
80
81 ;;;###autoload
82 (defcustom grep-command nil
83 "The default grep command for \\[grep].
84 If the grep program used supports an option to always include file names
85 in its output (such as the `-H' option to GNU grep), it's a good idea to
86 include it when specifying `grep-command'.
87
88 The default value of this variable is set up by `grep-compute-defaults';
89 call that function before using this variable in your program."
90 :type '(choice string
91 (const :tag "Not Set" nil))
92 :group 'grep)
93
94 (defcustom grep-template nil
95 "The default command to run for \\[lgrep].
96 The default value of this variable is set up by `grep-compute-defaults';
97 call that function before using this variable in your program.
98 The following place holders should be present in the string:
99 <C> - place to put -i if case insensitive grep.
100 <F> - file names and wildcards to search.
101 <R> - the regular expression searched for.
102 <N> - place to insert null-device."
103 :type '(choice string
104 (const :tag "Not Set" nil))
105 :version "22.1"
106 :group 'grep)
107
108 (defcustom grep-use-null-device 'auto-detect
109 "If t, append the value of `null-device' to `grep' commands.
110 This is done to ensure that the output of grep includes the filename of
111 any match in the case where only a single file is searched, and is not
112 necessary if the grep program used supports the `-H' option.
113
114 The default value of this variable is set up by `grep-compute-defaults';
115 call that function before using this variable in your program."
116 :type '(choice (const :tag "Do Not Append Null Device" nil)
117 (const :tag "Append Null Device" t)
118 (other :tag "Not Set" auto-detect))
119 :group 'grep)
120
121 ;;;###autoload
122 (defcustom grep-find-command nil
123 "The default find command for \\[grep-find].
124 The default value of this variable is set up by `grep-compute-defaults';
125 call that function before using this variable in your program."
126 :type '(choice string
127 (const :tag "Not Set" nil))
128 :group 'grep)
129
130 (defcustom grep-find-template nil
131 "The default command to run for \\[rgrep].
132 The default value of this variable is set up by `grep-compute-defaults';
133 call that function before using this variable in your program.
134 The following place holders should be present in the string:
135 <D> - base directory for find
136 <X> - find options to restrict or expand the directory list
137 <F> - find options to limit the files matched
138 <C> - place to put -i if case insensitive grep
139 <R> - the regular expression searched for."
140 :type '(choice string
141 (const :tag "Not Set" nil))
142 :version "22.1"
143 :group 'grep)
144
145 (defcustom grep-files-aliases '(
146 ("el" . "*.el")
147 ("ch" . "*.[ch]")
148 ("c" . "*.c")
149 ("h" . "*.h")
150 ("asm" . "*.[sS]")
151 ("m" . "[Mm]akefile*")
152 ("l" . "[Cc]hange[Ll]og*")
153 ("tex" . "*.tex")
154 ("texi" . "*.texi")
155 )
156 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
157 :type 'alist
158 :group 'grep)
159
160 (defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs"
161 ".git" ".bzr")
162 "*List of names of sub-directories which `rgrep' shall not recurse into."
163 :type '(repeat string)
164 :group 'grep)
165
166 (defcustom grep-error-screen-columns nil
167 "*If non-nil, column numbers in grep hits are screen columns.
168 See `compilation-error-screen-columns'"
169 :type '(choice (const :tag "Default" nil)
170 integer)
171 :version "22.1"
172 :group 'grep)
173
174 ;;;###autoload
175 (defcustom grep-setup-hook nil
176 "List of hook functions run by `grep-process-setup' (see `run-hooks')."
177 :type 'hook
178 :group 'grep)
179
180 (defvar grep-mode-map
181 (let ((map (cons 'keymap compilation-minor-mode-map)))
182 (define-key map " " 'scroll-up)
183 (define-key map "\^?" 'scroll-down)
184 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
185
186 (define-key map "\r" 'compile-goto-error) ;; ?
187 (define-key map "n" 'next-error-no-select)
188 (define-key map "p" 'previous-error-no-select)
189 (define-key map "{" 'compilation-previous-file)
190 (define-key map "}" 'compilation-next-file)
191 (define-key map "\t" 'compilation-next-error)
192 (define-key map [backtab] 'compilation-previous-error)
193
194 ;; Set up the menu-bar
195 (define-key map [menu-bar grep]
196 (cons "Grep" (make-sparse-keymap "Grep")))
197
198 (define-key map [menu-bar grep compilation-kill-compilation]
199 '("Kill Grep" . kill-compilation))
200 (define-key map [menu-bar grep compilation-separator2]
201 '("----" . nil))
202 (define-key map [menu-bar grep compilation-compile]
203 '("Compile..." . compile))
204 (define-key map [menu-bar grep compilation-grep]
205 '("Another grep..." . grep))
206 (define-key map [menu-bar grep compilation-grep-find]
207 '("Recursive grep..." . grep-find))
208 (define-key map [menu-bar grep compilation-recompile]
209 '("Repeat grep" . recompile))
210 (define-key map [menu-bar grep compilation-separator2]
211 '("----" . nil))
212 (define-key map [menu-bar grep compilation-first-error]
213 '("First Match" . first-error))
214 (define-key map [menu-bar grep compilation-previous-error]
215 '("Previous Match" . previous-error))
216 (define-key map [menu-bar grep compilation-next-error]
217 '("Next Match" . next-error))
218 map)
219 "Keymap for grep buffers.
220 `compilation-minor-mode-map' is a cdr of this.")
221
222 (defalias 'kill-grep 'kill-compilation)
223
224 ;;;; TODO --- refine this!!
225
226 ;;; (defcustom grep-use-compilation-buffer t
227 ;;; "When non-nil, grep specific commands update `compilation-last-buffer'.
228 ;;; This means that standard compile commands like \\[next-error] and \\[compile-goto-error]
229 ;;; can be used to navigate between grep matches (the default).
230 ;;; Otherwise, the grep specific commands like \\[grep-next-match] must
231 ;;; be used to navigate between grep matches."
232 ;;; :type 'boolean
233 ;;; :group 'grep)
234
235 ;; override compilation-last-buffer
236 (defvar grep-last-buffer nil
237 "The most recent grep buffer.
238 A grep buffer becomes most recent when you select Grep mode in it.
239 Notice that using \\[next-error] or \\[compile-goto-error] modifies
240 `complation-last-buffer' rather than `grep-last-buffer'.")
241
242 ;;;###autoload
243 (defvar grep-regexp-alist
244 '(("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2"
245 1 3)
246 ;; Rule to match column numbers is commented out since no known grep
247 ;; produces them
248 ;; ("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2\\(?:\\([0-9]+\\)\\(?:-\\([0-9]+\\)\\)?\\2\\)?"
249 ;; 1 3 (4 . 5))
250 ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\
251 \\(\033\\[01;31m\\(?:\033\\[K\\)?\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
252 2 3
253 ;; Calculate column positions (beg . end) of first grep match on a line
254 ((lambda ()
255 (setq compilation-error-screen-columns nil)
256 (- (match-beginning 4) (match-end 1)))
257 .
258 (lambda () (- (match-end 5) (match-end 1)
259 (- (match-end 4) (match-beginning 4)))))
260 nil 1)
261 ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))
262 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
263
264 (defvar grep-error "grep hit"
265 "Message to print when no matches are found.")
266
267 ;; Reverse the colors because grep hits are not errors (though we jump there
268 ;; with `next-error'), and unreadable files can't be gone to.
269 (defvar grep-hit-face compilation-info-face
270 "Face name to use for grep hits.")
271
272 (defvar grep-error-face 'compilation-error
273 "Face name to use for grep error messages.")
274
275 (defvar grep-match-face 'match
276 "Face name to use for grep matches.")
277
278 (defvar grep-context-face 'shadow
279 "Face name to use for grep context lines.")
280
281 (defvar grep-mode-font-lock-keywords
282 '(;; Command output lines.
283 ("^\\([A-Za-z_0-9/\.+-]+\\)[ \t]*:" 1 font-lock-function-name-face)
284 (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$"
285 1 grep-error-face)
286 ;; remove match from grep-regexp-alist before fontifying
287 ("^Grep[/a-zA-z]* started.*"
288 (0 '(face nil message nil help-echo nil mouse-face nil) t))
289 ("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*"
290 (0 '(face nil message nil help-echo nil mouse-face nil) t)
291 (1 compilation-info-face nil t)
292 (2 compilation-warning-face nil t))
293 ("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
294 (0 '(face nil message nil help-echo nil mouse-face nil) t)
295 (1 grep-error-face)
296 (2 grep-error-face nil t))
297 ("^.+?-[0-9]+-.*\n" (0 grep-context-face))
298 ;; Highlight grep matches and delete markers
299 ("\\(\033\\[01;31m\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
300 ;; Refontification does not work after the markers have been
301 ;; deleted. So we use the font-lock-face property here as Font
302 ;; Lock does not clear that.
303 (2 (list 'face nil 'font-lock-face grep-match-face))
304 ((lambda (bound))
305 (progn
306 ;; Delete markers with `replace-match' because it updates
307 ;; the match-data, whereas `delete-region' would render it obsolete.
308 (replace-match "" t t nil 3)
309 (replace-match "" t t nil 1))))
310 ("\\(\033\\[[0-9;]*[mK]\\)"
311 ;; Delete all remaining escape sequences
312 ((lambda (bound))
313 (replace-match "" t t nil 1))))
314 "Additional things to highlight in grep output.
315 This gets tacked on the end of the generated expressions.")
316
317 ;;;###autoload
318 (defvar grep-program "grep"
319 "The default grep program for `grep-command' and `grep-find-command'.
320 This variable's value takes effect when `grep-compute-defaults' is called.")
321
322 ;;;###autoload
323 (defvar find-program "find"
324 "The default find program for `grep-find-command'.
325 This variable's value takes effect when `grep-compute-defaults' is called.")
326
327 ;;;###autoload
328 (defvar grep-find-use-xargs nil
329 "Non-nil means that `grep-find' uses the `xargs' utility by default.
330 If `exec', use `find -exec'.
331 If `gnu', use `find -print0' and `xargs -0'.
332 Any other non-nil value means to use `find -print' and `xargs'.
333
334 This variable's value takes effect when `grep-compute-defaults' is called.")
335
336 ;; History of grep commands.
337 ;;;###autoload
338 (defvar grep-history nil)
339 ;;;###autoload
340 (defvar grep-find-history nil)
341
342 ;; History of lgrep and rgrep regexp and files args.
343 (defvar grep-regexp-history nil)
344 (defvar grep-files-history '("ch" "el"))
345
346 (defvar grep-host-defaults-alist nil
347 "Default values depending on target host.
348 `grep-compute-defaults' returns default values for every local or
349 remote host `grep' runs. These values can differ from host to
350 host. Once computed, the default values are kept here in order
351 to avoid computing them again.")
352
353 ;;;###autoload
354 (defun grep-process-setup ()
355 "Setup compilation variables and buffer for `grep'.
356 Set up `compilation-exit-message-function' and run `grep-setup-hook'."
357 (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
358 (grep-compute-defaults))
359 (when (eq grep-highlight-matches t)
360 ;; Modify `process-environment' locally bound in `compilation-start'
361 (setenv "GREP_OPTIONS" (concat (getenv "GREP_OPTIONS") " --color=always"))
362 ;; for GNU grep 2.5.1
363 (setenv "GREP_COLOR" "01;31")
364 ;; for GNU grep 2.5.1-cvs
365 (setenv "GREP_COLORS" "mt=01;31:fn=:ln=:bn=:se=:ml=:cx=:ne"))
366 (set (make-local-variable 'compilation-exit-message-function)
367 (lambda (status code msg)
368 (if (eq status 'exit)
369 (cond ((zerop code)
370 '("finished (matches found)\n" . "matched"))
371 ((= code 1)
372 '("finished with no matches found\n" . "no match"))
373 (t
374 (cons msg code)))
375 (cons msg code))))
376 (run-hooks 'grep-setup-hook))
377
378 (defun grep-probe (command args &optional func result)
379 (equal (condition-case nil
380 (apply (or func 'process-file) command args)
381 (error nil))
382 (or result 0)))
383
384 ;;;###autoload
385 (defun grep-compute-defaults ()
386 ;; Keep default values.
387 (unless grep-host-defaults-alist
388 (add-to-list
389 'grep-host-defaults-alist
390 (cons nil
391 `((grep-command ,grep-command)
392 (grep-template ,grep-template)
393 (grep-use-null-device ,grep-use-null-device)
394 (grep-find-command ,grep-find-command)
395 (grep-find-template ,grep-find-template)
396 (grep-find-use-xargs ,grep-find-use-xargs)
397 (grep-highlight-matches ,grep-highlight-matches)))))
398 (let* ((host-id
399 (intern (or (file-remote-p default-directory 'host) "localhost")))
400 (host-defaults (assq host-id grep-host-defaults-alist))
401 (defaults (assq nil grep-host-defaults-alist)))
402 ;; There are different defaults on different hosts. They must be
403 ;; computed for every host once.
404 (setq grep-command
405 (or (cadr (assq 'grep-command host-defaults))
406 (cadr (assq 'grep-command defaults)))
407
408 grep-template
409 (or (cadr (assq 'grep-template host-defaults))
410 (cadr (assq 'grep-template defaults)))
411
412 grep-use-null-device
413 (or (cadr (assq 'grep-use-null-device host-defaults))
414 (cadr (assq 'grep-use-null-device defaults)))
415
416 grep-find-command
417 (or (cadr (assq 'grep-find-command host-defaults))
418 (cadr (assq 'grep-find-command defaults)))
419
420 grep-find-template
421 (or (cadr (assq 'grep-find-template host-defaults))
422 (cadr (assq 'grep-find-template defaults)))
423
424 grep-find-use-xargs
425 (or (cadr (assq 'grep-find-use-xargs host-defaults))
426 (cadr (assq 'grep-find-use-xargs defaults)))
427
428 grep-highlight-matches
429 (or (cadr (assq 'grep-highlight-matches host-defaults))
430 (cadr (assq 'grep-highlight-matches defaults))))
431
432 (unless (or (not grep-use-null-device) (eq grep-use-null-device t))
433 (setq grep-use-null-device
434 (with-temp-buffer
435 (let ((hello-file (expand-file-name "HELLO" data-directory)))
436 (not
437 (and (if grep-command
438 ;; `grep-command' is already set, so
439 ;; use that for testing.
440 (grep-probe grep-command
441 `(nil t nil "^English" ,hello-file)
442 #'call-process-shell-command)
443 ;; otherwise use `grep-program'
444 (grep-probe grep-program
445 `(nil t nil "-nH" "^English" ,hello-file)))
446 (progn
447 (goto-char (point-min))
448 (looking-at
449 (concat (regexp-quote hello-file)
450 ":[0-9]+:English")))))))))
451 (unless (and grep-command grep-find-command
452 grep-template grep-find-template)
453 (let ((grep-options
454 (concat (if grep-use-null-device "-n" "-nH")
455 (if (grep-probe grep-program
456 `(nil nil nil "-e" "foo" ,null-device)
457 nil 1)
458 " -e"))))
459 (unless grep-command
460 (setq grep-command
461 (format "%s %s " grep-program grep-options)))
462 (unless grep-template
463 (setq grep-template
464 (format "%s <C> %s <R> <F>" grep-program grep-options)))
465 (unless grep-find-use-xargs
466 (setq grep-find-use-xargs
467 (cond
468 ((and
469 (grep-probe find-program `(nil nil nil ,null-device "-print0"))
470 (grep-probe "xargs" `(nil nil nil "-0" "-e" "echo")))
471 'gnu)
472 (t
473 'exec))))
474 (unless grep-find-command
475 (setq grep-find-command
476 (cond ((eq grep-find-use-xargs 'gnu)
477 (format "%s . -type f -print0 | xargs -0 -e %s"
478 find-program grep-command))
479 ((eq grep-find-use-xargs 'exec)
480 (let ((cmd0 (format "%s . -type f -exec %s"
481 find-program grep-command)))
482 (cons
483 (format "%s {} %s %s"
484 cmd0 null-device
485 (shell-quote-argument ";"))
486 (1+ (length cmd0)))))
487 (t
488 (format "%s . -type f -print | xargs %s"
489 find-program grep-command)))))
490 (unless grep-find-template
491 (setq grep-find-template
492 (let ((gcmd (format "%s <C> %s <R>"
493 grep-program grep-options)))
494 (cond ((eq grep-find-use-xargs 'gnu)
495 (format "%s . <X> -type f <F> -print0 | xargs -0 -e %s"
496 find-program gcmd))
497 ((eq grep-find-use-xargs 'exec)
498 (format "%s . <X> -type f <F> -exec %s {} %s %s"
499 find-program gcmd null-device
500 (shell-quote-argument ";")))
501 (t
502 (format "%s . <X> -type f <F> -print | xargs %s"
503 find-program gcmd))))))))
504 (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
505 (setq grep-highlight-matches
506 (with-temp-buffer
507 (and (grep-probe grep-program '(nil t nil "--help"))
508 (progn
509 (goto-char (point-min))
510 (search-forward "--color" nil t))
511 t))))
512
513 ;; Save defaults for this host.
514 (setq grep-host-defaults-alist
515 (delete (assq host-id grep-host-defaults-alist)
516 grep-host-defaults-alist))
517 (add-to-list
518 'grep-host-defaults-alist
519 (cons host-id
520 `((grep-command ,grep-command)
521 (grep-template ,grep-template)
522 (grep-use-null-device ,grep-use-null-device)
523 (grep-find-command ,grep-find-command)
524 (grep-find-template ,grep-find-template)
525 (grep-find-use-xargs ,grep-find-use-xargs)
526 (grep-highlight-matches ,grep-highlight-matches))))))
527
528 (defun grep-tag-default ()
529 (or (and transient-mark-mode mark-active
530 (/= (point) (mark))
531 (buffer-substring-no-properties (point) (mark)))
532 (funcall (or find-tag-default-function
533 (get major-mode 'find-tag-default-function)
534 'find-tag-default))
535 ""))
536
537 (defun grep-default-command ()
538 "Compute the default grep command for C-u M-x grep to offer."
539 (let ((tag-default (shell-quote-argument (grep-tag-default)))
540 ;; This a regexp to match single shell arguments.
541 ;; Could someone please add comments explaining it?
542 (sh-arg-re "\\(\\(?:\"\\(?:[^\"]\\|\\\\\"\\)+\"\\|'[^']+'\\|[^\"' \t\n]\\)+\\)")
543 (grep-default (or (car grep-history) grep-command)))
544 ;; In the default command, find the arg that specifies the pattern.
545 (when (or (string-match
546 (concat "[^ ]+\\s +\\(?:-[^ ]+\\s +\\)*"
547 sh-arg-re "\\(\\s +\\(\\S +\\)\\)?")
548 grep-default)
549 ;; If the string is not yet complete.
550 (string-match "\\(\\)\\'" grep-default))
551 ;; Maybe we will replace the pattern with the default tag.
552 ;; But first, maybe replace the file name pattern.
553 (condition-case nil
554 (unless (or (not (stringp buffer-file-name))
555 (when (match-beginning 2)
556 (save-match-data
557 (string-match
558 (wildcard-to-regexp
559 (file-name-nondirectory
560 (match-string 3 grep-default)))
561 (file-name-nondirectory buffer-file-name)))))
562 (setq grep-default (concat (substring grep-default
563 0 (match-beginning 2))
564 " *."
565 (file-name-extension buffer-file-name))))
566 ;; In case wildcard-to-regexp gets an error
567 ;; from invalid data.
568 (error nil))
569 ;; Now replace the pattern with the default tag.
570 (replace-match tag-default t t grep-default 1))))
571
572
573 ;;;###autoload
574 (define-compilation-mode grep-mode "Grep"
575 "Sets `grep-last-buffer' and `compilation-window-height'."
576 (setq grep-last-buffer (current-buffer))
577 (set (make-local-variable 'compilation-error-face)
578 grep-hit-face)
579 (set (make-local-variable 'compilation-error-regexp-alist)
580 grep-regexp-alist)
581 (set (make-local-variable 'compilation-process-setup-function)
582 'grep-process-setup)
583 (set (make-local-variable 'compilation-disable-input) t))
584
585
586 ;;;###autoload
587 (defun grep (command-args)
588 "Run grep, with user-specified args, and collect output in a buffer.
589 While grep runs asynchronously, you can use \\[next-error] (M-x next-error),
590 or \\<grep-mode-map>\\[compile-goto-error] in the grep \
591 output buffer, to go to the lines
592 where grep found matches.
593
594 For doing a recursive `grep', see the `rgrep' command. For running
595 `grep' in a specific directory, see `lgrep'.
596
597 This command uses a special history list for its COMMAND-ARGS, so you can
598 easily repeat a grep command.
599
600 A prefix argument says to default the argument based upon the current
601 tag the cursor is over, substituting it into the last grep command
602 in the grep command history (or into `grep-command'
603 if that history list is empty)."
604 (interactive
605 (progn
606 (grep-compute-defaults)
607 (let ((default (grep-default-command)))
608 (list (read-from-minibuffer "Run grep (like this): "
609 (if current-prefix-arg
610 default grep-command)
611 nil nil 'grep-history
612 (if current-prefix-arg nil default))))))
613
614 ;; Setting process-setup-function makes exit-message-function work
615 ;; even when async processes aren't supported.
616 (compilation-start (if (and grep-use-null-device null-device)
617 (concat command-args " " null-device)
618 command-args)
619 'grep-mode))
620
621
622 ;;;###autoload
623 (defun grep-find (command-args)
624 "Run grep via find, with user-specified args COMMAND-ARGS.
625 Collect output in a buffer.
626 While find runs asynchronously, you can use the \\[next-error] command
627 to find the text that grep hits refer to.
628
629 This command uses a special history list for its arguments, so you can
630 easily repeat a find command."
631 (interactive
632 (progn
633 (grep-compute-defaults)
634 (if grep-find-command
635 (list (read-from-minibuffer "Run find (like this): "
636 grep-find-command nil nil
637 'grep-find-history))
638 ;; No default was set
639 (read-string
640 "compile.el: No `grep-find-command' command available. Press RET.")
641 (list nil))))
642 (when command-args
643 (let ((null-device nil)) ; see grep
644 (grep command-args))))
645
646 ;;;###autoload
647 (defalias 'find-grep 'grep-find)
648
649
650 ;; User-friendly interactive API.
651
652 (defconst grep-expand-keywords
653 '(("<C>" . (and cf (isearch-no-upper-case-p regexp t) "-i"))
654 ("<D>" . dir)
655 ("<F>" . files)
656 ("<N>" . null-device)
657 ("<X>" . excl)
658 ("<R>" . (shell-quote-argument (or regexp ""))))
659 "List of substitutions performed by `grep-expand-template'.
660 If car of an element matches, the cdr is evalled in to get the
661 substitution string. Note dynamic scoping of variables.")
662
663 (defun grep-expand-template (template &optional regexp files dir excl)
664 "Patch grep COMMAND string replacing <C>, <D>, <F>, <R>, and <X>."
665 (let ((command template)
666 (cf case-fold-search)
667 (case-fold-search nil))
668 (dolist (kw grep-expand-keywords command)
669 (if (string-match (car kw) command)
670 (setq command
671 (replace-match
672 (or (if (symbolp (cdr kw))
673 (symbol-value (cdr kw))
674 (save-match-data (eval (cdr kw))))
675 "")
676 t t command))))))
677
678 (defun grep-read-regexp ()
679 "Read regexp arg for interactive grep."
680 (let ((default (grep-tag-default)))
681 (read-string
682 (concat "Search for"
683 (if (and default (> (length default) 0))
684 (format " (default \"%s\"): " default) ": "))
685 nil 'grep-regexp-history default)))
686
687 (defun grep-read-files (regexp)
688 "Read files arg for interactive grep."
689 (let* ((bn (or (buffer-file-name) (buffer-name)))
690 (fn (and bn
691 (stringp bn)
692 (file-name-nondirectory bn)))
693 (default
694 (or (and fn
695 (let ((aliases grep-files-aliases)
696 alias)
697 (while aliases
698 (setq alias (car aliases)
699 aliases (cdr aliases))
700 (if (string-match (wildcard-to-regexp (cdr alias)) fn)
701 (setq aliases nil)
702 (setq alias nil)))
703 (cdr alias)))
704 (and fn
705 (let ((ext (file-name-extension fn)))
706 (and ext (concat "*." ext))))
707 (car grep-files-history)
708 (car (car grep-files-aliases))))
709 (files (read-string
710 (concat "Search for \"" regexp
711 "\" in files"
712 (if default (concat " (default " default ")"))
713 ": ")
714 nil 'grep-files-history default)))
715 (and files
716 (or (cdr (assoc files grep-files-aliases))
717 files))))
718
719 ;;;###autoload
720 (defun lgrep (regexp &optional files dir)
721 "Run grep, searching for REGEXP in FILES in directory DIR.
722 The search is limited to file names matching shell pattern FILES.
723 FILES may use abbreviations defined in `grep-files-aliases', e.g.
724 entering `ch' is equivalent to `*.[ch]'.
725
726 With \\[universal-argument] prefix, you can edit the constructed shell command line
727 before it is executed.
728 With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
729
730 Collect output in a buffer. While grep runs asynchronously, you
731 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error]
732 in the grep output buffer, to go to the lines where grep found matches.
733
734 This command shares argument histories with \\[rgrep] and \\[grep]."
735 (interactive
736 (progn
737 (grep-compute-defaults)
738 (cond
739 ((and grep-command (equal current-prefix-arg '(16)))
740 (list (read-from-minibuffer "Run: " grep-command
741 nil nil 'grep-history)
742 nil))
743 ((not grep-template)
744 (list nil
745 (read-string "grep.el: No `grep-template' available. Press RET.")))
746 (t (let* ((regexp (grep-read-regexp))
747 (files (grep-read-files regexp))
748 (dir (read-directory-name "In directory: "
749 nil default-directory t)))
750 (list regexp files dir))))))
751 (when (and (stringp regexp) (> (length regexp) 0))
752 (let ((command regexp))
753 (if (null files)
754 (if (string= command grep-command)
755 (setq command nil))
756 (setq dir (file-name-as-directory (expand-file-name dir)))
757 (setq command (grep-expand-template
758 grep-template
759 regexp
760 files))
761 (when command
762 (if (equal current-prefix-arg '(4))
763 (setq command
764 (read-from-minibuffer "Confirm: "
765 command nil nil 'grep-history))
766 (add-to-history 'grep-history command))))
767 (when command
768 (let ((default-directory dir))
769 ;; Setting process-setup-function makes exit-message-function work
770 ;; even when async processes aren't supported.
771 (compilation-start (if (and grep-use-null-device null-device)
772 (concat command " " null-device)
773 command) 'grep-mode))
774 (if (eq next-error-last-buffer (current-buffer))
775 (setq default-directory dir))))))
776
777
778
779 ;;;###autoload
780 (defun rgrep (regexp &optional files dir)
781 "Recursively grep for REGEXP in FILES in directory tree rooted at DIR.
782 The search is limited to file names matching shell pattern FILES.
783 FILES may use abbreviations defined in `grep-files-aliases', e.g.
784 entering `ch' is equivalent to `*.[ch]'.
785
786 With \\[universal-argument] prefix, you can edit the constructed shell command line
787 before it is executed.
788 With two \\[universal-argument] prefixes, directly edit and run `grep-find-command'.
789
790 Collect output in a buffer. While find runs asynchronously, you
791 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error]
792 in the grep output buffer, to go to the lines where grep found matches.
793
794 This command shares argument histories with \\[lgrep] and \\[grep-find]."
795 (interactive
796 (progn
797 (grep-compute-defaults)
798 (cond
799 ((and grep-find-command (equal current-prefix-arg '(16)))
800 (list (read-from-minibuffer "Run: " grep-find-command
801 nil nil 'grep-find-history)
802 nil))
803 ((not grep-find-template)
804 (list nil nil
805 (read-string "grep.el: No `grep-find-template' available. Press RET.")))
806 (t (let* ((regexp (grep-read-regexp))
807 (files (grep-read-files regexp))
808 (dir (read-directory-name "Base directory: "
809 nil default-directory t)))
810 (list regexp files dir))))))
811 (when (and (stringp regexp) (> (length regexp) 0))
812 (if (null files)
813 (if (not (string= regexp grep-find-command))
814 (compilation-start regexp 'grep-mode))
815 (setq dir (file-name-as-directory (expand-file-name dir)))
816 (let ((command (grep-expand-template
817 grep-find-template
818 regexp
819 (concat (shell-quote-argument "(")
820 " -name "
821 (mapconcat #'shell-quote-argument
822 (split-string files)
823 " -o -name ")
824 " "
825 (shell-quote-argument ")"))
826 dir
827 (and grep-find-ignored-directories
828 (concat (shell-quote-argument "(")
829 ;; we should use shell-quote-argument here
830 " -path "
831 (mapconcat #'(lambda (dir)
832 (shell-quote-argument
833 (concat "*/" dir)))
834 grep-find-ignored-directories
835 " -o -path ")
836 " "
837 (shell-quote-argument ")")
838 " -prune -o ")))))
839 (when command
840 (if current-prefix-arg
841 (setq command
842 (read-from-minibuffer "Confirm: "
843 command nil nil 'grep-find-history))
844 (add-to-history 'grep-find-history command))
845 (let ((default-directory dir))
846 (compilation-start command 'grep-mode))
847 ;; Set default-directory if we started rgrep in the *grep* buffer.
848 (if (eq next-error-last-buffer (current-buffer))
849 (setq default-directory dir)))))))
850
851
852 (provide 'grep)
853
854 ;; arch-tag: 5a5b9169-a79d-4f38-9c38-f69615f39c4d
855 ;;; grep.el ends here