]> code.delx.au - gnu-emacs/blob - lisp/progmodes/etags.el
*** empty log message ***
[gnu-emacs] / lisp / progmodes / etags.el
1 ;;; etags.el --- etags facility for Emacs
2
3 ;; Copyright (C) 1985, 1986, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1998,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005
5 ;; Free Software Foundation, Inc.
6
7 ;; Author: Roland McGrath <roland@gnu.org>
8 ;; Maintainer: FSF
9 ;; Keywords: tools
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;;; Commentary:
29
30 ;;; Code:
31
32 (require 'ring)
33 (require 'button)
34
35 ;;;###autoload
36 (defvar tags-file-name nil
37 "*File name of tags table.
38 To switch to a new tags table, setting this variable is sufficient.
39 If you set this variable, do not also set `tags-table-list'.
40 Use the `etags' program to make a tags table file.")
41 ;; Make M-x set-variable tags-file-name like M-x visit-tags-table.
42 ;;;###autoload (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
43
44 (defgroup etags nil "Tags tables."
45 :group 'tools)
46
47 ;;;###autoload
48 (defcustom tags-case-fold-search 'default
49 "*Whether tags operations should be case-sensitive.
50 A value of t means case-insensitive, a value of nil means case-sensitive.
51 Any other value means use the setting of `case-fold-search'."
52 :group 'etags
53 :type '(choice (const :tag "Case-sensitive" nil)
54 (const :tag "Case-insensitive" t)
55 (other :tag "Use default" default))
56 :version "21.1")
57
58 ;;;###autoload
59 ;; Use `visit-tags-table-buffer' to cycle through tags tables in this list.
60 (defcustom tags-table-list nil
61 "*List of file names of tags tables to search.
62 An element that is a directory means the file \"TAGS\" in that directory.
63 To switch to a new list of tags tables, setting this variable is sufficient.
64 If you set this variable, do not also set `tags-file-name'.
65 Use the `etags' program to make a tags table file."
66 :group 'etags
67 :type '(repeat file))
68
69 ;;;###autoload
70 (defcustom tags-compression-info-list '("" ".Z" ".bz2" ".gz" ".tgz")
71 "*List of extensions tried by etags when jka-compr is used.
72 An empty string means search the non-compressed file.
73 These extensions will be tried only if jka-compr was activated
74 \(i.e. via customize of `auto-compression-mode' or by calling the function
75 `auto-compression-mode')."
76 :type '(repeat string)
77 :group 'etags)
78
79 ;; !!! tags-compression-info-list should probably be replaced by access
80 ;; to directory list and matching jka-compr-compression-info-list. Currently,
81 ;; this implementation forces each modification of
82 ;; jka-compr-compression-info-list to be reflected in this var.
83 ;; An alternative could be to say that introducing a special
84 ;; element in this list (e.g. t) means : try at this point
85 ;; using directory listing and regexp matching using
86 ;; jka-compr-compression-info-list.
87
88
89 ;;;###autoload
90 (defcustom tags-add-tables 'ask-user
91 "*Control whether to add a new tags table to the current list.
92 t means do; nil means don't (always start a new list).
93 Any other value means ask the user whether to add a new tags table
94 to the current list (as opposed to starting a new list)."
95 :group 'etags
96 :type '(choice (const :tag "Do" t)
97 (const :tag "Don't" nil)
98 (other :tag "Ask" ask-user)))
99
100 (defcustom tags-revert-without-query nil
101 "*Non-nil means reread a TAGS table without querying, if it has changed."
102 :group 'etags
103 :type 'boolean)
104
105 (defvar tags-table-computed-list nil
106 "List of tags tables to search, computed from `tags-table-list'.
107 This includes tables implicitly included by other tables. The list is not
108 always complete: the included tables of a table are not known until that
109 table is read into core. An element that is t is a placeholder
110 indicating that the preceding element is a table that has not been read
111 into core and might contain included tables to search.
112 See `tags-table-check-computed-list'.")
113
114 (defvar tags-table-computed-list-for nil
115 "Value of `tags-table-list' that `tags-table-computed-list' corresponds to.
116 If `tags-table-list' changes, `tags-table-computed-list' is thrown away and
117 recomputed; see `tags-table-check-computed-list'.")
118
119 (defvar tags-table-list-pointer nil
120 "Pointer into `tags-table-computed-list' for the current state of searching.
121 Use `visit-tags-table-buffer' to cycle through tags tables in this list.")
122
123 (defvar tags-table-list-started-at nil
124 "Pointer into `tags-table-computed-list', where the current search started.")
125
126 (defvar tags-table-set-list nil
127 "List of sets of tags table which have been used together in the past.
128 Each element is a list of strings which are file names.")
129
130 ;;;###autoload
131 (defcustom find-tag-hook nil
132 "*Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'.
133 The value in the buffer in which \\[find-tag] is done is used,
134 not the value in the buffer \\[find-tag] goes to."
135 :group 'etags
136 :type 'hook)
137
138 ;;;###autoload
139 (defcustom find-tag-default-function nil
140 "*A function of no arguments used by \\[find-tag] to pick a default tag.
141 If nil, and the symbol that is the value of `major-mode'
142 has a `find-tag-default-function' property (see `put'), that is used.
143 Otherwise, `find-tag-default' is used."
144 :group 'etags
145 :type '(choice (const nil) function))
146
147 (defcustom find-tag-marker-ring-length 16
148 "*Length of marker rings `find-tag-marker-ring' and `tags-location-ring'."
149 :group 'etags
150 :type 'integer
151 :version "20.3")
152
153 (defcustom tags-tag-face 'default
154 "*Face for tags in the output of `tags-apropos'."
155 :group 'etags
156 :type 'face
157 :version "21.1")
158
159 (defcustom tags-apropos-verbose nil
160 "If non-nil, print the name of the tags file in the *Tags List* buffer."
161 :group 'etags
162 :type 'boolean
163 :version "21.1")
164
165 (defcustom tags-apropos-additional-actions nil
166 "Specify additional actions for `tags-apropos'.
167
168 If non-nil, value should be a list of triples (TITLE FUNCTION
169 TO-SEARCH). For each triple, `tags-apropos' processes TO-SEARCH and
170 lists tags from it. TO-SEARCH should be an alist, obarray, or symbol.
171 If it is a symbol, the symbol's value is used.
172 TITLE, a string, is a title used to label the additional list of tags.
173 FUNCTION is a function to call when a symbol is selected in the
174 *Tags List* buffer. It will be called with one argument SYMBOL which
175 is the symbol being selected.
176
177 Example value:
178
179 '((\"Emacs Lisp\" Info-goto-emacs-command-node obarray)
180 (\"Common Lisp\" common-lisp-hyperspec common-lisp-hyperspec-obarray)
181 (\"SCWM\" scwm-documentation scwm-obarray))"
182 :group 'etags
183 :type '(repeat (list (string :tag "Title")
184 function
185 (sexp :tag "Tags to search")))
186 :version "21.1")
187
188 (defvar find-tag-marker-ring (make-ring find-tag-marker-ring-length)
189 "Ring of markers which are locations from which \\[find-tag] was invoked.")
190
191 (defvar default-tags-table-function nil
192 "If non-nil, a function to choose a default tags file for a buffer.
193 This function receives no arguments and should return the default
194 tags table file to use for the current buffer.")
195
196 (defvar tags-location-ring (make-ring find-tag-marker-ring-length)
197 "Ring of markers which are locations visited by \\[find-tag].
198 Pop back to the last location with \\[negative-argument] \\[find-tag].")
199 \f
200 ;; Tags table state.
201 ;; These variables are local in tags table buffers.
202
203 (defvar tags-table-files nil
204 "List of file names covered by current tags table.
205 nil means it has not yet been computed; use `tags-table-files' to do so.")
206
207 (defvar tags-completion-table nil
208 "Obarray of tag names defined in current tags table.")
209
210 (defvar tags-included-tables nil
211 "List of tags tables included by the current tags table.")
212
213 (defvar next-file-list nil
214 "List of files for \\[next-file] to process.")
215 \f
216 ;; Hooks for file formats.
217
218 (defvar tags-table-format-functions '(etags-recognize-tags-table
219 tags-recognize-empty-tags-table)
220 "Hook to be called in a tags table buffer to identify the type of tags table.
221 The functions are called in order, with no arguments,
222 until one returns non-nil. The function should make buffer-local bindings
223 of the format-parsing tags function variables if successful.")
224
225 (defvar file-of-tag-function nil
226 "Function to do the work of `file-of-tag' (which see).
227 One optional argument, a boolean specifying to return complete path (nil) or
228 relative path (non-nil).")
229 (defvar tags-table-files-function nil
230 "Function to do the work of `tags-table-files' (which see).")
231 (defvar tags-completion-table-function nil
232 "Function to build the `tags-completion-table'.")
233 (defvar snarf-tag-function nil
234 "Function to get info about a matched tag for `goto-tag-location-function'.
235 One optional argument, specifying to use explicit tag (non-nil) or not (nil).
236 The default is nil.")
237 (defvar goto-tag-location-function nil
238 "Function of to go to the location in the buffer specified by a tag.
239 One argument, the tag info returned by `snarf-tag-function'.")
240 (defvar find-tag-regexp-search-function nil
241 "Search function passed to `find-tag-in-order' for finding a regexp tag.")
242 (defvar find-tag-regexp-tag-order nil
243 "Tag order passed to `find-tag-in-order' for finding a regexp tag.")
244 (defvar find-tag-regexp-next-line-after-failure-p nil
245 "Flag passed to `find-tag-in-order' for finding a regexp tag.")
246 (defvar find-tag-search-function nil
247 "Search function passed to `find-tag-in-order' for finding a tag.")
248 (defvar find-tag-tag-order nil
249 "Tag order passed to `find-tag-in-order' for finding a tag.")
250 (defvar find-tag-next-line-after-failure-p nil
251 "Flag passed to `find-tag-in-order' for finding a tag.")
252 (defvar list-tags-function nil
253 "Function to do the work of `list-tags' (which see).")
254 (defvar tags-apropos-function nil
255 "Function to do the work of `tags-apropos' (which see).")
256 (defvar tags-included-tables-function nil
257 "Function to do the work of `tags-included-tables' (which see).")
258 (defvar verify-tags-table-function nil
259 "Function to return t iff current buffer contains valid tags file.")
260 \f
261 ;; Initialize the tags table in the current buffer.
262 ;; Returns non-nil iff it is a valid tags table. On
263 ;; non-nil return, the tags table state variable are
264 ;; made buffer-local and initialized to nil.
265 (defun initialize-new-tags-table ()
266 (set (make-local-variable 'tags-table-files) nil)
267 (set (make-local-variable 'tags-completion-table) nil)
268 (set (make-local-variable 'tags-included-tables) nil)
269 ;; We used to initialize find-tag-marker-ring and tags-location-ring
270 ;; here, to new empty rings. But that is wrong, because those
271 ;; are global.
272
273 ;; Value is t if we have found a valid tags table buffer.
274 (run-hook-with-args-until-success 'tags-table-format-functions))
275
276 ;;;###autoload
277 (defun tags-table-mode ()
278 "Major mode for tags table file buffers."
279 (interactive)
280 (setq major-mode 'tags-table-mode)
281 (setq mode-name "Tags Table")
282 (initialize-new-tags-table))
283
284 ;;;###autoload
285 (defun visit-tags-table (file &optional local)
286 "Tell tags commands to use tags table file FILE.
287 FILE should be the name of a file created with the `etags' program.
288 A directory name is ok too; it means file TAGS in that directory.
289
290 Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
291 With a prefix arg, set the buffer-local value instead.
292 When you find a tag with \\[find-tag], the buffer it finds the tag
293 in is given a local value of this variable which is the name of the tags
294 file the tag was in."
295 (interactive (list (read-file-name "Visit tags table (default TAGS): "
296 default-directory
297 (expand-file-name "TAGS"
298 default-directory)
299 t)
300 current-prefix-arg))
301 (or (stringp file) (signal 'wrong-type-argument (list 'stringp file)))
302 ;; Bind tags-file-name so we can control below whether the local or
303 ;; global value gets set. Calling visit-tags-table-buffer will
304 ;; initialize a buffer for the file and set tags-file-name to the
305 ;; Calling visit-tags-table-buffer with tags-file-name set to FILE will
306 ;; initialize a buffer for FILE and set tags-file-name to the
307 ;; fully-expanded name.
308 (let ((tags-file-name file))
309 (save-excursion
310 (or (visit-tags-table-buffer file)
311 (signal 'file-error (list "Visiting tags table"
312 "file does not exist"
313 file)))
314 ;; Set FILE to the expanded name.
315 (setq file tags-file-name)))
316 (if local
317 ;; Set the local value of tags-file-name.
318 (set (make-local-variable 'tags-file-name) file)
319 ;; Set the global value of tags-file-name.
320 (setq-default tags-file-name file)))
321
322 (defun tags-table-check-computed-list ()
323 "Compute `tags-table-computed-list' from `tags-table-list' if necessary."
324 (let ((expanded-list (mapcar 'tags-expand-table-name tags-table-list)))
325 (or (equal tags-table-computed-list-for expanded-list)
326 ;; The list (or default-directory) has changed since last computed.
327 (let* ((compute-for (mapcar 'copy-sequence expanded-list))
328 (tables (copy-sequence compute-for)) ;Mutated in the loop.
329 (computed nil)
330 table-buffer)
331
332 (while tables
333 (setq computed (cons (car tables) computed)
334 table-buffer (get-file-buffer (car tables)))
335 (if (and table-buffer
336 ;; There is a buffer visiting the file. Now make sure
337 ;; it is initialized as a tag table buffer.
338 (save-excursion
339 (tags-verify-table (buffer-file-name table-buffer))))
340 (save-excursion
341 (set-buffer table-buffer)
342 (if (tags-included-tables)
343 ;; Insert the included tables into the list we
344 ;; are processing.
345 (setcdr tables (nconc (mapcar 'tags-expand-table-name
346 (tags-included-tables))
347 (cdr tables)))))
348 ;; This table is not in core yet. Insert a placeholder
349 ;; saying we must read it into core to check for included
350 ;; tables before searching the next table in the list.
351 (setq computed (cons t computed)))
352 (setq tables (cdr tables)))
353
354 ;; Record the tags-table-list value (and the context of the
355 ;; current directory) we computed from.
356 (setq tags-table-computed-list-for compute-for
357 tags-table-computed-list (nreverse computed))))))
358
359 ;; Extend `tags-table-computed-list' to remove the first `t' placeholder.
360 ;; An element of the list that is `t' is a placeholder indicating that the
361 ;; preceding element is a table that has not been read into core and might
362 ;; contain included tables to search. On return, the first placeholder
363 ;; element will be gone and the element before it read into core and its
364 ;; included tables inserted into the list.
365 (defun tags-table-extend-computed-list ()
366 (let ((list tags-table-computed-list))
367 (while (not (eq (nth 1 list) t))
368 (setq list (cdr list)))
369 (save-excursion
370 (if (tags-verify-table (car list))
371 ;; We are now in the buffer visiting (car LIST). Extract its
372 ;; list of included tables and insert it into the computed list.
373 (let ((tables (tags-included-tables))
374 (computed nil)
375 table-buffer)
376 (while tables
377 (setq computed (cons (car tables) computed)
378 table-buffer (get-file-buffer (car tables)))
379 (if table-buffer
380 (save-excursion
381 (set-buffer table-buffer)
382 (if (tags-included-tables)
383 ;; Insert the included tables into the list we
384 ;; are processing.
385 (setcdr tables (append (tags-included-tables)
386 tables))))
387 ;; This table is not in core yet. Insert a placeholder
388 ;; saying we must read it into core to check for included
389 ;; tables before searching the next table in the list.
390 (setq computed (cons t computed)))
391 (setq tables (cdr tables)))
392 (setq computed (nreverse computed))
393 ;; COMPUTED now contains the list of included tables (and
394 ;; tables included by them, etc.). Now splice this into the
395 ;; current list.
396 (setcdr list (nconc computed (cdr (cdr list)))))
397 ;; It was not a valid table, so just remove the following placeholder.
398 (setcdr list (cdr (cdr list)))))))
399
400 ;; Expand tags table name FILE into a complete file name.
401 (defun tags-expand-table-name (file)
402 (setq file (expand-file-name file))
403 (if (file-directory-p file)
404 (expand-file-name "TAGS" file)
405 file))
406
407 ;; Like member, but comparison is done after tags-expand-table-name on both
408 ;; sides and elements of LIST that are t are skipped.
409 (defun tags-table-list-member (file list)
410 (setq file (tags-expand-table-name file))
411 (while (and list
412 (or (eq (car list) t)
413 (not (string= file (tags-expand-table-name (car list))))))
414 (setq list (cdr list)))
415 list)
416
417 (defun tags-verify-table (file)
418 "Read FILE into a buffer and verify that it is a valid tags table.
419 Sets the current buffer to one visiting FILE (if it exists).
420 Returns non-nil iff it is a valid table."
421 (if (get-file-buffer file)
422 ;; The file is already in a buffer. Check for the visited file
423 ;; having changed since we last used it.
424 (let (win)
425 (set-buffer (get-file-buffer file))
426 (setq win (or verify-tags-table-function (tags-table-mode)))
427 (if (or (verify-visited-file-modtime (current-buffer))
428 ;; Decide whether to revert the file.
429 ;; revert-without-query can say to revert
430 ;; or the user can say to revert.
431 (not (or (let ((tail revert-without-query)
432 (found nil))
433 (while tail
434 (if (string-match (car tail) buffer-file-name)
435 (setq found t))
436 (setq tail (cdr tail)))
437 found)
438 tags-revert-without-query
439 (yes-or-no-p
440 (format "Tags file %s has changed, read new contents? "
441 file)))))
442 (and verify-tags-table-function
443 (funcall verify-tags-table-function))
444 (revert-buffer t t)
445 (tags-table-mode)))
446 (and (file-exists-p file)
447 (progn
448 (set-buffer (find-file-noselect file))
449 (or (string= file buffer-file-name)
450 ;; find-file-noselect has changed the file name.
451 ;; Propagate the change to tags-file-name and tags-table-list.
452 (let ((tail (member file tags-table-list)))
453 (if tail
454 (setcar tail buffer-file-name))
455 (if (eq file tags-file-name)
456 (setq tags-file-name buffer-file-name))))
457 (tags-table-mode)))))
458
459 ;; Subroutine of visit-tags-table-buffer. Search the current tags tables
460 ;; for one that has tags for THIS-FILE (or that includes a table that
461 ;; does). Return the name of the first table table listing THIS-FILE; if
462 ;; the table is one included by another table, it is the master table that
463 ;; we return. If CORE-ONLY is non-nil, check only tags tables that are
464 ;; already in buffers--don't visit any new files.
465 (defun tags-table-including (this-file core-only)
466 (let ((tables tags-table-computed-list)
467 (found nil))
468 ;; Loop over the list, looking for a table containing tags for THIS-FILE.
469 (while (and (not found)
470 tables)
471
472 (if core-only
473 ;; Skip tables not in core.
474 (while (eq (nth 1 tables) t)
475 (setq tables (cdr (cdr tables))))
476 (if (eq (nth 1 tables) t)
477 ;; This table has not been read into core yet. Read it in now.
478 (tags-table-extend-computed-list)))
479
480 (if tables
481 ;; Select the tags table buffer and get the file list up to date.
482 (let ((tags-file-name (car tables)))
483 (visit-tags-table-buffer 'same)
484 (if (member this-file (mapcar 'expand-file-name
485 (tags-table-files)))
486 ;; Found it.
487 (setq found tables))))
488 (setq tables (cdr tables)))
489 (if found
490 ;; Now determine if the table we found was one included by another
491 ;; table, not explicitly listed. We do this by checking each
492 ;; element of the computed list to see if it appears in the user's
493 ;; explicit list; the last element we will check is FOUND itself.
494 ;; Then we return the last one which did in fact appear in
495 ;; tags-table-list.
496 (let ((could-be nil)
497 (elt tags-table-computed-list))
498 (while (not (eq elt (cdr found)))
499 (if (tags-table-list-member (car elt) tags-table-list)
500 ;; This table appears in the user's list, so it could be
501 ;; the one which includes the table we found.
502 (setq could-be (car elt)))
503 (setq elt (cdr elt))
504 (if (eq t (car elt))
505 (setq elt (cdr elt))))
506 ;; The last element we found in the computed list before FOUND
507 ;; that appears in the user's list will be the table that
508 ;; included the one we found.
509 could-be))))
510
511 ;; Subroutine of visit-tags-table-buffer. Move tags-table-list-pointer
512 ;; along and set tags-file-name. Returns nil when out of tables.
513 (defun tags-next-table ()
514 ;; If there is a placeholder element next, compute the list to replace it.
515 (while (eq (nth 1 tags-table-list-pointer) t)
516 (tags-table-extend-computed-list))
517
518 ;; Go to the next table in the list.
519 (setq tags-table-list-pointer (cdr tags-table-list-pointer))
520 (or tags-table-list-pointer
521 ;; Wrap around.
522 (setq tags-table-list-pointer tags-table-computed-list))
523
524 (if (eq tags-table-list-pointer tags-table-list-started-at)
525 ;; We have come full circle. No more tables.
526 (setq tags-table-list-pointer nil)
527 ;; Set tags-file-name to the name from the list. It is already expanded.
528 (setq tags-file-name (car tags-table-list-pointer))))
529
530 ;;;###autoload
531 (defun visit-tags-table-buffer (&optional cont)
532 "Select the buffer containing the current tags table.
533 If optional arg is a string, visit that file as a tags table.
534 If optional arg is t, visit the next table in `tags-table-list'.
535 If optional arg is the atom `same', don't look for a new table;
536 just select the buffer visiting `tags-file-name'.
537 If arg is nil or absent, choose a first buffer from information in
538 `tags-file-name', `tags-table-list', `tags-table-list-pointer'.
539 Returns t if it visits a tags table, or nil if there are no more in the list."
540
541 ;; Set tags-file-name to the tags table file we want to visit.
542 (cond ((eq cont 'same)
543 ;; Use the ambient value of tags-file-name.
544 (or tags-file-name
545 (error "%s"
546 (substitute-command-keys
547 (concat "No tags table in use; "
548 "use \\[visit-tags-table] to select one")))))
549
550 ((eq t cont)
551 ;; Find the next table.
552 (if (tags-next-table)
553 ;; Skip over nonexistent files.
554 (while (and (not (or (get-file-buffer tags-file-name)
555 (file-exists-p tags-file-name)))
556 (tags-next-table)))))
557
558 (t
559 ;; Pick a table out of our hat.
560 (tags-table-check-computed-list) ;Get it up to date, we might use it.
561 (setq tags-file-name
562 (or
563 ;; If passed a string, use that.
564 (if (stringp cont)
565 (prog1 cont
566 (setq cont nil)))
567 ;; First, try a local variable.
568 (cdr (assq 'tags-file-name (buffer-local-variables)))
569 ;; Second, try a user-specified function to guess.
570 (and default-tags-table-function
571 (funcall default-tags-table-function))
572 ;; Third, look for a tags table that contains tags for the
573 ;; current buffer's file. If one is found, the lists will
574 ;; be frobnicated, and CONT will be set non-nil so we don't
575 ;; do it below.
576 (and buffer-file-name
577 (or
578 ;; First check only tables already in buffers.
579 (tags-table-including buffer-file-name t)
580 ;; Since that didn't find any, now do the
581 ;; expensive version: reading new files.
582 (tags-table-including buffer-file-name nil)))
583 ;; Fourth, use the user variable tags-file-name, if it is
584 ;; not already in the current list.
585 (and tags-file-name
586 (not (tags-table-list-member tags-file-name
587 tags-table-computed-list))
588 tags-file-name)
589 ;; Fifth, use the user variable giving the table list.
590 ;; Find the first element of the list that actually exists.
591 (let ((list tags-table-list)
592 file)
593 (while (and list
594 (setq file (tags-expand-table-name (car list)))
595 (not (get-file-buffer file))
596 (not (file-exists-p file)))
597 (setq list (cdr list)))
598 (car list))
599 ;; Finally, prompt the user for a file name.
600 (expand-file-name
601 (read-file-name "Visit tags table (default TAGS): "
602 default-directory
603 "TAGS"
604 t))))))
605
606 ;; Expand the table name into a full file name.
607 (setq tags-file-name (tags-expand-table-name tags-file-name))
608
609 (unless (and (eq cont t) (null tags-table-list-pointer))
610 ;; Verify that tags-file-name names a valid tags table.
611 ;; Bind another variable with the value of tags-file-name
612 ;; before we switch buffers, in case tags-file-name is buffer-local.
613 (let ((curbuf (current-buffer))
614 (local-tags-file-name tags-file-name))
615 (if (tags-verify-table local-tags-file-name)
616
617 ;; We have a valid tags table.
618 (progn
619 ;; Bury the tags table buffer so it
620 ;; doesn't get in the user's way.
621 (bury-buffer (current-buffer))
622
623 ;; If this was a new table selection (CONT is nil), make
624 ;; sure tags-table-list includes the chosen table, and
625 ;; update the list pointer variables.
626 (or cont
627 ;; Look in the list for the table we chose.
628 (let ((found (tags-table-list-member
629 local-tags-file-name
630 tags-table-computed-list)))
631 (if found
632 ;; There it is. Just switch to it.
633 (setq tags-table-list-pointer found
634 tags-table-list-started-at found)
635
636 ;; The table is not in the current set.
637 ;; Try to find it in another previously used set.
638 (let ((sets tags-table-set-list))
639 (while (and sets
640 (not (tags-table-list-member
641 local-tags-file-name
642 (car sets))))
643 (setq sets (cdr sets)))
644 (if sets
645 ;; Found in some other set. Switch to that set.
646 (progn
647 (or (memq tags-table-list tags-table-set-list)
648 ;; Save the current list.
649 (setq tags-table-set-list
650 (cons tags-table-list
651 tags-table-set-list)))
652 (setq tags-table-list (car sets)))
653
654 ;; Not found in any existing set.
655 (if (and tags-table-list
656 (or (eq t tags-add-tables)
657 (and tags-add-tables
658 (y-or-n-p
659 (concat "Keep current list of "
660 "tags tables also? ")))))
661 ;; Add it to the current list.
662 (setq tags-table-list (cons local-tags-file-name
663 tags-table-list))
664
665 ;; Make a fresh list, and store the old one.
666 (message "Starting a new list of tags tables")
667 (or (null tags-table-list)
668 (memq tags-table-list tags-table-set-list)
669 (setq tags-table-set-list
670 (cons tags-table-list
671 tags-table-set-list)))
672 ;; Clear out buffers holding old tables.
673 (dolist (table tags-table-list)
674 ;; The list can contain items `t'.
675 (if (stringp table)
676 (let ((buffer (find-buffer-visiting table)))
677 (if buffer
678 (kill-buffer buffer)))))
679 (setq tags-table-list (list local-tags-file-name))))
680
681 ;; Recompute tags-table-computed-list.
682 (tags-table-check-computed-list)
683 ;; Set the tags table list state variables to start
684 ;; over from tags-table-computed-list.
685 (setq tags-table-list-started-at tags-table-computed-list
686 tags-table-list-pointer
687 tags-table-computed-list)))))
688
689 ;; Return of t says the tags table is valid.
690 t)
691
692 ;; The buffer was not valid. Don't use it again.
693 (set-buffer curbuf)
694 (kill-local-variable 'tags-file-name)
695 (if (eq local-tags-file-name tags-file-name)
696 (setq tags-file-name nil))
697 (error "File %s is not a valid tags table" local-tags-file-name)))))
698
699 (defun tags-reset-tags-tables ()
700 "Reset tags state to cancel effect of any previous \\[visit-tags-table] or \\[find-tag]."
701 (interactive)
702 ;; Clear out the markers we are throwing away.
703 (let ((i 0))
704 (while (< i find-tag-marker-ring-length)
705 (if (aref (cddr tags-location-ring) i)
706 (set-marker (aref (cddr tags-location-ring) i) nil))
707 (if (aref (cddr find-tag-marker-ring) i)
708 (set-marker (aref (cddr find-tag-marker-ring) i) nil))
709 (setq i (1+ i))))
710 (setq tags-file-name nil
711 tags-location-ring (make-ring find-tag-marker-ring-length)
712 find-tag-marker-ring (make-ring find-tag-marker-ring-length)
713 tags-table-list nil
714 tags-table-computed-list nil
715 tags-table-computed-list-for nil
716 tags-table-list-pointer nil
717 tags-table-list-started-at nil
718 tags-table-set-list nil))
719 \f
720 (defun file-of-tag (&optional relative)
721 "Return the file name of the file whose tags point is within.
722 Assumes the tags table is the current buffer.
723 If RELATIVE is non-nil, file name returned is relative to tags
724 table file's directory. If RELATIVE is nil, file name returned
725 is complete."
726 (funcall file-of-tag-function relative))
727
728 ;;;###autoload
729 (defun tags-table-files ()
730 "Return a list of files in the current tags table.
731 Assumes the tags table is the current buffer. The file names are returned
732 as they appeared in the `etags' command that created the table, usually
733 without directory names."
734 (or tags-table-files
735 (setq tags-table-files
736 (funcall tags-table-files-function))))
737
738 (defun tags-included-tables ()
739 "Return a list of tags tables included by the current table.
740 Assumes the tags table is the current buffer."
741 (or tags-included-tables
742 (setq tags-included-tables (funcall tags-included-tables-function))))
743 \f
744 ;; Build tags-completion-table on demand. The single current tags table
745 ;; and its included tags tables (and their included tables, etc.) have
746 ;; their tags included in the completion table.
747 (defun tags-completion-table ()
748 (or tags-completion-table
749 (condition-case ()
750 (prog2
751 (message "Making tags completion table for %s..." buffer-file-name)
752 (let ((included (tags-included-tables))
753 (table (funcall tags-completion-table-function)))
754 (save-excursion
755 ;; Iterate over the list of included tables, and combine each
756 ;; included table's completion obarray to the parent obarray.
757 (while included
758 ;; Visit the buffer.
759 (let ((tags-file-name (car included)))
760 (visit-tags-table-buffer 'same))
761 ;; Recurse in that buffer to compute its completion table.
762 (if (tags-completion-table)
763 ;; Combine the tables.
764 (mapatoms (lambda (sym) (intern (symbol-name sym) table))
765 tags-completion-table))
766 (setq included (cdr included))))
767 (setq tags-completion-table table))
768 (message "Making tags completion table for %s...done"
769 buffer-file-name))
770 (quit (message "Tags completion table construction aborted.")
771 (setq tags-completion-table nil)))))
772
773 ;; Completion function for tags. Does normal try-completion,
774 ;; but builds tags-completion-table on demand.
775 (defun tags-complete-tag (string predicate what)
776 (save-excursion
777 ;; If we need to ask for the tag table, allow that.
778 (let ((enable-recursive-minibuffers t))
779 (visit-tags-table-buffer))
780 (if (eq what t)
781 (all-completions string (tags-completion-table) predicate)
782 (try-completion string (tags-completion-table) predicate))))
783 \f
784 ;; Read a tag name from the minibuffer with defaulting and completion.
785 (defun find-tag-tag (string)
786 (let* ((completion-ignore-case (if (memq tags-case-fold-search '(t nil))
787 tags-case-fold-search
788 case-fold-search))
789 (default (funcall (or find-tag-default-function
790 (get major-mode 'find-tag-default-function)
791 'find-tag-default)))
792 (spec (completing-read (if default
793 (format "%s (default %s): "
794 (substring string 0 (string-match "[ :]+\\'" string))
795 default)
796 string)
797 'tags-complete-tag
798 nil nil nil nil default)))
799 (if (equal spec "")
800 (or default (error "There is no default tag"))
801 spec)))
802
803 (defvar last-tag nil
804 "Last tag found by \\[find-tag].")
805
806 ;; Get interactive args for find-tag{-noselect,-other-window,-regexp}.
807 (defun find-tag-interactive (prompt &optional no-default)
808 (if (and current-prefix-arg last-tag)
809 (list nil (if (< (prefix-numeric-value current-prefix-arg) 0)
810 '-
811 t))
812 (list (if no-default
813 (read-string prompt)
814 (find-tag-tag prompt)))))
815
816 (defvar find-tag-history nil)
817
818 ;; Dynamic bondage:
819 (eval-when-compile
820 (defvar etags-case-fold-search)
821 (defvar etags-syntax-table))
822
823 ;;;###autoload
824 (defun find-tag-noselect (tagname &optional next-p regexp-p)
825 "Find tag (in current tags table) whose name contains TAGNAME.
826 Returns the buffer containing the tag's definition and moves its point there,
827 but does not select the buffer.
828 The default for TAGNAME is the expression in the buffer near point.
829
830 If second arg NEXT-P is t (interactively, with prefix arg), search for
831 another tag that matches the last tagname or regexp used. When there are
832 multiple matches for a tag, more exact matches are found first. If NEXT-P
833 is the atom `-' (interactively, with prefix arg that is a negative number
834 or just \\[negative-argument]), pop back to the previous tag gone to.
835
836 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
837
838 A marker representing the point when this command is invoked is pushed
839 onto a ring and may be popped back to with \\[pop-tag-mark].
840 Contrast this with the ring of marks gone to by the command.
841
842 See documentation of variable `tags-file-name'."
843 (interactive (find-tag-interactive "Find tag: "))
844
845 (setq find-tag-history (cons tagname find-tag-history))
846 ;; Save the current buffer's value of `find-tag-hook' before
847 ;; selecting the tags table buffer. For the same reason, save value
848 ;; of `tags-file-name' in case it has a buffer-local value.
849 (let ((local-find-tag-hook find-tag-hook))
850 (if (eq '- next-p)
851 ;; Pop back to a previous location.
852 (if (ring-empty-p tags-location-ring)
853 (error "No previous tag locations")
854 (let ((marker (ring-remove tags-location-ring 0)))
855 (prog1
856 ;; Move to the saved location.
857 (set-buffer (or (marker-buffer marker)
858 (error "The marked buffer has been deleted")))
859 (goto-char (marker-position marker))
860 ;; Kill that marker so it doesn't slow down editing.
861 (set-marker marker nil nil)
862 ;; Run the user's hook. Do we really want to do this for pop?
863 (run-hooks 'local-find-tag-hook))))
864 ;; Record whence we came.
865 (ring-insert find-tag-marker-ring (point-marker))
866 (if (and next-p last-tag)
867 ;; Find the same table we last used.
868 (visit-tags-table-buffer 'same)
869 ;; Pick a table to use.
870 (visit-tags-table-buffer)
871 ;; Record TAGNAME for a future call with NEXT-P non-nil.
872 (setq last-tag tagname))
873 ;; Record the location so we can pop back to it later.
874 (let ((marker (make-marker)))
875 (save-excursion
876 (set-buffer
877 ;; find-tag-in-order does the real work.
878 (find-tag-in-order
879 (if (and next-p last-tag) last-tag tagname)
880 (if regexp-p
881 find-tag-regexp-search-function
882 find-tag-search-function)
883 (if regexp-p
884 find-tag-regexp-tag-order
885 find-tag-tag-order)
886 (if regexp-p
887 find-tag-regexp-next-line-after-failure-p
888 find-tag-next-line-after-failure-p)
889 (if regexp-p "matching" "containing")
890 (or (not next-p) (not last-tag))))
891 (set-marker marker (point))
892 (run-hooks 'local-find-tag-hook)
893 (ring-insert tags-location-ring marker)
894 (current-buffer))))))
895
896 ;;;###autoload
897 (defun find-tag (tagname &optional next-p regexp-p)
898 "Find tag (in current tags table) whose name contains TAGNAME.
899 Select the buffer containing the tag's definition, and move point there.
900 The default for TAGNAME is the expression in the buffer around or before point.
901
902 If second arg NEXT-P is t (interactively, with prefix arg), search for
903 another tag that matches the last tagname or regexp used. When there are
904 multiple matches for a tag, more exact matches are found first. If NEXT-P
905 is the atom `-' (interactively, with prefix arg that is a negative number
906 or just \\[negative-argument]), pop back to the previous tag gone to.
907
908 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
909
910 A marker representing the point when this command is invoked is pushed
911 onto a ring and may be popped back to with \\[pop-tag-mark].
912 Contrast this with the ring of marks gone to by the command.
913
914 See documentation of variable `tags-file-name'."
915 (interactive (find-tag-interactive "Find tag: "))
916 (let* ((buf (find-tag-noselect tagname next-p regexp-p))
917 (pos (with-current-buffer buf (point))))
918 (condition-case nil
919 (switch-to-buffer buf)
920 (error (pop-to-buffer buf)))
921 (goto-char pos)))
922 ;;;###autoload (define-key esc-map "." 'find-tag)
923
924 ;;;###autoload
925 (defun find-tag-other-window (tagname &optional next-p regexp-p)
926 "Find tag (in current tags table) whose name contains TAGNAME.
927 Select the buffer containing the tag's definition in another window, and
928 move point there. The default for TAGNAME is the expression in the buffer
929 around or before point.
930
931 If second arg NEXT-P is t (interactively, with prefix arg), search for
932 another tag that matches the last tagname or regexp used. When there are
933 multiple matches for a tag, more exact matches are found first. If NEXT-P
934 is negative (interactively, with prefix arg that is a negative number or
935 just \\[negative-argument]), pop back to the previous tag gone to.
936
937 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
938
939 A marker representing the point when this command is invoked is pushed
940 onto a ring and may be popped back to with \\[pop-tag-mark].
941 Contrast this with the ring of marks gone to by the command.
942
943 See documentation of variable `tags-file-name'."
944 (interactive (find-tag-interactive "Find tag other window: "))
945
946 ;; This hair is to deal with the case where the tag is found in the
947 ;; selected window's buffer; without the hair, point is moved in both
948 ;; windows. To prevent this, we save the selected window's point before
949 ;; doing find-tag-noselect, and restore it after.
950 (let* ((window-point (window-point (selected-window)))
951 (tagbuf (find-tag-noselect tagname next-p regexp-p))
952 (tagpoint (progn (set-buffer tagbuf) (point))))
953 (set-window-point (prog1
954 (selected-window)
955 (switch-to-buffer-other-window tagbuf)
956 ;; We have to set this new window's point; it
957 ;; might already have been displaying a
958 ;; different portion of tagbuf, in which case
959 ;; switch-to-buffer-other-window doesn't set
960 ;; the window's point from the buffer.
961 (set-window-point (selected-window) tagpoint))
962 window-point)))
963 ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window)
964
965 ;;;###autoload
966 (defun find-tag-other-frame (tagname &optional next-p)
967 "Find tag (in current tags table) whose name contains TAGNAME.
968 Select the buffer containing the tag's definition in another frame, and
969 move point there. The default for TAGNAME is the expression in the buffer
970 around or before point.
971
972 If second arg NEXT-P is t (interactively, with prefix arg), search for
973 another tag that matches the last tagname or regexp used. When there are
974 multiple matches for a tag, more exact matches are found first. If NEXT-P
975 is negative (interactively, with prefix arg that is a negative number or
976 just \\[negative-argument]), pop back to the previous tag gone to.
977
978 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
979
980 A marker representing the point when this command is invoked is pushed
981 onto a ring and may be popped back to with \\[pop-tag-mark].
982 Contrast this with the ring of marks gone to by the command.
983
984 See documentation of variable `tags-file-name'."
985 (interactive (find-tag-interactive "Find tag other frame: "))
986 (let ((pop-up-frames t))
987 (find-tag-other-window tagname next-p)))
988 ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame)
989
990 ;;;###autoload
991 (defun find-tag-regexp (regexp &optional next-p other-window)
992 "Find tag (in current tags table) whose name matches REGEXP.
993 Select the buffer containing the tag's definition and move point there.
994
995 If second arg NEXT-P is t (interactively, with prefix arg), search for
996 another tag that matches the last tagname or regexp used. When there are
997 multiple matches for a tag, more exact matches are found first. If NEXT-P
998 is negative (interactively, with prefix arg that is a negative number or
999 just \\[negative-argument]), pop back to the previous tag gone to.
1000
1001 If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
1002
1003 A marker representing the point when this command is invoked is pushed
1004 onto a ring and may be popped back to with \\[pop-tag-mark].
1005 Contrast this with the ring of marks gone to by the command.
1006
1007 See documentation of variable `tags-file-name'."
1008 (interactive (find-tag-interactive "Find tag regexp: " t))
1009 ;; We go through find-tag-other-window to do all the display hair there.
1010 (funcall (if other-window 'find-tag-other-window 'find-tag)
1011 regexp next-p t))
1012 ;;;###autoload (define-key esc-map [?\C-.] 'find-tag-regexp)
1013
1014 ;;;###autoload (define-key esc-map "*" 'pop-tag-mark)
1015
1016 ;;;###autoload
1017 (defun pop-tag-mark ()
1018 "Pop back to where \\[find-tag] was last invoked.
1019
1020 This is distinct from invoking \\[find-tag] with a negative argument
1021 since that pops a stack of markers at which tags were found, not from
1022 where they were found."
1023 (interactive)
1024 (if (ring-empty-p find-tag-marker-ring)
1025 (error "No previous locations for find-tag invocation"))
1026 (let ((marker (ring-remove find-tag-marker-ring 0)))
1027 (switch-to-buffer (or (marker-buffer marker)
1028 (error "The marked buffer has been deleted")))
1029 (goto-char (marker-position marker))
1030 (set-marker marker nil nil)))
1031 \f
1032 ;; Internal tag finding function.
1033
1034 ;; PATTERN is a string to pass to second arg SEARCH-FORWARD-FUNC, and to
1035 ;; any member of the function list ORDER (third arg). If ORDER is nil,
1036 ;; use saved state to continue a previous search.
1037
1038 ;; Fourth arg NEXT-LINE-AFTER-FAILURE-P is non-nil if after a failed match,
1039 ;; point should be moved to the next line.
1040
1041 ;; Fifth arg MATCHING is a string, an English '-ing' word, to be used in
1042 ;; an error message.
1043
1044 ;; Algorithm is as follows. For each qualifier-func in ORDER, go to
1045 ;; beginning of tags file, and perform inner loop: for each naive match for
1046 ;; PATTERN found using SEARCH-FORWARD-FUNC, qualify the naive match using
1047 ;; qualifier-func. If it qualifies, go to the specified line in the
1048 ;; specified source file and return. Qualified matches are remembered to
1049 ;; avoid repetition. State is saved so that the loop can be continued.
1050
1051 (defvar tag-lines-already-matched nil) ;matches remembered here between calls
1052
1053 (defun find-tag-in-order (pattern
1054 search-forward-func
1055 order
1056 next-line-after-failure-p
1057 matching
1058 first-search)
1059 (let (file ;name of file containing tag
1060 tag-info ;where to find the tag in FILE
1061 (first-table t)
1062 (tag-order order)
1063 (match-marker (make-marker))
1064 goto-func
1065 (case-fold-search (if (memq tags-case-fold-search '(nil t))
1066 tags-case-fold-search
1067 case-fold-search))
1068 )
1069 (save-excursion
1070
1071 (if first-search
1072 ;; This is the start of a search for a fresh tag.
1073 ;; Clear the list of tags matched by the previous search.
1074 ;; find-tag-noselect has already put us in the first tags table
1075 ;; buffer before we got called.
1076 (setq tag-lines-already-matched nil)
1077 ;; Continuing to search for the tag specified last time.
1078 ;; tag-lines-already-matched lists locations matched in previous
1079 ;; calls so we don't visit the same tag twice if it matches twice
1080 ;; during two passes with different qualification predicates.
1081 ;; Switch to the current tags table buffer.
1082 (visit-tags-table-buffer 'same))
1083
1084 ;; Get a qualified match.
1085 (catch 'qualified-match-found
1086
1087 ;; Iterate over the list of tags tables.
1088 (while (or first-table
1089 (visit-tags-table-buffer t))
1090
1091 (and first-search first-table
1092 ;; Start at beginning of tags file.
1093 (goto-char (point-min)))
1094
1095 (setq first-table nil)
1096
1097 ;; Iterate over the list of ordering predicates.
1098 (while order
1099 (while (funcall search-forward-func pattern nil t)
1100 ;; Naive match found. Qualify the match.
1101 (and (funcall (car order) pattern)
1102 ;; Make sure it is not a previous qualified match.
1103 (not (member (set-marker match-marker (save-excursion
1104 (beginning-of-line)
1105 (point)))
1106 tag-lines-already-matched))
1107 (throw 'qualified-match-found nil))
1108 (if next-line-after-failure-p
1109 (forward-line 1)))
1110 ;; Try the next flavor of match.
1111 (setq order (cdr order))
1112 (goto-char (point-min)))
1113 (setq order tag-order))
1114 ;; We throw out on match, so only get here if there were no matches.
1115 ;; Clear out the markers we use to avoid duplicate matches so they
1116 ;; don't slow down editting and are immediately available for GC.
1117 (while tag-lines-already-matched
1118 (set-marker (car tag-lines-already-matched) nil nil)
1119 (setq tag-lines-already-matched (cdr tag-lines-already-matched)))
1120 (set-marker match-marker nil nil)
1121 (error "No %stags %s %s" (if first-search "" "more ")
1122 matching pattern))
1123
1124 ;; Found a tag; extract location info.
1125 (beginning-of-line)
1126 (setq tag-lines-already-matched (cons match-marker
1127 tag-lines-already-matched))
1128 ;; Expand the filename, using the tags table buffer's default-directory.
1129 ;; We should be able to search for file-name backwards in file-of-tag:
1130 ;; the beginning-of-line is ok except when positioned on a "file-name" tag.
1131 (setq file (expand-file-name
1132 (if (memq (car order) '(tag-exact-file-name-match-p
1133 tag-file-name-match-p
1134 tag-partial-file-name-match-p))
1135 (save-excursion (next-line 1)
1136 (file-of-tag))
1137 (file-of-tag)))
1138 tag-info (funcall snarf-tag-function))
1139
1140 ;; Get the local value in the tags table buffer before switching buffers.
1141 (setq goto-func goto-tag-location-function)
1142 (tag-find-file-of-tag-noselect file)
1143 (widen)
1144 (push-mark)
1145 (funcall goto-func tag-info)
1146
1147 ;; Return the buffer where the tag was found.
1148 (current-buffer))))
1149
1150 (defun tag-find-file-of-tag-noselect (file)
1151 ;; Find the right line in the specified file.
1152 ;; If we are interested in compressed-files,
1153 ;; we search files with extensions.
1154 ;; otherwise only the real file.
1155 (let* ((buffer-search-extensions (if (featurep 'jka-compr)
1156 tags-compression-info-list
1157 '("")))
1158 the-buffer
1159 (file-search-extensions buffer-search-extensions))
1160 ;; search a buffer visiting the file with each possible extension
1161 ;; Note: there is a small inefficiency in find-buffer-visiting :
1162 ;; truename is computed even if not needed. Not too sure about this
1163 ;; but I suspect truename computation accesses the disk.
1164 ;; It is maybe a good idea to optimise this find-buffer-visiting.
1165 ;; An alternative would be to use only get-file-buffer
1166 ;; but this looks less "sure" to find the buffer for the file.
1167 (while (and (not the-buffer) buffer-search-extensions)
1168 (setq the-buffer (find-buffer-visiting (concat file (car buffer-search-extensions))))
1169 (setq buffer-search-extensions (cdr buffer-search-extensions)))
1170 ;; if found a buffer but file modified, ensure we re-read !
1171 (if (and the-buffer (not (verify-visited-file-modtime the-buffer)))
1172 (find-file-noselect (buffer-file-name the-buffer)))
1173 ;; if no buffer found, search for files with possible extensions on disk
1174 (while (and (not the-buffer) file-search-extensions)
1175 (if (not (file-exists-p (concat file (car file-search-extensions))))
1176 (setq file-search-extensions (cdr file-search-extensions))
1177 (setq the-buffer (find-file-noselect (concat file (car file-search-extensions))))))
1178 (if (not the-buffer)
1179 (if (featurep 'jka-compr)
1180 (error "File %s (with or without extensions %s) not found" file tags-compression-info-list)
1181 (error "File %s not found" file))
1182 (set-buffer the-buffer))))
1183
1184 (defun tag-find-file-of-tag (file)
1185 (let ((buf (tag-find-file-of-tag-noselect file)))
1186 (condition-case nil
1187 (switch-to-buffer buf)
1188 (error (pop-to-buffer buf)))))
1189 \f
1190 ;; `etags' TAGS file format support.
1191
1192 ;; If the current buffer is a valid etags TAGS file, give it local values of
1193 ;; the tags table format variables, and return non-nil.
1194 (defun etags-recognize-tags-table ()
1195 (and (etags-verify-tags-table)
1196 ;; It is annoying to flash messages on the screen briefly,
1197 ;; and this message is not useful. -- rms
1198 ;; (message "%s is an `etags' TAGS file" buffer-file-name)
1199 (mapc (lambda (elt) (set (make-local-variable (car elt)) (cdr elt)))
1200 '((file-of-tag-function . etags-file-of-tag)
1201 (tags-table-files-function . etags-tags-table-files)
1202 (tags-completion-table-function . etags-tags-completion-table)
1203 (snarf-tag-function . etags-snarf-tag)
1204 (goto-tag-location-function . etags-goto-tag-location)
1205 (find-tag-regexp-search-function . re-search-forward)
1206 (find-tag-regexp-tag-order . (tag-re-match-p))
1207 (find-tag-regexp-next-line-after-failure-p . t)
1208 (find-tag-search-function . search-forward)
1209 (find-tag-tag-order . (tag-exact-file-name-match-p
1210 tag-file-name-match-p
1211 tag-exact-match-p
1212 tag-implicit-name-match-p
1213 tag-symbol-match-p
1214 tag-word-match-p
1215 tag-partial-file-name-match-p
1216 tag-any-match-p))
1217 (find-tag-next-line-after-failure-p . nil)
1218 (list-tags-function . etags-list-tags)
1219 (tags-apropos-function . etags-tags-apropos)
1220 (tags-included-tables-function . etags-tags-included-tables)
1221 (verify-tags-table-function . etags-verify-tags-table)
1222 ))))
1223
1224 ;; Return non-nil iff the current buffer is a valid etags TAGS file.
1225 (defun etags-verify-tags-table ()
1226 ;; Use eq instead of = in case char-after returns nil.
1227 (eq (char-after (point-min)) ?\f))
1228
1229 (defun etags-file-of-tag (&optional relative)
1230 (save-excursion
1231 (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n")
1232 (let ((str (buffer-substring (match-beginning 1) (match-end 1))))
1233 (if relative
1234 str
1235 (expand-file-name str
1236 (file-truename default-directory))))))
1237
1238
1239 (defun etags-tags-completion-table ()
1240 (let ((table (make-vector 511 0))
1241 (progress-reporter
1242 (make-progress-reporter
1243 (format "Making tags completion table for %s..." buffer-file-name)
1244 (point-min) (point-max))))
1245 (save-excursion
1246 (goto-char (point-min))
1247 ;; This monster regexp matches an etags tag line.
1248 ;; \1 is the string to match;
1249 ;; \2 is not interesting;
1250 ;; \3 is the guessed tag name; XXX guess should be better eg DEFUN
1251 ;; \4 is not interesting;
1252 ;; \5 is the explicitly-specified tag name.
1253 ;; \6 is the line to start searching at;
1254 ;; \7 is the char to start searching at.
1255 (while (re-search-forward
1256 "^\\(\\([^\177]+[^-a-zA-Z0-9_+*$:\177]+\\)?\
1257 \\([-a-zA-Z0-9_+*$?:]+\\)[^-a-zA-Z0-9_+*$?:\177]*\\)\177\
1258 \\(\\([^\n\001]+\\)\001\\)?\\([0-9]+\\)?,\\([0-9]+\\)?\n"
1259 nil t)
1260 (intern (prog1 (if (match-beginning 5)
1261 ;; There is an explicit tag name.
1262 (buffer-substring (match-beginning 5) (match-end 5))
1263 ;; No explicit tag name. Best guess.
1264 (buffer-substring (match-beginning 3) (match-end 3)))
1265 (progress-reporter-update progress-reporter (point)))
1266 table)))
1267 table))
1268
1269 (defun etags-snarf-tag (&optional use-explicit)
1270 (let (tag-text line startpos explicit-start)
1271 (if (save-excursion
1272 (forward-line -1)
1273 (looking-at "\f\n"))
1274 ;; The match was for a source file name, not any tag within a file.
1275 ;; Give text of t, meaning to go exactly to the location we specify,
1276 ;; the beginning of the file.
1277 (setq tag-text t
1278 line nil
1279 startpos (point-min))
1280
1281 ;; Find the end of the tag and record the whole tag text.
1282 (search-forward "\177")
1283 (setq tag-text (buffer-substring (1- (point))
1284 (save-excursion (beginning-of-line)
1285 (point))))
1286 ;; If use-explicit is non nil and explicit tag is present, use it as part of
1287 ;; return value. Else just skip it.
1288 (setq explicit-start (point))
1289 (when (and (search-forward "\001" (save-excursion (forward-line 1) (point)) t)
1290 use-explicit)
1291 (setq tag-text (buffer-substring explicit-start (1- (point)))))
1292
1293
1294 (if (looking-at "[0-9]")
1295 (setq line (string-to-number (buffer-substring
1296 (point)
1297 (progn (skip-chars-forward "0-9")
1298 (point))))))
1299 (search-forward ",")
1300 (if (looking-at "[0-9]")
1301 (setq startpos (string-to-number (buffer-substring
1302 (point)
1303 (progn (skip-chars-forward "0-9")
1304 (point)))))))
1305 ;; Leave point on the next line of the tags file.
1306 (forward-line 1)
1307 (cons tag-text (cons line startpos))))
1308
1309 ;; TAG-INFO is a cons (TEXT LINE . POSITION) where TEXT is the initial part
1310 ;; of a line containing the tag and POSITION is the character position of
1311 ;; TEXT within the file (starting from 1); LINE is the line number. If
1312 ;; TEXT is t, it means the tag refers to exactly LINE or POSITION
1313 ;; (whichever is present, LINE having preference, no searching. Either
1314 ;; LINE or POSITION may be nil; POSITION is used if present. If the tag
1315 ;; isn't exactly at the given position then look around that position using
1316 ;; a search window which expands until it hits the start of file.
1317 (defun etags-goto-tag-location (tag-info)
1318 (let ((startpos (cdr (cdr tag-info)))
1319 (line (car (cdr tag-info)))
1320 offset found pat)
1321 (if (eq (car tag-info) t)
1322 ;; Direct file tag.
1323 (cond (line (goto-line line))
1324 (startpos (goto-char startpos))
1325 (t (error "etags.el BUG: bogus direct file tag")))
1326 ;; This constant is 1/2 the initial search window.
1327 ;; There is no sense in making it too small,
1328 ;; since just going around the loop once probably
1329 ;; costs about as much as searching 2000 chars.
1330 (setq offset 1000
1331 found nil
1332 pat (concat (if (eq selective-display t)
1333 "\\(^\\|\^m\\)" "^")
1334 (regexp-quote (car tag-info))))
1335 ;; The character position in the tags table is 0-origin.
1336 ;; Convert it to a 1-origin Emacs character position.
1337 (if startpos (setq startpos (1+ startpos)))
1338 ;; If no char pos was given, try the given line number.
1339 (or startpos
1340 (if line
1341 (setq startpos (progn (goto-line line)
1342 (point)))))
1343 (or startpos
1344 (setq startpos (point-min)))
1345 ;; First see if the tag is right at the specified location.
1346 (goto-char startpos)
1347 (setq found (looking-at pat))
1348 (while (and (not found)
1349 (progn
1350 (goto-char (- startpos offset))
1351 (not (bobp))))
1352 (setq found
1353 (re-search-forward pat (+ startpos offset) t)
1354 offset (* 3 offset))) ; expand search window
1355 (or found
1356 (re-search-forward pat nil t)
1357 (error "Rerun etags: `%s' not found in %s"
1358 pat buffer-file-name)))
1359 ;; Position point at the right place
1360 ;; if the search string matched an extra Ctrl-m at the beginning.
1361 (and (eq selective-display t)
1362 (looking-at "\^m")
1363 (forward-char 1))
1364 (beginning-of-line)))
1365
1366 (defun etags-list-tags (file)
1367 (goto-char (point-min))
1368 (when (re-search-forward (concat "\f\n" "\\(" file "\\)" ",") nil t)
1369 (let ((path (save-excursion (forward-line 1) (file-of-tag)))
1370 ;; Get the local value in the tags table
1371 ;; buffer before switching buffers.
1372 (goto-func goto-tag-location-function)
1373 tag tag-info pt)
1374 (forward-line 1)
1375 (while (not (or (eobp) (looking-at "\f")))
1376 (setq tag-info (save-excursion (funcall snarf-tag-function t))
1377 tag (car tag-info)
1378 pt (with-current-buffer standard-output (point)))
1379 (princ tag)
1380 (when (= (aref tag 0) ?\() (princ " ...)"))
1381 (with-current-buffer standard-output
1382 (make-text-button pt (point)
1383 'tag-info tag-info
1384 'file-path path
1385 'goto-func goto-func
1386 'action (lambda (button)
1387 (let ((tag-info (button-get button 'tag-info))
1388 (goto-func (button-get button 'goto-func)))
1389 (tag-find-file-of-tag (button-get button 'file-path))
1390 (widen)
1391 (funcall goto-func tag-info)))
1392 'face 'tags-tag-face
1393 'type 'button))
1394 (terpri)
1395 (forward-line 1))
1396 t)))
1397
1398 (defmacro tags-with-face (face &rest body)
1399 "Execute BODY, give output to `standard-output' face FACE."
1400 (let ((pp (make-symbol "start")))
1401 `(let ((,pp (with-current-buffer standard-output (point))))
1402 ,@body
1403 (put-text-property ,pp (with-current-buffer standard-output (point))
1404 'face ,face standard-output))))
1405
1406 (defun etags-tags-apropos-additional (regexp)
1407 "Display tags matching REGEXP from `tags-apropos-additional-actions'."
1408 (with-current-buffer standard-output
1409 (dolist (oba tags-apropos-additional-actions)
1410 (princ "\n\n")
1411 (tags-with-face 'highlight (princ (car oba)))
1412 (princ":\n\n")
1413 (let* ((beg (point))
1414 (symbs (car (cddr oba)))
1415 (ins-symb (lambda (sy)
1416 (let ((sn (symbol-name sy)))
1417 (when (string-match regexp sn)
1418 (make-text-button (point)
1419 (progn (princ sy) (point))
1420 'action-internal(cadr oba)
1421 'action (lambda (button) (funcall
1422 (button-get button 'action-internal)
1423 (button-get button 'item)))
1424 'item sn
1425 'face tags-tag-face
1426 'type 'button)
1427 (terpri))))))
1428 (when (symbolp symbs)
1429 (if (boundp symbs)
1430 (setq symbs (symbol-value symbs))
1431 (insert "symbol `" (symbol-name symbs) "' has no value\n")
1432 (setq symbs nil)))
1433 (if (vectorp symbs)
1434 (mapatoms ins-symb symbs)
1435 (dolist (sy symbs)
1436 (funcall ins-symb (car sy))))
1437 (sort-lines nil beg (point))))))
1438
1439 (defun etags-tags-apropos (string)
1440 (when tags-apropos-verbose
1441 (princ "Tags in file `")
1442 (tags-with-face 'highlight (princ buffer-file-name))
1443 (princ "':\n\n"))
1444 (goto-char (point-min))
1445 (let ((progress-reporter (make-progress-reporter
1446 (format "Making tags apropos buffer for `%s'..."
1447 string)
1448 (point-min) (point-max))))
1449 (while (re-search-forward string nil t)
1450 (progress-reporter-update progress-reporter (point))
1451 (beginning-of-line)
1452
1453 (let* ( ;; Get the local value in the tags table
1454 ;; buffer before switching buffers.
1455 (goto-func goto-tag-location-function)
1456 (tag-info (save-excursion (funcall snarf-tag-function)))
1457 (tag (if (eq t (car tag-info)) nil (car tag-info)))
1458 (file-path (save-excursion (if tag (file-of-tag)
1459 (save-excursion (next-line 1)
1460 (file-of-tag)))))
1461 (file-label (if tag (file-of-tag t)
1462 (save-excursion (next-line 1)
1463 (file-of-tag t))))
1464 (pt (with-current-buffer standard-output (point))))
1465 (if tag
1466 (progn
1467 (princ (format "[%s]: " file-label))
1468 (princ tag)
1469 (when (= (aref tag 0) ?\() (princ " ...)"))
1470 (with-current-buffer standard-output
1471 (make-text-button pt (point)
1472 'tag-info tag-info
1473 'file-path file-path
1474 'goto-func goto-func
1475 'action (lambda (button)
1476 (let ((tag-info (button-get button 'tag-info))
1477 (goto-func (button-get button 'goto-func)))
1478 (tag-find-file-of-tag (button-get button 'file-path))
1479 (widen)
1480 (funcall goto-func tag-info)))
1481 'face 'tags-tag-face
1482 'type 'button)))
1483 (princ (format "- %s" file-label))
1484 (with-current-buffer standard-output
1485 (make-text-button pt (point)
1486 'file-path file-path
1487 'action (lambda (button)
1488 (tag-find-file-of-tag (button-get button 'file-path))
1489 ;; Get the local value in the tags table
1490 ;; buffer before switching buffers.
1491 (goto-char (point-min)))
1492 'face 'tags-tag-face
1493 'type 'button))
1494 ))
1495 (terpri)
1496 (forward-line 1))
1497 (message nil))
1498 (when tags-apropos-verbose (princ "\n")))
1499
1500 (defun etags-tags-table-files ()
1501 (let ((files nil)
1502 beg)
1503 (goto-char (point-min))
1504 (while (search-forward "\f\n" nil t)
1505 (setq beg (point))
1506 (end-of-line)
1507 (skip-chars-backward "^," beg)
1508 (or (looking-at "include$")
1509 (setq files (cons (buffer-substring beg (1- (point))) files))))
1510 (nreverse files)))
1511
1512 (defun etags-tags-included-tables ()
1513 (let ((files nil)
1514 beg)
1515 (goto-char (point-min))
1516 (while (search-forward "\f\n" nil t)
1517 (setq beg (point))
1518 (end-of-line)
1519 (skip-chars-backward "^," beg)
1520 (if (looking-at "include$")
1521 ;; Expand in the default-directory of the tags table buffer.
1522 (setq files (cons (expand-file-name (buffer-substring beg (1- (point))))
1523 files))))
1524 (nreverse files)))
1525 \f
1526 ;; Empty tags file support.
1527
1528 ;; Recognize an empty file and give it local values of the tags table format
1529 ;; variables which do nothing.
1530 (defun tags-recognize-empty-tags-table ()
1531 (and (zerop (buffer-size))
1532 (mapc (lambda (sym) (set (make-local-variable sym) 'ignore))
1533 '(tags-table-files-function
1534 tags-completion-table-function
1535 find-tag-regexp-search-function
1536 find-tag-search-function
1537 tags-apropos-function
1538 tags-included-tables-function))
1539 (set (make-local-variable 'verify-tags-table-function)
1540 (lambda () (zerop (buffer-size))))))
1541 \f
1542 ;; Match qualifier functions for tagnames.
1543 ;; These functions assume the etags file format defined in etc/ETAGS.EBNF.
1544
1545 ;; This might be a neat idea, but it's too hairy at the moment.
1546 ;;(defmacro tags-with-syntax (&rest body)
1547 ;; `(let ((current (current-buffer))
1548 ;; (otable (syntax-table))
1549 ;; (buffer (find-file-noselect (file-of-tag)))
1550 ;; table)
1551 ;; (unwind-protect
1552 ;; (progn
1553 ;; (set-buffer buffer)
1554 ;; (setq table (syntax-table))
1555 ;; (set-buffer current)
1556 ;; (set-syntax-table table)
1557 ;; ,@body)
1558 ;; (set-syntax-table otable))))
1559 ;;(put 'tags-with-syntax 'edebug-form-spec '(&rest form))
1560
1561 ;; exact file name match, i.e. searched tag must match complete file
1562 ;; name including directories parts if there are some.
1563 (defun tag-exact-file-name-match-p (tag)
1564 (and (looking-at ",[0-9\n]")
1565 (save-excursion (backward-char (+ 2 (length tag)))
1566 (looking-at "\f\n"))))
1567 ;; file name match as above, but searched tag must match the file
1568 ;; name not including the directories if there are some.
1569 (defun tag-file-name-match-p (tag)
1570 (and (looking-at ",[0-9\n]")
1571 (save-excursion (backward-char (1+ (length tag)))
1572 (looking-at "/"))))
1573 ;; this / to detect we are after a directory separator is ok for unix,
1574 ;; is there a variable that contains the regexp for directory separator
1575 ;; on whatever operating system ?
1576 ;; Looks like ms-win will lose here :).
1577
1578 ;; t if point is at a tag line that matches TAG exactly.
1579 ;; point should be just after a string that matches TAG.
1580 (defun tag-exact-match-p (tag)
1581 ;; The match is really exact if there is an explicit tag name.
1582 (or (and (eq (char-after (point)) ?\001)
1583 (eq (char-after (- (point) (length tag) 1)) ?\177))
1584 ;; We are not on the explicit tag name, but perhaps it follows.
1585 (looking-at (concat "[^\177\n]*\177" (regexp-quote tag) "\001"))))
1586
1587 ;; t if point is at a tag line that has an implicit name.
1588 ;; point should be just after a string that matches TAG.
1589 (defun tag-implicit-name-match-p (tag)
1590 ;; Look at the comment of the make_tag function in lib-src/etags.c for
1591 ;; a textual description of the four rules.
1592 (and (string-match "^[^ \t()=,;]+$" tag) ;rule #1
1593 (looking-at "[ \t()=,;]?\177") ;rules #2 and #4
1594 (save-excursion
1595 (backward-char (1+ (length tag)))
1596 (looking-at "[\n \t()=,;]")))) ;rule #3
1597
1598 ;; t if point is at a tag line that matches TAG as a symbol.
1599 ;; point should be just after a string that matches TAG.
1600 (defun tag-symbol-match-p (tag)
1601 (and (looking-at "\\Sw.*\177") (looking-at "\\S_.*\177")
1602 (save-excursion
1603 (backward-char (1+ (length tag)))
1604 (and (looking-at "\\Sw") (looking-at "\\S_")))))
1605
1606 ;; t if point is at a tag line that matches TAG as a word.
1607 ;; point should be just after a string that matches TAG.
1608 (defun tag-word-match-p (tag)
1609 (and (looking-at "\\b.*\177")
1610 (save-excursion (backward-char (length tag))
1611 (looking-at "\\b"))))
1612
1613 ;; partial file name match, i.e. searched tag must match a substring
1614 ;; of the file name (potentially including a directory separator).
1615 (defun tag-partial-file-name-match-p (tag)
1616 (and (looking-at ".*,[0-9\n]")
1617 (save-excursion (beginning-of-line)
1618 (backward-char 2)
1619 (looking-at "\f\n"))))
1620
1621 ;; t if point is in a tag line with a tag containing TAG as a substring.
1622 (defun tag-any-match-p (tag)
1623 (looking-at ".*\177"))
1624
1625 ;; t if point is at a tag line that matches RE as a regexp.
1626 (defun tag-re-match-p (re)
1627 (save-excursion
1628 (beginning-of-line)
1629 (let ((bol (point)))
1630 (and (search-forward "\177" (save-excursion (end-of-line) (point)) t)
1631 (re-search-backward re bol t)))))
1632 \f
1633 (defcustom tags-loop-revert-buffers nil
1634 "*Non-nil means tags-scanning loops should offer to reread changed files.
1635 These loops normally read each file into Emacs, but when a file
1636 is already visited, they use the existing buffer.
1637 When this flag is non-nil, they offer to revert the existing buffer
1638 in the case where the file has changed since you visited it."
1639 :type 'boolean
1640 :group 'etags)
1641
1642 ;;;###autoload
1643 (defun next-file (&optional initialize novisit)
1644 "Select next file among files in current tags table.
1645
1646 A first argument of t (prefix arg, if interactive) initializes to the
1647 beginning of the list of files in the tags table. If the argument is
1648 neither nil nor t, it is evalled to initialize the list of files.
1649
1650 Non-nil second argument NOVISIT means use a temporary buffer
1651 to save time and avoid uninteresting warnings.
1652
1653 Value is nil if the file was already visited;
1654 if the file was newly read in, the value is the filename."
1655 ;; Make the interactive arg t if there was any prefix arg.
1656 (interactive (list (if current-prefix-arg t)))
1657 (cond ((not initialize)
1658 ;; Not the first run.
1659 )
1660 ((eq initialize t)
1661 ;; Initialize the list from the tags table.
1662 (save-excursion
1663 ;; Visit the tags table buffer to get its list of files.
1664 (visit-tags-table-buffer)
1665 ;; Copy the list so we can setcdr below, and expand the file
1666 ;; names while we are at it, in this buffer's default directory.
1667 (setq next-file-list (mapcar 'expand-file-name (tags-table-files)))
1668 ;; Iterate over all the tags table files, collecting
1669 ;; a complete list of referenced file names.
1670 (while (visit-tags-table-buffer t)
1671 ;; Find the tail of the working list and chain on the new
1672 ;; sublist for this tags table.
1673 (let ((tail next-file-list))
1674 (while (cdr tail)
1675 (setq tail (cdr tail)))
1676 ;; Use a copy so the next loop iteration will not modify the
1677 ;; list later returned by (tags-table-files).
1678 (if tail
1679 (setcdr tail (mapcar 'expand-file-name (tags-table-files)))
1680 (setq next-file-list (mapcar 'expand-file-name
1681 (tags-table-files))))))))
1682 (t
1683 ;; Initialize the list by evalling the argument.
1684 (setq next-file-list (eval initialize))))
1685 (unless next-file-list
1686 (and novisit
1687 (get-buffer " *next-file*")
1688 (kill-buffer " *next-file*"))
1689 (error "All files processed"))
1690 (let* ((next (car next-file-list))
1691 (buffer (get-file-buffer next))
1692 (new (not buffer)))
1693 ;; Advance the list before trying to find the file.
1694 ;; If we get an error finding the file, don't get stuck on it.
1695 (setq next-file-list (cdr next-file-list))
1696 ;; Optionally offer to revert buffers
1697 ;; if the files have changed on disk.
1698 (and buffer tags-loop-revert-buffers
1699 (not (verify-visited-file-modtime buffer))
1700 (with-current-buffer buffer
1701 (revert-buffer t)))
1702 (if (not (and new novisit))
1703 (set-buffer (find-file-noselect next novisit))
1704 ;; Like find-file, but avoids random warning messages.
1705 (set-buffer (get-buffer-create " *next-file*"))
1706 (kill-all-local-variables)
1707 (erase-buffer)
1708 (setq new next)
1709 (insert-file-contents new nil))
1710 new))
1711
1712 (defvar tags-loop-operate nil
1713 "Form for `tags-loop-continue' to eval to change one file.")
1714
1715 (defvar tags-loop-scan
1716 '(error "%s"
1717 (substitute-command-keys
1718 "No \\[tags-search] or \\[tags-query-replace] in progress"))
1719 "Form for `tags-loop-continue' to eval to scan one file.
1720 If it returns non-nil, this file needs processing by evalling
1721 \`tags-loop-operate'. Otherwise, move on to the next file.")
1722
1723 (defun tags-loop-eval (form)
1724 "Evaluate FORM and return its result.
1725 Bind `case-fold-search' during the evaluation, depending on the value of
1726 `tags-case-fold-search'."
1727 (let ((case-fold-search (if (memq tags-case-fold-search '(t nil))
1728 tags-case-fold-search
1729 case-fold-search)))
1730 (eval form)))
1731
1732
1733 ;;;###autoload
1734 (defun tags-loop-continue (&optional first-time)
1735 "Continue last \\[tags-search] or \\[tags-query-replace] command.
1736 Used noninteractively with non-nil argument to begin such a command (the
1737 argument is passed to `next-file', which see).
1738
1739 Two variables control the processing we do on each file: the value of
1740 `tags-loop-scan' is a form to be executed on each file to see if it is
1741 interesting (it returns non-nil if so) and `tags-loop-operate' is a form to
1742 evaluate to operate on an interesting file. If the latter evaluates to
1743 nil, we exit; otherwise we scan the next file."
1744 (interactive)
1745 (let (new
1746 ;; Non-nil means we have finished one file
1747 ;; and should not scan it again.
1748 file-finished
1749 original-point
1750 (messaged nil))
1751 (while
1752 (progn
1753 ;; Scan files quickly for the first or next interesting one.
1754 ;; This starts at point in the current buffer.
1755 (while (or first-time file-finished
1756 (save-restriction
1757 (widen)
1758 (not (tags-loop-eval tags-loop-scan))))
1759 ;; If nothing was found in the previous file, and
1760 ;; that file isn't in a temp buffer, restore point to
1761 ;; where it was.
1762 (when original-point
1763 (goto-char original-point))
1764
1765 (setq file-finished nil)
1766 (setq new (next-file first-time t))
1767
1768 ;; If NEW is non-nil, we got a temp buffer,
1769 ;; and NEW is the file name.
1770 (when (or messaged
1771 (and (not first-time)
1772 (> baud-rate search-slow-speed)
1773 (setq messaged t)))
1774 (message "Scanning file %s..." (or new buffer-file-name)))
1775
1776 (setq first-time nil)
1777 (setq original-point (if new nil (point)))
1778 (goto-char (point-min)))
1779
1780 ;; If we visited it in a temp buffer, visit it now for real.
1781 (if new
1782 (let ((pos (point)))
1783 (erase-buffer)
1784 (set-buffer (find-file-noselect new))
1785 (setq new nil) ;No longer in a temp buffer.
1786 (widen)
1787 (goto-char pos))
1788 (push-mark original-point t))
1789
1790 (switch-to-buffer (current-buffer))
1791
1792 ;; Now operate on the file.
1793 ;; If value is non-nil, continue to scan the next file.
1794 (tags-loop-eval tags-loop-operate))
1795 (setq file-finished t))
1796 (and messaged
1797 (null tags-loop-operate)
1798 (message "Scanning file %s...found" buffer-file-name))))
1799 ;;;###autoload (define-key esc-map "," 'tags-loop-continue)
1800
1801 ;;;###autoload
1802 (defun tags-search (regexp &optional file-list-form)
1803 "Search through all files listed in tags table for match for REGEXP.
1804 Stops when a match is found.
1805 To continue searching for next match, use command \\[tags-loop-continue].
1806
1807 See documentation of variable `tags-file-name'."
1808 (interactive "sTags search (regexp): ")
1809 (if (and (equal regexp "")
1810 (eq (car tags-loop-scan) 're-search-forward)
1811 (null tags-loop-operate))
1812 ;; Continue last tags-search as if by M-,.
1813 (tags-loop-continue nil)
1814 (setq tags-loop-scan `(re-search-forward ',regexp nil t)
1815 tags-loop-operate nil)
1816 (tags-loop-continue (or file-list-form t))))
1817
1818 ;;;###autoload
1819 (defun tags-query-replace (from to &optional delimited file-list-form start end)
1820 "Do `query-replace-regexp' of FROM with TO on all files listed in tags table.
1821 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
1822 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
1823 with the command \\[tags-loop-continue].
1824
1825 See documentation of variable `tags-file-name'."
1826 (interactive (query-replace-read-args "Tags query replace (regexp)" t t))
1827 (setq tags-loop-scan `(let ,(unless (equal from (downcase from))
1828 '((case-fold-search nil)))
1829 (if (re-search-forward ',from nil t)
1830 ;; When we find a match, move back
1831 ;; to the beginning of it so perform-replace
1832 ;; will see it.
1833 (goto-char (match-beginning 0))))
1834 tags-loop-operate `(perform-replace ',from ',to t t ',delimited))
1835 (tags-loop-continue (or file-list-form t)))
1836 \f
1837 (defun tags-complete-tags-table-file (string predicate what)
1838 (save-excursion
1839 ;; If we need to ask for the tag table, allow that.
1840 (let ((enable-recursive-minibuffers t))
1841 (visit-tags-table-buffer))
1842 (if (eq what t)
1843 (all-completions string (tags-table-files) predicate)
1844 (try-completion string (tags-table-files) predicate))))
1845
1846 ;;;###autoload
1847 (defun list-tags (file &optional next-match)
1848 "Display list of tags in file FILE.
1849 This searches only the first table in the list, and no included tables.
1850 FILE should be as it appeared in the `etags' command, usually without a
1851 directory specification."
1852 (interactive (list (completing-read "List tags in file: "
1853 'tags-complete-tags-table-file
1854 nil t nil)))
1855 (with-output-to-temp-buffer "*Tags List*"
1856 (princ "Tags in file `")
1857 (tags-with-face 'highlight (princ file))
1858 (princ "':\n\n")
1859 (save-excursion
1860 (let ((first-time t)
1861 (gotany nil))
1862 (while (visit-tags-table-buffer (not first-time))
1863 (setq first-time nil)
1864 (if (funcall list-tags-function file)
1865 (setq gotany t)))
1866 (or gotany
1867 (error "File %s not in current tags tables" file)))))
1868 (with-current-buffer "*Tags List*"
1869 (require 'apropos)
1870 (with-no-warnings
1871 (apropos-mode))
1872 (setq buffer-read-only t)))
1873
1874 ;;;###autoload
1875 (defun tags-apropos (regexp)
1876 "Display list of all tags in tags table REGEXP matches."
1877 (interactive "sTags apropos (regexp): ")
1878 (with-output-to-temp-buffer "*Tags List*"
1879 (princ "Click mouse-2 to follow tags.\n\nTags matching regexp `")
1880 (tags-with-face 'highlight (princ regexp))
1881 (princ "':\n\n")
1882 (save-excursion
1883 (let ((first-time t))
1884 (while (visit-tags-table-buffer (not first-time))
1885 (setq first-time nil)
1886 (funcall tags-apropos-function regexp))))
1887 (etags-tags-apropos-additional regexp))
1888 (with-current-buffer "*Tags List*"
1889 (require 'apropos)
1890 (apropos-mode)
1891 ;; apropos-mode is derived from fundamental-mode and it kills
1892 ;; all local variables.
1893 (setq buffer-read-only t)))
1894 \f
1895 ;; XXX Kludge interface.
1896
1897 (define-button-type 'tags-select-tags-table
1898 'action 'select-tags-table-select
1899 'help-echo "RET, t or mouse-2: select tags table")
1900
1901 ;; XXX If a file is in multiple tables, selection may get the wrong one.
1902 ;;;###autoload
1903 (defun select-tags-table ()
1904 "Select a tags table file from a menu of those you have already used.
1905 The list of tags tables to select from is stored in `tags-table-set-list';
1906 see the doc of that variable if you want to add names to the list."
1907 (interactive)
1908 (pop-to-buffer "*Tags Table List*")
1909 (setq buffer-read-only nil)
1910 (erase-buffer)
1911 (let ((set-list tags-table-set-list)
1912 (desired-point nil)
1913 b)
1914 (when tags-table-list
1915 (setq desired-point (point-marker))
1916 (setq b (point))
1917 (princ (mapcar 'abbreviate-file-name tags-table-list) (current-buffer))
1918 (make-text-button b (point) 'type 'tags-select-tags-table
1919 'etags-table (car tags-table-list))
1920 (insert "\n"))
1921 (while set-list
1922 (unless (eq (car set-list) tags-table-list)
1923 (setq b (point))
1924 (princ (mapcar 'abbreviate-file-name (car set-list)) (current-buffer))
1925 (make-text-button b (point) 'type 'tags-select-tags-table
1926 'etags-table (car (car set-list)))
1927 (insert "\n"))
1928 (setq set-list (cdr set-list)))
1929 (when tags-file-name
1930 (or desired-point
1931 (setq desired-point (point-marker)))
1932 (setq b (point))
1933 (insert (abbreviate-file-name tags-file-name))
1934 (make-text-button b (point) 'type 'tags-select-tags-table
1935 'etags-table tags-file-name)
1936 (insert "\n"))
1937 (setq set-list (delete tags-file-name
1938 (apply 'nconc (cons (copy-sequence tags-table-list)
1939 (mapcar 'copy-sequence
1940 tags-table-set-list)))))
1941 (while set-list
1942 (setq b (point))
1943 (insert (abbreviate-file-name (car set-list)))
1944 (make-text-button b (point) 'type 'tags-select-tags-table
1945 'etags-table (car set-list))
1946 (insert "\n")
1947 (setq set-list (delete (car set-list) set-list)))
1948 (goto-char (point-min))
1949 (insert-before-markers
1950 "Type `t' to select a tags table or set of tags tables:\n\n")
1951 (if desired-point
1952 (goto-char desired-point))
1953 (set-window-start (selected-window) 1 t))
1954 (set-buffer-modified-p nil)
1955 (select-tags-table-mode))
1956
1957 (defvar select-tags-table-mode-map
1958 (let ((map (make-sparse-keymap)))
1959 (set-keymap-parent map button-buffer-map)
1960 (define-key map "t" 'push-button)
1961 (define-key map " " 'next-line)
1962 (define-key map "\^?" 'previous-line)
1963 (define-key map "n" 'next-line)
1964 (define-key map "p" 'previous-line)
1965 (define-key map "q" 'select-tags-table-quit)
1966 map))
1967
1968 (define-derived-mode select-tags-table-mode fundamental-mode "Select Tags Table"
1969 "Major mode for choosing a current tags table among those already loaded.
1970
1971 \\{select-tags-table-mode-map}"
1972 (setq buffer-read-only t))
1973
1974 (defun select-tags-table-select (button)
1975 "Select the tags table named on this line."
1976 (interactive (list (or (button-at (line-beginning-position))
1977 (error "No tags table on current line"))))
1978 (let ((name (button-get button 'etags-table)))
1979 (visit-tags-table name)
1980 (select-tags-table-quit)
1981 (message "Tags table now %s" name)))
1982
1983 (defun select-tags-table-quit ()
1984 "Kill the buffer and delete the selected window."
1985 (interactive)
1986 (quit-window t (selected-window)))
1987 \f
1988 ;; Note, there is another definition of this function in bindings.el.
1989 ;;;###autoload
1990 (defun complete-tag ()
1991 "Perform tags completion on the text around point.
1992 Completes to the set of names listed in the current tags table.
1993 The string to complete is chosen in the same way as the default
1994 for \\[find-tag] (which see)."
1995 (interactive)
1996 (or tags-table-list
1997 tags-file-name
1998 (error "%s"
1999 (substitute-command-keys
2000 "No tags table loaded; try \\[visit-tags-table]")))
2001 (let ((completion-ignore-case (if (memq tags-case-fold-search '(t nil))
2002 tags-case-fold-search
2003 case-fold-search))
2004 (pattern (funcall (or find-tag-default-function
2005 (get major-mode 'find-tag-default-function)
2006 'find-tag-default)))
2007 beg
2008 completion)
2009 (or pattern
2010 (error "Nothing to complete"))
2011 (search-backward pattern)
2012 (setq beg (point))
2013 (forward-char (length pattern))
2014 (setq completion (tags-complete-tag pattern nil nil))
2015 (cond ((eq completion t))
2016 ((null completion)
2017 (message "Can't find completion for \"%s\"" pattern)
2018 (ding))
2019 ((not (string= pattern completion))
2020 (delete-region beg (point))
2021 (insert completion))
2022 (t
2023 (message "Making completion list...")
2024 (with-output-to-temp-buffer "*Completions*"
2025 (display-completion-list
2026 (all-completions pattern 'tags-complete-tag nil)
2027 pattern))
2028 (message "Making completion list...%s" "done")))))
2029
2030 (dolist (x '("^No tags table in use; use .* to select one$"
2031 "^There is no default tag$"
2032 "^No previous tag locations$"
2033 "^File .* is not a valid tags table$"
2034 "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
2035 "^Rerun etags: `.*' not found in "
2036 "^All files processed$"
2037 "^No .* or .* in progress$"
2038 "^File .* not in current tags tables$"
2039 "^No tags table loaded"
2040 "^Nothing to complete$"))
2041 (add-to-list 'debug-ignored-errors x))
2042 \f
2043 (provide 'etags)
2044
2045 ;; arch-tag: b897c2b5-08f3-4837-b2d3-0e7d6db1b63e
2046 ;;; etags.el ends here