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
|
------------------------------------------------------------------------------
-- G P S --
-- --
-- Copyright (C) 2011-2017, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY 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 distributed with this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license. --
------------------------------------------------------------------------------
-- This package provides support for parsing the .ali and .gli files that
-- are generated by GNAT and gcc. In particular, those files contain
-- information that can be used to do cross-references for entities (going
-- from references to their declaration for instance).
--
-- A typical example would be:
--
-- declare
-- Session : Session_Type;
-- begin
-- GNATCOLL.SQL.Sessions.Setup
-- (Descr => GNATCOLL.SQL.Sqlite.Setup (":memory:"));
-- Session := Get_New_Session;
--
-- ... parse the project through GNATCOLL.Projects
--
-- Create_Database (Session.DB);
-- Parse_All_LI_Files (Session, ...);
-- end;
with Ada.Containers.Ordered_Sets;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with GNAT.Regpat; use GNAT.Regpat;
with GNAT.Strings; use GNAT.Strings;
with GNATCOLL.Iconv; use GNATCOLL.Iconv;
with GNATCOLL.Projects; use GNATCOLL.Projects;
with GNATCOLL.SQL.Exec; use GNATCOLL.SQL.Exec;
with GNATCOLL.VFS;
package GNATCOLL.Xref is
--------------------------------
-- Creating the xref database --
--------------------------------
type Xref_Database is tagged private;
type Xref_Database_Access is access all Xref_Database'Class;
procedure On_Error
(Self : Xref_Database;
Error : String) is null;
-- Called whenever an error should be emitted by the operations on this
-- database. Client applications should inherit from Xref_Database and
-- redefine this to use their own logging facility.
procedure Setup_DB
(Self : in out Xref_Database;
Tree : not null GNATCOLL.Projects.Project_Tree_Access;
DB : not null access
GNATCOLL.SQL.Exec.Database_Description_Record'Class;
Error : in out GNAT.Strings.String_Access;
Delete_If_Mismatch : Boolean := False);
-- Points to the actual database that will be used to store the xref
-- information.
-- This database might contain the information from several projects.
-- An example:
-- declare
-- Xref : Xref_Database;
-- Error : String_Access;
-- begin
-- Xref.Setup_DB
-- (Tree, GNATCOLL.SQL.Sqlite.Setup (":memory:"), Error => Error);
-- if Error /= null then
-- return; -- incorrect schema
-- end if;
-- end;
--
-- This function verifies that the schema of an existing database matches
-- the expected schema. If this is not the case, an error message will be
-- set in Error (which must be freed by the caller), and optionally the
-- existing database will be deleted before we connect to it.
--
-- DB must not be freed by the caller, since any connection opened to the
-- database stores a pointer to this description.
procedure Free (Self : in out Xref_Database);
-- Free the memory allocated for Self, and closes the database connection.
procedure Parse_All_LI_Files
(Self : in out Xref_Database;
Project : Project_Type;
Parse_Runtime_Files : Boolean := True;
Show_Progress : access procedure (Cur, Total : Integer) := null;
From_DB_Name : String := "";
To_DB_Name : String := "";
ALI_Encoding : String := GNATCOLL.Iconv.Locale;
Force_Refresh : Boolean := False);
-- Parse all the LI files for the project, and stores the xref info in the
-- DB database.
--
-- The database in DB is first initialized by copying the database
-- from From_DB_Name (if one exists).
-- When no using sqlite, this procedure cannot initialize a database from
-- another one. In this case, the database must always have been created
-- first (through a call to Create_Database).
--
-- Show_Progress can be specified if you want to monitor the progress of
-- the parsing. It will be called for each file.
--
-- On exit, the in-memory database is copied back to To_DB_Name if that
-- file is writable and the parameter is not the empty string.
-- As such, it is possible to generate an entities database as part of a
-- nightly build of an application, in a read-only area. Then each user's
-- database is initially copied from that nightly database, and then can
-- either be kept in memory (passing "" for To_DB_Name) or dumped back to
-- a local user-writable file.
--
-- In fact, depending on the number of LI files to update, GNATCOLL might
-- decide to temporarily work in memory. Thus, we have the following
-- databases involved:
-- From_DB_Name (e.g. from nightly builds)
-- | (copy only if DB doesn't exist yet
-- v and is not the same file already)
-- DB
-- |
-- v
-- :memory: (if the number of LI files to update is big)
-- |
-- v
-- DB (overridden after the update in memory, or changed
-- | directly)
-- v
-- To_DB_Name (if specified and different from DB)
--
-- If DB is an in-memory database, this procedure will be faster
-- than directly modifying the database on the disk (through a call to
-- Parse_All_LI_Files) when lots of changes need to be made.
-- Otherwise, it will be slower since dumping the in-memory database to the
-- disk is likely to take several seconds.
--
-- Parse_Runtime_Files indicates whether we should be looking at the
-- predefined object directories to find extra ALI files to parse. This
-- will in general include the Ada runtime.
--
-- ALI_Encoding indicates the encoding used for entities in the ALI and
-- source files. This cannot be guessed from the current locale, since the
-- files might be in a different encoding.
--
-- If Force_Refresh is True, then all ALI files will be parsed as if they
-- had been modified.
function Is_Up_To_Date
(Self : Xref_Database; File : GNATCOLL.VFS.Virtual_File) return Boolean;
-- Whether the xref information for this file is up-to-date.
-------------
-- Queries --
-------------
type Visible_Column is new Integer;
-- Columns in this API are related to what the user actually sees, not
-- characters in the file. This impacts files that contain tabulation
-- characters. For instance, a file that contains
-- A :<tab><tab>B;
-- has A at column 4 and B at column ((7 + 8 * 2) div 8) * 8 => 17, not 9.
--
-- As a reminder for this rule, we use a distinct type for column numbers.
-- Conversion from visible columns to characters requires access to the
-- source file.
type Entity_Information is private;
No_Entity : constant Entity_Information;
-- The description of an entity.
-- This entity is independent from the database (ie it remains usable even
-- if the database has changed since you retrieved the Entity_Information).
-- However, it might not be pointing to an entity that no longer exists.
-- This information, however, is only valid as long as the object
-- Xref_Database hasn't been destroyed.
function "<" (E1, E2 : Entity_Information) return Boolean;
function "=" (E1, E2 : Entity_Information) return Boolean;
-- Compare two entities
type Entity_Array is array (Natural range <>) of Entity_Information;
function Internal_Id (Entity : Entity_Information) return Integer;
function From_Internal_Id (Id : Integer) return Entity_Information;
-- return the unique internal identifier for the entity. At any given
-- time, this is guaranteed to be unique for each entity, but a given id
-- might end up being reused later (although it is highly unlikely).
-- These two subprograms should be used with care and very rarely in
-- practice. They are provided so that you can store an entity in a
-- GtkAda tree model easil.y
type Entity_Reference is record
Entity : Entity_Information;
File : GNATCOLL.VFS.Virtual_File;
Line : Integer;
Project : GNATCOLL.Projects.Project_Type;
Column : Visible_Column;
Kind : Ada.Strings.Unbounded.Unbounded_String;
Scope : Entity_Information;
Is_End_Of_Scope : Boolean;
-- Whether this marks the end-of-scope for an entity
Kind_Id : Character;
-- internal id for the reference kind. This is used to test various
-- properties of the reference kind efficiently, while allowing
-- duplicate names for the reference kinds.
end record;
No_Entity_Reference : constant Entity_Reference;
-- A reference to an entity, at a given location.
Kind_Id_Declaration : constant Character := ' ';
-- The Entity_Reference.Kind_Id for a declaration
Reference_Kind_Declaration : constant String := "declaration";
-- The reference kind used for the declaration of an entity. Other kinds
-- are given in the database and can be customized by any tools that add
-- information in the database.
function Image
(Self : Xref_Database; File : GNATCOLL.VFS.Virtual_File) return String;
function Image
(Self : Xref_Database; Ref : Entity_Reference) return String;
-- Return a display version of the reference's location.
-- These subprograms can be overridden if you want to print the full
-- path name of files (rather than the default base name)
Predefined_Entity : constant String := "<predefined>";
Any_File : constant String := "";
-- Valid values for the File parameter of Get_Entity, which indicates
-- we are searching for either a predefined entity, or for an entity
-- with that name in any of the source files or predefined entities.
function Get_Entity
(Self : Xref_Database;
Name : String; -- UTF-8 encoded
File : String;
Project : GNATCOLL.Projects.Project_Type;
Line : Integer := -1;
Column : Visible_Column := -1;
Approximate_Search_Fallback : Boolean := True) return Entity_Reference;
function Get_Entity
(Self : Xref_Database;
Name : String; -- UTF-8 encoded
File : GNATCOLL.VFS.Virtual_File;
Project : GNATCOLL.Projects.Project_Type;
Line : Integer := -1;
Column : Visible_Column := -1;
Approximate_Search_Fallback : Boolean := True) return Entity_Reference;
-- Return the entity that has a reference at the given location.
-- When the file is passed as a string, it is permissible to pass only the
-- basename (or a string like "partial/path/basename") that will be matched
-- against all known files in the database.
-- File names must be normalized in Unix format (ie using '/' as a
-- separator, and resolving symbolic links) when you pass a string. This is
-- done automatically if you pass a Virtual_File.
--
-- The project information is used when the user has loaded an aggregate
-- project, since the xref for A:a.ads:1 could end up being in
-- dir1/b.ads or dir2/b.ads for instance, depending on which project
-- a.ads is seen from.
--
-- File should be set to Any_File to search for the entity is all
-- the files of the project. It can also be set to Predefined_Entity to
-- search for one of the predefined entities.
function Is_Fuzzy_Match (Self : Entity_Information) return Boolean;
-- Returns True if the entity that was found is only an approximation,
-- because no exact match was found. This can happen when sources are
-- newer than ALI files.
type Entity_Flags is record
Is_Subprogram : Boolean;
-- Whether the entity is a subprogram
Is_Container : Boolean;
-- Whether the entity can contain other entities (a record, a
-- struct,...)
Is_Abstract : Boolean;
-- Whether the entity is abstract
Is_Generic : Boolean;
-- True if the entity is a generic or a template
Is_Access : Boolean;
-- True if the entity is a type or a variable that acts as a pointer.
Is_Type : Boolean;
-- True if the entity is a type (as opposed to a variable or a package
-- for instance)
Body_Is_Full_Declaration : Boolean;
-- True if the "body" of the entity is in fact called a
-- "full declaration". This only impacts visual rendering of the
-- information in some IDEs.
Is_Array : Boolean;
-- Whether the entity acts as an array, and can be dereferenced in the
-- debugger.
Is_Printable_In_Gdb : Boolean;
-- Whether the entity can be "print"-ed in gdb
Is_Global : Boolean;
-- Whether the entity is a global entity (or library-level)
Is_Static_Local : Boolean;
-- Whether the entity is a 'static' entity in the C and C++ sense.
Has_Methods : Boolean;
-- Whether the entity can have methods/primitive operations
end record;
pragma Pack (Entity_Flags);
type Entity_Declaration is record
Name : Ada.Strings.Unbounded.Unbounded_String; -- UTF-8 encoded
Kind : Ada.Strings.Unbounded.Unbounded_String;
Location : Entity_Reference;
Flags : Entity_Flags;
end record;
No_Entity_Declaration : constant Entity_Declaration;
function Declaration
(Xref : Xref_Database;
Entity : Entity_Information) return Entity_Declaration;
-- Return information on the entity (its name, kind, the location of its
-- declaration,...)
function Is_Predefined_Entity
(Decl : Entity_Declaration) return Boolean;
-- Returns True if the corresponding entity is a predefined entity, ie
-- the location of the declaration is irrelevant (only the name should be
-- taken into account)
type Base_Cursor is abstract tagged private;
function Has_Element (Self : Base_Cursor) return Boolean;
procedure Next (Self : in out Base_Cursor);
---------------------
-- Reference kinds --
---------------------
-- reference kinds are extensible by the user by creating new entries
-- in the database, and as such cannot be represented as an enumeration
-- type on the Ada side. So instead we provide a number of subprograms
-- to perform the expected tests on the kind.
function Show_In_Callgraph
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- Whether to show this reference in a callgraph.
function Is_Real_Reference
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- Whether the name of entity actually appears at this location in the
-- source. Sometimes, an entity has implicit references, which it is
-- useful to list, and they can be found by testing this function.
function Is_Read_Reference
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- Whether this is a real reference to the entity, and the value of the
-- entity is read at that point. This is also true when calling a
-- subprogram for instance.
function Is_Write_Reference
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- Whether the value of the entity is modified at that reference.
function Is_Implicit_Reference
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- Whether this is an implicit reference to the entity, i.e. a place where
-- the entity is "used", but its name does not appear.
function Is_Read_Or_Write_Reference
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- either Is_Read_Reference or Is_Write_Reference
function Is_Dispatching_Call
(Xref : Xref_Database;
Ref : Entity_Reference) return Boolean;
-- Whether this is a dispatching call to the entity.
function All_Real_Reference_Kinds
(Xref : Xref_Database) return GNAT.Strings.String_List;
-- Returns the list of all known kinds of reference types for an entity.
-- The returned value must be freed by the user.
-------------------
-- Documentation --
-------------------
-- The following subprograms are used to provide documentation on an
-- entity. Their output is not meant to be parsed by tools (use other
-- subprograms for this), but to be displayed to the user.
-- Use the Documentation subprogram if you want to combine the various
-- pieces of information into a single string.
type Formatting is (Text, HTML);
type Language_Syntax is record
Comment_Start : GNAT.Strings.String_Access;
-- How comments start for this language. This is for comments that
-- do not end on Newline, but with Comment_End.
Comment_End : GNAT.Strings.String_Access;
-- How comments end for this language
New_Line_Comment_Start : GNAT.Strings.String_Access;
-- How comments start. These comments end on the next newline
-- character. If null, use New_Line_Comment_Start_Regexp instead.
New_Line_Comment_Start_Regexp : access GNAT.Regpat.Pattern_Matcher;
-- How comments start. These comments end on the next newline
-- character. If null, use New_Line_Comment_Start instead.
end record;
-- Describes the syntax for a programming language. This is used to
-- extra comments from source files.
Ada_Syntax : constant Language_Syntax;
C_Syntax : constant Language_Syntax;
Cpp_Syntax : constant Language_Syntax;
function Overview
(Self : Xref_Database;
Entity : Entity_Information;
Format : Formatting := Text) return String;
-- Returns a one-line overview of the entity's type.
-- For instance: "procedure declared at file:line:column" or
-- "record declared at file:line:column".
function Extract_Comment
(Buffer : String;
Decl_Start_Index : Integer;
Decl_End_Index : Integer;
Language : Language_Syntax;
Format : Formatting := Text;
Look_Before_First : Boolean := True) return String;
-- Extra comment from the source code, given the range of an entity
-- declaration. This program is made public so that you can reuse it
-- if you need to override Comment below, or have other means to get the
-- information about an entity's location (for instance, in an IDE where
-- the editor might change and the LI files are not regenerated
-- immediately).
-- In this version, the start and end of the declaration are given as
-- indexes in Buffer.
--
-- If Look_Before_First is True, the comments are first searched before
-- the entity, and if not found after the entity. Otherwise the search
-- order is reversed.
function Extract_Comment
(Buffer : String;
Decl_Start_Line : Integer;
Decl_Start_Column : Integer;
Decl_End_Line : Integer := -1;
Decl_End_Column : Integer := -1;
Language : Language_Syntax;
Format : Formatting := Text;
Look_Before_First : Boolean := True) return String;
-- Same as above, but the scope of the declaration is given as line and
-- column. By default, the end is on the same position as the start.
function Comment
(Self : Xref_Database;
Entity : Entity_Information;
Language : Language_Syntax;
Format : Formatting := Text;
Look_Before_First : Boolean := True) return String;
-- Returns the comment (extracted from the source file) for the entity.
-- This is looked for just before or just after the declaration of the
-- entity.
function Text_Declaration
(Self : Xref_Database;
Entity : Entity_Information;
Format : Formatting := Text) return String;
-- Returns a documentation-oriented version of the declaration of the
-- entity. For a subprogram, for instance, it will include the list of
-- parameters, their types, the return value,...
-- The information given here might not match exactly what is found in
-- the source, given the limited details that are provided by the compilers
-- in the LI files.
-- Output example:
-- Parameters
-- A : in Integer
-- B : out String
-- Return
-- Integer
-- or another example:
-- Type: Unbounded_String
function Documentation
(Self : Xref_Database;
Entity : Entity_Information;
Language : Language_Syntax;
Format : Formatting := Text;
Look_Before_First : Boolean := True) return String;
-- Combines the various documentation subprogram output into a single
-- string.
function Qualified_Name
(Self : Xref_Database;
Entity : Entity_Information) return String;
-- Returns the fully qualified name for the entity, as UTF-8 string
function Mangled_Name
(Self : Xref_Database;
Entity : Entity_Information) return String;
-- Return the mangled name of the entity. This is the name seen by the
-- linker, and that should be used, for instance, in an Ada pragma
-- import to use the entity.
-- Returned string is UTF-8 encoded.
----------------
-- References --
----------------
type References_Cursor is new Base_Cursor with private;
function Element (Self : References_Cursor) return Entity_Reference;
type Reference_Iterator is not null access procedure
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : in out References_Cursor'Class);
procedure References
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : in out References_Cursor'Class);
procedure References
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : in out References_Cursor'Class;
Include_Implicit : Boolean;
Include_All : Boolean;
Kinds : String := "");
-- Return all references to the entity.
-- The second version can be used to filter out the list of references
-- more efficiently than checking each of the references returned by the
-- first version.
-- If Include_Implicit is True, then implicit references to the entity
-- are returned.
-- If Include_All is True, then references that are only used to provide
-- extra information on the entity are also returned (for instance the
-- end-of-spec or end-of-body).
-- If Kinds is specified, it is used to filter which kinds of references
-- are returned. If specified, Include_Implicit and Include_All are
-- ignored. Kind is a comma-separated list of names
procedure Bodies
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : in out References_Cursor'Class);
-- Return the location for the bodies of entities, or their full
-- declaration in the case of private entities.
type Recursive_References_Cursor is new References_Cursor with private;
overriding procedure Next (Self : in out Recursive_References_Cursor);
procedure Recursive
(Self : access Xref_Database'Class;
Entity : Entity_Information;
Compute : Reference_Iterator;
Cursor : out Recursive_References_Cursor'Class;
From_Overriding : Boolean := True;
From_Overridden : Boolean := True;
From_Renames : Boolean := True);
-- Execute Compute for Entity and all the entities that override it
-- (if From_Overriding is True), that are overridden by it (if
-- From_Overridden is True) or that rename it (if From_Renames is True).
--
-- Note that Compute is meant to do the actual computation, so it should
-- in general be one of the subprograms defined above like References or
-- Bodies. To get access to the actual list of references, you need to
-- iterate the Cursor, using Has_Element, Element and Next as usual.
--
-- Compute must be callable during the lifetime of Cursor.
-- The Cursor parameter passed to Compute is Cursor itself, so it is
-- possible to store data to be passed to Compute directly in a type
-- derived from Recursive_References_Cursor.
--
-- Freeing Self while the cursor exists results in undefined behavior.
--------------
-- Entities --
--------------
type Entities_Cursor is new Base_Cursor with private;
function Element (Self : Entities_Cursor) return Entity_Information;
procedure From_Prefix
(Self : Xref_Database'Class;
Prefix : String;
Is_Partial : Boolean := True;
Cursor : out Entities_Cursor'Class);
-- Return all entities whose name is either exactly Prefix (when
-- Is_Partial is False) or starts with Prefix (when Is_Partial is True).
procedure Calls
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- All entities called by Self
procedure Callers
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- All entities calling Self
procedure Child_Types
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- The child types for the entity (for instance the classes derived from
-- Self).
procedure Parent_Types
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- The parent types for the entity (for instance the classes or interfaces
-- from which Self derives).
function Parent_Package
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- The parent package for a package.
procedure Method_Of
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- Return the entities (presumably an Ada tagged type or C++ class) for
-- which Entity is a method or primitive operation.
-- An entity might be a primitive for multiple classes, when it is
-- inherited by child classes (it is then also a primitive of the
-- child class).
procedure Methods
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class;
Include_Inherited : Boolean := True);
-- The primitive operations (or methods) of Self.
procedure Discriminants
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- Return the discriminants of the entity
function Discriminant_Of
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Return the entity (Ada record in general) for which Entity is a
-- discriminant.
procedure Fields
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- Return the fields of the entity (record or struct).
-- This does not include discriminants.
procedure Literals
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- The valid literal values for an enumeration type.
procedure Formal_Parameters
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- The formal parameters of a generic entity
function Instance_Of
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Return the generic entity that Entity instantiates.
function Overrides
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- The entity that is overridden by Entity (ie the method in
-- the parent class that is overridden by Entity).
-- If Entity is a parameter of a subprogram, this procedure will return
-- the list of homonym parameters in overridden subprograms, as an
-- extension to the notion of overriding.
procedure Overridden_By
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- The list of entities that override Entity (in general, methods of
-- child classes that override Entity).
-- If Entity is a parameter of a subprogram, this procedure will return
-- the list of homonym parameters in overriding subprograms, as an
-- extension to the notion of overriding.
function Type_Of
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Returns the type of the entity (as declared in the sources for variables
-- and constants, for instance).
-- For a function, this is the returned type.
-- For an enumeration literal, this is the enumeration that declares it.
function Component_Type
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Return the type of the components of Entity (for arrays for instance,
-- this is the type for elements in the array).
-- See also Index_Type.
procedure Index_Types
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
-- The type of indexes for an array (one for each dimensions of the array).
-- See also Component_Type.
function Pointed_Type
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Return the type pointed to by the access/pointer Entity
function Renaming_Of
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Returns the entity renamed by Entity (i.e. Entity acts as an alias
-- for the returned entity)
function Parameter_Of
(Self : Xref_Database'Class;
Entity : Entity_Information) return Entity_Information;
-- Returns the subprogram for which Entity is a parameter
type Recursive_Entities_Cursor is new Entities_Cursor with private;
overriding procedure Next (Self : in out Recursive_Entities_Cursor);
type Entities_Iterator is not null access procedure
(Self : Xref_Database'Class;
Entity : Entity_Information;
Cursor : out Entities_Cursor'Class);
procedure Recursive
(Self : access Xref_Database'Class;
Entity : Entity_Information;
Compute : Entities_Iterator;
Cursor : out Recursive_Entities_Cursor);
-- Returns the result of Compute for Entity and all the entities
-- returned by Compute, recursively. This can for instance be used to
-- retrieve all classes derived directly or indirectly from Entity, by
-- passing Child_Types'Access for Compute, or to get all entities called
-- even indirectly by Entity).
type Parameter_Kind is
(In_Parameter,
Out_Parameter,
In_Out_Parameter,
Access_Parameter);
type Parameter_Information is record
Parameter : Entity_Information;
Kind : Parameter_Kind;
end record;
function Image (Kind : Parameter_Kind) return String;
-- Return a display version of Kind
type Parameters_Cursor is new Base_Cursor with private;
function Element (Self : Parameters_Cursor) return Parameter_Information;
function Parameters
(Self : Xref_Database'Class;
Entity : Entity_Information) return Parameters_Cursor;
-- Return the list of parameters for the given subprogram. They are in the
-- same order as in the source.
--------------
-- Generics --
--------------
function From_Instances
(Self : Xref_Database'Class;
Ref : Entity_Reference) return Entity_Array;
-- Indicates the instantiation chain for the given reference.
-- If we have a nested generic, as in:
-- generic package B is
-- type T is new Integer;
-- end B;
-- generic package A is
-- package BI is new B;
-- end A;
-- package AI is new A;
-- C : AI.BI.T;
--
-- And we start from the reference to T on the last line, the array will
-- contain BI:a.ads:2, then AI:...:1, since T is from the package BI (an
-- instantiation of B), which itself is part of AI, an instantiation of A.
--
-- When you retrieve BI or AI, you can use Instance_Of to get access to
-- resp. B and A.
-----------
-- Files --
-----------
type Files_Cursor is new Base_Cursor with private;
function Element (Self : Files_Cursor) return GNATCOLL.VFS.Virtual_File;
function Project
(Self : Files_Cursor;
Tree : GNATCOLL.Projects.Project_Tree'Class)
return GNATCOLL.Projects.Project_Type;
-- The current file, and the path of the project it belongs to.
function Imported_By
(Self : Xref_Database'Class;
File : GNATCOLL.VFS.Virtual_File;
Project : GNATCOLL.Projects.Project_Type) return Files_Cursor;
-- Returns the list of files that import (via a "with" statement in Ada,
-- or a "#include# in C) the parameter File.
-- The project is used when loading aggregate projects, since although
-- the dependencies do not change, a "with A" could point to dir1/a.ads
-- or dir2/a.ads depending on which project we are using.
function Imports
(Self : Xref_Database'Class;
File : GNATCOLL.VFS.Virtual_File;
Project : GNATCOLL.Projects.Project_Type) return Files_Cursor;
-- Returns the list of files that File depends on directly.
package File_Sets is new Ada.Containers.Ordered_Sets
(GNATCOLL.VFS.Virtual_File, GNATCOLL.VFS."<", GNATCOLL.VFS."=");
function Depends_On
(Self : Xref_Database'Class;
File : GNATCOLL.VFS.Virtual_File;
Project : GNATCOLL.Projects.Project_Type) return File_Sets.Set;
-- Returns the list of files that File depends on explicitly or implicitly.
procedure Referenced_In
(Self : Xref_Database'Class;
File : GNATCOLL.VFS.Virtual_File;
Project : GNATCOLL.Projects.Project_Type;
Cursor : out Entities_Cursor'Class);
procedure Referenced_In
(Self : Xref_Database'Class;
File : GNATCOLL.VFS.Virtual_File;
Project : GNATCOLL.Projects.Project_Type;
Name : String; -- UTF-8 encoded
Cursor : out Entities_Cursor'Class);
-- Returns the list of all the entities referenced at least once in the
-- given file. This of course includes entities declared in that file.
--
-- A version is given that only returns entities with a given name. It is
-- for instance useful when Get_Entity returns No_Entity (because there
-- is no exact reference, nor close-by, for an entity).
type References_Sort is (By_Location, By_Entity);
procedure References
(Self : Xref_Database'Class;
File : GNATCOLL.VFS.Virtual_File;
Cursor : out References_Cursor'Class;
Kind : String := "";
Sort : References_Sort := By_Location);
-- Recompute all references (to any entity) that occur in the file.
-------------------------------------
-- Adding contents to the database --
-------------------------------------
-- In general, applications do not need to explicitly add data to the
-- database. They should only request the parsing of the ALI files, and
-- then query the database.
-- However, in some cases an application might have additional dynamic
-- information (for instance, a source editor might want to manually update
-- the database when a file is modified and the ALI file has not been
-- regenerated). To add support for languages that do not have ALI files,
-- it is expected that this be done in external tools that would directly
-- add information into the database, without going though GNATCOLL.Xref to
-- update it.
function Add_Entity
(Self : Xref_Database;
Name : String; -- UTF-8 encoded
Kind : String;
Decl_File : GNATCOLL.VFS.Virtual_File;
Decl_Project : GNATCOLL.Projects.Project_Type;
Decl_Line : Natural;
Decl_Column : Natural) return Entity_Information;
-- Insert a dummy entity in the database.
-- Kind must correspond to one of the entries
procedure Needs_Update
(Self : in out Xref_Database;
Project : Project_Type;
Update_Needed : out Boolean;
Parse_Runtime_Files : Boolean := True);
-- Checks if the xref info in the DB database is up to date compared with
-- the LI files of the project.
--
-- Parse_Runtime_Files indicates whether we should be looking at the
-- predefined object directories to find extra ALI files to check. This
-- will in general include the Ada runtime.
private
type Xref_Database is tagged record
DB : GNATCOLL.SQL.Exec.Database_Connection;
DB_Created : Boolean := False;
-- Whether we have already created the database (or assumed that it
-- existed). This is so that running Parse_All_LI_Files multiple times
-- for an in-memory database does not always try to recreate it
Tree : access GNATCOLL.Projects.Project_Tree'Class;
-- The project tree
end record;
type Entity_Information is record
Id : Integer;
Fuzzy : Boolean := False;
end record;
No_Entity : constant Entity_Information :=
(Id => -1, Fuzzy => True);
No_Entity_Reference : constant Entity_Reference :=
(Entity => No_Entity,
File => GNATCOLL.VFS.No_File,
Project => GNATCOLL.Projects.No_Project,
Line => -1,
Column => -1,
Kind => Null_Unbounded_String,
Kind_Id => Kind_Id_Declaration,
Is_End_Of_Scope => False,
Scope => No_Entity);
No_Entity_Declaration : constant Entity_Declaration :=
(Name => Null_Unbounded_String,
Kind => Null_Unbounded_String,
Location => No_Entity_Reference,
Flags => (Is_Subprogram => False,
Is_Container => False,
Is_Abstract => True,
Is_Generic => True,
Is_Access => False,
Is_Array => False,
Is_Printable_In_Gdb => False,
Is_Type => False,
Is_Global => False,
Is_Static_Local => False,
Has_Methods => False,
Body_Is_Full_Declaration => True));
package Entity_Sets is
new Ada.Containers.Ordered_Sets (Entity_Information);
type Base_Cursor is abstract tagged record
DBCursor : GNATCOLL.SQL.Exec.Forward_Cursor;
Tree : access Project_Tree'Class;
end record;
type References_Cursor is new Base_Cursor with record
Entity : Entity_Information;
end record;
type Entities_Cursor is new Base_Cursor with null record;
type Parameters_Cursor is new Base_Cursor with null record;
type Files_Cursor is new Base_Cursor with null record;
type Recursive_References_Cursor is new References_Cursor with record
Xref : Xref_Database_Access;
Compute : Reference_Iterator := References'Access;
Visited : Entity_Sets.Set;
To_Visit : Entity_Sets.Set;
From_Overriding : Boolean;
From_Overridden : Boolean;
From_Renames : Boolean;
end record;
type Recursive_Entities_Cursor is new Entities_Cursor with record
Xref : Xref_Database_Access;
Compute : Entities_Iterator := Calls'Access;
Visited : Entity_Sets.Set;
To_Visit : Entity_Sets.Set;
end record;
Ada_Syntax : constant Language_Syntax :=
(Comment_Start => null,
Comment_End => null,
New_Line_Comment_Start => new String'("--"),
New_Line_Comment_Start_Regexp => null);
C_Syntax : constant Language_Syntax :=
(Comment_Start => new String'("/*"),
Comment_End => new String'("*/"),
New_Line_Comment_Start => new String'("//"),
New_Line_Comment_Start_Regexp => null);
Cpp_Syntax : constant Language_Syntax :=
(Comment_Start => new String'("/*"),
Comment_End => new String'("*/"),
New_Line_Comment_Start => new String'("//"),
New_Line_Comment_Start_Regexp => null);
end GNATCOLL.Xref;
|