Grep related fixes.
[bpt/emacs.git] / lisp / progmodes / grep.el
1 ;;; grep.el --- run `grep' and display the results
2
3 ;; Copyright (C) 1985-1987, 1993-1999, 2001-2011
4 ;; 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 3 of the License, or
15 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; This package provides the grep facilities documented in the Emacs
28 ;; user's manual.
29
30 ;;; Code:
31
32 (require 'compile)
33
34
35 (defgroup grep nil
36 "Run `grep' and display the results."
37 :group 'tools
38 :group 'processes)
39
40 (defvar grep-host-defaults-alist nil
41 "Default values depending on target host.
42 `grep-compute-defaults' returns default values for every local or
43 remote host `grep' runs. These values can differ from host to
44 host. Once computed, the default values are kept here in order
45 to avoid computing them again.")
46
47 (defun grep-apply-setting (symbol value)
48 "Set SYMBOL to VALUE, and update `grep-host-defaults-alist'.
49 SYMBOL should be one of `grep-command', `grep-template',
50 `grep-use-null-device', `grep-find-command',
51 `grep-find-template', `grep-find-use-xargs', or
52 `grep-highlight-matches'."
53 (when grep-host-defaults-alist
54 (let* ((host-id
55 (intern (or (file-remote-p default-directory) "localhost")))
56 (host-defaults (assq host-id grep-host-defaults-alist))
57 (defaults (assq nil grep-host-defaults-alist)))
58 (setcar (cdr (assq symbol host-defaults)) value)
59 (setcar (cdr (assq symbol defaults)) value)))
60 (set-default symbol value))
61
62 ;;;###autoload
63 (defcustom grep-window-height nil
64 "*Number of lines in a grep window. If nil, use `compilation-window-height'."
65 :type '(choice (const :tag "Default" nil)
66 integer)
67 :version "22.1"
68 :group 'grep)
69
70 (defcustom grep-highlight-matches 'auto-detect
71 "Use special markers to highlight grep matches.
72
73 Some grep programs are able to surround matches with special
74 markers in grep output. Such markers can be used to highlight
75 matches in grep mode. This requires `font-lock-mode' to be active
76 in grep buffers, so if you have globally disabled font-lock-mode,
77 you will not get highlighting.
78
79 This option sets the environment variable GREP_COLORS to specify
80 markers for highlighting and GREP_OPTIONS to add the --color
81 option in front of any explicit grep options before starting
82 the grep.
83
84 When this option is `auto', grep uses `--color=auto' to highlight
85 matches only when it outputs to a terminal (when `grep' is the last
86 command in the pipe), thus avoiding the use of any potentially-harmful
87 escape sequences when standard output goes to a file or pipe.
88
89 To make grep highlight matches even into a pipe, you need the option
90 `always' that forces grep to use `--color=always' to unconditionally
91 output escape sequences.
92
93 In interactive usage, the actual value of this variable is set up
94 by `grep-compute-defaults' when the default value is `auto-detect'.
95 To change the default value, use Customize or call the function
96 `grep-apply-setting'."
97 :type '(choice (const :tag "Do not highlight matches with grep markers" nil)
98 (const :tag "Highlight matches with grep markers" t)
99 (const :tag "Use --color=always" always)
100 (const :tag "Use --color=auto" auto)
101 (other :tag "Not Set" auto-detect))
102 :set 'grep-apply-setting
103 :version "22.1"
104 :group 'grep)
105
106 (defcustom grep-scroll-output nil
107 "*Non-nil to scroll the *grep* buffer window as output appears.
108
109 Setting it causes the grep commands to put point at the end of their
110 output window so that the end of the output is always visible rather
111 than the begining."
112 :type 'boolean
113 :version "22.1"
114 :group 'grep)
115
116 ;;;###autoload
117 (defcustom grep-command nil
118 "The default grep command for \\[grep].
119 If the grep program used supports an option to always include file names
120 in its output (such as the `-H' option to GNU grep), it's a good idea to
121 include it when specifying `grep-command'.
122
123 In interactive usage, the actual value of this variable is set up
124 by `grep-compute-defaults'; to change the default value, use
125 Customize or call the function `grep-apply-setting'."
126 :type '(choice string
127 (const :tag "Not Set" nil))
128 :set 'grep-apply-setting
129 :group 'grep)
130
131 (defcustom grep-template nil
132 "The default command to run for \\[lgrep].
133 The following place holders should be present in the string:
134 <C> - place to put -i if case insensitive grep.
135 <F> - file names and wildcards to search.
136 <X> - file names and wildcards to exclude.
137 <R> - the regular expression searched for.
138 <N> - place to insert null-device.
139
140 In interactive usage, the actual value of this variable is set up
141 by `grep-compute-defaults'; to change the default value, use
142 Customize or call the function `grep-apply-setting'."
143 :type '(choice string
144 (const :tag "Not Set" nil))
145 :set 'grep-apply-setting
146 :version "22.1"
147 :group 'grep)
148
149 (defcustom grep-use-null-device 'auto-detect
150 "If t, append the value of `null-device' to `grep' commands.
151 This is done to ensure that the output of grep includes the filename of
152 any match in the case where only a single file is searched, and is not
153 necessary if the grep program used supports the `-H' option.
154
155 In interactive usage, the actual value of this variable is set up
156 by `grep-compute-defaults'; to change the default value, use
157 Customize or call the function `grep-apply-setting'."
158 :type '(choice (const :tag "Do Not Append Null Device" nil)
159 (const :tag "Append Null Device" t)
160 (other :tag "Not Set" auto-detect))
161 :set 'grep-apply-setting
162 :group 'grep)
163
164 ;;;###autoload
165 (defcustom grep-find-command nil
166 "The default find command for \\[grep-find].
167 In interactive usage, the actual value of this variable is set up
168 by `grep-compute-defaults'; to change the default value, use
169 Customize or call the function `grep-apply-setting'."
170 :type '(choice string
171 (const :tag "Not Set" nil))
172 :set 'grep-apply-setting
173 :group 'grep)
174
175 (defcustom grep-find-template nil
176 "The default command to run for \\[rgrep].
177 The following place holders should be present in the string:
178 <D> - base directory for find
179 <X> - find options to restrict or expand the directory list
180 <F> - find options to limit the files matched
181 <C> - place to put -i if case insensitive grep
182 <R> - the regular expression searched for.
183 In interactive usage, the actual value of this variable is set up
184 by `grep-compute-defaults'; to change the default value, use
185 Customize or call the function `grep-apply-setting'."
186 :type '(choice string
187 (const :tag "Not Set" nil))
188 :set 'grep-apply-setting
189 :version "22.1"
190 :group 'grep)
191
192 (defcustom grep-files-aliases
193 '(("all" . "* .*")
194 ("el" . "*.el")
195 ("ch" . "*.[ch]")
196 ("c" . "*.c")
197 ("cc" . "*.cc *.cxx *.cpp *.C *.CC *.c++")
198 ("cchh" . "*.cc *.[ch]xx *.[ch]pp *.[CHh] *.CC *.HH *.[ch]++")
199 ("hh" . "*.hxx *.hpp *.[Hh] *.HH *.h++")
200 ("h" . "*.h")
201 ("l" . "[Cc]hange[Ll]og*")
202 ("m" . "[Mm]akefile*")
203 ("tex" . "*.tex")
204 ("texi" . "*.texi")
205 ("asm" . "*.[sS]"))
206 "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
207 :type 'alist
208 :group 'grep)
209
210 (defcustom grep-find-ignored-directories
211 vc-directory-exclusion-list
212 "*List of names of sub-directories which `rgrep' shall not recurse into.
213 If an element is a cons cell, the car is called on the search directory
214 to determine whether cdr should not be recursed into."
215 :type '(choice (repeat :tag "Ignored directories" string)
216 (const :tag "No ignored directories" nil))
217 :group 'grep)
218
219 (defcustom grep-find-ignored-files
220 (cons ".#*" (delq nil (mapcar (lambda (s)
221 (unless (string-match-p "/\\'" s)
222 (concat "*" s)))
223 completion-ignored-extensions)))
224 "*List of file names which `rgrep' and `lgrep' shall exclude.
225 If an element is a cons cell, the car is called on the search directory
226 to determine whether cdr should not be excluded."
227 :type '(choice (repeat :tag "Ignored file" string)
228 (const :tag "No ignored files" nil))
229 :group 'grep)
230
231 (defcustom grep-error-screen-columns nil
232 "*If non-nil, column numbers in grep hits are screen columns.
233 See `compilation-error-screen-columns'"
234 :type '(choice (const :tag "Default" nil)
235 integer)
236 :version "22.1"
237 :group 'grep)
238
239 ;;;###autoload
240 (defcustom grep-setup-hook nil
241 "List of hook functions run by `grep-process-setup' (see `run-hooks')."
242 :type 'hook
243 :group 'grep)
244
245 (defvar grep-mode-map
246 (let ((map (make-sparse-keymap)))
247 (set-keymap-parent map compilation-minor-mode-map)
248 (define-key map " " 'scroll-up)
249 (define-key map "\^?" 'scroll-down)
250 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
251
252 (define-key map "\r" 'compile-goto-error) ;; ?
253 (define-key map "n" 'next-error-no-select)
254 (define-key map "p" 'previous-error-no-select)
255 (define-key map "{" 'compilation-previous-file)
256 (define-key map "}" 'compilation-next-file)
257 (define-key map "\t" 'compilation-next-error)
258 (define-key map [backtab] 'compilation-previous-error)
259
260 ;; Set up the menu-bar
261 (define-key map [menu-bar grep]
262 (cons "Grep" (make-sparse-keymap "Grep")))
263
264 (define-key map [menu-bar grep compilation-kill-compilation]
265 '(menu-item "Kill Grep" kill-compilation
266 :help "Kill the currently running grep process"))
267 (define-key map [menu-bar grep compilation-separator2] '("----"))
268 (define-key map [menu-bar grep compilation-compile]
269 '(menu-item "Compile..." compile
270 :help "Compile the program including the current buffer. Default: run `make'"))
271 (define-key map [menu-bar grep compilation-rgrep]
272 '(menu-item "Recursive grep..." rgrep
273 :help "User-friendly recursive grep in directory tree"))
274 (define-key map [menu-bar grep compilation-lgrep]
275 '(menu-item "Local grep..." lgrep
276 :help "User-friendly grep in a directory"))
277 (define-key map [menu-bar grep compilation-grep-find]
278 '(menu-item "Grep via Find..." grep-find
279 :help "Run grep via find, with user-specified args"))
280 (define-key map [menu-bar grep compilation-grep]
281 '(menu-item "Another grep..." grep
282 :help "Run grep, with user-specified args, and collect output in a buffer."))
283 (define-key map [menu-bar grep compilation-recompile]
284 '(menu-item "Repeat grep" recompile
285 :help "Run grep again"))
286 (define-key map [menu-bar grep compilation-separator2] '("----"))
287 (define-key map [menu-bar grep compilation-first-error]
288 '(menu-item "First Match" first-error
289 :help "Restart at the first match, visit corresponding location"))
290 (define-key map [menu-bar grep compilation-previous-error]
291 '(menu-item "Previous Match" previous-error
292 :help "Visit the previous match and corresponding location"))
293 (define-key map [menu-bar grep compilation-next-error]
294 '(menu-item "Next Match" next-error
295 :help "Visit the next match and corresponding location"))
296 map)
297 "Keymap for grep buffers.
298 `compilation-minor-mode-map' is a cdr of this.")
299
300 (defvar grep-mode-tool-bar-map
301 ;; When bootstrapping, tool-bar-map is not properly initialized yet,
302 ;; so don't do anything.
303 (when (keymapp (butlast tool-bar-map))
304 (let ((map (butlast (copy-keymap tool-bar-map)))
305 (help (last tool-bar-map))) ;; Keep Help last in tool bar
306 (tool-bar-local-item
307 "left-arrow" 'previous-error-no-select 'previous-error-no-select map
308 :rtl "right-arrow"
309 :help "Goto previous match")
310 (tool-bar-local-item
311 "right-arrow" 'next-error-no-select 'next-error-no-select map
312 :rtl "left-arrow"
313 :help "Goto next match")
314 (tool-bar-local-item
315 "cancel" 'kill-compilation 'kill-compilation map
316 :enable '(let ((buffer (compilation-find-buffer)))
317 (get-buffer-process buffer))
318 :help "Stop grep")
319 (tool-bar-local-item
320 "refresh" 'recompile 'recompile map
321 :help "Restart grep")
322 (append map help))))
323
324 (defalias 'kill-grep 'kill-compilation)
325
326 ;;;; TODO --- refine this!!
327
328 ;; (defcustom grep-use-compilation-buffer t
329 ;; "When non-nil, grep specific commands update `compilation-last-buffer'.
330 ;; This means that standard compile commands like \\[next-error] and \\[compile-goto-error]
331 ;; can be used to navigate between grep matches (the default).
332 ;; Otherwise, the grep specific commands like \\[grep-next-match] must
333 ;; be used to navigate between grep matches."
334 ;; :type 'boolean
335 ;; :group 'grep)
336
337 ;; override compilation-last-buffer
338 (defvar grep-last-buffer nil
339 "The most recent grep buffer.
340 A grep buffer becomes most recent when you select Grep mode in it.
341 Notice that using \\[next-error] or \\[compile-goto-error] modifies
342 `complation-last-buffer' rather than `grep-last-buffer'.")
343
344 ;;;###autoload
345 (defconst grep-regexp-alist
346 '(("^\\(.+?\\)\\(:[ \t]*\\)\\([1-9][0-9]*\\)\\2"
347 1 3)
348 ;; Rule to match column numbers is commented out since no known grep
349 ;; produces them
350 ;; ("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2\\(?:\\([0-9]+\\)\\(?:-\\([0-9]+\\)\\)?\\2\\)?"
351 ;; 1 3 (4 . 5))
352 ;; Note that we want to use as tight a regexp as we can to try and
353 ;; handle weird file names (with colons in them) as well as possible.
354 ;; E.g. we use [1-9][0-9]* rather than [0-9]+ so as to accept ":034:" in
355 ;; file names.
356 ("^\\(\\(.+?\\):\\([1-9][0-9]*\\):\\).*?\
357 \\(\033\\[01;31m\\(?:\033\\[K\\)?\\)\\(.*?\\)\\(\033\\[[0-9]*m\\)"
358 2 3
359 ;; Calculate column positions (beg . end) of first grep match on a line
360 ((lambda ()
361 (setq compilation-error-screen-columns nil)
362 (- (match-beginning 4) (match-end 1)))
363 .
364 (lambda () (- (match-end 5) (match-end 1)
365 (- (match-end 4) (match-beginning 4)))))
366 nil 1)
367 ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))
368 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
369
370 (defvar grep-error "grep hit"
371 "Message to print when no matches are found.")
372
373 ;; Reverse the colors because grep hits are not errors (though we jump there
374 ;; with `next-error'), and unreadable files can't be gone to.
375 (defvar grep-hit-face compilation-info-face
376 "Face name to use for grep hits.")
377
378 (defvar grep-error-face 'compilation-error
379 "Face name to use for grep error messages.")
380
381 (defvar grep-match-face 'match
382 "Face name to use for grep matches.")
383
384 (defvar grep-context-face 'shadow
385 "Face name to use for grep context lines.")
386
387 (defvar grep-mode-font-lock-keywords
388 '(;; Command output lines.
389 (": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$"
390 1 grep-error-face)
391 ;; remove match from grep-regexp-alist before fontifying
392 ("^Grep[/a-zA-z]* started.*"
393 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t))
394 ("^Grep[/a-zA-z]* finished \\(?:(\\(matches found\\))\\|with \\(no matches found\\)\\).*"
395 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t)
396 (1 compilation-info-face nil t)
397 (2 compilation-warning-face nil t))
398 ("^Grep[/a-zA-z]* \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
399 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t)
400 (1 grep-error-face)
401 (2 grep-error-face nil t))
402 ("^.+?-[0-9]+-.*\n" (0 grep-context-face)))
403 "Additional things to highlight in grep output.
404 This gets tacked on the end of the generated expressions.")
405
406 ;;;###autoload
407 (defvar grep-program (purecopy "grep")
408 "The default grep program for `grep-command' and `grep-find-command'.
409 This variable's value takes effect when `grep-compute-defaults' is called.")
410
411 ;;;###autoload
412 (defvar find-program (purecopy "find")
413 "The default find program for `grep-find-command'.
414 This variable's value takes effect when `grep-compute-defaults' is called.")
415
416 ;;;###autoload
417 (defvar xargs-program (purecopy "xargs")
418 "The default xargs program for `grep-find-command'.
419 See `grep-find-use-xargs'.
420 This variable's value takes effect when `grep-compute-defaults' is called.")
421
422 ;;;###autoload
423 (defvar grep-find-use-xargs nil
424 "How to invoke find and grep.
425 If `exec', use `find -exec {} ;'.
426 If `exec-plus' use `find -exec {} +'.
427 If `gnu', use `find -print0' and `xargs -0'.
428 Any other value means to use `find -print' and `xargs'.
429
430 This variable's value takes effect when `grep-compute-defaults' is called.")
431
432 ;; History of grep commands.
433 ;;;###autoload
434 (defvar grep-history nil)
435 ;;;###autoload
436 (defvar grep-find-history nil)
437
438 ;; History of lgrep and rgrep regexp and files args.
439 (defvar grep-regexp-history nil)
440 (defvar grep-files-history nil)
441
442 ;;;###autoload
443 (defun grep-process-setup ()
444 "Setup compilation variables and buffer for `grep'.
445 Set up `compilation-exit-message-function' and run `grep-setup-hook'."
446 (when (eq grep-highlight-matches 'auto-detect)
447 (grep-compute-defaults))
448 (unless (or (eq grep-highlight-matches 'auto-detect)
449 ;; Uses font-lock to parse color escapes. (Bug#8084)
450 (null font-lock-mode)
451 (null grep-highlight-matches))
452 ;; `setenv' modifies `process-environment' let-bound in `compilation-start'
453 ;; Any TERM except "dumb" allows GNU grep to use `--color=auto'
454 (setenv "TERM" "emacs-grep")
455 (setenv "GREP_OPTIONS"
456 (concat (getenv "GREP_OPTIONS")
457 " --color=" (if (eq grep-highlight-matches 'always)
458 "always" "auto")))
459 ;; GREP_COLOR is used in GNU grep 2.5.1, but deprecated in later versions
460 (setenv "GREP_COLOR" "01;31")
461 ;; GREP_COLORS is used in GNU grep 2.5.2 and later versions
462 (setenv "GREP_COLORS" "mt=01;31:fn=:ln=:bn=:se=:sl=:cx=:ne"))
463 (set (make-local-variable 'compilation-exit-message-function)
464 (lambda (status code msg)
465 (if (eq status 'exit)
466 ;; This relies on the fact that `compilation-start'
467 ;; sets buffer-modified to nil before running the command,
468 ;; so the buffer is still unmodified if there is no output.
469 (cond ((and (zerop code) (buffer-modified-p))
470 '("finished (matches found)\n" . "matched"))
471 ((or (= code 1) (not (buffer-modified-p)))
472 '("finished with no matches found\n" . "no match"))
473 (t
474 (cons msg code)))
475 (cons msg code))))
476 (run-hooks 'grep-setup-hook))
477
478 (defun grep-filter ()
479 "Handle match highlighting escape sequences inserted by the grep process.
480 This function is called from `compilation-filter-hook'."
481 (save-excursion
482 (forward-line 0)
483 (let ((end (point)) beg)
484 (goto-char compilation-filter-start)
485 (forward-line 0)
486 (setq beg (point))
487 ;; Only operate on whole lines so we don't get caught with part of an
488 ;; escape sequence in one chunk and the rest in another.
489 (when (< (point) end)
490 (setq end (copy-marker end))
491 ;; Highlight grep matches and delete marking sequences.
492 (while (re-search-forward "\033\\[0?1;31m\\(.*?\\)\033\\[[0-9]*m" end 1)
493 (replace-match (propertize (match-string 1)
494 'face nil 'font-lock-face grep-match-face)
495 t t))
496 ;; Delete all remaining escape sequences
497 (goto-char beg)
498 (while (re-search-forward "\033\\[[0-9;]*[mK]" end 1)
499 (replace-match "" t t))))))
500
501 (defun grep-probe (command args &optional func result)
502 (let (process-file-side-effects)
503 (equal (condition-case nil
504 (apply (or func 'process-file) command args)
505 (error nil))
506 (or result 0))))
507
508 ;;;###autoload
509 (defun grep-compute-defaults ()
510 ;; Keep default values.
511 (unless grep-host-defaults-alist
512 (add-to-list
513 'grep-host-defaults-alist
514 (cons nil
515 `((grep-command ,grep-command)
516 (grep-template ,grep-template)
517 (grep-use-null-device ,grep-use-null-device)
518 (grep-find-command ,grep-find-command)
519 (grep-find-template ,grep-find-template)
520 (grep-find-use-xargs ,grep-find-use-xargs)
521 (grep-highlight-matches ,grep-highlight-matches)))))
522 (let* ((host-id
523 (intern (or (file-remote-p default-directory) "localhost")))
524 (host-defaults (assq host-id grep-host-defaults-alist))
525 (defaults (assq nil grep-host-defaults-alist)))
526 ;; There are different defaults on different hosts. They must be
527 ;; computed for every host once.
528 (dolist (setting '(grep-command grep-template
529 grep-use-null-device grep-find-command
530 grep-find-template grep-find-use-xargs
531 grep-highlight-matches))
532 (set setting
533 (cadr (or (assq setting host-defaults)
534 (assq setting defaults)))))
535
536 (unless (or (not grep-use-null-device) (eq grep-use-null-device t))
537 (setq grep-use-null-device
538 (with-temp-buffer
539 (let ((hello-file (expand-file-name "HELLO" data-directory)))
540 (not
541 (and (if grep-command
542 ;; `grep-command' is already set, so
543 ;; use that for testing.
544 (grep-probe grep-command
545 `(nil t nil "^English" ,hello-file)
546 #'call-process-shell-command)
547 ;; otherwise use `grep-program'
548 (grep-probe grep-program
549 `(nil t nil "-nH" "^English" ,hello-file)))
550 (progn
551 (goto-char (point-min))
552 (looking-at
553 (concat (regexp-quote hello-file)
554 ":[0-9]+:English")))))))))
555 (unless (and grep-command grep-find-command
556 grep-template grep-find-template)
557 (let ((grep-options
558 (concat (if grep-use-null-device "-n" "-nH")
559 (if (grep-probe grep-program
560 `(nil nil nil "-e" "foo" ,null-device)
561 nil 1)
562 " -e"))))
563 (unless grep-command
564 (setq grep-command
565 (format "%s %s " grep-program grep-options)))
566 (unless grep-template
567 (setq grep-template
568 (format "%s <X> <C> %s <R> <F>" grep-program grep-options)))
569 (unless grep-find-use-xargs
570 (setq grep-find-use-xargs
571 (cond
572 ((grep-probe find-program
573 `(nil nil nil ,null-device "-exec" "echo"
574 "{}" "+"))
575 'exec-plus)
576 ((and
577 (grep-probe find-program `(nil nil nil ,null-device "-print0"))
578 (grep-probe xargs-program `(nil nil nil "-0" "-e" "echo")))
579 'gnu)
580 (t
581 'exec))))
582 (unless grep-find-command
583 (setq grep-find-command
584 (cond ((eq grep-find-use-xargs 'gnu)
585 ;; Windows shells need the program file name
586 ;; after the pipe symbol be quoted if they use
587 ;; forward slashes as directory separators.
588 (format "%s . -type f -print0 | \"%s\" -0 -e %s"
589 find-program xargs-program grep-command))
590 ((memq grep-find-use-xargs '(exec exec-plus))
591 (let ((cmd0 (format "%s . -type f -exec %s"
592 find-program grep-command))
593 (null (if grep-use-null-device
594 (format "%s " null-device)
595 "")))
596 (cons
597 (if (eq grep-find-use-xargs 'exec-plus)
598 (format "%s %s{} +" cmd0 null)
599 (format "%s {} %s%s" cmd0 null
600 (shell-quote-argument ";")))
601 (1+ (length cmd0)))))
602 (t
603 (format "%s . -type f -print | \"%s\" %s"
604 find-program xargs-program grep-command)))))
605 (unless grep-find-template
606 (setq grep-find-template
607 (let ((gcmd (format "%s <C> %s <R>"
608 grep-program grep-options))
609 (null (if grep-use-null-device
610 (format "%s " null-device)
611 "")))
612 (cond ((eq grep-find-use-xargs 'gnu)
613 (format "%s . <X> -type f <F> -print0 | \"%s\" -0 -e %s"
614 find-program xargs-program gcmd))
615 ((eq grep-find-use-xargs 'exec)
616 (format "%s . <X> -type f <F> -exec %s {} %s%s"
617 find-program gcmd null
618 (shell-quote-argument ";")))
619 ((eq grep-find-use-xargs 'exec-plus)
620 (format "%s . <X> -type f <F> -exec %s %s{} +"
621 find-program gcmd null))
622 (t
623 (format "%s . <X> -type f <F> -print | \"%s\" %s"
624 find-program xargs-program gcmd))))))))
625 (when (eq grep-highlight-matches 'auto-detect)
626 (setq grep-highlight-matches
627 (with-temp-buffer
628 (and (grep-probe grep-program '(nil t nil "--help"))
629 (progn
630 (goto-char (point-min))
631 (search-forward "--color" nil t))
632 ;; Windows and DOS pipes fail `isatty' detection in Grep.
633 (if (memq system-type '(windows-nt ms-dos))
634 'always 'auto)))))
635
636 ;; Save defaults for this host.
637 (setq grep-host-defaults-alist
638 (delete (assq host-id grep-host-defaults-alist)
639 grep-host-defaults-alist))
640 (add-to-list
641 'grep-host-defaults-alist
642 (cons host-id
643 `((grep-command ,grep-command)
644 (grep-template ,grep-template)
645 (grep-use-null-device ,grep-use-null-device)
646 (grep-find-command ,grep-find-command)
647 (grep-find-template ,grep-find-template)
648 (grep-find-use-xargs ,grep-find-use-xargs)
649 (grep-highlight-matches ,grep-highlight-matches))))))
650
651 (defun grep-tag-default ()
652 (or (and transient-mark-mode mark-active
653 (/= (point) (mark))
654 (buffer-substring-no-properties (point) (mark)))
655 (funcall (or find-tag-default-function
656 (get major-mode 'find-tag-default-function)
657 'find-tag-default))
658 ""))
659
660 (defun grep-default-command ()
661 "Compute the default grep command for \\[universal-argument] \\[grep] to offer."
662 (let ((tag-default (shell-quote-argument (grep-tag-default)))
663 ;; This a regexp to match single shell arguments.
664 ;; Could someone please add comments explaining it?
665 (sh-arg-re "\\(\\(?:\"\\(?:[^\"]\\|\\\\\"\\)+\"\\|'[^']+'\\|[^\"' \t\n]\\)+\\)")
666 (grep-default (or (car grep-history) grep-command)))
667 ;; In the default command, find the arg that specifies the pattern.
668 (when (or (string-match
669 (concat "[^ ]+\\s +\\(?:-[^ ]+\\s +\\)*"
670 sh-arg-re "\\(\\s +\\(\\S +\\)\\)?")
671 grep-default)
672 ;; If the string is not yet complete.
673 (string-match "\\(\\)\\'" grep-default))
674 ;; Maybe we will replace the pattern with the default tag.
675 ;; But first, maybe replace the file name pattern.
676 (condition-case nil
677 (unless (or (not (stringp buffer-file-name))
678 (when (match-beginning 2)
679 (save-match-data
680 (string-match
681 (wildcard-to-regexp
682 (file-name-nondirectory
683 (match-string 3 grep-default)))
684 (file-name-nondirectory buffer-file-name)))))
685 (setq grep-default (concat (substring grep-default
686 0 (match-beginning 2))
687 " *."
688 (file-name-extension buffer-file-name))))
689 ;; In case wildcard-to-regexp gets an error
690 ;; from invalid data.
691 (error nil))
692 ;; Now replace the pattern with the default tag.
693 (replace-match tag-default t t grep-default 1))))
694
695
696 ;;;###autoload
697 (define-compilation-mode grep-mode "Grep"
698 "Sets `grep-last-buffer' and `compilation-window-height'."
699 (setq grep-last-buffer (current-buffer))
700 (set (make-local-variable 'tool-bar-map) grep-mode-tool-bar-map)
701 (set (make-local-variable 'compilation-error-face)
702 grep-hit-face)
703 (set (make-local-variable 'compilation-error-regexp-alist)
704 grep-regexp-alist)
705 ;; compilation-directory-matcher can't be nil, so we set it to a regexp that
706 ;; can never match.
707 (set (make-local-variable 'compilation-directory-matcher) '("\\`a\\`"))
708 (set (make-local-variable 'compilation-process-setup-function)
709 'grep-process-setup)
710 (set (make-local-variable 'compilation-disable-input) t)
711 (add-hook 'compilation-filter-hook 'grep-filter nil t))
712
713
714 ;;;###autoload
715 (defun grep (command-args)
716 "Run grep, with user-specified args, and collect output in a buffer.
717 While grep runs asynchronously, you can use \\[next-error] (M-x next-error),
718 or \\<grep-mode-map>\\[compile-goto-error] in the grep \
719 output buffer, to go to the lines where grep
720 found matches.
721
722 For doing a recursive `grep', see the `rgrep' command. For running
723 `grep' in a specific directory, see `lgrep'.
724
725 This command uses a special history list for its COMMAND-ARGS, so you
726 can easily repeat a grep command.
727
728 A prefix argument says to default the argument based upon the current
729 tag the cursor is over, substituting it into the last grep command
730 in the grep command history (or into `grep-command' if that history
731 list is empty)."
732 (interactive
733 (progn
734 (grep-compute-defaults)
735 (let ((default (grep-default-command)))
736 (list (read-shell-command "Run grep (like this): "
737 (if current-prefix-arg default grep-command)
738 'grep-history
739 (if current-prefix-arg nil default))))))
740
741 ;; Setting process-setup-function makes exit-message-function work
742 ;; even when async processes aren't supported.
743 (compilation-start (if (and grep-use-null-device null-device)
744 (concat command-args " " null-device)
745 command-args)
746 'grep-mode))
747
748
749 ;;;###autoload
750 (defun grep-find (command-args)
751 "Run grep via find, with user-specified args COMMAND-ARGS.
752 Collect output in a buffer.
753 While find runs asynchronously, you can use the \\[next-error] command
754 to find the text that grep hits refer to.
755
756 This command uses a special history list for its arguments, so you can
757 easily repeat a find command."
758 (interactive
759 (progn
760 (grep-compute-defaults)
761 (if grep-find-command
762 (list (read-shell-command "Run find (like this): "
763 grep-find-command 'grep-find-history))
764 ;; No default was set
765 (read-string
766 "compile.el: No `grep-find-command' command available. Press RET.")
767 (list nil))))
768 (when command-args
769 (let ((null-device nil)) ; see grep
770 (grep command-args))))
771
772 ;;;###autoload
773 (defalias 'find-grep 'grep-find)
774
775
776 ;; User-friendly interactive API.
777
778 (defconst grep-expand-keywords
779 '(("<C>" . (and cf (isearch-no-upper-case-p regexp t) "-i"))
780 ("<D>" . dir)
781 ("<F>" . files)
782 ("<N>" . null-device)
783 ("<X>" . excl)
784 ("<R>" . (shell-quote-argument (or regexp ""))))
785 "List of substitutions performed by `grep-expand-template'.
786 If car of an element matches, the cdr is evalled in to get the
787 substitution string. Note dynamic scoping of variables.")
788
789 (defun grep-expand-template (template &optional regexp files dir excl)
790 "Patch grep COMMAND string replacing <C>, <D>, <F>, <R>, and <X>."
791 (let ((command template)
792 (cf case-fold-search)
793 (case-fold-search nil))
794 (dolist (kw grep-expand-keywords command)
795 (if (string-match (car kw) command)
796 (setq command
797 (replace-match
798 (or (if (symbolp (cdr kw))
799 (symbol-value (cdr kw))
800 (save-match-data (eval (cdr kw))))
801 "")
802 t t command))))))
803
804 (defun grep-read-regexp ()
805 "Read regexp arg for interactive grep."
806 (let ((default (grep-tag-default)))
807 (read-string
808 (concat "Search for"
809 (if (and default (> (length default) 0))
810 (format " (default \"%s\"): " default) ": "))
811 nil 'grep-regexp-history default)))
812
813 (defun grep-read-files (regexp)
814 "Read files arg for interactive grep."
815 (let* ((bn (or (buffer-file-name)
816 (replace-regexp-in-string "<[0-9]+>\\'" "" (buffer-name))))
817 (fn (and bn
818 (stringp bn)
819 (file-name-nondirectory bn)))
820 (default-alias
821 (and fn
822 (let ((aliases (remove (assoc "all" grep-files-aliases)
823 grep-files-aliases))
824 alias)
825 (while aliases
826 (setq alias (car aliases)
827 aliases (cdr aliases))
828 (if (string-match (mapconcat
829 'wildcard-to-regexp
830 (split-string (cdr alias) nil t)
831 "\\|")
832 fn)
833 (setq aliases nil)
834 (setq alias nil)))
835 (cdr alias))))
836 (default-extension
837 (and fn
838 (let ((ext (file-name-extension fn)))
839 (and ext (concat "*." ext)))))
840 (default
841 (or default-alias
842 default-extension
843 (car grep-files-history)
844 (car (car grep-files-aliases))))
845 (files (completing-read
846 (concat "Search for \"" regexp
847 "\" in files"
848 (if default (concat " (default " default ")"))
849 ": ")
850 'read-file-name-internal
851 nil nil nil 'grep-files-history
852 (delete-dups
853 (delq nil (append (list default default-alias default-extension)
854 (mapcar 'car grep-files-aliases)))))))
855 (and files
856 (or (cdr (assoc files grep-files-aliases))
857 files))))
858
859 ;;;###autoload
860 (defun lgrep (regexp &optional files dir confirm)
861 "Run grep, searching for REGEXP in FILES in directory DIR.
862 The search is limited to file names matching shell pattern FILES.
863 FILES may use abbreviations defined in `grep-files-aliases', e.g.
864 entering `ch' is equivalent to `*.[ch]'.
865
866 With \\[universal-argument] prefix, you can edit the constructed shell command line
867 before it is executed.
868 With two \\[universal-argument] prefixes, directly edit and run `grep-command'.
869
870 Collect output in a buffer. While grep runs asynchronously, you
871 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
872 in the grep output buffer,
873 to go to the lines where grep found matches.
874
875 This command shares argument histories with \\[rgrep] and \\[grep]."
876 (interactive
877 (progn
878 (grep-compute-defaults)
879 (cond
880 ((and grep-command (equal current-prefix-arg '(16)))
881 (list (read-from-minibuffer "Run: " grep-command
882 nil nil 'grep-history)))
883 ((not grep-template)
884 (error "grep.el: No `grep-template' available"))
885 (t (let* ((regexp (grep-read-regexp))
886 (files (grep-read-files regexp))
887 (dir (read-directory-name "In directory: "
888 nil default-directory t))
889 (confirm (equal current-prefix-arg '(4))))
890 (list regexp files dir confirm))))))
891 (when (and (stringp regexp) (> (length regexp) 0))
892 (unless (and dir (file-directory-p dir) (file-readable-p dir))
893 (setq dir default-directory))
894 (let ((command regexp))
895 (if (null files)
896 (if (string= command grep-command)
897 (setq command nil))
898 (setq dir (file-name-as-directory (expand-file-name dir)))
899 (setq command (grep-expand-template
900 grep-template
901 regexp
902 files
903 nil
904 (and grep-find-ignored-files
905 (concat " --exclude="
906 (mapconcat
907 #'(lambda (ignore)
908 (cond ((stringp ignore)
909 (shell-quote-argument ignore))
910 ((consp ignore)
911 (and (funcall (car ignore) dir)
912 (shell-quote-argument
913 (cdr ignore))))))
914 grep-find-ignored-files
915 " --exclude=")))))
916 (when command
917 (if confirm
918 (setq command
919 (read-from-minibuffer "Confirm: "
920 command nil nil 'grep-history))
921 (add-to-history 'grep-history command))))
922 (when command
923 (let ((default-directory dir))
924 ;; Setting process-setup-function makes exit-message-function work
925 ;; even when async processes aren't supported.
926 (compilation-start (if (and grep-use-null-device null-device)
927 (concat command " " null-device)
928 command)
929 'grep-mode))
930 (if (eq next-error-last-buffer (current-buffer))
931 (setq default-directory dir))))))
932
933
934 (defvar find-name-arg) ; not autoloaded but defined in find-dired
935
936 ;;;###autoload
937 (defun rgrep (regexp &optional files dir confirm)
938 "Recursively grep for REGEXP in FILES in directory tree rooted at DIR.
939 The search is limited to file names matching shell pattern FILES.
940 FILES may use abbreviations defined in `grep-files-aliases', e.g.
941 entering `ch' is equivalent to `*.[ch]'.
942
943 With \\[universal-argument] prefix, you can edit the constructed shell command line
944 before it is executed.
945 With two \\[universal-argument] prefixes, directly edit and run `grep-find-command'.
946
947 Collect output in a buffer. While find runs asynchronously, you
948 can use \\[next-error] (M-x next-error), or \\<grep-mode-map>\\[compile-goto-error] \
949 in the grep output buffer,
950 to go to the lines where grep found matches.
951
952 This command shares argument histories with \\[lgrep] and \\[grep-find]."
953 (interactive
954 (progn
955 (grep-compute-defaults)
956 (cond
957 ((and grep-find-command (equal current-prefix-arg '(16)))
958 (list (read-from-minibuffer "Run: " grep-find-command
959 nil nil 'grep-find-history)))
960 ((not grep-find-template)
961 (error "grep.el: No `grep-find-template' available"))
962 (t (let* ((regexp (grep-read-regexp))
963 (files (grep-read-files regexp))
964 (dir (read-directory-name "Base directory: "
965 nil default-directory t))
966 (confirm (equal current-prefix-arg '(4))))
967 (list regexp files dir confirm))))))
968 (when (and (stringp regexp) (> (length regexp) 0))
969 (unless (and dir (file-directory-p dir) (file-readable-p dir))
970 (setq dir default-directory))
971 (if (null files)
972 (if (not (string= regexp (if (consp grep-find-command)
973 (car grep-find-command)
974 grep-find-command)))
975 (compilation-start regexp 'grep-mode))
976 (setq dir (file-name-as-directory (expand-file-name dir)))
977 (require 'find-dired) ; for `find-name-arg'
978 (let ((command (grep-expand-template
979 grep-find-template
980 regexp
981 (concat (shell-quote-argument "(")
982 " " find-name-arg " "
983 (mapconcat #'shell-quote-argument
984 (split-string files)
985 (concat " -o " find-name-arg " "))
986 " "
987 (shell-quote-argument ")"))
988 dir
989 (concat
990 (and grep-find-ignored-directories
991 (concat (shell-quote-argument "(")
992 ;; we should use shell-quote-argument here
993 " -path "
994 (mapconcat
995 #'(lambda (ignore)
996 (cond ((stringp ignore)
997 (shell-quote-argument
998 (concat "*/" ignore)))
999 ((consp ignore)
1000 (and (funcall (car ignore) dir)
1001 (shell-quote-argument
1002 (concat "*/"
1003 (cdr ignore)))))))
1004 grep-find-ignored-directories
1005 " -o -path ")
1006 " "
1007 (shell-quote-argument ")")
1008 " -prune -o "))
1009 (and grep-find-ignored-files
1010 (concat (shell-quote-argument "(")
1011 ;; we should use shell-quote-argument here
1012 " -name "
1013 (mapconcat
1014 #'(lambda (ignore)
1015 (cond ((stringp ignore)
1016 (shell-quote-argument ignore))
1017 ((consp ignore)
1018 (and (funcall (car ignore) dir)
1019 (shell-quote-argument
1020 (cdr ignore))))))
1021 grep-find-ignored-files
1022 " -o -name ")
1023 " "
1024 (shell-quote-argument ")")
1025 " -prune -o "))))))
1026 (when command
1027 (if confirm
1028 (setq command
1029 (read-from-minibuffer "Confirm: "
1030 command nil nil 'grep-find-history))
1031 (add-to-history 'grep-find-history command))
1032 (let ((default-directory dir))
1033 (compilation-start command 'grep-mode))
1034 ;; Set default-directory if we started rgrep in the *grep* buffer.
1035 (if (eq next-error-last-buffer (current-buffer))
1036 (setq default-directory dir)))))))
1037
1038 ;;;###autoload
1039 (defun zrgrep (regexp &optional files dir confirm grep-find-template)
1040 "Recursively grep for REGEXP in gzipped FILES in tree rooted at DIR.
1041 Like `rgrep' but uses `zgrep' for `grep-program', sets the default
1042 file name to `*.gz', and sets `grep-highlight-matches' to `always'."
1043 (interactive
1044 (progn
1045 ;; Compute standard default values.
1046 (grep-compute-defaults)
1047 ;; Compute the default zrgrep command by running `grep-compute-defaults'
1048 ;; for grep program "zgrep", but not changing global values.
1049 (let ((grep-program "zgrep")
1050 ;; Don't change global values for variables computed
1051 ;; by `grep-compute-defaults'.
1052 (grep-find-template nil)
1053 (grep-find-command nil)
1054 (grep-host-defaults-alist nil)
1055 ;; Use for `grep-read-files'
1056 (grep-files-aliases '(("all" . "* .*")
1057 ("gz" . "*.gz"))))
1058 ;; Recompute defaults using let-bound values above.
1059 (grep-compute-defaults)
1060 (cond
1061 ((and grep-find-command (equal current-prefix-arg '(16)))
1062 (list (read-from-minibuffer "Run: " grep-find-command
1063 nil nil 'grep-find-history)))
1064 ((not grep-find-template)
1065 (error "grep.el: No `grep-find-template' available"))
1066 (t (let* ((regexp (grep-read-regexp))
1067 (files (grep-read-files regexp))
1068 (dir (read-directory-name "Base directory: "
1069 nil default-directory t))
1070 (confirm (equal current-prefix-arg '(4))))
1071 (list regexp files dir confirm grep-find-template)))))))
1072 ;; Set `grep-highlight-matches' to `always'
1073 ;; since `zgrep' puts filters in the grep output.
1074 (let ((grep-highlight-matches 'always))
1075 ;; `rgrep' uses the dynamically bound value `grep-find-template'
1076 ;; from the argument `grep-find-template' whose value is computed
1077 ;; in the `interactive' spec.
1078 (rgrep regexp files dir confirm)))
1079
1080 ;;;###autoload
1081 (defalias 'rzgrep 'zrgrep)
1082
1083 (provide 'grep)
1084
1085 ;;; grep.el ends here