-
Notifications
You must be signed in to change notification settings - Fork 13
/
ack.el
534 lines (472 loc) · 21.5 KB
/
ack.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
;;; ack.el --- interface to ack-like tools -*- lexical-binding: t; -*-
;; Copyright (C) 2012-2022 Free Software Foundation, Inc.
;; Author: Leo Liu <[email protected]>
;; Maintainer: João Távora <[email protected]>
;; Version: 1.11
;; Keywords: tools, processes, convenience
;; Created: 2012-03-24
;; URL: https://github.com/leoliu/ack-el
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This package was originally written to provide an interface to ack
;; http://beyondgrep.com -- a tool like grep, designed for programmers
;; with large trees of heterogeneous source code. It builds on
;; standard packages `compile.el' and `ansi-color.el' and lets you
;; seamlessly run `ack' with its large set of options.
;;
;; Later it was enhanced to also support ack-like tools such as the
;; silver search (ag) and git/hg/bzr grep facilities. So, while the
;; name persists, actually using `ack' program is merely a suggestion.
;;
;; The basic usage pattern starts with `M-x ack', which will compose a
;; suitable command-line in the minibuffer. A good variable to
;; customize early on is `ack-defaults-function', which controls how
;; this command can be modulated by one of more `C-u''s to control
;; this process.
;;
;; If `ack-defaults-function' is `ack-quickgrep-defaults':
;;
;; + Type `M-x ack' to start searching immediately for the thing
;; at point from the current project root.
;; + Type `C-u M-x ack' to do the same but get a chance to edit the line.
;; + Type `C-u C-u M-x ack' to interactively choose a directory to
;; search from.
;;
;; If `ack-defaults-function' is `ack-legacy-defaults':
;;
;; + Type `M-x ack' and provide a pattern to search.
;; + Type `C-u M-x ack' to search from current project root.
;; + Type `C-u C-u M-x ack' to interactively choose a directory to
;; search.
;;
;; Read the docstrings of `ack-quickgrep-defaults' and
;; `ack-legacy-defaults' for finer details.
;;
;; Regardless of what function you put in `ack-defaults-function',
;; when editing the minibuffer the following key bindings may be
;; useful:
;;
;; + `M-I' inserts a template for case-insensitive file name search
;; + `M-G' inserts a template for `git grep', `hg grep' or `bzr grep'
;; + `M-Y' inserts the symbol at point from the window before entering
;; the minibuffer
;; + `TAB' completes ack options
;;; Supported tools:
;; + ack
;; + grep
;; + the_silver_search
;; + git/hg/bzr grep
;;; Bugs: https://github.com/leoliu/ack-el/issues
;;; Code:
(require 'compile)
(require 'pcase)
(require 'ansi-color)
(require 'thingatpt)
(autoload 'shell-completion-vars "shell")
(eval-when-compile
(unless (fboundp 'setq-local)
(defmacro setq-local (var val)
(list 'set (list 'make-local-variable (list 'quote var)) val))))
(defgroup ack nil
"Run `ack' and display the results."
:group 'tools
:group 'processes)
;; Used implicitly by `define-compilation-mode'
(defcustom ack-scroll-output nil
"Similar to `compilation-scroll-output' but for the *Ack* buffer."
:type 'boolean
:group 'ack)
(defcustom ack-command
;; Note: on GNU/Linux ack may be renamed to ack-grep
(concat (file-name-nondirectory (or
(executable-find "ack-grep")
(executable-find "ack")
(executable-find "ag")
(concat
(executable-find "rg")
" -n -H -S --no-heading --color always -e")
"ack")) " ")
"The default command for \\[ack].
Note also options to ack can be specified in ACK_OPTIONS
environment variable and .ackrc, which you can disable by the
--noenv switch."
:type 'string
:safe 'stringp
:group 'ack)
(defcustom ack-buffer-name-function nil
"If non-nil, a function to compute the name of an ack buffer.
See `compilation-buffer-name-function' for details."
:type '(choice function (const nil))
:group 'ack)
(defcustom ack-vc-grep-commands
'((".git" . "git --no-pager grep --color -n -i")
(".hg" . "hg grep -n -i")
;; Plugin bzr-grep required for bzr < 2.6
(".bzr" . "bzr grep --color=always -n -i"))
"An alist of vc grep commands for `ack-skel-vc-grep'.
Each element is of the form (VC_DIR . CMD)."
:type '(repeat (cons string string))
:group 'ack)
(define-obsolete-variable-alias
'ack-default-directory-function
'ack-defaults-function
"1.7")
(define-obsolete-function-alias 'ack-default-directory
'ack-legacy-defaults "1.7")
(defcustom ack-defaults-function 'ack-quickgrep-defaults
"A function to return a default parametrization for `ack'.
It is called with one arg, the prefix arg to `ack'. It may
return a single element, a string, which is the directory under
which the `ack' command will be run. It may also return a list
of (DIR AUTO-CONFIRM . SETUP-FUNCTIONS) which where DIR is a
directory like previously described, AUTO-CONFIRM says to
automatically confirm the minibuffer and SETUP-FUNCTIONS are
added at the end of `ack-minibuffer-setup-hook'.
Two functions are provided for the user to plug here:
`ack-legacy-defaults' and `ack-quickgrep-defaults' (see their
docstrings)."
:type '(choice (const :tag "Use \"quickgrep\" defaults"
ack-quickgrep-defaults)
(const :tag "Use \"legacy\" defaults"
ack-legacy-defaults)
(function :tag "Use some other function"))
:group 'ack)
(defcustom ack-project-root-patterns
(list (concat "\\`" (regexp-quote dir-locals-file) "\\'")
"\\`Project\\.ede\\'"
"\\.xcodeproj\\'" ; xcode
"\\`\\.ropeproject\\'" ; python rope
"\\`\\.\\(?:CVS\\|bzr\\|git\\|hg\\|svn\\)\\'")
"A list of regexps to match files in a project root.
Used by `ack-guess-project-root'."
:type '(repeat string)
:group 'ack)
(defcustom ack-minibuffer-setup-hook nil
"Ack-specific hook for `minibuffer-setup-hook'."
:type 'hook
:group 'ack)
;;; ======== END of USER OPTIONS ========
(defvar ack-history nil "History list for ack.")
(defvar ack-first-column 0
"Value to use for `compilation-first-column' in ack buffers.")
(defvar ack-error-screen-columns nil
"Value to use for `compilation-error-screen-columns' in ack buffers.")
(defvar ack-error "ack match"
"Stem of message to print when no matches are found.")
(defvar ack-finish-functions nil
"Value to use for `compilation-finish-functions' in ack buffers.")
(defun ack-filter ()
"Handle match highlighting escape sequences inserted by the ack process.
This function is called from `compilation-filter-hook'."
(save-excursion
(let ((ansi-color-apply-face-function
(lambda (beg end face)
(when face
(ansi-color-apply-overlay-face beg end face)
(put-text-property beg end 'ack-color t)))))
(ansi-color-apply-on-region compilation-filter-start (point)))))
(defvar ack-mode-font-lock-keywords
'(("^--$" 0 'shadow)
;; Command output lines.
(": \\(.+\\): \\(?:Permission denied\\|No such \\(?:file or directory\\|device or address\\)\\)$"
1 'compilation-error)
("^Ack \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
(1 'compilation-error)
(2 'compilation-error nil t)))
"Additional things to highlight in ack output.
This gets tacked on the end of the generated expressions.")
(defun ack--column-start ()
(or (let* ((beg (match-end 0))
(end (save-excursion
(goto-char beg)
(line-end-position)))
(mbeg (text-property-any beg end 'ack-color t)))
(when mbeg (- mbeg beg)))
;; Use column number from `ack' itself if available
(when (match-string 4)
(1- (string-to-number (match-string 4))))))
(defun ack--column-end ()
(let* ((beg (match-end 0))
(end (save-excursion
(goto-char beg)
(line-end-position)))
(mbeg (text-property-any beg end 'ack-color t))
(mend (and mbeg (next-single-property-change
mbeg 'ack-color nil end))))
(when mend (- mend beg))))
(defun ack--file ()
(let (file)
(save-excursion
(while (progn
(forward-line -1)
(looking-at-p "^--$")))
(setq file (or (get-text-property (line-beginning-position) 'ack-file)
(progn
(put-text-property (line-beginning-position)
(line-end-position)
'font-lock-face compilation-info-face)
(buffer-substring-no-properties
(line-beginning-position) (line-end-position))))))
(put-text-property (line-beginning-position)
(min (1+ (line-end-position)) (point-max)) 'ack-file file)
(list file)))
;;; `compilation-mode-font-lock-keywords' ->
;;; `compilation--ensure-parse' -> `compilation--parse-region' ->
;;; `compilation-parse-errors' -> `compilation-error-properties'.
;;; `compilation-error-properties' returns nil if a previous pattern
;;; in the regexp alist has already been applied in a region.
(defconst ack-error-regexp-alist
`(;; Grouping line (--group or --heading).
("^\\([1-9][0-9]*\\)\\(:\\|-\\)\\(?:\\(?4:[1-9][0-9]*\\)\\2\\)?"
ack--file 1 (ack--column-start . ack--column-end)
nil nil (4 compilation-column-face nil t))
;; None grouping line (--nogroup or --noheading). Avoid matching
;; 'Ack started at Thu Jun 6 12:27:53'.
("^\\(.+?\\)\\(:\\)\\([1-9][0-9]*\\)\\2\\(?:\\(?:\\(?4:[1-9][0-9]*\\)\\2\\)\\|[^0-9\n]\\|[0-9][^0-9\n]\\|...\\)"
1 3 (ack--column-start . ack--column-end)
nil 1 (4 compilation-column-face nil t))
("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))
"Ack version of `compilation-error-regexp-alist' (which see).")
(defvar ack-process-setup-function 'ack-process-setup)
(defun ack-process-setup ()
;; Handle `hg grep' output
(when (string-match-p "^[ \t]*hg[ \t]" (car compilation-arguments))
(setq compilation-error-regexp-alist
'(("^\\(.+?:[0-9]+:\\)\\(?:\\([0-9]+\\):\\)?" 1 2)))
(setq-local compilation-parse-errors-filename-function
(lambda (file)
(save-match-data
(if (string-match "\\(.+\\):\\([0-9]+\\):" file)
(match-string 1 file)
file)))))
;; Handle `bzr grep' output
(when (string-match-p "^[ \t]*bzr[ \t]" (car compilation-arguments))
(setq-local compilation-parse-errors-filename-function
(lambda (file)
(save-match-data
;; 'bzr grep -r' has files like `termcolor.py~147'
(if (string-match "\\(.+\\)~\\([0-9]+\\)" file)
(match-string 1 file)
file))))))
(define-compilation-mode ack-mode "Ack"
"A compilation mode tailored for ack."
(setq-local compilation-disable-input t)
(setq-local compilation-error-face 'compilation-info)
(add-hook 'compilation-filter-hook 'ack-filter nil t))
;;; `compilation-display-error' is introduced in 24.4
(unless (fboundp 'compilation-display-error)
(defun ack-mode-display-match ()
"Display in another window the match in current line."
(interactive)
(setq compilation-current-error (point))
(next-error-no-select 0))
(define-key ack-mode-map "\C-o" #'ack-mode-display-match))
(defun ack-skel-file ()
"Insert a template for case-insensitive file name search."
(interactive)
(delete-minibuffer-contents)
(let ((ack (or (car (split-string ack-command nil t)) "ack")))
(cond ((equal ack "ag")
(skeleton-insert `(nil ,ack " -ig '" _ "'")))
((equal ack "rg")
(skeleton-insert
`(nil ,ack " --color always --files --iglob '*" _ "*'")))
(t (skeleton-insert `(nil ,ack " -g '(?i:" _ ")'"))))))
;; Work around bug http://debbugs.gnu.org/13811
(defvar ack--project-root nil) ; dynamically bound in `ack'
(defvar ack--yanked-symbol nil) ; buffer-local in the minibuffer
(defun ack-skel-vc-grep (&optional interactive)
"Find a vc-controlled dir, insert a template for a vc grep search.
If called interactively, INTERACTIVE is non-nil and calls to this
function that cannot locate such a directory will produce an
error, whereas in non-interactive calls they will silently exit,
leaving the minibuffer unchanged.
Additionally, interactive calls preceded by a previous
`ack-yank-symbol-at-point' call, will recall the symbol inserted.
This function is a suitable addition to
`ack-minibuffer-setup-hook'."
(interactive "p")
(catch 'giveup
(let* ((regexp (concat "\\`" (regexp-opt
(mapcar 'car ack-vc-grep-commands))
"\\'"))
(guessed-root (or (ack-guess-project-root ack--project-root regexp)
(if interactive
(user-error
"Cannot locate a vc project root from %s"
ack--project-root)
(throw 'giveup nil))))
(which (progn
(unless (or interactive
(equal
(file-truename ack--project-root)
(file-truename guessed-root)))
;; See github
;; https://github.com/leoliu/ack-el/issues/10
;; for the reason for giving up here
;; non-interactively.
(throw 'giveup nil))
(car (directory-files guessed-root nil regexp))))
(backend (downcase (substring which 1)))
(cmd (or (cdr (assoc which ack-vc-grep-commands))
(error "No command provided for `%s grep'" backend))))
(when interactive
(setq ack--project-root guessed-root)
(ack-update-minibuffer-prompt))
(delete-minibuffer-contents)
(skeleton-insert `(nil ,cmd " '" _ "'"))
(when (and interactive ack--yanked-symbol)
(insert ack--yanked-symbol)))))
(defun ack-yank-symbol-at-point ()
"Yank the symbol from the window before entering the minibuffer."
(interactive)
(let ((symbol (and (minibuffer-selected-window)
(with-current-buffer
(window-buffer (minibuffer-selected-window))
(thing-at-point 'symbol)))))
(cond (symbol (insert symbol)
(set (make-local-variable 'ack--yanked-symbol) symbol))
(t (minibuffer-message "No symbol found")))))
(defvar ack-minibuffer-local-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map minibuffer-local-map)
(define-key map "\t" 'completion-at-point)
(define-key map "\M-I" 'ack-skel-file)
(define-key map "\M-G" 'ack-skel-vc-grep)
(define-key map "\M-Y" 'ack-yank-symbol-at-point)
(define-key map "'" 'skeleton-pair-insert-maybe)
map)
"Keymap used for reading `ack' command and args in minibuffer.")
(defun ack-guess-project-root (start-directory &optional regexp)
(let ((regexp (or regexp
(mapconcat 'identity ack-project-root-patterns "\\|")))
(parent (file-name-directory
(directory-file-name (expand-file-name start-directory)))))
(if (directory-files start-directory nil regexp)
start-directory
(unless (equal parent start-directory)
(ack-guess-project-root parent regexp)))))
(defun ack-legacy-defaults (arg)
"A function for `ack-defaults-function'.
With null ARG (no \\[universal-argument]), return
`default-directory'; With one \\[universal-argument], find the
project root according to `ack-project-root-patterns'; Otherwise,
interactively choose a directory."
(cond
((not arg) default-directory)
((= (prefix-numeric-value arg) 4)
(or (ack-guess-project-root default-directory)
(ack-legacy-defaults '(16))))
(t (read-directory-name "In directory: " nil nil t))))
(defun ack-quickgrep-defaults (arg)
"A function for `ack-defaults-function'.
With null ARG (no \\[universal-argument]) returns a list (DIR
AUTO-CONFIRM SETUP) where DIR is guessed according to
`ack-guess-project-root', AUTO-CONFIRM is t and SETUP contains
`ack-skel-vc-grep' and `ack-yank-symbol-at-point'. This makes
`ack' attempt to a \"git grep\" search immediately for the symbol
at point. The \"git grep\" command line will only be suggested
if it makes sense in the context (otherwise, a fallback to
`ack-command', like \"ack\" or \"ag\", is used). Likewise, the
search only starts immediately if there is indeed something \"at
point\".
With one \\[universal-argument], behaves like before except that
AUTO-CONFIRM is nil. This composes an identical `ack' command
but allows the user to edit it before searching, just like what
would have happened if there was no symbol at point.
With more \\[universal-argument]'s, behaves like before except
that DIR is first requested from the user and \"git grep\" is not
automatically attempted."
(let ((numeric (prefix-numeric-value arg)))
(append (list (if (> numeric 4)
(read-directory-name "In directory: " nil nil t)
(ack-guess-project-root default-directory))
(and (thing-at-point 'symbol) (= numeric 1)))
(if (> numeric 4)
(list 'ack-yank-symbol-at-point)
(list 'ack-skel-vc-grep 'ack-yank-symbol-at-point)))))
(defun ack-update-minibuffer-prompt (&optional _beg _end _len)
(when (minibufferp)
(let ((inhibit-read-only t))
(save-excursion
(goto-char (minibuffer-prompt-end))
(when (looking-at "\\(\\w+\\)\\s-")
(put-text-property
(point-min) (minibuffer-prompt-end)
'display
(format "Run %s in `%s': "
(match-string-no-properties 1)
(if (string-prefix-p default-directory
(expand-file-name ack--project-root))
(file-name-nondirectory
(directory-file-name ack--project-root))
ack--project-root))))))))
(defun ack-minibuffer-setup-function ()
(shell-completion-vars)
(add-hook 'after-change-functions
#'ack-update-minibuffer-prompt nil t)
(ack-update-minibuffer-prompt)
(run-hooks 'ack-minibuffer-setup-hook))
(defun ack--auto-confirm ()
(when ack--yanked-symbol
(throw 'ack--auto-confirm
(buffer-substring-no-properties
(minibuffer-prompt-end) (point-max)))))
;;;###autoload
(defun ack (command-args &optional directory)
"Run ack using COMMAND-ARGS and collect output in a buffer.
When called interactively, the value of DIRECTORY is provided by
`ack-default-directory-function'.
The following keys are available while reading from the
minibuffer:
\\{ack-minibuffer-local-map}"
(interactive
(pcase-let* ((defaults (funcall ack-defaults-function current-prefix-arg))
(defaults (if (listp defaults) defaults (list defaults nil)))
(`(,ack--project-root ,auto-confirm . ,setup) defaults)
(ack--project-root (or ack--project-root default-directory))
(ack-minibuffer-setup-hook (if setup
(append ack-minibuffer-setup-hook
setup)
ack-minibuffer-setup-hook))
(ack-minibuffer-setup-hook (if auto-confirm
(delete-dups
(append ack-minibuffer-setup-hook
'(ack-yank-symbol-at-point
ack--auto-confirm)))
ack-minibuffer-setup-hook))
;; Disable completion cycling; see http://debbugs.gnu.org/12221
(completion-cycle-threshold nil))
(list (minibuffer-with-setup-hook 'ack-minibuffer-setup-function
(catch 'ack--auto-confirm
(read-from-minibuffer "Ack: "
`(,(concat ack-command "''")
. ,(+ (length ack-command) 2))
ack-minibuffer-local-map
nil 'ack-history)))
ack--project-root)))
(let* ((lexical-default-directory
(expand-file-name
(or directory default-directory))))
;; Change to the compilation to ensure a correct
;; `default-directory' there and to ensure
;; `ack-buffer-name-function' can make use of
;; `compilation-arguments'.
(with-current-buffer
(let ((default-directory lexical-default-directory))
(compilation-start command-args 'ack-mode))
(when ack-buffer-name-function
(rename-buffer (funcall ack-buffer-name-function "ack")))
(setq default-directory lexical-default-directory)
(current-buffer))))
(provide 'ack)
;;; ack.el ends here