1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2004-2010, 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 ------------------------------------------------------------------------------
27 with Namet
; use Namet
;
32 with Types
; use Types
;
34 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
38 type Fail_Proc
is access procedure (S
: String);
39 Do_Fail
: Fail_Proc
:= Osint
.Fail
'Access;
40 -- Failing procedure called from procedure Test_If_Relative_Path below. May
43 Project_Tree
: constant Project_Tree_Ref
:= new Project_Tree_Data
;
46 Subdirs_Option
: constant String := "--subdirs=";
47 -- Switch used to indicate that the real directories (object, exec,
48 -- library, ...) are subdirectories of those in the project file.
50 Unchecked_Shared_Lib_Imports
: constant String :=
51 "--unchecked-shared-lib-imports";
52 -- Command line switch to allow shared library projects to import projects
53 -- that are not shared library projects.
56 (Option
: String_Access
;
57 To
: in out String_List_Access
;
58 Last
: in out Natural);
61 To
: in out String_List_Access
;
62 Last
: in out Natural);
63 -- Add a string to a list of strings
65 function Create_Name
(Name
: String) return File_Name_Type
;
66 function Create_Name
(Name
: String) return Name_Id
;
67 function Create_Name
(Name
: String) return Path_Name_Type
;
68 -- Get an id for a name
70 function Base_Name_Index_For
73 Index_Separator
: Character) return File_Name_Type
;
74 -- Returns the base name of Main, without the extension, followed by the
75 -- Index_Separator followed by the Main_Index if it is non-zero.
77 function Executable_Prefix_Path
return String;
78 -- Return the absolute path parent directory of the directory where the
79 -- current executable resides, if its directory is named "bin", otherwise
80 -- return an empty string. When a directory is returned, it is guaranteed
81 -- to end with a directory separator.
83 procedure Inform
(N
: Name_Id
:= No_Name
; Msg
: String);
84 procedure Inform
(N
: File_Name_Type
; Msg
: String);
85 -- Prints out the program name followed by a colon, N and S
87 function File_Not_A_Source_Of
89 Sfile
: File_Name_Type
) return Boolean;
90 -- Check that file name Sfile is one of the source of unit Uname. Returns
91 -- True if the unit is in one of the project file, but the file name is not
92 -- one of its source. Returns False otherwise.
94 function Check_Source_Info_In_ALI
(The_ALI
: ALI
.ALI_Id
) return Boolean;
95 -- Check whether all file references in ALI are still valid (i.e. the
96 -- source files are still associated with the same units). Return True
97 -- if everything is still valid.
99 function Is_External_Assignment
100 (Tree
: Prj
.Tree
.Project_Node_Tree_Ref
;
101 Argv
: String) return Boolean;
102 -- Verify that an external assignment switch is syntactically correct
104 -- Correct forms are:
107 -- -X"name=other value"
109 -- Assumptions: 'First = 1, Argv (1 .. 2) = "-X"
111 -- When this function returns True, the external assignment has been
112 -- entered by a call to Prj.Ext.Add, so that in a project file, External
113 -- ("name") will return "value".
115 procedure Verbose_Msg
118 N2
: Name_Id
:= No_Name
;
120 Prefix
: String := " -> ";
121 Minimum_Verbosity
: Opt
.Verbosity_Level_Type
:= Opt
.Low
);
122 procedure Verbose_Msg
123 (N1
: File_Name_Type
;
125 N2
: File_Name_Type
:= No_File
;
127 Prefix
: String := " -> ";
128 Minimum_Verbosity
: Opt
.Verbosity_Level_Type
:= Opt
.Low
);
129 -- If the verbose flag (Verbose_Mode) is set and the verbosity level is at
130 -- least equal to Minimum_Verbosity, then print Prefix to standard output
131 -- followed by N1 and S1. If N2 /= No_Name then N2 is printed after S1. S2
132 -- is printed last. Both N1 and N2 are printed in quotation marks. The two
133 -- forms differ only in taking Name_Id or File_name_Type arguments.
135 function Linker_Options_Switches
136 (Project
: Project_Id
;
137 In_Tree
: Project_Tree_Ref
) return String_List
;
138 -- Collect the options specified in the Linker'Linker_Options attributes
139 -- of project Project, in project tree In_Tree, and in the projects that
140 -- it imports directly or indirectly, and returns the result.
142 -- Package Mains is used to store the mains specified on the command line
143 -- and to retrieve them when a project file is used, to verify that the
144 -- files exist and that they belong to a project file.
146 function Unit_Index_Of
(ALI_File
: File_Name_Type
) return Int
;
147 -- Find the index of a unit in a source file. Return zero if the file is
148 -- not a multi-unit source file.
150 procedure Test_If_Relative_Path
151 (Switch
: in out String_Access
;
153 Including_L_Switch
: Boolean := True;
154 Including_Non_Switch
: Boolean := True;
155 Including_RTS
: Boolean := False);
156 -- Test if Switch is a relative search path switch. If it is, fail if
157 -- Parent is the empty string, otherwise prepend the path with Parent.
158 -- This subprogram is only called when using project files. For gnatbind
159 -- switches, Including_L_Switch is False, because the argument of the -L
160 -- switch is not a path. If Including_RTS is True, process also switches
163 function Path_Or_File_Name
(Path
: Path_Name_Type
) return String;
164 -- Returns a file name if -df is used, otherwise return a path name
170 -- Mains are stored in a table. An index is used to retrieve the mains
175 procedure Add_Main
(Name
: String);
176 -- Add one main to the table
178 procedure Set_Index
(Index
: Int
);
180 procedure Set_Location
(Location
: Source_Ptr
);
181 -- Set the location of the last main added. By default, the location is
188 -- Reset the index to the beginning of the table
190 function Next_Main
return String;
191 -- Increase the index and return the next main. If table is exhausted,
192 -- return an empty string.
194 function Get_Index
return Int
;
196 function Get_Location
return Source_Ptr
;
197 -- Get the location of the current main
199 procedure Update_Main
(Name
: String);
200 -- Update the file name of the current main
202 function Number_Of_Mains
return Natural;
203 -- Returns the number of mains added with Add_Main since the last call
208 ----------------------
209 -- Marking Routines --
210 ----------------------
212 procedure Mark
(Source_File
: File_Name_Type
; Index
: Int
:= 0);
213 -- Mark a unit, identified by its source file and, when Index is not 0, the
214 -- index of the unit in the source file. Marking is used to signal that the
215 -- unit has already been inserted in the Q.
218 (Source_File
: File_Name_Type
;
219 Index
: Int
:= 0) return Boolean;
220 -- Returns True if the unit was previously marked
222 procedure Delete_All_Marks
;
223 -- Remove all file/index couples marked