* cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
[bpt/emacs.git] / lisp / cedet / semantic / find.el
CommitLineData
978c25c6 1;;; semantic/find.el --- Search routines for Semantic
1bd95535 2
9bf6c65c
GM
3;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009
4;; Free Software Foundation, Inc.
1bd95535
CY
5
6;; Author: Eric M. Ludlam <zappo@gnu.org>
7;; Keywords: syntax
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software: you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24;;; Commentary:
25;;
26;; Routines for searching through lists of tags.
27;; There are several groups of tag search routines:
28;;
29;; 1) semantic-brute-find-tag-by-*
30;; These routines use brute force hierarchical search to scan
31;; through lists of tags. They include some parameters
32;; used for compatibility with the semantic 1.x search routines.
33;;
34;; 1.5) semantic-brute-find-first-tag-by-*
9bf6c65c 35;; Like 1, except searching stops on the first match for the given
1bd95535
CY
36;; information.
37;;
38;; 2) semantic-find-tag-by-*
9bf6c65c 39;; These preferred search routines attempt to scan through lists
1bd95535
CY
40;; in an intelligent way based on questions asked.
41;;
42;; 3) semantic-find-*-overlay
43;; These routines use overlays to return tags based on a buffer position.
44;;
45;; 4) ...
46
b90caf50
CY
47;;; Code:
48
978c25c6 49(require 'semantic)
1bd95535
CY
50(require 'semantic/tag)
51
b90caf50
CY
52(declare-function semantic-tag-protected-p "semantic/tag-ls")
53
1bd95535
CY
54;;; Overlay Search Routines
55;;
56;; These routines provide fast access to tokens based on a buffer that
57;; has parsed tokens in it. Uses overlays to perform the hard work.
a964f5e5 58;;
3d9d8486 59;;;###autoload
1bd95535
CY
60(defun semantic-find-tag-by-overlay (&optional positionormarker buffer)
61 "Find all tags covering POSITIONORMARKER by using overlays.
62If POSITIONORMARKER is nil, use the current point.
63Optional BUFFER is used if POSITIONORMARKER is a number, otherwise the current
64buffer is used. This finds all tags covering the specified position
65by checking for all overlays covering the current spot. They are then sorted
66from largest to smallest via the start location."
67 (save-excursion
68 (when positionormarker
69 (if (markerp positionormarker)
70 (set-buffer (marker-buffer positionormarker))
71 (if (bufferp buffer)
72 (set-buffer buffer))))
73 (let ((ol (semantic-overlays-at (or positionormarker (point))))
74 (ret nil))
75 (while ol
76 (let ((tmp (semantic-overlay-get (car ol) 'semantic)))
77 (when (and tmp
78 ;; We don't need with-position because no tag w/out
79 ;; a position could exist in an overlay.
80 (semantic-tag-p tmp))
81 (setq ret (cons tmp ret))))
82 (setq ol (cdr ol)))
83 (sort ret (lambda (a b) (< (semantic-tag-start a)
84 (semantic-tag-start b)))))))
85
3d9d8486 86;;;###autoload
1bd95535
CY
87(defun semantic-find-tag-by-overlay-in-region (start end &optional buffer)
88 "Find all tags which exist in whole or in part between START and END.
9bf6c65c 89Uses overlays to determine position.
1bd95535
CY
90Optional BUFFER argument specifies the buffer to use."
91 (save-excursion
92 (if buffer (set-buffer buffer))
93 (let ((ol (semantic-overlays-in start end))
94 (ret nil))
95 (while ol
96 (let ((tmp (semantic-overlay-get (car ol) 'semantic)))
97 (when (and tmp
98 ;; See above about position
99 (semantic-tag-p tmp))
100 (setq ret (cons tmp ret))))
101 (setq ol (cdr ol)))
102 (sort ret (lambda (a b) (< (semantic-tag-start a)
103 (semantic-tag-start b)))))))
104
3d9d8486 105;;;###autoload
1bd95535
CY
106(defun semantic-find-tag-by-overlay-next (&optional start buffer)
107 "Find the next tag after START in BUFFER.
108If START is in an overlay, find the tag which starts next,
109not the current tag."
110 (save-excursion
111 (if buffer (set-buffer buffer))
112 (if (not start) (setq start (point)))
113 (let ((os start) (ol nil))
114 (while (and os (< os (point-max)) (not ol))
115 (setq os (semantic-overlay-next-change os))
116 (when os
117 ;; Get overlays at position
118 (setq ol (semantic-overlays-at os))
119 ;; find the overlay that belongs to semantic
120 ;; and starts at the found position.
121 (while (and ol (listp ol))
122 (if (and (semantic-overlay-get (car ol) 'semantic)
123 (semantic-tag-p
124 (semantic-overlay-get (car ol) 'semantic))
125 (= (semantic-overlay-start (car ol)) os))
126 (setq ol (car ol)))
127 (when (listp ol) (setq ol (cdr ol))))))
128 ;; convert ol to a tag
129 (when (and ol (semantic-tag-p (semantic-overlay-get ol 'semantic)))
130 (semantic-overlay-get ol 'semantic)))))
131
3d9d8486 132;;;###autoload
1bd95535
CY
133(defun semantic-find-tag-by-overlay-prev (&optional start buffer)
134 "Find the next tag before START in BUFFER.
135If START is in an overlay, find the tag which starts next,
136not the current tag."
137 (save-excursion
138 (if buffer (set-buffer buffer))
139 (if (not start) (setq start (point)))
140 (let ((os start) (ol nil))
141 (while (and os (> os (point-min)) (not ol))
142 (setq os (semantic-overlay-previous-change os))
143 (when os
144 ;; Get overlays at position
145 (setq ol (semantic-overlays-at (1- os)))
146 ;; find the overlay that belongs to semantic
147 ;; and ENDS at the found position.
148 ;;
149 ;; Use end because we are going backward.
150 (while (and ol (listp ol))
151 (if (and (semantic-overlay-get (car ol) 'semantic)
152 (semantic-tag-p
153 (semantic-overlay-get (car ol) 'semantic))
154 (= (semantic-overlay-end (car ol)) os))
155 (setq ol (car ol)))
156 (when (listp ol) (setq ol (cdr ol))))))
157 ;; convert ol to a tag
158 (when (and ol
159 (semantic-tag-p (semantic-overlay-get ol 'semantic)))
160 (semantic-overlay-get ol 'semantic)))))
161
3d9d8486 162;;;###autoload
1bd95535
CY
163(defun semantic-find-tag-parent-by-overlay (tag)
164 "Find the parent of TAG by overlays.
165Overlays are a fast way of finding this information for active buffers."
166 (let ((tag (nreverse (semantic-find-tag-by-overlay
167 (semantic-tag-start tag)))))
168 ;; This is a lot like `semantic-current-tag-parent', but
169 ;; it uses a position to do it's work. Assumes two tags don't share
170 ;; the same start unless they are siblings.
171 (car (cdr tag))))
172
3d9d8486 173;;;###autoload
1bd95535
CY
174(defun semantic-current-tag ()
175 "Return the current tag in the current buffer.
176If there are more than one in the same location, return the
177smallest tag. Return nil if there is no tag here."
178 (car (nreverse (semantic-find-tag-by-overlay))))
179
55b522b2 180;;;###autoload
1bd95535
CY
181(defun semantic-current-tag-parent ()
182 "Return the current tags parent in the current buffer.
183A tag's parent would be a containing structure, such as a type
184containing a field. Return nil if there is no parent."
185 (car (cdr (nreverse (semantic-find-tag-by-overlay)))))
186
187(defun semantic-current-tag-of-class (class)
188 "Return the current (smallest) tags of CLASS in the current buffer.
189If the smallest tag is not of type CLASS, keep going upwards until one
190is found.
191Uses `semantic-tag-class' for classification."
192 (let ((tags (nreverse (semantic-find-tag-by-overlay))))
193 (while (and tags
194 (not (eq (semantic-tag-class (car tags)) class)))
195 (setq tags (cdr tags)))
196 (car tags)))
197\f
198;;; Search Routines
199;;
200;; These are routines that search a single tags table.
201;;
202;; The original API (see COMPATIBILITY section below) in semantic 1.4
203;; had these usage statistics:
204;;
205;; semantic-find-nonterminal-by-name 17
206;; semantic-find-nonterminal-by-name-regexp 8 - Most doing completion
207;; semantic-find-nonterminal-by-position 13
208;; semantic-find-nonterminal-by-token 21
209;; semantic-find-nonterminal-by-type 2
210;; semantic-find-nonterminal-standard 1
211;;
212;; semantic-find-nonterminal-by-function (not in other searches) 1
213;;
214;; New API: As above w/out `search-parts' or `search-includes' arguments.
215;; Extra fcn: Specific to completion which is what -name-regexp is
216;; mostly used for
217;;
218;; As for the sarguments "search-parts" and "search-includes" here
219;; are stats:
220;;
221;; search-parts: 4 - charting x2, find-doc, senator (sans db)
222;;
223;; Implement command to flatten a tag table. Call new API Fcn w/
224;; flattened table for same results.
225;;
226;; search-include: 2 - analyze x2 (sans db)
227;;
228;; Not used effectively. Not to be re-implemented here.
229
230(defsubst semantic--find-tags-by-function (predicate &optional table)
231 "Find tags for which PREDICATE is non-nil in TABLE.
232PREDICATE is a lambda expression which accepts on TAG.
233TABLE is a semantic tags table. See `semantic-something-to-tag-table'."
234 (let ((tags (semantic-something-to-tag-table table))
235 (result nil))
236; (mapc (lambda (tag) (and (funcall predicate tag)
237; (setq result (cons tag result))))
238; tags)
239 ;; A while loop is actually faster. Who knew
240 (while tags
241 (and (funcall predicate (car tags))
242 (setq result (cons (car tags) result)))
243 (setq tags (cdr tags)))
244 (nreverse result)))
245
246;; I can shave off some time by removing the funcall (see above)
247;; and having the question be inlined in the while loop.
248;; Strangely turning the upper level fcns into macros had a larger
249;; impact.
250(defmacro semantic--find-tags-by-macro (form &optional table)
251 "Find tags for which FORM is non-nil in TABLE.
252TABLE is a semantic tags table. See `semantic-something-to-tag-table'."
253 `(let ((tags (semantic-something-to-tag-table ,table))
254 (result nil))
255 (while tags
256 (and ,form
257 (setq result (cons (car tags) result)))
258 (setq tags (cdr tags)))
259 (nreverse result)))
260
261;;; Top level Searches
a964f5e5 262;;
3d9d8486
CY
263;;;###autoload
264(defun semantic-find-first-tag-by-name (name &optional table)
1bd95535
CY
265 "Find the first tag with NAME in TABLE.
266NAME is a string.
267TABLE is a semantic tags table. See `semantic-something-to-tag-table'.
268This routine uses `assoc' to quickly find the first matching entry."
269 (funcall (if semantic-case-fold 'assoc-ignore-case 'assoc)
270 name (semantic-something-to-tag-table table)))
271
272(defmacro semantic-find-tags-by-name (name &optional table)
273 "Find all tags with NAME in TABLE.
274NAME is a string.
275TABLE is a tag table. See `semantic-something-to-tag-table'."
276 `(let ((case-fold-search semantic-case-fold))
277 (semantic--find-tags-by-macro
278 (string= ,name (semantic-tag-name (car tags)))
279 ,table)))
280
281(defmacro semantic-find-tags-for-completion (prefix &optional table)
9bf6c65c 282 "Find all tags whose name begins with PREFIX in TABLE.
1bd95535
CY
283PREFIX is a string.
284TABLE is a tag table. See `semantic-something-to-tag-table'.
285While it would be nice to use `try-completion' or `all-completions',
286those functions do not return the tags, only a string.
287Uses `compare-strings' for fast comparison."
288 `(let ((l (length ,prefix)))
289 (semantic--find-tags-by-macro
290 (eq (compare-strings ,prefix 0 nil
291 (semantic-tag-name (car tags)) 0 l
292 semantic-case-fold)
293 t)
294 ,table)))
295
296(defmacro semantic-find-tags-by-name-regexp (regexp &optional table)
297 "Find all tags with name matching REGEXP in TABLE.
298REGEXP is a string containing a regular expression,
299TABLE is a tag table. See `semantic-something-to-tag-table'.
300Consider using `semantic-find-tags-for-completion' if you are
301attempting to do completions."
302 `(let ((case-fold-search semantic-case-fold))
303 (semantic--find-tags-by-macro
304 (string-match ,regexp (semantic-tag-name (car tags)))
305 ,table)))
306
307(defmacro semantic-find-tags-by-class (class &optional table)
308 "Find all tags of class CLASS in TABLE.
309CLASS is a symbol representing the class of the token, such as
310'variable, of 'function..
311TABLE is a tag table. See `semantic-something-to-tag-table'."
312 `(semantic--find-tags-by-macro
313 (eq ,class (semantic-tag-class (car tags)))
314 ,table))
315
316(defmacro semantic-find-tags-by-type (type &optional table)
317 "Find all tags of with a type TYPE in TABLE.
318TYPE is a string or tag representing a data type as defined in the
319language the tags were parsed from, such as \"int\", or perhaps
320a tag whose name is that of a struct or class.
321TABLE is a tag table. See `semantic-something-to-tag-table'."
322 `(semantic--find-tags-by-macro
323 (semantic-tag-of-type-p (car tags) ,type)
324 ,table))
325
326(defmacro semantic-find-tags-of-compound-type (&optional table)
327 "Find all tags which are a compound type in TABLE.
328Compound types are structures, or other data type which
329is not of a primitive nature, such as int or double.
330Used in completion."
331 `(semantic--find-tags-by-macro
332 (semantic-tag-type-compound-p (car tags))
333 ,table))
334
55b522b2 335;;;###autoload
1bd95535
CY
336(define-overloadable-function semantic-find-tags-by-scope-protection (scopeprotection parent &optional table)
337 "Find all tags accessable by SCOPEPROTECTION.
338SCOPEPROTECTION is a symbol which can be returned by the method
339`semantic-tag-protection'. A hard-coded order is used to determine a match.
340PARENT is a tag representing the PARENT slot needed for
341`semantic-tag-protection'.
342TABLE is a list of tags (a subset of PARENT members) to scan. If TABLE is nil,
343the type members of PARENT are used.
344See `semantic-tag-protected-p' for details on which tags are returned."
345 (if (not (eq (semantic-tag-class parent) 'type))
346 (signal 'wrong-type-argument '(semantic-find-tags-by-scope-protection
347 parent
348 semantic-tag-class type))
349 (:override)))
350
351(defun semantic-find-tags-by-scope-protection-default
352 (scopeprotection parent &optional table)
9bf6c65c 353 "Find all tags accessible by SCOPEPROTECTION.
1bd95535
CY
354SCOPEPROTECTION is a symbol which can be returned by the method
355`semantic-tag-protection'. A hard-coded order is used to determine a match.
356PARENT is a tag representing the PARENT slot needed for
357`semantic-tag-protection'.
358TABLE is a list of tags (a subset of PARENT members) to scan. If TABLE is nil,
359the type members of PARENT are used.
360See `semantic-tag-protected-p' for details on which tags are returned."
361 (if (not table) (setq table (semantic-tag-type-members parent)))
362 (if (null scopeprotection)
363 table
978c25c6 364 (require 'semantic/tag-ls)
1bd95535
CY
365 (semantic--find-tags-by-macro
366 (not (semantic-tag-protected-p (car tags) scopeprotection parent))
367 table)))
368
369(defsubst semantic-find-tags-included (&optional table)
370 "Find all tags in TABLE that are of the 'include class.
371TABLE is a tag table. See `semantic-something-to-tag-table'."
372 (semantic-find-tags-by-class 'include table))
373
374;;; Deep Searches
375
376(defmacro semantic-deep-find-tags-by-name (name &optional table)
377 "Find all tags with NAME in TABLE.
378Search in top level tags, and their components, in TABLE.
379NAME is a string.
380TABLE is a tag table. See `semantic-flatten-tags-table'.
381See also `semantic-find-tags-by-name'."
382 `(semantic-find-tags-by-name
383 ,name (semantic-flatten-tags-table ,table)))
384
385(defmacro semantic-deep-find-tags-for-completion (prefix &optional table)
9bf6c65c 386 "Find all tags whose name begins with PREFIX in TABLE.
1bd95535
CY
387Search in top level tags, and their components, in TABLE.
388TABLE is a tag table. See `semantic-flatten-tags-table'.
389See also `semantic-find-tags-for-completion'."
390 `(semantic-find-tags-for-completion
391 ,prefix (semantic-flatten-tags-table ,table)))
392
393(defmacro semantic-deep-find-tags-by-name-regexp (regexp &optional table)
394 "Find all tags with name matching REGEXP in TABLE.
395Search in top level tags, and their components, in TABLE.
396REGEXP is a string containing a regular expression,
397TABLE is a tag table. See `semantic-flatten-tags-table'.
398See also `semantic-find-tags-by-name-regexp'.
399Consider using `semantic-deep-find-tags-for-completion' if you are
400attempting to do completions."
401 `(semantic-find-tags-by-name-regexp
402 ,regexp (semantic-flatten-tags-table ,table)))
403
404;;; Specialty Searches
978c25c6 405
1bd95535
CY
406(defun semantic-find-tags-external-children-of-type (type &optional table)
407 "Find all tags in whose parent is TYPE in TABLE.
408These tags are defined outside the scope of the original TYPE declaration.
409TABLE is a tag table. See `semantic-something-to-tag-table'."
410 (semantic--find-tags-by-macro
411 (equal (semantic-tag-external-member-parent (car tags))
412 type)
413 table))
414
415(defun semantic-find-tags-subclasses-of-type (type &optional table)
416 "Find all tags of class type in whose parent is TYPE in TABLE.
417These tags are defined outside the scope of the original TYPE declaration.
418TABLE is a tag table. See `semantic-something-to-tag-table'."
419 (semantic--find-tags-by-macro
420 (and (eq (semantic-tag-class (car tags)) 'type)
421 (or (member type (semantic-tag-type-superclasses (car tags)))
422 (member type (semantic-tag-type-interfaces (car tags)))))
423 table))
424\f
425;;
426;; ************************** Compatibility ***************************
427;;
428
429;;; Old Style Brute Force Search Routines
430;;
431;; These functions will search through tags lists explicity for
432;; desired information.
433
434;; The -by-name nonterminal search can use the built in fcn
435;; `assoc', which is faster than looping ourselves, so we will
436;; not use `semantic-brute-find-tag-by-function' to do this,
437;; instead erroring on the side of speed.
438
439(defun semantic-brute-find-first-tag-by-name
440 (name streamorbuffer &optional search-parts search-include)
441 "Find a tag NAME within STREAMORBUFFER. NAME is a string.
442If SEARCH-PARTS is non-nil, search children of tags.
443If SEARCH-INCLUDE was never implemented.
444
445Use `semantic-find-first-tag-by-name' instead."
446 (let* ((stream (semantic-something-to-tag-table streamorbuffer))
447 (assoc-fun (if semantic-case-fold
448 #'assoc-ignore-case
449 #'assoc))
450 (m (funcall assoc-fun name stream)))
451 (if m
452 m
453 (let ((toklst stream)
454 (children nil))
455 (while (and (not m) toklst)
456 (if search-parts
457 (progn
458 (setq children (semantic-tag-components-with-overlays
459 (car toklst)))
460 (if children
461 (setq m (semantic-brute-find-first-tag-by-name
462 name children search-parts search-include)))))
463 (setq toklst (cdr toklst)))
464 (if (not m)
465 ;; Go to dependencies, and search there.
466 nil)
467 m))))
468
469(defmacro semantic-brute-find-tag-by-class
470 (class streamorbuffer &optional search-parts search-includes)
471 "Find all tags with a class CLASS within STREAMORBUFFER.
472CLASS is a symbol representing the class of the tags to find.
473See `semantic-tag-class'.
474Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
475`semantic-brute-find-tag-by-function'.
476
477Use `semantic-find-tag-by-class' instead."
478 `(semantic-brute-find-tag-by-function
479 (lambda (tag) (eq ,class (semantic-tag-class tag)))
480 ,streamorbuffer ,search-parts ,search-includes))
481
482(defmacro semantic-brute-find-tag-standard
483 (streamorbuffer &optional search-parts search-includes)
484 "Find all tags in STREAMORBUFFER which define simple class types.
485See `semantic-tag-class'.
486Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
487`semantic-brute-find-tag-by-function'."
488 `(semantic-brute-find-tag-by-function
489 (lambda (tag) (member (semantic-tag-class tag)
490 '(function variable type)))
491 ,streamorbuffer ,search-parts ,search-includes))
492
493(defun semantic-brute-find-tag-by-type
494 (type streamorbuffer &optional search-parts search-includes)
495 "Find all tags with type TYPE within STREAMORBUFFER.
496TYPE is a string which is the name of the type of the tags returned.
497See `semantic-tag-type'.
498Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
499`semantic-brute-find-tag-by-function'."
500 (semantic-brute-find-tag-by-function
501 (lambda (tag)
502 (let ((ts (semantic-tag-type tag)))
503 (if (and (listp ts)
504 (or (= (length ts) 1)
505 (eq (semantic-tag-class ts) 'type)))
506 (setq ts (semantic-tag-name ts)))
507 (equal type ts)))
508 streamorbuffer search-parts search-includes))
509
510(defun semantic-brute-find-tag-by-type-regexp
511 (regexp streamorbuffer &optional search-parts search-includes)
512 "Find all tags with type matching REGEXP within STREAMORBUFFER.
513REGEXP is a regular expression which matches the name of the type of the
514tags returned. See `semantic-tag-type'.
515Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
516`semantic-brute-find-tag-by-function'."
517 (semantic-brute-find-tag-by-function
518 (lambda (tag)
519 (let ((ts (semantic-tag-type tag)))
520 (if (listp ts)
521 (setq ts
522 (if (eq (semantic-tag-class ts) 'type)
523 (semantic-tag-name ts)
524 (car ts))))
525 (and ts (string-match regexp ts))))
526 streamorbuffer search-parts search-includes))
527
528(defun semantic-brute-find-tag-by-name-regexp
529 (regex streamorbuffer &optional search-parts search-includes)
530 "Find all tags whose name match REGEX in STREAMORBUFFER.
531Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
532`semantic-brute-find-tag-by-function'."
533 (semantic-brute-find-tag-by-function
534 (lambda (tag) (string-match regex (semantic-tag-name tag)))
535 streamorbuffer search-parts search-includes)
536 )
537
538(defun semantic-brute-find-tag-by-property
539 (property value streamorbuffer &optional search-parts search-includes)
540 "Find all tags with PROPERTY equal to VALUE in STREAMORBUFFER.
541Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
542`semantic-brute-find-tag-by-function'."
543 (semantic-brute-find-tag-by-function
544 (lambda (tag) (equal (semantic--tag-get-property tag property) value))
545 streamorbuffer search-parts search-includes)
546 )
547
548(defun semantic-brute-find-tag-by-attribute
549 (attr streamorbuffer &optional search-parts search-includes)
550 "Find all tags with a given ATTR in STREAMORBUFFER.
551ATTR is a symbol key into the attributes list.
552Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
553`semantic-brute-find-tag-by-function'."
554 (semantic-brute-find-tag-by-function
555 (lambda (tag) (semantic-tag-get-attribute tag attr))
556 streamorbuffer search-parts search-includes)
557 )
558
559(defun semantic-brute-find-tag-by-attribute-value
560 (attr value streamorbuffer &optional search-parts search-includes)
561 "Find all tags with a given ATTR equal to VALUE in STREAMORBUFFER.
562ATTR is a symbol key into the attributes list.
563VALUE is the value that ATTR should match.
564Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
565`semantic-brute-find-tag-by-function'."
566 (semantic-brute-find-tag-by-function
567 (lambda (tag) (equal (semantic-tag-get-attribute tag attr) value))
568 streamorbuffer search-parts search-includes)
569 )
570
571(defun semantic-brute-find-tag-by-function
572 (function streamorbuffer &optional search-parts search-includes)
573 "Find all tags for which FUNCTION's value is non-nil within STREAMORBUFFER.
574FUNCTION must return non-nil if an element of STREAM will be included
575in the new list.
576
577If optional argument SEARCH-PARTS is non-nil, all sub-parts of tags
578are searched. The overloadable function `semantic-tag-componenets' is
579used for the searching child lists. If SEARCH-PARTS is the symbol
580'positiononly, then only children that have positional information are
581searched.
582
583If SEARCH-INCLUDES has not been implemented.
584This parameter hasn't be active for a while and is obsolete."
585 (let ((stream (semantic-something-to-tag-table streamorbuffer))
586 (sl nil) ;list of tag children
587 (nl nil) ;new list
588 (case-fold-search semantic-case-fold))
589 (dolist (tag stream)
590 (if (not (semantic-tag-p tag))
591 ;; `semantic-tag-components-with-overlays' can return invalid
592 ;; tags if search-parts is not equal to 'positiononly
593 nil ;; Ignore them!
594 (if (funcall function tag)
595 (setq nl (cons tag nl)))
596 (and search-parts
597 (setq sl (if (eq search-parts 'positiononly)
598 (semantic-tag-components-with-overlays tag)
599 (semantic-tag-components tag))
600 )
601 (setq nl (nconc nl
602 (semantic-brute-find-tag-by-function
603 function sl
604 search-parts))))))
605 (setq nl (nreverse nl))
606 nl))
607
608(defun semantic-brute-find-first-tag-by-function
609 (function streamorbuffer &optional search-parts search-includes)
610 "Find the first tag which FUNCTION match within STREAMORBUFFER.
611FUNCTION must return non-nil if an element of STREAM will be included
612in the new list.
613
614The following parameters were never implemented.
615
616If optional argument SEARCH-PARTS, all sub-parts of tags are searched.
617The overloadable function `semantic-tag-components' is used for
618searching.
619If SEARCH-INCLUDES is non-nil, then all include files are also
620searched for matches."
621 (let ((stream (semantic-something-to-tag-table streamorbuffer))
622 (found nil)
623 (case-fold-search semantic-case-fold))
624 (while (and (not found) stream)
625 (if (funcall function (car stream))
626 (setq found (car stream)))
627 (setq stream (cdr stream)))
628 found))
629
630
631;;; Old Positional Searches
632;;
633;; Are these useful anymore?
634;;
635(defun semantic-brute-find-tag-by-position (position streamorbuffer
636 &optional nomedian)
637 "Find a tag covering POSITION within STREAMORBUFFER.
638POSITION is a number, or marker. If NOMEDIAN is non-nil, don't do
639the median calculation, and return nil."
640 (save-excursion
641 (if (markerp position) (set-buffer (marker-buffer position)))
642 (let* ((stream (if (bufferp streamorbuffer)
0816d744 643 (with-current-buffer streamorbuffer
1bd95535
CY
644 (semantic-fetch-tags))
645 streamorbuffer))
646 (prev nil)
647 (found nil))
648 (while (and stream (not found))
649 ;; perfect fit
650 (if (and (>= position (semantic-tag-start (car stream)))
651 (<= position (semantic-tag-end (car stream))))
652 (setq found (car stream))
653 ;; Median between to objects.
654 (if (and prev (not nomedian)
655 (>= position (semantic-tag-end prev))
656 (<= position (semantic-tag-start (car stream))))
657 (let ((median (/ (+ (semantic-tag-end prev)
658 (semantic-tag-start (car stream)))
659 2)))
660 (setq found
661 (if (> position median)
662 (car stream)
663 prev)))))
664 ;; Next!!!
665 (setq prev (car stream)
666 stream (cdr stream)))
667 found)))
668
669(defun semantic-brute-find-innermost-tag-by-position
670 (position streamorbuffer &optional nomedian)
671 "Find a list of tags covering POSITION within STREAMORBUFFER.
672POSITION is a number, or marker. If NOMEDIAN is non-nil, don't do
673the median calculation, and return nil.
674This function will find the topmost item, and recurse until no more
675details are available of findable."
676 (let* ((returnme nil)
677 (current (semantic-brute-find-tag-by-position
678 position streamorbuffer nomedian))
679 (nextstream (and current
680 (if (eq (semantic-tag-class current) 'type)
681 (semantic-tag-type-members current)
682 nil))))
683 (while nextstream
684 (setq returnme (cons current returnme))
685 (setq current (semantic-brute-find-tag-by-position
686 position nextstream nomedian))
687 (setq nextstream (and current
688 ;; NOTE TO SELF:
689 ;; Looking at this after several years away,
690 ;; what does this do???
691 (if (eq (semantic-tag-class current) 'token)
692 (semantic-tag-type-members current)
693 nil))))
694 (nreverse (cons current returnme))))
1bd95535 695
1bd95535
CY
696(provide 'semantic/find)
697
3d9d8486
CY
698;; Local variables:
699;; generated-autoload-file: "loaddefs.el"
700;; generated-autoload-feature: semantic/loaddefs
996bc9bf 701;; generated-autoload-load-name: "semantic/find"
3d9d8486
CY
702;; End:
703
3999968a 704;; arch-tag: db00c93e-e561-4bd6-942b-96eca5aaa9a6
978c25c6 705;;; semantic/find.el ends here