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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
;;; semantic/decorate/mode.el --- Minor mode for decorating tags -*- lexical-binding: t; -*-
;; Copyright (C) 2000-2005, 2007-2025 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; A minor mode for use in decorating tags.
;;
;; There are two types of decorations that can be performed on a tag.
;; You can either highlight the full tag, or you can add an
;; independent decoration on some part of the tag body.
;;
;; For independent decoration in particular, managing them so that they
;; do not get corrupted is challenging. This major mode and
;; corresponding macros will make handling those types of decorations
;; easier.
;;
;;; Code:
(eval-when-compile (require 'cl-lib))
(require 'semantic)
(require 'semantic/decorate)
(require 'semantic/tag-ls)
(require 'semantic/util-modes)
;;; Styles List
;;
(defcustom semantic-decoration-styles nil
"List of active decoration styles.
It is an alist of \(NAME . FLAG) elements, where NAME is a style name
and FLAG is non-nil if the style is enabled.
See also `define-semantic-decoration-style' which will automatically
add items to this list."
:group 'semantic
:type '(repeat (cons (string :tag "Decoration Name")
(boolean :tag "Enabled")))
)
;;; Misc.
;;
(defsubst semantic-decorate-style-predicate (style)
"Return the STYLE's predicate function."
(intern (format "%s-p" style)))
(defsubst semantic-decorate-style-highlighter (style)
"Return the STYLE's highlighter function."
(intern (format "%s-highlight" style)))
(defsubst semantic-decorate-style-predicate-default (style)
"Return the STYLE's predicate function."
(intern (format "%s-p-default" style)))
(defsubst semantic-decorate-style-highlighter-default (style)
"Return the STYLE's highlighter function."
(intern (format "%s-highlight-default" style)))
;;; Base decoration API
;;
(defsubst semantic-decoration-p (object)
"Return non-nil if OBJECT is a tag decoration."
(and (overlayp object)
(overlay-get object 'semantic-decoration)))
(defsubst semantic-decoration-set-property (deco property value)
"Set the DECO decoration's PROPERTY to VALUE.
Return DECO."
(cl-assert (semantic-decoration-p deco))
(overlay-put deco property value)
deco)
(defsubst semantic-decoration-get-property (deco property)
"Return the DECO decoration's PROPERTY value."
(cl-assert (semantic-decoration-p deco))
(overlay-get deco property))
(defsubst semantic-decoration-set-face (deco face)
"Set the face of the decoration DECO to FACE.
Return DECO."
(semantic-decoration-set-property deco 'face face))
(defsubst semantic-decoration-face (deco)
"Return the face of the decoration DECO."
(semantic-decoration-get-property deco 'face))
(defsubst semantic-decoration-set-priority (deco priority)
"Set the priority of the decoration DECO to PRIORITY.
Return DECO."
(cl-assert (natnump priority))
(semantic-decoration-set-property deco 'priority priority))
(defsubst semantic-decoration-priority (deco)
"Return the priority of the decoration DECO."
(semantic-decoration-get-property deco 'priority))
(defsubst semantic-decoration-move (deco begin end)
"Move the decoration DECO on the region between BEGIN and END.
Return DECO."
(cl-assert (semantic-decoration-p deco))
(move-overlay deco begin end)
deco)
;;; Tag decoration
;;
(defun semantic-decorate-tag (tag begin end &optional face)
"Add a new decoration on TAG on the region between BEGIN and END.
If optional argument FACE is non-nil, set the decoration's face to
FACE.
Return the overlay that makes up the new decoration."
(let ((deco (semantic-tag-create-secondary-overlay tag)))
;; We do not use the unlink property because we do not want to
;; save the highlighting information in the DB.
(overlay-put deco 'semantic-decoration t)
(semantic-decoration-move deco begin end)
(semantic-decoration-set-face deco face)
deco))
(defun semantic-decorate-clear-tag (tag &optional deco)
"Remove decorations from TAG.
If optional argument DECO is non-nil, remove only that decoration."
(cl-assert (or (null deco) (semantic-decoration-p deco)))
;; Clear primary decorations.
;; For now, just unhighlight the tag. How to deal with other
;; primary decorations like invisibility, etc. ? Maybe just
;; restoring default values will suffice?
(semantic-unhighlight-tag tag)
(semantic-tag-delete-secondary-overlay
tag (or deco 'semantic-decoration)))
(defun semantic-decorate-tag-decoration (tag)
"Return decoration found on TAG."
(semantic-tag-get-secondary-overlay tag 'semantic-decoration))
;;; Global setup of active decorations
;;
(defun semantic-decorate-flush-decorations (&optional buffer)
"Flush decorations found in BUFFER.
BUFFER defaults to the current buffer.
Should be used to flush decorations that might remain in BUFFER, for
example, after tags have been refreshed."
(with-current-buffer (or buffer (current-buffer))
(dolist (o (overlays-in (point-min) (point-max)))
(and (semantic-decoration-p o)
(delete-overlay o)))))
(defun semantic-decorate-clear-decorations (tag-list)
"Remove decorations found in tags in TAG-LIST."
(dolist (tag tag-list)
(semantic-decorate-clear-tag tag)
;; recurse over children
(semantic-decorate-clear-decorations
(semantic-tag-components-with-overlays tag))))
(defun semantic-decorate-add-decorations (tag-list)
"Add decorations to tags in TAG-LIST.
Also make sure old decorations in the area are completely flushed."
(dolist (tag tag-list)
;; Cleanup old decorations.
(when (semantic-decorate-tag-decoration tag)
;; Note on below comment. This happens more as decorations are refreshed
;; mid-way through their use. Remove the message.
;; It would be nice if this never happened, but it still does
;; once in a while. Print a message to help flush these
;; situations
;;(message "Decorations still on %s" (semantic-format-tag-name tag))
(semantic-decorate-clear-tag tag))
;; Add new decorations.
(dolist (style semantic-decoration-styles)
(let ((pred (semantic-decorate-style-predicate (car style)))
(high (semantic-decorate-style-highlighter (car style))))
(and (cdr style)
(fboundp pred)
(funcall pred tag)
(fboundp high)
(funcall high tag))))
;; Recurse on the children of all tags
(semantic-decorate-add-decorations
(semantic-tag-components-with-overlays tag))))
;;; PENDING DECORATIONS
;;
;; Activities in Emacs may cause a decoration to change state. Any
;; such identified change ought to be setup as PENDING. This means
;; that the next idle step will do the decoration change, but at the
;; time of the state change, minimal work would be done.
(defvar semantic-decorate-pending-decoration-hook nil
"Normal hook run to perform pending decoration changes.")
(defun semantic-decorate-add-pending-decoration (fcn &optional buffer)
"Add a pending decoration change represented by FCN.
Applies only to the current BUFFER.
The setting of FCN will be removed after it is run."
(save-excursion
(when buffer (set-buffer buffer))
(add-hook 'semantic-decorate-pending-decoration-hook fcn nil t)))
(defun semantic-decorate-flush-pending-decorations (&optional buffer)
"Flush any pending decorations for BUFFER.
Flush functions from `semantic-decorate-pending-decoration-hook'."
(save-excursion
(when buffer (set-buffer buffer))
(run-hooks 'semantic-decorate-pending-decoration-hook)
;; Always reset the hooks
(setq semantic-decorate-pending-decoration-hook nil)))
;;; DECORATION MODE
;;
;; Generic mode for handling basic highlighting and decorations.
;;
;;;###autoload
(define-minor-mode global-semantic-decoration-mode
"Toggle global use of option `semantic-decoration-mode'.
Decoration mode turns on all active decorations as specified
by `semantic-decoration-styles'."
:global t :group 'semantic :group 'semantic-modes
;; Not needed because it's autoloaded instead.
;; :require 'semantic/decorate/mode
(semantic-toggle-minor-mode-globally
'semantic-decoration-mode (if global-semantic-decoration-mode 1 -1)))
(defcustom semantic-decoration-mode-hook nil
"Hook run at the end of function `semantic-decoration-mode'."
:group 'semantic
:type 'hook)
(define-minor-mode semantic-decoration-mode
"Minor mode for decorating tags.
Decorations are specified in `semantic-decoration-styles'. You
can define new decoration styles with
`define-semantic-decoration-style'.
The minor mode can be turned on only if semantic feature is
available and the current buffer was set up for parsing. Return
non-nil if the minor mode is enabled."
;;
;;\\{semantic-decoration-map}"
:lighter nil
(if semantic-decoration-mode
(if (not (and (featurep 'semantic) (semantic-active-p)))
(progn
;; Disable minor mode if semantic stuff not available
(setq semantic-decoration-mode nil)
(error "Buffer %s was not set up for parsing"
(buffer-name)))
;; Add hooks
(add-hook 'semantic-after-partial-cache-change-hook
#'semantic-decorate-tags-after-partial-reparse nil t)
(add-hook 'semantic-after-toplevel-cache-change-hook
#'semantic-decorate-tags-after-full-reparse nil t)
;; Add decorations to available tags. The above hooks ensure
;; that new tags will be decorated when they become available.
;; However, don't do this immediately, because EDE will be
;; activated later by find-file-hook, and includes might not
;; be found yet.
(run-with-idle-timer
0.1 nil
(lambda ()
(semantic-decorate-add-decorations (semantic-fetch-available-tags)))))
;; Remove decorations from available tags.
(semantic-decorate-clear-decorations (semantic-fetch-available-tags))
;; Cleanup any leftover crap too.
(semantic-decorate-flush-decorations)
;; Remove hooks
(remove-hook 'semantic-after-partial-cache-change-hook
#'semantic-decorate-tags-after-partial-reparse t)
(remove-hook 'semantic-after-toplevel-cache-change-hook
#'semantic-decorate-tags-after-full-reparse t)))
(semantic-add-minor-mode 'semantic-decoration-mode
"")
(defun semantic-decorate-tags-after-full-reparse (tag-list)
"Add decorations after a complete reparse of the current buffer.
TAG-LIST is the list of tags recently parsed.
Flush all existing decorations and call `semantic-decorate-add-decorations' to
add decorations.
Called from `semantic-after-toplevel-cache-change-hook'."
;; Flush everything
(semantic-decorate-flush-decorations)
;; Add it back on
(semantic-decorate-add-decorations tag-list))
(defun semantic-decorate-tags-after-partial-reparse (tag-list)
"Add decorations when new tags are created in the current buffer.
TAG-LIST is the list of newly created tags.
Call `semantic-decorate-add-decorations' to add decorations.
Called from `semantic-after-partial-cache-change-hook'."
(semantic-decorate-add-decorations tag-list))
;;; Enable/Disable toggling
;;
(defun semantic-decoration-style-enabled-p (style)
"Return non-nil if STYLE is currently enabled.
Return nil if the style is disabled, or does not exist."
(let ((pair (assoc style semantic-decoration-styles)))
(and pair (cdr pair))))
(defun semantic-toggle-decoration-style (name &optional arg)
"Turn on/off the decoration style with NAME.
Decorations are specified in `semantic-decoration-styles'.
With prefix argument ARG, turn on if positive, otherwise off.
Return non-nil if the decoration style is enabled."
(interactive
(list (completing-read "Decoration style: "
semantic-decoration-styles nil t)
current-prefix-arg))
(setq name (format "%s" name)) ;; Ensure NAME is a string.
(unless (equal name "")
(let* ((style (assoc name semantic-decoration-styles))
(flag (if arg
(> (prefix-numeric-value arg) 0)
(not (cdr style)))))
(when (null style)
(error "Unknown decoration style %s" name))
(unless (eq (cdr style) flag)
;; Store the new flag.
(setcdr style flag)
;; Refresh decorations is `semantic-decoration-mode' is on.
(when semantic-decoration-mode
(semantic-decoration-mode -1)
(semantic-decoration-mode 1))
(when (called-interactively-p 'interactive)
(message "Decoration style %s turned %s" (car style)
(if flag "on" "off"))))
flag)))
(defvar semantic-decoration-menu-cache nil
"Cache of the decoration menu.")
(defun semantic-decoration-build-style-menu (style)
"Build a menu item for controlling a specific decoration STYLE."
(let ((s (car style)))
(vector s
(lambda () (interactive) (semantic-toggle-decoration-style s))
:style 'toggle
:selected `(semantic-decoration-style-enabled-p ',s))))
(defun semantic-build-decoration-mode-menu (&rest _ignore)
"Create a menu listing all the known decorations for toggling.
IGNORE any input arguments."
(or semantic-decoration-menu-cache
(setq semantic-decoration-menu-cache
(mapcar #'semantic-decoration-build-style-menu
(reverse semantic-decoration-styles))
)))
;;; Defining decoration styles
;;
(defmacro define-semantic-decoration-style (name doc &rest flags)
"Define a new decoration style with NAME.
DOC is a documentation string describing the decoration style NAME.
It is appended to auto-generated doc strings.
An optional list of FLAGS can also be specified. Flags are:
:enabled <value> - specify the default enabled value for NAME.
:load <value> - specify a feature (as a string) with the rest of
the definition for decoration mode NAME.
This defines two new overload functions respectively called `NAME-p'
and `NAME-highlight', for which you must provide a default
implementation in respectively the functions `NAME-p-default' and
`NAME-highlight-default'. Those functions are passed a tag. `NAME-p'
must return non-nil to indicate that the tag should be decorated by
`NAME-highlight'.
To put primary decorations on a tag `NAME-highlight' must use
functions like `semantic-set-tag-face', `semantic-set-tag-read-only',
etc., found in the semantic-decorate library.
To add other kind of decorations on a tag, `NAME-highlight' must use
`semantic-decorate-tag', and other functions of the semantic
decoration API found in this library."
(declare (indent 1))
(let ((predicate (semantic-decorate-style-predicate name))
(highlighter (semantic-decorate-style-highlighter name))
(predicatedef (semantic-decorate-style-predicate-default name))
(highlighterdef (semantic-decorate-style-highlighter-default name))
(defaultenable (if (plist-member flags :enabled)
(plist-get flags :enabled)
t))
(loadfile (if (plist-member flags :load)
(plist-get flags :load)
nil))
)
`(progn
;; Clear the menu cache so that new items are added when
;; needed.
(setq semantic-decoration-menu-cache nil)
;; Create an override method to specify if a given tag belongs
;; to this type of decoration
(define-overloadable-function ,predicate (tag)
,(concat
(internal--format-docstring-line
"Return non-nil to decorate TAG with `%s' style."
name)
"\n" doc))
;; Create an override method that will perform the highlight
;; operation if the -p method returns non-nil.
(define-overloadable-function ,highlighter (tag)
,(format "Decorate TAG with `%s' style.\n%s"
name doc))
;; Add this to the list of primary decoration modes.
(add-to-list 'semantic-decoration-styles
(cons ',(symbol-name name)
,defaultenable))
;; If there is a load file, then create the autoload tokens for
;; those functions to load the token, but only if the fsym
;; doesn't exist yet.
(when (stringp ,loadfile)
(unless (fboundp ',predicatedef)
(autoload ',predicatedef ',loadfile "Return non-nil to decorate TAG."
))
(unless (fboundp ',highlighterdef)
(autoload ',highlighterdef ',loadfile "Decorate TAG."))
))
))
;;; Predefined decoration styles
;;
;;; Tag boundaries highlighting
;;
(define-semantic-decoration-style semantic-tag-boundary
"Place an overline in front of each long tag.
Does not provide overlines for prototypes.")
(defface semantic-tag-boundary-face
'((((class color) (background dark))
(:overline "cyan"))
(((class color) (background light))
(:overline "blue")))
"Face used to show long tags in.
Used by decoration style: `semantic-tag-boundary'."
:group 'semantic-faces)
(defun semantic-tag-boundary-p-default (tag)
"Return non-nil if TAG is a type, or a non-prototype function."
(let ((c (semantic-tag-class tag)))
(and
(or
;; All types get a line?
(eq c 'type)
;; Functions which aren't prototypes get a line.
(and (eq c 'function)
(not (semantic-tag-get-attribute tag :prototype-flag)))
)
;; Note: The below restriction confused users.
;;
;; Nothing smaller than a few lines
;;(> (- (semantic-tag-end tag) (semantic-tag-start tag)) 150)
;; Random truth
t)
))
(defun semantic-tag-boundary-highlight-default (tag)
"Highlight the first line of TAG as a boundary."
(when (bufferp (semantic-tag-buffer tag))
(with-current-buffer (semantic-tag-buffer tag)
(semantic-decorate-tag
tag
(semantic-tag-start tag)
(save-excursion
(goto-char (semantic-tag-start tag))
(end-of-line)
(forward-char 1)
(point))
'semantic-tag-boundary-face))
))
;;; Private member highlighting
;;
(define-semantic-decoration-style semantic-decoration-on-private-members
"Highlight class members that are designated as PRIVATE access."
:enabled nil)
(defface semantic-decoration-on-private-members-face
'((((class color) (background dark))
(:background "#200000"))
(((class color) (background light))
(:background "#8fffff")))
"Face used to show privately scoped tags in.
Used by the decoration style: `semantic-decoration-on-private-members'."
:group 'semantic-faces)
(defun semantic-decoration-on-private-members-highlight-default (tag)
"Highlight TAG as designated to have PRIVATE access.
Use a primary decoration."
(semantic-set-tag-face
tag 'semantic-decoration-on-private-members-face))
(defun semantic-decoration-on-private-members-p-default (tag)
"Return non-nil if TAG has PRIVATE access."
(and (member (semantic-tag-class tag) '(function variable))
(eq (semantic-tag-protection tag) 'private)))
;;; Protected member highlighting
;;
(defface semantic-decoration-on-protected-members-face
'((((class color) (background dark))
(:background "#000020"))
(((class color) (background light))
(:background "#fffff8")))
"Face used to show protected scoped tags in.
Used by the decoration style: `semantic-decoration-on-protected-members'."
:group 'semantic-faces)
(define-semantic-decoration-style semantic-decoration-on-protected-members
"Highlight class members that are designated as PROTECTED access."
:enabled nil)
(defun semantic-decoration-on-protected-members-p-default (tag)
"Return non-nil if TAG has PROTECTED access."
(and (member (semantic-tag-class tag) '(function variable))
(eq (semantic-tag-protection tag) 'protected)))
(defun semantic-decoration-on-protected-members-highlight-default (tag)
"Highlight TAG as designated to have PROTECTED access.
Use a primary decoration."
(semantic-set-tag-face
tag 'semantic-decoration-on-protected-members-face))
;;; Decoration Modes in other files
;;
(declare-function semantic-decoration-on-includes-p-default
"semantic/decorate/include")
(declare-function semantic-decoration-on-includes-highlight-default
"semantic/decorate/include")
(define-semantic-decoration-style semantic-decoration-on-includes
"Highlight class members that are includes.
This mode provides a nice context menu on the include statements."
:enabled t
:load "semantic/decorate/include")
(provide 'semantic/decorate/mode)
;; Local variables:
;; generated-autoload-file: "../loaddefs.el"
;; generated-autoload-load-name: "semantic/decorate/mode"
;; End:
;;; semantic/decorate/mode.el ends here
|