[multiple changes]
[gcc.git] / gcc / ada / prj.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- P R J --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2001-2008, Free Software Foundation, Inc. --
10 -- --
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. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with Ada.Characters.Handling; use Ada.Characters.Handling;
27 with Ada.Unchecked_Deallocation;
28
29 with Debug;
30 with Output; use Output;
31 with Osint; use Osint;
32 with Prj.Attr;
33 with Prj.Env;
34 with Prj.Err; use Prj.Err;
35 with Snames; use Snames;
36 with Table;
37 with Uintp; use Uintp;
38
39 with System.Case_Util; use System.Case_Util;
40 with System.HTable;
41
42 package body Prj is
43
44 Object_Suffix : constant String := Get_Target_Object_Suffix.all;
45 -- File suffix for object files
46
47 Initial_Buffer_Size : constant := 100;
48 -- Initial size for extensible buffer used in Add_To_Buffer
49
50 Current_Mode : Mode := Ada_Only;
51
52 Configuration_Mode : Boolean := False;
53
54 The_Empty_String : Name_Id;
55
56 Default_Ada_Spec_Suffix_Id : File_Name_Type;
57 Default_Ada_Body_Suffix_Id : File_Name_Type;
58 Slash_Id : Path_Name_Type;
59 -- Initialized in Prj.Initialize, then never modified
60
61 subtype Known_Casing is Casing_Type range All_Upper_Case .. Mixed_Case;
62
63 The_Casing_Images : constant array (Known_Casing) of String_Access :=
64 (All_Lower_Case => new String'("lowercase"),
65 All_Upper_Case => new String'("UPPERCASE"),
66 Mixed_Case => new String'("MixedCase"));
67
68 Initialized : Boolean := False;
69
70 Standard_Dot_Replacement : constant File_Name_Type :=
71 File_Name_Type
72 (First_Name_Id + Character'Pos ('-'));
73
74 Std_Naming_Data : constant Naming_Data :=
75 (Dot_Replacement => Standard_Dot_Replacement,
76 Dot_Repl_Loc => No_Location,
77 Casing => All_Lower_Case,
78 Spec_Suffix => No_Array_Element,
79 Ada_Spec_Suffix_Loc => No_Location,
80 Body_Suffix => No_Array_Element,
81 Ada_Body_Suffix_Loc => No_Location,
82 Separate_Suffix => No_File,
83 Sep_Suffix_Loc => No_Location,
84 Specs => No_Array_Element,
85 Bodies => No_Array_Element,
86 Specification_Exceptions => No_Array_Element,
87 Implementation_Exceptions => No_Array_Element);
88
89 Project_Empty : constant Project_Data :=
90 (Qualifier => Unspecified,
91 Externally_Built => False,
92 Config => Default_Project_Config,
93 Languages => No_Name_List,
94 First_Referred_By => No_Project,
95 Name => No_Name,
96 Display_Name => No_Name,
97 Path => No_Path_Information,
98 Virtual => False,
99 Location => No_Location,
100 Mains => Nil_String,
101 Directory => No_Path_Information,
102 Dir_Path => null,
103 Library => False,
104 Library_Dir => No_Path_Information,
105 Library_Src_Dir => No_Path_Information,
106 Library_ALI_Dir => No_Path_Information,
107 Library_Name => No_Name,
108 Library_Kind => Static,
109 Lib_Internal_Name => No_Name,
110 Standalone_Library => False,
111 Lib_Interface_ALIs => Nil_String,
112 Lib_Auto_Init => False,
113 Libgnarl_Needed => Unknown,
114 Symbol_Data => No_Symbols,
115 Ada_Sources_Present => True,
116 Other_Sources_Present => True,
117 Ada_Sources => Nil_String,
118 First_Source => No_Source,
119 Last_Source => No_Source,
120 Interfaces_Defined => False,
121 Unit_Based_Language_Name => No_Name,
122 Unit_Based_Language_Index => No_Language_Index,
123 Imported_Directories_Switches => null,
124 Include_Path => null,
125 Include_Data_Set => False,
126 Include_Language => No_Language_Index,
127 Source_Dirs => Nil_String,
128 Known_Order_Of_Source_Dirs => True,
129 Object_Directory => No_Path_Information,
130 Library_TS => Empty_Time_Stamp,
131 Exec_Directory => No_Path_Information,
132 Extends => No_Project,
133 Extended_By => No_Project,
134 Naming => Std_Naming_Data,
135 First_Language_Processing => No_Language_Index,
136 Decl => No_Declarations,
137 Imported_Projects => Empty_Project_List,
138 All_Imported_Projects => Empty_Project_List,
139 Ada_Include_Path => null,
140 Ada_Objects_Path => null,
141 Objects_Path => null,
142 Include_Path_File => No_Path,
143 Objects_Path_File_With_Libs => No_Path,
144 Objects_Path_File_Without_Libs => No_Path,
145 Config_File_Name => No_Path,
146 Config_File_Temp => False,
147 Config_Checked => False,
148 Checked => False,
149 Seen => False,
150 Need_To_Build_Lib => False,
151 Depth => 0,
152 Unkept_Comments => False);
153
154 package Temp_Files is new Table.Table
155 (Table_Component_Type => Path_Name_Type,
156 Table_Index_Type => Integer,
157 Table_Low_Bound => 1,
158 Table_Initial => 20,
159 Table_Increment => 100,
160 Table_Name => "Makegpr.Temp_Files");
161 -- Table to store the path name of all the created temporary files, so that
162 -- they can be deleted at the end, or when the program is interrupted.
163
164 procedure Free (Project : in out Project_Data);
165 -- Free memory allocated for Project
166
167 -------------------
168 -- Add_To_Buffer --
169 -------------------
170
171 procedure Add_To_Buffer
172 (S : String;
173 To : in out String_Access;
174 Last : in out Natural)
175 is
176 begin
177 if To = null then
178 To := new String (1 .. Initial_Buffer_Size);
179 Last := 0;
180 end if;
181
182 -- If Buffer is too small, double its size
183
184 while Last + S'Length > To'Last loop
185 declare
186 New_Buffer : constant String_Access :=
187 new String (1 .. 2 * Last);
188
189 begin
190 New_Buffer (1 .. Last) := To (1 .. Last);
191 Free (To);
192 To := New_Buffer;
193 end;
194 end loop;
195
196 To (Last + 1 .. Last + S'Length) := S;
197 Last := Last + S'Length;
198 end Add_To_Buffer;
199
200 -----------------------
201 -- Body_Suffix_Id_Of --
202 -----------------------
203
204 function Body_Suffix_Id_Of
205 (In_Tree : Project_Tree_Ref;
206 Language : String;
207 Naming : Naming_Data) return File_Name_Type
208 is
209 Language_Id : Name_Id;
210
211 begin
212 Name_Len := 0;
213 Add_Str_To_Name_Buffer (Language);
214 To_Lower (Name_Buffer (1 .. Name_Len));
215 Language_Id := Name_Find;
216
217 return
218 Body_Suffix_Id_Of
219 (In_Tree => In_Tree,
220 Language_Id => Language_Id,
221 Naming => Naming);
222 end Body_Suffix_Id_Of;
223
224 -----------------------
225 -- Body_Suffix_Id_Of --
226 -----------------------
227
228 function Body_Suffix_Id_Of
229 (In_Tree : Project_Tree_Ref;
230 Language_Id : Name_Id;
231 Naming : Naming_Data) return File_Name_Type
232 is
233 Element_Id : Array_Element_Id;
234 Element : Array_Element;
235 Suffix : File_Name_Type := No_File;
236 Lang : Language_Index;
237
238 begin
239 -- ??? This seems to be only for Ada_Only mode...
240 Element_Id := Naming.Body_Suffix;
241 while Element_Id /= No_Array_Element loop
242 Element := In_Tree.Array_Elements.Table (Element_Id);
243
244 if Element.Index = Language_Id then
245 return File_Name_Type (Element.Value.Value);
246 end if;
247
248 Element_Id := Element.Next;
249 end loop;
250
251 if Current_Mode = Multi_Language then
252 Lang := In_Tree.First_Language;
253 while Lang /= No_Language_Index loop
254 if In_Tree.Languages_Data.Table (Lang).Name = Language_Id then
255 Suffix :=
256 In_Tree.Languages_Data.Table
257 (Lang).Config.Naming_Data.Body_Suffix;
258 exit;
259 end if;
260
261 Lang := In_Tree.Languages_Data.Table (Lang).Next;
262 end loop;
263 end if;
264
265 return Suffix;
266 end Body_Suffix_Id_Of;
267
268 --------------------
269 -- Body_Suffix_Of --
270 --------------------
271
272 function Body_Suffix_Of
273 (In_Tree : Project_Tree_Ref;
274 Language : String;
275 Naming : Naming_Data) return String
276 is
277 Language_Id : Name_Id;
278 Element_Id : Array_Element_Id;
279 Element : Array_Element;
280 Suffix : File_Name_Type := No_File;
281 Lang : Language_Index;
282
283 begin
284 Name_Len := 0;
285 Add_Str_To_Name_Buffer (Language);
286 To_Lower (Name_Buffer (1 .. Name_Len));
287 Language_Id := Name_Find;
288
289 Element_Id := Naming.Body_Suffix;
290 while Element_Id /= No_Array_Element loop
291 Element := In_Tree.Array_Elements.Table (Element_Id);
292
293 if Element.Index = Language_Id then
294 return Get_Name_String (Element.Value.Value);
295 end if;
296
297 Element_Id := Element.Next;
298 end loop;
299
300 if Current_Mode = Multi_Language then
301 Lang := In_Tree.First_Language;
302 while Lang /= No_Language_Index loop
303 if In_Tree.Languages_Data.Table (Lang).Name = Language_Id then
304 Suffix :=
305 File_Name_Type
306 (In_Tree.Languages_Data.Table
307 (Lang).Config.Naming_Data.Body_Suffix);
308 exit;
309 end if;
310
311 Lang := In_Tree.Languages_Data.Table (Lang).Next;
312 end loop;
313
314 if Suffix /= No_File then
315 return Get_Name_String (Suffix);
316 end if;
317 end if;
318
319 return "";
320 end Body_Suffix_Of;
321
322 -----------------------------
323 -- Default_Ada_Body_Suffix --
324 -----------------------------
325
326 function Default_Ada_Body_Suffix return File_Name_Type is
327 begin
328 return Default_Ada_Body_Suffix_Id;
329 end Default_Ada_Body_Suffix;
330
331 -----------------------------
332 -- Default_Ada_Spec_Suffix --
333 -----------------------------
334
335 function Default_Ada_Spec_Suffix return File_Name_Type is
336 begin
337 return Default_Ada_Spec_Suffix_Id;
338 end Default_Ada_Spec_Suffix;
339
340 ---------------------------
341 -- Delete_All_Temp_Files --
342 ---------------------------
343
344 procedure Delete_All_Temp_Files is
345 Dont_Care : Boolean;
346 pragma Warnings (Off, Dont_Care);
347 begin
348 if not Debug.Debug_Flag_N then
349 for Index in 1 .. Temp_Files.Last loop
350 Delete_File
351 (Get_Name_String (Temp_Files.Table (Index)), Dont_Care);
352 end loop;
353 end if;
354 end Delete_All_Temp_Files;
355
356 ---------------------
357 -- Dependency_Name --
358 ---------------------
359
360 function Dependency_Name
361 (Source_File_Name : File_Name_Type;
362 Dependency : Dependency_File_Kind) return File_Name_Type
363 is
364 begin
365 case Dependency is
366 when None =>
367 return No_File;
368
369 when Makefile =>
370 return
371 File_Name_Type
372 (Extend_Name
373 (Source_File_Name, Makefile_Dependency_Suffix));
374
375 when ALI_File =>
376 return
377 File_Name_Type
378 (Extend_Name
379 (Source_File_Name, ALI_Dependency_Suffix));
380 end case;
381 end Dependency_Name;
382
383 ---------------------------
384 -- Display_Language_Name --
385 ---------------------------
386
387 procedure Display_Language_Name
388 (In_Tree : Project_Tree_Ref;
389 Language : Language_Index)
390 is
391 begin
392 Get_Name_String (In_Tree.Languages_Data.Table (Language).Display_Name);
393 Write_Str (Name_Buffer (1 .. Name_Len));
394 end Display_Language_Name;
395
396 ----------------
397 -- Empty_File --
398 ----------------
399
400 function Empty_File return File_Name_Type is
401 begin
402 return File_Name_Type (The_Empty_String);
403 end Empty_File;
404
405 -------------------
406 -- Empty_Project --
407 -------------------
408
409 function Empty_Project (Tree : Project_Tree_Ref) return Project_Data is
410 Value : Project_Data;
411
412 begin
413 Prj.Initialize (Tree => No_Project_Tree);
414 Value := Project_Empty;
415 Value.Naming := Tree.Private_Part.Default_Naming;
416
417 return Value;
418 end Empty_Project;
419
420 ------------------
421 -- Empty_String --
422 ------------------
423
424 function Empty_String return Name_Id is
425 begin
426 return The_Empty_String;
427 end Empty_String;
428
429 ------------
430 -- Expect --
431 ------------
432
433 procedure Expect (The_Token : Token_Type; Token_Image : String) is
434 begin
435 if Token /= The_Token then
436 Error_Msg (Token_Image & " expected", Token_Ptr);
437 end if;
438 end Expect;
439
440 -----------------
441 -- Extend_Name --
442 -----------------
443
444 function Extend_Name
445 (File : File_Name_Type;
446 With_Suffix : String) return File_Name_Type
447 is
448 Last : Positive;
449
450 begin
451 Get_Name_String (File);
452 Last := Name_Len + 1;
453
454 while Name_Len /= 0 and then Name_Buffer (Name_Len) /= '.' loop
455 Name_Len := Name_Len - 1;
456 end loop;
457
458 if Name_Len <= 1 then
459 Name_Len := Last;
460 end if;
461
462 for J in With_Suffix'Range loop
463 Name_Buffer (Name_Len) := With_Suffix (J);
464 Name_Len := Name_Len + 1;
465 end loop;
466
467 Name_Len := Name_Len - 1;
468 return Name_Find;
469
470 end Extend_Name;
471
472 --------------------------------
473 -- For_Every_Project_Imported --
474 --------------------------------
475
476 procedure For_Every_Project_Imported
477 (By : Project_Id;
478 In_Tree : Project_Tree_Ref;
479 With_State : in out State)
480 is
481
482 procedure Recursive_Check (Project : Project_Id);
483 -- Check if a project has already been seen. If not seen, mark it as
484 -- Seen, Call Action, and check all its imported projects.
485
486 ---------------------
487 -- Recursive_Check --
488 ---------------------
489
490 procedure Recursive_Check (Project : Project_Id) is
491 List : Project_List;
492 begin
493 if not In_Tree.Projects.Table (Project).Seen then
494 In_Tree.Projects.Table (Project).Seen := True;
495 Action (Project, With_State);
496
497 List := In_Tree.Projects.Table (Project).Imported_Projects;
498 while List /= Empty_Project_List loop
499 Recursive_Check (In_Tree.Project_Lists.Table (List).Project);
500 List := In_Tree.Project_Lists.Table (List).Next;
501 end loop;
502 end if;
503 end Recursive_Check;
504
505 -- Start of processing for For_Every_Project_Imported
506
507 begin
508 for Project in Project_Table.First ..
509 Project_Table.Last (In_Tree.Projects)
510 loop
511 In_Tree.Projects.Table (Project).Seen := False;
512 end loop;
513
514 Recursive_Check (Project => By);
515 end For_Every_Project_Imported;
516
517 --------------
518 -- Get_Mode --
519 --------------
520
521 function Get_Mode return Mode is
522 begin
523 return Current_Mode;
524 end Get_Mode;
525
526 ----------
527 -- Hash --
528 ----------
529
530 function Hash is new System.HTable.Hash (Header_Num => Header_Num);
531 -- Used in implementation of other functions Hash below
532
533 function Hash (Name : File_Name_Type) return Header_Num is
534 begin
535 return Hash (Get_Name_String (Name));
536 end Hash;
537
538 function Hash (Name : Name_Id) return Header_Num is
539 begin
540 return Hash (Get_Name_String (Name));
541 end Hash;
542
543 function Hash (Name : Path_Name_Type) return Header_Num is
544 begin
545 return Hash (Get_Name_String (Name));
546 end Hash;
547
548 function Hash (Project : Project_Id) return Header_Num is
549 begin
550 return Header_Num (Project mod Max_Header_Num);
551 end Hash;
552
553 -----------
554 -- Image --
555 -----------
556
557 function Image (Casing : Casing_Type) return String is
558 begin
559 return The_Casing_Images (Casing).all;
560 end Image;
561
562 ----------------------
563 -- In_Configuration --
564 ----------------------
565
566 function In_Configuration return Boolean is
567 begin
568 return Configuration_Mode;
569 end In_Configuration;
570
571 ----------------
572 -- Initialize --
573 ----------------
574
575 procedure Initialize (Tree : Project_Tree_Ref) is
576 begin
577 if not Initialized then
578 Initialized := True;
579 Uintp.Initialize;
580 Name_Len := 0;
581 The_Empty_String := Name_Find;
582 Empty_Name := The_Empty_String;
583 Empty_File_Name := File_Name_Type (The_Empty_String);
584 Name_Len := 4;
585 Name_Buffer (1 .. 4) := ".ads";
586 Default_Ada_Spec_Suffix_Id := Name_Find;
587 Name_Len := 4;
588 Name_Buffer (1 .. 4) := ".adb";
589 Default_Ada_Body_Suffix_Id := Name_Find;
590 Name_Len := 1;
591 Name_Buffer (1) := '/';
592 Slash_Id := Name_Find;
593
594 Prj.Env.Initialize;
595 Prj.Attr.Initialize;
596 Set_Name_Table_Byte (Name_Project, Token_Type'Pos (Tok_Project));
597 Set_Name_Table_Byte (Name_Extends, Token_Type'Pos (Tok_Extends));
598 Set_Name_Table_Byte (Name_External, Token_Type'Pos (Tok_External));
599 end if;
600
601 if Tree /= No_Project_Tree then
602 Reset (Tree);
603 end if;
604 end Initialize;
605
606 -------------------
607 -- Is_A_Language --
608 -------------------
609
610 function Is_A_Language
611 (Tree : Project_Tree_Ref;
612 Data : Project_Data;
613 Language_Name : Name_Id) return Boolean
614 is
615 begin
616 if Get_Mode = Ada_Only then
617 declare
618 List : Name_List_Index := Data.Languages;
619 begin
620 while List /= No_Name_List loop
621 if Tree.Name_Lists.Table (List).Name = Language_Name then
622 return True;
623 else
624 List := Tree.Name_Lists.Table (List).Next;
625 end if;
626 end loop;
627 end;
628
629 else
630 declare
631 Lang_Ind : Language_Index := Data.First_Language_Processing;
632 Lang_Data : Language_Data;
633
634 begin
635 while Lang_Ind /= No_Language_Index loop
636 Lang_Data := Tree.Languages_Data.Table (Lang_Ind);
637
638 if Lang_Data.Name = Language_Name then
639 return True;
640 end if;
641
642 Lang_Ind := Lang_Data.Next;
643 end loop;
644 end;
645 end if;
646
647 return False;
648 end Is_A_Language;
649
650 ------------------
651 -- Is_Extending --
652 ------------------
653
654 function Is_Extending
655 (Extending : Project_Id;
656 Extended : Project_Id;
657 In_Tree : Project_Tree_Ref) return Boolean
658 is
659 Proj : Project_Id;
660
661 begin
662 Proj := Extending;
663 while Proj /= No_Project loop
664 if Proj = Extended then
665 return True;
666 end if;
667
668 Proj := In_Tree.Projects.Table (Proj).Extends;
669 end loop;
670
671 return False;
672 end Is_Extending;
673
674 -----------------------
675 -- Objects_Exist_For --
676 -----------------------
677
678 function Objects_Exist_For
679 (Language : String;
680 In_Tree : Project_Tree_Ref) return Boolean
681 is
682 Language_Id : Name_Id;
683 Lang : Language_Index;
684
685 begin
686 if Current_Mode = Multi_Language then
687 Name_Len := 0;
688 Add_Str_To_Name_Buffer (Language);
689 To_Lower (Name_Buffer (1 .. Name_Len));
690 Language_Id := Name_Find;
691
692 Lang := In_Tree.First_Language;
693 while Lang /= No_Language_Index loop
694 if In_Tree.Languages_Data.Table (Lang).Name = Language_Id then
695 return
696 In_Tree.Languages_Data.Table
697 (Lang).Config.Object_Generated;
698 end if;
699
700 Lang := In_Tree.Languages_Data.Table (Lang).Next;
701 end loop;
702 end if;
703
704 return True;
705 end Objects_Exist_For;
706
707 -----------------
708 -- Object_Name --
709 -----------------
710
711 function Object_Name
712 (Source_File_Name : File_Name_Type)
713 return File_Name_Type
714 is
715 begin
716 return Extend_Name (Source_File_Name, Object_Suffix);
717 end Object_Name;
718
719 ----------------------
720 -- Record_Temp_File --
721 ----------------------
722
723 procedure Record_Temp_File (Path : Path_Name_Type) is
724 begin
725 Temp_Files.Increment_Last;
726 Temp_Files.Table (Temp_Files.Last) := Path;
727 end Record_Temp_File;
728
729 ------------------------------------
730 -- Register_Default_Naming_Scheme --
731 ------------------------------------
732
733 procedure Register_Default_Naming_Scheme
734 (Language : Name_Id;
735 Default_Spec_Suffix : File_Name_Type;
736 Default_Body_Suffix : File_Name_Type;
737 In_Tree : Project_Tree_Ref)
738 is
739 Lang : Name_Id;
740 Suffix : Array_Element_Id;
741 Found : Boolean := False;
742 Element : Array_Element;
743
744 begin
745 -- Get the language name in small letters
746
747 Get_Name_String (Language);
748 Name_Buffer (1 .. Name_Len) := To_Lower (Name_Buffer (1 .. Name_Len));
749 Lang := Name_Find;
750
751 -- Look for an element of the spec suffix array indexed by the language
752 -- name. If one is found, put the default value.
753
754 Suffix := In_Tree.Private_Part.Default_Naming.Spec_Suffix;
755 Found := False;
756 while Suffix /= No_Array_Element and then not Found loop
757 Element := In_Tree.Array_Elements.Table (Suffix);
758
759 if Element.Index = Lang then
760 Found := True;
761 Element.Value.Value := Name_Id (Default_Spec_Suffix);
762 In_Tree.Array_Elements.Table (Suffix) := Element;
763
764 else
765 Suffix := Element.Next;
766 end if;
767 end loop;
768
769 -- If none can be found, create a new one
770
771 if not Found then
772 Element :=
773 (Index => Lang,
774 Src_Index => 0,
775 Index_Case_Sensitive => False,
776 Value => (Project => No_Project,
777 Kind => Single,
778 Location => No_Location,
779 Default => False,
780 Value => Name_Id (Default_Spec_Suffix),
781 Index => 0),
782 Next => In_Tree.Private_Part.Default_Naming.Spec_Suffix);
783 Array_Element_Table.Increment_Last (In_Tree.Array_Elements);
784 In_Tree.Array_Elements.Table
785 (Array_Element_Table.Last (In_Tree.Array_Elements)) :=
786 Element;
787 In_Tree.Private_Part.Default_Naming.Spec_Suffix :=
788 Array_Element_Table.Last (In_Tree.Array_Elements);
789 end if;
790
791 -- Look for an element of the body suffix array indexed by the language
792 -- name. If one is found, put the default value.
793
794 Suffix := In_Tree.Private_Part.Default_Naming.Body_Suffix;
795 Found := False;
796 while Suffix /= No_Array_Element and then not Found loop
797 Element := In_Tree.Array_Elements.Table (Suffix);
798
799 if Element.Index = Lang then
800 Found := True;
801 Element.Value.Value := Name_Id (Default_Body_Suffix);
802 In_Tree.Array_Elements.Table (Suffix) := Element;
803
804 else
805 Suffix := Element.Next;
806 end if;
807 end loop;
808
809 -- If none can be found, create a new one
810
811 if not Found then
812 Element :=
813 (Index => Lang,
814 Src_Index => 0,
815 Index_Case_Sensitive => False,
816 Value => (Project => No_Project,
817 Kind => Single,
818 Location => No_Location,
819 Default => False,
820 Value => Name_Id (Default_Body_Suffix),
821 Index => 0),
822 Next => In_Tree.Private_Part.Default_Naming.Body_Suffix);
823 Array_Element_Table.Increment_Last
824 (In_Tree.Array_Elements);
825 In_Tree.Array_Elements.Table
826 (Array_Element_Table.Last (In_Tree.Array_Elements))
827 := Element;
828 In_Tree.Private_Part.Default_Naming.Body_Suffix :=
829 Array_Element_Table.Last (In_Tree.Array_Elements);
830 end if;
831 end Register_Default_Naming_Scheme;
832
833 ----------
834 -- Free --
835 ----------
836
837 procedure Free (Project : in out Project_Data) is
838 begin
839 Free (Project.Dir_Path);
840 Free (Project.Include_Path);
841 Free (Project.Ada_Include_Path);
842 Free (Project.Objects_Path);
843 Free (Project.Ada_Objects_Path);
844 end Free;
845
846 ----------
847 -- Free --
848 ----------
849
850 procedure Free (Tree : in out Project_Tree_Ref) is
851 procedure Unchecked_Free is new Ada.Unchecked_Deallocation
852 (Project_Tree_Data, Project_Tree_Ref);
853 begin
854 if Tree /= null then
855 Language_Data_Table.Free (Tree.Languages_Data);
856 Name_List_Table.Free (Tree.Name_Lists);
857 String_Element_Table.Free (Tree.String_Elements);
858 Variable_Element_Table.Free (Tree.Variable_Elements);
859 Array_Element_Table.Free (Tree.Array_Elements);
860 Array_Table.Free (Tree.Arrays);
861 Package_Table.Free (Tree.Packages);
862 Project_List_Table.Free (Tree.Project_Lists);
863 Source_Data_Table.Free (Tree.Sources);
864 Alternate_Language_Table.Free (Tree.Alt_Langs);
865 Unit_Table.Free (Tree.Units);
866 Units_Htable.Reset (Tree.Units_HT);
867 Files_Htable.Reset (Tree.Files_HT);
868 Source_Paths_Htable.Reset (Tree.Source_Paths_HT);
869 Unit_Sources_Htable.Reset (Tree.Unit_Sources_HT);
870
871 for P in Project_Table.First ..
872 Project_Table.Last (Tree.Projects)
873 loop
874 Free (Tree.Projects.Table (P));
875 end loop;
876 Project_Table.Free (Tree.Projects);
877
878 -- Private part
879
880 Naming_Table.Free (Tree.Private_Part.Namings);
881 Path_File_Table.Free (Tree.Private_Part.Path_Files);
882 Source_Path_Table.Free (Tree.Private_Part.Source_Paths);
883 Object_Path_Table.Free (Tree.Private_Part.Object_Paths);
884
885 -- Naming data (nothing to free ?)
886 null;
887
888 Unchecked_Free (Tree);
889 end if;
890 end Free;
891
892 -----------
893 -- Reset --
894 -----------
895
896 procedure Reset (Tree : Project_Tree_Ref) is
897 begin
898 Prj.Env.Initialize;
899
900 -- Visible tables
901
902 Language_Data_Table.Init (Tree.Languages_Data);
903 Name_List_Table.Init (Tree.Name_Lists);
904 String_Element_Table.Init (Tree.String_Elements);
905 Variable_Element_Table.Init (Tree.Variable_Elements);
906 Array_Element_Table.Init (Tree.Array_Elements);
907 Array_Table.Init (Tree.Arrays);
908 Package_Table.Init (Tree.Packages);
909 Project_List_Table.Init (Tree.Project_Lists);
910 Source_Data_Table.Init (Tree.Sources);
911 Alternate_Language_Table.Init (Tree.Alt_Langs);
912 Unit_Table.Init (Tree.Units);
913 Units_Htable.Reset (Tree.Units_HT);
914 Files_Htable.Reset (Tree.Files_HT);
915 Source_Paths_Htable.Reset (Tree.Source_Paths_HT);
916 Unit_Sources_Htable.Reset (Tree.Unit_Sources_HT);
917
918 if not Project_Table."=" (Tree.Projects.Table, null) then
919 for P in Project_Table.First ..
920 Project_Table.Last (Tree.Projects)
921 loop
922 Free (Tree.Projects.Table (P));
923 end loop;
924 end if;
925 Project_Table.Init (Tree.Projects);
926
927 -- Private part table
928
929 Naming_Table.Init (Tree.Private_Part.Namings);
930 Naming_Table.Increment_Last (Tree.Private_Part.Namings);
931 Tree.Private_Part.Namings.Table
932 (Naming_Table.Last (Tree.Private_Part.Namings)) := Std_Naming_Data;
933 Path_File_Table.Init (Tree.Private_Part.Path_Files);
934 Source_Path_Table.Init (Tree.Private_Part.Source_Paths);
935 Object_Path_Table.Init (Tree.Private_Part.Object_Paths);
936 Tree.Private_Part.Default_Naming := Std_Naming_Data;
937
938 if Current_Mode = Ada_Only then
939 Register_Default_Naming_Scheme
940 (Language => Name_Ada,
941 Default_Spec_Suffix => Default_Ada_Spec_Suffix,
942 Default_Body_Suffix => Default_Ada_Body_Suffix,
943 In_Tree => Tree);
944 Tree.Private_Part.Default_Naming.Separate_Suffix :=
945 Default_Ada_Body_Suffix;
946 end if;
947 end Reset;
948
949 ------------------------
950 -- Same_Naming_Scheme --
951 ------------------------
952
953 function Same_Naming_Scheme
954 (Left, Right : Naming_Data) return Boolean
955 is
956 begin
957 return Left.Dot_Replacement = Right.Dot_Replacement
958 and then Left.Casing = Right.Casing
959 and then Left.Separate_Suffix = Right.Separate_Suffix;
960 end Same_Naming_Scheme;
961
962 ---------------------
963 -- Set_Body_Suffix --
964 ---------------------
965
966 procedure Set_Body_Suffix
967 (In_Tree : Project_Tree_Ref;
968 Language : String;
969 Naming : in out Naming_Data;
970 Suffix : File_Name_Type)
971 is
972 Language_Id : Name_Id;
973 Element : Array_Element;
974
975 begin
976 Name_Len := 0;
977 Add_Str_To_Name_Buffer (Language);
978 To_Lower (Name_Buffer (1 .. Name_Len));
979 Language_Id := Name_Find;
980
981 Element :=
982 (Index => Language_Id,
983 Src_Index => 0,
984 Index_Case_Sensitive => False,
985 Value =>
986 (Kind => Single,
987 Project => No_Project,
988 Location => No_Location,
989 Default => False,
990 Value => Name_Id (Suffix),
991 Index => 0),
992 Next => Naming.Body_Suffix);
993
994 Array_Element_Table.Increment_Last (In_Tree.Array_Elements);
995 Naming.Body_Suffix :=
996 Array_Element_Table.Last (In_Tree.Array_Elements);
997 In_Tree.Array_Elements.Table (Naming.Body_Suffix) := Element;
998 end Set_Body_Suffix;
999
1000 --------------------------
1001 -- Set_In_Configuration --
1002 --------------------------
1003
1004 procedure Set_In_Configuration (Value : Boolean) is
1005 begin
1006 Configuration_Mode := Value;
1007 end Set_In_Configuration;
1008
1009 --------------
1010 -- Set_Mode --
1011 --------------
1012
1013 procedure Set_Mode (New_Mode : Mode) is
1014 begin
1015 Current_Mode := New_Mode;
1016 case New_Mode is
1017 when Ada_Only =>
1018 Default_Language_Is_Ada := True;
1019 Must_Check_Configuration := False;
1020 when Multi_Language =>
1021 Default_Language_Is_Ada := False;
1022 Must_Check_Configuration := True;
1023 end case;
1024 end Set_Mode;
1025
1026 ---------------------
1027 -- Set_Spec_Suffix --
1028 ---------------------
1029
1030 procedure Set_Spec_Suffix
1031 (In_Tree : Project_Tree_Ref;
1032 Language : String;
1033 Naming : in out Naming_Data;
1034 Suffix : File_Name_Type)
1035 is
1036 Language_Id : Name_Id;
1037 Element : Array_Element;
1038
1039 begin
1040 Name_Len := 0;
1041 Add_Str_To_Name_Buffer (Language);
1042 To_Lower (Name_Buffer (1 .. Name_Len));
1043 Language_Id := Name_Find;
1044
1045 Element :=
1046 (Index => Language_Id,
1047 Src_Index => 0,
1048 Index_Case_Sensitive => False,
1049 Value =>
1050 (Kind => Single,
1051 Project => No_Project,
1052 Location => No_Location,
1053 Default => False,
1054 Value => Name_Id (Suffix),
1055 Index => 0),
1056 Next => Naming.Spec_Suffix);
1057
1058 Array_Element_Table.Increment_Last (In_Tree.Array_Elements);
1059 Naming.Spec_Suffix :=
1060 Array_Element_Table.Last (In_Tree.Array_Elements);
1061 In_Tree.Array_Elements.Table (Naming.Spec_Suffix) := Element;
1062 end Set_Spec_Suffix;
1063
1064 -----------
1065 -- Slash --
1066 -----------
1067
1068 function Slash return Path_Name_Type is
1069 begin
1070 return Slash_Id;
1071 end Slash;
1072
1073 -----------------------
1074 -- Spec_Suffix_Id_Of --
1075 -----------------------
1076
1077 function Spec_Suffix_Id_Of
1078 (In_Tree : Project_Tree_Ref;
1079 Language : String;
1080 Naming : Naming_Data) return File_Name_Type
1081 is
1082 Language_Id : Name_Id;
1083
1084 begin
1085 Name_Len := 0;
1086 Add_Str_To_Name_Buffer (Language);
1087 To_Lower (Name_Buffer (1 .. Name_Len));
1088 Language_Id := Name_Find;
1089
1090 return
1091 Spec_Suffix_Id_Of
1092 (In_Tree => In_Tree,
1093 Language_Id => Language_Id,
1094 Naming => Naming);
1095 end Spec_Suffix_Id_Of;
1096
1097 -----------------------
1098 -- Spec_Suffix_Id_Of --
1099 -----------------------
1100
1101 function Spec_Suffix_Id_Of
1102 (In_Tree : Project_Tree_Ref;
1103 Language_Id : Name_Id;
1104 Naming : Naming_Data) return File_Name_Type
1105 is
1106 Element_Id : Array_Element_Id;
1107 Element : Array_Element;
1108 Suffix : File_Name_Type := No_File;
1109 Lang : Language_Index;
1110
1111 begin
1112 Element_Id := Naming.Spec_Suffix;
1113 while Element_Id /= No_Array_Element loop
1114 Element := In_Tree.Array_Elements.Table (Element_Id);
1115
1116 if Element.Index = Language_Id then
1117 return File_Name_Type (Element.Value.Value);
1118 end if;
1119
1120 Element_Id := Element.Next;
1121 end loop;
1122
1123 if Current_Mode = Multi_Language then
1124 Lang := In_Tree.First_Language;
1125 while Lang /= No_Language_Index loop
1126 if In_Tree.Languages_Data.Table (Lang).Name = Language_Id then
1127 Suffix :=
1128 In_Tree.Languages_Data.Table
1129 (Lang).Config.Naming_Data.Spec_Suffix;
1130 exit;
1131 end if;
1132
1133 Lang := In_Tree.Languages_Data.Table (Lang).Next;
1134 end loop;
1135 end if;
1136
1137 return Suffix;
1138 end Spec_Suffix_Id_Of;
1139
1140 --------------------
1141 -- Spec_Suffix_Of --
1142 --------------------
1143
1144 function Spec_Suffix_Of
1145 (In_Tree : Project_Tree_Ref;
1146 Language : String;
1147 Naming : Naming_Data) return String
1148 is
1149 Language_Id : Name_Id;
1150 Element_Id : Array_Element_Id;
1151 Element : Array_Element;
1152 Suffix : File_Name_Type := No_File;
1153 Lang : Language_Index;
1154
1155 begin
1156 Name_Len := 0;
1157 Add_Str_To_Name_Buffer (Language);
1158 To_Lower (Name_Buffer (1 .. Name_Len));
1159 Language_Id := Name_Find;
1160
1161 Element_Id := Naming.Spec_Suffix;
1162 while Element_Id /= No_Array_Element loop
1163 Element := In_Tree.Array_Elements.Table (Element_Id);
1164
1165 if Element.Index = Language_Id then
1166 return Get_Name_String (Element.Value.Value);
1167 end if;
1168
1169 Element_Id := Element.Next;
1170 end loop;
1171
1172 if Current_Mode = Multi_Language then
1173 Lang := In_Tree.First_Language;
1174 while Lang /= No_Language_Index loop
1175 if In_Tree.Languages_Data.Table (Lang).Name = Language_Id then
1176 Suffix :=
1177 File_Name_Type
1178 (In_Tree.Languages_Data.Table
1179 (Lang).Config.Naming_Data.Spec_Suffix);
1180 exit;
1181 end if;
1182
1183 Lang := In_Tree.Languages_Data.Table (Lang).Next;
1184 end loop;
1185
1186 if Suffix /= No_File then
1187 return Get_Name_String (Suffix);
1188 end if;
1189 end if;
1190
1191 return "";
1192 end Spec_Suffix_Of;
1193
1194 --------------------------
1195 -- Standard_Naming_Data --
1196 --------------------------
1197
1198 function Standard_Naming_Data
1199 (Tree : Project_Tree_Ref := No_Project_Tree) return Naming_Data
1200 is
1201 begin
1202 if Tree = No_Project_Tree then
1203 Prj.Initialize (Tree => No_Project_Tree);
1204 return Std_Naming_Data;
1205 else
1206 return Tree.Private_Part.Default_Naming;
1207 end if;
1208 end Standard_Naming_Data;
1209
1210 -------------------
1211 -- Switches_Name --
1212 -------------------
1213
1214 function Switches_Name
1215 (Source_File_Name : File_Name_Type) return File_Name_Type
1216 is
1217 begin
1218 return Extend_Name (Source_File_Name, Switches_Dependency_Suffix);
1219 end Switches_Name;
1220
1221 -----------
1222 -- Value --
1223 -----------
1224
1225 function Value (Image : String) return Casing_Type is
1226 begin
1227 for Casing in The_Casing_Images'Range loop
1228 if To_Lower (Image) = To_Lower (The_Casing_Images (Casing).all) then
1229 return Casing;
1230 end if;
1231 end loop;
1232
1233 raise Constraint_Error;
1234 end Value;
1235
1236 begin
1237 -- Make sure that the standard config and user project file extensions are
1238 -- compatible with canonical case file naming.
1239
1240 Canonical_Case_File_Name (Config_Project_File_Extension);
1241 Canonical_Case_File_Name (Project_File_Extension);
1242 end Prj;