;;; semantic/fw.el --- Framework for Semantic -*- lexical-binding: t; -*- ;; Copyright (C) 1999-2022 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam ;; 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 . ;;; Commentary: ;; ;; Semantic has several core features shared across it's lex/parse/util ;; stages. This used to clutter semantic.el some. These routines are all ;; simple things that are not parser specific, but aid in making ;; semantic flexible and compatible amongst different Emacs platforms. ;;; Code: ;; (require 'mode-local) (require 'eieio) (load "semantic/loaddefs" 'noerror 'nomessage) ;;; Compatibility ;; (define-obsolete-function-alias 'semantic-overlay-live-p #'overlay-buffer "27.1") (define-obsolete-function-alias 'semantic-make-overlay #'make-overlay "27.1") (define-obsolete-function-alias 'semantic-overlay-put #'overlay-put "27.1") (define-obsolete-function-alias 'semantic-overlay-get #'overlay-get "27.1") (define-obsolete-function-alias 'semantic-overlay-properties #'overlay-properties "27.1") (define-obsolete-function-alias 'semantic-overlay-move #'move-overlay "27.1") (define-obsolete-function-alias 'semantic-overlay-delete #'delete-overlay "27.1") (define-obsolete-function-alias 'semantic-overlays-at #'overlays-at "27.1") (define-obsolete-function-alias 'semantic-overlays-in #'overlays-in "27.1") (define-obsolete-function-alias 'semantic-overlay-buffer #'overlay-buffer "27.1") (define-obsolete-function-alias 'semantic-overlay-start #'overlay-start "27.1") (define-obsolete-function-alias 'semantic-overlay-end #'overlay-end "27.1") (define-obsolete-function-alias 'semantic-overlay-next-change #'next-overlay-change "27.1") (define-obsolete-function-alias 'semantic-overlay-previous-change #'previous-overlay-change "27.1") (define-obsolete-function-alias 'semantic-overlay-lists #'overlay-lists "27.1") (define-obsolete-function-alias 'semantic-overlay-p #'overlayp "27.1") (define-obsolete-function-alias 'semantic-read-event #'read-event "27.1") (define-obsolete-function-alias 'semantic-popup-menu #'popup-menu "27.1") (define-obsolete-function-alias 'semantic-buffer-local-value #'buffer-local-value "27.1") (defun semantic-event-window (event) "Extract the window from EVENT." (car (car (cdr event)))) (define-obsolete-function-alias 'semantic-make-local-hook #'identity "27.1") (defalias 'semantic-mode-line-update #'force-mode-line-update) (define-obsolete-function-alias 'semantic-run-mode-hooks #'run-mode-hooks "28.1") ;; Fancy compat usage now handled in cedet-compat (define-obsolete-function-alias 'semantic-subst-char-in-string #'subst-char-in-string "28.1") (defun semantic-delete-overlay-maybe (overlay) "Delete OVERLAY if it is a semantic token overlay." (if (overlay-get overlay 'semantic) (delete-overlay overlay))) ;;; Menu Item compatibility ;; (define-obsolete-function-alias 'semantic-menu-item #'identity "27.1") ;;; Positional Data Cache ;; (defvar semantic-cache-data-overlays nil "List of all overlays waiting to be flushed.") (defun semantic-cache-data-to-buffer (buffer start end value name &optional lifespan) "In BUFFER over the region START END, remember VALUE. NAME specifies a special name that can be searched for later to recover the cached data with `semantic-get-cache-data'. LIFESPAN indicates how long the data cache will be remembered. The default LIFESPAN is `end-of-command'. Possible Lifespans are: `end-of-command' - Remove the cache at the end of the currently executing command. `exit-cache-zone' - Remove when point leaves the overlay at the end of the currently executing command." ;; Check if LIFESPAN is valid before to create any overlay (or lifespan (setq lifespan 'end-of-command)) (or (memq lifespan '(end-of-command exit-cache-zone)) (error "semantic-cache-data-to-buffer: Unknown LIFESPAN: %s" lifespan)) (let ((o (make-overlay start end buffer))) (overlay-put o 'cache-name name) (overlay-put o 'cached-value value) (overlay-put o 'lifespan lifespan) (setq semantic-cache-data-overlays (cons o semantic-cache-data-overlays)) ;;(message "Adding to cache: %s" o) (add-hook 'post-command-hook #'semantic-cache-data-post-command-hook) )) (defun semantic-cache-data-post-command-hook () "Flush `semantic-cache-data-overlays' based `lifespan' property. Remove self from `post-command-hook' if it is empty." (let ((newcache nil) (oldcache semantic-cache-data-overlays)) (while oldcache (let* ((o (car oldcache)) (life (overlay-get o 'lifespan)) ) (if (or (eq life 'end-of-command) (and (eq life 'exit-cache-zone) (not (member o (overlays-at (point)))))) (progn ;;(message "Removing from cache: %s" o) (delete-overlay o) ) (setq newcache (cons o newcache)))) (setq oldcache (cdr oldcache))) (setq semantic-cache-data-overlays (nreverse newcache))) ;; Remove ourselves if we have removed all overlays. (unless semantic-cache-data-overlays (remove-hook 'post-command-hook #'semantic-cache-data-post-command-hook))) (defun semantic-get-cache-data (name &optional point) "Get cached data with NAME from optional POINT." (save-excursion (if point (goto-char point)) (let ((o (overlays-at (point))) (ans nil)) (while (and (not ans) o) (if (equal (overlay-get (car o) 'cache-name) name) (setq ans (car o)) (setq o (cdr o)))) (when ans (overlay-get ans 'cached-value))))) (defun semantic-test-data-cache () "Test the data cache." (interactive) (let ((data '(a b c))) (save-current-buffer (set-buffer (get-buffer-create " *semantic-test-data-cache*")) (save-excursion (erase-buffer) (insert "The Moose is Loose") (goto-char (point-min)) (semantic-cache-data-to-buffer (current-buffer) (point) (+ (point) 5) data 'moose 'exit-cache-zone) (if (equal (semantic-get-cache-data 'moose) data) (message "Successfully retrieved cached data.") (error "Failed to retrieve cached data")) )))) ;;; Obsoleting various functions & variables ;; (defun semantic-overload-symbol-from-function (name) "Return the symbol for overload used by NAME, the defined symbol." (declare (obsolete define-obsolete-function-alias "28.1")) (let ((sym-name (symbol-name name))) (if (string-match "^semantic-" sym-name) (intern (substring sym-name (match-end 0))) name))) (defun semantic-alias-obsolete (oldfnalias newfn when) "Make OLDFNALIAS an alias for NEWFN. Mark OLDFNALIAS as obsolete, such that the byte compiler will throw a warning when it encounters this symbol." (declare (obsolete define-obsolete-function-alias "28.1")) (defalias oldfnalias newfn) (make-obsolete oldfnalias newfn when) (when (and (mode-local--function-overload-p newfn) (not (mode-local--overload-obsoleted-by newfn)) ;; Only throw this warning when byte compiling things. (macroexp-compiling-p) (not (string-match "cedet" (macroexp-file-name))) ) (make-obsolete-overload oldfnalias newfn when) (if (fboundp 'byte-compile-warn-x) (byte-compile-warn-x newfn "%s: `%s' obsoletes overload `%s'" (macroexp-file-name) newfn (with-suppressed-warnings ((obsolete semantic-overload-symbol-from-function)) (semantic-overload-symbol-from-function oldfnalias))) (byte-compile-warn "%s: `%s' obsoletes overload `%s'" (macroexp-file-name) newfn (with-suppressed-warnings ((obsolete semantic-overload-symbol-from-function)) (semantic-overload-symbol-from-function oldfnalias)))))) (defun semantic-varalias-obsolete (oldvaralias newvar when) "Make OLDVARALIAS an alias for variable NEWVAR. Mark OLDVARALIAS as obsolete, such that the byte compiler will throw a warning when it encounters this symbol." (declare (obsolete define-obsolete-variable-alias "28.1")) (make-obsolete-variable oldvaralias newvar when) (condition-case nil (defvaralias oldvaralias newvar) (error ;; Only throw this warning when byte compiling things. (when (macroexp-compiling-p) (if (fboundp 'byte-compile-warn-x) (byte-compile-warn-x newvar "variable `%s' obsoletes, but isn't alias of `%s'" newvar oldvaralias) (byte-compile-warn "variable `%s' obsoletes, but isn't alias of `%s'" newvar oldvaralias)))))) ;;; Help debugging ;; (defmacro semantic-safe (format &rest body) "Turn into a FORMAT message any error caught during eval of BODY. Return the value of last BODY form or nil if an error occurred. FORMAT can have a %s escape which will be replaced with the actual error message. If `debug-on-error' is set, errors are not caught, so that you can debug them. Avoid using a large BODY since it is duplicated." (declare (debug t) (indent 1)) `(if debug-on-error ;;(let ((inhibit-quit nil)) ,@body) ;; Note to self: Doing the above screws up the wisent parser. (progn ,@body) (condition-case err (progn ,@body) (error (message ,format (format "%S - %s" (current-buffer) (error-message-string err))) nil)))) ;;; Misc utilities ;; (defvar-local semantic-new-buffer-fcn-was-run nil "Non-nil after `semantic-new-buffer-fcn' has been executed.") (defsubst semantic-active-p () "Return non-nil if the current buffer was set up for parsing." semantic-new-buffer-fcn-was-run) (defsubst semantic-map-buffers (function) "Run FUNCTION for each Semantic enabled buffer found. FUNCTION does not have arguments. When FUNCTION is entered `current-buffer' is a selected Semantic enabled buffer." (mode-local-map-file-buffers function #'semantic-active-p)) (defalias 'semantic-map-mode-buffers #'mode-local-map-mode-buffers) (defun semantic-install-function-overrides (overrides &optional transient) "Install the function OVERRIDES in the specified environment. OVERRIDES must be an alist ((OVERLOAD . FUNCTION) ...) where OVERLOAD is a symbol identifying an overloadable entry, and FUNCTION is the function to override it with. If optional argument TRANSIENT is non-nil, installed overrides can in turn be overridden by next installation. If optional argument MODE is non-nil, it must be a major mode symbol. OVERRIDES will be installed globally for this major mode. If MODE is nil, OVERRIDES will be installed locally in the current buffer. This later installation should be done in MODE hook." (mode-local-bind ;; Add the semantic- prefix to OVERLOAD short names. (mapcar (lambda (e) (let ((name (symbol-name (car e)))) (if (string-match "^semantic-" name) e (cons (intern (format "semantic-%s" name)) (cdr e))))) overrides) (list 'constant-flag (not transient) 'override-flag t) nil)) ;;; User Interrupt handling ;; (defvar semantic-current-input-throw-symbol nil "The current throw symbol for `semantic-exit-on-input'.") (defvar semantic--on-input-start-marker nil "The marker when starting a `semantic-exit-on-input' form.") (defmacro semantic-exit-on-input (symbol &rest forms) "Using SYMBOL as an argument to `throw', execute FORMS. If FORMS includes a call to `semantic-throw-on-input', then if a user presses any key during execution, this form macro will exit with the value passed to `semantic-throw-on-input'. If FORMS completes, then the return value is the same as `progn'." (declare (indent 1) (debug def-body)) `(let ((semantic-current-input-throw-symbol ,symbol) (semantic--on-input-start-marker (point-marker))) (catch ,symbol ,@forms))) (defmacro semantic-throw-on-input (from) "Exit with `throw' when in `semantic-exit-on-input' on user input. FROM is an indication of where this function is called from as a value to pass to `throw'. It is recommended to use the name of the function calling this one." `(when (and semantic-current-input-throw-symbol (or (input-pending-p) (with-current-buffer (marker-buffer semantic--on-input-start-marker) ;; Timers might run during accept-process-output. ;; If they redisplay, point must be where the user ;; expects. (Bug#15045) (save-excursion (goto-char semantic--on-input-start-marker) (accept-process-output))))) (throw semantic-current-input-throw-symbol ,from))) ;;; Special versions of Find File ;; (defvar recentf-exclude) (defvar semantic-init-hook) (defvar ede-auto-add-method) (defvar flymake-start-syntax-check-on-find-file) (defvar auto-insert) (defun semantic-find-file-noselect (file &optional nowarn rawfile wildcards) "Call `find-file-noselect' with various features turned off. Use this when referencing a file that will be soon deleted. FILE, NOWARN, RAWFILE, and WILDCARDS are passed into `find-file-noselect'." (let* ((recentf-exclude '(always)) ;; This is a brave statement. Don't waste time loading in ;; lots of modes. Especially decoration mode can waste a lot ;; of time for a buffer we intend to kill. (semantic-init-hook nil) ;; This disables the part of EDE that asks questions (ede-auto-add-method 'never) ;; Ask font-lock to not colorize these buffers, nor to ;; whine about it either. (global-font-lock-mode nil) (font-lock-verbose nil) ;; This forces flymake to ignore this buffer on find-file, and ;; prevents flymake processes from being started. (flymake-start-syntax-check-on-find-file nil) ;; Disable revision control (vc-handled-backends nil) ;; Don't prompt to insert a template if we visit an empty file (auto-insert nil) ;; We don't want emacs to query about unsafe local variables (enable-local-variables :safe) ;; ... or eval variables (enable-local-eval nil) ;; also disable the find-file-hook (find-file-hook nil) ) (save-match-data (find-file-noselect file nowarn rawfile wildcards)))) ;;; Database restriction settings ;; (defmacro semanticdb-without-unloaded-file-searches (forms) "Execute FORMS with `unloaded' removed from the current throttle." (declare (indent 1)) `(let ((semanticdb-find-default-throttle (if (featurep 'semantic/db-find) (remq 'unloaded semanticdb-find-default-throttle) nil))) ,forms)) ;; ;;; Editor goodies ;-) ;; ;; ;; (defconst semantic-fw-font-lock-keywords ;; (eval-when-compile ;; (let* ( ;; ;; Variable declarations ;; (vl nil) ;; (kv (if vl (regexp-opt vl t) "")) ;; ;; Function declarations ;; (vf '( ;; "define-lex" ;; "define-lex-analyzer" ;; "define-lex-block-analyzer" ;; "define-lex-regex-analyzer" ;; "define-lex-spp-macro-declaration-analyzer" ;; "define-lex-spp-macro-undeclaration-analyzer" ;; "define-lex-spp-include-analyzer" ;; "define-lex-simple-regex-analyzer" ;; "define-lex-keyword-type-analyzer" ;; "define-lex-sexp-type-analyzer" ;; "define-lex-regex-type-analyzer" ;; "define-lex-string-type-analyzer" ;; "define-lex-block-type-analyzer" ;; ;;"define-semantic-child-mode" ;; "define-semantic-idle-service" ;; "define-semantic-decoration-style" ;; "define-wisent-lexer" ;; "semantic-make-obsolete-overload" ;; "defcustom-mode-local-semantic-dependency-system-include-path" ;; )) ;; (kf (if vf (regexp-opt vf t) "")) ;; ;; Regexp depths ;; (kv-depth (if kv (regexp-opt-depth kv) nil)) ;; (kf-depth (if kf (regexp-opt-depth kf) nil)) ;; ) ;; `((,(concat ;; ;; Declarative things ;; "(\\(" kv "\\|" kf "\\)" ;; ;; Whitespaces & names ;; "\\>[ \t]*\\(\\sw+\\)?[ \t]*\\(\\sw+\\)?" ;; ) ;; (1 font-lock-keyword-face) ;; (,(+ 1 kv-depth kf-depth 1) ;; (cond ((match-beginning 2) ;; font-lock-type-face) ;; ((match-beginning ,(+ 1 kv-depth 1)) ;; font-lock-function-name-face) ;; ) ;; nil t) ;; (,(+ 1 kv-depth kf-depth 1 1) ;; (cond ((match-beginning 2) ;; font-lock-variable-name-face) ;; ) ;; nil t))) ;; )) ;; "Highlighted Semantic keywords.") ;; (when (fboundp 'font-lock-add-keywords) ;; (font-lock-add-keywords 'emacs-lisp-mode ;; semantic-fw-font-lock-keywords)) (provide 'semantic/fw) ;;; semantic/fw.el ends here