mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-08 13:19:36 +00:00

Remove a few more redundant `:group` args. Make use of lexical scoping to replace `(lambda...) with proper closures. * lisp/cedet/ede/custom.el (ede-project-sort-targets-list): Use `dotimes` and replace `(lambda..) with closures. * lisp/cedet/ede/proj-comp.el (proj-comp-insert-variable-once): * lisp/cedet/ede/pmake.el (ede-pmake-insert-variable-once): Remove unused var `addcr`. * lisp/cedet/semantic/complete.el: Use lexical-binding. (semantic-displayer-show-request): Remove unused var `typing-count`. Use `equal` instead of `stringp+string=`. * lisp/cedet/semantic/db-ebrowse.el: Use lexical-binding. (semanticdb-create-ebrowse-database): Remove unused vars `mma` and `regexp`. (semanticdb-ebrowse-strip-trees): Remove unused var `class` and `filename`. (semanticdb-ebrowse-add-globals-to-table): Remove unused var `fname`. * lisp/cedet/semantic/db-find.el: Use lexical-binding. (semanticdb-find-adebug-insert-scanned-tag-cons): Remove always-nil var `tip`. * lisp/cedet/semantic/db-global.el: Use lexical-binding. (semanticdb-enable-gnu-global-databases): Access local var `semantic--ih` by sticking its value in the code passed to `eval` rather than by dynamic scoping. * lisp/cedet/semantic/db-typecache.el: Use lexical-binding. (semanticdb-db-typecache-dump): Remove unused var `junk`. * lisp/cedet/semantic/debug.el: Use lexical-binding. * lisp/cedet/semantic/dep.el: Use lexical-binding. (semantic-add-system-include): Avoid `add-to-list` on a local variable. Access local var `value` by sticking its value in the code passed to `eval` rather than by dynamic scoping. (semantic-remove-system-include): Don't use `delete` on a list received from elsewhere. Access local var `value` by sticking its value in the code passed to `eval` rather than by dynamic scoping. (semantic-reset-system-include): Simplify a bit. * lisp/cedet/semantic/ede-grammar.el: Use lexical-binding. (project-compile-target): Remove unused vars `csrc` and `cb`. Use `cl-incf`. Remove apparently unneeded `with-no-warnings`. * lisp/cedet/semantic/edit.el: Use lexical-binding. (semantic-edits-change-over-tags): Remove unused var `inner-start`. (semantic-edits-incremental-parser-1): Silence warnings about intentionally unused var `last-cond`. * lisp/cedet/semantic/fw.el: Use lexical-binding. (recentf-exclude, semantic-init-hook, ede-auto-add-method) (flymake-start-syntax-check-on-find-file, auto-insert): Declare vars. * lisp/cedet/semantic/ia-sb.el: Use lexical-binding. (semantic-ia-sb-key-map): Move initialization into declaration. (semantic-ia-sb-more-buttons): Remove unused var `idx`. (semantic-ia-sb-line-path): Simplify `if` -> `or`. * lisp/cedet/semantic/idle.el (semantic-idle-breadcrumbs--tag-function): Make it a function returning a closure. * lisp/cedet/semantic/senator.el: Use lexical-binding. (senator-search-set-tag-class-filter): Replace `(lambda..) with a closure. * lisp/cedet/semantic/sort.el: Use lexical-binding. (semanticdb-search-system-databases): Declare var. (semantic-tag-external-member-children-default): Replace `(lambda..) with a closure. * lisp/cedet/semantic/tag-ls.el: Use lexical-binding. (semantic-tag-protection-default, semantic-tag-abstract-p-default): Simplify with `member`. * lisp/cedet/semantic/util.el: Use lexical-binding. (semantic-something-to-tag-table): Declare function `semanticdb-abstract-table--eieio-childp` called via `cl-typep`. * lisp/cedet/semantic/bovine/scm.el (semantic-default-scheme-setup): Remove duplicate setting of `imenu-create-index-function`. * lisp/cedet/semantic/decorate/mode.el (semantic-decoration-build-style-menu): Replace `(lambda..) with a closure. * lisp/cedet/srecode/cpp.el (srecode-semantic-apply-tag-to-dict): Remove always-t variable `member`. * lisp/cedet/srecode/mode.el (srecode-minor-mode-templates-menu): Replace `(lambda..) with a closure. Use `push`. * lisp/cedet/semantic/chart.el: Use lexical-binding. * lisp/cedet/semantic/db-debug.el: Use lexical-binding. * lisp/cedet/semantic/db-el.el: Use lexical-binding. * lisp/cedet/semantic/db-file.el: Use lexical-binding. * lisp/cedet/semantic/db-javascript.el: Use lexical-binding. * lisp/cedet/semantic/db-mode.el: Use lexical-binding. * lisp/cedet/semantic/db-ref.el: Use lexical-binding. * lisp/cedet/semantic/decorate.el: Use lexical-binding. * lisp/cedet/semantic/doc.el: Use lexical-binding. * lisp/cedet/semantic/find.el: Use lexical-binding. * lisp/cedet/semantic/format.el: Use lexical-binding. * lisp/cedet/semantic/html.el: Use lexical-binding. * lisp/cedet/semantic/ia.el: Use lexical-binding. * lisp/cedet/semantic/imenu.el: Use lexical-binding. * lisp/cedet/semantic/java.el: Use lexical-binding. * lisp/cedet/semantic/mru-bookmark.el: Use lexical-binding. * lisp/cedet/semantic/symref.el: Use lexical-binding. * lisp/cedet/semantic/tag-file.el: Use lexical-binding. * lisp/cedet/semantic/tag-write.el: Use lexical-binding. * lisp/cedet/semantic/texi.el: Use lexical-binding. * lisp/cedet/semantic/util-modes.el: Use lexical-binding.
216 lines
7.3 KiB
EmacsLisp
216 lines
7.3 KiB
EmacsLisp
;;; semantic/db-mode.el --- Semanticdb Minor Mode -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2008-2021 Free Software Foundation, Inc.
|
|
|
|
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
|
|
|
;; 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 <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
;;
|
|
;; Major mode for managing Semantic Databases automatically.
|
|
|
|
;;; Code:
|
|
|
|
(require 'semantic/db)
|
|
|
|
(declare-function semantic-lex-spp-set-dynamic-table "semantic/lex-spp")
|
|
|
|
;;; Start/Stop database use
|
|
;;
|
|
(defvar semanticdb-hooks
|
|
'((semanticdb-semantic-init-hook-fcn semantic-init-db-hook)
|
|
(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)
|
|
)
|
|
"List of hooks and values to add/remove when configuring semanticdb.")
|
|
|
|
;;; SEMANTICDB-MODE
|
|
;;
|
|
;;;###autoload
|
|
(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))))))
|
|
|
|
(defvaralias 'semanticdb-mode-hook 'global-semanticdb-minor-mode-hook)
|
|
(defvaralias 'semanticdb-global-mode 'global-semanticdb-minor-mode)
|
|
|
|
;;;###autoload
|
|
(define-minor-mode global-semanticdb-minor-mode
|
|
"Toggle Semantic DB mode.
|
|
|
|
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)
|
|
(remove-hook (cadr elt) (car elt)))))
|
|
|
|
(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 'toggle))
|
|
|
|
;;; Hook Functions:
|
|
;;
|
|
;; Functions used in hooks to keep SemanticDB operating.
|
|
;;
|
|
(defun semanticdb-semantic-init-hook-fcn ()
|
|
"Function saved in `semantic-init-db-hook'.
|
|
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)
|
|
(oset ctbl buffer (current-buffer))
|
|
;; 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.
|
|
;; 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 (file-attribute-size fattr))
|
|
(oset semanticdb-current-table lastmodtime
|
|
(file-attribute-modification-time 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)
|
|
|
|
;; Local variables:
|
|
;; generated-autoload-file: "loaddefs.el"
|
|
;; generated-autoload-load-name: "semantic/db-mode"
|
|
;; End:
|
|
|
|
;;; semantic/db-mode.el ends here
|