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 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
|
;;; semantic/db.el --- Semantic tag database manager -*- lexical-binding:t -*-
;; Copyright (C) 2000-2025 Free Software Foundation, Inc.
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; Keywords: tags
;; 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:
;;
;; Maintain a database of tags for a group of files and enable
;; queries into the database.
;;
;; By default, assume one database per directory.
;;
;;; Code:
(require 'eieio-base)
(require 'semantic)
(eval-when-compile
(require 'semantic/find))
(declare-function semantic-lex-spp-save-table "semantic/lex-spp")
;; Use autoload to avoid recursive require of semantic/db-ref
(autoload 'semanticdb-refresh-references "semantic/db-ref"
"Refresh references to DBT in other files.")
;;; Variables:
(defgroup semanticdb nil
"Parser Generator Persistent Database interface."
:group 'semantic)
(defvar semanticdb-database-list nil
"List of all active databases.")
(defvar-local semanticdb-new-database-class 'semanticdb-project-database-file
"The default type of database created for new files.
This can be changed on a per file basis, so that some directories
are saved using one mechanism, and some directories via a different
mechanism.")
(defvar-local semanticdb-default-find-index-class 'semanticdb-find-search-index
"The default type of search index to use for a `semanticdb-table's.
This can be changed to try out new types of search indices.")
;;;###autoload
(defvar-local semanticdb-current-database nil
"For a given buffer, this is the currently active database.")
;;;###autoload
(defvar-local semanticdb-current-table nil
"For a given buffer, this is the currently active database table.")
;;; ABSTRACT CLASSES
;;
(defclass semanticdb-abstract-table ()
((parent-db ;; :initarg :parent-db
;; Do not set an initarg, or you get circular writes to disk.
:documentation "Database Object containing this table.")
(major-mode :initarg :major-mode
:initform nil
:documentation "Major mode this table belongs to.
Sometimes it is important for a program to know if a given table has the
same major mode as the current buffer.")
(tags :initarg :tags
:accessor semanticdb-get-tags
:printer semantic-tag-write-list-slot-value
:documentation "The tags belonging to this table.")
(db-refs :initform nil
:documentation
"List of `semanticdb-table' objects referring to this one.
These aren't saved, but are instead recalculated after load.
See the file semanticdb-ref.el for how this slot is used.")
(index :type semanticdb-abstract-search-index
:documentation "The search index.
Used by semanticdb-find to store additional information about
this table for searching purposes.
Note: This index will not be saved in a persistent file.")
(cache :type list
:initform nil
:documentation "List of cache information for tools.
Any particular tool can cache data to a database at runtime
with `semanticdb-cache-get'.
Using a semanticdb cache does not save any information to a file,
so your cache will need to be recalculated at runtime. Caches can be
referenced even when the file is not in a buffer.
Note: This index will not be saved in a persistent file.")
)
"A simple table for semantic tags.
This table is the root of tables, and contains the minimum needed
for a new table not associated with a buffer."
:abstract t)
(cl-defmethod semanticdb-in-buffer-p ((_obj semanticdb-abstract-table))
"Return a nil, meaning abstract table OBJ is not in a buffer."
nil)
(cl-defgeneric semanticdb-get-buffer (_obj)
"Return a buffer associated with semanticdb table OBJ.
If the buffer is not in memory, load it with `find-file-noselect'."
nil)
;; FIXME: Should we merge `semanticdb-get-buffer' and
;; `semantic-tag-parent-buffer'?
;; This generic method allows for sloppier coding. Many
;; functions treat "table" as something that could be a buffer,
;; file name, or other. This makes use of table more robust.
(cl-defmethod semanticdb-full-filename (buffer-or-string)
"Fetch the full filename that BUFFER-OR-STRING refers to.
This uses semanticdb to get a better file name."
(cond ((bufferp buffer-or-string)
(with-current-buffer buffer-or-string
(semanticdb-full-filename semanticdb-current-table)))
((and (stringp buffer-or-string) (file-exists-p buffer-or-string))
(expand-file-name buffer-or-string))))
(cl-defmethod semanticdb-full-filename ((_obj semanticdb-abstract-table))
"Fetch the full filename that OBJ refers to.
Abstract tables do not have file names associated with them."
nil)
(cl-defmethod semanticdb-dirty-p ((_obj semanticdb-abstract-table))
"Return non-nil if OBJ is dirty."
nil)
(cl-defmethod semanticdb-set-dirty ((_obj semanticdb-abstract-table))
"Mark the abstract table OBJ dirty.
Abstract tables can not be marked dirty, as there is nothing
for them to synchronize against."
;; The abstract table can not be dirty.
nil)
(cl-defmethod semanticdb-normalize-tags ((_obj semanticdb-abstract-table) tags)
"For the table OBJ, convert a list of TAGS, into standardized form.
The default is to return TAGS.
Some databases may default to searching and providing simplified tags
based on whichever technique used. This method provides a hook for
them to convert TAG into a more complete form."
tags)
(cl-defmethod semanticdb-normalize-one-tag ((obj semanticdb-abstract-table) tag)
"For the table OBJ, convert a TAG, into standardized form.
This method returns a list of the form (DATABASE . NEWTAG).
The default is to just return (OBJ TAG).
Some databases may default to searching and providing simplified tags
based on whichever technique used. This method provides a hook for
them to convert TAG into a more complete form."
(cons obj tag))
;;; Index Cache
;;
(defclass semanticdb-abstract-search-index ()
((table :initarg :table
:type semanticdb-abstract-table
:documentation "XRef to the table this belongs to.")
)
"A place where semanticdb-find can store search index information.
The search index will store data about which other tables might be
needed, or perhaps create hash or index tables for the current buffer."
:abstract t)
(cl-defmethod semanticdb-get-table-index ((obj semanticdb-abstract-table))
"Return the search index for the table OBJ.
If one doesn't exist, create it."
(if (slot-boundp obj 'index)
(oref obj index)
(let ((idx nil))
(setq idx (funcall semanticdb-default-find-index-class
(concat (eieio-object-name obj) " index")
;; Fill in the defaults
:table obj
))
(setf (slot-value obj 'index) idx)
idx)))
(cl-defmethod semanticdb-synchronize ((_idx semanticdb-abstract-search-index)
_new-tags)
"Synchronize the search index IDX with some NEW-TAGS."
;; The abstract class will do... NOTHING!
)
(cl-defmethod semanticdb-partial-synchronize
((_idx semanticdb-abstract-search-index)
_new-tags)
"Synchronize the search index IDX with some changed NEW-TAGS."
;; The abstract class will do... NOTHING!
)
;;; SEARCH RESULTS TABLE
;;
;; Needed for system databases that may not provide
;; a semanticdb-table associated with a file.
;;
(defclass semanticdb-search-results-table (semanticdb-abstract-table)
()
"Table used for search results when there is no file or table association.
Examples include search results from external sources such as from
Emacs's own symbol table, or from external libraries.")
(cl-defmethod semanticdb-refresh-table ((_obj semanticdb-search-results-table)
&optional _force)
"If the tag list associated with OBJ is loaded, refresh it.
This will call `semantic-fetch-tags' if that file is in memory."
nil)
;;; CONCRETE TABLE CLASSES
;;
(defclass semanticdb-table (semanticdb-abstract-table)
((file :initarg :file
:documentation "File name relative to the parent database.
This is for the file whose tags are stored in this TABLE object.")
(buffer :initform nil
:documentation "The buffer associated with this table.
If nil, the table's buffer is no in Emacs. If it has a value, then
it is in Emacs.")
(dirty :initform nil
:documentation
"Non-nil if this table needs to be `Saved'.")
(db-refs :initform nil
:documentation
"List of `semanticdb-table' objects referring to this one.
These aren't saved, but are instead recalculated after load.
See the file semantic/db-ref.el for how this slot is used.")
(pointmax :initarg :pointmax
:initform nil
:documentation "Size of buffer when written to disk.
Checked on retrieval to make sure the file is the same.")
(fsize :initarg :fsize
:initform nil
:documentation "Size of the file when it was last referenced.
Checked when deciding if a loaded table needs updating from changes
outside of Semantic's control.")
(lastmodtime :initarg :lastmodtime
:initform nil
:documentation "Last modification time of the file referenced.
Checked when deciding if a loaded table needs updating from changes outside of
Semantic's control.")
;; @todo - need to add `last parsed time', so we can also have
;; refresh checks if spp tables or the parser gets rebuilt.
(unmatched-syntax :initarg :unmatched-syntax
:documentation
"List of vectors specifying unmatched syntax.")
(lexical-table :initarg :lexical-table
:initform nil
:printer semantic-lex-spp-table-write-slot-value
:documentation
"Table that might be needed by the lexical analyzer.
For C/C++, the C preprocessor macros can be saved here.")
)
"A single table of tags derived from file.")
(cl-defmethod semantic-tag-parent-buffer ((parent semanticdb-table))
(semanticdb-get-buffer parent)) ;FIXME: η-redex!
(cl-defmethod semanticdb-in-buffer-p ((obj semanticdb-table))
"Return a buffer associated with OBJ.
If the buffer is in memory, return that buffer."
(let ((buff (oref obj buffer)))
(if (buffer-live-p buff)
buff
(setf (slot-value obj 'buffer) nil))))
(cl-defmethod semanticdb-get-buffer ((obj semanticdb-table))
"Return a buffer associated with OBJ.
If the buffer is in memory, return that buffer.
If the buffer is not in memory, load it with `find-file-noselect'."
(or (semanticdb-in-buffer-p obj)
;; Save match data to protect against odd stuff in mode hooks.
(save-match-data
(find-file-noselect (semanticdb-full-filename obj) t))))
(cl-defmethod semanticdb-set-buffer ((obj semanticdb-table))
"Set the current buffer to be a buffer owned by OBJ.
If OBJ's file is not loaded, read it in first."
(set-buffer (semanticdb-get-buffer obj)))
(cl-defmethod semanticdb-dirty-p ((obj semanticdb-table))
"Return non-nil if OBJ is dirty."
(oref obj dirty))
(cl-defmethod semanticdb-set-dirty ((obj semanticdb-table))
"Mark the abstract table OBJ dirty."
(setf (slot-value obj 'dirty) t)
)
(cl-defmethod semanticdb-debug-info ((obj semanticdb-table))
(list (format "(%d tags)%s"
(length (semanticdb-get-tags obj))
(if (oref obj dirty)
", DIRTY"
""))))
(cl-defmethod cl-print-object ((obj semanticdb-table) stream)
"Pretty printer extension for `semanticdb-table'.
Adds the number of tags in this file to the object print name."
(princ (eieio-object-name obj (semanticdb-debug-info obj))
stream))
;;; DATABASE BASE CLASS
;;
(cl-deftype semanticdb-abstract-table-list ()
'(list-of semanticdb-abstract-table))
(defclass semanticdb-project-database (eieio-instance-tracker)
((tracking-symbol :initform 'semanticdb-database-list)
(reference-directory :type string
:documentation "Directory this database refers to.
When a cache directory is specified, then this refers to the directory
this database contains symbols for.")
(new-table-class :initform 'semanticdb-table
:type class
:documentation
"New tables created for this database are of this class.")
(cache :type list
:initform nil
:documentation "List of cache information for tools.
Any particular tool can cache data to a database at runtime
with `semanticdb-cache-get'.
Using a semanticdb cache does not save any information to a file,
so your cache will need to be recalculated at runtime.
Note: This index will not be saved in a persistent file.")
(tables :initarg :tables
:type semanticdb-abstract-table-list
;; Need this protection so apps don't try to access
;; the tables without using the accessor.
:accessor semanticdb-get-database-tables
:protection :protected
:documentation "List of `semanticdb-table' objects."))
"Database of file tables.")
(cl-defmethod semanticdb-full-filename ((obj semanticdb-table))
"Fetch the full filename that OBJ refers to."
(expand-file-name (oref obj file)
(oref (oref obj parent-db) reference-directory)))
(cl-defmethod semanticdb-full-filename ((_obj semanticdb-project-database))
"Fetch the full filename that OBJ refers to.
Abstract tables do not have file names associated with them."
nil)
(cl-defmethod semanticdb-dirty-p ((DB semanticdb-project-database))
"Return non-nil if DB is dirty.
A database is dirty if the state of the database changed in a way
where it may need to resynchronize with some persistent storage."
(let ((dirty nil)
(tabs (oref DB tables)))
(while (and (not dirty) tabs)
(setq dirty (semanticdb-dirty-p (car tabs)))
(setq tabs (cdr tabs)))
dirty))
(cl-defmethod semanticdb-debug-info ((obj semanticdb-project-database))
(list (format "(%d tables%s)"
(length (semanticdb-get-database-tables obj))
(if (semanticdb-dirty-p obj)
" DIRTY" ""))))
(cl-defmethod cl-print-object ((obj semanticdb-project-database) stream)
"Pretty printer extension for `semanticdb-project-database'.
Adds the number of tables in this file to the object print name."
(princ (eieio-object-name obj (semanticdb-debug-info obj))
stream))
(cl-defmethod semanticdb-create-database ((_dbc (subclass semanticdb-project-database)) directory)
"Create a new semantic database of class DBC for DIRECTORY and return it.
If a database for DIRECTORY has already been created, return it.
If DIRECTORY doesn't exist, create a new one."
(let ((db (semanticdb-directory-loaded-p directory)))
(unless db
(setq db (semanticdb-project-database :tables nil))
;; Set this up here. We can't put it in the constructor because it
;; would be saved, and we want DB files to be portable.
(setf (slot-value db 'reference-directory) (file-truename directory)))
db))
(cl-defmethod semanticdb-flush-database-tables ((db semanticdb-project-database))
"Reset the tables in DB to be empty."
(setf (slot-value db 'tables) nil))
(cl-defmethod semanticdb-create-table ((db semanticdb-project-database) file)
"Create a new table in DB for FILE and return it.
The class of DB contains the class name for the type of table to create.
If the table for FILE exists, return it.
If the table for FILE does not exist, create one."
(let ((newtab (semanticdb-file-table db file)))
(unless newtab
;; This implementation will satisfy autoloaded classes
;; for tables.
(setq newtab (funcall (oref db new-table-class)
(file-name-nondirectory file)
:file (file-name-nondirectory file)
))
(setf (slot-value newtab 'parent-db) db)
(object-add-to-list db 'tables newtab t))
newtab))
(cl-defmethod semanticdb-file-table ((obj semanticdb-project-database) filename)
"From OBJ, return FILENAME's associated table object."
(object-assoc (file-relative-name (file-truename filename)
(oref obj reference-directory))
'file (oref obj tables)))
;; DATABASE FUNCTIONS
(defun semanticdb-get-database (filename)
"Get a database for FILENAME.
If one isn't found, create one."
(semanticdb-create-database semanticdb-new-database-class (file-truename filename)))
(defun semanticdb-directory-loaded-p (path)
"Return the project belonging to PATH if it was already loaded."
(eieio-instance-tracker-find path 'reference-directory 'semanticdb-database-list))
(defun semanticdb-create-table-for-file (filename)
"Initialize a database table for FILENAME, and return it.
If FILENAME exists in the database already, return that.
If there is no database for the table to live in, create one."
(let ((cdb nil)
(tbl nil)
(dd (file-name-directory (file-truename filename)))
)
;; Allow a database override function
(setq cdb (semanticdb-create-database semanticdb-new-database-class
dd))
;; Get a table for this file.
(setq tbl (semanticdb-create-table cdb filename))
;; Return the pair.
(cons cdb tbl)
))
;;; Cache Cache.
;;
(defclass semanticdb-abstract-cache ()
((table :initarg :table
:type semanticdb-abstract-table
:documentation
"Cross reference to the table this belongs to.")
)
"Abstract baseclass for tools to use to cache information in semanticdb.
Tools needing a per-file cache must subclass this, and then get one as
needed. Cache objects are identified in semanticdb by subclass.
In order to keep your cache up to date, be sure to implement
`semanticdb-synchronize', and `semanticdb-partial-synchronize'.
See the file semantic/scope.el for an example."
:abstract t)
(cl-defmethod semanticdb-cache-get ((table semanticdb-abstract-table)
desired-class)
"Get a cache object on TABLE of class DESIRED-CLASS.
This method will create one if none exists with no init arguments
other than :table."
(unless (child-of-class-p desired-class 'semanticdb-abstract-cache)
(error "Invalid SemanticDB cache"))
(let ((cache (oref table cache))
(obj nil))
(while (and (not obj) cache)
(if (eq (eieio-object-class (car cache)) desired-class)
(setq obj (car cache)))
(setq cache (cdr cache)))
(if obj
obj ;; Just return it.
;; No object, let's create a new one and return that.
(setq obj (funcall desired-class "Cache" :table table))
(object-add-to-list table 'cache obj)
obj)))
(cl-defmethod semanticdb-cache-remove ((table semanticdb-abstract-table)
cache)
"Remove from TABLE the cache object CACHE."
(object-remove-from-list table 'cache cache))
(cl-defmethod semanticdb-synchronize ((_cache semanticdb-abstract-cache)
_new-tags)
"Synchronize a CACHE with some NEW-TAGS."
;; The abstract class will do... NOTHING!
)
(cl-defmethod semanticdb-partial-synchronize ((_cache semanticdb-abstract-cache)
_new-tags)
"Synchronize a CACHE with some changed NEW-TAGS."
;; The abstract class will do... NOTHING!
)
(defclass semanticdb-abstract-db-cache ()
((db :initarg :db
:type semanticdb-project-database
:documentation
"Cross reference to the database this belongs to.")
)
"Abstract baseclass for tools to use to cache information in semanticdb.
Tools needing a database cache must subclass this, and then get one as
needed. Cache objects are identified in semanticdb by subclass.
In order to keep your cache up to date, be sure to implement
`semanticdb-synchronize', and `semanticdb-partial-synchronize'.
See the file semantic/scope.el for an example."
:abstract t)
(cl-defmethod semanticdb-cache-get ((db semanticdb-project-database)
desired-class)
"Get a cache object on DB of class DESIRED-CLASS.
This method will create one if none exists with no init arguments
other than :table."
(unless (child-of-class-p desired-class 'semanticdb-abstract-cache)
(error "Invalid SemanticDB cache"))
(let ((cache (oref db cache))
(obj nil))
(while (and (not obj) cache)
(if (eq (eieio-object-class (car cache)) desired-class)
(setq obj (car cache)))
(setq cache (cdr cache)))
(if obj
obj ;; Just return it.
;; No object, let's create a new one and return that.
(setq obj (funcall desired-class "Cache" :db db))
(object-add-to-list db 'cache obj)
obj)))
(cl-defmethod semanticdb-cache-remove ((db semanticdb-project-database)
cache)
"Remove from TABLE the cache object CACHE."
(object-remove-from-list db 'cache cache))
(cl-defmethod semanticdb-synchronize ((_cache semanticdb-abstract-db-cache)
_new-tags)
"Synchronize a CACHE with some NEW-TAGS."
;; The abstract class will do... NOTHING!
)
(cl-defmethod semanticdb-partial-synchronize ((_cache semanticdb-abstract-db-cache)
_new-tags)
"Synchronize a CACHE with some changed NEW-TAGS."
;; The abstract class will do... NOTHING!
)
;;; REFRESH
(cl-defmethod semanticdb-refresh-table ((obj semanticdb-table) &optional force)
"If the tag list associated with OBJ is loaded, refresh it.
Optional argument FORCE will force a refresh even if the file in question
is not in a buffer. Avoid using FORCE for most uses, as an old cache
may be sufficient for the general case. Forced updates can be slow.
This will call `semantic-fetch-tags' if that file is in memory."
(cond
;;
;; Already in a buffer, just do it.
((semanticdb-in-buffer-p obj)
(save-excursion
(semanticdb-set-buffer obj)
(semantic-fetch-tags)))
;;
;; Not in a buffer. Forcing a load.
(force
;; Patch from Iain Nicol. --
;; @TODO: I wonder if there is a way to recycle
;; semanticdb-create-table-for-file-not-in-buffer
(save-excursion
(let ((buff (semantic-find-file-noselect
(semanticdb-full-filename obj) t)))
(set-buffer buff)
(semantic-fetch-tags)
;; Kill off the buffer if it didn't exist when we were called.
(kill-buffer buff))))))
(cl-defmethod semanticdb-needs-refresh-p ((obj semanticdb-table))
"Return non-nil if OBJ's tag list is out of date.
The file associated with OBJ does not need to be in a buffer."
(let* ((ff (semanticdb-full-filename obj))
(buff (semanticdb-in-buffer-p obj))
)
(if buff
(with-current-buffer buff
;; Use semantic's magic tracker to determine of the buffer is up
;; to date or not.
(not (semantic-parse-tree-up-to-date-p))
;; We assume that semanticdb is keeping itself up to date.
;; via all the clever hooks
)
;; Buffer isn't loaded. The only clue we have is if the file
;; is somehow different from our mark in the semanticdb table.
(let* ((stats (file-attributes ff))
(actualsize (file-attribute-size stats))
(actualmod (file-attribute-modification-time stats))
)
(or (not (slot-boundp obj 'tags))
;; (not (oref obj tags)) --> not needed anymore?
(/= (or (oref obj fsize) 0) actualsize)
(not (time-equal-p (oref obj lastmodtime) actualmod))
)
))))
;;; Synchronization
;;
(cl-defmethod semanticdb-synchronize ((table semanticdb-abstract-table)
new-tags)
"Synchronize the table TABLE with some NEW-TAGS."
(setf (slot-value table 'tags) new-tags)
(setf (slot-value table 'pointmax) (point-max))
(let ((fattr (file-attributes (semanticdb-full-filename table))))
(setf (slot-value table 'fsize) (file-attribute-size fattr))
(setf (slot-value table 'lastmodtime)
(file-attribute-modification-time fattr)))
;; Assume it is now up to date.
(setf (slot-value table 'unmatched-syntax) semantic-unmatched-syntax-cache)
;; The lexical table should be good too.
(when (featurep 'semantic/lex-spp)
(setf (slot-value table 'lexical-table) (semantic-lex-spp-save-table)))
;; this implies dirtiness
(semanticdb-set-dirty table)
;; Synchronize the index
(when (slot-boundp table 'index)
(let ((idx (oref table index)))
(when idx (semanticdb-synchronize idx new-tags))))
;; Synchronize application caches.
(dolist (C (oref table cache))
(semanticdb-synchronize C new-tags)
)
;; Update cross references
(semanticdb-refresh-references table)
)
(cl-defmethod semanticdb-partial-synchronize ((table semanticdb-abstract-table)
new-tags)
"Synchronize the table TABLE where some NEW-TAGS changed."
;; You might think we need to reset the tags, but since the partial
;; parser splices the lists, we don't need to do anything
;;(setf (slot-value table 'tags) new-tags)
;; We do need to mark ourselves dirty.
(semanticdb-set-dirty table)
;; The lexical table may be modified.
(when (featurep 'semantic/lex-spp)
(setf (slot-value table 'lexical-table) (semantic-lex-spp-save-table)))
;; Incremental parser doesn't monkey around with this.
(setf (slot-value table 'unmatched-syntax) semantic-unmatched-syntax-cache)
;; Synchronize the index
(when (slot-boundp table 'index)
(let ((idx (oref table index)))
(when idx (semanticdb-partial-synchronize idx new-tags))))
;; Synchronize application caches.
(dolist (C (oref table cache))
(semanticdb-synchronize C new-tags)
)
;; Update cross references
(when (semantic-find-tags-by-class 'include new-tags)
(semanticdb-refresh-references table))
)
;;; SAVE/LOAD
;;
(cl-defmethod semanticdb-save-db ((_DB semanticdb-project-database)
&optional _suppress-questions)
"Cause a database to save itself.
The database base class does not save itself persistently.
Subclasses could save themselves to a file, or to a database, or other
form."
nil)
(defun semanticdb-save-current-db ()
"Save the current tag database."
(interactive)
(unless noninteractive
(message "Saving current tag summaries..."))
(semanticdb-save-db semanticdb-current-database)
(unless noninteractive
(message "Saving current tag summaries...done")))
;; This prevents Semanticdb from querying multiple times if the users
;; answers "no" to creating the Semanticdb directory.
(defvar semanticdb--inhibit-make-directory)
(defun semanticdb-save-all-db ()
"Save all semantic tag databases."
(interactive)
(unless noninteractive
(message "Saving tag summaries..."))
(let ((semanticdb--inhibit-make-directory noninteractive))
(mapc #'semanticdb-save-db semanticdb-database-list))
(unless noninteractive
(message "Saving tag summaries...done")))
(defun semanticdb-save-all-db-idle ()
"Save all semantic tag databases from idle time.
Exit the save between databases if there is user input."
(semantic-safe "Auto-DB Save: %S"
;; FIXME: Use `while-no-input'?
(semantic-exit-on-input 'semanticdb-idle-save
(mapc (lambda (db)
(semantic-throw-on-input 'semanticdb-idle-save)
(semanticdb-save-db db t))
semanticdb-database-list))
))
;;; Directory Project support
;;
(defvar semanticdb-project-predicate-functions nil
"List of predicates to try that indicate a directory belongs to a project.
This list is used when `semanticdb-persistent-path' contains the value
`project'. If the predicate list is nil, then presume all paths are valid.
Project Management software (such as EDE and JDE) should add their own
predicates with `add-hook' to this variable, and semanticdb will save tag
caches in directories controlled by them.")
(cl-defmethod semanticdb-write-directory-p ((_obj semanticdb-project-database))
"Return non-nil if OBJ should be written to disk.
Uses `semanticdb-persistent-path' to determine the return value."
nil)
;;; Utilities
;;
;; What is the current database, are two tables of an equivalent mode,
;; and what databases are a part of the same project.
(defun semanticdb-current-database ()
"Return the currently active database."
(or semanticdb-current-database
(and default-directory
(semanticdb-create-database semanticdb-new-database-class
default-directory)
)
nil))
(defvar semanticdb-match-any-mode nil
"Non-nil to temporarily search any major mode for a tag.
If a particular major mode wants to search any mode, put the
`semantic-match-any-mode' symbol onto the symbol of that major mode.
Do not set the value of this variable permanently.")
(defmacro semanticdb-with-match-any-mode (&rest body)
"A Semanticdb search occurring within BODY will search tags in all modes.
This temporarily sets `semanticdb-match-any-mode' while executing BODY."
(declare (indent 0) (debug t))
`(let ((semanticdb-match-any-mode t))
,@body))
(cl-defmethod semanticdb-equivalent-mode-for-search (table &optional buffer)
"Return non-nil if TABLE's mode is equivalent to BUFFER.
See `semanticdb-equivalent-mode' for details.
This version is used during searches. Major-modes that opt
to set the `semantic-match-any-mode' property will be able to search
all files of any type."
(or (get major-mode 'semantic-match-any-mode)
semanticdb-match-any-mode
(semanticdb-equivalent-mode table buffer))
)
(cl-defmethod semanticdb-equivalent-mode ((_table semanticdb-abstract-table) &optional _buffer)
"Return non-nil if TABLE's mode is equivalent to BUFFER.
Equivalent modes are specified by the `semantic-equivalent-major-modes'
local variable."
nil)
(cl-defmethod semanticdb-equivalent-mode ((table semanticdb-table) &optional buffer)
"Return non-nil if TABLE's mode is equivalent to BUFFER.
Equivalent modes are specified by the `semantic-equivalent-major-modes'
local variable."
(save-excursion
(if buffer (set-buffer buffer))
(or
;; nil major mode in table means we don't know yet. Assume yes for now?
(null (oref table major-mode))
;; nil means the same as major-mode
(and (not semantic-equivalent-major-modes)
(provided-mode-derived-p major-mode (oref table major-mode)))
(and semantic-equivalent-major-modes
(member (oref table major-mode) semantic-equivalent-major-modes))
)
))
;;; Associations
;;
;; These routines determine associations between a file, and multiple
;; associated databases.
(defcustom semanticdb-project-roots nil
"List of directories, where each directory is the root of some project.
All subdirectories of a root project are considered a part of one project.
Values in this string can be overridden by project management programs
via the `semanticdb-project-root-functions' variable."
:type '(repeat string))
(defvar semanticdb-project-root-functions nil
"List of functions used to determine a given directories project root.
Functions in this variable can override `semanticdb-project-roots'.
Functions set in the variable are given one argument (a directory) and
must return a string, (the root directory) or a list of strings (multiple
root directories in a more complex system). This variable should be used
by project management programs like EDE or JDE.")
(defvar-local semanticdb-project-system-databases nil
"List of databases containing system library information.
Mode authors can create their own system databases which know
detailed information about the system libraries for querying purposes.
Put those into this variable as a buffer-local, or mode-local
value.")
(defvar semanticdb-search-system-databases t
"Non-nil if search routines are to include a system database.")
(defun semanticdb-current-database-list (&optional dir)
"Return a list of databases associated with the current buffer.
If optional argument DIR is non-nil, then use DIR as the starting directory.
If this buffer has a database, but doesn't have a project associated
with it, return nil.
First, it checks `semanticdb-project-root-functions', and if that
has no results, it checks `semanticdb-project-roots'. If that fails,
it returns the results of function `semanticdb-current-database'.
Always append `semanticdb-project-system-databases' if
`semanticdb-search-system' is non-nil."
(let ((root nil) ; found root directory
(dbs nil) ; collected databases
(roots semanticdb-project-roots) ;all user roots
(dir (file-truename (or dir default-directory)))
)
;; Find the root based on project functions.
(setq root (run-hook-with-args-until-success
'semanticdb-project-root-functions
dir))
(if root
(setq root (file-truename root))
;; Else, Find roots based on strings
(while roots
(let ((r (file-truename (car roots))))
(if (string-match (concat "^" (regexp-quote r)) dir)
(setq root r)))
(setq roots (cdr roots))))
;; If no roots are found, use this directory.
(unless root (setq root dir))
;; Find databases based on the root directory.
(when root
;; The rootlist allows the root functions to possibly
;; return several roots which are in different areas but
;; all apart of the same system.
(let ((regexp (concat "^" (regexp-quote root)))
(adb semanticdb-database-list) ; all databases
)
(while adb
;; I don't like this part, but close enough.
(if (and (slot-boundp (car adb) 'reference-directory)
(string-match regexp (oref (car adb) reference-directory)))
(setq dbs (cons (car adb) dbs)))
(setq adb (cdr adb))))
)
;; Add in system databases
(when semanticdb-search-system-databases
(setq dbs (nconc dbs semanticdb-project-system-databases)))
;; Return
dbs))
;;; Generic Accessor Routines
;;
;; These routines can be used to get at tags in files w/out
;; having to know a lot about semanticDB.
(defvar semanticdb-file-table-hash (make-hash-table :test 'equal)
"Hash table mapping file names to database tables.")
(defun semanticdb-file-table-object-from-hash (file)
"Retrieve a DB table from the hash for FILE.
Does not use `file-truename'."
(gethash file semanticdb-file-table-hash 'no-hit))
(defun semanticdb-file-table-object-put-hash (file dbtable)
"For FILE, associate DBTABLE in the hash table."
(puthash file dbtable semanticdb-file-table-hash))
;;;###autoload
(defun semanticdb-file-table-object (file &optional dontload)
"Return a semanticdb table belonging to FILE, make it up to date.
If file has database tags available in the database, return it.
If file does not have tags available, and DONTLOAD is nil,
then load the tags for FILE, and create a new table object for it.
DONTLOAD does not affect the creation of new database objects."
;; (message "Object Translate: %s" file)
(when (and file (file-exists-p file) (file-regular-p file))
(let* ((default-directory (file-name-directory file))
(tab (semanticdb-file-table-object-from-hash file))
(fullfile nil))
;; If it is not in the cache, then extract the more traditional
;; way by getting the database, and finding a table in that database.
;; Once we have a table, add it to the hash.
(when (eq tab 'no-hit)
(setq fullfile (file-truename file))
(let ((db (or ;; This line will pick up system databases.
(semanticdb-directory-loaded-p default-directory)
;; this line will make a new one if needed.
(semanticdb-get-database default-directory))))
(setq tab (semanticdb-file-table db fullfile))
(when tab
(semanticdb-file-table-object-put-hash file tab)
(when (not (string= fullfile file))
(semanticdb-file-table-object-put-hash fullfile tab)
))
))
(cond
((and tab
;; Is this in a buffer?
;;(find-buffer-visiting (semanticdb-full-filename tab))
(semanticdb-in-buffer-p tab)
)
(save-excursion
;;(set-buffer (find-buffer-visiting (semanticdb-full-filename tab)))
(semanticdb-set-buffer tab)
(semantic-fetch-tags)
;; Return the table.
tab))
((and tab dontload)
;; If we have table, and we don't want to load it, just return it.
tab)
((and tab
;; Is table fully loaded, or just a proxy?
(number-or-marker-p (oref tab pointmax))
;; Is this table up to date with the file?
(not (semanticdb-needs-refresh-p tab)))
;; A-ok!
tab)
((or (and fullfile (get-file-buffer fullfile))
(get-file-buffer file))
;; are these two calls this faster than `find-buffer-visiting'?
;; If FILE is being visited, but none of the above state is
;; true (meaning, there is no table object associated with it)
;; then it is a file not supported by Semantic, and can be safely
;; ignored.
nil)
((not dontload) ;; We must load the file.
;; Full file should have been set by now. Debug why not?
(when (and (not tab) (not fullfile))
;; This case is if a 'nil is erroneously put into the hash table. This
;; would need fixing
(setq fullfile (file-truename file))
)
;; If we have a table, but no fullfile, that's ok. Let's get the filename
;; from the table which is pre-truenamed.
(when (and (not fullfile) tab)
(setq fullfile (semanticdb-full-filename tab)))
(setq tab (semanticdb-create-table-for-file-not-in-buffer fullfile))
;; Save the new table.
(semanticdb-file-table-object-put-hash file tab)
(when (not (string= fullfile file))
(semanticdb-file-table-object-put-hash fullfile tab)
)
;; Done!
tab)
(t
;; Full file should have been set by now. Debug why not?
;; One person found this. Is it a file that failed to parse
;; in the past?
(when (not fullfile)
(setq fullfile (file-truename file)))
;; We were asked not to load the file in and parse it.
;; Instead just create a database table with no tags
;; and a claim of being empty.
;;
;; This will give us a starting point for storing
;; database cross-references so when it is loaded,
;; the cross-references will fire and caches will
;; be cleaned.
(let ((ans (semanticdb-create-table-for-file file)))
(setq tab (cdr ans))
;; Save the new table.
(semanticdb-file-table-object-put-hash file tab)
(when (not (string= fullfile file))
(semanticdb-file-table-object-put-hash fullfile tab)
)
;; Done!
tab))
)
)))
(defvar-local semanticdb-out-of-buffer-create-table-fcn nil
"When non-nil, a function for creating a semanticdb table.
This should take a filename to be parsed.")
(defun semanticdb-create-table-for-file-not-in-buffer (filename)
"Create a table for the file FILENAME.
If there are no language specific configurations, this
function will read in the buffer, parse it, and kill the buffer."
(if (and semanticdb-out-of-buffer-create-table-fcn
(not (file-remote-p filename)))
;; Use external parser only of the file is accessible to the
;; local file system.
(funcall semanticdb-out-of-buffer-create-table-fcn filename)
(save-excursion
(let* ( ;; Remember the buffer to kill
(kill-buffer-flag (find-buffer-visiting filename))
(buffer-to-kill (or kill-buffer-flag
(semantic-find-file-noselect filename t))))
;; This shouldn't ever be set. Debug some issue here?
;; (when kill-buffer-flag (debug))
(set-buffer buffer-to-kill)
;; Find file should automatically do this for us.
;; Sometimes the DB table doesn't contains tags and needs
;; a refresh. For example, when the file is loaded for
;; the first time, and the idle scheduler didn't get a
;; chance to trigger a parse before the file buffer is
;; killed.
(when semanticdb-current-table
(semantic-fetch-tags))
(prog1
semanticdb-current-table
(when (not kill-buffer-flag)
;; If we had to find the file, then we should kill it
;; to keep the master buffer list clean.
(kill-buffer buffer-to-kill)
)))))
)
(defun semanticdb-file-stream (file)
"Return a list of tags belonging to FILE.
If file has database tags available in the database, return them.
If file does not have tags available, then load the file, and create them."
(let ((table (semanticdb-file-table-object file)))
(when table
(semanticdb-get-tags table))))
(provide 'semantic/db)
;; Local variables:
;; generated-autoload-file: "loaddefs.el"
;; generated-autoload-load-name: "semantic/db"
;; End:
;;; semantic/db.el ends here
|