1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
;;; semantic/util.el --- Utilities for use with semantic tag tables
;;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
;;; 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; Keywords: syntax
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Semantic utility API for use with semantic tag tables.
;;
(require 'semantic)
(eval-when-compile
(require 'semantic/db-find)
;; For semantic-find-tags-by-class, semantic--find-tags-by-function,
;; and semantic-brute-find-tag-standard:
(require 'semantic/find))
(declare-function data-debug-insert-stuff-list "data-debug")
(declare-function data-debug-insert-thing "data-debug")
(declare-function semantic-ctxt-current-symbol-and-bounds "semantic/ctxt")
;;; Code:
(defvar semantic-type-relation-separator-character '(".")
"Character strings used to separate a parent/child relationship.
This list of strings are used for displaying or finding separators
in variable field dereferencing. The first character will be used for
display. In C, a type field is separated like this: \"type.field\"
thus, the character is a \".\". In C, and additional value of \"->\"
would be in the list, so that \"type->field\" could be found.")
(make-variable-buffer-local 'semantic-type-relation-separator-character)
(defvar semantic-equivalent-major-modes nil
"List of major modes which are considered equivalent.
Equivalent modes share a parser, and a set of override methods.
A value of nil means that the current major mode is the only one.")
(make-variable-buffer-local 'semantic-equivalent-major-modes)
;; These semanticdb calls will throw warnings in the byte compiler.
;; Doing the right thing to make them available at compile time
;; really messes up the compilation sequence.
(defun semantic-file-tag-table (file)
"Return a tag table for FILE.
If it is loaded, return the stream after making sure it's ok.
If FILE is not loaded, check to see if `semanticdb' feature exists,
and use it to get tags from files not in memory.
If FILE is not loaded, and semanticdb is not available, find the file
and parse it."
(save-match-data
(if (find-buffer-visiting file)
(with-current-buffer (find-buffer-visiting file)
(semantic-fetch-tags))
;; File not loaded
(if (and (require 'semantic/db-mode)
(semanticdb-minor-mode-p))
;; semanticdb is around, use it.
(semanticdb-file-stream file)
;; Get the stream ourselves.
(with-current-buffer (find-file-noselect file)
(semantic-fetch-tags))))))
(semantic-alias-obsolete 'semantic-file-token-stream
'semantic-file-tag-table "23.2")
(defun semantic-something-to-tag-table (something)
"Convert SOMETHING into a semantic tag table.
Something can be a tag with a valid BUFFER property, a tag table, a
buffer, or a filename. If SOMETHING is nil return nil."
(cond
;; A list of tags
((and (listp something)
(semantic-tag-p (car something)))
something)
;; A buffer
((bufferp something)
(with-current-buffer something
(semantic-fetch-tags)))
;; A Tag: Get that tag's buffer
((and (semantic-tag-with-position-p something)
(semantic-tag-in-buffer-p something))
(with-current-buffer (semantic-tag-buffer something)
(semantic-fetch-tags)))
;; Tag with a file name in it
((and (semantic-tag-p something)
(semantic-tag-file-name something)
(file-exists-p (semantic-tag-file-name something)))
(semantic-file-tag-table
(semantic-tag-file-name something)))
;; A file name
((and (stringp something)
(file-exists-p something))
(semantic-file-tag-table something))
;; A Semanticdb table
((and (featurep 'semantic/db)
(semanticdb-minor-mode-p)
(semanticdb-abstract-table-child-p something))
(semanticdb-refresh-table something)
(semanticdb-get-tags something))
;; Semanticdb find-results
((and (featurep 'semantic/db)
(semanticdb-minor-mode-p)
(require 'semantic/db-find)
(semanticdb-find-results-p something))
(semanticdb-strip-find-results something))
;; NOTE: This commented out since if a search result returns
;; empty, that empty would turn into everything on the next search.
;; Use the current buffer for nil
;; ((null something)
;; (semantic-fetch-tags))
;; don't know what it is
(t nil)))
(semantic-alias-obsolete 'semantic-something-to-stream
'semantic-something-to-tag-table "23.2")
;;; Completion APIs
;;
;; These functions provide minibuffer reading/completion for lists of
;; nonterminals.
(defvar semantic-read-symbol-history nil
"History for a symbol read.")
(defun semantic-read-symbol (prompt &optional default stream filter)
"Read a symbol name from the user for the current buffer.
PROMPT is the prompt to use.
Optional arguments:
DEFAULT is the default choice. If no default is given, one is read
from under point.
STREAM is the list of tokens to complete from.
FILTER is provides a filter on the types of things to complete.
FILTER must be a function to call on each element."
(if (not default) (setq default (thing-at-point 'symbol)))
(if (not stream) (setq stream (semantic-fetch-tags)))
(setq stream
(if filter
(semantic--find-tags-by-function filter stream)
(semantic-brute-find-tag-standard stream)))
(if (and default (string-match ":" prompt))
(setq prompt
(concat (substring prompt 0 (match-end 0))
" (default: " default ") ")))
(completing-read prompt stream nil t ""
'semantic-read-symbol-history
default))
(defun semantic-read-variable (prompt &optional default stream)
"Read a variable name from the user for the current buffer.
PROMPT is the prompt to use.
Optional arguments:
DEFAULT is the default choice. If no default is given, one is read
from under point.
STREAM is the list of tokens to complete from."
(semantic-read-symbol
prompt default
(or (semantic-find-tags-by-class
'variable (or stream (current-buffer)))
(error "No local variables"))))
(defun semantic-read-function (prompt &optional default stream)
"Read a function name from the user for the current buffer.
PROMPT is the prompt to use.
Optional arguments:
DEFAULT is the default choice. If no default is given, one is read
from under point.
STREAM is the list of tags to complete from."
(semantic-read-symbol
prompt default
(or (semantic-find-tags-by-class
'function (or stream (current-buffer)))
(error "No local functions"))))
(defun semantic-read-type (prompt &optional default stream)
"Read a type name from the user for the current buffer.
PROMPT is the prompt to use.
Optional arguments:
DEFAULT is the default choice. If no default is given, one is read
from under point.
STREAM is the list of tags to complete from."
(semantic-read-symbol
prompt default
(or (semantic-find-tags-by-class
'type (or stream (current-buffer)))
(error "No local types"))))
;;; Interactive Functions for
;;
(defun semantic-describe-tag (&optional tag)
"Describe TAG in the minibuffer.
If TAG is nil, describe the tag under the cursor."
(interactive)
(if (not tag) (setq tag (semantic-current-tag)))
(semantic-fetch-tags)
(if tag (message (semantic-format-tag-summarize tag))))
;;; Putting keys on tags.
;;
(defun semantic-add-label (label value &optional tag)
"Add a LABEL with VALUE on TAG.
If TAG is not specified, use the tag at point."
(interactive "sLabel: \nXValue (eval): ")
(if (not tag)
(progn
(semantic-fetch-tags)
(setq tag (semantic-current-tag))))
(semantic--tag-put-property tag (intern label) value)
(message "Added label %s with value %S" label value))
(defun semantic-show-label (label &optional tag)
"Show the value of LABEL on TAG.
If TAG is not specified, use the tag at point."
(interactive "sLabel: ")
(if (not tag)
(progn
(semantic-fetch-tags)
(setq tag (semantic-current-tag))))
(message "%s: %S" label (semantic--tag-get-property tag (intern label))))
;;; Hacks
;;
;; Some hacks to help me test these functions
(defun semantic-describe-buffer-var-helper (varsym buffer)
"Display to standard out the value of VARSYM in BUFFER."
(require 'data-debug)
(let ((value (with-current-buffer buffer
(symbol-value varsym))))
(cond
((and (consp value)
(< (length value) 10))
;; Draw the list of things in the list.
(princ (format " %s: #<list of %d items>\n"
varsym (length value)))
(data-debug-insert-stuff-list
value " " )
)
(t
;; Else do a one-liner.
(data-debug-insert-thing
value " " (concat " " (symbol-name varsym) ": "))
))))
(defun semantic-describe-buffer ()
"Describe the semantic environment for the current buffer."
(interactive)
(let ((buff (current-buffer))
)
(with-output-to-temp-buffer (help-buffer)
(help-setup-xref (list #'semantic-describe-buffer)
(called-interactively-p 'interactive))
(with-current-buffer standard-output
(princ "Semantic Configuration in ")
(princ (buffer-name buff))
(princ "\n\n")
(princ "Buffer specific configuration items:\n")
(let ((vars '(major-mode
semantic-case-fold
semantic-tag-expand-function
semantic-parser-name
semantic-parse-tree-state
semantic-lex-analyzer
semantic-lex-reset-hooks
semantic-lex-syntax-modifications
)))
(dolist (V vars)
(semantic-describe-buffer-var-helper V buff)))
(princ "\nGeneral configuration items:\n")
(let ((vars '(semantic-inhibit-functions
semantic-init-hook
semantic-init-db-hook
semantic-unmatched-syntax-hook
semantic--before-fetch-tags-hook
semantic-after-toplevel-bovinate-hook
semantic-after-toplevel-cache-change-hook
semantic-before-toplevel-cache-flush-hook
semantic-dump-parse
semantic-type-relation-separator-character
semantic-command-separation-character
)))
(dolist (V vars)
(semantic-describe-buffer-var-helper V buff)))
(princ "\n\n")
(mode-local-describe-bindings-2 buff)
)))
)
(defun semantic-assert-valid-token (tok)
"Assert that TOK is a valid token."
(if (semantic-tag-p tok)
(if (semantic-tag-with-position-p tok)
(let ((o (semantic-tag-overlay tok)))
(if (and (semantic-overlay-p o)
(not (semantic-overlay-live-p o)))
(let ((debug-on-error t))
(error "Tag %s is invalid!" (semantic-tag-name tok)))
;; else, tag is OK.
))
;; Positionless tags are also ok.
)
(let ((debug-on-error t))
(error "Not a semantic tag: %S" tok))))
(defun semantic-sanity-check (&optional cache over notfirst)
"Perform a sanity check on the current buffer.
The buffer's set of overlays, and those overlays found via the cache
are verified against each other.
CACHE, and OVER are the semantic cache, and the overlay list.
NOTFIRST indicates that this was not the first call in the recursive use."
(interactive)
(if (and (not cache) (not over) (not notfirst))
(setq cache semantic--buffer-cache
over (semantic-overlays-in (point-min) (point-max))))
(while cache
(let ((chil (semantic-tag-components-with-overlays (car cache))))
(if (not (memq (semantic-tag-overlay (car cache)) over))
(message "Tag %s not in buffer overlay list."
(semantic-format-tag-concise-prototype (car cache))))
(setq over (delq (semantic-tag-overlay (car cache)) over))
(setq over (semantic-sanity-check chil over t))
(setq cache (cdr cache))))
(if (not notfirst)
;; Strip out all overlays which aren't semantic overlays
(let ((o nil))
(while over
(when (and (semantic-overlay-get (car over) 'semantic)
(not (eq (semantic-overlay-get (car over) 'semantic)
'unmatched)))
(setq o (cons (car over) o)))
(setq over (cdr over)))
(when (called-interactively-p 'any)
(message "Remaining overlays: %S" o))))
over)
;;; Interactive commands (from Senator).
;; The Senator library from upstream CEDET is not included in the
;; built-in version of Emacs. The plan is to fold it into the
;; different parts of CEDET and Emacs, so that it works
;; "transparently". Here are some interactive commands based on
;; Senator.
;; Symbol completion
(defun semantic-find-tag-for-completion (prefix)
"Find all tags with name starting with PREFIX.
This uses `semanticdb' when available."
(let (result ctxt)
;; Try the Semantic analyzer
(condition-case nil
(and (featurep 'semantic/analyze)
(setq ctxt (semantic-analyze-current-context))
(setq result (semantic-analyze-possible-completions ctxt)))
(error nil))
(or result
;; If the analyzer fails, then go into boring completion.
(if (and (featurep 'semantic/db)
(semanticdb-minor-mode-p)
(require 'semantic/db-find))
(semanticdb-fast-strip-find-results
(semanticdb-deep-find-tags-for-completion prefix))
(semantic-deep-find-tags-for-completion prefix (current-buffer))))))
(defun semantic-complete-symbol (&optional predicate)
"Complete the symbol under point, using Semantic facilities.
When called from a program, optional arg PREDICATE is a predicate
determining which symbols are considered."
(interactive)
(require 'semantic/ctxt)
(let* ((start (car (nth 2 (semantic-ctxt-current-symbol-and-bounds
(point)))))
(pattern (regexp-quote (buffer-substring start (point))))
collection completion)
(when start
(if (and semantic--completion-cache
(eq (nth 0 semantic--completion-cache) (current-buffer))
(= (nth 1 semantic--completion-cache) start)
(save-excursion
(goto-char start)
(looking-at (nth 3 semantic--completion-cache))))
;; Use cached value.
(setq collection (nthcdr 4 semantic--completion-cache))
;; Perform new query.
(setq collection (semantic-find-tag-for-completion pattern))
(setq semantic--completion-cache
(append (list (current-buffer) start 0 pattern)
collection))))
(if (null collection)
(let ((str (if pattern (format " for \"%s\"" pattern) "")))
(if (window-minibuffer-p (selected-window))
(minibuffer-message (format " [No completions%s]" str))
(message "Can't find completion%s" str)))
(setq completion (try-completion pattern collection predicate))
(if (string= pattern completion)
(let ((list (all-completions pattern collection predicate)))
(setq list (sort list 'string<))
(if (> (length list) 1)
(with-output-to-temp-buffer "*Completions*"
(display-completion-list list pattern))
;; Bury any out-of-date completions buffer.
(let ((win (get-buffer-window "*Completions*" 0)))
(if win (with-selected-window win (bury-buffer))))))
;; Exact match
(delete-region start (point))
(insert completion)
;; Bury any out-of-date completions buffer.
(let ((win (get-buffer-window "*Completions*" 0)))
(if win (with-selected-window win (bury-buffer))))))))
(provide 'semantic/util)
;;; Minor modes
;;
(require 'semantic/util-modes)
;; arch-tag: eaa7808d-83b9-43fe-adf0-4fb742dcb956
;;; semantic/util.el ends here
|