Update copyright notices for 2013.
[bpt/emacs.git] / lisp / cedet / semantic / complete.el
1 ;;; semantic/complete.el --- Routines for performing tag completion
2
3 ;; Copyright (C) 2003-2005, 2007-2013 Free Software Foundation, Inc.
4
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
6 ;; Keywords: syntax
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24 ;;
25 ;; Completion of tags by name using tables of semantic generated tags.
26 ;;
27 ;; While it would be a simple matter of flattening all tag known
28 ;; tables to perform completion across them using `all-completions',
29 ;; or `try-completion', that process would be slow. In particular,
30 ;; when a system database is included in the mix, the potential for a
31 ;; ludicrous number of options becomes apparent.
32 ;;
33 ;; As such, dynamically searching across tables using a prefix,
34 ;; regular expression, or other feature is needed to help find symbols
35 ;; quickly without resorting to "show me every possible option now".
36 ;;
37 ;; In addition, some symbol names will appear in multiple locations.
38 ;; If it is important to distinguish, then a way to provide a choice
39 ;; over these locations is important as well.
40 ;;
41 ;; Beyond brute force offers for completion of plain strings,
42 ;; using the smarts of semantic-analyze to provide reduced lists of
43 ;; symbols, or fancy tabbing to zoom into files to show multiple hits
44 ;; of the same name can be provided.
45 ;;
46 ;;; How it works:
47 ;;
48 ;; There are several parts of any completion engine. They are:
49 ;;
50 ;; A. Collection of possible hits
51 ;; B. Typing or selecting an option
52 ;; C. Displaying possible unique completions
53 ;; D. Using the result
54 ;;
55 ;; Here, we will treat each section separately (excluding D)
56 ;; They can then be strung together in user-visible commands to
57 ;; fulfill specific needs.
58 ;;
59 ;; COLLECTORS:
60 ;;
61 ;; A collector is an object which represents the means by which tags
62 ;; to complete on are collected. It's first job is to find all the
63 ;; tags which are to be completed against. It can also rename
64 ;; some tags if needed so long as `semantic-tag-clone' is used.
65 ;;
66 ;; Some collectors will gather all tags to complete against first
67 ;; (for in buffer queries, or other small list situations). It may
68 ;; choose to do a broad search on each completion request. Built in
69 ;; functionality automatically focuses the cache in as the user types.
70 ;;
71 ;; A collector choosing to create and rename tags could choose a
72 ;; plain name format, a postfix name such as method:class, or a
73 ;; prefix name such as class.method.
74 ;;
75 ;; DISPLAYORS
76 ;;
77 ;; A displayor is in charge if showing the user interesting things
78 ;; about available completions, and can optionally provide a focus.
79 ;; The simplest display just lists all available names in a separate
80 ;; window. It may even choose to show short names when there are
81 ;; many to choose from, or long names when there are fewer.
82 ;;
83 ;; A complex displayor could opt to help the user 'focus' on some
84 ;; range. For example, if 4 tags all have the same name, subsequent
85 ;; calls to the displayor may opt to show each tag one at a time in
86 ;; the buffer. When the user likes one, selection would cause the
87 ;; 'focus' item to be selected.
88 ;;
89 ;; CACHE FORMAT
90 ;;
91 ;; The format of the tag lists used to perform the completions are in
92 ;; semanticdb "find" format, like this:
93 ;;
94 ;; ( ( DBTABLE1 TAG1 TAG2 ...)
95 ;; ( DBTABLE2 TAG1 TAG2 ...)
96 ;; ... )
97 ;;
98 ;; INLINE vs MINIBUFFER
99 ;;
100 ;; Two major ways completion is used in Emacs is either through a
101 ;; minibuffer query, or via completion in a normal editing buffer,
102 ;; encompassing some small range of characters.
103 ;;
104 ;; Structure for both types of completion are provided here.
105 ;; `semantic-complete-read-tag-engine' will use the minibuffer.
106 ;; `semantic-complete-inline-tag-engine' will complete text in
107 ;; a buffer.
108
109 (eval-when-compile (require 'cl))
110 (require 'semantic)
111 (require 'eieio-opt)
112 (require 'semantic/analyze)
113 (require 'semantic/ctxt)
114 (require 'semantic/decorate)
115 (require 'semantic/format)
116 (require 'semantic/idle)
117
118 (eval-when-compile
119 ;; For the semantic-find-tags-for-completion macro.
120 (require 'semantic/find))
121
122 ;;; Code:
123
124 (defvar semantic-complete-inline-overlay nil
125 "The overlay currently active while completing inline.")
126
127 (defun semantic-completion-inline-active-p ()
128 "Non-nil if inline completion is active."
129 (when (and semantic-complete-inline-overlay
130 (not (semantic-overlay-live-p semantic-complete-inline-overlay)))
131 (semantic-overlay-delete semantic-complete-inline-overlay)
132 (setq semantic-complete-inline-overlay nil))
133 semantic-complete-inline-overlay)
134
135 ;;; ------------------------------------------------------------
136 ;;; MINIBUFFER or INLINE utils
137 ;;
138 (defun semantic-completion-text ()
139 "Return the text that is currently in the completion buffer.
140 For a minibuffer prompt, this is the minibuffer text.
141 For inline completion, this is the text wrapped in the inline completion
142 overlay."
143 (if semantic-complete-inline-overlay
144 (semantic-complete-inline-text)
145 (minibuffer-contents)))
146
147 (defun semantic-completion-delete-text ()
148 "Delete the text that is actively being completed.
149 Presumably if you call this you will insert something new there."
150 (if semantic-complete-inline-overlay
151 (semantic-complete-inline-delete-text)
152 (delete-minibuffer-contents)))
153
154 (defun semantic-completion-message (fmt &rest args)
155 "Display the string FMT formatted with ARGS at the end of the minibuffer."
156 (if semantic-complete-inline-overlay
157 (apply 'message fmt args)
158 (message (concat (buffer-string) (apply 'format fmt args)))))
159
160 ;;; ------------------------------------------------------------
161 ;;; MINIBUFFER: Option Selection harnesses
162 ;;
163 (defvar semantic-completion-collector-engine nil
164 "The tag collector for the current completion operation.
165 Value should be an object of a subclass of
166 `semantic-completion-engine-abstract'.")
167
168 (defvar semantic-completion-display-engine nil
169 "The tag display engine for the current completion operation.
170 Value should be a ... what?")
171
172 (defvar semantic-complete-key-map
173 (let ((km (make-sparse-keymap)))
174 (define-key km " " 'semantic-complete-complete-space)
175 (define-key km "\t" 'semantic-complete-complete-tab)
176 (define-key km "\C-m" 'semantic-complete-done)
177 (define-key km "\C-g" 'abort-recursive-edit)
178 (define-key km "\M-n" 'next-history-element)
179 (define-key km "\M-p" 'previous-history-element)
180 (define-key km "\C-n" 'next-history-element)
181 (define-key km "\C-p" 'previous-history-element)
182 ;; Add history navigation
183 km)
184 "Keymap used while completing across a list of tags.")
185
186 (defvar semantic-completion-default-history nil
187 "Default history variable for any unhistoried prompt.
188 Keeps STRINGS only in the history.")
189
190
191 (defun semantic-complete-read-tag-engine (collector displayor prompt
192 default-tag initial-input
193 history)
194 "Read a semantic tag, and return a tag for the selection.
195 Argument COLLECTOR is an object which can be used to calculate
196 a list of possible hits. See `semantic-completion-collector-engine'
197 for details on COLLECTOR.
198 Argument DISPLAYOR is an object used to display a list of possible
199 completions for a given prefix. See`semantic-completion-display-engine'
200 for details on DISPLAYOR.
201 PROMPT is a string to prompt with.
202 DEFAULT-TAG is a semantic tag or string to use as the default value.
203 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
204 HISTORY is a symbol representing a variable to story the history in."
205 (let* ((semantic-completion-collector-engine collector)
206 (semantic-completion-display-engine displayor)
207 (semantic-complete-active-default nil)
208 (semantic-complete-current-matched-tag nil)
209 (default-as-tag (semantic-complete-default-to-tag default-tag))
210 (default-as-string (when (semantic-tag-p default-as-tag)
211 (semantic-tag-name default-as-tag)))
212 )
213
214 (when default-as-string
215 ;; Add this to the prompt.
216 ;;
217 ;; I really want to add a lookup of the symbol in those
218 ;; tags available to the collector and only add it if it
219 ;; is available as a possibility, but I'm too lazy right
220 ;; now.
221 ;;
222
223 ;; @todo - move from () to into the editable area
224 (if (string-match ":" prompt)
225 (setq prompt (concat
226 (substring prompt 0 (match-beginning 0))
227 " (default " default-as-string ")"
228 (substring prompt (match-beginning 0))))
229 (setq prompt (concat prompt " (" default-as-string "): "))))
230 ;;
231 ;; Perform the Completion
232 ;;
233 (unwind-protect
234 (read-from-minibuffer prompt
235 initial-input
236 semantic-complete-key-map
237 nil
238 (or history
239 'semantic-completion-default-history)
240 default-tag)
241 (semantic-collector-cleanup semantic-completion-collector-engine)
242 (semantic-displayor-cleanup semantic-completion-display-engine)
243 )
244 ;;
245 ;; Extract the tag from the completion machinery.
246 ;;
247 semantic-complete-current-matched-tag
248 ))
249
250 \f
251 ;;; Util for basic completion prompts
252 ;;
253
254 (defvar semantic-complete-active-default nil
255 "The current default tag calculated for this prompt.")
256
257 (defun semantic-complete-default-to-tag (default)
258 "Convert a calculated or passed in DEFAULT into a tag."
259 (if (semantic-tag-p default)
260 ;; Just return what was passed in.
261 (setq semantic-complete-active-default default)
262 ;; If none was passed in, guess.
263 (if (null default)
264 (setq default (semantic-ctxt-current-thing)))
265 (if (null default)
266 ;; Do nothing
267 nil
268 ;; Turn default into something useful.
269 (let ((str
270 (cond
271 ;; Semantic-ctxt-current-symbol will return a list of
272 ;; strings. Technically, we should use the analyzer to
273 ;; fully extract what we need, but for now, just grab the
274 ;; first string
275 ((and (listp default) (stringp (car default)))
276 (car default))
277 ((stringp default)
278 default)
279 ((symbolp default)
280 (symbol-name default))
281 (t
282 (signal 'wrong-type-argument
283 (list default 'semantic-tag-p)))))
284 (tag nil))
285 ;; Now that we have that symbol string, look it up using the active
286 ;; collector. If we get a match, use it.
287 (save-excursion
288 (semantic-collector-calculate-completions
289 semantic-completion-collector-engine
290 str nil))
291 ;; Do we have the perfect match???
292 (let ((ml (semantic-collector-current-exact-match
293 semantic-completion-collector-engine)))
294 (when ml
295 ;; We don't care about uniqueness. Just guess for convenience
296 (setq tag (semanticdb-find-result-nth-in-buffer ml 0))))
297 ;; save it
298 (setq semantic-complete-active-default tag)
299 ;; Return it.. .whatever it may be
300 tag))))
301
302 \f
303 ;;; Prompt Return Value
304 ;;
305 ;; Getting a return value out of this completion prompt is a bit
306 ;; challenging. The read command returns the string typed in.
307 ;; We need to convert this into a valid tag. We can exit the minibuffer
308 ;; for different reasons. If we purposely exit, we must make sure
309 ;; the focused tag is calculated... preferably once.
310 (defvar semantic-complete-current-matched-tag nil
311 "Variable used to pass the tags being matched to the prompt.")
312
313 ;; semantic-displayor-focus-abstract-child-p is part of the
314 ;; semantic-displayor-focus-abstract class, defined later in this
315 ;; file.
316 (declare-function semantic-displayor-focus-abstract-child-p "semantic/complete"
317 t t)
318
319 (defun semantic-complete-current-match ()
320 "Calculate a match from the current completion environment.
321 Save this in our completion variable. Make sure that variable
322 is cleared if any other keypress is made.
323 Return value can be:
324 tag - a single tag that has been matched.
325 string - a message to show in the minibuffer."
326 ;; Query the environment for an active completion.
327 (let ((collector semantic-completion-collector-engine)
328 (displayor semantic-completion-display-engine)
329 (contents (semantic-completion-text))
330 matchlist
331 answer)
332 (if (string= contents "")
333 ;; The user wants the defaults!
334 (setq answer semantic-complete-active-default)
335 ;; This forces a full calculation of completion on CR.
336 (save-excursion
337 (semantic-collector-calculate-completions collector contents nil))
338 (semantic-complete-try-completion)
339 (cond
340 ;; Input match displayor focus entry
341 ((setq answer (semantic-displayor-current-focus displayor))
342 ;; We have answer, continue
343 )
344 ;; One match from the collector
345 ((setq matchlist (semantic-collector-current-exact-match collector))
346 (if (= (semanticdb-find-result-length matchlist) 1)
347 (setq answer (semanticdb-find-result-nth-in-buffer matchlist 0))
348 (if (semantic-displayor-focus-abstract-child-p displayor)
349 ;; For focusing displayors, we can claim this is
350 ;; not unique. Multiple focuses can choose the correct
351 ;; one.
352 (setq answer "Not Unique")
353 ;; If we don't have a focusing displayor, we need to do something
354 ;; graceful. First, see if all the matches have the same name.
355 (let ((allsame t)
356 (firstname (semantic-tag-name
357 (car
358 (semanticdb-find-result-nth matchlist 0)))
359 )
360 (cnt 1)
361 (max (semanticdb-find-result-length matchlist)))
362 (while (and allsame (< cnt max))
363 (if (not (string=
364 firstname
365 (semantic-tag-name
366 (car
367 (semanticdb-find-result-nth matchlist cnt)))))
368 (setq allsame nil))
369 (setq cnt (1+ cnt))
370 )
371 ;; Now we know if they are all the same. If they are, just
372 ;; accept the first, otherwise complain.
373 (if allsame
374 (setq answer (semanticdb-find-result-nth-in-buffer
375 matchlist 0))
376 (setq answer "Not Unique"))
377 ))))
378 ;; No match
379 (t
380 (setq answer "No Match")))
381 )
382 ;; Set it into our completion target.
383 (when (semantic-tag-p answer)
384 (setq semantic-complete-current-matched-tag answer)
385 ;; Make sure it is up to date by clearing it if the user dares
386 ;; to touch the keyboard.
387 (add-hook 'pre-command-hook
388 (lambda () (setq semantic-complete-current-matched-tag nil)))
389 )
390 ;; Return it
391 answer
392 ))
393
394 \f
395 ;;; Keybindings
396 ;;
397 ;; Keys are bound to perform completion using our mechanisms.
398 ;; Do that work here.
399 (defun semantic-complete-done ()
400 "Accept the current input."
401 (interactive)
402 (let ((ans (semantic-complete-current-match)))
403 (if (stringp ans)
404 (semantic-completion-message (concat " [" ans "]"))
405 (exit-minibuffer)))
406 )
407
408 (defun semantic-complete-complete-space ()
409 "Complete the partial input in the minibuffer."
410 (interactive)
411 (semantic-complete-do-completion t))
412
413 (defun semantic-complete-complete-tab ()
414 "Complete the partial input in the minibuffer as far as possible."
415 (interactive)
416 (semantic-complete-do-completion))
417
418 ;;; Completion Functions
419 ;;
420 ;; Thees routines are functional entry points to performing completion.
421 ;;
422 (defun semantic-complete-hack-word-boundaries (original new)
423 "Return a string to use for completion.
424 ORIGINAL is the text in the minibuffer.
425 NEW is the new text to insert into the minibuffer.
426 Within the difference bounds of ORIGINAL and NEW, shorten NEW
427 to the nearest word boundary, and return that."
428 (save-match-data
429 (let* ((diff (substring new (length original)))
430 (end (string-match "\\>" diff))
431 (start (string-match "\\<" diff)))
432 (cond
433 ((and start (> start 0))
434 ;; If start is greater than 0, include only the new
435 ;; white-space stuff
436 (concat original (substring diff 0 start)))
437 (end
438 (concat original (substring diff 0 end)))
439 (t new)))))
440
441 (defun semantic-complete-try-completion (&optional partial)
442 "Try a completion for the current minibuffer.
443 If PARTIAL, do partial completion stopping at spaces."
444 (let ((comp (semantic-collector-try-completion
445 semantic-completion-collector-engine
446 (semantic-completion-text))))
447 (cond
448 ((null comp)
449 (semantic-completion-message " [No Match]")
450 (ding)
451 )
452 ((stringp comp)
453 (if (string= (semantic-completion-text) comp)
454 (when partial
455 ;; Minibuffer isn't changing AND the text is not unique.
456 ;; Test for partial completion over a word separator character.
457 ;; If there is one available, use that so that SPC can
458 ;; act like a SPC insert key.
459 (let ((newcomp (semantic-collector-current-whitespace-completion
460 semantic-completion-collector-engine)))
461 (when newcomp
462 (semantic-completion-delete-text)
463 (insert newcomp))
464 ))
465 (when partial
466 (let ((orig (semantic-completion-text)))
467 ;; For partial completion, we stop and step over
468 ;; word boundaries. Use this nifty function to do
469 ;; that calculation for us.
470 (setq comp
471 (semantic-complete-hack-word-boundaries orig comp))))
472 ;; Do the replacement.
473 (semantic-completion-delete-text)
474 (insert comp))
475 )
476 ((and (listp comp) (semantic-tag-p (car comp)))
477 (unless (string= (semantic-completion-text)
478 (semantic-tag-name (car comp)))
479 ;; A fully unique completion was available.
480 (semantic-completion-delete-text)
481 (insert (semantic-tag-name (car comp))))
482 ;; The match is complete
483 (if (= (length comp) 1)
484 (semantic-completion-message " [Complete]")
485 (semantic-completion-message " [Complete, but not unique]"))
486 )
487 (t nil))))
488
489 (defun semantic-complete-do-completion (&optional partial inline)
490 "Do a completion for the current minibuffer.
491 If PARTIAL, do partial completion stopping at spaces.
492 if INLINE, then completion is happening inline in a buffer."
493 (let* ((collector semantic-completion-collector-engine)
494 (displayor semantic-completion-display-engine)
495 (contents (semantic-completion-text))
496 (ans nil))
497
498 (save-excursion
499 (semantic-collector-calculate-completions collector contents partial))
500 (let* ((na (semantic-complete-next-action partial)))
501 (cond
502 ;; We're all done, but only from a very specific
503 ;; area of completion.
504 ((eq na 'done)
505 (semantic-completion-message " [Complete]")
506 (setq ans 'done))
507 ;; Perform completion
508 ((or (eq na 'complete)
509 (eq na 'complete-whitespace))
510 (semantic-complete-try-completion partial)
511 (setq ans 'complete))
512 ;; We need to display the completions.
513 ;; Set the completions into the display engine
514 ((or (eq na 'display) (eq na 'displayend))
515 (semantic-displayor-set-completions
516 displayor
517 (or
518 ;; For the below - This caused problems for Chong Yidong
519 ;; when experimenting with the completion engine. I don't
520 ;; remember what the problem was though, and I wasn't sure why
521 ;; the below two lines were there since they obviously added
522 ;; some odd behavior. -EML
523 ;; (and (not (eq na 'displayend))
524 ;; (semantic-collector-current-exact-match collector))
525 (semantic-collector-all-completions collector contents))
526 contents)
527 ;; Ask the displayor to display them.
528 (semantic-displayor-show-request displayor))
529 ((eq na 'scroll)
530 (semantic-displayor-scroll-request displayor)
531 )
532 ((eq na 'focus)
533 (semantic-displayor-focus-next displayor)
534 (semantic-displayor-focus-request displayor)
535 )
536 ((eq na 'empty)
537 (semantic-completion-message " [No Match]"))
538 (t nil)))
539 ans))
540
541 \f
542 ;;; ------------------------------------------------------------
543 ;;; INLINE: tag completion harness
544 ;;
545 ;; Unlike the minibuffer, there is no mode nor other traditional
546 ;; means of reading user commands in completion mode. Instead
547 ;; we use a pre-command-hook to inset in our commands, and to
548 ;; push ourselves out of this mode on alternate keypresses.
549 (defvar semantic-complete-inline-map
550 (let ((km (make-sparse-keymap)))
551 (define-key km "\C-i" 'semantic-complete-inline-TAB)
552 (define-key km "\M-p" 'semantic-complete-inline-up)
553 (define-key km "\M-n" 'semantic-complete-inline-down)
554 (define-key km "\C-m" 'semantic-complete-inline-done)
555 (define-key km "\C-\M-c" 'semantic-complete-inline-exit)
556 (define-key km "\C-g" 'semantic-complete-inline-quit)
557 (define-key km "?"
558 (lambda () (interactive)
559 (describe-variable 'semantic-complete-inline-map)))
560 km)
561 "Keymap used while performing Semantic inline completion.")
562
563 (defface semantic-complete-inline-face
564 '((((class color) (background dark))
565 (:underline "yellow"))
566 (((class color) (background light))
567 (:underline "brown")))
568 "*Face used to show the region being completed inline.
569 The face is used in `semantic-complete-inline-tag-engine'."
570 :group 'semantic-faces)
571
572 (defun semantic-complete-inline-text ()
573 "Return the text that is being completed inline.
574 Similar to `minibuffer-contents' when completing in the minibuffer."
575 (let ((s (semantic-overlay-start semantic-complete-inline-overlay))
576 (e (semantic-overlay-end semantic-complete-inline-overlay)))
577 (if (= s e)
578 ""
579 (buffer-substring-no-properties s e ))))
580
581 (defun semantic-complete-inline-delete-text ()
582 "Delete the text currently being completed in the current buffer."
583 (delete-region
584 (semantic-overlay-start semantic-complete-inline-overlay)
585 (semantic-overlay-end semantic-complete-inline-overlay)))
586
587 (defun semantic-complete-inline-done ()
588 "This completion thing is DONE, OR, insert a newline."
589 (interactive)
590 (let* ((displayor semantic-completion-display-engine)
591 (tag (semantic-displayor-current-focus displayor)))
592 (if tag
593 (let ((txt (semantic-completion-text)))
594 (insert (substring (semantic-tag-name tag)
595 (length txt)))
596 (semantic-complete-inline-exit))
597
598 ;; Get whatever binding RET usually has.
599 (let ((fcn
600 (condition-case nil
601 (lookup-key (current-active-maps) (this-command-keys))
602 (error
603 ;; I don't know why, but for some reason the above
604 ;; throws an error sometimes.
605 (lookup-key (current-global-map) (this-command-keys))
606 ))))
607 (when fcn
608 (funcall fcn)))
609 )))
610
611 (defun semantic-complete-inline-quit ()
612 "Quit an inline edit."
613 (interactive)
614 (semantic-complete-inline-exit)
615 (keyboard-quit))
616
617 (defun semantic-complete-inline-exit ()
618 "Exit inline completion mode."
619 (interactive)
620 ;; Remove this hook FIRST!
621 (remove-hook 'pre-command-hook 'semantic-complete-pre-command-hook)
622
623 (condition-case nil
624 (progn
625 (when semantic-completion-collector-engine
626 (semantic-collector-cleanup semantic-completion-collector-engine))
627 (when semantic-completion-display-engine
628 (semantic-displayor-cleanup semantic-completion-display-engine))
629
630 (when semantic-complete-inline-overlay
631 (let ((wc (semantic-overlay-get semantic-complete-inline-overlay
632 'window-config-start))
633 (buf (semantic-overlay-buffer semantic-complete-inline-overlay))
634 )
635 (semantic-overlay-delete semantic-complete-inline-overlay)
636 (setq semantic-complete-inline-overlay nil)
637 ;; DONT restore the window configuration if we just
638 ;; switched windows!
639 (when (eq buf (current-buffer))
640 (set-window-configuration wc))
641 ))
642
643 (setq semantic-completion-collector-engine nil
644 semantic-completion-display-engine nil))
645 (error nil))
646
647 ;; Remove this hook LAST!!!
648 ;; This will force us back through this function if there was
649 ;; some sort of error above.
650 (remove-hook 'post-command-hook 'semantic-complete-post-command-hook)
651
652 ;;(message "Exiting inline completion.")
653 )
654
655 (defun semantic-complete-pre-command-hook ()
656 "Used to redefine what commands are being run while completing.
657 When installed as a `pre-command-hook' the special keymap
658 `semantic-complete-inline-map' is queried to replace commands normally run.
659 Commands which edit what is in the region of interest operate normally.
660 Commands which would take us out of the region of interest, or our
661 quit hook, will exit this completion mode."
662 (let ((fcn (lookup-key semantic-complete-inline-map
663 (this-command-keys) nil)))
664 (cond ((commandp fcn)
665 (setq this-command fcn))
666 (t nil)))
667 )
668
669 (defun semantic-complete-post-command-hook ()
670 "Used to determine if we need to exit inline completion mode.
671 If completion mode is active, check to see if we are within
672 the bounds of `semantic-complete-inline-overlay', or within
673 a reasonable distance."
674 (condition-case nil
675 ;; Exit if something bad happened.
676 (if (not semantic-complete-inline-overlay)
677 (progn
678 ;;(message "Inline Hook installed, but overlay deleted.")
679 (semantic-complete-inline-exit))
680 ;; Exit if commands caused us to exit the area of interest
681 (let ((s (semantic-overlay-start semantic-complete-inline-overlay))
682 (e (semantic-overlay-end semantic-complete-inline-overlay))
683 (b (semantic-overlay-buffer semantic-complete-inline-overlay))
684 (txt nil)
685 )
686 (cond
687 ;; EXIT when we are no longer in a good place.
688 ((or (not (eq b (current-buffer)))
689 (<= (point) s)
690 (> (point) e))
691 ;;(message "Exit: %S %S %S" s e (point))
692 (semantic-complete-inline-exit)
693 )
694 ;; Exit if the user typed in a character that is not part
695 ;; of the symbol being completed.
696 ((and (setq txt (semantic-completion-text))
697 (not (string= txt ""))
698 (and (/= (point) s)
699 (save-excursion
700 (forward-char -1)
701 (not (looking-at "\\(\\w\\|\\s_\\)")))))
702 ;;(message "Non symbol character.")
703 (semantic-complete-inline-exit))
704 ((lookup-key semantic-complete-inline-map
705 (this-command-keys) nil)
706 ;; If the last command was one of our completion commands,
707 ;; then do nothing.
708 nil
709 )
710 (t
711 ;; Else, show completions now
712 (semantic-complete-inline-force-display)
713
714 ))))
715 ;; If something goes terribly wrong, clean up after ourselves.
716 (error (semantic-complete-inline-exit))))
717
718 (defun semantic-complete-inline-force-display ()
719 "Force the display of whatever the current completions are.
720 DO NOT CALL THIS IF THE INLINE COMPLETION ENGINE IS NOT ACTIVE."
721 (condition-case e
722 (save-excursion
723 (let ((collector semantic-completion-collector-engine)
724 (displayor semantic-completion-display-engine)
725 (contents (semantic-completion-text)))
726 (when collector
727 (semantic-collector-calculate-completions
728 collector contents nil)
729 (semantic-displayor-set-completions
730 displayor
731 (semantic-collector-all-completions collector contents)
732 contents)
733 ;; Ask the displayor to display them.
734 (semantic-displayor-show-request displayor))
735 ))
736 (error (message "Bug Showing Completions: %S" e))))
737
738 (defun semantic-complete-inline-tag-engine
739 (collector displayor buffer start end)
740 "Perform completion based on semantic tags in a buffer.
741 Argument COLLECTOR is an object which can be used to calculate
742 a list of possible hits. See `semantic-completion-collector-engine'
743 for details on COLLECTOR.
744 Argument DISPLAYOR is an object used to display a list of possible
745 completions for a given prefix. See`semantic-completion-display-engine'
746 for details on DISPLAYOR.
747 BUFFER is the buffer in which completion will take place.
748 START is a location for the start of the full symbol.
749 If the symbol being completed is \"foo.ba\", then START
750 is on the \"f\" character.
751 END is at the end of the current symbol being completed."
752 ;; Set us up for doing completion
753 (setq semantic-completion-collector-engine collector
754 semantic-completion-display-engine displayor)
755 ;; Create an overlay
756 (setq semantic-complete-inline-overlay
757 (semantic-make-overlay start end buffer nil t))
758 (semantic-overlay-put semantic-complete-inline-overlay
759 'face
760 'semantic-complete-inline-face)
761 (semantic-overlay-put semantic-complete-inline-overlay
762 'window-config-start
763 (current-window-configuration))
764 ;; Install our command hooks
765 (add-hook 'pre-command-hook 'semantic-complete-pre-command-hook)
766 (add-hook 'post-command-hook 'semantic-complete-post-command-hook)
767 ;; Go!
768 (semantic-complete-inline-force-display)
769 )
770
771 ;;; Inline Completion Keymap Functions
772 ;;
773 (defun semantic-complete-inline-TAB ()
774 "Perform inline completion."
775 (interactive)
776 (let ((cmpl (semantic-complete-do-completion nil t)))
777 (cond
778 ((eq cmpl 'complete)
779 (semantic-complete-inline-force-display))
780 ((eq cmpl 'done)
781 (semantic-complete-inline-done))
782 ))
783 )
784
785 (defun semantic-complete-inline-down()
786 "Focus forwards through the displayor."
787 (interactive)
788 (let ((displayor semantic-completion-display-engine))
789 (semantic-displayor-focus-next displayor)
790 (semantic-displayor-focus-request displayor)
791 ))
792
793 (defun semantic-complete-inline-up ()
794 "Focus backwards through the displayor."
795 (interactive)
796 (let ((displayor semantic-completion-display-engine))
797 (semantic-displayor-focus-previous displayor)
798 (semantic-displayor-focus-request displayor)
799 ))
800
801 \f
802 ;;; ------------------------------------------------------------
803 ;;; Interactions between collection and displaying
804 ;;
805 ;; Functional routines used to help collectors communicate with
806 ;; the current displayor, or for the previous section.
807
808 (defun semantic-complete-next-action (partial)
809 "Determine what the next completion action should be.
810 PARTIAL is non-nil if we are doing partial completion.
811 First, the collector can determine if we should perform a completion or not.
812 If there is nothing to complete, then the displayor determines if we are
813 to show a completion list, scroll, or perhaps do a focus (if it is capable.)
814 Expected return values are:
815 done -> We have a singular match
816 empty -> There are no matches to the current text
817 complete -> Perform a completion action
818 complete-whitespace -> Complete next whitespace type character.
819 display -> Show the list of completions
820 scroll -> The completions have been shown, and the user keeps hitting
821 the complete button. If possible, scroll the completions
822 focus -> The displayor knows how to shift focus among possible completions.
823 Let it do that.
824 displayend -> Whatever options the displayor had for repeating options, there
825 are none left. Try something new."
826 (let ((ans1 (semantic-collector-next-action
827 semantic-completion-collector-engine
828 partial))
829 (ans2 (semantic-displayor-next-action
830 semantic-completion-display-engine))
831 )
832 (cond
833 ;; No collector answer, use displayor answer.
834 ((not ans1)
835 ans2)
836 ;; Displayor selection of 'scroll, 'display, or 'focus trumps
837 ;; 'done
838 ((and (eq ans1 'done) ans2)
839 ans2)
840 ;; Use ans1 when we have it.
841 (t
842 ans1))))
843
844
845 \f
846 ;;; ------------------------------------------------------------
847 ;;; Collection Engines
848 ;;
849 ;; Collection engines can scan tags from the current environment and
850 ;; provide lists of possible completions.
851 ;;
852 ;; General features of the abstract collector:
853 ;; * Cache completion lists between uses
854 ;; * Cache itself per buffer. Handle reparse hooks
855 ;;
856 ;; Key Interface Functions to implement:
857 ;; * semantic-collector-next-action
858 ;; * semantic-collector-calculate-completions
859 ;; * semantic-collector-try-completion
860 ;; * semantic-collector-all-completions
861
862 (defvar semantic-collector-per-buffer-list nil
863 "List of collectors active in this buffer.")
864 (make-variable-buffer-local 'semantic-collector-per-buffer-list)
865
866 (defvar semantic-collector-list nil
867 "List of global collectors active this session.")
868
869 (defclass semantic-collector-abstract ()
870 ((buffer :initarg :buffer
871 :type buffer
872 :documentation "Originating buffer for this collector.
873 Some collectors use a given buffer as a starting place while looking up
874 tags.")
875 (cache :initform nil
876 :type (or null semanticdb-find-result-with-nil)
877 :documentation "Cache of tags.
878 These tags are re-used during a completion session.
879 Sometimes these tags are cached between completion sessions.")
880 (last-all-completions :initarg nil
881 :type semanticdb-find-result-with-nil
882 :documentation "Last result of `all-completions'.
883 This result can be used for refined completions as `last-prefix' gets
884 closer to a specific result.")
885 (last-prefix :type string
886 :protection :protected
887 :documentation "The last queried prefix.
888 This prefix can be used to cache intermediate completion offers.
889 making the action of homing in on a token faster.")
890 (last-completion :type (or null string)
891 :documentation "The last calculated completion.
892 This completion is calculated and saved for future use.")
893 (last-whitespace-completion :type (or null string)
894 :documentation "The last whitespace completion.
895 For partial completion, SPC will disambiguate over whitespace type
896 characters. This is the last calculated version.")
897 (current-exact-match :type list
898 :protection :protected
899 :documentation "The list of matched tags.
900 When tokens are matched, they are added to this list.")
901 )
902 "Root class for completion engines.
903 The baseclass provides basic functionality for interacting with
904 a completion displayor object, and tracking the current progress
905 of a completion."
906 :abstract t)
907
908 ;;; Smart completion collector
909 (defclass semantic-collector-analyze-completions (semantic-collector-abstract)
910 ((context :initarg :context
911 :type semantic-analyze-context
912 :documentation "An analysis context.
913 Specifies some context location from whence completion lists will be drawn."
914 )
915 (first-pass-completions :type list
916 :documentation "List of valid completion tags.
917 This list of tags is generated when completion starts. All searches
918 derive from this list.")
919 )
920 "Completion engine that uses the context analyzer to provide options.
921 The only options available for completion are those which can be logically
922 inserted into the current context.")
923
924 (defmethod semantic-collector-calculate-completions-raw
925 ((obj semantic-collector-analyze-completions) prefix completionlist)
926 "calculate the completions for prefix from completionlist."
927 ;; if there are no completions yet, calculate them.
928 (if (not (slot-boundp obj 'first-pass-completions))
929 (oset obj first-pass-completions
930 (semantic-analyze-possible-completions (oref obj context))))
931 ;; search our cached completion list. make it look like a semanticdb
932 ;; results type.
933 (list (cons (with-current-buffer (oref (oref obj context) buffer)
934 semanticdb-current-table)
935 (semantic-find-tags-for-completion
936 prefix
937 (oref obj first-pass-completions)))))
938
939 (defmethod semantic-collector-cleanup ((obj semantic-collector-abstract))
940 "Clean up any mess this collector may have."
941 nil)
942
943 (defmethod semantic-collector-next-action
944 ((obj semantic-collector-abstract) partial)
945 "What should we do next? OBJ can be used to determine the next action.
946 PARTIAL indicates if we are doing a partial completion."
947 (if (and (slot-boundp obj 'last-completion)
948 (string= (semantic-completion-text) (oref obj last-completion)))
949 (let* ((cem (semantic-collector-current-exact-match obj))
950 (cemlen (semanticdb-find-result-length cem))
951 (cac (semantic-collector-all-completions
952 obj (semantic-completion-text)))
953 (caclen (semanticdb-find-result-length cac)))
954 (cond ((and cem (= cemlen 1)
955 cac (> caclen 1)
956 (eq last-command this-command))
957 ;; Defer to the displayor...
958 nil)
959 ((and cem (= cemlen 1))
960 'done)
961 ((and (not cem) (not cac))
962 'empty)
963 ((and partial (semantic-collector-try-completion-whitespace
964 obj (semantic-completion-text)))
965 'complete-whitespace)))
966 'complete))
967
968 (defmethod semantic-collector-last-prefix= ((obj semantic-collector-abstract)
969 last-prefix)
970 "Return non-nil if OBJ's prefix matches PREFIX."
971 (and (slot-boundp obj 'last-prefix)
972 (string= (oref obj last-prefix) last-prefix)))
973
974 (defmethod semantic-collector-get-cache ((obj semantic-collector-abstract))
975 "Get the raw cache of tags for completion.
976 Calculate the cache if there isn't one."
977 (or (oref obj cache)
978 (semantic-collector-calculate-cache obj)))
979
980 (defmethod semantic-collector-calculate-completions-raw
981 ((obj semantic-collector-abstract) prefix completionlist)
982 "Calculate the completions for prefix from completionlist.
983 Output must be in semanticdb Find result format."
984 ;; Must output in semanticdb format
985 (let ((table (with-current-buffer (oref obj buffer)
986 semanticdb-current-table))
987 (result (semantic-find-tags-for-completion
988 prefix
989 ;; To do this kind of search with a pre-built completion
990 ;; list, we need to strip it first.
991 (semanticdb-strip-find-results completionlist)))
992 )
993 (if result
994 (list (cons table result)))))
995
996 (defmethod semantic-collector-calculate-completions
997 ((obj semantic-collector-abstract) prefix partial)
998 "Calculate completions for prefix as setup for other queries."
999 (let* ((case-fold-search semantic-case-fold)
1000 (same-prefix-p (semantic-collector-last-prefix= obj prefix))
1001 (last-prefix (and (slot-boundp obj 'last-prefix)
1002 (oref obj last-prefix)))
1003 (completionlist
1004 (cond ((or same-prefix-p
1005 (and last-prefix (eq (compare-strings
1006 last-prefix 0 nil
1007 prefix 0 (length last-prefix)) t)))
1008 ;; We have the same prefix, or last-prefix is a
1009 ;; substring of the of new prefix, in which case we are
1010 ;; refining our symbol so just re-use cache.
1011 (oref obj last-all-completions))
1012 ((and last-prefix
1013 (> (length prefix) 1)
1014 (eq (compare-strings
1015 prefix 0 nil
1016 last-prefix 0 (length prefix)) t))
1017 ;; The new prefix is a substring of the old
1018 ;; prefix, and it's longer than one character.
1019 ;; Perform a full search to pull in additional
1020 ;; matches.
1021 (let ((context (semantic-analyze-current-context (point))))
1022 ;; Set new context and make first-pass-completions
1023 ;; unbound so that they are newly calculated.
1024 (oset obj context context)
1025 (when (slot-boundp obj 'first-pass-completions)
1026 (slot-makeunbound obj 'first-pass-completions)))
1027 nil)))
1028 ;; Get the result
1029 (answer (if same-prefix-p
1030 completionlist
1031 (semantic-collector-calculate-completions-raw
1032 obj prefix completionlist)))
1033 (completion nil)
1034 (complete-not-uniq nil)
1035 )
1036 ;;(semanticdb-find-result-test answer)
1037 (when (not same-prefix-p)
1038 ;; Save results if it is interesting and beneficial
1039 (oset obj last-prefix prefix)
1040 (oset obj last-all-completions answer))
1041 ;; Now calculate the completion.
1042 (setq completion (try-completion
1043 prefix
1044 (semanticdb-strip-find-results answer)))
1045 (oset obj last-whitespace-completion nil)
1046 (oset obj current-exact-match nil)
1047 ;; Only do this if a completion was found. Letting a nil in
1048 ;; could cause a full semanticdb search by accident.
1049 (when completion
1050 (oset obj last-completion
1051 (cond
1052 ;; Unique match in AC. Last completion is a match.
1053 ;; Also set the current-exact-match.
1054 ((eq completion t)
1055 (oset obj current-exact-match answer)
1056 prefix)
1057 ;; It may be complete (a symbol) but still not unique.
1058 ;; We can capture a match
1059 ((setq complete-not-uniq
1060 (semanticdb-find-tags-by-name
1061 prefix
1062 answer))
1063 (oset obj current-exact-match
1064 complete-not-uniq)
1065 prefix
1066 )
1067 ;; Non unique match, return the string that handles
1068 ;; completion
1069 (t (or completion prefix))
1070 )))
1071 ))
1072
1073 (defmethod semantic-collector-try-completion-whitespace
1074 ((obj semantic-collector-abstract) prefix)
1075 "For OBJ, do whitespace completion based on PREFIX.
1076 This implies that if there are two completions, one matching
1077 the test \"prefix\\>\", and one not, the one matching the full
1078 word version of PREFIX will be chosen, and that text returned.
1079 This function requires that `semantic-collector-calculate-completions'
1080 has been run first."
1081 (let* ((ac (semantic-collector-all-completions obj prefix))
1082 (matchme (concat "^" prefix "\\>"))
1083 (compare (semanticdb-find-tags-by-name-regexp matchme ac))
1084 (numtag (semanticdb-find-result-length compare))
1085 )
1086 (if compare
1087 (let* ((idx 0)
1088 (cutlen (1+ (length prefix)))
1089 (twws (semanticdb-find-result-nth compare idx)))
1090 ;; Is our tag with whitespace a match that has whitespace
1091 ;; after it, or just an already complete symbol?
1092 (while (and (< idx numtag)
1093 (< (length (semantic-tag-name (car twws))) cutlen))
1094 (setq idx (1+ idx)
1095 twws (semanticdb-find-result-nth compare idx)))
1096 (when (and twws (car-safe twws))
1097 ;; If COMPARE has succeeded, then we should take the very
1098 ;; first match, and extend prefix by one character.
1099 (oset obj last-whitespace-completion
1100 (substring (semantic-tag-name (car twws))
1101 0 cutlen))))
1102 )))
1103
1104
1105 (defmethod semantic-collector-current-exact-match ((obj semantic-collector-abstract))
1106 "Return the active valid MATCH from the semantic collector.
1107 For now, just return the first element from our list of available
1108 matches. For semanticdb based results, make sure the file is loaded
1109 into a buffer."
1110 (when (slot-boundp obj 'current-exact-match)
1111 (oref obj current-exact-match)))
1112
1113 (defmethod semantic-collector-current-whitespace-completion ((obj semantic-collector-abstract))
1114 "Return the active whitespace completion value."
1115 (when (slot-boundp obj 'last-whitespace-completion)
1116 (oref obj last-whitespace-completion)))
1117
1118 (defmethod semantic-collector-get-match ((obj semantic-collector-abstract))
1119 "Return the active valid MATCH from the semantic collector.
1120 For now, just return the first element from our list of available
1121 matches. For semanticdb based results, make sure the file is loaded
1122 into a buffer."
1123 (when (slot-boundp obj 'current-exact-match)
1124 (semanticdb-find-result-nth-in-buffer (oref obj current-exact-match) 0)))
1125
1126 (defmethod semantic-collector-all-completions
1127 ((obj semantic-collector-abstract) prefix)
1128 "For OBJ, retrieve all completions matching PREFIX.
1129 The returned list consists of all the tags currently
1130 matching PREFIX."
1131 (when (slot-boundp obj 'last-all-completions)
1132 (oref obj last-all-completions)))
1133
1134 (defmethod semantic-collector-try-completion
1135 ((obj semantic-collector-abstract) prefix)
1136 "For OBJ, attempt to match PREFIX.
1137 See `try-completion' for details on how this works.
1138 Return nil for no match.
1139 Return a string for a partial match.
1140 For a unique match of PREFIX, return the list of all tags
1141 with that name."
1142 (if (slot-boundp obj 'last-completion)
1143 (oref obj last-completion)))
1144
1145 (defmethod semantic-collector-calculate-cache
1146 ((obj semantic-collector-abstract))
1147 "Calculate the completion cache for OBJ."
1148 nil
1149 )
1150
1151 (defmethod semantic-collector-flush ((this semantic-collector-abstract))
1152 "Flush THIS collector object, clearing any caches and prefix."
1153 (oset this cache nil)
1154 (slot-makeunbound this 'last-prefix)
1155 (slot-makeunbound this 'last-completion)
1156 (slot-makeunbound this 'last-all-completions)
1157 (slot-makeunbound this 'current-exact-match)
1158 )
1159
1160 ;;; PER BUFFER
1161 ;;
1162 (defclass semantic-collector-buffer-abstract (semantic-collector-abstract)
1163 ()
1164 "Root class for per-buffer completion engines.
1165 These collectors track themselves on a per-buffer basis."
1166 :abstract t)
1167
1168 (defmethod constructor :STATIC ((this semantic-collector-buffer-abstract)
1169 newname &rest fields)
1170 "Reuse previously created objects of this type in buffer."
1171 (let ((old nil)
1172 (bl semantic-collector-per-buffer-list))
1173 (while (and bl (null old))
1174 (if (eq (object-class (car bl)) this)
1175 (setq old (car bl))))
1176 (unless old
1177 (let ((new (call-next-method)))
1178 (add-to-list 'semantic-collector-per-buffer-list new)
1179 (setq old new)))
1180 (slot-makeunbound old 'last-completion)
1181 (slot-makeunbound old 'last-prefix)
1182 (slot-makeunbound old 'current-exact-match)
1183 old))
1184
1185 ;; Buffer specific collectors should flush themselves
1186 (defun semantic-collector-buffer-flush (newcache)
1187 "Flush all buffer collector objects.
1188 NEWCACHE is the new tag table, but we ignore it."
1189 (condition-case nil
1190 (let ((l semantic-collector-per-buffer-list))
1191 (while l
1192 (if (car l) (semantic-collector-flush (car l)))
1193 (setq l (cdr l))))
1194 (error nil)))
1195
1196 (add-hook 'semantic-after-toplevel-cache-change-hook
1197 'semantic-collector-buffer-flush)
1198
1199 ;;; DEEP BUFFER SPECIFIC COMPLETION
1200 ;;
1201 (defclass semantic-collector-buffer-deep
1202 (semantic-collector-buffer-abstract)
1203 ()
1204 "Completion engine for tags in the current buffer.
1205 When searching for a tag, uses semantic deep search functions.
1206 Basics search only in the current buffer.")
1207
1208 (defmethod semantic-collector-calculate-cache
1209 ((obj semantic-collector-buffer-deep))
1210 "Calculate the completion cache for OBJ.
1211 Uses `semantic-flatten-tags-table'"
1212 (oset obj cache
1213 ;; Must create it in SEMANTICDB find format.
1214 ;; ( ( DBTABLE TAG TAG ... ) ... )
1215 (list
1216 (cons semanticdb-current-table
1217 (semantic-flatten-tags-table (oref obj buffer))))))
1218
1219 ;;; PROJECT SPECIFIC COMPLETION
1220 ;;
1221 (defclass semantic-collector-project-abstract (semantic-collector-abstract)
1222 ((path :initarg :path
1223 :initform nil
1224 :documentation "List of database tables to search.
1225 At creation time, it can be anything accepted by
1226 `semanticdb-find-translate-path' as a PATH argument.")
1227 )
1228 "Root class for project wide completion engines.
1229 Uses semanticdb for searching all tags in the current project."
1230 :abstract t)
1231
1232 ;;; Project Search
1233 (defclass semantic-collector-project (semantic-collector-project-abstract)
1234 ()
1235 "Completion engine for tags in a project.")
1236
1237
1238 (defmethod semantic-collector-calculate-completions-raw
1239 ((obj semantic-collector-project) prefix completionlist)
1240 "Calculate the completions for prefix from completionlist."
1241 (semanticdb-find-tags-for-completion prefix (oref obj path)))
1242
1243 ;;; Brutish Project search
1244 (defclass semantic-collector-project-brutish (semantic-collector-project-abstract)
1245 ()
1246 "Completion engine for tags in a project.")
1247
1248 (declare-function semanticdb-brute-deep-find-tags-for-completion
1249 "semantic/db-find")
1250
1251 (defmethod semantic-collector-calculate-completions-raw
1252 ((obj semantic-collector-project-brutish) prefix completionlist)
1253 "Calculate the completions for prefix from completionlist."
1254 (require 'semantic/db-find)
1255 (semanticdb-brute-deep-find-tags-for-completion prefix (oref obj path)))
1256
1257 ;;; Current Datatype member search.
1258 (defclass semantic-collector-local-members (semantic-collector-project-abstract)
1259 ((scope :initform nil
1260 :type (or null semantic-scope-cache)
1261 :documentation
1262 "The scope the local members are being completed from."))
1263 "Completion engine for tags in a project.")
1264
1265 (defmethod semantic-collector-calculate-completions-raw
1266 ((obj semantic-collector-local-members) prefix completionlist)
1267 "Calculate the completions for prefix from completionlist."
1268 (let* ((scope (or (oref obj scope)
1269 (oset obj scope (semantic-calculate-scope))))
1270 (localstuff (oref scope scope)))
1271 (list
1272 (cons
1273 (oref scope :table)
1274 (semantic-find-tags-for-completion prefix localstuff)))))
1275 ;(semanticdb-brute-deep-find-tags-for-completion prefix (oref obj path))))
1276
1277 \f
1278 ;;; ------------------------------------------------------------
1279 ;;; Tag List Display Engines
1280 ;;
1281 ;; A typical displayor accepts a pre-determined list of completions
1282 ;; generated by a collector. This format is in semanticdb search
1283 ;; form. This vaguely standard form is a bit challenging to navigate
1284 ;; because the tags do not contain buffer info, but the file associated
1285 ;; with the tags precedes the tag in the list.
1286 ;;
1287 ;; Basic displayors don't care, and can strip the results.
1288 ;; Advanced highlighting displayors need to know when they need
1289 ;; to load a file so that the tag in question can be highlighted.
1290 ;;
1291 ;; Key interface methods to a displayor are:
1292 ;; * semantic-displayor-next-action
1293 ;; * semantic-displayor-set-completions
1294 ;; * semantic-displayor-current-focus
1295 ;; * semantic-displayor-show-request
1296 ;; * semantic-displayor-scroll-request
1297 ;; * semantic-displayor-focus-request
1298
1299 (defclass semantic-displayor-abstract ()
1300 ((table :type (or null semanticdb-find-result-with-nil)
1301 :initform nil
1302 :protection :protected
1303 :documentation "List of tags this displayor is showing.")
1304 (last-prefix :type string
1305 :protection :protected
1306 :documentation "Prefix associated with slot `table'")
1307 )
1308 "Abstract displayor baseclass.
1309 Manages the display of some number of tags.
1310 Provides the basics for a displayor, including interacting with
1311 a collector, and tracking tables of completion to display."
1312 :abstract t)
1313
1314 (defmethod semantic-displayor-cleanup ((obj semantic-displayor-abstract))
1315 "Clean up any mess this displayor may have."
1316 nil)
1317
1318 (defmethod semantic-displayor-next-action ((obj semantic-displayor-abstract))
1319 "The next action to take on the minibuffer related to display."
1320 (if (and (slot-boundp obj 'last-prefix)
1321 (or (eq this-command 'semantic-complete-inline-TAB)
1322 (and (string= (oref obj last-prefix) (semantic-completion-text))
1323 (eq last-command this-command))))
1324 'scroll
1325 'display))
1326
1327 (defmethod semantic-displayor-set-completions ((obj semantic-displayor-abstract)
1328 table prefix)
1329 "Set the list of tags to be completed over to TABLE."
1330 (oset obj table table)
1331 (oset obj last-prefix prefix))
1332
1333 (defmethod semantic-displayor-show-request ((obj semantic-displayor-abstract))
1334 "A request to show the current tags table."
1335 (ding))
1336
1337 (defmethod semantic-displayor-focus-request ((obj semantic-displayor-abstract))
1338 "A request to for the displayor to focus on some tag option."
1339 (ding))
1340
1341 (defmethod semantic-displayor-scroll-request ((obj semantic-displayor-abstract))
1342 "A request to for the displayor to scroll the completion list (if needed)."
1343 (scroll-other-window))
1344
1345 (defmethod semantic-displayor-focus-previous ((obj semantic-displayor-abstract))
1346 "Set the current focus to the previous item."
1347 nil)
1348
1349 (defmethod semantic-displayor-focus-next ((obj semantic-displayor-abstract))
1350 "Set the current focus to the next item."
1351 nil)
1352
1353 (defmethod semantic-displayor-current-focus ((obj semantic-displayor-abstract))
1354 "Return a single tag currently in focus.
1355 This object type doesn't do focus, so will never have a focus object."
1356 nil)
1357
1358 ;; Traditional displayor
1359 (defcustom semantic-completion-displayor-format-tag-function
1360 #'semantic-format-tag-name
1361 "*A Tag format function to use when showing completions."
1362 :group 'semantic
1363 :type semantic-format-tag-custom-list)
1364
1365 (defclass semantic-displayor-traditional (semantic-displayor-abstract)
1366 ()
1367 "Display options in *Completions* buffer.
1368 Traditional display mechanism for a list of possible completions.
1369 Completions are showin in a new buffer and listed with the ability
1370 to click on the items to aid in completion.")
1371
1372 (defmethod semantic-displayor-show-request ((obj semantic-displayor-traditional))
1373 "A request to show the current tags table."
1374
1375 ;; NOTE TO SELF. Find the character to type next, and emphasize it.
1376
1377 (with-output-to-temp-buffer "*Completions*"
1378 (display-completion-list
1379 (mapcar semantic-completion-displayor-format-tag-function
1380 (semanticdb-strip-find-results (oref obj table))))
1381 )
1382 )
1383
1384 ;;; Abstract baseclass for any displayor which supports focus
1385 (defclass semantic-displayor-focus-abstract (semantic-displayor-abstract)
1386 ((focus :type number
1387 :protection :protected
1388 :documentation "A tag index from `table' which has focus.
1389 Multiple calls to the display function can choose to focus on a
1390 given tag, by highlighting its location.")
1391 (find-file-focus
1392 :allocation :class
1393 :initform nil
1394 :documentation
1395 "Non-nil if focusing requires a tag's buffer be in memory.")
1396 )
1397 "Abstract displayor supporting `focus'.
1398 A displayor which has the ability to focus in on one tag.
1399 Focusing is a way of differentiating among multiple tags
1400 which have the same name."
1401 :abstract t)
1402
1403 (defmethod semantic-displayor-next-action ((obj semantic-displayor-focus-abstract))
1404 "The next action to take on the minibuffer related to display."
1405 (if (and (slot-boundp obj 'last-prefix)
1406 (string= (oref obj last-prefix) (semantic-completion-text))
1407 (eq last-command this-command))
1408 (if (and
1409 (slot-boundp obj 'focus)
1410 (slot-boundp obj 'table)
1411 (<= (semanticdb-find-result-length (oref obj table))
1412 (1+ (oref obj focus))))
1413 ;; We are at the end of the focus road.
1414 'displayend
1415 ;; Focus on some item.
1416 'focus)
1417 'display))
1418
1419 (defmethod semantic-displayor-set-completions ((obj semantic-displayor-focus-abstract)
1420 table prefix)
1421 "Set the list of tags to be completed over to TABLE."
1422 (call-next-method)
1423 (slot-makeunbound obj 'focus))
1424
1425 (defmethod semantic-displayor-focus-previous ((obj semantic-displayor-focus-abstract))
1426 "Set the current focus to the previous item.
1427 Not meaningful return value."
1428 (when (and (slot-boundp obj 'table) (oref obj table))
1429 (with-slots (table) obj
1430 (if (or (not (slot-boundp obj 'focus))
1431 (<= (oref obj focus) 0))
1432 (oset obj focus (1- (semanticdb-find-result-length table)))
1433 (oset obj focus (1- (oref obj focus)))
1434 )
1435 )))
1436
1437 (defmethod semantic-displayor-focus-next ((obj semantic-displayor-focus-abstract))
1438 "Set the current focus to the next item.
1439 Not meaningful return value."
1440 (when (and (slot-boundp obj 'table) (oref obj table))
1441 (with-slots (table) obj
1442 (if (not (slot-boundp obj 'focus))
1443 (oset obj focus 0)
1444 (oset obj focus (1+ (oref obj focus)))
1445 )
1446 (if (<= (semanticdb-find-result-length table) (oref obj focus))
1447 (oset obj focus 0))
1448 )))
1449
1450 (defmethod semantic-displayor-focus-tag ((obj semantic-displayor-focus-abstract))
1451 "Return the next tag OBJ should focus on."
1452 (when (and (slot-boundp obj 'table) (oref obj table))
1453 (with-slots (table) obj
1454 (semanticdb-find-result-nth table (oref obj focus)))))
1455
1456 (defmethod semantic-displayor-current-focus ((obj semantic-displayor-focus-abstract))
1457 "Return the tag currently in focus, or call parent method."
1458 (if (and (slot-boundp obj 'focus)
1459 (slot-boundp obj 'table)
1460 ;; Only return the current focus IFF the minibuffer reflects
1461 ;; the list this focus was derived from.
1462 (slot-boundp obj 'last-prefix)
1463 (string= (semantic-completion-text) (oref obj last-prefix))
1464 )
1465 ;; We need to focus
1466 (if (oref obj find-file-focus)
1467 (semanticdb-find-result-nth-in-buffer (oref obj table) (oref obj focus))
1468 ;; result-nth returns a cons with car being the tag, and cdr the
1469 ;; database.
1470 (car (semanticdb-find-result-nth (oref obj table) (oref obj focus))))
1471 ;; Do whatever
1472 (call-next-method)))
1473
1474 ;;; Simple displayor which performs traditional display completion,
1475 ;; and also focuses with highlighting.
1476 (defclass semantic-displayor-traditional-with-focus-highlight
1477 (semantic-displayor-focus-abstract semantic-displayor-traditional)
1478 ((find-file-focus :initform t))
1479 "Display completions in *Completions* buffer, with focus highlight.
1480 A traditional displayor which can focus on a tag by showing it.
1481 Same as `semantic-displayor-traditional', but with selection between
1482 multiple tags with the same name done by 'focusing' on the source
1483 location of the different tags to differentiate them.")
1484
1485 (defmethod semantic-displayor-focus-request
1486 ((obj semantic-displayor-traditional-with-focus-highlight))
1487 "Focus in on possible tag completions.
1488 Focus is performed by cycling through the tags and highlighting
1489 one in the source buffer."
1490 (let* ((tablelength (semanticdb-find-result-length (oref obj table)))
1491 (focus (semantic-displayor-focus-tag obj))
1492 ;; Raw tag info.
1493 (rtag (car focus))
1494 (rtable (cdr focus))
1495 ;; Normalize
1496 (nt (semanticdb-normalize-one-tag rtable rtag))
1497 (tag (cdr nt))
1498 (table (car nt))
1499 (curwin (selected-window)))
1500 ;; If we fail to normalize, reset.
1501 (when (not tag) (setq table rtable tag rtag))
1502 ;; Do the focus.
1503 (let ((buf (or (semantic-tag-buffer tag)
1504 (and table (semanticdb-get-buffer table)))))
1505 ;; If no buffer is provided, then we can make up a summary buffer.
1506 (when (not buf)
1507 (with-current-buffer (get-buffer-create "*Completion Focus*")
1508 (erase-buffer)
1509 (insert "Focus on tag: \n")
1510 (insert (semantic-format-tag-summarize tag nil t) "\n\n")
1511 (when table
1512 (insert "From table: \n")
1513 (insert (object-name table) "\n\n"))
1514 (when buf
1515 (insert "In buffer: \n\n")
1516 (insert (format "%S" buf)))
1517 (setq buf (current-buffer))))
1518 ;; Show the tag in the buffer.
1519 (if (get-buffer-window buf)
1520 (select-window (get-buffer-window buf))
1521 (switch-to-buffer-other-window buf t)
1522 (select-window (get-buffer-window buf)))
1523 ;; Now do some positioning
1524 (when (semantic-tag-with-position-p tag)
1525 ;; Full tag positional information available
1526 (goto-char (semantic-tag-start tag))
1527 ;; This avoids a dangerous problem if we just loaded a tag
1528 ;; from a file, but the original position was not updated
1529 ;; in the TAG variable we are currently using.
1530 (semantic-momentary-highlight-tag (semantic-current-tag)))
1531 (select-window curwin)
1532 ;; Calculate text difference between contents and the focus item.
1533 (let* ((mbc (semantic-completion-text))
1534 (ftn (semantic-tag-name tag))
1535 (diff (substring ftn (length mbc))))
1536 (semantic-completion-message
1537 (format "%s [%d of %d matches]" diff (1+ (oref obj focus)) tablelength)))
1538 )))
1539
1540 \f
1541 ;;; Tooltip completion lister
1542 ;;
1543 ;; Written and contributed by Masatake YAMATO <jet@gyve.org>
1544 ;;
1545 ;; Modified by Eric Ludlam for
1546 ;; * Safe compatibility for tooltip free systems.
1547 ;; * Don't use 'avoid package for tooltip positioning.
1548
1549 ;;;###autoload
1550 (defcustom semantic-displayor-tooltip-mode 'standard
1551 "Mode for the tooltip inline completion.
1552
1553 Standard: Show only `semantic-displayor-tooltip-initial-max-tags'
1554 number of completions initially. Pressing TAB will show the
1555 extended set.
1556
1557 Quiet: Only show completions when we have narrowed all
1558 possibilities down to a maximum of
1559 `semantic-displayor-tooltip-initial-max-tags' tags. Pressing TAB
1560 multiple times will also show completions.
1561
1562 Verbose: Always show all completions available.
1563
1564 The absolute maximum number of completions for all mode is
1565 determined through `semantic-displayor-tooltip-max-tags'."
1566 :group 'semantic
1567 :version "24.3"
1568 :type '(choice (const :tag "Standard" standard)
1569 (const :tag "Quiet" quiet)
1570 (const :tag "Verbose" verbose)))
1571
1572 ;;;###autoload
1573 (defcustom semantic-displayor-tooltip-initial-max-tags 5
1574 "Maximum number of tags to be displayed initially.
1575 See doc-string of `semantic-displayor-tooltip-mode' for details."
1576 :group 'semantic
1577 :version "24.3"
1578 :type 'integer)
1579
1580 (defcustom semantic-displayor-tooltip-max-tags 25
1581 "The maximum number of tags to be displayed.
1582 Maximum number of completions where we have activated the
1583 extended completion list through typing TAB or SPACE multiple
1584 times. This limit needs to fit on your screen!
1585
1586 Note: If available, customizing this variable increases
1587 `x-max-tooltip-size' to force over-sized tooltips when necessary.
1588 This will not happen if you directly set this variable via `setq'."
1589 :group 'semantic
1590 :version "24.3"
1591 :type 'integer
1592 :set '(lambda (sym var)
1593 (set-default sym var)
1594 (when (boundp 'x-max-tooltip-size)
1595 (setcdr x-max-tooltip-size (max (1+ var) (cdr x-max-tooltip-size))))))
1596
1597
1598 (defclass semantic-displayor-tooltip (semantic-displayor-traditional)
1599 ((mode :initarg :mode
1600 :initform
1601 (symbol-value 'semantic-displayor-tooltip-mode)
1602 :documentation
1603 "See `semantic-displayor-tooltip-mode'.")
1604 (max-tags-initial :initarg max-tags-initial
1605 :initform
1606 (symbol-value 'semantic-displayor-tooltip-initial-max-tags)
1607 :documentation
1608 "See `semantic-displayor-tooltip-initial-max-tags'.")
1609 (typing-count :type integer
1610 :initform 0
1611 :documentation
1612 "Counter holding how many times the user types space or tab continuously before showing tags.")
1613 (shown :type boolean
1614 :initform nil
1615 :documentation
1616 "Flag representing whether tooltip has been shown yet.")
1617 )
1618 "Display completions options in a tooltip.
1619 Display mechanism using tooltip for a list of possible completions.")
1620
1621 (defmethod initialize-instance :AFTER ((obj semantic-displayor-tooltip) &rest args)
1622 "Make sure we have tooltips required."
1623 (condition-case nil
1624 (require 'tooltip)
1625 (error nil))
1626 )
1627
1628 (defmethod semantic-displayor-show-request ((obj semantic-displayor-tooltip))
1629 "A request to show the current tags table."
1630 (if (or (not (featurep 'tooltip)) (not tooltip-mode))
1631 ;; If we cannot use tooltips, then go to the normal mode with
1632 ;; a traditional completion buffer.
1633 (call-next-method)
1634 (let* ((tablelong (semanticdb-strip-find-results (oref obj table)))
1635 (table (semantic-unique-tag-table-by-name tablelong))
1636 (completions (mapcar semantic-completion-displayor-format-tag-function table))
1637 (numcompl (length completions))
1638 (typing-count (oref obj typing-count))
1639 (mode (oref obj mode))
1640 (max-tags (oref obj max-tags-initial))
1641 (matchtxt (semantic-completion-text))
1642 msg msg-tail)
1643 ;; Keep a count of the consecutive completion commands entered by the user.
1644 (if (and (stringp (this-command-keys))
1645 (string= (this-command-keys) "\C-i"))
1646 (oset obj typing-count (1+ (oref obj typing-count)))
1647 (oset obj typing-count 0))
1648 (cond
1649 ((eq mode 'quiet)
1650 ;; Switch back to standard mode if user presses key more than 5 times.
1651 (when (>= (oref obj typing-count) 5)
1652 (oset obj mode 'standard)
1653 (setq mode 'standard)
1654 (message "Resetting inline-mode to 'standard'."))
1655 (when (and (> numcompl max-tags)
1656 (< (oref obj typing-count) 2))
1657 ;; Discretely hint at completion availability.
1658 (setq msg "...")))
1659 ((eq mode 'verbose)
1660 ;; Always show extended match set.
1661 (oset obj max-tags semantic-displayor-tooltip-max-tags)
1662 (setq max-tags semantic-displayor-tooltip-max-tags)))
1663 (unless msg
1664 (oset obj shown t)
1665 (cond
1666 ((> numcompl max-tags)
1667 ;; We have too many items, be brave and truncate 'completions'.
1668 (setcdr (nthcdr (1- max-tags) completions) nil)
1669 (if (= max-tags semantic-displayor-tooltip-initial-max-tags)
1670 (setq msg-tail (concat "\n[<TAB> " (number-to-string (- numcompl max-tags)) " more]"))
1671 (setq msg-tail (concat "\n[<n/a> " (number-to-string (- numcompl max-tags)) " more]"))
1672 (when (>= (oref obj typing-count) 2)
1673 (message "Refine search to display results beyond the '%s' limit"
1674 (symbol-name 'semantic-complete-inline-max-tags-extended)))))
1675 ((= numcompl 1)
1676 ;; two possible cases
1677 ;; 1. input text != single match - we found a unique completion!
1678 ;; 2. input text == single match - we found no additional matches, it's just the input text!
1679 (when (string= matchtxt (semantic-tag-name (car table)))
1680 (setq msg "[COMPLETE]\n")))
1681 ((zerop numcompl)
1682 (oset obj shown nil)
1683 ;; No matches, say so if in verbose mode!
1684 (when semantic-idle-scheduler-verbose-flag
1685 (setq msg "[NO MATCH]"))))
1686 ;; Create the tooltip text.
1687 (setq msg (concat msg (mapconcat 'identity completions "\n"))))
1688 ;; Add any tail info.
1689 (setq msg (concat msg msg-tail))
1690 ;; Display tooltip.
1691 (when (not (eq msg ""))
1692 (semantic-displayor-tooltip-show msg)))))
1693
1694 ;;; Compatibility
1695 ;;
1696 (eval-and-compile
1697 (if (fboundp 'window-inside-edges)
1698 ;; Emacs devel.
1699 (defalias 'semantic-displayor-window-edges
1700 'window-inside-edges)
1701 ;; Emacs 21
1702 (defalias 'semantic-displayor-window-edges
1703 'window-edges)
1704 ))
1705
1706 (defun semantic-displayor-point-position ()
1707 "Return the location of POINT as positioned on the selected frame.
1708 Return a cons cell (X . Y)"
1709 (let* ((frame (selected-frame))
1710 (left (or (car-safe (cdr-safe (frame-parameter frame 'left)))
1711 (frame-parameter frame 'left)))
1712 (top (or (car-safe (cdr-safe (frame-parameter frame 'top)))
1713 (frame-parameter frame 'top)))
1714 (point-pix-pos (posn-x-y (posn-at-point)))
1715 (edges (window-inside-pixel-edges (selected-window))))
1716 (cons (+ (car point-pix-pos) (car edges) left)
1717 (+ (cdr point-pix-pos) (cadr edges) top))))
1718
1719
1720 (defun semantic-displayor-tooltip-show (text)
1721 "Display a tooltip with TEXT near cursor."
1722 (let ((point-pix-pos (semantic-displayor-point-position))
1723 (tooltip-frame-parameters
1724 (append tooltip-frame-parameters nil)))
1725 (push
1726 (cons 'left (+ (car point-pix-pos) (frame-char-width)))
1727 tooltip-frame-parameters)
1728 (push
1729 (cons 'top (+ (cdr point-pix-pos) (frame-char-height)))
1730 tooltip-frame-parameters)
1731 (tooltip-show text)))
1732
1733 (defmethod semantic-displayor-scroll-request ((obj semantic-displayor-tooltip))
1734 "A request to for the displayor to scroll the completion list (if needed)."
1735 ;; Do scrolling in the tooltip.
1736 (oset obj max-tags-initial 30)
1737 (semantic-displayor-show-request obj)
1738 )
1739
1740 ;; End code contributed by Masatake YAMATO <jet@gyve.org>
1741
1742 \f
1743 ;;; Ghost Text displayor
1744 ;;
1745 (defclass semantic-displayor-ghost (semantic-displayor-focus-abstract)
1746
1747 ((ghostoverlay :type overlay
1748 :documentation
1749 "The overlay the ghost text is displayed in.")
1750 (first-show :initform t
1751 :documentation
1752 "Non nil if we have not seen our first show request.")
1753 )
1754 "Cycle completions inline with ghost text.
1755 Completion displayor using ghost chars after point for focus options.
1756 Whichever completion is currently in focus will be displayed as ghost
1757 text using overlay options.")
1758
1759 (defmethod semantic-displayor-next-action ((obj semantic-displayor-ghost))
1760 "The next action to take on the inline completion related to display."
1761 (let ((ans (call-next-method))
1762 (table (when (slot-boundp obj 'table)
1763 (oref obj table))))
1764 (if (and (eq ans 'displayend)
1765 table
1766 (= (semanticdb-find-result-length table) 1)
1767 )
1768 nil
1769 ans)))
1770
1771 (defmethod semantic-displayor-cleanup ((obj semantic-displayor-ghost))
1772 "Clean up any mess this displayor may have."
1773 (when (slot-boundp obj 'ghostoverlay)
1774 (semantic-overlay-delete (oref obj ghostoverlay)))
1775 )
1776
1777 (defmethod semantic-displayor-set-completions ((obj semantic-displayor-ghost)
1778 table prefix)
1779 "Set the list of tags to be completed over to TABLE."
1780 (call-next-method)
1781
1782 (semantic-displayor-cleanup obj)
1783 )
1784
1785
1786 (defmethod semantic-displayor-show-request ((obj semantic-displayor-ghost))
1787 "A request to show the current tags table."
1788 ; (if (oref obj first-show)
1789 ; (progn
1790 ; (oset obj first-show nil)
1791 (semantic-displayor-focus-next obj)
1792 (semantic-displayor-focus-request obj)
1793 ; )
1794 ;; Only do the traditional thing if the first show request
1795 ;; has been seen. Use the first one to start doing the ghost
1796 ;; text display.
1797 ; (call-next-method)
1798 ; )
1799 )
1800
1801 (defmethod semantic-displayor-focus-request
1802 ((obj semantic-displayor-ghost))
1803 "Focus in on possible tag completions.
1804 Focus is performed by cycling through the tags and showing a possible
1805 completion text in ghost text."
1806 (let* ((tablelength (semanticdb-find-result-length (oref obj table)))
1807 (focus (semantic-displayor-focus-tag obj))
1808 (tag (car focus))
1809 )
1810 (if (not tag)
1811 (semantic-completion-message "No tags to focus on.")
1812 ;; Display the focus completion as ghost text after the current
1813 ;; inline text.
1814 (when (or (not (slot-boundp obj 'ghostoverlay))
1815 (not (semantic-overlay-live-p (oref obj ghostoverlay))))
1816 (oset obj ghostoverlay
1817 (semantic-make-overlay (point) (1+ (point)) (current-buffer) t)))
1818
1819 (let* ((lp (semantic-completion-text))
1820 (os (substring (semantic-tag-name tag) (length lp)))
1821 (ol (oref obj ghostoverlay))
1822 )
1823
1824 (put-text-property 0 (length os) 'face 'region os)
1825
1826 (semantic-overlay-put
1827 ol 'display (concat os (buffer-substring (point) (1+ (point)))))
1828 )
1829 ;; Calculate text difference between contents and the focus item.
1830 (let* ((mbc (semantic-completion-text))
1831 (ftn (concat (semantic-tag-name tag)))
1832 )
1833 (put-text-property (length mbc) (length ftn) 'face
1834 'bold ftn)
1835 (semantic-completion-message
1836 (format "%s [%d of %d matches]" ftn (1+ (oref obj focus)) tablelength)))
1837 )))
1838
1839 \f
1840 ;;; ------------------------------------------------------------
1841 ;;; Specific queries
1842 ;;
1843 (defvar semantic-complete-inline-custom-type
1844 (append '(radio)
1845 (mapcar
1846 (lambda (class)
1847 (let* ((C (intern (car class)))
1848 (doc (documentation-property C 'variable-documentation))
1849 (doc1 (car (split-string doc "\n")))
1850 )
1851 (list 'const
1852 :tag doc1
1853 C)))
1854 (eieio-build-class-alist semantic-displayor-abstract t))
1855 )
1856 "Possible options for inline completion displayors.
1857 Use this to enable custom editing.")
1858
1859 (defcustom semantic-complete-inline-analyzer-displayor-class
1860 'semantic-displayor-traditional
1861 "*Class for displayor to use with inline completion."
1862 :group 'semantic
1863 :type semantic-complete-inline-custom-type
1864 )
1865
1866 (defun semantic-complete-read-tag-buffer-deep (prompt &optional
1867 default-tag
1868 initial-input
1869 history)
1870 "Ask for a tag by name from the current buffer.
1871 Available tags are from the current buffer, at any level.
1872 Completion options are presented in a traditional way, with highlighting
1873 to resolve same-name collisions.
1874 PROMPT is a string to prompt with.
1875 DEFAULT-TAG is a semantic tag or string to use as the default value.
1876 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
1877 HISTORY is a symbol representing a variable to store the history in."
1878 (semantic-complete-read-tag-engine
1879 (semantic-collector-buffer-deep prompt :buffer (current-buffer))
1880 (semantic-displayor-traditional-with-focus-highlight "simple")
1881 ;;(semantic-displayor-tooltip "simple")
1882 prompt
1883 default-tag
1884 initial-input
1885 history)
1886 )
1887
1888 (defun semantic-complete-read-tag-local-members (prompt &optional
1889 default-tag
1890 initial-input
1891 history)
1892 "Ask for a tag by name from the local type members.
1893 Available tags are from the current scope.
1894 Completion options are presented in a traditional way, with highlighting
1895 to resolve same-name collisions.
1896 PROMPT is a string to prompt with.
1897 DEFAULT-TAG is a semantic tag or string to use as the default value.
1898 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
1899 HISTORY is a symbol representing a variable to store the history in."
1900 (semantic-complete-read-tag-engine
1901 (semantic-collector-local-members prompt :buffer (current-buffer))
1902 (semantic-displayor-traditional-with-focus-highlight "simple")
1903 ;;(semantic-displayor-tooltip "simple")
1904 prompt
1905 default-tag
1906 initial-input
1907 history)
1908 )
1909
1910 (defun semantic-complete-read-tag-project (prompt &optional
1911 default-tag
1912 initial-input
1913 history)
1914 "Ask for a tag by name from the current project.
1915 Available tags are from the current project, at the top level.
1916 Completion options are presented in a traditional way, with highlighting
1917 to resolve same-name collisions.
1918 PROMPT is a string to prompt with.
1919 DEFAULT-TAG is a semantic tag or string to use as the default value.
1920 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
1921 HISTORY is a symbol representing a variable to store the history in."
1922 (semantic-complete-read-tag-engine
1923 (semantic-collector-project-brutish prompt
1924 :buffer (current-buffer)
1925 :path (current-buffer)
1926 )
1927 (semantic-displayor-traditional-with-focus-highlight "simple")
1928 prompt
1929 default-tag
1930 initial-input
1931 history)
1932 )
1933
1934 (defun semantic-complete-inline-tag-project ()
1935 "Complete a symbol name by name from within the current project.
1936 This is similar to `semantic-complete-read-tag-project', except
1937 that the completion interaction is in the buffer where the context
1938 was calculated from.
1939 Customize `semantic-complete-inline-analyzer-displayor-class'
1940 to control how completion options are displayed.
1941 See `semantic-complete-inline-tag-engine' for details on how
1942 completion works."
1943 (let* ((collector (semantic-collector-project-brutish
1944 "inline"
1945 :buffer (current-buffer)
1946 :path (current-buffer)))
1947 (sbounds (semantic-ctxt-current-symbol-and-bounds))
1948 (syms (car sbounds))
1949 (start (car (nth 2 sbounds)))
1950 (end (cdr (nth 2 sbounds)))
1951 (rsym (reverse syms))
1952 (thissym (nth 1 sbounds))
1953 (nextsym (car-safe (cdr rsym)))
1954 (complst nil))
1955 (when (and thissym (or (not (string= thissym ""))
1956 nextsym))
1957 ;; Do a quick calcuation of completions.
1958 (semantic-collector-calculate-completions
1959 collector thissym nil)
1960 ;; Get the master list
1961 (setq complst (semanticdb-strip-find-results
1962 (semantic-collector-all-completions collector thissym)))
1963 ;; Shorten by name
1964 (setq complst (semantic-unique-tag-table-by-name complst))
1965 (if (or (and (= (length complst) 1)
1966 ;; Check to see if it is the same as what is there.
1967 ;; if so, we can offer to complete.
1968 (let ((compname (semantic-tag-name (car complst))))
1969 (not (string= compname thissym))))
1970 (> (length complst) 1))
1971 ;; There are several options. Do the completion.
1972 (semantic-complete-inline-tag-engine
1973 collector
1974 (funcall semantic-complete-inline-analyzer-displayor-class
1975 "inline displayor")
1976 ;;(semantic-displayor-tooltip "simple")
1977 (current-buffer)
1978 start end))
1979 )))
1980
1981 (defun semantic-complete-read-tag-analyzer (prompt &optional
1982 context
1983 history)
1984 "Ask for a tag by name based on the current context.
1985 The function `semantic-analyze-current-context' is used to
1986 calculate the context. `semantic-analyze-possible-completions' is used
1987 to generate the list of possible completions.
1988 PROMPT is the first part of the prompt. Additional prompt
1989 is added based on the contexts full prefix.
1990 CONTEXT is the semantic analyzer context to start with.
1991 HISTORY is a symbol representing a variable to store the history in.
1992 usually a default-tag and initial-input are available for completion
1993 prompts. these are calculated from the CONTEXT variable passed in."
1994 (if (not context) (setq context (semantic-analyze-current-context (point))))
1995 (let* ((syms (semantic-ctxt-current-symbol (point)))
1996 (inp (car (reverse syms))))
1997 (setq syms (nreverse (cdr (nreverse syms))))
1998 (semantic-complete-read-tag-engine
1999 (semantic-collector-analyze-completions
2000 prompt
2001 :buffer (oref context buffer)
2002 :context context)
2003 (semantic-displayor-traditional-with-focus-highlight "simple")
2004 (with-current-buffer (oref context buffer)
2005 (goto-char (cdr (oref context bounds)))
2006 (concat prompt (mapconcat 'identity syms ".")
2007 (if syms "." "")
2008 ))
2009 nil
2010 inp
2011 history)))
2012
2013 (defun semantic-complete-inline-analyzer (context)
2014 "Complete a symbol name by name based on the current context.
2015 This is similar to `semantic-complete-read-tag-analyze', except
2016 that the completion interaction is in the buffer where the context
2017 was calculated from.
2018 CONTEXT is the semantic analyzer context to start with.
2019 Customize `semantic-complete-inline-analyzer-displayor-class'
2020 to control how completion options are displayed.
2021
2022 See `semantic-complete-inline-tag-engine' for details on how
2023 completion works."
2024 (if (not context) (setq context (semantic-analyze-current-context (point))))
2025 (if (not context) (error "Nothing to complete on here"))
2026 (let* ((collector (semantic-collector-analyze-completions
2027 "inline"
2028 :buffer (oref context buffer)
2029 :context context))
2030 (syms (semantic-ctxt-current-symbol (point)))
2031 (rsym (reverse syms))
2032 (thissym (car rsym))
2033 (nextsym (car-safe (cdr rsym)))
2034 (complst nil))
2035 (when (and thissym (or (not (string= thissym ""))
2036 nextsym))
2037 ;; Do a quick calcuation of completions.
2038 (semantic-collector-calculate-completions
2039 collector thissym nil)
2040 ;; Get the master list
2041 (setq complst (semanticdb-strip-find-results
2042 (semantic-collector-all-completions collector thissym)))
2043 ;; Shorten by name
2044 (setq complst (semantic-unique-tag-table-by-name complst))
2045 (if (or (and (= (length complst) 1)
2046 ;; Check to see if it is the same as what is there.
2047 ;; if so, we can offer to complete.
2048 (let ((compname (semantic-tag-name (car complst))))
2049 (not (string= compname thissym))))
2050 (> (length complst) 1))
2051 ;; There are several options. Do the completion.
2052 (semantic-complete-inline-tag-engine
2053 collector
2054 (funcall semantic-complete-inline-analyzer-displayor-class
2055 "inline displayor")
2056 ;;(semantic-displayor-tooltip "simple")
2057 (oref context buffer)
2058 (car (oref context bounds))
2059 (cdr (oref context bounds))
2060 ))
2061 )))
2062
2063 (defcustom semantic-complete-inline-analyzer-idle-displayor-class
2064 'semantic-displayor-ghost
2065 "*Class for displayor to use with inline completion at idle time."
2066 :group 'semantic
2067 :type semantic-complete-inline-custom-type
2068 )
2069
2070 (defun semantic-complete-inline-analyzer-idle (context)
2071 "Complete a symbol name by name based on the current context for idle time.
2072 CONTEXT is the semantic analyzer context to start with.
2073 This function is used from `semantic-idle-completions-mode'.
2074
2075 This is the same as `semantic-complete-inline-analyzer', except that
2076 it uses `semantic-complete-inline-analyzer-idle-displayor-class'
2077 to control how completions are displayed.
2078
2079 See `semantic-complete-inline-tag-engine' for details on how
2080 completion works."
2081 (let ((semantic-complete-inline-analyzer-displayor-class
2082 semantic-complete-inline-analyzer-idle-displayor-class))
2083 (semantic-complete-inline-analyzer context)
2084 ))
2085
2086 \f
2087 ;;;###autoload
2088 (defun semantic-complete-jump-local ()
2089 "Jump to a local semantic symbol."
2090 (interactive)
2091 (semantic-error-if-unparsed)
2092 (let ((tag (semantic-complete-read-tag-buffer-deep "Jump to symbol: ")))
2093 (when (semantic-tag-p tag)
2094 (push-mark)
2095 (goto-char (semantic-tag-start tag))
2096 (semantic-momentary-highlight-tag tag)
2097 (message "%S: %s "
2098 (semantic-tag-class tag)
2099 (semantic-tag-name tag)))))
2100
2101 ;;;###autoload
2102 (defun semantic-complete-jump ()
2103 "Jump to a semantic symbol."
2104 (interactive)
2105 (semantic-error-if-unparsed)
2106 (let* ((tag (semantic-complete-read-tag-project "Jump to symbol: ")))
2107 (when (semantic-tag-p tag)
2108 (push-mark)
2109 (semantic-go-to-tag tag)
2110 (switch-to-buffer (current-buffer))
2111 (semantic-momentary-highlight-tag tag)
2112 (message "%S: %s "
2113 (semantic-tag-class tag)
2114 (semantic-tag-name tag)))))
2115
2116 ;;;###autoload
2117 (defun semantic-complete-jump-local-members ()
2118 "Jump to a semantic symbol."
2119 (interactive)
2120 (semantic-error-if-unparsed)
2121 (let* ((tag (semantic-complete-read-tag-local-members "Jump to symbol: ")))
2122 (when (semantic-tag-p tag)
2123 (let ((start (condition-case nil (semantic-tag-start tag)
2124 (error nil))))
2125 (unless start
2126 (error "Tag %s has no location" (semantic-format-tag-prototype tag)))
2127 (push-mark)
2128 (goto-char start)
2129 (semantic-momentary-highlight-tag tag)
2130 (message "%S: %s "
2131 (semantic-tag-class tag)
2132 (semantic-tag-name tag))))))
2133
2134 ;;;###autoload
2135 (defun semantic-complete-analyze-and-replace ()
2136 "Perform prompt completion to do in buffer completion.
2137 `semantic-analyze-possible-completions' is used to determine the
2138 possible values.
2139 The minibuffer is used to perform the completion.
2140 The result is inserted as a replacement of the text that was there."
2141 (interactive)
2142 (let* ((c (semantic-analyze-current-context (point)))
2143 (tag (save-excursion (semantic-complete-read-tag-analyzer "" c))))
2144 ;; Take tag, and replace context bound with its name.
2145 (goto-char (car (oref c bounds)))
2146 (delete-region (point) (cdr (oref c bounds)))
2147 (insert (semantic-tag-name tag))
2148 (message "%S" (semantic-format-tag-summarize tag))))
2149
2150 ;;;###autoload
2151 (defun semantic-complete-analyze-inline ()
2152 "Perform prompt completion to do in buffer completion.
2153 `semantic-analyze-possible-completions' is used to determine the
2154 possible values.
2155 The function returns immediately, leaving the buffer in a mode that
2156 will perform the completion.
2157 Configure `semantic-complete-inline-analyzer-displayor-class' to change
2158 how completion options are displayed."
2159 (interactive)
2160 ;; Only do this if we are not already completing something.
2161 (if (not (semantic-completion-inline-active-p))
2162 (semantic-complete-inline-analyzer
2163 (semantic-analyze-current-context (point))))
2164 ;; Report a message if things didn't startup.
2165 (if (and (called-interactively-p 'any)
2166 (not (semantic-completion-inline-active-p)))
2167 (message "Inline completion not needed.")
2168 ;; Since this is most likely bound to something, and not used
2169 ;; at idle time, throw in a TAB for good measure.
2170 (semantic-complete-inline-TAB)))
2171
2172 ;;;###autoload
2173 (defun semantic-complete-analyze-inline-idle ()
2174 "Perform prompt completion to do in buffer completion.
2175 `semantic-analyze-possible-completions' is used to determine the
2176 possible values.
2177 The function returns immediately, leaving the buffer in a mode that
2178 will perform the completion.
2179 Configure `semantic-complete-inline-analyzer-idle-displayor-class'
2180 to change how completion options are displayed."
2181 (interactive)
2182 ;; Only do this if we are not already completing something.
2183 (if (not (semantic-completion-inline-active-p))
2184 (semantic-complete-inline-analyzer-idle
2185 (semantic-analyze-current-context (point))))
2186 ;; Report a message if things didn't startup.
2187 (if (and (called-interactively-p 'interactive)
2188 (not (semantic-completion-inline-active-p)))
2189 (message "Inline completion not needed.")))
2190
2191 ;;;###autoload
2192 (defun semantic-complete-self-insert (arg)
2193 "Like `self-insert-command', but does completion afterwards.
2194 ARG is passed to `self-insert-command'. If ARG is nil,
2195 use `semantic-complete-analyze-inline' to complete."
2196 (interactive "p")
2197 ;; If we are already in a completion scenario, exit now, and then start over.
2198 (semantic-complete-inline-exit)
2199
2200 ;; Insert the key
2201 (self-insert-command arg)
2202
2203 ;; Prepare for doing completion, but exit quickly if there is keyboard
2204 ;; input.
2205 (when (save-window-excursion
2206 (save-excursion
2207 (and (not (semantic-exit-on-input 'csi
2208 (semantic-fetch-tags)
2209 (semantic-throw-on-input 'csi)
2210 nil))
2211 (= arg 1)
2212 (not (semantic-exit-on-input 'csi
2213 (semantic-analyze-current-context)
2214 (semantic-throw-on-input 'csi)
2215 nil)))))
2216 (condition-case nil
2217 (semantic-complete-analyze-inline)
2218 ;; Ignore errors. Seems likely that we'll get some once in a while.
2219 (error nil))
2220 ))
2221
2222 ;;;###autoload
2223 (defun semantic-complete-inline-project ()
2224 "Perform inline completion for any symbol in the current project.
2225 `semantic-analyze-possible-completions' is used to determine the
2226 possible values.
2227 The function returns immediately, leaving the buffer in a mode that
2228 will perform the completion."
2229 (interactive)
2230 ;; Only do this if we are not already completing something.
2231 (if (not (semantic-completion-inline-active-p))
2232 (semantic-complete-inline-tag-project))
2233 ;; Report a message if things didn't startup.
2234 (if (and (called-interactively-p 'interactive)
2235 (not (semantic-completion-inline-active-p)))
2236 (message "Inline completion not needed."))
2237 )
2238
2239 (provide 'semantic/complete)
2240
2241 ;; Local variables:
2242 ;; generated-autoload-file: "loaddefs.el"
2243 ;; generated-autoload-load-name: "semantic/complete"
2244 ;; End:
2245
2246 ;;; semantic/complete.el ends here