1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2001-2013, 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 -- This package implements services for Project-aware tools, mostly related
27 -- to the environment (configuration pragma files, path files, mapping files).
29 with GNAT
.Dynamic_HTables
;
34 procedure Initialize
(In_Tree
: Project_Tree_Ref
);
35 -- Initialize global components relative to environment variables
37 procedure Print_Sources
(In_Tree
: Project_Tree_Ref
);
38 -- Output the list of sources after Project files have been scanned
40 procedure Create_Mapping
(In_Tree
: Project_Tree_Ref
);
41 -- Create in memory mapping from the sources of all the projects (in body
42 -- of package Fmap), so that Osint.Find_File will find the correct path
43 -- corresponding to a source.
45 procedure Create_Temp_File
46 (Shared
: Shared_Project_Tree_Data_Access
;
47 Path_FD
: out File_Descriptor
;
48 Path_Name
: out Path_Name_Type
;
50 -- Create temporary file, fail with an error if it could not be created
52 procedure Create_Mapping_File
53 (Project
: Project_Id
;
55 In_Tree
: Project_Tree_Ref
;
56 Name
: out Path_Name_Type
);
57 -- Create a temporary mapping file for project Project. For each source or
58 -- template of Language in the Project, put the mapping of its file name
59 -- and path name in this file. See fmap for a description of the format
60 -- of the mapping file.
62 -- Implementation note: we pass a language name, not a language_index here,
63 -- since the latter would have to match exactly the index of that language
64 -- for the specified project, and that is not information available in
67 procedure Create_Config_Pragmas_File
68 (For_Project
: Project_Id
;
69 In_Tree
: Project_Tree_Ref
);
70 -- If we need SFN pragmas, either for non standard naming schemes or for
73 procedure Create_New_Path_File
74 (Shared
: Shared_Project_Tree_Data_Access
;
75 Path_FD
: out File_Descriptor
;
76 Path_Name
: out Path_Name_Type
);
77 -- Create a new temporary path file, placing file name in Path_Name
79 function Ada_Include_Path
80 (Project
: Project_Id
;
81 In_Tree
: Project_Tree_Ref
;
82 Recursive
: Boolean := False) return String;
83 -- Get the source search path of a Project file. If Recursive it True, get
84 -- all the source directories of the imported and modified project files
85 -- (recursively). If Recursive is False, just get the path for the source
86 -- directories of Project. Note: the resulting String may be empty if there
87 -- is no source directory in the project file.
89 function Ada_Objects_Path
90 (Project
: Project_Id
;
91 In_Tree
: Project_Tree_Ref
;
92 Including_Libraries
: Boolean := True) return String_Access
;
93 -- Get the ADA_OBJECTS_PATH of a Project file. For the first call with the
94 -- exact same parameters, compute it and cache it. When Including_Libraries
95 -- is True, the object directory of a library project is replaced with the
96 -- library ALI directory of this project (usually the library directory of
97 -- the project, except when attribute Library_ALI_Dir is declared) except
98 -- when the library ALI directory does not contain any ALI file.
100 procedure Set_Ada_Paths
101 (Project
: Project_Id
;
102 In_Tree
: Project_Tree_Ref
;
103 Including_Libraries
: Boolean;
104 Include_Path
: Boolean := True;
105 Objects_Path
: Boolean := True);
106 -- Set the environment variables for additional project path files, after
107 -- creating the path files if necessary.
109 function File_Name_Of_Library_Unit_Body
111 Project
: Project_Id
;
112 In_Tree
: Project_Tree_Ref
;
113 Main_Project_Only
: Boolean := True;
114 Full_Path
: Boolean := False) return String;
115 -- Returns the file name of a library unit, in canonical case. Name may or
116 -- may not have an extension (corresponding to the naming scheme of the
117 -- project). If there is no body with this name, but there is a spec, the
118 -- name of the spec is returned.
120 -- If Full_Path is False (the default), the simple file name is returned.
121 -- If Full_Path is True, the absolute path name is returned.
123 -- If neither a body nor a spec can be found, an empty string is returned.
124 -- If Main_Project_Only is True, the unit must be an immediate source of
125 -- Project. If it is False, it may be a source of one of its imported
130 Main_Project
: Project_Id
;
131 In_Tree
: Project_Tree_Ref
) return Project_Id
;
132 -- Get the project of a source. The source file name may be truncated
133 -- (".adb" or ".ads" may be missing). If the source is in a project being
134 -- extended, return the ultimate extending project. If it is not a source
135 -- of any project, return No_Project.
137 procedure Get_Reference
138 (Source_File_Name
: String;
139 In_Tree
: Project_Tree_Ref
;
140 Project
: out Project_Id
;
141 Path
: out Path_Name_Type
);
142 -- Returns the project of a source and its path in displayable form
145 with procedure Action
(Path
: String);
146 procedure For_All_Source_Dirs
147 (Project
: Project_Id
;
148 In_Tree
: Project_Tree_Ref
);
149 -- Iterate through all the source directories of a project, including those
150 -- of imported or modified projects. Only returns those directories that
151 -- potentially contain Ada sources (ie ignore projects that have no Ada
155 with procedure Action
(Path
: String);
156 procedure For_All_Object_Dirs
157 (Project
: Project_Id
;
158 Tree
: Project_Tree_Ref
);
159 -- Iterate through all the object directories of a project, including those
160 -- of imported or modified projects.
166 type Project_Search_Path
is private;
167 -- An abstraction of the project path. This object provides subprograms
168 -- to search for projects on the path (and caches the results to improve
171 No_Project_Search_Path
: constant Project_Search_Path
;
173 procedure Initialize_Default_Project_Path
174 (Self
: in out Project_Search_Path
;
175 Target_Name
: String);
176 -- Initialize Self. It will then contain the default project path on the
177 -- given target (including directories specified by the environment
178 -- variables ADA_PROJECT_PATH and GPR_PROJECT_PATH). This does nothing if
179 -- Self has already been initialized.
181 procedure Copy
(From
: Project_Search_Path
; To
: out Project_Search_Path
);
184 procedure Initialize_Empty
(Self
: in out Project_Search_Path
);
185 -- Initialize self with an empty list of directories. If Self had already
186 -- been set, it is reset.
188 function Is_Initialized
(Self
: Project_Search_Path
) return Boolean;
189 -- Whether Self has been initialized
191 procedure Free
(Self
: in out Project_Search_Path
);
192 -- Free the memory used by Self
194 procedure Add_Directories
195 (Self
: in out Project_Search_Path
;
197 Prepend
: Boolean := False);
198 -- Add one or more directories to the path. Directories added with this
199 -- procedure are added in order after the current directory and before the
200 -- path given by the environment variable GPR_PROJECT_PATH. A value of "-"
201 -- will remove the default project directory from the project path.
203 -- Calls to this subprogram must be performed before the first call to
204 -- Find_Project below, or PATH will be added at the end of the search path.
206 procedure Get_Path
(Self
: Project_Search_Path
; Path
: out String_Access
);
207 -- Return the current value of the project path, either the value set
208 -- during elaboration of the package or, if procedure Set_Project_Path has
209 -- been called, the value set by the last call to Set_Project_Path. The
210 -- returned value must not be modified.
211 -- Self must have been initialized first.
213 procedure Set_Path
(Self
: in out Project_Search_Path
; Path
: String);
214 -- Override the value of the project path. This also removes the implicit
215 -- default search directories.
218 with function Check_Filename
(Name
: String) return Boolean;
219 function Find_Name_In_Path
220 (Self
: Project_Search_Path
;
221 Path
: String) return String_Access
;
222 -- Find a name in the project search path of Self. Check_Filename is
223 -- the predicate to valid the search. If Path is an absolute filename,
224 -- simply calls the predicate with Path. Otherwise, calls the predicate
225 -- for each component of the path. Stops as soon as the predicate
226 -- returns True and returns the name, or returns null in case of failure.
228 procedure Find_Project
229 (Self
: in out Project_Search_Path
;
230 Project_File_Name
: String;
232 Path
: out Namet
.Path_Name_Type
);
233 -- Search for a project with the given name either in Directory (which
234 -- often will be the directory contain the project we are currently parsing
235 -- and which we found a reference to another project), or in the project
236 -- path Self. Self must have been initialized first.
238 -- Project_File_Name can optionally contain directories, and the extension
239 -- (.gpr) for the file name is optional.
241 -- Returns No_Name if no such project was found
243 function Get_Runtime_Path
244 (Self
: Project_Search_Path
;
245 Name
: String) return String_Access
;
246 -- Compute the full path for the project-based runtime name. It first
247 -- checks that name is not a simple name (must has a path separator in it),
248 -- and returns null in case of failure. This check might be removed in the
249 -- future. The name is simply searched on the project path.
252 package Projects_Paths
is new GNAT
.Dynamic_HTables
.Simple_HTable
253 (Header_Num
=> Header_Num
,
254 Element
=> Path_Name_Type
,
255 No_Element
=> No_Path
,
260 type Project_Search_Path
is record
261 Path
: GNAT
.OS_Lib
.String_Access
;
262 -- As a special case, if the first character is '#:" or this variable
263 -- is unset, this means that the PATH has not been fully initialized
264 -- yet (although subprograms above will properly take care of that).
266 Cache
: Projects_Paths
.Instance
;
269 No_Project_Search_Path
: constant Project_Search_Path
:=
271 Cache
=> Projects_Paths
.Nil
);