]> git.eshelyaron.com Git - emacs.git/commitdiff
Search recursively in gzipped files. (Bug#4982)
authorJuri Linkov <juri@jurta.org>
Wed, 25 Nov 2009 17:23:45 +0000 (17:23 +0000)
committerJuri Linkov <juri@jurta.org>
Wed, 25 Nov 2009 17:23:45 +0000 (17:23 +0000)
(grep-highlight-matches): Add new options
`always' and `auto'.  Doc fix.
(grep-process-setup): Check `grep-highlight-matches' for
`auto-detect' to determine the need to compute grep defaults.
Move Windows/DOS specific --colors settings handling
to `grep-compute-defaults'.  Check `grep-highlight-matches'
to get the value of "--color=".
(grep-compute-defaults): Compute `grep-highlight-matches' when it
has the value `auto-detect'.  Move Windows/DOS specific settings
from `grep-process-setup'.
(zrgrep): New command with alias `rzgrep'.

etc/NEWS
lisp/ChangeLog
lisp/progmodes/grep.el

index 2f288cba0455a2db1a02e00527cafff12a3679c8..47aab758151ba202ee36bdd9beef243aacf0abb2 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -208,6 +208,10 @@ This probably affects a lot of documentation.
 
 ** FIXME gdb-mi
 
+** Grep
+
+A new command `zrgrep' searches recursively in gzipped files.
+
 ** Info
 
 *** The new command `Info-virtual-index' bound to "I" displays a menu of
index e9c6242796783c1b91b50bcd6344e219b08d502f..4b3fb327208f4f941d1c9342e73e6f8a31b4ea38 100644 (file)
@@ -1,3 +1,19 @@
+2009-11-25  Juri Linkov  <juri@jurta.org>
+
+       Search recursively in gzipped files.  (Bug#4982)
+
+       * progmodes/grep.el (grep-highlight-matches): Add new options
+       `always' and `auto'.  Doc fix.
+       (grep-process-setup): Check `grep-highlight-matches' for
+       `auto-detect' to determine the need to compute grep defaults.
+       Move Windows/DOS specific --colors settings handling
+       to `grep-compute-defaults'.  Check `grep-highlight-matches'
+       to get the value of "--color=".
+       (grep-compute-defaults): Compute `grep-highlight-matches' when it
+       has the value `auto-detect'.  Move Windows/DOS specific settings
+       from `grep-process-setup'.
+       (zrgrep): New command with alias `rzgrep'.
+
 2009-11-25  Juri Linkov  <juri@jurta.org>
 
        * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
index c1d19c37bc8b7a5229508c30a9d8b7da3ea6ce6d..1b47d30b703c88fbf6bc905f8721342ebbfb3144 100644 (file)
@@ -69,22 +69,34 @@ SYMBOL should be one of `grep-command', `grep-template',
   :group 'grep)
 
 (defcustom grep-highlight-matches 'auto-detect
-  "If t, use special markers to highlight grep matches.
+  "Use special markers to highlight grep matches.
 
 Some grep programs are able to surround matches with special
 markers in grep output.  Such markers can be used to highlight
 matches in grep mode.
 
-This option sets the environment variable GREP_COLOR to specify
+This option sets the environment variable GREP_COLORS to specify
 markers for highlighting and GREP_OPTIONS to add the --color
 option in front of any explicit grep options before starting
 the grep.
 
+When this option is `auto', grep uses `--color=auto' to highlight
+matches only when it outputs to a terminal (when `grep' is the last
+command in the pipe), thus avoiding the use of any potentially-harmful
+escape sequences when standard output goes to a file or pipe.
+
+To make grep highlight matches even into a pipe, you need the option
+`always' that forces grep to use `--color=always' to unconditionally
+output escape sequences.
+
 In interactive usage, the actual value of this variable is set up
-by `grep-compute-defaults'; to change the default value, use
-Customize or call the function `grep-apply-setting'."
+by `grep-compute-defaults' when the default value is `auto-detect'.
+To change the default value, use Customize or call the function
+`grep-apply-setting'."
   :type '(choice (const :tag "Do not highlight matches with grep markers" nil)
                 (const :tag "Highlight matches with grep markers" t)
+                (const :tag "Use --color=always" always)
+                (const :tag "Use --color=auto" auto)
                 (other :tag "Not Set" auto-detect))
   :set 'grep-apply-setting
   :version "22.1"
@@ -442,19 +454,16 @@ This variable's value takes effect when `grep-compute-defaults' is called.")
 (defun grep-process-setup ()
   "Setup compilation variables and buffer for `grep'.
 Set up `compilation-exit-message-function' and run `grep-setup-hook'."
-  (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
+  (when (eq grep-highlight-matches 'auto-detect)
     (grep-compute-defaults))
-  (when (eq grep-highlight-matches t)
+  (unless (or (eq grep-highlight-matches 'auto-detect)
+             (null grep-highlight-matches))
     ;; `setenv' modifies `process-environment' let-bound in `compilation-start'
     ;; Any TERM except "dumb" allows GNU grep to use `--color=auto'
     (setenv "TERM" "emacs-grep")
-    ;; `--color=auto' emits escape sequences on a tty rather than on a pipe,
-    ;; thus allowing to use multiple grep filters on the command line
-    ;; and to output escape sequences only on the final grep output
     (setenv "GREP_OPTIONS"
            (concat (getenv "GREP_OPTIONS")
-                   ;; Windows and DOS pipes fail `isatty' detection in Grep.
-                   " --color=" (if (memq system-type '(windows-nt ms-dos))
+                   " --color=" (if (eq grep-highlight-matches 'always)
                                    "always" "auto")))
     ;; GREP_COLOR is used in GNU grep 2.5.1, but deprecated in later versions
     (setenv "GREP_COLOR" "01;31")
@@ -579,14 +588,16 @@ Set up `compilation-exit-message-function' and run `grep-setup-hook'."
                        (t
                         (format "%s . <X> -type f <F> -print | %s %s"
                                 find-program xargs-program gcmd))))))))
-    (unless (or (not grep-highlight-matches) (eq grep-highlight-matches t))
+    (when (eq grep-highlight-matches 'auto-detect)
       (setq grep-highlight-matches
            (with-temp-buffer
              (and (grep-probe grep-program '(nil t nil "--help"))
                   (progn
                     (goto-char (point-min))
                     (search-forward "--color" nil t))
-                  t))))
+                  ;; Windows and DOS pipes fail `isatty' detection in Grep.
+                  (if (memq system-type '(windows-nt ms-dos))
+                      'always 'auto)))))
 
     ;; Save defaults for this host.
     (setq grep-host-defaults-alist
@@ -978,6 +989,42 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]."
          (if (eq next-error-last-buffer (current-buffer))
              (setq default-directory dir)))))))
 
+;;;###autoload
+(defun zrgrep (regexp &optional files dir confirm grep-find-template)
+  "Recursively grep for REGEXP in gzipped FILES in tree rooted at DIR.
+Like `rgrep' but uses `zgrep' for `grep-program', sets the default
+file name to `*.gz', and sets `grep-highlight-matches' to `always'."
+  (interactive
+   (let ((grep-program "zgrep")
+        (grep-find-template nil)  ; output of `grep-compute-defaults'
+        (grep-find-command nil)
+        (grep-host-defaults-alist nil)
+        (grep-files-aliases '(("*.gz" . "*.gz") ; for `grep-read-files'
+                              ("all" . "* .*"))))
+     ;; Recompute defaults using let-bound values above.
+     (grep-compute-defaults)
+     (cond
+      ((and grep-find-command (equal current-prefix-arg '(16)))
+       (list (read-from-minibuffer "Run: " grep-find-command
+                                  nil nil 'grep-find-history)))
+      ((not grep-find-template)
+       (error "grep.el: No `grep-find-template' available"))
+      (t (let* ((regexp (grep-read-regexp))
+               (files (grep-read-files regexp))
+               (dir (read-directory-name "Base directory: "
+                                         nil default-directory t))
+               (confirm (equal current-prefix-arg '(4))))
+          (list regexp files dir confirm grep-find-template))))))
+  ;; Set `grep-highlight-matches' to `always'
+  ;; since `zgrep' puts filters in the grep output.
+  (let ((grep-highlight-matches 'always))
+    ;; `rgrep' uses the dynamically bound value `grep-find-template'
+    ;; from the argument `grep-find-template' whose value is computed
+    ;; in the `interactive' spec.
+    (rgrep regexp files dir confirm)))
+
+;;;###autoload
+(defalias 'rzgrep 'zrgrep)
 
 (provide 'grep)