1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2001-2012, 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 ------------------------------------------------------------------------------
28 with Osint
; use Osint
;
29 with Output
; use Output
;
32 with Prj
.Err
; use Prj
.Err
;
33 with Snames
; use Snames
;
34 with Uintp
; use Uintp
;
36 with Ada
.Characters
.Handling
; use Ada
.Characters
.Handling
;
37 with Ada
.Containers
.Ordered_Sets
;
38 with Ada
.Unchecked_Deallocation
;
40 with GNAT
.Case_Util
; use GNAT
.Case_Util
;
41 with GNAT
.Directory_Operations
; use GNAT
.Directory_Operations
;
47 type Restricted_Lang_Access
is access Restricted_Lang
;
48 type Restricted_Lang
is record
50 Next
: Restricted_Lang_Access
;
53 Restricted_Languages
: Restricted_Lang_Access
:= null;
54 -- When null, all languages are allowed, otherwise only the languages in
55 -- the list are allowed.
57 Object_Suffix
: constant String := Get_Target_Object_Suffix
.all;
58 -- File suffix for object files
60 Initial_Buffer_Size
: constant := 100;
61 -- Initial size for extensible buffer used in Add_To_Buffer
63 The_Empty_String
: Name_Id
:= No_Name
;
65 Debug_Level
: Integer := 0;
66 -- Current indentation level for debug traces
68 type Cst_String_Access
is access constant String;
70 All_Lower_Case_Image
: aliased constant String := "lowercase";
71 All_Upper_Case_Image
: aliased constant String := "UPPERCASE";
72 Mixed_Case_Image
: aliased constant String := "MixedCase";
74 The_Casing_Images
: constant array (Known_Casing
) of Cst_String_Access
:=
75 (All_Lower_Case
=> All_Lower_Case_Image
'Access,
76 All_Upper_Case
=> All_Upper_Case_Image
'Access,
77 Mixed_Case
=> Mixed_Case_Image
'Access);
79 procedure Free
(Project
: in out Project_Id
);
80 -- Free memory allocated for Project
82 procedure Free_List
(Languages
: in out Language_Ptr
);
83 procedure Free_List
(Source
: in out Source_Id
);
84 procedure Free_List
(Languages
: in out Language_List
);
85 -- Free memory allocated for the list of languages or sources
87 procedure Reset_Units_In_Table
(Table
: in out Units_Htable
.Instance
);
88 -- Resets all Units to No_Unit_Index Unit.File_Names (Spec).Unit &
89 -- Unit.File_Names (Impl).Unit in the given table.
91 procedure Free_Units
(Table
: in out Units_Htable
.Instance
);
92 -- Free memory allocated for unit information in the project
94 procedure Language_Changed
(Iter
: in out Source_Iterator
);
95 procedure Project_Changed
(Iter
: in out Source_Iterator
);
96 -- Called when a new project or language was selected for this iterator
98 function Contains_ALI_Files
(Dir
: Path_Name_Type
) return Boolean;
99 -- Return True if there is at least one ALI file in the directory Dir
101 -----------------------------
102 -- Add_Restricted_Language --
103 -----------------------------
105 procedure Add_Restricted_Language
(Name
: String) is
106 N
: String (1 .. Name
'Length) := Name
;
110 Add_Str_To_Name_Buffer
(N
);
111 Restricted_Languages
:=
112 new Restricted_Lang
'(Name => Name_Find, Next => Restricted_Languages);
113 end Add_Restricted_Language;
119 procedure Add_To_Buffer
121 To : in out String_Access;
122 Last : in out Natural)
126 To := new String (1 .. Initial_Buffer_Size);
130 -- If Buffer is too small, double its size
132 while Last + S'Length > To'Last loop
134 New_Buffer : constant String_Access :=
135 new String (1 .. 2 * Last);
138 New_Buffer (1 .. Last) := To (1 .. Last);
144 To (Last + 1 .. Last + S'Length) := S;
145 Last := Last + S'Length;
148 ---------------------------------
149 -- Current_Object_Path_File_Of --
150 ---------------------------------
152 function Current_Object_Path_File_Of
153 (Shared : Shared_Project_Tree_Data_Access) return Path_Name_Type
156 return Shared.Private_Part.Current_Object_Path_File;
157 end Current_Object_Path_File_Of;
159 ---------------------------------
160 -- Current_Source_Path_File_Of --
161 ---------------------------------
163 function Current_Source_Path_File_Of
164 (Shared : Shared_Project_Tree_Data_Access)
165 return Path_Name_Type is
167 return Shared.Private_Part.Current_Source_Path_File;
168 end Current_Source_Path_File_Of;
170 ---------------------------
171 -- Delete_Temporary_File --
172 ---------------------------
174 procedure Delete_Temporary_File
175 (Shared : Shared_Project_Tree_Data_Access := null;
176 Path : Path_Name_Type)
179 pragma Warnings (Off, Dont_Care);
182 if not Debug.Debug_Flag_N then
183 if Current_Verbosity = High then
184 Write_Line ("Removing temp file: " & Get_Name_String (Path));
187 Delete_File (Get_Name_String (Path), Dont_Care);
189 if Shared /= null then
191 1 .. Temp_Files_Table.Last (Shared.Private_Part.Temp_Files)
193 if Shared.Private_Part.Temp_Files.Table (Index) = Path then
194 Shared.Private_Part.Temp_Files.Table (Index) := No_Path;
199 end Delete_Temporary_File;
201 ------------------------------
202 -- Delete_Temp_Config_Files --
203 ------------------------------
205 procedure Delete_Temp_Config_Files (Project_Tree : Project_Tree_Ref) is
207 pragma Warnings (Off, Success);
212 if not Debug.Debug_Flag_N then
213 if Project_Tree /= null then
214 Proj := Project_Tree.Projects;
215 while Proj /= null loop
216 if Proj.Project.Config_File_Temp then
217 Delete_Temporary_File
218 (Project_Tree.Shared, Proj.Project.Config_File_Name);
220 -- Make sure that we don't have a config file for this
221 -- project, in case there are several mains. In this case,
222 -- we will recreate another config file: we cannot reuse the
223 -- one that we just deleted!
225 Proj.Project.Config_Checked := False;
226 Proj.Project.Config_File_Name := No_Path;
227 Proj.Project.Config_File_Temp := False;
234 end Delete_Temp_Config_Files;
236 ---------------------------
237 -- Delete_All_Temp_Files --
238 ---------------------------
240 procedure Delete_All_Temp_Files
241 (Shared : Shared_Project_Tree_Data_Access)
244 pragma Warnings (Off, Dont_Care);
246 Path : Path_Name_Type;
249 if not Debug.Debug_Flag_N then
251 1 .. Temp_Files_Table.Last (Shared.Private_Part.Temp_Files)
253 Path := Shared.Private_Part.Temp_Files.Table (Index);
255 if Path /= No_Path then
256 if Current_Verbosity = High then
257 Write_Line ("Removing temp file: "
258 & Get_Name_String (Path));
261 Delete_File (Get_Name_String (Path), Dont_Care);
265 Temp_Files_Table.Free (Shared.Private_Part.Temp_Files);
266 Temp_Files_Table.Init (Shared.Private_Part.Temp_Files);
269 -- If any of the environment variables ADA_PRJ_INCLUDE_FILE or
270 -- ADA_PRJ_OBJECTS_FILE has been set, then reset their value to
271 -- the empty string. On VMS, this has the effect of deassigning
272 -- the logical names.
274 if Shared.Private_Part.Current_Source_Path_File /= No_Path then
275 Setenv (Project_Include_Path_File, "");
278 if Shared.Private_Part.Current_Object_Path_File /= No_Path then
279 Setenv (Project_Objects_Path_File, "");
281 end Delete_All_Temp_Files;
283 ---------------------
284 -- Dependency_Name --
285 ---------------------
287 function Dependency_Name
288 (Source_File_Name : File_Name_Type;
289 Dependency : Dependency_File_Kind) return File_Name_Type
297 return Extend_Name (Source_File_Name, Makefile_Dependency_Suffix);
299 when ALI_File | ALI_Closure =>
300 return Extend_Name (Source_File_Name, ALI_Dependency_Suffix);
308 function Empty_File return File_Name_Type is
310 return File_Name_Type (The_Empty_String);
317 function Empty_Project
318 (Qualifier : Project_Qualifier) return Project_Data
321 Prj.Initialize (Tree => No_Project_Tree);
324 Data : Project_Data (Qualifier => Qualifier);
327 -- Only the fields for which no default value could be provided in
328 -- prj.ads are initialized below.
330 Data.Config := Default_Project_Config;
339 function Empty_String return Name_Id is
341 return The_Empty_String;
348 procedure Expect (The_Token : Token_Type; Token_Image : String) is
350 if Token /= The_Token then
352 -- ??? Should pass user flags here instead
354 Error_Msg (Gnatmake_Flags, Token_Image & " expected", Token_Ptr);
363 (File : File_Name_Type;
364 With_Suffix : String) return File_Name_Type
369 Get_Name_String (File);
370 Last := Name_Len + 1;
372 while Name_Len /= 0 and then Name_Buffer (Name_Len) /= '.' loop
373 Name_Len := Name_Len - 1;
376 if Name_Len <= 1 then
380 for J in With_Suffix'Range loop
381 Name_Buffer (Name_Len) := With_Suffix (J);
382 Name_Len := Name_Len + 1;
385 Name_Len := Name_Len - 1;
389 -------------------------
390 -- Is_Allowed_Language --
391 -------------------------
393 function Is_Allowed_Language (Name : Name_Id) return Boolean is
394 R : Restricted_Lang_Access := Restricted_Languages;
395 Lang : constant String := Get_Name_String (Name);
403 if Get_Name_String (R.Name) = Lang then
412 end Is_Allowed_Language;
414 ---------------------
415 -- Project_Changed --
416 ---------------------
418 procedure Project_Changed (Iter : in out Source_Iterator) is
420 if Iter.Project /= null then
421 Iter.Language := Iter.Project.Project.Languages;
422 Language_Changed (Iter);
426 ----------------------
427 -- Language_Changed --
428 ----------------------
430 procedure Language_Changed (Iter : in out Source_Iterator) is
432 Iter.Current := No_Source;
434 if Iter.Language_Name /= No_Name then
435 while Iter.Language /= null
436 and then Iter.Language.Name /= Iter.Language_Name
438 Iter.Language := Iter.Language.Next;
442 -- If there is no matching language in this project, move to next
444 if Iter.Language = No_Language_Index then
445 if Iter.All_Projects then
447 Iter.Project := Iter.Project.Next;
448 exit when Iter.Project = null
449 or else Iter.Encapsulated_Libs
450 or else not Iter.Project.From_Encapsulated_Lib;
453 Project_Changed (Iter);
455 Iter.Project := null;
459 Iter.Current := Iter.Language.First_Source;
461 if Iter.Current = No_Source then
462 Iter.Language := Iter.Language.Next;
463 Language_Changed (Iter);
466 end Language_Changed;
468 ---------------------
469 -- For_Each_Source --
470 ---------------------
472 function For_Each_Source
473 (In_Tree : Project_Tree_Ref;
474 Project : Project_Id := No_Project;
475 Language : Name_Id := No_Name;
476 Encapsulated_Libs : Boolean := True) return Source_Iterator
478 Iter : Source_Iterator;
480 Iter := Source_Iterator'
482 Project
=> In_Tree
.Projects
,
483 All_Projects
=> Project
= No_Project
,
484 Language_Name
=> Language
,
485 Language
=> No_Language_Index
,
486 Current
=> No_Source
,
487 Encapsulated_Libs
=> Encapsulated_Libs
);
489 if Project
/= null then
490 while Iter
.Project
/= null
491 and then Iter
.Project
.Project
/= Project
493 Iter
.Project
:= Iter
.Project
.Next
;
497 while not Iter
.Encapsulated_Libs
498 and then Iter
.Project
.From_Encapsulated_Lib
500 Iter
.Project
:= Iter
.Project
.Next
;
504 Project_Changed
(Iter
);
513 function Element
(Iter
: Source_Iterator
) return Source_Id
is
522 procedure Next
(Iter
: in out Source_Iterator
) is
524 Iter
.Current
:= Iter
.Current
.Next_In_Lang
;
525 if Iter
.Current
= No_Source
then
526 Iter
.Language
:= Iter
.Language
.Next
;
527 Language_Changed
(Iter
);
531 --------------------------------
532 -- For_Every_Project_Imported --
533 --------------------------------
535 procedure For_Every_Project_Imported_Context
537 Tree
: Project_Tree_Ref
;
538 With_State
: in out State
;
539 Include_Aggregated
: Boolean := True;
540 Imported_First
: Boolean := False)
542 use Project_Boolean_Htable
;
544 procedure Recursive_Check_Context
545 (Project
: Project_Id
;
546 Tree
: Project_Tree_Ref
;
547 In_Aggregate_Lib
: Boolean;
548 From_Encapsulated_Lib
: Boolean);
549 -- Recursively handle the project tree creating a new context for
550 -- keeping track about already handled projects.
552 -----------------------------
553 -- Recursive_Check_Context --
554 -----------------------------
556 procedure Recursive_Check_Context
557 (Project
: Project_Id
;
558 Tree
: Project_Tree_Ref
;
559 In_Aggregate_Lib
: Boolean;
560 From_Encapsulated_Lib
: Boolean)
562 package Name_Id_Set
is
563 new Ada
.Containers
.Ordered_Sets
(Element_Type
=> Name_Id
);
565 Seen_Name
: Name_Id_Set
.Set
;
566 -- This set is needed to ensure that we do not haandle the same
567 -- project twice in the context of aggregate libraries.
569 procedure Recursive_Check
570 (Project
: Project_Id
;
571 Tree
: Project_Tree_Ref
;
572 In_Aggregate_Lib
: Boolean;
573 From_Encapsulated_Lib
: Boolean);
574 -- Check if project has already been seen. If not, mark it as Seen,
575 -- Call Action, and check all its imported and aggregated projects.
577 ---------------------
578 -- Recursive_Check --
579 ---------------------
581 procedure Recursive_Check
582 (Project
: Project_Id
;
583 Tree
: Project_Tree_Ref
;
584 In_Aggregate_Lib
: Boolean;
585 From_Encapsulated_Lib
: Boolean)
588 function Has_Sources
(P
: Project_Id
) return Boolean;
589 -- Returns True if P has sources
591 function Get_From_Tree
(P
: Project_Id
) return Project_Id
;
592 -- Get project P from Tree. If P has no sources get another
593 -- instance of this project with sources. If P has sources,
600 function Has_Sources
(P
: Project_Id
) return Boolean is
605 while Lang
/= No_Language_Index
loop
606 if Lang
.First_Source
/= No_Source
then
620 function Get_From_Tree
(P
: Project_Id
) return Project_Id
is
621 List
: Project_List
:= Tree
.Projects
;
624 if not Has_Sources
(P
) then
625 while List
/= null loop
626 if List
.Project
.Name
= P
.Name
627 and then Has_Sources
(List
.Project
)
643 -- Start of processing for Recursive_Check
646 if not Seen_Name
.Contains
(Project
.Name
) then
648 -- Even if a project is aggregated multiple times in an
649 -- aggregated library, we will only return it once.
651 Seen_Name
.Include
(Project
.Name
);
653 if not Imported_First
then
655 (Get_From_Tree
(Project
),
657 Project_Context
'(In_Aggregate_Lib, From_Encapsulated_Lib),
661 -- Visit all extended projects
663 if Project.Extends /= No_Project then
665 (Project.Extends, Tree,
666 In_Aggregate_Lib, From_Encapsulated_Lib);
669 -- Visit all imported projects
671 List := Project.Imported_Projects;
672 while List /= null loop
676 From_Encapsulated_Lib
677 or else Project.Standalone_Library = Encapsulated);
681 -- Visit all aggregated projects
683 if Include_Aggregated
684 and then Project.Qualifier in Aggregate_Project
687 Agg : Aggregated_Project_List;
690 Agg := Project.Aggregated_Projects;
691 while Agg /= null loop
692 pragma Assert (Agg.Project /= No_Project);
694 -- For aggregated libraries, the tree must be the one
695 -- of the aggregate library.
697 if Project.Qualifier = Aggregate_Library then
701 From_Encapsulated_Lib
703 Project.Standalone_Library = Encapsulated);
706 -- Use a new context as we want to returns the same
707 -- project in different project tree for aggregated
710 Recursive_Check_Context
711 (Agg.Project, Agg.Tree, False, False);
719 if Imported_First then
721 (Get_From_Tree (Project),
723 Project_Context'(In_Aggregate_Lib
, From_Encapsulated_Lib
),
729 -- Start of processing for Recursive_Check_Context
733 (Project
, Tree
, In_Aggregate_Lib
, From_Encapsulated_Lib
);
734 end Recursive_Check_Context
;
736 -- Start of processing for For_Every_Project_Imported
739 Recursive_Check_Context
742 In_Aggregate_Lib
=> False,
743 From_Encapsulated_Lib
=> False);
744 end For_Every_Project_Imported_Context
;
746 procedure For_Every_Project_Imported
748 Tree
: Project_Tree_Ref
;
749 With_State
: in out State
;
750 Include_Aggregated
: Boolean := True;
751 Imported_First
: Boolean := False)
754 (Project
: Project_Id
;
755 Tree
: Project_Tree_Ref
;
756 Context
: Project_Context
;
757 With_State
: in out State
);
758 -- Action wrapper for handling the context
765 (Project
: Project_Id
;
766 Tree
: Project_Tree_Ref
;
767 Context
: Project_Context
;
768 With_State
: in out State
)
770 pragma Unreferenced
(Context
);
772 Action
(Project
, Tree
, With_State
);
775 procedure For_Projects
is
776 new For_Every_Project_Imported_Context
(State
, Internal
);
779 For_Projects
(By
, Tree
, With_State
, Include_Aggregated
, Imported_First
);
780 end For_Every_Project_Imported
;
787 (In_Tree
: Project_Tree_Ref
;
788 Project
: Project_Id
;
789 In_Imported_Only
: Boolean := False;
790 In_Extended_Only
: Boolean := False;
791 Base_Name
: File_Name_Type
;
792 Index
: Int
:= 0) return Source_Id
794 Result
: Source_Id
:= No_Source
;
796 procedure Look_For_Sources
798 Tree
: Project_Tree_Ref
;
799 Src
: in out Source_Id
);
800 -- Look for Base_Name in the sources of Proj
802 ----------------------
803 -- Look_For_Sources --
804 ----------------------
806 procedure Look_For_Sources
808 Tree
: Project_Tree_Ref
;
809 Src
: in out Source_Id
)
811 Iterator
: Source_Iterator
;
814 Iterator
:= For_Each_Source
(In_Tree
=> Tree
, Project
=> Proj
);
815 while Element
(Iterator
) /= No_Source
loop
816 if Element
(Iterator
).File
= Base_Name
817 and then (Index
= 0 or else Element
(Iterator
).Index
= Index
)
819 Src
:= Element
(Iterator
);
821 -- If the source has been excluded, continue looking. We will
822 -- get the excluded source only if there is no other source
823 -- with the same base name that is not locally removed.
825 if not Element
(Iterator
).Locally_Removed
then
832 end Look_For_Sources
;
834 procedure For_Imported_Projects
is new For_Every_Project_Imported
835 (State
=> Source_Id
, Action
=> Look_For_Sources
);
839 -- Start of processing for Find_Source
842 if In_Extended_Only
then
844 while Proj
/= No_Project
loop
845 Look_For_Sources
(Proj
, In_Tree
, Result
);
846 exit when Result
/= No_Source
;
848 Proj
:= Proj
.Extends
;
851 elsif In_Imported_Only
then
852 Look_For_Sources
(Project
, In_Tree
, Result
);
854 if Result
= No_Source
then
855 For_Imported_Projects
858 Include_Aggregated
=> False,
859 With_State
=> Result
);
863 Look_For_Sources
(No_Project
, In_Tree
, Result
);
873 function Hash
is new GNAT
.HTable
.Hash
(Header_Num
=> Header_Num
);
874 -- Used in implementation of other functions Hash below
876 function Hash
(Name
: File_Name_Type
) return Header_Num
is
878 return Hash
(Get_Name_String
(Name
));
881 function Hash
(Name
: Name_Id
) return Header_Num
is
883 return Hash
(Get_Name_String
(Name
));
886 function Hash
(Name
: Path_Name_Type
) return Header_Num
is
888 return Hash
(Get_Name_String
(Name
));
891 function Hash
(Project
: Project_Id
) return Header_Num
is
893 if Project
= No_Project
then
894 return Header_Num
'First;
896 return Hash
(Get_Name_String
(Project
.Name
));
904 function Image
(The_Casing
: Casing_Type
) return String is
906 return The_Casing_Images
(The_Casing
).all;
909 -----------------------------
910 -- Is_Standard_GNAT_Naming --
911 -----------------------------
913 function Is_Standard_GNAT_Naming
914 (Naming
: Lang_Naming_Data
) return Boolean
917 return Get_Name_String
(Naming
.Spec_Suffix
) = ".ads"
918 and then Get_Name_String
(Naming
.Body_Suffix
) = ".adb"
919 and then Get_Name_String
(Naming
.Dot_Replacement
) = "-";
920 end Is_Standard_GNAT_Naming
;
926 procedure Initialize
(Tree
: Project_Tree_Ref
) is
928 if The_Empty_String
= No_Name
then
931 The_Empty_String
:= Name_Find
;
935 -- Make sure that new reserved words after Ada 95 may be used as
938 Opt
.Ada_Version
:= Opt
.Ada_95
;
940 Set_Name_Table_Byte
(Name_Project
, Token_Type
'Pos (Tok_Project
));
941 Set_Name_Table_Byte
(Name_Extends
, Token_Type
'Pos (Tok_Extends
));
942 Set_Name_Table_Byte
(Name_External
, Token_Type
'Pos (Tok_External
));
944 (Name_External_As_List
, Token_Type
'Pos (Tok_External_As_List
));
947 if Tree
/= No_Project_Tree
then
956 function Is_Extending
957 (Extending
: Project_Id
;
958 Extended
: Project_Id
) return Boolean
964 while Proj
/= No_Project
loop
965 if Proj
= Extended
then
969 Proj
:= Proj
.Extends
;
980 (Source_File_Name
: File_Name_Type
;
981 Object_File_Suffix
: Name_Id
:= No_Name
) return File_Name_Type
984 if Object_File_Suffix
= No_Name
then
986 (Source_File_Name
, Object_Suffix
);
989 (Source_File_Name
, Get_Name_String
(Object_File_Suffix
));
994 (Source_File_Name
: File_Name_Type
;
996 Index_Separator
: Character;
997 Object_File_Suffix
: Name_Id
:= No_Name
) return File_Name_Type
999 Index_Img
: constant String := Source_Index
'Img;
1003 Get_Name_String
(Source_File_Name
);
1006 while Last
> 1 and then Name_Buffer
(Last
) /= '.' loop
1011 Name_Len
:= Last
- 1;
1014 Add_Char_To_Name_Buffer
(Index_Separator
);
1015 Add_Str_To_Name_Buffer
(Index_Img
(2 .. Index_Img
'Last));
1017 if Object_File_Suffix
= No_Name
then
1018 Add_Str_To_Name_Buffer
(Object_Suffix
);
1020 Add_Str_To_Name_Buffer
(Get_Name_String
(Object_File_Suffix
));
1026 ----------------------
1027 -- Record_Temp_File --
1028 ----------------------
1030 procedure Record_Temp_File
1031 (Shared
: Shared_Project_Tree_Data_Access
;
1032 Path
: Path_Name_Type
)
1035 Temp_Files_Table
.Append
(Shared
.Private_Part
.Temp_Files
, Path
);
1036 end Record_Temp_File
;
1042 procedure Free
(List
: in out Aggregated_Project_List
) is
1043 procedure Unchecked_Free
is new Ada
.Unchecked_Deallocation
1044 (Aggregated_Project
, Aggregated_Project_List
);
1045 Tmp
: Aggregated_Project_List
;
1047 while List
/= null loop
1052 Unchecked_Free
(List
);
1057 ----------------------------
1058 -- Add_Aggregated_Project --
1059 ----------------------------
1061 procedure Add_Aggregated_Project
1062 (Project
: Project_Id
; Path
: Path_Name_Type
) is
1064 Project
.Aggregated_Projects
:= new Aggregated_Project
'
1066 Project => No_Project,
1068 Next => Project.Aggregated_Projects);
1069 end Add_Aggregated_Project;
1075 procedure Free (Project : in out Project_Id) is
1076 procedure Unchecked_Free is new Ada.Unchecked_Deallocation
1077 (Project_Data, Project_Id);
1080 if Project /= null then
1081 Free (Project.Ada_Include_Path);
1082 Free (Project.Objects_Path);
1083 Free (Project.Ada_Objects_Path);
1084 Free_List (Project.Imported_Projects, Free_Project => False);
1085 Free_List (Project.All_Imported_Projects, Free_Project => False);
1086 Free_List (Project.Languages);
1088 case Project.Qualifier is
1089 when Aggregate | Aggregate_Library =>
1090 Free (Project.Aggregated_Projects);
1096 Unchecked_Free (Project);
1104 procedure Free_List (Languages : in out Language_List) is
1105 procedure Unchecked_Free is new Ada.Unchecked_Deallocation
1106 (Language_List_Element, Language_List);
1107 Tmp : Language_List;
1109 while Languages /= null loop
1110 Tmp := Languages.Next;
1111 Unchecked_Free (Languages);
1120 procedure Free_List (Source : in out Source_Id) is
1121 procedure Unchecked_Free is new
1122 Ada.Unchecked_Deallocation (Source_Data, Source_Id);
1127 while Source /= No_Source loop
1128 Tmp := Source.Next_In_Lang;
1129 Free_List (Source.Alternate_Languages);
1131 if Source.Unit /= null
1132 and then Source.Kind in Spec_Or_Body
1134 Source.Unit.File_Names (Source.Kind) := null;
1137 Unchecked_Free (Source);
1147 (List : in out Project_List;
1148 Free_Project : Boolean)
1150 procedure Unchecked_Free is new
1151 Ada.Unchecked_Deallocation (Project_List_Element, Project_List);
1156 while List /= null loop
1159 if Free_Project then
1160 Free (List.Project);
1163 Unchecked_Free (List);
1172 procedure Free_List (Languages : in out Language_Ptr) is
1173 procedure Unchecked_Free is new
1174 Ada.Unchecked_Deallocation (Language_Data, Language_Ptr);
1179 while Languages /= null loop
1180 Tmp := Languages.Next;
1181 Free_List (Languages.First_Source);
1182 Unchecked_Free (Languages);
1187 --------------------------
1188 -- Reset_Units_In_Table --
1189 --------------------------
1191 procedure Reset_Units_In_Table (Table : in out Units_Htable.Instance) is
1195 Unit := Units_Htable.Get_First (Table);
1196 while Unit /= No_Unit_Index loop
1197 if Unit.File_Names (Spec) /= null then
1198 Unit.File_Names (Spec).Unit := No_Unit_Index;
1201 if Unit.File_Names (Impl) /= null then
1202 Unit.File_Names (Impl).Unit := No_Unit_Index;
1205 Unit := Units_Htable.Get_Next (Table);
1207 end Reset_Units_In_Table;
1213 procedure Free_Units (Table : in out Units_Htable.Instance) is
1214 procedure Unchecked_Free is new
1215 Ada.Unchecked_Deallocation (Unit_Data, Unit_Index);
1220 Unit := Units_Htable.Get_First (Table);
1221 while Unit /= No_Unit_Index loop
1223 -- We cannot reset Unit.File_Names (Impl or Spec).Unit here as
1224 -- Source_Data buffer is freed by the following instruction
1225 -- Free_List (Tree.Projects, Free_Project => True);
1227 Unchecked_Free (Unit);
1228 Unit := Units_Htable.Get_Next (Table);
1231 Units_Htable.Reset (Table);
1238 procedure Free (Tree : in out Project_Tree_Ref) is
1239 procedure Unchecked_Free is new
1240 Ada.Unchecked_Deallocation
1241 (Project_Tree_Data, Project_Tree_Ref);
1243 procedure Unchecked_Free is new
1244 Ada.Unchecked_Deallocation
1245 (Project_Tree_Appdata'Class, Project_Tree_Appdata_Access);
1248 if Tree /= null then
1249 if Tree.Is_Root_Tree then
1250 Name_List_Table.Free (Tree.Shared.Name_Lists);
1251 Number_List_Table.Free (Tree.Shared.Number_Lists);
1252 String_Element_Table.Free (Tree.Shared.String_Elements);
1253 Variable_Element_Table.Free (Tree.Shared.Variable_Elements);
1254 Array_Element_Table.Free (Tree.Shared.Array_Elements);
1255 Array_Table.Free (Tree.Shared.Arrays);
1256 Package_Table.Free (Tree.Shared.Packages);
1257 Temp_Files_Table.Free (Tree.Shared.Private_Part.Temp_Files);
1260 if Tree.Appdata /= null then
1261 Free (Tree.Appdata.all);
1262 Unchecked_Free (Tree.Appdata);
1265 Source_Paths_Htable.Reset (Tree.Source_Paths_HT);
1266 Source_Files_Htable.Reset (Tree.Source_Files_HT);
1268 Reset_Units_In_Table (Tree.Units_HT);
1269 Free_List (Tree.Projects, Free_Project => True);
1270 Free_Units (Tree.Units_HT);
1272 Unchecked_Free (Tree);
1280 procedure Reset (Tree : Project_Tree_Ref) is
1284 if Tree.Is_Root_Tree then
1286 -- We cannot use 'Access here
:
1287 -- "illegal attribute for discriminant-dependent component"
1288 -- However, we know this is valid since Shared and Shared_Data have
1289 -- the same lifetime and will always exist concurrently.
1291 Tree
.Shared
:= Tree
.Shared_Data
'Unrestricted_Access;
1292 Name_List_Table
.Init
(Tree
.Shared
.Name_Lists
);
1293 Number_List_Table
.Init
(Tree
.Shared
.Number_Lists
);
1294 String_Element_Table
.Init
(Tree
.Shared
.String_Elements
);
1295 Variable_Element_Table
.Init
(Tree
.Shared
.Variable_Elements
);
1296 Array_Element_Table
.Init
(Tree
.Shared
.Array_Elements
);
1297 Array_Table
.Init
(Tree
.Shared
.Arrays
);
1298 Package_Table
.Init
(Tree
.Shared
.Packages
);
1300 -- Private part table
1302 Temp_Files_Table
.Init
(Tree
.Shared
.Private_Part
.Temp_Files
);
1304 Tree
.Shared
.Private_Part
.Current_Source_Path_File
:= No_Path
;
1305 Tree
.Shared
.Private_Part
.Current_Object_Path_File
:= No_Path
;
1308 Source_Paths_Htable
.Reset
(Tree
.Source_Paths_HT
);
1309 Source_Files_Htable
.Reset
(Tree
.Source_Files_HT
);
1310 Replaced_Source_HTable
.Reset
(Tree
.Replaced_Sources
);
1312 Tree
.Replaced_Source_Number
:= 0;
1314 Reset_Units_In_Table
(Tree
.Units_HT
);
1315 Free_List
(Tree
.Projects
, Free_Project
=> True);
1316 Free_Units
(Tree
.Units_HT
);
1319 -------------------------------------
1320 -- Set_Current_Object_Path_File_Of --
1321 -------------------------------------
1323 procedure Set_Current_Object_Path_File_Of
1324 (Shared
: Shared_Project_Tree_Data_Access
;
1325 To
: Path_Name_Type
)
1328 Shared
.Private_Part
.Current_Object_Path_File
:= To
;
1329 end Set_Current_Object_Path_File_Of
;
1331 -------------------------------------
1332 -- Set_Current_Source_Path_File_Of --
1333 -------------------------------------
1335 procedure Set_Current_Source_Path_File_Of
1336 (Shared
: Shared_Project_Tree_Data_Access
;
1337 To
: Path_Name_Type
)
1340 Shared
.Private_Part
.Current_Source_Path_File
:= To
;
1341 end Set_Current_Source_Path_File_Of
;
1343 -----------------------
1344 -- Set_Path_File_Var --
1345 -----------------------
1347 procedure Set_Path_File_Var
(Name
: String; Value
: String) is
1348 Host_Spec
: String_Access
:= To_Host_File_Spec
(Value
);
1350 if Host_Spec
= null then
1352 ("could not convert file name """ & Value
& """ to host spec");
1354 Setenv
(Name
, Host_Spec
.all);
1357 end Set_Path_File_Var
;
1363 function Switches_Name
1364 (Source_File_Name
: File_Name_Type
) return File_Name_Type
1367 return Extend_Name
(Source_File_Name
, Switches_Dependency_Suffix
);
1374 function Value
(Image
: String) return Casing_Type
is
1376 for Casing
in The_Casing_Images
'Range loop
1377 if To_Lower
(Image
) = To_Lower
(The_Casing_Images
(Casing
).all) then
1382 raise Constraint_Error
;
1385 ---------------------
1386 -- Has_Ada_Sources --
1387 ---------------------
1389 function Has_Ada_Sources
(Data
: Project_Id
) return Boolean is
1390 Lang
: Language_Ptr
;
1393 Lang
:= Data
.Languages
;
1394 while Lang
/= No_Language_Index
loop
1395 if Lang
.Name
= Name_Ada
then
1396 return Lang
.First_Source
/= No_Source
;
1402 end Has_Ada_Sources
;
1404 ------------------------
1405 -- Contains_ALI_Files --
1406 ------------------------
1408 function Contains_ALI_Files
(Dir
: Path_Name_Type
) return Boolean is
1409 Dir_Name
: constant String := Get_Name_String
(Dir
);
1411 Name
: String (1 .. 1_000
);
1413 Result
: Boolean := False;
1416 Open
(Direct
, Dir_Name
);
1418 -- For each file in the directory, check if it is an ALI file
1421 Read
(Direct
, Name
, Last
);
1423 Canonical_Case_File_Name
(Name
(1 .. Last
));
1424 Result
:= Last
>= 5 and then Name
(Last
- 3 .. Last
) = ".ali";
1432 -- If there is any problem, close the directory if open and return True.
1433 -- The library directory will be added to the path.
1436 if Is_Open
(Direct
) then
1441 end Contains_ALI_Files
;
1443 --------------------------
1444 -- Get_Object_Directory --
1445 --------------------------
1447 function Get_Object_Directory
1448 (Project
: Project_Id
;
1449 Including_Libraries
: Boolean;
1450 Only_If_Ada
: Boolean := False) return Path_Name_Type
1453 if (Project
.Library
and then Including_Libraries
)
1455 (Project
.Object_Directory
/= No_Path_Information
1456 and then (not Including_Libraries
or else not Project
.Library
))
1458 -- For a library project, add the library ALI directory if there is
1459 -- no object directory or if the library ALI directory contains ALI
1460 -- files; otherwise add the object directory.
1462 if Project
.Library
then
1463 if Project
.Object_Directory
= No_Path_Information
1464 or else Contains_ALI_Files
(Project
.Library_ALI_Dir
.Display_Name
)
1466 return Project
.Library_ALI_Dir
.Display_Name
;
1468 return Project
.Object_Directory
.Display_Name
;
1471 -- For a non-library project, add object directory if it is not a
1472 -- virtual project, and if there are Ada sources in the project or
1473 -- one of the projects it extends. If there are no Ada sources,
1474 -- adding the object directory could disrupt the order of the
1475 -- object dirs in the path.
1477 elsif not Project
.Virtual
then
1479 Add_Object_Dir
: Boolean;
1483 Add_Object_Dir
:= not Only_If_Ada
;
1485 while not Add_Object_Dir
and then Prj
/= No_Project
loop
1486 if Has_Ada_Sources
(Prj
) then
1487 Add_Object_Dir
:= True;
1493 if Add_Object_Dir
then
1494 return Project
.Object_Directory
.Display_Name
;
1501 end Get_Object_Directory
;
1503 -----------------------------------
1504 -- Ultimate_Extending_Project_Of --
1505 -----------------------------------
1507 function Ultimate_Extending_Project_Of
1508 (Proj
: Project_Id
) return Project_Id
1514 while Prj
/= null and then Prj
.Extended_By
/= No_Project
loop
1515 Prj
:= Prj
.Extended_By
;
1519 end Ultimate_Extending_Project_Of
;
1521 -----------------------------------
1522 -- Compute_All_Imported_Projects --
1523 -----------------------------------
1525 procedure Compute_All_Imported_Projects
1526 (Root_Project
: Project_Id
;
1527 Tree
: Project_Tree_Ref
)
1529 procedure Analyze_Tree
1530 (Local_Root
: Project_Id
;
1531 Local_Tree
: Project_Tree_Ref
;
1532 Context
: Project_Context
);
1533 -- Process Project and all its aggregated project to analyze their own
1534 -- imported projects.
1540 procedure Analyze_Tree
1541 (Local_Root
: Project_Id
;
1542 Local_Tree
: Project_Tree_Ref
;
1543 Context
: Project_Context
)
1545 pragma Unreferenced
(Local_Root
);
1547 Project
: Project_Id
;
1549 procedure Recursive_Add
1551 Tree
: Project_Tree_Ref
;
1552 Context
: Project_Context
;
1553 Dummy
: in out Boolean);
1554 -- Recursively add the projects imported by project Project, but not
1555 -- those that are extended.
1561 procedure Recursive_Add
1563 Tree
: Project_Tree_Ref
;
1564 Context
: Project_Context
;
1565 Dummy
: in out Boolean)
1567 pragma Unreferenced
(Dummy
, Tree
);
1569 List
: Project_List
;
1573 -- A project is not importing itself
1575 Prj2
:= Ultimate_Extending_Project_Of
(Prj
);
1577 if Project
/= Prj2
then
1579 -- Check that the project is not already in the list. We know
1580 -- the one passed to Recursive_Add have never been visited
1581 -- before, but the one passed it are the extended projects.
1583 List
:= Project
.All_Imported_Projects
;
1584 while List
/= null loop
1585 if List
.Project
= Prj2
then
1592 -- Add it to the list
1594 Project
.All_Imported_Projects
:=
1595 new Project_List_Element
'
1597 From_Encapsulated_Lib =>
1598 Context.From_Encapsulated_Lib
1599 or else Analyze_Tree.Context.From_Encapsulated_Lib,
1600 Next => Project.All_Imported_Projects);
1604 procedure For_All_Projects is
1605 new For_Every_Project_Imported_Context (Boolean, Recursive_Add);
1607 Dummy : Boolean := False;
1608 List : Project_List;
1611 List := Local_Tree.Projects;
1612 while List /= null loop
1613 Project := List.Project;
1615 (Project.All_Imported_Projects, Free_Project => False);
1617 (Project, Local_Tree, Dummy, Include_Aggregated => False);
1622 procedure For_Aggregates is
1623 new For_Project_And_Aggregated_Context (Analyze_Tree);
1625 -- Start of processing for Compute_All_Imported_Projects
1628 For_Aggregates (Root_Project, Tree);
1629 end Compute_All_Imported_Projects;
1635 function Is_Compilable (Source : Source_Id) return Boolean is
1637 case Source.Compilable is
1639 if Source.Language.Config.Compiler_Driver /= No_File
1641 Length_Of_Name (Source.Language.Config.Compiler_Driver) /= 0
1642 and then not Source.Locally_Removed
1643 and then (Source.Language.Config.Kind /= File_Based
1644 or else Source.Kind /= Spec)
1646 -- Do not modify Source.Compilable before the source record
1647 -- has been initialized.
1649 if Source.Source_TS /= Empty_Time_Stamp then
1650 Source.Compilable := Yes;
1656 if Source.Source_TS /= Empty_Time_Stamp then
1657 Source.Compilable := No;
1671 ------------------------------
1672 -- Object_To_Global_Archive --
1673 ------------------------------
1675 function Object_To_Global_Archive (Source : Source_Id) return Boolean is
1677 return Source.Language.Config.Kind = File_Based
1678 and then Source.Kind = Impl
1679 and then Source.Language.Config.Objects_Linked
1680 and then Is_Compilable (Source)
1681 and then Source.Language.Config.Object_Generated;
1682 end Object_To_Global_Archive;
1684 ----------------------------
1685 -- Get_Language_From_Name --
1686 ----------------------------
1688 function Get_Language_From_Name
1689 (Project : Project_Id;
1690 Name : String) return Language_Ptr
1693 Result : Language_Ptr;
1696 Name_Len := Name'Length;
1697 Name_Buffer (1 .. Name_Len) := Name;
1698 To_Lower (Name_Buffer (1 .. Name_Len));
1701 Result := Project.Languages;
1702 while Result /= No_Language_Index loop
1703 if Result.Name = N then
1707 Result := Result.Next;
1710 return No_Language_Index;
1711 end Get_Language_From_Name;
1717 function Other_Part (Source : Source_Id) return Source_Id is
1719 if Source.Unit /= No_Unit_Index then
1722 return Source.Unit.File_Names (Spec);
1724 return Source.Unit.File_Names (Impl);
1737 function Create_Flags
1738 (Report_Error : Error_Handler;
1739 When_No_Sources : Error_Warning;
1740 Require_Sources_Other_Lang : Boolean := True;
1741 Allow_Duplicate_Basenames : Boolean := True;
1742 Compiler_Driver_Mandatory : Boolean := False;
1743 Error_On_Unknown_Language : Boolean := True;
1744 Require_Obj_Dirs : Error_Warning := Error;
1745 Allow_Invalid_External : Error_Warning := Error;
1746 Missing_Source_Files : Error_Warning := Error;
1747 Ignore_Missing_With : Boolean := False)
1748 return Processing_Flags
1751 return Processing_Flags'
1752 (Report_Error
=> Report_Error
,
1753 When_No_Sources
=> When_No_Sources
,
1754 Require_Sources_Other_Lang
=> Require_Sources_Other_Lang
,
1755 Allow_Duplicate_Basenames
=> Allow_Duplicate_Basenames
,
1756 Error_On_Unknown_Language
=> Error_On_Unknown_Language
,
1757 Compiler_Driver_Mandatory
=> Compiler_Driver_Mandatory
,
1758 Require_Obj_Dirs
=> Require_Obj_Dirs
,
1759 Allow_Invalid_External
=> Allow_Invalid_External
,
1760 Missing_Source_Files
=> Missing_Source_Files
,
1761 Ignore_Missing_With
=> Ignore_Missing_With
);
1769 (Table
: Name_List_Table
.Instance
;
1770 List
: Name_List_Index
) return Natural
1772 Count
: Natural := 0;
1773 Tmp
: Name_List_Index
;
1777 while Tmp
/= No_Name_List
loop
1779 Tmp
:= Table
.Table
(Tmp
).Next
;
1789 procedure Debug_Output
(Str
: String) is
1791 if Current_Verbosity
> Default
then
1793 Write_Line
((1 .. Debug_Level
* 2 => ' ') & Str
);
1794 Set_Standard_Output
;
1802 procedure Debug_Indent
is
1804 if Current_Verbosity
= High
then
1806 Write_Str
((1 .. Debug_Level
* 2 => ' '));
1807 Set_Standard_Output
;
1815 procedure Debug_Output
(Str
: String; Str2
: Name_Id
) is
1817 if Current_Verbosity
= High
then
1822 if Str2
= No_Name
then
1823 Write_Line
(" <no_name>");
1825 Write_Line
(" """ & Get_Name_String
(Str2
) & '"');
1828 Set_Standard_Output
;
1832 ---------------------------
1833 -- Debug_Increase_Indent --
1834 ---------------------------
1836 procedure Debug_Increase_Indent
1837 (Str
: String := ""; Str2
: Name_Id
:= No_Name
)
1840 if Str2
/= No_Name
then
1841 Debug_Output
(Str
, Str2
);
1845 Debug_Level
:= Debug_Level
+ 1;
1846 end Debug_Increase_Indent
;
1848 ---------------------------
1849 -- Debug_Decrease_Indent --
1850 ---------------------------
1852 procedure Debug_Decrease_Indent
(Str
: String := "") is
1854 if Debug_Level
> 0 then
1855 Debug_Level
:= Debug_Level
- 1;
1861 end Debug_Decrease_Indent
;
1867 function Debug_Name
(Tree
: Project_Tree_Ref
) return Name_Id
is
1872 Add_Str_To_Name_Buffer
("Tree [");
1875 while P
/= null loop
1876 if P
/= Tree
.Projects
then
1877 Add_Char_To_Name_Buffer
(',');
1880 Add_Str_To_Name_Buffer
(Get_Name_String
(P
.Project
.Name
));
1885 Add_Char_To_Name_Buffer
(']');
1894 procedure Free
(Tree
: in out Project_Tree_Appdata
) is
1895 pragma Unreferenced
(Tree
);
1900 --------------------------------
1901 -- For_Project_And_Aggregated --
1902 --------------------------------
1904 procedure For_Project_And_Aggregated
1905 (Root_Project
: Project_Id
;
1906 Root_Tree
: Project_Tree_Ref
)
1908 Agg
: Aggregated_Project_List
;
1911 Action
(Root_Project
, Root_Tree
);
1913 if Root_Project
.Qualifier
in Aggregate_Project
then
1914 Agg
:= Root_Project
.Aggregated_Projects
;
1915 while Agg
/= null loop
1916 For_Project_And_Aggregated
(Agg
.Project
, Agg
.Tree
);
1920 end For_Project_And_Aggregated
;
1922 ----------------------------------------
1923 -- For_Project_And_Aggregated_Context --
1924 ----------------------------------------
1926 procedure For_Project_And_Aggregated_Context
1927 (Root_Project
: Project_Id
;
1928 Root_Tree
: Project_Tree_Ref
)
1931 procedure Recursive_Process
1932 (Project
: Project_Id
;
1933 Tree
: Project_Tree_Ref
;
1934 Context
: Project_Context
);
1935 -- Process Project and all aggregated projects recursively
1937 -----------------------
1938 -- Recursive_Process --
1939 -----------------------
1941 procedure Recursive_Process
1942 (Project
: Project_Id
;
1943 Tree
: Project_Tree_Ref
;
1944 Context
: Project_Context
)
1946 Agg
: Aggregated_Project_List
;
1947 Ctx
: Project_Context
;
1950 Action
(Project
, Tree
, Context
);
1952 if Project
.Qualifier
in Aggregate_Project
then
1954 (In_Aggregate_Lib
=> True,
1955 From_Encapsulated_Lib
=>
1956 Context
.From_Encapsulated_Lib
1957 or else Project
.Standalone_Library
= Encapsulated
);
1959 Agg
:= Project
.Aggregated_Projects
;
1960 while Agg
/= null loop
1961 Recursive_Process
(Agg
.Project
, Agg
.Tree
, Ctx
);
1965 end Recursive_Process
;
1967 -- Start of processing for For_Project_And_Aggregated_Context
1971 (Root_Project
, Root_Tree
, Project_Context
'(False, False));
1972 end For_Project_And_Aggregated_Context;
1974 -- Package initialization for Prj
1977 -- Make sure that the standard config and user project file extensions are
1978 -- compatible with canonical case file naming.
1980 Canonical_Case_File_Name (Config_Project_File_Extension);
1981 Canonical_Case_File_Name (Project_File_Extension);