1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1998-2015, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- Miscellaneous utilities for the cross-referencing tool
29 with Xr_Tabls
; use Xr_Tabls
;
31 with GNAT
.Directory_Operations
; use GNAT
.Directory_Operations
;
32 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
33 with GNAT
.Dynamic_Tables
;
34 with GNAT
.Regexp
; use GNAT
.Regexp
;
38 subtype File_Name_String
is String (1 .. Hostparm
.Max_Name_Length
);
39 subtype Line_String
is String (1 .. Hostparm
.Max_Line_Length
);
41 type ALI_File
is limited private;
47 type Rec_DIR
is limited private;
48 -- This one is used for recursive search of .ali files
50 procedure Find_ALI_Files
;
51 -- Find all the ali files that we will have to parse, and have them to
58 type Search_Pattern
is private;
59 type Search_Pattern_Ptr
is access all Search_Pattern
;
62 (Pattern
: in out Search_Pattern
;
64 Glob
: Boolean := False);
65 -- Add a new entity to the search pattern (the entity should have the
66 -- form pattern[:file[:line[:column]]], and it is parsed entirely in
67 -- this procedure. Glob indicates if we should use the 'globbing
68 -- patterns' (True) or the full regular expressions (False)
70 procedure Add_Xref_File
(File
: String);
71 -- Add a new file in the list of files to search for references. File
72 -- is interpreted as a globbing regular expression, which is expanded.
74 Invalid_Argument
: exception;
75 -- Exception raised when there is a syntax error in the command line
77 -----------------------
78 -- Output Algorithms --
79 -----------------------
81 procedure Print_Gnatfind
82 (References
: Boolean;
83 Full_Path_Name
: Boolean);
84 procedure Print_Unused
(Full_Path_Name
: Boolean);
85 procedure Print_Vi
(Full_Path_Name
: Boolean);
86 procedure Print_Xref
(Full_Path_Name
: Boolean);
87 -- The actual print procedures. These functions step through the symbol
88 -- table and print all the symbols if they match the files given on the
89 -- command line (they already match the entities if they are in the
92 ------------------------
93 -- General Algorithms --
94 ------------------------
96 function Default_Project_File
(Dir_Name
: String) return String;
97 -- Returns the default Project file name for the directory Dir_Name
100 (Pattern
: Search_Pattern
;
101 Local_Symbols
: Boolean;
102 Wide_Search
: Boolean;
105 Type_Tree
: Boolean);
106 -- Search every ALI file for entities matching Pattern, and add
107 -- these entities to the internal symbol tables.
109 -- If Wide_Search is True, all ALI files found in the object path
112 -- If Read_Only is True, read-only ALI files will also be parsed,
113 -- similar to gnatmake -a.
115 -- If Der_Info is true, then the derived type information will be
118 -- If Type_Tree is true, then the type hierarchy will be searched
119 -- going from the pattern to the parent type.
121 procedure Search_Xref
122 (Local_Symbols
: Boolean;
125 -- Search every ali file given in the command line and all their
126 -- dependencies. If Read_Only is True, we parse the read-only ali
127 -- files too. If Der_Mode is true then the derived type information will
131 type Rec_DIR
is limited record
132 Dir
: GNAT
.Directory_Operations
.Dir_Type
;
135 package Dependencies_Tables
is new GNAT
.Dynamic_Tables
136 (Table_Component_Type
=> Xr_Tabls
.File_Reference
,
137 Table_Index_Type
=> Natural,
138 Table_Low_Bound
=> 1,
139 Table_Initial
=> 400,
140 Table_Increment
=> 100);
141 use Dependencies_Tables
;
143 type Dependencies
is new Dependencies_Tables
.Instance
;
145 type ALI_File
is limited record
146 Buffer
: String_Access
:= null;
147 -- Buffer used to read the whole file at once
149 Current_Line
: Positive;
150 -- Start of the current line in Buffer
152 Xref_Line
: Positive;
153 -- Start of the xref lines in Buffer
155 X_File
: Xr_Tabls
.File_Reference
;
156 -- Stores the cross-referencing file-name ("X..." lines), as an
157 -- index into the dependencies table
160 -- Store file name associated with each number ("D..." lines)
163 -- The following record type stores all the patterns that are searched for
165 type Search_Pattern
is record
166 Entity
: GNAT
.Regexp
.Regexp
;
167 -- A regular expression matching the entities we are looking for.
168 -- File is a list of the places where the declaration of the entities
169 -- has to be. When the user enters a file:line:column on the command
170 -- line, it is stored as "Entity_Name Declaration_File:line:column"
172 File_Ref
: Xr_Tabls
.File_Reference
;
173 -- A reference to the source file, if any
175 Initialized
: Boolean := False;
176 -- Set to True when Entity has been initialized