]> code.delx.au - gnu-emacs/blob - lisp/progmodes/xref.el
Add xref-based replacements for Dired search commands
[gnu-emacs] / lisp / progmodes / xref.el
1 ;; xref.el --- Cross-referencing commands -*-lexical-binding:t-*-
2
3 ;; Copyright (C) 2014-2016 Free Software Foundation, Inc.
4
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20 ;;; Commentary:
21
22 ;; NOTE: The xref API is still experimental and can change in major,
23 ;; backward-incompatible ways. Everyone is encouraged to try it, and
24 ;; report to us any problems or use cases we hadn't anticipated, by
25 ;; sending an email to emacs-devel, or `M-x report-emacs-bug'.
26 ;;
27 ;; This file provides a somewhat generic infrastructure for cross
28 ;; referencing commands, in particular "find-definition".
29 ;;
30 ;; Some part of the functionality must be implemented in a language
31 ;; dependent way and that's done by defining an xref backend.
32 ;;
33 ;; That consists of a constructor function, which should return a
34 ;; backend value, and a set of implementations for the generic
35 ;; functions:
36 ;;
37 ;; `xref-backend-identifier-at-point',
38 ;; `xref-backend-identifier-completion-table',
39 ;; `xref-backend-definitions', `xref-backend-references',
40 ;; `xref-backend-apropos', which see.
41 ;;
42 ;; A major mode would normally use `add-hook' to add the backend
43 ;; constructor to `xref-backend-functions'.
44 ;;
45 ;; The last three methods operate with "xref" and "location" values.
46 ;;
47 ;; One would usually call `make-xref' and `xref-make-file-location',
48 ;; `xref-make-buffer-location' or `xref-make-bogus-location' to create
49 ;; them. More generally, a location must be an instance of an EIEIO
50 ;; class inheriting from `xref-location' and implementing
51 ;; `xref-location-group' and `xref-location-marker'.
52 ;;
53 ;; There's a special kind of xrefs we call "match xrefs", which
54 ;; correspond to search results. For these values,
55 ;; `xref-match-length' must be defined, and `xref-location-marker'
56 ;; must return the beginning of the match.
57 ;;
58 ;; Each identifier must be represented as a string. Implementers can
59 ;; use string properties to store additional information about the
60 ;; identifier, but they should keep in mind that values returned from
61 ;; `xref-backend-identifier-completion-table' should still be
62 ;; distinct, because the user can't see the properties when making the
63 ;; choice.
64 ;;
65 ;; See the etags and elisp-mode implementations for full examples.
66
67 ;;; Code:
68
69 (require 'cl-lib)
70 (require 'eieio)
71 (require 'ring)
72 (require 'pcase)
73 (require 'project)
74
75 (eval-when-compile
76 (require 'semantic/symref)) ;; for hit-lines slot
77
78 (defgroup xref nil "Cross-referencing commands"
79 :version "25.1"
80 :group 'tools)
81
82 \f
83 ;;; Locations
84
85 (defclass xref-location () ()
86 :documentation "A location represents a position in a file or buffer.")
87
88 (cl-defgeneric xref-location-marker (location)
89 "Return the marker for LOCATION.")
90
91 (cl-defgeneric xref-location-group (location)
92 "Return a string used to group a set of locations.
93 This is typically the filename.")
94
95 (cl-defgeneric xref-location-line (_location)
96 "Return the line number corresponding to the location."
97 nil)
98
99 (cl-defgeneric xref-match-length (_item)
100 "Return the length of the match."
101 nil)
102
103 ;;;; Commonly needed location classes are defined here:
104
105 ;; FIXME: might be useful to have an optional "hint" i.e. a string to
106 ;; search for in case the line number is sightly out of date.
107 (defclass xref-file-location (xref-location)
108 ((file :type string :initarg :file)
109 (line :type fixnum :initarg :line :reader xref-location-line)
110 (column :type fixnum :initarg :column :reader xref-file-location-column))
111 :documentation "A file location is a file/line/column triple.
112 Line numbers start from 1 and columns from 0.")
113
114 (defun xref-make-file-location (file line column)
115 "Create and return a new `xref-file-location'."
116 (make-instance 'xref-file-location :file file :line line :column column))
117
118 (cl-defmethod xref-location-marker ((l xref-file-location))
119 (with-slots (file line column) l
120 (with-current-buffer
121 (or (get-file-buffer file)
122 (let ((find-file-suppress-same-file-warnings t))
123 (find-file-noselect file)))
124 (save-restriction
125 (widen)
126 (save-excursion
127 (goto-char (point-min))
128 (beginning-of-line line)
129 (forward-char column)
130 (point-marker))))))
131
132 (cl-defmethod xref-location-group ((l xref-file-location))
133 (oref l file))
134
135 (defclass xref-buffer-location (xref-location)
136 ((buffer :type buffer :initarg :buffer)
137 (position :type fixnum :initarg :position)))
138
139 (defun xref-make-buffer-location (buffer position)
140 "Create and return a new `xref-buffer-location'."
141 (make-instance 'xref-buffer-location :buffer buffer :position position))
142
143 (cl-defmethod xref-location-marker ((l xref-buffer-location))
144 (with-slots (buffer position) l
145 (let ((m (make-marker)))
146 (move-marker m position buffer))))
147
148 (cl-defmethod xref-location-group ((l xref-buffer-location))
149 (with-slots (buffer) l
150 (or (buffer-file-name buffer)
151 (format "(buffer %s)" (buffer-name buffer)))))
152
153 (defclass xref-bogus-location (xref-location)
154 ((message :type string :initarg :message
155 :reader xref-bogus-location-message))
156 :documentation "Bogus locations are sometimes useful to
157 indicate errors, e.g. when we know that a function exists but the
158 actual location is not known.")
159
160 (defun xref-make-bogus-location (message)
161 "Create and return a new `xref-bogus-location'."
162 (make-instance 'xref-bogus-location :message message))
163
164 (cl-defmethod xref-location-marker ((l xref-bogus-location))
165 (user-error "%s" (oref l message)))
166
167 (cl-defmethod xref-location-group ((_ xref-bogus-location)) "(No location)")
168
169 \f
170 ;;; Cross-reference
171
172 (defclass xref-item ()
173 ((summary :type string :initarg :summary
174 :reader xref-item-summary
175 :documentation "One line which will be displayed for
176 this item in the output buffer.")
177 (location :initarg :location
178 :reader xref-item-location
179 :documentation "An object describing how to navigate
180 to the reference's target."))
181 :comment "An xref item describes a reference to a location
182 somewhere.")
183
184 (defun xref-make (summary location)
185 "Create and return a new `xref-item'.
186 SUMMARY is a short string to describe the xref.
187 LOCATION is an `xref-location'."
188 (make-instance 'xref-item :summary summary :location location))
189
190 (defclass xref-match-item ()
191 ((summary :type string :initarg :summary
192 :reader xref-item-summary)
193 (location :initarg :location
194 :type xref-file-location
195 :reader xref-item-location)
196 (length :initarg :length :reader xref-match-length))
197 :comment "A match xref item describes a search result.")
198
199 (defun xref-make-match (summary location length)
200 "Create and return a new `xref-match-item'.
201 SUMMARY is a short string to describe the xref.
202 LOCATION is an `xref-location'.
203 LENGTH is the match length, in characters."
204 (make-instance 'xref-match-item :summary summary
205 :location location :length length))
206
207 \f
208 ;;; API
209
210 (defvar xref-backend-functions nil
211 "Special hook to find the xref backend for the current context.
212 Each function on this hook is called in turn with no arguments,
213 and should return either nil to mean that it is not applicable,
214 or an xref backend, which is a value to be used to dispatch the
215 generic functions.")
216
217 ;; We make the etags backend the default for now, until something
218 ;; better comes along. Use APPEND so that any `add-hook' calls made
219 ;; before this package is loaded put new items before this one.
220 (add-hook 'xref-backend-functions #'etags--xref-backend t)
221
222 ;;;###autoload
223 (defun xref-find-backend ()
224 (run-hook-with-args-until-success 'xref-backend-functions))
225
226 (cl-defgeneric xref-backend-definitions (backend identifier)
227 "Find definitions of IDENTIFIER.
228
229 The result must be a list of xref objects. If IDENTIFIER
230 contains sufficient information to determine a unique definition,
231 return only that definition. If there are multiple possible
232 definitions, return all of them. If no definitions can be found,
233 return nil.
234
235 IDENTIFIER can be any string returned by
236 `xref-backend-identifier-at-point', or from the table returned by
237 `xref-backend-identifier-completion-table'.
238
239 To create an xref object, call `xref-make'.")
240
241 (cl-defgeneric xref-backend-references (_backend identifier)
242 "Find references of IDENTIFIER.
243 The result must be a list of xref objects. If no references can
244 be found, return nil.
245
246 The default implementation uses `semantic-symref-tool-alist' to
247 find a search tool; by default, this uses \"find | grep\" in the
248 `project-current' roots."
249 (cl-mapcan
250 (lambda (dir)
251 (xref-collect-references identifier dir))
252 (let ((pr (project-current t)))
253 (append
254 (project-roots pr)
255 (project-external-roots pr)))))
256
257 (cl-defgeneric xref-backend-apropos (backend pattern)
258 "Find all symbols that match PATTERN.
259 PATTERN is a regexp")
260
261 (cl-defgeneric xref-backend-identifier-at-point (_backend)
262 "Return the relevant identifier at point.
263
264 The return value must be a string or nil. nil means no
265 identifier at point found.
266
267 If it's hard to determine the identifier precisely (e.g., because
268 it's a method call on unknown type), the implementation can
269 return a simple string (such as symbol at point) marked with a
270 special text property which e.g. `xref-backend-definitions' would
271 recognize and then delegate the work to an external process."
272 (let ((thing (thing-at-point 'symbol)))
273 (and thing (substring-no-properties thing))))
274
275 (cl-defgeneric xref-backend-identifier-completion-table (backend)
276 "Returns the completion table for identifiers.")
277
278 \f
279 ;;; misc utilities
280 (defun xref--alistify (list key test)
281 "Partition the elements of LIST into an alist.
282 KEY extracts the key from an element and TEST is used to compare
283 keys."
284 (let ((alist '()))
285 (dolist (e list)
286 (let* ((k (funcall key e))
287 (probe (cl-assoc k alist :test test)))
288 (if probe
289 (setcdr probe (cons e (cdr probe)))
290 (push (cons k (list e)) alist))))
291 ;; Put them back in order.
292 (cl-loop for (key . value) in (reverse alist)
293 collect (cons key (reverse value)))))
294
295 (defun xref--insert-propertized (props &rest strings)
296 "Insert STRINGS with text properties PROPS."
297 (let ((start (point)))
298 (apply #'insert strings)
299 (add-text-properties start (point) props)))
300
301 (defun xref--search-property (property &optional backward)
302 "Search the next text range where text property PROPERTY is non-nil.
303 Return the value of PROPERTY. If BACKWARD is non-nil, search
304 backward."
305 (let ((next (if backward
306 #'previous-single-char-property-change
307 #'next-single-char-property-change))
308 (start (point))
309 (value nil))
310 (while (progn
311 (goto-char (funcall next (point) property))
312 (not (or (setq value (get-text-property (point) property))
313 (eobp)
314 (bobp)))))
315 (cond (value)
316 (t (goto-char start) nil))))
317
318 \f
319 ;;; Marker stack (M-. pushes, M-, pops)
320
321 (defcustom xref-marker-ring-length 16
322 "Length of the xref marker ring."
323 :type 'integer)
324
325 (defcustom xref-prompt-for-identifier '(not xref-find-definitions
326 xref-find-definitions-other-window
327 xref-find-definitions-other-frame)
328 "When t, always prompt for the identifier name.
329
330 When nil, prompt only when there's no value at point we can use,
331 or when the command has been called with the prefix argument.
332
333 Otherwise, it's a list of xref commands which will prompt
334 anyway (the value at point, if any, will be used as the default).
335
336 If the list starts with `not', the meaning of the rest of the
337 elements is negated."
338 :type '(choice (const :tag "always" t)
339 (const :tag "auto" nil)
340 (set :menu-tag "command specific" :tag "commands"
341 :value (not)
342 (const :tag "Except" not)
343 (repeat :inline t (symbol :tag "command")))))
344
345 (defcustom xref-after-jump-hook '(recenter
346 xref-pulse-momentarily)
347 "Functions called after jumping to an xref."
348 :type 'hook)
349
350 (defcustom xref-after-return-hook '(xref-pulse-momentarily)
351 "Functions called after returning to a pre-jump location."
352 :type 'hook)
353
354 (defvar xref--marker-ring (make-ring xref-marker-ring-length)
355 "Ring of markers to implement the marker stack.")
356
357 (defun xref-push-marker-stack (&optional m)
358 "Add point M (defaults to `point-marker') to the marker stack."
359 (ring-insert xref--marker-ring (or m (point-marker))))
360
361 ;;;###autoload
362 (defun xref-pop-marker-stack ()
363 "Pop back to where \\[xref-find-definitions] was last invoked."
364 (interactive)
365 (let ((ring xref--marker-ring))
366 (when (ring-empty-p ring)
367 (user-error "Marker stack is empty"))
368 (let ((marker (ring-remove ring 0)))
369 (switch-to-buffer (or (marker-buffer marker)
370 (user-error "The marked buffer has been deleted")))
371 (goto-char (marker-position marker))
372 (set-marker marker nil nil)
373 (run-hooks 'xref-after-return-hook))))
374
375 (defvar xref--current-item nil)
376
377 (defun xref-pulse-momentarily ()
378 (pcase-let ((`(,beg . ,end)
379 (save-excursion
380 (or
381 (let ((length (xref-match-length xref--current-item)))
382 (and length (cons (point) (+ (point) length))))
383 (back-to-indentation)
384 (if (eolp)
385 (cons (line-beginning-position) (1+ (point)))
386 (cons (point) (line-end-position)))))))
387 (pulse-momentary-highlight-region beg end 'next-error)))
388
389 ;; etags.el needs this
390 (defun xref-clear-marker-stack ()
391 "Discard all markers from the marker stack."
392 (let ((ring xref--marker-ring))
393 (while (not (ring-empty-p ring))
394 (let ((marker (ring-remove ring)))
395 (set-marker marker nil nil)))))
396
397 ;;;###autoload
398 (defun xref-marker-stack-empty-p ()
399 "Return t if the marker stack is empty; nil otherwise."
400 (ring-empty-p xref--marker-ring))
401
402 \f
403
404 (defun xref--goto-char (pos)
405 (cond
406 ((and (<= (point-min) pos) (<= pos (point-max))))
407 (widen-automatically (widen))
408 (t (user-error "Position is outside accessible part of buffer")))
409 (goto-char pos))
410
411 (defun xref--goto-location (location)
412 "Set buffer and point according to xref-location LOCATION."
413 (let ((marker (xref-location-marker location)))
414 (set-buffer (marker-buffer marker))
415 (xref--goto-char marker)))
416
417 (defun xref--pop-to-location (item &optional window)
418 "Go to the location of ITEM and display the buffer.
419 WINDOW controls how the buffer is displayed:
420 nil -- switch-to-buffer
421 `window' -- pop-to-buffer (other window)
422 `frame' -- pop-to-buffer (other frame)"
423 (let* ((marker (save-excursion
424 (xref-location-marker (xref-item-location item))))
425 (buf (marker-buffer marker)))
426 (cl-ecase window
427 ((nil) (switch-to-buffer buf))
428 (window (pop-to-buffer buf t))
429 (frame (let ((pop-up-frames t)) (pop-to-buffer buf t))))
430 (xref--goto-char marker))
431 (let ((xref--current-item item))
432 (run-hooks 'xref-after-jump-hook)))
433
434 \f
435 ;;; XREF buffer (part of the UI)
436
437 ;; The xref buffer is used to display a set of xrefs.
438
439 (defvar-local xref--display-history nil
440 "List of pairs (BUFFER . WINDOW), for temporarily displayed buffers.")
441
442 (defun xref--save-to-history (buf win)
443 (let ((restore (window-parameter win 'quit-restore)))
444 ;; Save the new entry if the window displayed another buffer
445 ;; previously.
446 (when (and restore (not (eq (car restore) 'same)))
447 (push (cons buf win) xref--display-history))))
448
449 (defun xref--display-position (pos other-window buf)
450 ;; Show the location, but don't hijack focus.
451 (let ((xref-buf (current-buffer)))
452 (with-selected-window (display-buffer buf other-window)
453 (xref--goto-char pos)
454 (run-hooks 'xref-after-jump-hook)
455 (let ((buf (current-buffer))
456 (win (selected-window)))
457 (with-current-buffer xref-buf
458 (setq-local other-window-scroll-buffer buf)
459 (xref--save-to-history buf win))))))
460
461 (defun xref--show-location (location)
462 (condition-case err
463 (let* ((marker (xref-location-marker location))
464 (buf (marker-buffer marker)))
465 (xref--display-position marker t buf))
466 (user-error (message (error-message-string err)))))
467
468 (defun xref-show-location-at-point ()
469 "Display the source of xref at point in the other window, if any."
470 (interactive)
471 (let* ((xref (xref--item-at-point))
472 (xref--current-item xref))
473 (when xref
474 (xref--show-location (xref-item-location xref)))))
475
476 (defun xref-next-line ()
477 "Move to the next xref and display its source in the other window."
478 (interactive)
479 (xref--search-property 'xref-item)
480 (xref-show-location-at-point))
481
482 (defun xref-prev-line ()
483 "Move to the previous xref and display its source in the other window."
484 (interactive)
485 (xref--search-property 'xref-item t)
486 (xref-show-location-at-point))
487
488 (defun xref--item-at-point ()
489 (save-excursion
490 (back-to-indentation)
491 (get-text-property (point) 'xref-item)))
492
493 (defvar-local xref--window nil
494 "ACTION argument to call `display-buffer' with.")
495
496 (defun xref-goto-xref ()
497 "Jump to the xref on the current line and bury the xref buffer."
498 (interactive)
499 (let ((xref (or (xref--item-at-point)
500 (user-error "No reference at point")))
501 (window xref--window))
502 (xref-quit)
503 (xref--pop-to-location xref window)))
504
505 (defun xref-query-replace (from to)
506 "Perform interactive replacement of FROM with TO in all displayed xrefs.
507
508 This command interactively replaces FROM with TO in the names of the
509 references displayed in the current *xref* buffer."
510 (interactive
511 (let ((fr (read-regexp "Xref query-replace (regexp)" ".*")))
512 (list fr
513 (read-regexp (format "Xref query-replace (regexp) %s with: " fr)))))
514 (let ((reporter (make-progress-reporter (format "Saving search results...")
515 0 (line-number-at-pos (point-max))))
516 (counter 0)
517 pairs item)
518 (unwind-protect
519 (progn
520 (save-excursion
521 (goto-char (point-min))
522 ;; TODO: This list should be computed on-demand instead.
523 ;; As long as the UI just iterates through matches one by
524 ;; one, there's no need to compute them all in advance.
525 ;; Then we can throw away the reporter.
526 (while (setq item (xref--search-property 'xref-item))
527 (when (xref-match-length item)
528 (save-excursion
529 (let* ((loc (xref-item-location item))
530 (beg (xref-location-marker loc))
531 (end (move-marker (make-marker)
532 (+ beg (xref-match-length item))
533 (marker-buffer beg))))
534 ;; Perform sanity check first.
535 (xref--goto-location loc)
536 ;; FIXME: The check should probably be a generic
537 ;; function, instead of the assumption that all
538 ;; matches contain the full line as summary.
539 ;; TODO: Offer to re-scan otherwise.
540 (unless (equal (buffer-substring-no-properties
541 (line-beginning-position)
542 (line-end-position))
543 (xref-item-summary item))
544 (user-error "Search results out of date"))
545 (progress-reporter-update reporter (cl-incf counter))
546 (push (cons beg end) pairs)))))
547 (setq pairs (nreverse pairs)))
548 (unless pairs (user-error "No suitable matches here"))
549 (progress-reporter-done reporter)
550 (xref--query-replace-1 from to pairs))
551 (dolist (pair pairs)
552 (move-marker (car pair) nil)
553 (move-marker (cdr pair) nil)))))
554
555 ;; FIXME: Write a nicer UI.
556 (defun xref--query-replace-1 (from to pairs)
557 (let* ((query-replace-lazy-highlight nil)
558 current-beg current-end current-buf
559 ;; Counteract the "do the next match now" hack in
560 ;; `perform-replace'. And still, it'll report that those
561 ;; matches were "filtered out" at the end.
562 (isearch-filter-predicate
563 (lambda (beg end)
564 (and current-beg
565 (eq (current-buffer) current-buf)
566 (>= beg current-beg)
567 (<= end current-end))))
568 (replace-re-search-function
569 (lambda (from &optional _bound noerror)
570 (let (found pair)
571 (while (and (not found) pairs)
572 (setq pair (pop pairs)
573 current-beg (car pair)
574 current-end (cdr pair)
575 current-buf (marker-buffer current-beg))
576 (pop-to-buffer current-buf)
577 (goto-char current-beg)
578 (when (re-search-forward from current-end noerror)
579 (setq found t)))
580 found))))
581 ;; FIXME: Despite this being a multi-buffer replacement, `N'
582 ;; doesn't work, because we're not using
583 ;; `multi-query-replace-map', and it would expect the below
584 ;; function to be called once per buffer.
585 (perform-replace from to t t nil)))
586
587 (defvar xref--xref-buffer-mode-map
588 (let ((map (make-sparse-keymap)))
589 (define-key map [remap quit-window] #'xref-quit)
590 (define-key map (kbd "n") #'xref-next-line)
591 (define-key map (kbd "p") #'xref-prev-line)
592 (define-key map (kbd "r") #'xref-query-replace)
593 (define-key map (kbd "RET") #'xref-goto-xref)
594 (define-key map (kbd "C-o") #'xref-show-location-at-point)
595 ;; suggested by Johan Claesson "to further reduce finger movement":
596 (define-key map (kbd ".") #'xref-next-line)
597 (define-key map (kbd ",") #'xref-prev-line)
598 map))
599
600 (define-derived-mode xref--xref-buffer-mode special-mode "XREF"
601 "Mode for displaying cross-references."
602 (setq buffer-read-only t)
603 (setq next-error-function #'xref--next-error-function)
604 (setq next-error-last-buffer (current-buffer)))
605
606 (defun xref--next-error-function (n reset?)
607 (when reset?
608 (goto-char (point-min)))
609 (let ((backward (< n 0))
610 (n (abs n))
611 (xref nil))
612 (dotimes (_ n)
613 (setq xref (xref--search-property 'xref-item backward)))
614 (cond (xref
615 (xref--pop-to-location xref))
616 (t
617 (error "No %s xref" (if backward "previous" "next"))))))
618
619 (defun xref-quit (&optional kill)
620 "Bury temporarily displayed buffers, then quit the current window.
621
622 If KILL is non-nil, also kill the current buffer.
623
624 The buffers that the user has otherwise interacted with in the
625 meantime are preserved."
626 (interactive "P")
627 (let ((window (selected-window))
628 (history xref--display-history))
629 (setq xref--display-history nil)
630 (pcase-dolist (`(,buf . ,win) history)
631 (when (and (window-live-p win)
632 (eq buf (window-buffer win)))
633 (quit-window nil win)))
634 (quit-window kill window)))
635
636 (defconst xref-buffer-name "*xref*"
637 "The name of the buffer to show xrefs.")
638
639 (defvar xref--button-map
640 (let ((map (make-sparse-keymap)))
641 (define-key map [(control ?m)] #'xref-goto-xref)
642 (define-key map [mouse-1] #'xref-goto-xref)
643 (define-key map [mouse-2] #'xref--mouse-2)
644 map))
645
646 (defun xref--mouse-2 (event)
647 "Move point to the button and show the xref definition."
648 (interactive "e")
649 (mouse-set-point event)
650 (forward-line 0)
651 (xref--search-property 'xref-item)
652 (xref-show-location-at-point))
653
654 (defun xref--insert-xrefs (xref-alist)
655 "Insert XREF-ALIST in the current-buffer.
656 XREF-ALIST is of the form ((GROUP . (XREF ...)) ...), where
657 GROUP is a string for decoration purposes and XREF is an
658 `xref-item' object."
659 (require 'compile) ; For the compilation faces.
660 (cl-loop for ((group . xrefs) . more1) on xref-alist
661 for max-line-width =
662 (cl-loop for xref in xrefs
663 maximize (let ((line (xref-location-line
664 (oref xref location))))
665 (length (and line (format "%d" line)))))
666 for line-format = (and max-line-width
667 (format "%%%dd: " max-line-width))
668 do
669 (xref--insert-propertized '(face compilation-info) group "\n")
670 (cl-loop for (xref . more2) on xrefs do
671 (with-slots (summary location) xref
672 (let* ((line (xref-location-line location))
673 (prefix
674 (if line
675 (propertize (format line-format line)
676 'face 'compilation-line-number)
677 " ")))
678 (xref--insert-propertized
679 (list 'xref-item xref
680 ;; 'face 'font-lock-keyword-face
681 'mouse-face 'highlight
682 'keymap xref--button-map
683 'help-echo
684 (concat "mouse-2: display in another window, "
685 "RET or mouse-1: follow reference"))
686 prefix summary)))
687 (insert "\n"))))
688
689 (defun xref--analyze (xrefs)
690 "Find common filenames in XREFS.
691 Return an alist of the form ((FILENAME . (XREF ...)) ...)."
692 (xref--alistify xrefs
693 (lambda (x)
694 (xref-location-group (xref-item-location x)))
695 #'equal))
696
697 (defun xref--show-xref-buffer (xrefs alist)
698 (let ((xref-alist (xref--analyze xrefs)))
699 (with-current-buffer (get-buffer-create xref-buffer-name)
700 (let ((inhibit-read-only t))
701 (erase-buffer)
702 (xref--insert-xrefs xref-alist)
703 (xref--xref-buffer-mode)
704 (pop-to-buffer (current-buffer))
705 (goto-char (point-min))
706 (setq xref--window (assoc-default 'window alist))
707 (current-buffer)))))
708
709 \f
710 ;; This part of the UI seems fairly uncontroversial: it reads the
711 ;; identifier and deals with the single definition case.
712 ;; (FIXME: do we really want this case to be handled like that in
713 ;; "find references" and "find regexp searches"?)
714 ;;
715 ;; The controversial multiple definitions case is handed off to
716 ;; xref-show-xrefs-function.
717
718 (defvar xref-show-xrefs-function 'xref--show-xref-buffer
719 "Function to display a list of xrefs.")
720
721 (defvar xref--read-identifier-history nil)
722
723 (defvar xref--read-pattern-history nil)
724
725 (defun xref--show-xrefs (xrefs window &optional always-show-list)
726 (cond
727 ((and (not (cdr xrefs)) (not always-show-list))
728 (xref-push-marker-stack)
729 (xref--pop-to-location (car xrefs) window))
730 (t
731 (xref-push-marker-stack)
732 (funcall xref-show-xrefs-function xrefs
733 `((window . ,window))))))
734
735 (defun xref--prompt-p (command)
736 (or (eq xref-prompt-for-identifier t)
737 (if (eq (car xref-prompt-for-identifier) 'not)
738 (not (memq command (cdr xref-prompt-for-identifier)))
739 (memq command xref-prompt-for-identifier))))
740
741 (defun xref--read-identifier (prompt)
742 "Return the identifier at point or read it from the minibuffer."
743 (let* ((backend (xref-find-backend))
744 (id (xref-backend-identifier-at-point backend)))
745 (cond ((or current-prefix-arg
746 (not id)
747 (xref--prompt-p this-command))
748 (completing-read (if id
749 (format "%s (default %s): "
750 (substring prompt 0 (string-match
751 "[ :]+\\'" prompt))
752 id)
753 prompt)
754 (xref-backend-identifier-completion-table backend)
755 nil nil nil
756 'xref--read-identifier-history id))
757 (t id))))
758
759 \f
760 ;;; Commands
761
762 (defun xref--find-xrefs (input kind arg window)
763 (let ((xrefs (funcall (intern (format "xref-backend-%s" kind))
764 (xref-find-backend)
765 arg)))
766 (unless xrefs
767 (user-error "No %s found for: %s" (symbol-name kind) input))
768 (xref--show-xrefs xrefs window)))
769
770 (defun xref--find-definitions (id window)
771 (xref--find-xrefs id 'definitions id window))
772
773 ;;;###autoload
774 (defun xref-find-definitions (identifier)
775 "Find the definition of the identifier at point.
776 With prefix argument or when there's no identifier at point,
777 prompt for it.
778
779 If sufficient information is available to determine a unique
780 definition for IDENTIFIER, display it in the selected window.
781 Otherwise, display the list of the possible definitions in a
782 buffer where the user can select from the list."
783 (interactive (list (xref--read-identifier "Find definitions of: ")))
784 (xref--find-definitions identifier nil))
785
786 ;;;###autoload
787 (defun xref-find-definitions-other-window (identifier)
788 "Like `xref-find-definitions' but switch to the other window."
789 (interactive (list (xref--read-identifier "Find definitions of: ")))
790 (xref--find-definitions identifier 'window))
791
792 ;;;###autoload
793 (defun xref-find-definitions-other-frame (identifier)
794 "Like `xref-find-definitions' but switch to the other frame."
795 (interactive (list (xref--read-identifier "Find definitions of: ")))
796 (xref--find-definitions identifier 'frame))
797
798 ;;;###autoload
799 (defun xref-find-references (identifier)
800 "Find references to the identifier at point.
801 With prefix argument, prompt for the identifier."
802 (interactive (list (xref--read-identifier "Find references of: ")))
803 (xref--find-xrefs identifier 'references identifier nil))
804
805 (declare-function apropos-parse-pattern "apropos" (pattern))
806
807 ;;;###autoload
808 (defun xref-find-apropos (pattern)
809 "Find all meaningful symbols that match PATTERN.
810 The argument has the same meaning as in `apropos'."
811 (interactive (list (read-string
812 "Search for pattern (word list or regexp): "
813 nil 'xref--read-pattern-history)))
814 (require 'apropos)
815 (xref--find-xrefs pattern 'apropos
816 (apropos-parse-pattern
817 (if (string-equal (regexp-quote pattern) pattern)
818 ;; Split into words
819 (or (split-string pattern "[ \t]+" t)
820 (user-error "No word list given"))
821 pattern))
822 nil))
823
824 \f
825 ;;; Key bindings
826
827 ;;;###autoload (define-key esc-map "." #'xref-find-definitions)
828 ;;;###autoload (define-key esc-map "," #'xref-pop-marker-stack)
829 ;;;###autoload (define-key esc-map "?" #'xref-find-references)
830 ;;;###autoload (define-key esc-map [?\C-.] #'xref-find-apropos)
831 ;;;###autoload (define-key ctl-x-4-map "." #'xref-find-definitions-other-window)
832 ;;;###autoload (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame)
833
834 \f
835 ;;; Helper functions
836
837 (defvar xref-etags-mode--saved nil)
838
839 (define-minor-mode xref-etags-mode
840 "Minor mode to make xref use etags again.
841
842 Certain major modes install their own mechanisms for listing
843 identifiers and navigation. Turn this on to undo those settings
844 and just use etags."
845 :lighter ""
846 (if xref-etags-mode
847 (progn
848 (setq xref-etags-mode--saved xref-backend-functions)
849 (kill-local-variable 'xref-backend-functions))
850 (setq-local xref-backend-functions xref-etags-mode--saved)))
851
852 (declare-function semantic-symref-find-references-by-name "semantic/symref")
853 (declare-function semantic-find-file-noselect "semantic/fw")
854 (declare-function grep-expand-template "grep")
855
856 (defun xref-collect-references (symbol dir)
857 "Collect references to SYMBOL inside DIR.
858 This function uses the Semantic Symbol Reference API, see
859 `semantic-symref-find-references-by-name' for details on which
860 tools are used, and when."
861 (cl-assert (directory-name-p dir))
862 (require 'semantic/symref)
863 (defvar semantic-symref-tool)
864 (let* ((default-directory dir)
865 (semantic-symref-tool 'detect)
866 (res (semantic-symref-find-references-by-name symbol 'subdirs))
867 (hits (and res (oref res hit-lines)))
868 (orig-buffers (buffer-list)))
869 (unwind-protect
870 (cl-mapcan (lambda (hit) (xref--collect-matches
871 hit (format "\\_<%s\\_>" (regexp-quote symbol))))
872 hits)
873 ;; TODO: Implement "lightweight" buffer visiting, so that we
874 ;; don't have to kill them.
875 (mapc #'kill-buffer
876 (cl-set-difference (buffer-list) orig-buffers)))))
877
878 ;;;###autoload
879 (defun xref-collect-matches (regexp files dir ignores)
880 "Collect matches for REGEXP inside FILES in DIR.
881 FILES is a string with glob patterns separated by spaces.
882 IGNORES is a list of glob patterns."
883 ;; DIR can also be a regular file for now; let's not advertise that.
884 (require 'semantic/fw)
885 (grep-compute-defaults)
886 (defvar grep-find-template)
887 (defvar grep-highlight-matches)
888 (let* ((grep-find-template (replace-regexp-in-string "-e " "-E "
889 grep-find-template t t))
890 (grep-highlight-matches nil)
891 (command (xref--rgrep-command (xref--regexp-to-extended regexp)
892 files
893 (expand-file-name dir)
894 ignores))
895 (orig-buffers (buffer-list))
896 (buf (get-buffer-create " *xref-grep*"))
897 (grep-re (caar grep-regexp-alist))
898 (counter 0)
899 reporter
900 hits)
901 (with-current-buffer buf
902 (erase-buffer)
903 (call-process-shell-command command nil t)
904 (goto-char (point-min))
905 (while (re-search-forward grep-re nil t)
906 (push (cons (string-to-number (match-string 2))
907 (match-string 1))
908 hits)))
909 (setq reporter (make-progress-reporter
910 (format "Collecting search results...")
911 0 (length hits)))
912 (unwind-protect
913 (cl-mapcan (lambda (hit)
914 (prog1
915 (progress-reporter-update reporter counter)
916 (cl-incf counter))
917 (xref--collect-matches hit regexp))
918 (nreverse hits))
919 (progress-reporter-done reporter)
920 ;; TODO: Same as above.
921 (mapc #'kill-buffer
922 (cl-set-difference (buffer-list) orig-buffers)))))
923
924 (defun xref--rgrep-command (regexp files dir ignores)
925 (require 'find-dired) ; for `find-name-arg'
926 (defvar grep-find-template)
927 (defvar find-name-arg)
928 (grep-expand-template
929 grep-find-template
930 regexp
931 (concat (shell-quote-argument "(")
932 " " find-name-arg " "
933 (mapconcat
934 #'shell-quote-argument
935 (split-string files)
936 (concat " -o " find-name-arg " "))
937 " "
938 (shell-quote-argument ")"))
939 dir
940 (xref--find-ignores-arguments ignores dir)))
941
942 (defun xref--find-ignores-arguments (ignores dir)
943 ;; `shell-quote-argument' quotes the tilde as well.
944 (cl-assert (not (string-match-p "\\`~" dir)))
945 (when ignores
946 (concat
947 (shell-quote-argument "(")
948 " -path "
949 (mapconcat
950 (lambda (ignore)
951 (when (string-match-p "/\\'" ignore)
952 (setq ignore (concat ignore "*")))
953 (if (string-match "\\`\\./" ignore)
954 (setq ignore (replace-match dir t t ignore))
955 (unless (string-prefix-p "*" ignore)
956 (setq ignore (concat "*/" ignore))))
957 (shell-quote-argument ignore))
958 ignores
959 " -o -path ")
960 " "
961 (shell-quote-argument ")")
962 " -prune -o ")))
963
964 (defun xref--regexp-to-extended (str)
965 (replace-regexp-in-string
966 ;; FIXME: Add tests. Move to subr.el, make a public function.
967 ;; Maybe error on Emacs-only constructs.
968 "\\(?:\\\\\\\\\\)*\\(?:\\\\[][]\\)?\\(?:\\[.+?\\]\\|\\(\\\\?[(){}|]\\)\\)"
969 (lambda (str)
970 (cond
971 ((not (match-beginning 1))
972 str)
973 ((eq (length (match-string 1 str)) 2)
974 (concat (substring str 0 (match-beginning 1))
975 (substring (match-string 1 str) 1 2)))
976 (t
977 (concat (substring str 0 (match-beginning 1))
978 "\\"
979 (match-string 1 str)))))
980 str t t))
981
982 (defun xref--collect-matches (hit regexp)
983 (pcase-let* ((`(,line . ,file) hit)
984 (buf (or (find-buffer-visiting file)
985 (semantic-find-file-noselect file))))
986 (with-current-buffer buf
987 (save-excursion
988 (goto-char (point-min))
989 (forward-line (1- line))
990 (let ((line-end (line-end-position))
991 (line-beg (line-beginning-position))
992 matches)
993 (syntax-propertize line-end)
994 ;; FIXME: This results in several lines with the same
995 ;; summary. Solve with composite pattern?
996 (while (re-search-forward regexp line-end t)
997 (let* ((beg-column (- (match-beginning 0) line-beg))
998 (end-column (- (match-end 0) line-beg))
999 (loc (xref-make-file-location file line beg-column))
1000 (summary (buffer-substring line-beg line-end)))
1001 (add-face-text-property beg-column end-column 'highlight
1002 t summary)
1003 (push (xref-make-match summary loc (- end-column beg-column))
1004 matches)))
1005 (nreverse matches))))))
1006
1007 (provide 'xref)
1008
1009 ;;; xref.el ends here