2009-08-30 14:37:55 +00:00
|
|
|
;;; semantic/db-mode.el --- Semanticdb Minor Mode
|
|
|
|
|
|
|
|
;; Copyright (C) 2008, 2009 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
;; Author: Eric M. Ludlam <eric@siege-engine.com>
|
|
|
|
|
|
|
|
;; 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:
|
|
|
|
;;
|
|
|
|
;; Major mode for managing Semantic Databases automatically.
|
|
|
|
|
|
|
|
(require 'semantic/db)
|
|
|
|
;;; Code:
|
|
|
|
|
cedet/semantic/db-debug.el: Don't require semantic/db-mode, since
semanticdb-current-database and semanticdb-current-table are now in
semantic/db.el.
cedet/semantic/db-ebrowse.el: Don't require semantic/db-mode, since
semanticdb-current-database and semanticdb-current-table are now in
semantic/db.el.
cedet/semantic/db-el.el: Require semantic/lex-spp.
Require semantic/db instead of semantic/db-search.
cedet/semantic/db-file.el: Declare inversion-test and
data-debug-insert-thing.
(semanticdb-load-database): Load inversion only if necessary.
cedet/semantic/db-find.el: Autoload semanticdb-find-default-throttle.
Defvar data-debug-thing-alist, and ede-current-project.
Declare data-debug-insert-stuff-list, data-debug-insert-tag-list,
semantic-scope-reset-cache, and semanticdb-typecache-notify-reset.
Require semantic/tag-file, and semantic/sort.
(semantic-reset): Require semantic/scope.
(semanticdb-partial-synchronize): Require semantic/db-typecache.
(semanticdb-find-table-for-include) Move up to avoid compiler warning.
cedet/semantic/db-global.el: Declare data-debug-new-buffer and
data-debug-insert-thing.
(semanticdb-project-database-global) Move up to avoid compiler warning.
cedet/semantic/db-javascript.el: Fix provide statement.
Require semantic/db-find instead of semantic/db-search.
cedet/semantic/db-mode.el: Declare semantic-lex-spp-set-dynamic-table.
(semanticdb-current-database, semanticdb-current-table): Move into
semantic/db.el
cedet/semantic/db-ref.el: Require eieio, semantic/db, and semantic/util.
Declare data-debug-new-buffer and data-debug-insert-object-slots.
Defvar semantic-case-fold. Require semantic/find when compiling.
cedet/semantic/db-typecache.el: Require semantic/tag-ls,
semantic/analyze/fcn, and semantic/scope. Declare
data-debug-insert-thing and data-debug-new-buffer.
cedet/semantic/db.el (semanticdb-search-results-table): Move class
definition here from semantic/db-search.el.
(semanticdb-current-database, semanticdb-current-table) Move variable
definitions here from semantic/db-mode.el.
2009-08-31 00:45:41 +00:00
|
|
|
;; Moved into semantic/db.el:
|
|
|
|
;; (defvar semanticdb-current-database nil
|
|
|
|
;; "For a given buffer, this is the currently active database.")
|
|
|
|
;; (make-variable-buffer-local 'semanticdb-current-database)
|
|
|
|
|
|
|
|
;; (defvar semanticdb-current-table nil
|
|
|
|
;; "For a given buffer, this is the currently active database table.")
|
|
|
|
;; (make-variable-buffer-local 'semanticdb-current-table)
|
|
|
|
|
|
|
|
(declare-function semantic-lex-spp-set-dynamic-table "semantic/lex-spp")
|
2009-08-30 14:37:55 +00:00
|
|
|
|
|
|
|
;;; Start/Stop database use
|
|
|
|
;;
|
|
|
|
(defvar semanticdb-hooks
|
2009-09-26 17:47:11 +00:00
|
|
|
'((semanticdb-semantic-init-hook-fcn semantic-init-db-hook)
|
2009-08-30 14:37:55 +00:00
|
|
|
(semanticdb-synchronize-table semantic-after-toplevel-cache-change-hook)
|
|
|
|
(semanticdb-partial-synchronize-table semantic-after-partial-cache-change-hook)
|
|
|
|
(semanticdb-revert-hook before-revert-hook)
|
|
|
|
(semanticdb-kill-hook kill-buffer-hook)
|
|
|
|
(semanticdb-kill-hook change-major-mode-hook) ;; Not really a kill, but we need the same effect.
|
|
|
|
(semanticdb-kill-emacs-hook kill-emacs-hook)
|
|
|
|
(semanticdb-save-all-db-idle auto-save-hook)
|
|
|
|
)
|
|
|
|
"List of hooks and values to add/remove when configuring semanticdb.")
|
|
|
|
|
|
|
|
;;; SEMANTICDB-MODE
|
|
|
|
;;
|
2009-09-05 01:00:36 +00:00
|
|
|
;;;###autoload
|
2009-08-30 14:37:55 +00:00
|
|
|
(defun semanticdb-minor-mode-p ()
|
|
|
|
"Return non-nil if `semanticdb-minor-mode' is active."
|
|
|
|
(member (car (car semanticdb-hooks))
|
|
|
|
(symbol-value (car (cdr (car semanticdb-hooks))))))
|
|
|
|
|
2009-09-07 16:28:35 +00:00
|
|
|
;;;###autoload
|
2009-09-27 21:35:46 +00:00
|
|
|
(define-minor-mode global-semanticdb-minor-mode
|
|
|
|
"Toggle Semantic DB mode.
|
|
|
|
With ARG, turn Semantic DB mode on if ARG is positive, off otherwise.
|
|
|
|
|
|
|
|
In Semantic DB mode, Semantic parsers store results in a
|
|
|
|
database, which can be saved for future Emacs sessions."
|
|
|
|
:global t
|
|
|
|
:group 'semantic
|
|
|
|
(if global-semanticdb-minor-mode
|
|
|
|
;; Enable
|
|
|
|
(dolist (elt semanticdb-hooks)
|
|
|
|
(add-hook (cadr elt) (car elt)))
|
|
|
|
;; Disable
|
|
|
|
(dolist (elt semanticdb-hooks)
|
|
|
|
(add-hook (cadr elt) (car elt)))))
|
|
|
|
|
|
|
|
(defvaralias 'semanticdb-mode-hook 'global-semanticdb-minor-mode-hook)
|
|
|
|
(defvaralias 'semanticdb-global-mode 'global-semanticdb-minor-mode)
|
|
|
|
(semantic-varalias-obsolete 'semanticdb-mode-hooks
|
|
|
|
'global-semanticdb-minor-mode-hook)
|
|
|
|
|
2009-08-30 14:37:55 +00:00
|
|
|
|
|
|
|
(defun semanticdb-toggle-global-mode ()
|
|
|
|
"Toggle use of the Semantic Database feature.
|
|
|
|
Update the environment of Semantic enabled buffers accordingly."
|
|
|
|
(interactive)
|
|
|
|
(if (semanticdb-minor-mode-p)
|
|
|
|
;; Save databases before disabling semanticdb.
|
|
|
|
(semanticdb-save-all-db))
|
|
|
|
;; Toggle semanticdb minor mode.
|
|
|
|
(global-semanticdb-minor-mode))
|
|
|
|
|
|
|
|
;;; Hook Functions:
|
|
|
|
;;
|
|
|
|
;; Functions used in hooks to keep SemanticDB operating.
|
|
|
|
;;
|
|
|
|
(defun semanticdb-semantic-init-hook-fcn ()
|
2009-09-26 17:47:11 +00:00
|
|
|
"Function saved in `semantic-init-db-hook'.
|
2009-08-30 14:37:55 +00:00
|
|
|
Sets up the semanticdb environment."
|
|
|
|
;; Only initialize semanticdb if we have a file name.
|
|
|
|
;; There is no reason to cache a tag table if there is no
|
|
|
|
;; way to load it back in later.
|
|
|
|
(when (buffer-file-name)
|
|
|
|
(let* ((ans (semanticdb-create-table-for-file (buffer-file-name)))
|
|
|
|
(cdb (car ans))
|
|
|
|
(ctbl (cdr ans))
|
|
|
|
)
|
|
|
|
;; Get the current DB for this directory
|
|
|
|
(setq semanticdb-current-database cdb)
|
|
|
|
;; We set the major mode because we know what it is.
|
|
|
|
(oset ctbl major-mode major-mode)
|
|
|
|
;; Local state
|
|
|
|
(setq semanticdb-current-table ctbl)
|
|
|
|
;; Try to swap in saved tags
|
|
|
|
(if (or (not (slot-boundp ctbl 'tags)) (not (oref ctbl tags))
|
|
|
|
(/= (or (oref ctbl pointmax) 0) (point-max))
|
|
|
|
)
|
|
|
|
(semantic-clear-toplevel-cache)
|
|
|
|
;; Unmatched syntax
|
|
|
|
(condition-case nil
|
|
|
|
(semantic-set-unmatched-syntax-cache
|
|
|
|
(oref ctbl unmatched-syntax))
|
|
|
|
(unbound-slot
|
|
|
|
;; Old version of the semanticdb table can miss the unmatched
|
|
|
|
;; syntax slot. If so, just clear the unmatched syntax cache.
|
|
|
|
(semantic-clear-unmatched-syntax-cache)
|
|
|
|
;; Make sure it has a value.
|
|
|
|
(oset ctbl unmatched-syntax nil)
|
|
|
|
))
|
|
|
|
;; Keep lexical tables up to date. Don't load
|
|
|
|
;; semantic-spp if it isn't needed.
|
|
|
|
(let ((lt (oref ctbl lexical-table)))
|
|
|
|
(when lt
|
|
|
|
(require 'semantic/lex-spp)
|
|
|
|
(semantic-lex-spp-set-dynamic-table lt)))
|
|
|
|
;; Set the main tag cache.
|
|
|
|
;; This must happen after setting up buffer local variables
|
|
|
|
;; since this will turn around and re-save those variables.
|
|
|
|
(semantic--set-buffer-cache (oref ctbl tags))
|
|
|
|
;; Don't need it to be dirty. Set dirty due to hooks from above.
|
|
|
|
(oset ctbl dirty nil) ;; Special case here.
|
|
|
|
(oset ctbl buffer (current-buffer))
|
|
|
|
;; Bind into the buffer.
|
|
|
|
(semantic--tag-link-cache-to-buffer)
|
|
|
|
)
|
|
|
|
)))
|
|
|
|
|
|
|
|
(defun semanticdb-revert-hook ()
|
|
|
|
"Hook run before a revert buffer.
|
|
|
|
We can't track incremental changes due to a revert, so just clear the cache.
|
|
|
|
This will prevent the next batch of hooks from wasting time parsing things
|
|
|
|
that don't need to be parsed."
|
|
|
|
(if (and (semantic-active-p)
|
|
|
|
semantic--buffer-cache
|
|
|
|
semanticdb-current-table)
|
|
|
|
(semantic-clear-toplevel-cache)))
|
|
|
|
|
|
|
|
(defun semanticdb-kill-hook ()
|
|
|
|
"Function run when a buffer is killed.
|
|
|
|
If there is a semantic cache, slurp out the overlays, and store
|
|
|
|
it in our database. If that buffer has no cache, ignore it, we'll
|
|
|
|
handle it later if need be."
|
|
|
|
(when (and (semantic-active-p)
|
|
|
|
semantic--buffer-cache
|
|
|
|
semanticdb-current-table)
|
|
|
|
|
|
|
|
;; Try to get a fast update.
|
|
|
|
(semantic-fetch-tags-fast)
|
|
|
|
|
|
|
|
;; If the buffer is in a bad state, don't save anything...
|
|
|
|
(if (semantic-parse-tree-needs-rebuild-p)
|
|
|
|
;; If this is the case, don't save anything.
|
|
|
|
(progn
|
|
|
|
(semantic-clear-toplevel-cache)
|
|
|
|
(oset semanticdb-current-table pointmax 0)
|
|
|
|
(oset semanticdb-current-table fsize 0)
|
|
|
|
(oset semanticdb-current-table lastmodtime nil)
|
|
|
|
)
|
|
|
|
;; We have a clean buffer, save it off.
|
|
|
|
(condition-case nil
|
|
|
|
(progn
|
|
|
|
(semantic--tag-unlink-cache-from-buffer)
|
|
|
|
;; Set pointmax only if we had some success in the unlink.
|
|
|
|
(oset semanticdb-current-table pointmax (point-max))
|
|
|
|
(let ((fattr (file-attributes
|
|
|
|
(semanticdb-full-filename
|
|
|
|
semanticdb-current-table))))
|
|
|
|
(oset semanticdb-current-table fsize (nth 7 fattr))
|
|
|
|
(oset semanticdb-current-table lastmodtime (nth 5 fattr))
|
|
|
|
(oset semanticdb-current-table buffer nil)
|
|
|
|
))
|
|
|
|
;; If this messes up, just clear the system
|
|
|
|
(error
|
|
|
|
(semantic-clear-toplevel-cache)
|
|
|
|
(message "semanticdb: Failed to deoverlay tag cache.")))
|
|
|
|
)
|
|
|
|
))
|
|
|
|
|
|
|
|
(defun semanticdb-kill-emacs-hook ()
|
|
|
|
"Function called when Emacs is killed.
|
|
|
|
Save all the databases."
|
|
|
|
(semanticdb-save-all-db))
|
|
|
|
|
|
|
|
;;; SYNCHRONIZATION HOOKS
|
|
|
|
;;
|
|
|
|
(defun semanticdb-synchronize-table (new-table)
|
|
|
|
"Function run after parsing.
|
|
|
|
Argument NEW-TABLE is the new table of tags."
|
|
|
|
(when semanticdb-current-table
|
|
|
|
(semanticdb-synchronize semanticdb-current-table new-table)))
|
|
|
|
|
|
|
|
(defun semanticdb-partial-synchronize-table (new-table)
|
|
|
|
"Function run after parsing.
|
|
|
|
Argument NEW-TABLE is the new table of tags."
|
|
|
|
(when semanticdb-current-table
|
|
|
|
(semanticdb-partial-synchronize semanticdb-current-table new-table)))
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'semantic/db-mode)
|
|
|
|
|
2009-09-05 01:00:36 +00:00
|
|
|
;; Local variables:
|
|
|
|
;; generated-autoload-file: "loaddefs.el"
|
|
|
|
;; generated-autoload-feature: semantic/loaddefs
|
|
|
|
;; generated-autoload-load-name: "semantic/db-mode"
|
|
|
|
;; End:
|
|
|
|
|
2009-08-30 14:37:55 +00:00
|
|
|
;;; semantic/db-mode.el ends here
|