Rebase.
[official-gcc.git] / gcc / ada / prj-nmsc.adb
blob93b5963b644b6a11f6c699a5e952d1153da309e8
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- P R J . N M S C --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2000-2014, 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 ------------------------------------------------------------------------------
26 with Err_Vars; use Err_Vars;
27 with Opt; use Opt;
28 with Osint; use Osint;
29 with Output; use Output;
30 with Prj.Com;
31 with Prj.Env; use Prj.Env;
32 with Prj.Err; use Prj.Err;
33 with Prj.Tree; use Prj.Tree;
34 with Prj.Util; use Prj.Util;
35 with Sinput.P;
36 with Snames; use Snames;
38 with Ada; use Ada;
39 with Ada.Characters.Handling; use Ada.Characters.Handling;
40 with Ada.Directories; use Ada.Directories;
41 with Ada.Strings; use Ada.Strings;
42 with Ada.Strings.Fixed; use Ada.Strings.Fixed;
43 with Ada.Strings.Maps.Constants; use Ada.Strings.Maps.Constants;
45 with GNAT.Case_Util; use GNAT.Case_Util;
46 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
47 with GNAT.Dynamic_HTables;
48 with GNAT.Regexp; use GNAT.Regexp;
49 with GNAT.Table;
51 package body Prj.Nmsc is
53 No_Continuation_String : aliased String := "";
54 Continuation_String : aliased String := "\";
55 -- Used in Check_Library for continuation error messages at the same
56 -- location.
58 type Name_Location is record
59 Name : File_Name_Type;
60 -- Key is duplicated, so that it is known when using functions Get_First
61 -- and Get_Next, as these functions only return an Element.
63 Location : Source_Ptr;
64 Source : Source_Id := No_Source;
65 Listed : Boolean := False;
66 Found : Boolean := False;
67 end record;
69 No_Name_Location : constant Name_Location :=
70 (Name => No_File,
71 Location => No_Location,
72 Source => No_Source,
73 Listed => False,
74 Found => False);
76 package Source_Names_Htable is new GNAT.Dynamic_HTables.Simple_HTable
77 (Header_Num => Header_Num,
78 Element => Name_Location,
79 No_Element => No_Name_Location,
80 Key => File_Name_Type,
81 Hash => Hash,
82 Equal => "=");
83 -- File name information found in string list attribute (Source_Files or
84 -- Source_List_File). Used to check that all referenced files were indeed
85 -- found on the disk.
87 type Unit_Exception is record
88 Name : Name_Id;
89 -- Key is duplicated, so that it is known when using functions Get_First
90 -- and Get_Next, as these functions only return an Element.
92 Spec : File_Name_Type;
93 Impl : File_Name_Type;
94 end record;
96 No_Unit_Exception : constant Unit_Exception := (No_Name, No_File, No_File);
98 package Unit_Exceptions_Htable is new GNAT.Dynamic_HTables.Simple_HTable
99 (Header_Num => Header_Num,
100 Element => Unit_Exception,
101 No_Element => No_Unit_Exception,
102 Key => Name_Id,
103 Hash => Hash,
104 Equal => "=");
105 -- Record special naming schemes for Ada units (name of spec file and name
106 -- of implementation file). The elements in this list come from the naming
107 -- exceptions specified in the project files.
109 type File_Found is record
110 File : File_Name_Type := No_File;
111 Excl_File : File_Name_Type := No_File;
112 Excl_Line : Natural := 0;
113 Found : Boolean := False;
114 Location : Source_Ptr := No_Location;
115 end record;
117 No_File_Found : constant File_Found :=
118 (No_File, No_File, 0, False, No_Location);
120 package Excluded_Sources_Htable is new GNAT.Dynamic_HTables.Simple_HTable
121 (Header_Num => Header_Num,
122 Element => File_Found,
123 No_Element => No_File_Found,
124 Key => File_Name_Type,
125 Hash => Hash,
126 Equal => "=");
127 -- A hash table to store the base names of excluded files, if any
129 package Object_File_Names_Htable is new GNAT.Dynamic_HTables.Simple_HTable
130 (Header_Num => Header_Num,
131 Element => Source_Id,
132 No_Element => No_Source,
133 Key => File_Name_Type,
134 Hash => Hash,
135 Equal => "=");
136 -- A hash table to store the object file names for a project, to check that
137 -- two different sources have different object file names.
139 type Project_Processing_Data is record
140 Project : Project_Id;
141 Source_Names : Source_Names_Htable.Instance;
142 Unit_Exceptions : Unit_Exceptions_Htable.Instance;
143 Excluded : Excluded_Sources_Htable.Instance;
145 Source_List_File_Location : Source_Ptr;
146 -- Location of the Source_List_File attribute, for error messages
147 end record;
148 -- This is similar to Tree_Processing_Data, but contains project-specific
149 -- information which is only useful while processing the project, and can
150 -- be discarded as soon as we have finished processing the project
152 type Tree_Processing_Data is record
153 Tree : Project_Tree_Ref;
154 Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
155 Flags : Prj.Processing_Flags;
156 In_Aggregate_Lib : Boolean;
157 end record;
158 -- Temporary data which is needed while parsing a project. It does not need
159 -- to be kept in memory once a project has been fully loaded, but is
160 -- necessary while performing consistency checks (duplicate sources,...)
161 -- This data must be initialized before processing any project, and the
162 -- same data is used for processing all projects in the tree.
164 type Lib_Data is record
165 Name : Name_Id;
166 Proj : Project_Id;
167 Tree : Project_Tree_Ref;
168 end record;
170 package Lib_Data_Table is new GNAT.Table
171 (Table_Component_Type => Lib_Data,
172 Table_Index_Type => Natural,
173 Table_Low_Bound => 1,
174 Table_Initial => 10,
175 Table_Increment => 100);
176 -- A table to record library names in order to check that two library
177 -- projects do not have the same library names.
179 procedure Initialize
180 (Data : out Tree_Processing_Data;
181 Tree : Project_Tree_Ref;
182 Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
183 Flags : Prj.Processing_Flags);
184 -- Initialize Data
186 procedure Free (Data : in out Tree_Processing_Data);
187 -- Free the memory occupied by Data
189 procedure Initialize
190 (Data : in out Project_Processing_Data;
191 Project : Project_Id);
192 procedure Free (Data : in out Project_Processing_Data);
193 -- Initialize or free memory for a project-specific data
195 procedure Find_Excluded_Sources
196 (Project : in out Project_Processing_Data;
197 Data : in out Tree_Processing_Data);
198 -- Find the list of files that should not be considered as source files
199 -- for this project. Sets the list in the Project.Excluded_Sources_Htable.
201 procedure Override_Kind (Source : Source_Id; Kind : Source_Kind);
202 -- Override the reference kind for a source file. This properly updates
203 -- the unit data if necessary.
205 procedure Load_Naming_Exceptions
206 (Project : in out Project_Processing_Data;
207 Data : in out Tree_Processing_Data);
208 -- All source files in Data.First_Source are considered as naming
209 -- exceptions, and copied into the Source_Names and Unit_Exceptions tables
210 -- as appropriate.
212 type Search_Type is (Search_Files, Search_Directories);
214 generic
215 with procedure Callback
216 (Path : Path_Information;
217 Pattern_Index : Natural);
218 procedure Expand_Subdirectory_Pattern
219 (Project : Project_Id;
220 Data : in out Tree_Processing_Data;
221 Patterns : String_List_Id;
222 Ignore : String_List_Id;
223 Search_For : Search_Type;
224 Resolve_Links : Boolean);
225 -- Search the subdirectories of Project's directory for files or
226 -- directories that match the globbing patterns found in Patterns (for
227 -- instance "**/*.adb"). Typically, Patterns will be the value of the
228 -- Source_Dirs or Excluded_Source_Dirs attributes.
230 -- Every time such a file or directory is found, the callback is called.
231 -- Resolve_Links indicates whether we should resolve links while
232 -- normalizing names.
234 -- In the callback, Pattern_Index is the index within Patterns where the
235 -- expanded pattern was found (1 for the first element of Patterns and
236 -- all its matching directories, then 2,...).
238 -- We use a generic and not an access-to-subprogram because in some cases
239 -- this code is compiled with the restriction No_Implicit_Dynamic_Code.
240 -- An error message is raised if a pattern does not match any file.
242 procedure Add_Source
243 (Id : out Source_Id;
244 Data : in out Tree_Processing_Data;
245 Project : Project_Id;
246 Source_Dir_Rank : Natural;
247 Lang_Id : Language_Ptr;
248 Kind : Source_Kind;
249 File_Name : File_Name_Type;
250 Display_File : File_Name_Type;
251 Naming_Exception : Naming_Exception_Type := No;
252 Path : Path_Information := No_Path_Information;
253 Alternate_Languages : Language_List := null;
254 Unit : Name_Id := No_Name;
255 Index : Int := 0;
256 Locally_Removed : Boolean := False;
257 Location : Source_Ptr := No_Location);
258 -- Add a new source to the different lists: list of all sources in the
259 -- project tree, list of source of a project and list of sources of a
260 -- language. If Path is specified, the file is also added to
261 -- Source_Paths_HT. Location is used for error messages
263 function Canonical_Case_File_Name (Name : Name_Id) return File_Name_Type;
264 -- Same as Osint.Canonical_Case_File_Name but applies to Name_Id.
265 -- This alters Name_Buffer.
267 function Suffix_Matches
268 (Filename : String;
269 Suffix : File_Name_Type) return Boolean;
270 -- True if the file name ends with the given suffix. Always returns False
271 -- if Suffix is No_Name.
273 procedure Replace_Into_Name_Buffer
274 (Str : String;
275 Pattern : String;
276 Replacement : Character);
277 -- Copy Str into Name_Buffer, replacing Pattern with Replacement. Str is
278 -- converted to lower-case at the same time.
280 procedure Check_Abstract_Project
281 (Project : Project_Id;
282 Data : in out Tree_Processing_Data);
283 -- Check abstract projects attributes
285 procedure Check_Configuration
286 (Project : Project_Id;
287 Data : in out Tree_Processing_Data);
288 -- Check the configuration attributes for the project
290 procedure Check_If_Externally_Built
291 (Project : Project_Id;
292 Data : in out Tree_Processing_Data);
293 -- Check attribute Externally_Built of project Project in project tree
294 -- Data.Tree and modify its data Data if it has the value "true".
296 procedure Check_Interfaces
297 (Project : Project_Id;
298 Data : in out Tree_Processing_Data);
299 -- If a list of sources is specified in attribute Interfaces, set
300 -- In_Interfaces only for the sources specified in the list.
302 procedure Check_Library_Attributes
303 (Project : Project_Id;
304 Data : in out Tree_Processing_Data);
305 -- Check the library attributes of project Project in project tree
306 -- and modify its data Data accordingly.
308 procedure Check_Package_Naming
309 (Project : Project_Id;
310 Data : in out Tree_Processing_Data);
311 -- Check the naming scheme part of Data, and initialize the naming scheme
312 -- data in the config of the various languages.
314 procedure Check_Programming_Languages
315 (Project : Project_Id;
316 Data : in out Tree_Processing_Data);
317 -- Check attribute Languages for the project with data Data in project
318 -- tree Data.Tree and set the components of Data for all the programming
319 -- languages indicated in attribute Languages, if any.
321 procedure Check_Stand_Alone_Library
322 (Project : Project_Id;
323 Data : in out Tree_Processing_Data);
324 -- Check if project Project in project tree Data.Tree is a Stand-Alone
325 -- Library project, and modify its data Data accordingly if it is one.
327 procedure Check_Unit_Name (Name : String; Unit : out Name_Id);
328 -- Check that a name is a valid unit name
330 function Compute_Directory_Last (Dir : String) return Natural;
331 -- Return the index of the last significant character in Dir. This is used
332 -- to avoid duplicate '/' (slash) characters at the end of directory names.
334 procedure Search_Directories
335 (Project : in out Project_Processing_Data;
336 Data : in out Tree_Processing_Data;
337 For_All_Sources : Boolean);
338 -- Search the source directories to find the sources. If For_All_Sources is
339 -- True, check each regular file name against the naming schemes of the
340 -- various languages. Otherwise consider only the file names in hash table
341 -- Source_Names. If Allow_Duplicate_Basenames then files with identical
342 -- base names are permitted within a project for source-based languages
343 -- (never for unit based languages).
345 procedure Check_File
346 (Project : in out Project_Processing_Data;
347 Data : in out Tree_Processing_Data;
348 Source_Dir_Rank : Natural;
349 Path : Path_Name_Type;
350 Display_Path : Path_Name_Type;
351 File_Name : File_Name_Type;
352 Display_File_Name : File_Name_Type;
353 Locally_Removed : Boolean;
354 For_All_Sources : Boolean);
355 -- Check if file File_Name is a valid source of the project. This is used
356 -- in multi-language mode only. When the file matches one of the naming
357 -- schemes, it is added to various htables through Add_Source and to
358 -- Source_Paths_Htable.
360 -- File_Name is the same as Display_File_Name, but has been normalized.
361 -- They do not include the directory information.
363 -- Path and Display_Path on the other hand are the full path to the file.
364 -- Path must have been normalized (canonical casing and possibly links
365 -- resolved).
367 -- Source_Directory is the directory in which the file was found. It is
368 -- neither normalized nor has had links resolved, and must not end with a
369 -- a directory separator, to avoid duplicates later on.
371 -- If For_All_Sources is True, then all possible file names are analyzed
372 -- otherwise only those currently set in the Source_Names hash table.
374 procedure Check_File_Naming_Schemes
375 (Project : Project_Processing_Data;
376 File_Name : File_Name_Type;
377 Alternate_Languages : out Language_List;
378 Language : out Language_Ptr;
379 Display_Language_Name : out Name_Id;
380 Unit : out Name_Id;
381 Lang_Kind : out Language_Kind;
382 Kind : out Source_Kind);
383 -- Check if the file name File_Name conforms to one of the naming schemes
384 -- of the project. If the file does not match one of the naming schemes,
385 -- set Language to No_Language_Index. Filename is the name of the file
386 -- being investigated. It has been normalized (case-folded). File_Name is
387 -- the same value.
389 procedure Get_Directories
390 (Project : Project_Id;
391 Data : in out Tree_Processing_Data);
392 -- Get the object directory, the exec directory and the source directories
393 -- of a project.
395 procedure Get_Mains
396 (Project : Project_Id;
397 Data : in out Tree_Processing_Data);
398 -- Get the mains of a project from attribute Main, if it exists, and put
399 -- them in the project data.
401 procedure Get_Sources_From_File
402 (Path : String;
403 Location : Source_Ptr;
404 Project : in out Project_Processing_Data;
405 Data : in out Tree_Processing_Data);
406 -- Get the list of sources from a text file and put them in hash table
407 -- Source_Names.
409 procedure Find_Sources
410 (Project : in out Project_Processing_Data;
411 Data : in out Tree_Processing_Data);
412 -- Process the Source_Files and Source_List_File attributes, and store the
413 -- list of source files into the Source_Names htable. When these attributes
414 -- are not defined, find all files matching the naming schemes in the
415 -- source directories. If Allow_Duplicate_Basenames, then files with the
416 -- same base names are authorized within a project for source-based
417 -- languages (never for unit based languages)
419 procedure Compute_Unit_Name
420 (File_Name : File_Name_Type;
421 Naming : Lang_Naming_Data;
422 Kind : out Source_Kind;
423 Unit : out Name_Id;
424 Project : Project_Processing_Data);
425 -- Check whether the file matches the naming scheme. If it does,
426 -- compute its unit name. If Unit is set to No_Name on exit, none of the
427 -- other out parameters are relevant.
429 procedure Check_Illegal_Suffix
430 (Project : Project_Id;
431 Suffix : File_Name_Type;
432 Dot_Replacement : File_Name_Type;
433 Attribute_Name : String;
434 Location : Source_Ptr;
435 Data : in out Tree_Processing_Data);
436 -- Display an error message if the given suffix is illegal for some reason.
437 -- The name of the attribute we are testing is specified in Attribute_Name,
438 -- which is used in the error message. Location is the location where the
439 -- suffix is defined.
441 procedure Locate_Directory
442 (Project : Project_Id;
443 Name : File_Name_Type;
444 Path : out Path_Information;
445 Dir_Exists : out Boolean;
446 Data : in out Tree_Processing_Data;
447 Create : String := "";
448 Location : Source_Ptr := No_Location;
449 Must_Exist : Boolean := True;
450 Externally_Built : Boolean := False);
451 -- Locate a directory. Name is the directory name. Relative paths are
452 -- resolved relative to the project's directory. If the directory does not
453 -- exist and Setup_Projects is True and Create is a non null string, an
454 -- attempt is made to create the directory. If the directory does not
455 -- exist, it is either created if Setup_Projects is False (and then
456 -- returned), or simply returned without checking for its existence (if
457 -- Must_Exist is False) or No_Path_Information is returned. In all cases,
458 -- Dir_Exists indicates whether the directory now exists. Create is also
459 -- used for debugging traces to show which path we are computing.
461 procedure Look_For_Sources
462 (Project : in out Project_Processing_Data;
463 Data : in out Tree_Processing_Data);
464 -- Find all the sources of project Project in project tree Data.Tree and
465 -- update its Data accordingly. This assumes that the special naming
466 -- exceptions have already been processed.
468 function Path_Name_Of
469 (File_Name : File_Name_Type;
470 Directory : Path_Name_Type) return String;
471 -- Returns the path name of a (non project) file. Returns an empty string
472 -- if file cannot be found.
474 procedure Remove_Source
475 (Tree : Project_Tree_Ref;
476 Id : Source_Id;
477 Replaced_By : Source_Id);
478 -- Remove a file from the list of sources of a project. This might be
479 -- because the file is replaced by another one in an extending project,
480 -- or because a file was added as a naming exception but was not found
481 -- in the end.
483 procedure Report_No_Sources
484 (Project : Project_Id;
485 Lang_Name : String;
486 Data : Tree_Processing_Data;
487 Location : Source_Ptr;
488 Continuation : Boolean := False);
489 -- Report an error or a warning depending on the value of When_No_Sources
490 -- when there are no sources for language Lang_Name.
492 procedure Show_Source_Dirs
493 (Project : Project_Id;
494 Shared : Shared_Project_Tree_Data_Access);
495 -- List all the source directories of a project
497 procedure Write_Attr (Name, Value : String);
498 -- Debug print a value for a specific property. Does nothing when not in
499 -- debug mode
501 procedure Error_Or_Warning
502 (Flags : Processing_Flags;
503 Kind : Error_Warning;
504 Msg : String;
505 Location : Source_Ptr;
506 Project : Project_Id);
507 -- Emits either an error or warning message (or nothing), depending on Kind
509 function No_Space_Img (N : Natural) return String;
510 -- Image of a Natural without the initial space
512 ----------------------
513 -- Error_Or_Warning --
514 ----------------------
516 procedure Error_Or_Warning
517 (Flags : Processing_Flags;
518 Kind : Error_Warning;
519 Msg : String;
520 Location : Source_Ptr;
521 Project : Project_Id) is
522 begin
523 case Kind is
524 when Error => Error_Msg (Flags, Msg, Location, Project);
525 when Warning => Error_Msg (Flags, "?" & Msg, Location, Project);
526 when Silent => null;
527 end case;
528 end Error_Or_Warning;
530 ------------------------------
531 -- Replace_Into_Name_Buffer --
532 ------------------------------
534 procedure Replace_Into_Name_Buffer
535 (Str : String;
536 Pattern : String;
537 Replacement : Character)
539 Max : constant Integer := Str'Last - Pattern'Length + 1;
540 J : Positive;
542 begin
543 Name_Len := 0;
545 J := Str'First;
546 while J <= Str'Last loop
547 Name_Len := Name_Len + 1;
549 if J <= Max and then Str (J .. J + Pattern'Length - 1) = Pattern then
550 Name_Buffer (Name_Len) := Replacement;
551 J := J + Pattern'Length;
552 else
553 Name_Buffer (Name_Len) := GNAT.Case_Util.To_Lower (Str (J));
554 J := J + 1;
555 end if;
556 end loop;
557 end Replace_Into_Name_Buffer;
559 --------------------
560 -- Suffix_Matches --
561 --------------------
563 function Suffix_Matches
564 (Filename : String;
565 Suffix : File_Name_Type) return Boolean
567 Min_Prefix_Length : Natural := 0;
569 begin
570 if Suffix = No_File or else Suffix = Empty_File then
571 return False;
572 end if;
574 declare
575 Suf : String := Get_Name_String (Suffix);
577 begin
578 -- On non case-sensitive systems, use proper suffix casing
580 Canonical_Case_File_Name (Suf);
582 -- The file name must end with the suffix (which is not an extension)
583 -- For instance a suffix "configure.in" must match a file with the
584 -- same name. To avoid dummy cases, though, a suffix starting with
585 -- '.' requires a file that is at least one character longer ('.cpp'
586 -- should not match a file with the same name).
588 if Suf (Suf'First) = '.' then
589 Min_Prefix_Length := 1;
590 end if;
592 return Filename'Length >= Suf'Length + Min_Prefix_Length
593 and then
594 Filename (Filename'Last - Suf'Length + 1 .. Filename'Last) = Suf;
595 end;
596 end Suffix_Matches;
598 ----------------
599 -- Write_Attr --
600 ----------------
602 procedure Write_Attr (Name, Value : String) is
603 begin
604 if Current_Verbosity = High then
605 Debug_Output (Name & " = """ & Value & '"');
606 end if;
607 end Write_Attr;
609 ----------------
610 -- Add_Source --
611 ----------------
613 procedure Add_Source
614 (Id : out Source_Id;
615 Data : in out Tree_Processing_Data;
616 Project : Project_Id;
617 Source_Dir_Rank : Natural;
618 Lang_Id : Language_Ptr;
619 Kind : Source_Kind;
620 File_Name : File_Name_Type;
621 Display_File : File_Name_Type;
622 Naming_Exception : Naming_Exception_Type := No;
623 Path : Path_Information := No_Path_Information;
624 Alternate_Languages : Language_List := null;
625 Unit : Name_Id := No_Name;
626 Index : Int := 0;
627 Locally_Removed : Boolean := False;
628 Location : Source_Ptr := No_Location)
630 Config : constant Language_Config := Lang_Id.Config;
631 UData : Unit_Index;
632 Add_Src : Boolean;
633 Source : Source_Id;
634 Prev_Unit : Unit_Index := No_Unit_Index;
635 Source_To_Replace : Source_Id := No_Source;
637 begin
638 -- Check if the same file name or unit is used in the prj tree
640 Add_Src := True;
642 if Unit /= No_Name then
643 Prev_Unit := Units_Htable.Get (Data.Tree.Units_HT, Unit);
644 end if;
646 if Prev_Unit /= No_Unit_Index
647 and then (Kind = Impl or else Kind = Spec)
648 and then Prev_Unit.File_Names (Kind) /= null
649 then
650 -- Suspicious, we need to check later whether this is authorized
652 Add_Src := False;
653 Source := Prev_Unit.File_Names (Kind);
655 else
656 Source := Source_Files_Htable.Get
657 (Data.Tree.Source_Files_HT, File_Name);
659 if Source /= No_Source and then Source.Index = Index then
660 Add_Src := False;
661 end if;
662 end if;
664 -- Always add the source if it is locally removed, to avoid incorrect
665 -- duplicate checks.
667 if Locally_Removed then
668 Add_Src := True;
670 -- A locally removed source may first replace a source in a project
671 -- being extended.
673 if Source /= No_Source
674 and then Is_Extending (Project, Source.Project)
675 and then Naming_Exception /= Inherited
676 then
677 Source_To_Replace := Source;
678 end if;
680 else
681 -- Duplication of file/unit in same project is allowed if order of
682 -- source directories is known, or if there is no compiler for the
683 -- language.
685 if Add_Src = False then
686 Add_Src := True;
688 if Project = Source.Project then
689 if Prev_Unit = No_Unit_Index then
690 if Data.Flags.Allow_Duplicate_Basenames then
691 Add_Src := True;
693 elsif Lang_Id.Config.Compiler_Driver = Empty_File then
694 Add_Src := True;
696 elsif Source_Dir_Rank /= Source.Source_Dir_Rank then
697 Add_Src := False;
699 else
700 Error_Msg_File_1 := File_Name;
701 Error_Msg
702 (Data.Flags, "duplicate source file name {",
703 Location, Project);
704 Add_Src := False;
705 end if;
707 else
708 if Source_Dir_Rank /= Source.Source_Dir_Rank then
709 Add_Src := False;
711 -- We might be seeing the same file through a different
712 -- path (for instance because of symbolic links).
714 elsif Source.Path.Name /= Path.Name then
715 if not Source.Duplicate_Unit then
716 Error_Msg_Name_1 := Unit;
717 Error_Msg
718 (Data.Flags,
719 "\duplicate unit %%",
720 Location,
721 Project);
722 Source.Duplicate_Unit := True;
723 end if;
725 Add_Src := False;
726 end if;
727 end if;
729 -- Do not allow the same unit name in different projects,
730 -- except if one is extending the other.
732 -- For a file based language, the same file name replaces a
733 -- file in a project being extended, but it is allowed to have
734 -- the same file name in unrelated projects.
736 elsif Is_Extending (Project, Source.Project) then
737 if not Locally_Removed and then Naming_Exception /= Inherited
738 then
739 Source_To_Replace := Source;
740 end if;
742 elsif Prev_Unit /= No_Unit_Index
743 and then Prev_Unit.File_Names (Kind) /= null
744 and then not Source.Locally_Removed
745 and then Source.Replaced_By = No_Source
746 and then not Data.In_Aggregate_Lib
747 then
748 -- Path is set if this is a source we found on the disk, in
749 -- which case we can provide more explicit error message. Path
750 -- is unset when the source is added from one of the naming
751 -- exceptions in the project.
753 if Path /= No_Path_Information then
754 Error_Msg_Name_1 := Unit;
755 Error_Msg
756 (Data.Flags,
757 "unit %% cannot belong to several projects",
758 Location, Project);
760 Error_Msg_Name_1 := Project.Name;
761 Error_Msg_Name_2 := Name_Id (Path.Display_Name);
762 Error_Msg
763 (Data.Flags, "\ project %%, %%", Location, Project);
765 Error_Msg_Name_1 := Source.Project.Name;
766 Error_Msg_Name_2 := Name_Id (Source.Path.Display_Name);
767 Error_Msg
768 (Data.Flags, "\ project %%, %%", Location, Project);
770 else
771 Error_Msg_Name_1 := Unit;
772 Error_Msg_Name_2 := Source.Project.Name;
773 Error_Msg
774 (Data.Flags, "unit %% already belongs to project %%",
775 Location, Project);
776 end if;
778 Add_Src := False;
780 elsif not Source.Locally_Removed
781 and then Source.Replaced_By /= No_Source
782 and then not Data.Flags.Allow_Duplicate_Basenames
783 and then Lang_Id.Config.Kind = Unit_Based
784 and then Source.Language.Config.Kind = Unit_Based
785 and then not Data.In_Aggregate_Lib
786 then
787 Error_Msg_File_1 := File_Name;
788 Error_Msg_File_2 := File_Name_Type (Source.Project.Name);
789 Error_Msg
790 (Data.Flags,
791 "{ is already a source of project {", Location, Project);
793 -- Add the file anyway, to avoid further warnings like
794 -- "language unknown".
796 Add_Src := True;
797 end if;
798 end if;
799 end if;
801 if not Add_Src then
802 return;
803 end if;
805 -- Add the new file
807 Id := new Source_Data;
809 if Current_Verbosity = High then
810 Debug_Indent;
811 Write_Str ("adding source File: ");
812 Write_Str (Get_Name_String (Display_File));
814 if Index /= 0 then
815 Write_Str (" at" & Index'Img);
816 end if;
818 if Lang_Id.Config.Kind = Unit_Based then
819 Write_Str (" Unit: ");
821 -- ??? in gprclean, it seems we sometimes pass an empty Unit name
822 -- (see test extended_projects).
824 if Unit /= No_Name then
825 Write_Str (Get_Name_String (Unit));
826 end if;
828 Write_Str (" Kind: ");
829 Write_Str (Source_Kind'Image (Kind));
830 end if;
832 Write_Eol;
833 end if;
835 Id.Project := Project;
836 Id.Location := Location;
837 Id.Source_Dir_Rank := Source_Dir_Rank;
838 Id.Language := Lang_Id;
839 Id.Kind := Kind;
840 Id.Alternate_Languages := Alternate_Languages;
841 Id.Locally_Removed := Locally_Removed;
842 Id.Index := Index;
843 Id.File := File_Name;
844 Id.Display_File := Display_File;
845 Id.Dep_Name := Dependency_Name
846 (File_Name, Lang_Id.Config.Dependency_Kind);
847 Id.Naming_Exception := Naming_Exception;
848 Id.Object := Object_Name
849 (File_Name, Config.Object_File_Suffix);
850 Id.Switches := Switches_Name (File_Name);
852 -- Add the source id to the Unit_Sources_HT hash table, if the unit name
853 -- is not null.
855 if Unit /= No_Name then
857 -- Note: we might be creating a dummy unit here, when we in fact have
858 -- a separate. For instance, file file-bar.adb will initially be
859 -- assumed to be the IMPL of unit "file.bar". Only later on (in
860 -- Check_Object_Files) will we parse those units that only have an
861 -- impl and no spec to make sure whether we have a Separate in fact
862 -- (that significantly reduces the number of times we need to parse
863 -- the files, since we are then only interested in those with no
864 -- spec). We still need those dummy units in the table, since that's
865 -- the name we find in the ALI file
867 UData := Units_Htable.Get (Data.Tree.Units_HT, Unit);
869 if UData = No_Unit_Index then
870 UData := new Unit_Data;
871 UData.Name := Unit;
873 if Naming_Exception /= Inherited then
874 Units_Htable.Set (Data.Tree.Units_HT, Unit, UData);
875 end if;
876 end if;
878 Id.Unit := UData;
880 -- Note that this updates Unit information as well
882 if Naming_Exception /= Inherited and then not Locally_Removed then
883 Override_Kind (Id, Kind);
884 end if;
885 end if;
887 if Path /= No_Path_Information then
888 Id.Path := Path;
889 Source_Paths_Htable.Set (Data.Tree.Source_Paths_HT, Path.Name, Id);
890 end if;
892 Id.Next_With_File_Name :=
893 Source_Files_Htable.Get (Data.Tree.Source_Files_HT, File_Name);
894 Source_Files_Htable.Set (Data.Tree.Source_Files_HT, File_Name, Id);
896 if Index /= 0 then
897 Project.Has_Multi_Unit_Sources := True;
898 end if;
900 -- Add the source to the language list
902 Id.Next_In_Lang := Lang_Id.First_Source;
903 Lang_Id.First_Source := Id;
905 if Source_To_Replace /= No_Source then
906 Remove_Source (Data.Tree, Source_To_Replace, Id);
907 end if;
909 if Data.Tree.Replaced_Source_Number > 0
910 and then
911 Replaced_Source_HTable.Get
912 (Data.Tree.Replaced_Sources, Id.File) /= No_File
913 then
914 Replaced_Source_HTable.Remove (Data.Tree.Replaced_Sources, Id.File);
915 Data.Tree.Replaced_Source_Number :=
916 Data.Tree.Replaced_Source_Number - 1;
917 end if;
918 end Add_Source;
920 ------------------------------
921 -- Canonical_Case_File_Name --
922 ------------------------------
924 function Canonical_Case_File_Name (Name : Name_Id) return File_Name_Type is
925 begin
926 if Osint.File_Names_Case_Sensitive then
927 return File_Name_Type (Name);
928 else
929 Get_Name_String (Name);
930 Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
931 return Name_Find;
932 end if;
933 end Canonical_Case_File_Name;
935 ---------------------------------
936 -- Process_Aggregated_Projects --
937 ---------------------------------
939 procedure Process_Aggregated_Projects
940 (Tree : Project_Tree_Ref;
941 Project : Project_Id;
942 Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
943 Flags : Processing_Flags)
945 Data : Tree_Processing_Data :=
946 (Tree => Tree,
947 Node_Tree => Node_Tree,
948 Flags => Flags,
949 In_Aggregate_Lib => False);
951 Project_Files : constant Prj.Variable_Value :=
952 Prj.Util.Value_Of
953 (Snames.Name_Project_Files,
954 Project.Decl.Attributes,
955 Tree.Shared);
957 Project_Path_For_Aggregate : Prj.Env.Project_Search_Path;
959 procedure Found_Project_File (Path : Path_Information; Rank : Natural);
960 -- Called for each project file aggregated by Project
962 procedure Expand_Project_Files is
963 new Expand_Subdirectory_Pattern (Callback => Found_Project_File);
964 -- Search for all project files referenced by the patterns given in
965 -- parameter. Calls Found_Project_File for each of them.
967 ------------------------
968 -- Found_Project_File --
969 ------------------------
971 procedure Found_Project_File (Path : Path_Information; Rank : Natural) is
972 pragma Unreferenced (Rank);
974 begin
975 if Path.Name /= Project.Path.Name then
976 Debug_Output ("aggregates: ", Name_Id (Path.Display_Name));
978 -- For usual "with" statement, this phase will have been done when
979 -- parsing the project itself. However, for aggregate projects, we
980 -- can only do this when processing the aggregate project, since
981 -- the exact list of project files or project directories can
982 -- depend on scenario variables.
984 -- We only load the projects explicitly here, but do not process
985 -- them. For the processing, Prj.Proc will take care of processing
986 -- them, within the same call to Recursive_Process (thus avoiding
987 -- the processing of a given project multiple times).
989 -- ??? We might already have loaded the project
991 Add_Aggregated_Project (Project, Path => Path.Name);
993 else
994 Debug_Output ("pattern returned the aggregate itself, ignored");
995 end if;
996 end Found_Project_File;
998 -- Start of processing for Check_Aggregate_Project
1000 begin
1001 pragma Assert (Project.Qualifier in Aggregate_Project);
1003 if Project_Files.Default then
1004 Error_Msg_Name_1 := Snames.Name_Project_Files;
1005 Error_Msg
1006 (Flags,
1007 "Attribute %% must be specified in aggregate project",
1008 Project.Location, Project);
1009 return;
1010 end if;
1012 -- The aggregated projects are only searched relative to the directory
1013 -- of the aggregate project, not in the default project path.
1015 Initialize_Empty (Project_Path_For_Aggregate);
1017 Free (Project.Aggregated_Projects);
1019 -- Look for aggregated projects. For similarity with source files and
1020 -- dirs, the aggregated project files are not searched for on the
1021 -- project path, and are only found through the path specified in
1022 -- the Project_Files attribute.
1024 Expand_Project_Files
1025 (Project => Project,
1026 Data => Data,
1027 Patterns => Project_Files.Values,
1028 Ignore => Nil_String,
1029 Search_For => Search_Files,
1030 Resolve_Links => Opt.Follow_Links_For_Files);
1032 Free (Project_Path_For_Aggregate);
1033 end Process_Aggregated_Projects;
1035 ----------------------------
1036 -- Check_Abstract_Project --
1037 ----------------------------
1039 procedure Check_Abstract_Project
1040 (Project : Project_Id;
1041 Data : in out Tree_Processing_Data)
1043 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
1045 Source_Dirs : constant Variable_Value :=
1046 Util.Value_Of
1047 (Name_Source_Dirs,
1048 Project.Decl.Attributes, Shared);
1049 Source_Files : constant Variable_Value :=
1050 Util.Value_Of
1051 (Name_Source_Files,
1052 Project.Decl.Attributes, Shared);
1053 Source_List_File : constant Variable_Value :=
1054 Util.Value_Of
1055 (Name_Source_List_File,
1056 Project.Decl.Attributes, Shared);
1057 Languages : constant Variable_Value :=
1058 Util.Value_Of
1059 (Name_Languages,
1060 Project.Decl.Attributes, Shared);
1062 begin
1063 if Project.Source_Dirs /= Nil_String then
1064 if Source_Dirs.Values = Nil_String
1065 and then Source_Files.Values = Nil_String
1066 and then Languages.Values = Nil_String
1067 and then Source_List_File.Default
1068 then
1069 Project.Source_Dirs := Nil_String;
1071 else
1072 Error_Msg
1073 (Data.Flags,
1074 "at least one of Source_Files, Source_Dirs or Languages "
1075 & "must be declared empty for an abstract project",
1076 Project.Location, Project);
1077 end if;
1078 end if;
1079 end Check_Abstract_Project;
1081 -------------------------
1082 -- Check_Configuration --
1083 -------------------------
1085 procedure Check_Configuration
1086 (Project : Project_Id;
1087 Data : in out Tree_Processing_Data)
1089 Shared : constant Shared_Project_Tree_Data_Access :=
1090 Data.Tree.Shared;
1092 Dot_Replacement : File_Name_Type := No_File;
1093 Casing : Casing_Type := All_Lower_Case;
1094 Separate_Suffix : File_Name_Type := No_File;
1096 Lang_Index : Language_Ptr := No_Language_Index;
1097 -- The index of the language data being checked
1099 Prev_Index : Language_Ptr := No_Language_Index;
1100 -- The index of the previous language
1102 procedure Process_Project_Level_Simple_Attributes;
1103 -- Process the simple attributes at the project level
1105 procedure Process_Project_Level_Array_Attributes;
1106 -- Process the associate array attributes at the project level
1108 procedure Process_Packages;
1109 -- Read the packages of the project
1111 ----------------------
1112 -- Process_Packages --
1113 ----------------------
1115 procedure Process_Packages is
1116 Packages : Package_Id;
1117 Element : Package_Element;
1119 procedure Process_Binder (Arrays : Array_Id);
1120 -- Process the associated array attributes of package Binder
1122 procedure Process_Builder (Attributes : Variable_Id);
1123 -- Process the simple attributes of package Builder
1125 procedure Process_Clean (Attributes : Variable_Id);
1126 -- Process the simple attributes of package Clean
1128 procedure Process_Clean (Arrays : Array_Id);
1129 -- Process the associated array attributes of package Clean
1131 procedure Process_Compiler (Arrays : Array_Id);
1132 -- Process the associated array attributes of package Compiler
1134 procedure Process_Naming (Attributes : Variable_Id);
1135 -- Process the simple attributes of package Naming
1137 procedure Process_Naming (Arrays : Array_Id);
1138 -- Process the associated array attributes of package Naming
1140 procedure Process_Linker (Attributes : Variable_Id);
1141 -- Process the simple attributes of package Linker of a
1142 -- configuration project.
1144 --------------------
1145 -- Process_Binder --
1146 --------------------
1148 procedure Process_Binder (Arrays : Array_Id) is
1149 Current_Array_Id : Array_Id;
1150 Current_Array : Array_Data;
1151 Element_Id : Array_Element_Id;
1152 Element : Array_Element;
1154 begin
1155 -- Process the associative array attribute of package Binder
1157 Current_Array_Id := Arrays;
1158 while Current_Array_Id /= No_Array loop
1159 Current_Array := Shared.Arrays.Table (Current_Array_Id);
1161 Element_Id := Current_Array.Value;
1162 while Element_Id /= No_Array_Element loop
1163 Element := Shared.Array_Elements.Table (Element_Id);
1165 if Element.Index /= All_Other_Names then
1167 -- Get the name of the language
1169 Lang_Index :=
1170 Get_Language_From_Name
1171 (Project, Get_Name_String (Element.Index));
1173 if Lang_Index /= No_Language_Index then
1174 case Current_Array.Name is
1175 when Name_Driver =>
1177 -- Attribute Driver (<language>)
1179 Lang_Index.Config.Binder_Driver :=
1180 File_Name_Type (Element.Value.Value);
1182 when Name_Required_Switches =>
1184 (Into_List =>
1185 Lang_Index.Config.Binder_Required_Switches,
1186 From_List => Element.Value.Values,
1187 In_Tree => Data.Tree);
1189 when Name_Prefix =>
1191 -- Attribute Prefix (<language>)
1193 Lang_Index.Config.Binder_Prefix :=
1194 Element.Value.Value;
1196 when Name_Objects_Path =>
1198 -- Attribute Objects_Path (<language>)
1200 Lang_Index.Config.Objects_Path :=
1201 Element.Value.Value;
1203 when Name_Objects_Path_File =>
1205 -- Attribute Objects_Path (<language>)
1207 Lang_Index.Config.Objects_Path_File :=
1208 Element.Value.Value;
1210 when others =>
1211 null;
1212 end case;
1213 end if;
1214 end if;
1216 Element_Id := Element.Next;
1217 end loop;
1219 Current_Array_Id := Current_Array.Next;
1220 end loop;
1221 end Process_Binder;
1223 ---------------------
1224 -- Process_Builder --
1225 ---------------------
1227 procedure Process_Builder (Attributes : Variable_Id) is
1228 Attribute_Id : Variable_Id;
1229 Attribute : Variable;
1231 begin
1232 -- Process non associated array attribute from package Builder
1234 Attribute_Id := Attributes;
1235 while Attribute_Id /= No_Variable loop
1236 Attribute := Shared.Variable_Elements.Table (Attribute_Id);
1238 if not Attribute.Value.Default then
1239 if Attribute.Name = Name_Executable_Suffix then
1241 -- Attribute Executable_Suffix: the suffix of the
1242 -- executables.
1244 Project.Config.Executable_Suffix :=
1245 Attribute.Value.Value;
1246 end if;
1247 end if;
1249 Attribute_Id := Attribute.Next;
1250 end loop;
1251 end Process_Builder;
1253 -------------------
1254 -- Process_Clean --
1255 -------------------
1257 procedure Process_Clean (Attributes : Variable_Id) is
1258 Attribute_Id : Variable_Id;
1259 Attribute : Variable;
1260 List : String_List_Id;
1262 begin
1263 -- Process non associated array attributes from package Clean
1265 Attribute_Id := Attributes;
1266 while Attribute_Id /= No_Variable loop
1267 Attribute := Shared.Variable_Elements.Table (Attribute_Id);
1269 if not Attribute.Value.Default then
1270 if Attribute.Name = Name_Artifacts_In_Exec_Dir then
1272 -- Attribute Artifacts_In_Exec_Dir: the list of file
1273 -- names to be cleaned in the exec dir of the main
1274 -- project.
1276 List := Attribute.Value.Values;
1278 if List /= Nil_String then
1279 Put (Into_List =>
1280 Project.Config.Artifacts_In_Exec_Dir,
1281 From_List => List,
1282 In_Tree => Data.Tree);
1283 end if;
1285 elsif Attribute.Name = Name_Artifacts_In_Object_Dir then
1287 -- Attribute Artifacts_In_Exec_Dir: the list of file
1288 -- names to be cleaned in the object dir of every
1289 -- project.
1291 List := Attribute.Value.Values;
1293 if List /= Nil_String then
1294 Put (Into_List =>
1295 Project.Config.Artifacts_In_Object_Dir,
1296 From_List => List,
1297 In_Tree => Data.Tree);
1298 end if;
1299 end if;
1300 end if;
1302 Attribute_Id := Attribute.Next;
1303 end loop;
1304 end Process_Clean;
1306 procedure Process_Clean (Arrays : Array_Id) is
1307 Current_Array_Id : Array_Id;
1308 Current_Array : Array_Data;
1309 Element_Id : Array_Element_Id;
1310 Element : Array_Element;
1311 List : String_List_Id;
1313 begin
1314 -- Process the associated array attributes of package Clean
1316 Current_Array_Id := Arrays;
1317 while Current_Array_Id /= No_Array loop
1318 Current_Array := Shared.Arrays.Table (Current_Array_Id);
1320 Element_Id := Current_Array.Value;
1321 while Element_Id /= No_Array_Element loop
1322 Element := Shared.Array_Elements.Table (Element_Id);
1324 -- Get the name of the language
1326 Lang_Index :=
1327 Get_Language_From_Name
1328 (Project, Get_Name_String (Element.Index));
1330 if Lang_Index /= No_Language_Index then
1331 case Current_Array.Name is
1333 -- Attribute Object_Artifact_Extensions (<language>)
1335 when Name_Object_Artifact_Extensions =>
1336 List := Element.Value.Values;
1338 if List /= Nil_String then
1339 Put (Into_List =>
1340 Lang_Index.Config.Clean_Object_Artifacts,
1341 From_List => List,
1342 In_Tree => Data.Tree);
1343 end if;
1345 -- Attribute Source_Artifact_Extensions (<language>)
1347 when Name_Source_Artifact_Extensions =>
1348 List := Element.Value.Values;
1350 if List /= Nil_String then
1351 Put (Into_List =>
1352 Lang_Index.Config.Clean_Source_Artifacts,
1353 From_List => List,
1354 In_Tree => Data.Tree);
1355 end if;
1357 when others =>
1358 null;
1359 end case;
1360 end if;
1362 Element_Id := Element.Next;
1363 end loop;
1365 Current_Array_Id := Current_Array.Next;
1366 end loop;
1367 end Process_Clean;
1369 ----------------------
1370 -- Process_Compiler --
1371 ----------------------
1373 procedure Process_Compiler (Arrays : Array_Id) is
1374 Current_Array_Id : Array_Id;
1375 Current_Array : Array_Data;
1376 Element_Id : Array_Element_Id;
1377 Element : Array_Element;
1378 List : String_List_Id;
1380 begin
1381 -- Process the associative array attribute of package Compiler
1383 Current_Array_Id := Arrays;
1384 while Current_Array_Id /= No_Array loop
1385 Current_Array := Shared.Arrays.Table (Current_Array_Id);
1387 Element_Id := Current_Array.Value;
1388 while Element_Id /= No_Array_Element loop
1389 Element := Shared.Array_Elements.Table (Element_Id);
1391 if Element.Index /= All_Other_Names then
1393 -- Get the name of the language
1395 Lang_Index := Get_Language_From_Name
1396 (Project, Get_Name_String (Element.Index));
1398 if Lang_Index /= No_Language_Index then
1399 case Current_Array.Name is
1401 -- Attribute Dependency_Kind (<language>)
1403 when Name_Dependency_Kind =>
1404 Get_Name_String (Element.Value.Value);
1406 begin
1407 Lang_Index.Config.Dependency_Kind :=
1408 Dependency_File_Kind'Value
1409 (Name_Buffer (1 .. Name_Len));
1411 exception
1412 when Constraint_Error =>
1413 Error_Msg
1414 (Data.Flags,
1415 "illegal value for Dependency_Kind",
1416 Element.Value.Location,
1417 Project);
1418 end;
1420 -- Attribute Dependency_Switches (<language>)
1422 when Name_Dependency_Switches =>
1423 if Lang_Index.Config.Dependency_Kind = None then
1424 Lang_Index.Config.Dependency_Kind := Makefile;
1425 end if;
1427 List := Element.Value.Values;
1429 if List /= Nil_String then
1430 Put (Into_List =>
1431 Lang_Index.Config.Dependency_Option,
1432 From_List => List,
1433 In_Tree => Data.Tree);
1434 end if;
1436 -- Attribute Dependency_Driver (<language>)
1438 when Name_Dependency_Driver =>
1439 if Lang_Index.Config.Dependency_Kind = None then
1440 Lang_Index.Config.Dependency_Kind := Makefile;
1441 end if;
1443 List := Element.Value.Values;
1445 if List /= Nil_String then
1446 Put (Into_List =>
1447 Lang_Index.Config.Compute_Dependency,
1448 From_List => List,
1449 In_Tree => Data.Tree);
1450 end if;
1452 -- Attribute Language_Kind (<language>)
1454 when Name_Language_Kind =>
1455 Get_Name_String (Element.Value.Value);
1457 begin
1458 Lang_Index.Config.Kind :=
1459 Language_Kind'Value
1460 (Name_Buffer (1 .. Name_Len));
1462 exception
1463 when Constraint_Error =>
1464 Error_Msg
1465 (Data.Flags,
1466 "illegal value for Language_Kind",
1467 Element.Value.Location,
1468 Project);
1469 end;
1471 -- Attribute Include_Switches (<language>)
1473 when Name_Include_Switches =>
1474 List := Element.Value.Values;
1476 if List = Nil_String then
1477 Error_Msg
1478 (Data.Flags, "include option cannot be null",
1479 Element.Value.Location, Project);
1480 end if;
1482 Put (Into_List => Lang_Index.Config.Include_Option,
1483 From_List => List,
1484 In_Tree => Data.Tree);
1486 -- Attribute Include_Path (<language>)
1488 when Name_Include_Path =>
1489 Lang_Index.Config.Include_Path :=
1490 Element.Value.Value;
1492 -- Attribute Include_Path_File (<language>)
1494 when Name_Include_Path_File =>
1495 Lang_Index.Config.Include_Path_File :=
1496 Element.Value.Value;
1498 -- Attribute Driver (<language>)
1500 when Name_Driver =>
1501 Lang_Index.Config.Compiler_Driver :=
1502 File_Name_Type (Element.Value.Value);
1504 when Name_Required_Switches
1505 | Name_Leading_Required_Switches
1507 Put (Into_List =>
1508 Lang_Index.Config.
1509 Compiler_Leading_Required_Switches,
1510 From_List => Element.Value.Values,
1511 In_Tree => Data.Tree);
1513 when Name_Trailing_Required_Switches =>
1514 Put (Into_List =>
1515 Lang_Index.Config.
1516 Compiler_Trailing_Required_Switches,
1517 From_List => Element.Value.Values,
1518 In_Tree => Data.Tree);
1520 when Name_Multi_Unit_Switches =>
1521 Put (Into_List =>
1522 Lang_Index.Config.Multi_Unit_Switches,
1523 From_List => Element.Value.Values,
1524 In_Tree => Data.Tree);
1526 when Name_Multi_Unit_Object_Separator =>
1527 Get_Name_String (Element.Value.Value);
1529 if Name_Len /= 1 then
1530 Error_Msg
1531 (Data.Flags,
1532 "multi-unit object separator must have " &
1533 "a single character",
1534 Element.Value.Location, Project);
1536 elsif Name_Buffer (1) = ' ' then
1537 Error_Msg
1538 (Data.Flags,
1539 "multi-unit object separator cannot be " &
1540 "a space",
1541 Element.Value.Location, Project);
1543 else
1544 Lang_Index.Config.Multi_Unit_Object_Separator :=
1545 Name_Buffer (1);
1546 end if;
1548 when Name_Path_Syntax =>
1549 begin
1550 Lang_Index.Config.Path_Syntax :=
1551 Path_Syntax_Kind'Value
1552 (Get_Name_String (Element.Value.Value));
1554 exception
1555 when Constraint_Error =>
1556 Error_Msg
1557 (Data.Flags,
1558 "invalid value for Path_Syntax",
1559 Element.Value.Location, Project);
1560 end;
1562 when Name_Source_File_Switches =>
1563 Put (Into_List =>
1564 Lang_Index.Config.Source_File_Switches,
1565 From_List => Element.Value.Values,
1566 In_Tree => Data.Tree);
1568 when Name_Object_File_Suffix =>
1569 if Get_Name_String (Element.Value.Value) = "" then
1570 Error_Msg
1571 (Data.Flags,
1572 "object file suffix cannot be empty",
1573 Element.Value.Location, Project);
1575 else
1576 Lang_Index.Config.Object_File_Suffix :=
1577 Element.Value.Value;
1578 end if;
1580 when Name_Object_File_Switches =>
1581 Put (Into_List =>
1582 Lang_Index.Config.Object_File_Switches,
1583 From_List => Element.Value.Values,
1584 In_Tree => Data.Tree);
1586 when Name_Object_Path_Switches =>
1587 Put (Into_List =>
1588 Lang_Index.Config.Object_Path_Switches,
1589 From_List => Element.Value.Values,
1590 In_Tree => Data.Tree);
1592 -- Attribute Compiler_Pic_Option (<language>)
1594 when Name_Pic_Option =>
1595 List := Element.Value.Values;
1597 if List = Nil_String then
1598 Error_Msg
1599 (Data.Flags,
1600 "compiler PIC option cannot be null",
1601 Element.Value.Location, Project);
1602 end if;
1604 Put (Into_List =>
1605 Lang_Index.Config.Compilation_PIC_Option,
1606 From_List => List,
1607 In_Tree => Data.Tree);
1609 -- Attribute Mapping_File_Switches (<language>)
1611 when Name_Mapping_File_Switches =>
1612 List := Element.Value.Values;
1614 if List = Nil_String then
1615 Error_Msg
1616 (Data.Flags,
1617 "mapping file switches cannot be null",
1618 Element.Value.Location, Project);
1619 end if;
1621 Put (Into_List =>
1622 Lang_Index.Config.Mapping_File_Switches,
1623 From_List => List,
1624 In_Tree => Data.Tree);
1626 -- Attribute Mapping_Spec_Suffix (<language>)
1628 when Name_Mapping_Spec_Suffix =>
1629 Lang_Index.Config.Mapping_Spec_Suffix :=
1630 File_Name_Type (Element.Value.Value);
1632 -- Attribute Mapping_Body_Suffix (<language>)
1634 when Name_Mapping_Body_Suffix =>
1635 Lang_Index.Config.Mapping_Body_Suffix :=
1636 File_Name_Type (Element.Value.Value);
1638 -- Attribute Config_File_Switches (<language>)
1640 when Name_Config_File_Switches =>
1641 List := Element.Value.Values;
1643 if List = Nil_String then
1644 Error_Msg
1645 (Data.Flags,
1646 "config file switches cannot be null",
1647 Element.Value.Location, Project);
1648 end if;
1650 Put (Into_List =>
1651 Lang_Index.Config.Config_File_Switches,
1652 From_List => List,
1653 In_Tree => Data.Tree);
1655 -- Attribute Objects_Path (<language>)
1657 when Name_Objects_Path =>
1658 Lang_Index.Config.Objects_Path :=
1659 Element.Value.Value;
1661 -- Attribute Objects_Path_File (<language>)
1663 when Name_Objects_Path_File =>
1664 Lang_Index.Config.Objects_Path_File :=
1665 Element.Value.Value;
1667 -- Attribute Config_Body_File_Name (<language>)
1669 when Name_Config_Body_File_Name =>
1670 Lang_Index.Config.Config_Body :=
1671 Element.Value.Value;
1673 -- Attribute Config_Body_File_Name_Index (< Language>)
1675 when Name_Config_Body_File_Name_Index =>
1676 Lang_Index.Config.Config_Body_Index :=
1677 Element.Value.Value;
1679 -- Attribute Config_Body_File_Name_Pattern(<language>)
1681 when Name_Config_Body_File_Name_Pattern =>
1682 Lang_Index.Config.Config_Body_Pattern :=
1683 Element.Value.Value;
1685 -- Attribute Config_Spec_File_Name (<language>)
1687 when Name_Config_Spec_File_Name =>
1688 Lang_Index.Config.Config_Spec :=
1689 Element.Value.Value;
1691 -- Attribute Config_Spec_File_Name_Index (<language>)
1693 when Name_Config_Spec_File_Name_Index =>
1694 Lang_Index.Config.Config_Spec_Index :=
1695 Element.Value.Value;
1697 -- Attribute Config_Spec_File_Name_Pattern(<language>)
1699 when Name_Config_Spec_File_Name_Pattern =>
1700 Lang_Index.Config.Config_Spec_Pattern :=
1701 Element.Value.Value;
1703 -- Attribute Config_File_Unique (<language>)
1705 when Name_Config_File_Unique =>
1706 begin
1707 Lang_Index.Config.Config_File_Unique :=
1708 Boolean'Value
1709 (Get_Name_String (Element.Value.Value));
1710 exception
1711 when Constraint_Error =>
1712 Error_Msg
1713 (Data.Flags,
1714 "illegal value for Config_File_Unique",
1715 Element.Value.Location, Project);
1716 end;
1718 when others =>
1719 null;
1720 end case;
1721 end if;
1722 end if;
1724 Element_Id := Element.Next;
1725 end loop;
1727 Current_Array_Id := Current_Array.Next;
1728 end loop;
1729 end Process_Compiler;
1731 --------------------
1732 -- Process_Naming --
1733 --------------------
1735 procedure Process_Naming (Attributes : Variable_Id) is
1736 Attribute_Id : Variable_Id;
1737 Attribute : Variable;
1739 begin
1740 -- Process non associated array attribute from package Naming
1742 Attribute_Id := Attributes;
1743 while Attribute_Id /= No_Variable loop
1744 Attribute := Shared.Variable_Elements.Table (Attribute_Id);
1746 if not Attribute.Value.Default then
1747 if Attribute.Name = Name_Separate_Suffix then
1749 -- Attribute Separate_Suffix
1751 Get_Name_String (Attribute.Value.Value);
1752 Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
1753 Separate_Suffix := Name_Find;
1755 elsif Attribute.Name = Name_Casing then
1757 -- Attribute Casing
1759 begin
1760 Casing :=
1761 Value (Get_Name_String (Attribute.Value.Value));
1763 exception
1764 when Constraint_Error =>
1765 Error_Msg
1766 (Data.Flags,
1767 "invalid value for Casing",
1768 Attribute.Value.Location, Project);
1769 end;
1771 elsif Attribute.Name = Name_Dot_Replacement then
1773 -- Attribute Dot_Replacement
1775 Dot_Replacement := File_Name_Type (Attribute.Value.Value);
1777 end if;
1778 end if;
1780 Attribute_Id := Attribute.Next;
1781 end loop;
1782 end Process_Naming;
1784 procedure Process_Naming (Arrays : Array_Id) is
1785 Current_Array_Id : Array_Id;
1786 Current_Array : Array_Data;
1787 Element_Id : Array_Element_Id;
1788 Element : Array_Element;
1790 begin
1791 -- Process the associative array attribute of package Naming
1793 Current_Array_Id := Arrays;
1794 while Current_Array_Id /= No_Array loop
1795 Current_Array := Shared.Arrays.Table (Current_Array_Id);
1797 Element_Id := Current_Array.Value;
1798 while Element_Id /= No_Array_Element loop
1799 Element := Shared.Array_Elements.Table (Element_Id);
1801 -- Get the name of the language
1803 Lang_Index := Get_Language_From_Name
1804 (Project, Get_Name_String (Element.Index));
1806 if Lang_Index /= No_Language_Index then
1807 case Current_Array.Name is
1808 when Name_Spec_Suffix | Name_Specification_Suffix =>
1810 -- Attribute Spec_Suffix (<language>)
1812 Get_Name_String (Element.Value.Value);
1813 Canonical_Case_File_Name
1814 (Name_Buffer (1 .. Name_Len));
1815 Lang_Index.Config.Naming_Data.Spec_Suffix :=
1816 Name_Find;
1818 when Name_Implementation_Suffix | Name_Body_Suffix =>
1820 Get_Name_String (Element.Value.Value);
1821 Canonical_Case_File_Name
1822 (Name_Buffer (1 .. Name_Len));
1824 -- Attribute Body_Suffix (<language>)
1826 Lang_Index.Config.Naming_Data.Body_Suffix :=
1827 Name_Find;
1828 Lang_Index.Config.Naming_Data.Separate_Suffix :=
1829 Lang_Index.Config.Naming_Data.Body_Suffix;
1831 when others =>
1832 null;
1833 end case;
1834 end if;
1836 Element_Id := Element.Next;
1837 end loop;
1839 Current_Array_Id := Current_Array.Next;
1840 end loop;
1841 end Process_Naming;
1843 --------------------
1844 -- Process_Linker --
1845 --------------------
1847 procedure Process_Linker (Attributes : Variable_Id) is
1848 Attribute_Id : Variable_Id;
1849 Attribute : Variable;
1851 begin
1852 -- Process non associated array attribute from package Linker
1854 Attribute_Id := Attributes;
1855 while Attribute_Id /= No_Variable loop
1856 Attribute := Shared.Variable_Elements.Table (Attribute_Id);
1858 if not Attribute.Value.Default then
1859 if Attribute.Name = Name_Driver then
1861 -- Attribute Linker'Driver: the default linker to use
1863 Project.Config.Linker :=
1864 Path_Name_Type (Attribute.Value.Value);
1866 -- Linker'Driver is also used to link shared libraries
1867 -- if the obsolescent attribute Library_GCC has not been
1868 -- specified.
1870 if Project.Config.Shared_Lib_Driver = No_File then
1871 Project.Config.Shared_Lib_Driver :=
1872 File_Name_Type (Attribute.Value.Value);
1873 end if;
1875 elsif Attribute.Name = Name_Required_Switches then
1877 -- Attribute Required_Switches: the minimum trailing
1878 -- options to use when invoking the linker
1880 Put (Into_List =>
1881 Project.Config.Trailing_Linker_Required_Switches,
1882 From_List => Attribute.Value.Values,
1883 In_Tree => Data.Tree);
1885 elsif Attribute.Name = Name_Map_File_Option then
1886 Project.Config.Map_File_Option := Attribute.Value.Value;
1888 elsif Attribute.Name = Name_Max_Command_Line_Length then
1889 begin
1890 Project.Config.Max_Command_Line_Length :=
1891 Natural'Value (Get_Name_String
1892 (Attribute.Value.Value));
1894 exception
1895 when Constraint_Error =>
1896 Error_Msg
1897 (Data.Flags,
1898 "value must be positive or equal to 0",
1899 Attribute.Value.Location, Project);
1900 end;
1902 elsif Attribute.Name = Name_Response_File_Format then
1903 declare
1904 Name : Name_Id;
1906 begin
1907 Get_Name_String (Attribute.Value.Value);
1908 To_Lower (Name_Buffer (1 .. Name_Len));
1909 Name := Name_Find;
1911 if Name = Name_None then
1912 Project.Config.Resp_File_Format := None;
1914 elsif Name = Name_Gnu then
1915 Project.Config.Resp_File_Format := GNU;
1917 elsif Name = Name_Object_List then
1918 Project.Config.Resp_File_Format := Object_List;
1920 elsif Name = Name_Option_List then
1921 Project.Config.Resp_File_Format := Option_List;
1923 elsif Name_Buffer (1 .. Name_Len) = "gcc" then
1924 Project.Config.Resp_File_Format := GCC;
1926 elsif Name_Buffer (1 .. Name_Len) = "gcc_gnu" then
1927 Project.Config.Resp_File_Format := GCC_GNU;
1929 elsif
1930 Name_Buffer (1 .. Name_Len) = "gcc_option_list"
1931 then
1932 Project.Config.Resp_File_Format := GCC_Option_List;
1934 elsif
1935 Name_Buffer (1 .. Name_Len) = "gcc_object_list"
1936 then
1937 Project.Config.Resp_File_Format := GCC_Object_List;
1939 else
1940 Error_Msg
1941 (Data.Flags,
1942 "illegal response file format",
1943 Attribute.Value.Location, Project);
1944 end if;
1945 end;
1947 elsif Attribute.Name = Name_Response_File_Switches then
1948 Put (Into_List => Project.Config.Resp_File_Options,
1949 From_List => Attribute.Value.Values,
1950 In_Tree => Data.Tree);
1951 end if;
1952 end if;
1954 Attribute_Id := Attribute.Next;
1955 end loop;
1956 end Process_Linker;
1958 -- Start of processing for Process_Packages
1960 begin
1961 Packages := Project.Decl.Packages;
1962 while Packages /= No_Package loop
1963 Element := Shared.Packages.Table (Packages);
1965 case Element.Name is
1966 when Name_Binder =>
1968 -- Process attributes of package Binder
1970 Process_Binder (Element.Decl.Arrays);
1972 when Name_Builder =>
1974 -- Process attributes of package Builder
1976 Process_Builder (Element.Decl.Attributes);
1978 when Name_Clean =>
1980 -- Process attributes of package Clean
1982 Process_Clean (Element.Decl.Attributes);
1983 Process_Clean (Element.Decl.Arrays);
1985 when Name_Compiler =>
1987 -- Process attributes of package Compiler
1989 Process_Compiler (Element.Decl.Arrays);
1991 when Name_Linker =>
1993 -- Process attributes of package Linker
1995 Process_Linker (Element.Decl.Attributes);
1997 when Name_Naming =>
1999 -- Process attributes of package Naming
2001 Process_Naming (Element.Decl.Attributes);
2002 Process_Naming (Element.Decl.Arrays);
2004 when others =>
2005 null;
2006 end case;
2008 Packages := Element.Next;
2009 end loop;
2010 end Process_Packages;
2012 ---------------------------------------------
2013 -- Process_Project_Level_Simple_Attributes --
2014 ---------------------------------------------
2016 procedure Process_Project_Level_Simple_Attributes is
2017 Attribute_Id : Variable_Id;
2018 Attribute : Variable;
2019 List : String_List_Id;
2021 begin
2022 -- Process non associated array attribute at project level
2024 Attribute_Id := Project.Decl.Attributes;
2025 while Attribute_Id /= No_Variable loop
2026 Attribute := Shared.Variable_Elements.Table (Attribute_Id);
2028 if not Attribute.Value.Default then
2029 if Attribute.Name = Name_Target then
2031 -- Attribute Target: the target specified
2033 Project.Config.Target := Attribute.Value.Value;
2035 elsif Attribute.Name = Name_Library_Builder then
2037 -- Attribute Library_Builder: the application to invoke
2038 -- to build libraries.
2040 Project.Config.Library_Builder :=
2041 Path_Name_Type (Attribute.Value.Value);
2043 elsif Attribute.Name = Name_Archive_Builder then
2045 -- Attribute Archive_Builder: the archive builder
2046 -- (usually "ar") and its minimum options (usually "cr").
2048 List := Attribute.Value.Values;
2050 if List = Nil_String then
2051 Error_Msg
2052 (Data.Flags,
2053 "archive builder cannot be null",
2054 Attribute.Value.Location, Project);
2055 end if;
2057 Put (Into_List => Project.Config.Archive_Builder,
2058 From_List => List,
2059 In_Tree => Data.Tree);
2061 elsif Attribute.Name = Name_Archive_Builder_Append_Option then
2063 -- Attribute Archive_Builder: the archive builder
2064 -- (usually "ar") and its minimum options (usually "cr").
2066 List := Attribute.Value.Values;
2068 if List /= Nil_String then
2070 (Into_List =>
2071 Project.Config.Archive_Builder_Append_Option,
2072 From_List => List,
2073 In_Tree => Data.Tree);
2074 end if;
2076 elsif Attribute.Name = Name_Archive_Indexer then
2078 -- Attribute Archive_Indexer: the optional archive
2079 -- indexer (usually "ranlib") with its minimum options
2080 -- (usually none).
2082 List := Attribute.Value.Values;
2084 if List = Nil_String then
2085 Error_Msg
2086 (Data.Flags,
2087 "archive indexer cannot be null",
2088 Attribute.Value.Location, Project);
2089 end if;
2091 Put (Into_List => Project.Config.Archive_Indexer,
2092 From_List => List,
2093 In_Tree => Data.Tree);
2095 elsif Attribute.Name = Name_Library_Partial_Linker then
2097 -- Attribute Library_Partial_Linker: the optional linker
2098 -- driver with its minimum options, to partially link
2099 -- archives.
2101 List := Attribute.Value.Values;
2103 if List = Nil_String then
2104 Error_Msg
2105 (Data.Flags,
2106 "partial linker cannot be null",
2107 Attribute.Value.Location, Project);
2108 end if;
2110 Put (Into_List => Project.Config.Lib_Partial_Linker,
2111 From_List => List,
2112 In_Tree => Data.Tree);
2114 elsif Attribute.Name = Name_Library_GCC then
2115 Project.Config.Shared_Lib_Driver :=
2116 File_Name_Type (Attribute.Value.Value);
2117 Error_Msg
2118 (Data.Flags,
2119 "?Library_'G'C'C is an obsolescent attribute, " &
2120 "use Linker''Driver instead",
2121 Attribute.Value.Location, Project);
2123 elsif Attribute.Name = Name_Archive_Suffix then
2124 Project.Config.Archive_Suffix :=
2125 File_Name_Type (Attribute.Value.Value);
2127 elsif Attribute.Name = Name_Linker_Executable_Option then
2129 -- Attribute Linker_Executable_Option: optional options
2130 -- to specify an executable name. Defaults to "-o".
2132 List := Attribute.Value.Values;
2134 if List = Nil_String then
2135 Error_Msg
2136 (Data.Flags,
2137 "linker executable option cannot be null",
2138 Attribute.Value.Location, Project);
2139 end if;
2141 Put (Into_List => Project.Config.Linker_Executable_Option,
2142 From_List => List,
2143 In_Tree => Data.Tree);
2145 elsif Attribute.Name = Name_Linker_Lib_Dir_Option then
2147 -- Attribute Linker_Lib_Dir_Option: optional options
2148 -- to specify a library search directory. Defaults to
2149 -- "-L".
2151 Get_Name_String (Attribute.Value.Value);
2153 if Name_Len = 0 then
2154 Error_Msg
2155 (Data.Flags,
2156 "linker library directory option cannot be empty",
2157 Attribute.Value.Location, Project);
2158 end if;
2160 Project.Config.Linker_Lib_Dir_Option :=
2161 Attribute.Value.Value;
2163 elsif Attribute.Name = Name_Linker_Lib_Name_Option then
2165 -- Attribute Linker_Lib_Name_Option: optional options
2166 -- to specify the name of a library to be linked in.
2167 -- Defaults to "-l".
2169 Get_Name_String (Attribute.Value.Value);
2171 if Name_Len = 0 then
2172 Error_Msg
2173 (Data.Flags,
2174 "linker library name option cannot be empty",
2175 Attribute.Value.Location, Project);
2176 end if;
2178 Project.Config.Linker_Lib_Name_Option :=
2179 Attribute.Value.Value;
2181 elsif Attribute.Name = Name_Run_Path_Option then
2183 -- Attribute Run_Path_Option: optional options to
2184 -- specify a path for libraries.
2186 List := Attribute.Value.Values;
2188 if List /= Nil_String then
2189 Put (Into_List => Project.Config.Run_Path_Option,
2190 From_List => List,
2191 In_Tree => Data.Tree);
2192 end if;
2194 elsif Attribute.Name = Name_Run_Path_Origin then
2195 Get_Name_String (Attribute.Value.Value);
2197 if Name_Len = 0 then
2198 Error_Msg
2199 (Data.Flags,
2200 "run path origin cannot be empty",
2201 Attribute.Value.Location, Project);
2202 end if;
2204 Project.Config.Run_Path_Origin := Attribute.Value.Value;
2206 elsif Attribute.Name = Name_Library_Install_Name_Option then
2207 Project.Config.Library_Install_Name_Option :=
2208 Attribute.Value.Value;
2210 elsif Attribute.Name = Name_Separate_Run_Path_Options then
2211 declare
2212 pragma Unsuppress (All_Checks);
2213 begin
2214 Project.Config.Separate_Run_Path_Options :=
2215 Boolean'Value (Get_Name_String (Attribute.Value.Value));
2216 exception
2217 when Constraint_Error =>
2218 Error_Msg
2219 (Data.Flags,
2220 "invalid value """ &
2221 Get_Name_String (Attribute.Value.Value) &
2222 """ for Separate_Run_Path_Options",
2223 Attribute.Value.Location, Project);
2224 end;
2226 elsif Attribute.Name = Name_Library_Support then
2227 declare
2228 pragma Unsuppress (All_Checks);
2229 begin
2230 Project.Config.Lib_Support :=
2231 Library_Support'Value (Get_Name_String
2232 (Attribute.Value.Value));
2233 exception
2234 when Constraint_Error =>
2235 Error_Msg
2236 (Data.Flags,
2237 "invalid value """ &
2238 Get_Name_String (Attribute.Value.Value) &
2239 """ for Library_Support",
2240 Attribute.Value.Location, Project);
2241 end;
2243 elsif
2244 Attribute.Name = Name_Library_Encapsulated_Supported
2245 then
2246 declare
2247 pragma Unsuppress (All_Checks);
2248 begin
2249 Project.Config.Lib_Encapsulated_Supported :=
2250 Boolean'Value (Get_Name_String (Attribute.Value.Value));
2251 exception
2252 when Constraint_Error =>
2253 Error_Msg
2254 (Data.Flags,
2255 "invalid value """
2256 & Get_Name_String (Attribute.Value.Value)
2257 & """ for Library_Encapsulated_Supported",
2258 Attribute.Value.Location, Project);
2259 end;
2261 elsif Attribute.Name = Name_Shared_Library_Prefix then
2262 Project.Config.Shared_Lib_Prefix :=
2263 File_Name_Type (Attribute.Value.Value);
2265 elsif Attribute.Name = Name_Shared_Library_Suffix then
2266 Project.Config.Shared_Lib_Suffix :=
2267 File_Name_Type (Attribute.Value.Value);
2269 elsif Attribute.Name = Name_Symbolic_Link_Supported then
2270 declare
2271 pragma Unsuppress (All_Checks);
2272 begin
2273 Project.Config.Symbolic_Link_Supported :=
2274 Boolean'Value (Get_Name_String
2275 (Attribute.Value.Value));
2276 exception
2277 when Constraint_Error =>
2278 Error_Msg
2279 (Data.Flags,
2280 "invalid value """
2281 & Get_Name_String (Attribute.Value.Value)
2282 & """ for Symbolic_Link_Supported",
2283 Attribute.Value.Location, Project);
2284 end;
2286 elsif
2287 Attribute.Name = Name_Library_Major_Minor_Id_Supported
2288 then
2289 declare
2290 pragma Unsuppress (All_Checks);
2291 begin
2292 Project.Config.Lib_Maj_Min_Id_Supported :=
2293 Boolean'Value (Get_Name_String
2294 (Attribute.Value.Value));
2295 exception
2296 when Constraint_Error =>
2297 Error_Msg
2298 (Data.Flags,
2299 "invalid value """ &
2300 Get_Name_String (Attribute.Value.Value) &
2301 """ for Library_Major_Minor_Id_Supported",
2302 Attribute.Value.Location, Project);
2303 end;
2305 elsif Attribute.Name = Name_Library_Auto_Init_Supported then
2306 declare
2307 pragma Unsuppress (All_Checks);
2308 begin
2309 Project.Config.Auto_Init_Supported :=
2310 Boolean'Value (Get_Name_String (Attribute.Value.Value));
2311 exception
2312 when Constraint_Error =>
2313 Error_Msg
2314 (Data.Flags,
2315 "invalid value """
2316 & Get_Name_String (Attribute.Value.Value)
2317 & """ for Library_Auto_Init_Supported",
2318 Attribute.Value.Location, Project);
2319 end;
2321 elsif Attribute.Name = Name_Shared_Library_Minimum_Switches then
2322 List := Attribute.Value.Values;
2324 if List /= Nil_String then
2325 Put (Into_List => Project.Config.Shared_Lib_Min_Options,
2326 From_List => List,
2327 In_Tree => Data.Tree);
2328 end if;
2330 elsif Attribute.Name = Name_Library_Version_Switches then
2331 List := Attribute.Value.Values;
2333 if List /= Nil_String then
2334 Put (Into_List => Project.Config.Lib_Version_Options,
2335 From_List => List,
2336 In_Tree => Data.Tree);
2337 end if;
2338 end if;
2339 end if;
2341 Attribute_Id := Attribute.Next;
2342 end loop;
2343 end Process_Project_Level_Simple_Attributes;
2345 --------------------------------------------
2346 -- Process_Project_Level_Array_Attributes --
2347 --------------------------------------------
2349 procedure Process_Project_Level_Array_Attributes is
2350 Current_Array_Id : Array_Id;
2351 Current_Array : Array_Data;
2352 Element_Id : Array_Element_Id;
2353 Element : Array_Element;
2354 List : String_List_Id;
2356 begin
2357 -- Process the associative array attributes at project level
2359 Current_Array_Id := Project.Decl.Arrays;
2360 while Current_Array_Id /= No_Array loop
2361 Current_Array := Shared.Arrays.Table (Current_Array_Id);
2363 Element_Id := Current_Array.Value;
2364 while Element_Id /= No_Array_Element loop
2365 Element := Shared.Array_Elements.Table (Element_Id);
2367 -- Get the name of the language
2369 Lang_Index :=
2370 Get_Language_From_Name
2371 (Project, Get_Name_String (Element.Index));
2373 if Lang_Index /= No_Language_Index then
2374 case Current_Array.Name is
2375 when Name_Inherit_Source_Path =>
2376 List := Element.Value.Values;
2378 if List /= Nil_String then
2380 (Into_List =>
2381 Lang_Index.Config.Include_Compatible_Languages,
2382 From_List => List,
2383 In_Tree => Data.Tree,
2384 Lower_Case => True);
2385 end if;
2387 when Name_Toolchain_Description =>
2389 -- Attribute Toolchain_Description (<language>)
2391 Lang_Index.Config.Toolchain_Description :=
2392 Element.Value.Value;
2394 when Name_Toolchain_Version =>
2396 -- Attribute Toolchain_Version (<language>)
2398 Lang_Index.Config.Toolchain_Version :=
2399 Element.Value.Value;
2401 -- For Ada, set proper checksum computation mode,
2402 -- which has changed from version to version.
2404 if Lang_Index.Name = Name_Ada then
2405 declare
2406 Vers : constant String :=
2407 Get_Name_String (Element.Value.Value);
2408 pragma Assert (Vers'First = 1);
2410 begin
2411 -- Version 6.3 or earlier
2413 if Vers'Length >= 8
2414 and then Vers (1 .. 5) = "GNAT "
2415 and then Vers (7) = '.'
2416 and then
2417 (Vers (6) < '6'
2418 or else
2419 (Vers (6) = '6' and then Vers (8) < '4'))
2420 then
2421 Checksum_GNAT_6_3 := True;
2423 -- Version 5.03 or earlier
2425 if Vers (6) < '5'
2426 or else (Vers (6) = '5'
2427 and then Vers (Vers'Last) < '4')
2428 then
2429 Checksum_GNAT_5_03 := True;
2431 -- Version 5.02 or earlier (no checksums)
2433 if Vers (6) /= '5'
2434 or else Vers (Vers'Last) < '3'
2435 then
2436 Checksum_Accumulate_Token_Checksum :=
2437 False;
2438 end if;
2439 end if;
2440 end if;
2441 end;
2442 end if;
2444 when Name_Runtime_Library_Dir =>
2446 -- Attribute Runtime_Library_Dir (<language>)
2448 Lang_Index.Config.Runtime_Library_Dir :=
2449 Element.Value.Value;
2451 when Name_Runtime_Source_Dir =>
2453 -- Attribute Runtime_Source_Dir (<language>)
2455 Lang_Index.Config.Runtime_Source_Dir :=
2456 Element.Value.Value;
2458 when Name_Object_Generated =>
2459 declare
2460 pragma Unsuppress (All_Checks);
2461 Value : Boolean;
2463 begin
2464 Value :=
2465 Boolean'Value
2466 (Get_Name_String (Element.Value.Value));
2468 Lang_Index.Config.Object_Generated := Value;
2470 -- If no object is generated, no object may be
2471 -- linked.
2473 if not Value then
2474 Lang_Index.Config.Objects_Linked := False;
2475 end if;
2477 exception
2478 when Constraint_Error =>
2479 Error_Msg
2480 (Data.Flags,
2481 "invalid value """
2482 & Get_Name_String (Element.Value.Value)
2483 & """ for Object_Generated",
2484 Element.Value.Location, Project);
2485 end;
2487 when Name_Objects_Linked =>
2488 declare
2489 pragma Unsuppress (All_Checks);
2490 Value : Boolean;
2492 begin
2493 Value :=
2494 Boolean'Value
2495 (Get_Name_String (Element.Value.Value));
2497 -- No change if Object_Generated is False, as this
2498 -- forces Objects_Linked to be False too.
2500 if Lang_Index.Config.Object_Generated then
2501 Lang_Index.Config.Objects_Linked := Value;
2502 end if;
2504 exception
2505 when Constraint_Error =>
2506 Error_Msg
2507 (Data.Flags,
2508 "invalid value """
2509 & Get_Name_String (Element.Value.Value)
2510 & """ for Objects_Linked",
2511 Element.Value.Location, Project);
2512 end;
2513 when others =>
2514 null;
2515 end case;
2516 end if;
2518 Element_Id := Element.Next;
2519 end loop;
2521 Current_Array_Id := Current_Array.Next;
2522 end loop;
2523 end Process_Project_Level_Array_Attributes;
2525 -- Start of processing for Check_Configuration
2527 begin
2528 Process_Project_Level_Simple_Attributes;
2529 Process_Project_Level_Array_Attributes;
2530 Process_Packages;
2532 -- For unit based languages, set Casing, Dot_Replacement and
2533 -- Separate_Suffix in Naming_Data.
2535 Lang_Index := Project.Languages;
2536 while Lang_Index /= No_Language_Index loop
2537 if Lang_Index.Config.Kind = Unit_Based then
2538 Lang_Index.Config.Naming_Data.Casing := Casing;
2539 Lang_Index.Config.Naming_Data.Dot_Replacement := Dot_Replacement;
2541 if Separate_Suffix /= No_File then
2542 Lang_Index.Config.Naming_Data.Separate_Suffix :=
2543 Separate_Suffix;
2544 end if;
2546 exit;
2547 end if;
2549 Lang_Index := Lang_Index.Next;
2550 end loop;
2552 -- Give empty names to various prefixes/suffixes, if they have not
2553 -- been specified in the configuration.
2555 if Project.Config.Archive_Suffix = No_File then
2556 Project.Config.Archive_Suffix := Empty_File;
2557 end if;
2559 if Project.Config.Shared_Lib_Prefix = No_File then
2560 Project.Config.Shared_Lib_Prefix := Empty_File;
2561 end if;
2563 if Project.Config.Shared_Lib_Suffix = No_File then
2564 Project.Config.Shared_Lib_Suffix := Empty_File;
2565 end if;
2567 Lang_Index := Project.Languages;
2568 while Lang_Index /= No_Language_Index loop
2570 -- For all languages, Compiler_Driver needs to be specified. This is
2571 -- only needed if we do intend to compile (not in GPS for instance).
2573 if Data.Flags.Compiler_Driver_Mandatory
2574 and then Lang_Index.Config.Compiler_Driver = No_File
2575 then
2576 Error_Msg_Name_1 := Lang_Index.Display_Name;
2577 Error_Msg
2578 (Data.Flags,
2579 "?no compiler specified for language %%" &
2580 ", ignoring all its sources",
2581 No_Location, Project);
2583 if Lang_Index = Project.Languages then
2584 Project.Languages := Lang_Index.Next;
2585 else
2586 Prev_Index.Next := Lang_Index.Next;
2587 end if;
2589 elsif Lang_Index.Config.Kind = Unit_Based then
2590 Prev_Index := Lang_Index;
2592 -- For unit based languages, Dot_Replacement, Spec_Suffix and
2593 -- Body_Suffix need to be specified.
2595 if Lang_Index.Config.Naming_Data.Dot_Replacement = No_File then
2596 Error_Msg
2597 (Data.Flags,
2598 "Dot_Replacement not specified for " &
2599 Get_Name_String (Lang_Index.Name),
2600 No_Location, Project);
2601 end if;
2603 if Lang_Index.Config.Naming_Data.Spec_Suffix = No_File then
2604 Error_Msg
2605 (Data.Flags,
2606 "Spec_Suffix not specified for " &
2607 Get_Name_String (Lang_Index.Name),
2608 No_Location, Project);
2609 end if;
2611 if Lang_Index.Config.Naming_Data.Body_Suffix = No_File then
2612 Error_Msg
2613 (Data.Flags,
2614 "Body_Suffix not specified for " &
2615 Get_Name_String (Lang_Index.Name),
2616 No_Location, Project);
2617 end if;
2619 else
2620 Prev_Index := Lang_Index;
2622 -- For file based languages, either Spec_Suffix or Body_Suffix
2623 -- need to be specified.
2625 if Data.Flags.Require_Sources_Other_Lang
2626 and then Lang_Index.Config.Naming_Data.Spec_Suffix = No_File
2627 and then Lang_Index.Config.Naming_Data.Body_Suffix = No_File
2628 then
2629 Error_Msg_Name_1 := Lang_Index.Display_Name;
2630 Error_Msg
2631 (Data.Flags,
2632 "no suffixes specified for %%",
2633 No_Location, Project);
2634 end if;
2635 end if;
2637 Lang_Index := Lang_Index.Next;
2638 end loop;
2639 end Check_Configuration;
2641 -------------------------------
2642 -- Check_If_Externally_Built --
2643 -------------------------------
2645 procedure Check_If_Externally_Built
2646 (Project : Project_Id;
2647 Data : in out Tree_Processing_Data)
2649 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
2650 Externally_Built : constant Variable_Value :=
2651 Util.Value_Of
2652 (Name_Externally_Built,
2653 Project.Decl.Attributes, Shared);
2655 begin
2656 if not Externally_Built.Default then
2657 Get_Name_String (Externally_Built.Value);
2658 To_Lower (Name_Buffer (1 .. Name_Len));
2660 if Name_Buffer (1 .. Name_Len) = "true" then
2661 Project.Externally_Built := True;
2663 elsif Name_Buffer (1 .. Name_Len) /= "false" then
2664 Error_Msg (Data.Flags,
2665 "Externally_Built may only be true or false",
2666 Externally_Built.Location, Project);
2667 end if;
2668 end if;
2670 -- A virtual project extending an externally built project is itself
2671 -- externally built.
2673 if Project.Virtual and then Project.Extends /= No_Project then
2674 Project.Externally_Built := Project.Extends.Externally_Built;
2675 end if;
2677 if Project.Externally_Built then
2678 Debug_Output ("project is externally built");
2679 else
2680 Debug_Output ("project is not externally built");
2681 end if;
2682 end Check_If_Externally_Built;
2684 ----------------------
2685 -- Check_Interfaces --
2686 ----------------------
2688 procedure Check_Interfaces
2689 (Project : Project_Id;
2690 Data : in out Tree_Processing_Data)
2692 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
2694 Interfaces : constant Prj.Variable_Value :=
2695 Prj.Util.Value_Of
2696 (Snames.Name_Interfaces,
2697 Project.Decl.Attributes,
2698 Shared);
2700 Library_Interface : constant Prj.Variable_Value :=
2701 Prj.Util.Value_Of
2702 (Snames.Name_Library_Interface,
2703 Project.Decl.Attributes,
2704 Shared);
2706 List : String_List_Id;
2707 Element : String_Element;
2708 Name : File_Name_Type;
2709 Iter : Source_Iterator;
2710 Source : Source_Id;
2711 Project_2 : Project_Id;
2712 Other : Source_Id;
2713 Unit_Found : Boolean;
2715 Interface_ALIs : String_List_Id := Nil_String;
2716 Other_Interfaces : String_List_Id := Nil_String;
2718 begin
2719 if not Interfaces.Default then
2721 -- Set In_Interfaces to False for all sources. It will be set to True
2722 -- later for the sources in the Interfaces list.
2724 Project_2 := Project;
2725 while Project_2 /= No_Project loop
2726 Iter := For_Each_Source (Data.Tree, Project_2);
2727 loop
2728 Source := Prj.Element (Iter);
2729 exit when Source = No_Source;
2730 Source.In_Interfaces := False;
2731 Next (Iter);
2732 end loop;
2734 Project_2 := Project_2.Extends;
2735 end loop;
2737 List := Interfaces.Values;
2738 while List /= Nil_String loop
2739 Element := Shared.String_Elements.Table (List);
2740 Name := Canonical_Case_File_Name (Element.Value);
2742 Project_2 := Project;
2743 Big_Loop : while Project_2 /= No_Project loop
2744 if Project.Qualifier = Aggregate_Library then
2746 -- For an aggregate library we want to consider sources of
2747 -- all aggregated projects.
2749 Iter := For_Each_Source (Data.Tree);
2751 else
2752 Iter := For_Each_Source (Data.Tree, Project_2);
2753 end if;
2755 loop
2756 Source := Prj.Element (Iter);
2757 exit when Source = No_Source;
2759 if Source.File = Name then
2760 if not Source.Locally_Removed then
2761 Source.In_Interfaces := True;
2762 Source.Declared_In_Interfaces := True;
2764 Other := Other_Part (Source);
2766 if Other /= No_Source then
2767 Other.In_Interfaces := True;
2768 Other.Declared_In_Interfaces := True;
2769 end if;
2771 -- Unit based case
2773 if Source.Language.Config.Kind = Unit_Based then
2774 if Source.Kind = Spec
2775 and then Other_Part (Source) /= No_Source
2776 then
2777 Source := Other_Part (Source);
2778 end if;
2780 String_Element_Table.Increment_Last
2781 (Shared.String_Elements);
2783 Shared.String_Elements.Table
2784 (String_Element_Table.Last
2785 (Shared.String_Elements)) :=
2786 (Value => Name_Id (Source.Dep_Name),
2787 Index => 0,
2788 Display_Value => Name_Id (Source.Dep_Name),
2789 Location => No_Location,
2790 Flag => False,
2791 Next => Interface_ALIs);
2793 Interface_ALIs :=
2794 String_Element_Table.Last
2795 (Shared.String_Elements);
2797 -- File based case
2799 else
2800 String_Element_Table.Increment_Last
2801 (Shared.String_Elements);
2803 Shared.String_Elements.Table
2804 (String_Element_Table.Last
2805 (Shared.String_Elements)) :=
2806 (Value => Name_Id (Source.File),
2807 Index => 0,
2808 Display_Value => Name_Id (Source.Display_File),
2809 Location => No_Location,
2810 Flag => False,
2811 Next => Other_Interfaces);
2813 Other_Interfaces :=
2814 String_Element_Table.Last
2815 (Shared.String_Elements);
2816 end if;
2818 Debug_Output
2819 ("interface: ", Name_Id (Source.Path.Name));
2820 end if;
2822 exit Big_Loop;
2823 end if;
2825 Next (Iter);
2826 end loop;
2828 Project_2 := Project_2.Extends;
2829 end loop Big_Loop;
2831 if Source = No_Source then
2832 Error_Msg_File_1 := File_Name_Type (Element.Value);
2833 Error_Msg_Name_1 := Project.Name;
2835 Error_Msg
2836 (Data.Flags,
2837 "{ cannot be an interface of project %% "
2838 & "as it is not one of its sources",
2839 Element.Location, Project);
2840 end if;
2842 List := Element.Next;
2843 end loop;
2845 Project.Interfaces_Defined := True;
2846 Project.Lib_Interface_ALIs := Interface_ALIs;
2847 Project.Other_Interfaces := Other_Interfaces;
2849 elsif Project.Library and then not Library_Interface.Default then
2851 -- Set In_Interfaces to False for all sources. It will be set to True
2852 -- later for the sources in the Library_Interface list.
2854 Project_2 := Project;
2855 while Project_2 /= No_Project loop
2856 Iter := For_Each_Source (Data.Tree, Project_2);
2857 loop
2858 Source := Prj.Element (Iter);
2859 exit when Source = No_Source;
2860 Source.In_Interfaces := False;
2861 Next (Iter);
2862 end loop;
2864 Project_2 := Project_2.Extends;
2865 end loop;
2867 List := Library_Interface.Values;
2868 while List /= Nil_String loop
2869 Element := Shared.String_Elements.Table (List);
2870 Get_Name_String (Element.Value);
2871 To_Lower (Name_Buffer (1 .. Name_Len));
2872 Name := Name_Find;
2873 Unit_Found := False;
2875 Project_2 := Project;
2876 Big_Loop_2 : while Project_2 /= No_Project loop
2877 if Project.Qualifier = Aggregate_Library then
2879 -- For an aggregate library we want to consider sources of
2880 -- all aggregated projects.
2882 Iter := For_Each_Source (Data.Tree);
2884 else
2885 Iter := For_Each_Source (Data.Tree, Project_2);
2886 end if;
2888 loop
2889 Source := Prj.Element (Iter);
2890 exit when Source = No_Source;
2892 if Source.Unit /= No_Unit_Index
2893 and then Source.Unit.Name = Name_Id (Name)
2894 then
2895 if not Source.Locally_Removed then
2896 Source.In_Interfaces := True;
2897 Source.Declared_In_Interfaces := True;
2898 Project.Interfaces_Defined := True;
2900 Other := Other_Part (Source);
2902 if Other /= No_Source then
2903 Other.In_Interfaces := True;
2904 Other.Declared_In_Interfaces := True;
2905 end if;
2907 Debug_Output
2908 ("interface: ", Name_Id (Source.Path.Name));
2910 if Source.Kind = Spec
2911 and then Other_Part (Source) /= No_Source
2912 then
2913 Source := Other_Part (Source);
2914 end if;
2916 String_Element_Table.Increment_Last
2917 (Shared.String_Elements);
2919 Shared.String_Elements.Table
2920 (String_Element_Table.Last
2921 (Shared.String_Elements)) :=
2922 (Value => Name_Id (Source.Dep_Name),
2923 Index => 0,
2924 Display_Value => Name_Id (Source.Dep_Name),
2925 Location => No_Location,
2926 Flag => False,
2927 Next => Interface_ALIs);
2929 Interface_ALIs :=
2930 String_Element_Table.Last (Shared.String_Elements);
2931 end if;
2933 Unit_Found := True;
2934 exit Big_Loop_2;
2935 end if;
2937 Next (Iter);
2938 end loop;
2940 Project_2 := Project_2.Extends;
2941 end loop Big_Loop_2;
2943 if not Unit_Found then
2944 Error_Msg_Name_1 := Name_Id (Name);
2946 Error_Msg
2947 (Data.Flags,
2948 "%% is not a unit of this project",
2949 Element.Location, Project);
2950 end if;
2952 List := Element.Next;
2953 end loop;
2955 Project.Lib_Interface_ALIs := Interface_ALIs;
2957 elsif Project.Extends /= No_Project
2958 and then Project.Extends.Interfaces_Defined
2959 then
2960 Project.Interfaces_Defined := True;
2962 Iter := For_Each_Source (Data.Tree, Project);
2963 loop
2964 Source := Prj.Element (Iter);
2965 exit when Source = No_Source;
2967 if not Source.Declared_In_Interfaces then
2968 Source.In_Interfaces := False;
2969 end if;
2971 Next (Iter);
2972 end loop;
2974 Project.Lib_Interface_ALIs := Project.Extends.Lib_Interface_ALIs;
2975 end if;
2976 end Check_Interfaces;
2978 ------------------------------
2979 -- Check_Library_Attributes --
2980 ------------------------------
2982 -- This procedure is awfully long (over 700 lines) should be broken up???
2984 procedure Check_Library_Attributes
2985 (Project : Project_Id;
2986 Data : in out Tree_Processing_Data)
2988 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
2990 Attributes : constant Prj.Variable_Id := Project.Decl.Attributes;
2992 Lib_Dir : constant Prj.Variable_Value :=
2993 Prj.Util.Value_Of
2994 (Snames.Name_Library_Dir, Attributes, Shared);
2996 Lib_Name : constant Prj.Variable_Value :=
2997 Prj.Util.Value_Of
2998 (Snames.Name_Library_Name, Attributes, Shared);
3000 Lib_Standalone : constant Prj.Variable_Value :=
3001 Prj.Util.Value_Of
3002 (Snames.Name_Library_Standalone,
3003 Attributes, Shared);
3005 Lib_Version : constant Prj.Variable_Value :=
3006 Prj.Util.Value_Of
3007 (Snames.Name_Library_Version, Attributes, Shared);
3009 Lib_ALI_Dir : constant Prj.Variable_Value :=
3010 Prj.Util.Value_Of
3011 (Snames.Name_Library_Ali_Dir, Attributes, Shared);
3013 Lib_GCC : constant Prj.Variable_Value :=
3014 Prj.Util.Value_Of
3015 (Snames.Name_Library_GCC, Attributes, Shared);
3017 The_Lib_Kind : constant Prj.Variable_Value :=
3018 Prj.Util.Value_Of
3019 (Snames.Name_Library_Kind, Attributes, Shared);
3021 Imported_Project_List : Project_List;
3022 Continuation : String_Access := No_Continuation_String'Access;
3023 Support_For_Libraries : Library_Support;
3025 Library_Directory_Present : Boolean;
3027 procedure Check_Library (Proj : Project_Id; Extends : Boolean);
3028 -- Check if an imported or extended project if also a library project
3030 procedure Check_Aggregate_Library_Dirs;
3031 -- Check that the library directory and the library ALI directory of an
3032 -- aggregate library project are not the same as the object directory or
3033 -- the library directory of any of its aggregated projects.
3035 ----------------------------------
3036 -- Check_Aggregate_Library_Dirs --
3037 ----------------------------------
3039 procedure Check_Aggregate_Library_Dirs is
3040 procedure Process_Aggregate (Proj : Project_Id);
3041 -- Recursive procedure to check the aggregated projects, as they may
3042 -- also be aggregated library projects.
3044 -----------------------
3045 -- Process_Aggregate --
3046 -----------------------
3048 procedure Process_Aggregate (Proj : Project_Id) is
3049 Agg : Aggregated_Project_List;
3051 begin
3052 Agg := Proj.Aggregated_Projects;
3053 while Agg /= null loop
3054 Error_Msg_Name_1 := Agg.Project.Name;
3056 if Agg.Project.Qualifier /= Aggregate_Library
3057 and then Project.Library_ALI_Dir.Name =
3058 Agg.Project.Object_Directory.Name
3059 then
3060 Error_Msg
3061 (Data.Flags,
3062 "aggregate library 'A'L'I directory cannot be shared with"
3063 & " object directory of aggregated project %%",
3064 The_Lib_Kind.Location, Project);
3066 elsif Project.Library_ALI_Dir.Name =
3067 Agg.Project.Library_Dir.Name
3068 then
3069 Error_Msg
3070 (Data.Flags,
3071 "aggregate library 'A'L'I directory cannot be shared with"
3072 & " library directory of aggregated project %%",
3073 The_Lib_Kind.Location, Project);
3075 elsif Agg.Project.Qualifier /= Aggregate_Library
3076 and then Project.Library_Dir.Name =
3077 Agg.Project.Object_Directory.Name
3078 then
3079 Error_Msg
3080 (Data.Flags,
3081 "aggregate library directory cannot be shared with"
3082 & " object directory of aggregated project %%",
3083 The_Lib_Kind.Location, Project);
3085 elsif Project.Library_Dir.Name =
3086 Agg.Project.Library_Dir.Name
3087 then
3088 Error_Msg
3089 (Data.Flags,
3090 "aggregate library directory cannot be shared with"
3091 & " library directory of aggregated project %%",
3092 The_Lib_Kind.Location, Project);
3093 end if;
3095 if Agg.Project.Qualifier = Aggregate_Library then
3096 Process_Aggregate (Agg.Project);
3097 end if;
3099 Agg := Agg.Next;
3100 end loop;
3101 end Process_Aggregate;
3103 -- Start of processing for Check_Aggregate_Library_Dirs
3105 begin
3106 if Project.Qualifier = Aggregate_Library then
3107 Process_Aggregate (Project);
3108 end if;
3109 end Check_Aggregate_Library_Dirs;
3111 -------------------
3112 -- Check_Library --
3113 -------------------
3115 procedure Check_Library (Proj : Project_Id; Extends : Boolean) is
3116 Src_Id : Source_Id;
3117 Iter : Source_Iterator;
3119 begin
3120 if Proj /= No_Project then
3121 if not Proj.Library then
3123 -- The only not library projects that are OK are those that
3124 -- have no sources. However, header files from non-Ada
3125 -- languages are OK, as there is nothing to compile.
3127 Iter := For_Each_Source (Data.Tree, Proj);
3128 loop
3129 Src_Id := Prj.Element (Iter);
3130 exit when Src_Id = No_Source
3131 or else Src_Id.Language.Config.Kind /= File_Based
3132 or else Src_Id.Kind /= Spec;
3133 Next (Iter);
3134 end loop;
3136 if Src_Id /= No_Source then
3137 Error_Msg_Name_1 := Project.Name;
3138 Error_Msg_Name_2 := Proj.Name;
3140 if Extends then
3141 if Project.Library_Kind /= Static then
3142 Error_Msg
3143 (Data.Flags,
3144 Continuation.all &
3145 "shared library project %% cannot extend " &
3146 "project %% that is not a library project",
3147 Project.Location, Project);
3148 Continuation := Continuation_String'Access;
3149 end if;
3151 elsif not Unchecked_Shared_Lib_Imports
3152 and then Project.Library_Kind /= Static
3153 then
3154 Error_Msg
3155 (Data.Flags,
3156 Continuation.all &
3157 "shared library project %% cannot import project %% " &
3158 "that is not a shared library project",
3159 Project.Location, Project);
3160 Continuation := Continuation_String'Access;
3161 end if;
3162 end if;
3164 elsif Project.Library_Kind /= Static
3165 and then not Lib_Standalone.Default
3166 and then Get_Name_String (Lib_Standalone.Value) = "encapsulated"
3167 and then Proj.Library_Kind /= Static
3168 then
3169 -- An encapsulated library must depend only on static libraries
3171 Error_Msg_Name_1 := Project.Name;
3172 Error_Msg_Name_2 := Proj.Name;
3174 Error_Msg
3175 (Data.Flags,
3176 Continuation.all &
3177 "encapsulated library project %% cannot import shared " &
3178 "library project %%",
3179 Project.Location, Project);
3180 Continuation := Continuation_String'Access;
3182 elsif Project.Library_Kind /= Static
3183 and then Proj.Library_Kind = Static
3184 and then
3185 (Lib_Standalone.Default
3186 or else
3187 Get_Name_String (Lib_Standalone.Value) /= "encapsulated")
3188 then
3189 Error_Msg_Name_1 := Project.Name;
3190 Error_Msg_Name_2 := Proj.Name;
3192 if Extends then
3193 Error_Msg
3194 (Data.Flags,
3195 Continuation.all &
3196 "shared library project %% cannot extend static " &
3197 "library project %%",
3198 Project.Location, Project);
3199 Continuation := Continuation_String'Access;
3201 elsif not Unchecked_Shared_Lib_Imports then
3202 Error_Msg
3203 (Data.Flags,
3204 Continuation.all &
3205 "shared library project %% cannot import static " &
3206 "library project %%",
3207 Project.Location, Project);
3208 Continuation := Continuation_String'Access;
3209 end if;
3211 end if;
3212 end if;
3213 end Check_Library;
3215 Dir_Exists : Boolean;
3217 -- Start of processing for Check_Library_Attributes
3219 begin
3220 Library_Directory_Present := Lib_Dir.Value /= Empty_String;
3222 -- Special case of extending project
3224 if Project.Extends /= No_Project then
3226 -- If the project extended is a library project, we inherit the
3227 -- library name, if it is not redefined; we check that the library
3228 -- directory is specified.
3230 if Project.Extends.Library then
3231 if Project.Qualifier = Standard then
3232 Error_Msg
3233 (Data.Flags,
3234 "a standard project cannot extend a library project",
3235 Project.Location, Project);
3237 else
3238 if Lib_Name.Default then
3239 Project.Library_Name := Project.Extends.Library_Name;
3240 end if;
3242 if Lib_Dir.Default then
3243 if not Project.Virtual then
3244 Error_Msg
3245 (Data.Flags,
3246 "a project extending a library project must " &
3247 "specify an attribute Library_Dir",
3248 Project.Location, Project);
3250 else
3251 -- For a virtual project extending a library project,
3252 -- inherit library directory and library kind.
3254 Project.Library_Dir := Project.Extends.Library_Dir;
3255 Library_Directory_Present := True;
3256 Project.Library_Kind := Project.Extends.Library_Kind;
3257 end if;
3258 end if;
3259 end if;
3260 end if;
3261 end if;
3263 pragma Assert (Lib_Name.Kind = Single);
3265 if Lib_Name.Value = Empty_String then
3266 if Current_Verbosity = High
3267 and then Project.Library_Name = No_Name
3268 then
3269 Debug_Indent;
3270 Write_Line ("no library name");
3271 end if;
3273 else
3274 -- There is no restriction on the syntax of library names
3276 Project.Library_Name := Lib_Name.Value;
3277 end if;
3279 if Project.Library_Name /= No_Name then
3280 if Current_Verbosity = High then
3281 Write_Attr
3282 ("Library name: ", Get_Name_String (Project.Library_Name));
3283 end if;
3285 pragma Assert (Lib_Dir.Kind = Single);
3287 if not Library_Directory_Present then
3288 Debug_Output ("no library directory");
3290 else
3291 -- Find path name (unless inherited), check that it is a directory
3293 if Project.Library_Dir = No_Path_Information then
3294 Locate_Directory
3295 (Project,
3296 File_Name_Type (Lib_Dir.Value),
3297 Path => Project.Library_Dir,
3298 Dir_Exists => Dir_Exists,
3299 Data => Data,
3300 Create => "library",
3301 Must_Exist => False,
3302 Location => Lib_Dir.Location,
3303 Externally_Built => Project.Externally_Built);
3305 else
3306 Dir_Exists :=
3307 Is_Directory
3308 (Get_Name_String (Project.Library_Dir.Display_Name));
3309 end if;
3311 if not Dir_Exists then
3312 if Directories_Must_Exist_In_Projects then
3314 -- Get the absolute name of the library directory that does
3315 -- not exist, to report an error.
3317 Err_Vars.Error_Msg_File_1 :=
3318 File_Name_Type (Project.Library_Dir.Display_Name);
3319 Error_Msg
3320 (Data.Flags,
3321 "library directory { does not exist",
3322 Lib_Dir.Location, Project);
3323 end if;
3325 -- Checks for object/source directories
3327 elsif not Project.Externally_Built
3329 -- An aggregate library does not have sources or objects, so
3330 -- these tests are not required in this case.
3332 and then Project.Qualifier /= Aggregate_Library
3333 then
3334 -- Library directory cannot be the same as Object directory
3336 if Project.Library_Dir.Name = Project.Object_Directory.Name then
3337 Error_Msg
3338 (Data.Flags,
3339 "library directory cannot be the same " &
3340 "as object directory",
3341 Lib_Dir.Location, Project);
3342 Project.Library_Dir := No_Path_Information;
3344 else
3345 declare
3346 OK : Boolean := True;
3347 Dirs_Id : String_List_Id;
3348 Dir_Elem : String_Element;
3349 Pid : Project_List;
3351 begin
3352 -- The library directory cannot be the same as a source
3353 -- directory of the current project.
3355 Dirs_Id := Project.Source_Dirs;
3356 while Dirs_Id /= Nil_String loop
3357 Dir_Elem := Shared.String_Elements.Table (Dirs_Id);
3358 Dirs_Id := Dir_Elem.Next;
3360 if Project.Library_Dir.Name =
3361 Path_Name_Type (Dir_Elem.Value)
3362 then
3363 Err_Vars.Error_Msg_File_1 :=
3364 File_Name_Type (Dir_Elem.Value);
3365 Error_Msg
3366 (Data.Flags,
3367 "library directory cannot be the same "
3368 & "as source directory {",
3369 Lib_Dir.Location, Project);
3370 OK := False;
3371 exit;
3372 end if;
3373 end loop;
3375 if OK then
3377 -- The library directory cannot be the same as a
3378 -- source directory of another project either.
3380 Pid := Data.Tree.Projects;
3381 Project_Loop : loop
3382 exit Project_Loop when Pid = null;
3384 if Pid.Project /= Project then
3385 Dirs_Id := Pid.Project.Source_Dirs;
3387 Dir_Loop : while Dirs_Id /= Nil_String loop
3388 Dir_Elem :=
3389 Shared.String_Elements.Table (Dirs_Id);
3390 Dirs_Id := Dir_Elem.Next;
3392 if Project.Library_Dir.Name =
3393 Path_Name_Type (Dir_Elem.Value)
3394 then
3395 Err_Vars.Error_Msg_File_1 :=
3396 File_Name_Type (Dir_Elem.Value);
3397 Err_Vars.Error_Msg_Name_1 :=
3398 Pid.Project.Name;
3400 Error_Msg
3401 (Data.Flags,
3402 "library directory cannot be the same "
3403 & "as source directory { of project %%",
3404 Lib_Dir.Location, Project);
3405 OK := False;
3406 exit Project_Loop;
3407 end if;
3408 end loop Dir_Loop;
3409 end if;
3411 Pid := Pid.Next;
3412 end loop Project_Loop;
3413 end if;
3415 if not OK then
3416 Project.Library_Dir := No_Path_Information;
3418 elsif Current_Verbosity = High then
3420 -- Display the Library directory in high verbosity
3422 Write_Attr
3423 ("Library directory",
3424 Get_Name_String (Project.Library_Dir.Display_Name));
3425 end if;
3426 end;
3427 end if;
3428 end if;
3429 end if;
3431 end if;
3433 Project.Library :=
3434 Project.Library_Dir /= No_Path_Information
3435 and then Project.Library_Name /= No_Name;
3437 if Project.Extends = No_Project then
3438 case Project.Qualifier is
3439 when Standard =>
3440 if Project.Library then
3441 Error_Msg
3442 (Data.Flags,
3443 "a standard project cannot be a library project",
3444 Lib_Name.Location, Project);
3445 end if;
3447 when Library | Aggregate_Library =>
3448 if not Project.Library then
3449 if Project.Library_Name = No_Name then
3450 Error_Msg
3451 (Data.Flags,
3452 "attribute Library_Name not declared",
3453 Project.Location, Project);
3455 if not Library_Directory_Present then
3456 Error_Msg
3457 (Data.Flags,
3458 "\attribute Library_Dir not declared",
3459 Project.Location, Project);
3460 end if;
3462 elsif Project.Library_Dir = No_Path_Information then
3463 Error_Msg
3464 (Data.Flags,
3465 "attribute Library_Dir not declared",
3466 Project.Location, Project);
3467 end if;
3468 end if;
3470 when others =>
3471 null;
3472 end case;
3473 end if;
3475 if Project.Library then
3476 Support_For_Libraries := Project.Config.Lib_Support;
3478 if not Project.Externally_Built
3479 and then Support_For_Libraries = Prj.None
3480 then
3481 Error_Msg
3482 (Data.Flags,
3483 "?libraries are not supported on this platform",
3484 Lib_Name.Location, Project);
3485 Project.Library := False;
3487 else
3488 if Lib_ALI_Dir.Value = Empty_String then
3489 Debug_Output ("no library ALI directory specified");
3490 Project.Library_ALI_Dir := Project.Library_Dir;
3492 else
3493 -- Find path name, check that it is a directory
3495 Locate_Directory
3496 (Project,
3497 File_Name_Type (Lib_ALI_Dir.Value),
3498 Path => Project.Library_ALI_Dir,
3499 Create => "library ALI",
3500 Dir_Exists => Dir_Exists,
3501 Data => Data,
3502 Must_Exist => False,
3503 Location => Lib_ALI_Dir.Location,
3504 Externally_Built => Project.Externally_Built);
3506 if not Dir_Exists then
3508 -- Get the absolute name of the library ALI directory that
3509 -- does not exist, to report an error.
3511 Err_Vars.Error_Msg_File_1 :=
3512 File_Name_Type (Project.Library_ALI_Dir.Display_Name);
3513 Error_Msg
3514 (Data.Flags,
3515 "library 'A'L'I directory { does not exist",
3516 Lib_ALI_Dir.Location, Project);
3517 end if;
3519 if not Project.Externally_Built
3520 and then Project.Library_ALI_Dir /= Project.Library_Dir
3521 then
3522 -- The library ALI directory cannot be the same as the
3523 -- Object directory.
3525 if Project.Library_ALI_Dir = Project.Object_Directory then
3526 Error_Msg
3527 (Data.Flags,
3528 "library 'A'L'I directory cannot be the same " &
3529 "as object directory",
3530 Lib_ALI_Dir.Location, Project);
3531 Project.Library_ALI_Dir := No_Path_Information;
3533 else
3534 declare
3535 OK : Boolean := True;
3536 Dirs_Id : String_List_Id;
3537 Dir_Elem : String_Element;
3538 Pid : Project_List;
3540 begin
3541 -- The library ALI directory cannot be the same as
3542 -- a source directory of the current project.
3544 Dirs_Id := Project.Source_Dirs;
3545 while Dirs_Id /= Nil_String loop
3546 Dir_Elem := Shared.String_Elements.Table (Dirs_Id);
3547 Dirs_Id := Dir_Elem.Next;
3549 if Project.Library_ALI_Dir.Name =
3550 Path_Name_Type (Dir_Elem.Value)
3551 then
3552 Err_Vars.Error_Msg_File_1 :=
3553 File_Name_Type (Dir_Elem.Value);
3554 Error_Msg
3555 (Data.Flags,
3556 "library 'A'L'I directory cannot be " &
3557 "the same as source directory {",
3558 Lib_ALI_Dir.Location, Project);
3559 OK := False;
3560 exit;
3561 end if;
3562 end loop;
3564 if OK then
3566 -- The library ALI directory cannot be the same as
3567 -- a source directory of another project either.
3569 Pid := Data.Tree.Projects;
3570 ALI_Project_Loop : loop
3571 exit ALI_Project_Loop when Pid = null;
3573 if Pid.Project /= Project then
3574 Dirs_Id := Pid.Project.Source_Dirs;
3576 ALI_Dir_Loop :
3577 while Dirs_Id /= Nil_String loop
3578 Dir_Elem :=
3579 Shared.String_Elements.Table (Dirs_Id);
3580 Dirs_Id := Dir_Elem.Next;
3582 if Project.Library_ALI_Dir.Name =
3583 Path_Name_Type (Dir_Elem.Value)
3584 then
3585 Err_Vars.Error_Msg_File_1 :=
3586 File_Name_Type (Dir_Elem.Value);
3587 Err_Vars.Error_Msg_Name_1 :=
3588 Pid.Project.Name;
3590 Error_Msg
3591 (Data.Flags,
3592 "library 'A'L'I directory cannot " &
3593 "be the same as source directory " &
3594 "{ of project %%",
3595 Lib_ALI_Dir.Location, Project);
3596 OK := False;
3597 exit ALI_Project_Loop;
3598 end if;
3599 end loop ALI_Dir_Loop;
3600 end if;
3601 Pid := Pid.Next;
3602 end loop ALI_Project_Loop;
3603 end if;
3605 if not OK then
3606 Project.Library_ALI_Dir := No_Path_Information;
3608 elsif Current_Verbosity = High then
3610 -- Display Library ALI directory in high verbosity
3612 Write_Attr
3613 ("Library ALI dir",
3614 Get_Name_String
3615 (Project.Library_ALI_Dir.Display_Name));
3616 end if;
3617 end;
3618 end if;
3619 end if;
3620 end if;
3622 pragma Assert (Lib_Version.Kind = Single);
3624 if Lib_Version.Value = Empty_String then
3625 Debug_Output ("no library version specified");
3627 else
3628 Project.Lib_Internal_Name := Lib_Version.Value;
3629 end if;
3631 pragma Assert (The_Lib_Kind.Kind = Single);
3633 if The_Lib_Kind.Value = Empty_String then
3634 Debug_Output ("no library kind specified");
3636 else
3637 Get_Name_String (The_Lib_Kind.Value);
3639 declare
3640 Kind_Name : constant String :=
3641 To_Lower (Name_Buffer (1 .. Name_Len));
3643 OK : Boolean := True;
3645 begin
3646 if Kind_Name = "static" then
3647 Project.Library_Kind := Static;
3649 elsif Kind_Name = "dynamic" then
3650 Project.Library_Kind := Dynamic;
3652 elsif Kind_Name = "relocatable" then
3653 Project.Library_Kind := Relocatable;
3655 else
3656 Error_Msg
3657 (Data.Flags,
3658 "illegal value for Library_Kind",
3659 The_Lib_Kind.Location, Project);
3660 OK := False;
3661 end if;
3663 if Current_Verbosity = High and then OK then
3664 Write_Attr ("Library kind", Kind_Name);
3665 end if;
3667 if Project.Library_Kind /= Static then
3668 if not Project.Externally_Built
3669 and then Support_For_Libraries = Prj.Static_Only
3670 then
3671 Error_Msg
3672 (Data.Flags,
3673 "only static libraries are supported " &
3674 "on this platform",
3675 The_Lib_Kind.Location, Project);
3676 Project.Library := False;
3678 else
3679 -- Check if (obsolescent) attribute Library_GCC or
3680 -- Linker'Driver is declared.
3682 if Lib_GCC.Value /= Empty_String then
3683 Error_Msg
3684 (Data.Flags,
3685 "?Library_'G'C'C is an obsolescent attribute, " &
3686 "use Linker''Driver instead",
3687 Lib_GCC.Location, Project);
3688 Project.Config.Shared_Lib_Driver :=
3689 File_Name_Type (Lib_GCC.Value);
3691 else
3692 declare
3693 Linker : constant Package_Id :=
3694 Value_Of
3695 (Name_Linker,
3696 Project.Decl.Packages,
3697 Shared);
3698 Driver : constant Variable_Value :=
3699 Value_Of
3700 (Name => No_Name,
3701 Attribute_Or_Array_Name =>
3702 Name_Driver,
3703 In_Package => Linker,
3704 Shared => Shared);
3706 begin
3707 if Driver /= Nil_Variable_Value
3708 and then Driver.Value /= Empty_String
3709 then
3710 Project.Config.Shared_Lib_Driver :=
3711 File_Name_Type (Driver.Value);
3712 end if;
3713 end;
3714 end if;
3715 end if;
3716 end if;
3717 end;
3718 end if;
3720 if Project.Library
3721 and then Project.Qualifier /= Aggregate_Library
3722 then
3723 Debug_Output ("this is a library project file");
3725 Check_Library (Project.Extends, Extends => True);
3727 Imported_Project_List := Project.Imported_Projects;
3728 while Imported_Project_List /= null loop
3729 Check_Library
3730 (Imported_Project_List.Project,
3731 Extends => False);
3732 Imported_Project_List := Imported_Project_List.Next;
3733 end loop;
3734 end if;
3735 end if;
3736 end if;
3738 -- Check if Linker'Switches or Linker'Default_Switches are declared.
3739 -- Warn if they are declared, as it is a common error to think that
3740 -- library are "linked" with Linker switches.
3742 if Project.Library then
3743 declare
3744 Linker_Package_Id : constant Package_Id :=
3745 Util.Value_Of
3746 (Name_Linker,
3747 Project.Decl.Packages, Shared);
3748 Linker_Package : Package_Element;
3749 Switches : Array_Element_Id := No_Array_Element;
3751 begin
3752 if Linker_Package_Id /= No_Package then
3753 Linker_Package := Shared.Packages.Table (Linker_Package_Id);
3755 Switches :=
3756 Value_Of
3757 (Name => Name_Switches,
3758 In_Arrays => Linker_Package.Decl.Arrays,
3759 Shared => Shared);
3761 if Switches = No_Array_Element then
3762 Switches :=
3763 Value_Of
3764 (Name => Name_Default_Switches,
3765 In_Arrays => Linker_Package.Decl.Arrays,
3766 Shared => Shared);
3767 end if;
3769 if Switches /= No_Array_Element then
3770 Error_Msg
3771 (Data.Flags,
3772 "?Linker switches not taken into account in library " &
3773 "projects",
3774 No_Location, Project);
3775 end if;
3776 end if;
3777 end;
3778 end if;
3780 if Project.Extends /= No_Project and then Project.Extends.Library then
3782 -- Remove the library name from Lib_Data_Table
3784 for J in 1 .. Lib_Data_Table.Last loop
3785 if Lib_Data_Table.Table (J).Proj = Project.Extends then
3786 Lib_Data_Table.Table (J) :=
3787 Lib_Data_Table.Table (Lib_Data_Table.Last);
3788 Lib_Data_Table.Set_Last (Lib_Data_Table.Last - 1);
3789 exit;
3790 end if;
3791 end loop;
3792 end if;
3794 if Project.Library and then not Lib_Name.Default then
3796 -- Check if the same library name is used in an other library project
3798 for J in 1 .. Lib_Data_Table.Last loop
3799 if Lib_Data_Table.Table (J).Name = Project.Library_Name
3800 and then Lib_Data_Table.Table (J).Tree = Data.Tree
3801 then
3802 Error_Msg_Name_1 := Lib_Data_Table.Table (J).Proj.Name;
3803 Error_Msg
3804 (Data.Flags,
3805 "Library name cannot be the same as in project %%",
3806 Lib_Name.Location, Project);
3807 Project.Library := False;
3808 exit;
3809 end if;
3810 end loop;
3811 end if;
3813 if not Lib_Standalone.Default
3814 and then Project.Library_Kind = Static
3815 then
3816 -- An standalone library must be a shared library
3818 Error_Msg_Name_1 := Project.Name;
3820 Error_Msg
3821 (Data.Flags,
3822 Continuation.all &
3823 "standalone library project %% must be a shared library",
3824 Project.Location, Project);
3825 Continuation := Continuation_String'Access;
3826 end if;
3828 -- Check that aggregated libraries do not share the aggregate
3829 -- Library_ALI_Dir.
3831 if Project.Qualifier = Aggregate_Library then
3832 Check_Aggregate_Library_Dirs;
3833 end if;
3835 if Project.Library and not Data.In_Aggregate_Lib then
3837 -- Record the library name
3839 Lib_Data_Table.Append
3840 ((Name => Project.Library_Name,
3841 Proj => Project,
3842 Tree => Data.Tree));
3843 end if;
3844 end Check_Library_Attributes;
3846 --------------------------
3847 -- Check_Package_Naming --
3848 --------------------------
3850 procedure Check_Package_Naming
3851 (Project : Project_Id;
3852 Data : in out Tree_Processing_Data)
3854 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
3855 Naming_Id : constant Package_Id :=
3856 Util.Value_Of
3857 (Name_Naming, Project.Decl.Packages, Shared);
3858 Naming : Package_Element;
3860 Ada_Body_Suffix_Loc : Source_Ptr := No_Location;
3862 procedure Check_Naming;
3863 -- Check the validity of the Naming package (suffixes valid, ...)
3865 procedure Check_Common
3866 (Dot_Replacement : in out File_Name_Type;
3867 Casing : in out Casing_Type;
3868 Casing_Defined : out Boolean;
3869 Separate_Suffix : in out File_Name_Type;
3870 Sep_Suffix_Loc : out Source_Ptr);
3871 -- Check attributes common
3873 procedure Process_Exceptions_File_Based
3874 (Lang_Id : Language_Ptr;
3875 Kind : Source_Kind);
3876 procedure Process_Exceptions_Unit_Based
3877 (Lang_Id : Language_Ptr;
3878 Kind : Source_Kind);
3879 -- Process the naming exceptions for the two types of languages
3881 procedure Initialize_Naming_Data;
3882 -- Initialize internal naming data for the various languages
3884 ------------------
3885 -- Check_Common --
3886 ------------------
3888 procedure Check_Common
3889 (Dot_Replacement : in out File_Name_Type;
3890 Casing : in out Casing_Type;
3891 Casing_Defined : out Boolean;
3892 Separate_Suffix : in out File_Name_Type;
3893 Sep_Suffix_Loc : out Source_Ptr)
3895 Dot_Repl : constant Variable_Value :=
3896 Util.Value_Of
3897 (Name_Dot_Replacement,
3898 Naming.Decl.Attributes,
3899 Shared);
3900 Casing_String : constant Variable_Value :=
3901 Util.Value_Of
3902 (Name_Casing,
3903 Naming.Decl.Attributes,
3904 Shared);
3905 Sep_Suffix : constant Variable_Value :=
3906 Util.Value_Of
3907 (Name_Separate_Suffix,
3908 Naming.Decl.Attributes,
3909 Shared);
3910 Dot_Repl_Loc : Source_Ptr;
3912 begin
3913 Sep_Suffix_Loc := No_Location;
3915 if not Dot_Repl.Default then
3916 pragma Assert
3917 (Dot_Repl.Kind = Single, "Dot_Replacement is not a string");
3919 if Length_Of_Name (Dot_Repl.Value) = 0 then
3920 Error_Msg
3921 (Data.Flags, "Dot_Replacement cannot be empty",
3922 Dot_Repl.Location, Project);
3923 end if;
3925 Dot_Replacement := Canonical_Case_File_Name (Dot_Repl.Value);
3926 Dot_Repl_Loc := Dot_Repl.Location;
3928 declare
3929 Repl : constant String := Get_Name_String (Dot_Replacement);
3931 begin
3932 -- Dot_Replacement cannot
3933 -- - be empty
3934 -- - start or end with an alphanumeric
3935 -- - be a single '_'
3936 -- - start with an '_' followed by an alphanumeric
3937 -- - contain a '.' except if it is "."
3939 if Repl'Length = 0
3940 or else Is_Alphanumeric (Repl (Repl'First))
3941 or else Is_Alphanumeric (Repl (Repl'Last))
3942 or else (Repl (Repl'First) = '_'
3943 and then
3944 (Repl'Length = 1
3945 or else
3946 Is_Alphanumeric (Repl (Repl'First + 1))))
3947 or else (Repl'Length > 1
3948 and then
3949 Index (Source => Repl, Pattern => ".") /= 0)
3950 then
3951 Error_Msg
3952 (Data.Flags,
3953 '"' & Repl &
3954 """ is illegal for Dot_Replacement.",
3955 Dot_Repl_Loc, Project);
3956 end if;
3957 end;
3958 end if;
3960 if Dot_Replacement /= No_File then
3961 Write_Attr
3962 ("Dot_Replacement", Get_Name_String (Dot_Replacement));
3963 end if;
3965 Casing_Defined := False;
3967 if not Casing_String.Default then
3968 pragma Assert
3969 (Casing_String.Kind = Single, "Casing is not a string");
3971 declare
3972 Casing_Image : constant String :=
3973 Get_Name_String (Casing_String.Value);
3975 begin
3976 if Casing_Image'Length = 0 then
3977 Error_Msg
3978 (Data.Flags,
3979 "Casing cannot be an empty string",
3980 Casing_String.Location, Project);
3981 end if;
3983 Casing := Value (Casing_Image);
3984 Casing_Defined := True;
3986 exception
3987 when Constraint_Error =>
3988 Name_Len := Casing_Image'Length;
3989 Name_Buffer (1 .. Name_Len) := Casing_Image;
3990 Err_Vars.Error_Msg_Name_1 := Name_Find;
3991 Error_Msg
3992 (Data.Flags,
3993 "%% is not a correct Casing",
3994 Casing_String.Location, Project);
3995 end;
3996 end if;
3998 Write_Attr ("Casing", Image (Casing));
4000 if not Sep_Suffix.Default then
4001 if Length_Of_Name (Sep_Suffix.Value) = 0 then
4002 Error_Msg
4003 (Data.Flags,
4004 "Separate_Suffix cannot be empty",
4005 Sep_Suffix.Location, Project);
4007 else
4008 Separate_Suffix := Canonical_Case_File_Name (Sep_Suffix.Value);
4009 Sep_Suffix_Loc := Sep_Suffix.Location;
4011 Check_Illegal_Suffix
4012 (Project, Separate_Suffix,
4013 Dot_Replacement, "Separate_Suffix", Sep_Suffix.Location,
4014 Data);
4015 end if;
4016 end if;
4018 if Separate_Suffix /= No_File then
4019 Write_Attr
4020 ("Separate_Suffix", Get_Name_String (Separate_Suffix));
4021 end if;
4022 end Check_Common;
4024 -----------------------------------
4025 -- Process_Exceptions_File_Based --
4026 -----------------------------------
4028 procedure Process_Exceptions_File_Based
4029 (Lang_Id : Language_Ptr;
4030 Kind : Source_Kind)
4032 Lang : constant Name_Id := Lang_Id.Name;
4033 Exceptions : Array_Element_Id;
4034 Exception_List : Variable_Value;
4035 Element_Id : String_List_Id;
4036 Element : String_Element;
4037 File_Name : File_Name_Type;
4038 Source : Source_Id;
4040 begin
4041 case Kind is
4042 when Impl | Sep =>
4043 Exceptions :=
4044 Value_Of
4045 (Name_Implementation_Exceptions,
4046 In_Arrays => Naming.Decl.Arrays,
4047 Shared => Shared);
4049 when Spec =>
4050 Exceptions :=
4051 Value_Of
4052 (Name_Specification_Exceptions,
4053 In_Arrays => Naming.Decl.Arrays,
4054 Shared => Shared);
4055 end case;
4057 Exception_List :=
4058 Value_Of
4059 (Index => Lang,
4060 In_Array => Exceptions,
4061 Shared => Shared);
4063 if Exception_List /= Nil_Variable_Value then
4064 Element_Id := Exception_List.Values;
4065 while Element_Id /= Nil_String loop
4066 Element := Shared.String_Elements.Table (Element_Id);
4067 File_Name := Canonical_Case_File_Name (Element.Value);
4069 Source :=
4070 Source_Files_Htable.Get
4071 (Data.Tree.Source_Files_HT, File_Name);
4072 while Source /= No_Source
4073 and then Source.Project /= Project
4074 loop
4075 Source := Source.Next_With_File_Name;
4076 end loop;
4078 if Source = No_Source then
4079 Add_Source
4080 (Id => Source,
4081 Data => Data,
4082 Project => Project,
4083 Source_Dir_Rank => 0,
4084 Lang_Id => Lang_Id,
4085 Kind => Kind,
4086 File_Name => File_Name,
4087 Display_File => File_Name_Type (Element.Value),
4088 Naming_Exception => Yes,
4089 Location => Element.Location);
4091 else
4092 -- Check if the file name is already recorded for another
4093 -- language or another kind.
4095 if Source.Language /= Lang_Id then
4096 Error_Msg
4097 (Data.Flags,
4098 "the same file cannot be a source of two languages",
4099 Element.Location, Project);
4101 elsif Source.Kind /= Kind then
4102 Error_Msg
4103 (Data.Flags,
4104 "the same file cannot be a source and a template",
4105 Element.Location, Project);
4106 end if;
4108 -- If the file is already recorded for the same
4109 -- language and the same kind, it means that the file
4110 -- name appears several times in the *_Exceptions
4111 -- attribute; so there is nothing to do.
4112 end if;
4114 Element_Id := Element.Next;
4115 end loop;
4116 end if;
4117 end Process_Exceptions_File_Based;
4119 -----------------------------------
4120 -- Process_Exceptions_Unit_Based --
4121 -----------------------------------
4123 procedure Process_Exceptions_Unit_Based
4124 (Lang_Id : Language_Ptr;
4125 Kind : Source_Kind)
4127 Exceptions : Array_Element_Id;
4128 Element : Array_Element;
4129 Unit : Name_Id;
4130 Index : Int;
4131 File_Name : File_Name_Type;
4132 Source : Source_Id;
4134 Naming_Exception : Naming_Exception_Type;
4136 begin
4137 case Kind is
4138 when Impl | Sep =>
4139 Exceptions :=
4140 Value_Of
4141 (Name_Body,
4142 In_Arrays => Naming.Decl.Arrays,
4143 Shared => Shared);
4145 if Exceptions = No_Array_Element then
4146 Exceptions :=
4147 Value_Of
4148 (Name_Implementation,
4149 In_Arrays => Naming.Decl.Arrays,
4150 Shared => Shared);
4151 end if;
4153 when Spec =>
4154 Exceptions :=
4155 Value_Of
4156 (Name_Spec,
4157 In_Arrays => Naming.Decl.Arrays,
4158 Shared => Shared);
4160 if Exceptions = No_Array_Element then
4161 Exceptions :=
4162 Value_Of
4163 (Name_Specification,
4164 In_Arrays => Naming.Decl.Arrays,
4165 Shared => Shared);
4166 end if;
4167 end case;
4169 while Exceptions /= No_Array_Element loop
4170 Element := Shared.Array_Elements.Table (Exceptions);
4172 if Element.Restricted then
4173 Naming_Exception := Inherited;
4174 else
4175 Naming_Exception := Yes;
4176 end if;
4178 File_Name := Canonical_Case_File_Name (Element.Value.Value);
4180 Get_Name_String (Element.Index);
4181 To_Lower (Name_Buffer (1 .. Name_Len));
4182 Index := Element.Value.Index;
4184 -- Check if it is a valid unit name
4186 Get_Name_String (Element.Index);
4187 Check_Unit_Name (Name_Buffer (1 .. Name_Len), Unit);
4189 if Unit = No_Name then
4190 Err_Vars.Error_Msg_Name_1 := Element.Index;
4191 Error_Msg
4192 (Data.Flags,
4193 "%% is not a valid unit name.",
4194 Element.Value.Location, Project);
4195 end if;
4197 if Unit /= No_Name then
4198 Add_Source
4199 (Id => Source,
4200 Data => Data,
4201 Project => Project,
4202 Source_Dir_Rank => 0,
4203 Lang_Id => Lang_Id,
4204 Kind => Kind,
4205 File_Name => File_Name,
4206 Display_File => File_Name_Type (Element.Value.Value),
4207 Unit => Unit,
4208 Index => Index,
4209 Location => Element.Value.Location,
4210 Naming_Exception => Naming_Exception);
4211 end if;
4213 Exceptions := Element.Next;
4214 end loop;
4215 end Process_Exceptions_Unit_Based;
4217 ------------------
4218 -- Check_Naming --
4219 ------------------
4221 procedure Check_Naming is
4222 Dot_Replacement : File_Name_Type :=
4223 File_Name_Type
4224 (First_Name_Id + Character'Pos ('-'));
4225 Separate_Suffix : File_Name_Type := No_File;
4226 Casing : Casing_Type := All_Lower_Case;
4227 Casing_Defined : Boolean;
4228 Lang_Id : Language_Ptr;
4229 Sep_Suffix_Loc : Source_Ptr;
4230 Suffix : Variable_Value;
4231 Lang : Name_Id;
4233 begin
4234 Check_Common
4235 (Dot_Replacement => Dot_Replacement,
4236 Casing => Casing,
4237 Casing_Defined => Casing_Defined,
4238 Separate_Suffix => Separate_Suffix,
4239 Sep_Suffix_Loc => Sep_Suffix_Loc);
4241 -- For all unit based languages, if any, set the specified value
4242 -- of Dot_Replacement, Casing and/or Separate_Suffix. Do not
4243 -- systematically overwrite, since the defaults come from the
4244 -- configuration file.
4246 if Dot_Replacement /= No_File
4247 or else Casing_Defined
4248 or else Separate_Suffix /= No_File
4249 then
4250 Lang_Id := Project.Languages;
4251 while Lang_Id /= No_Language_Index loop
4252 if Lang_Id.Config.Kind = Unit_Based then
4253 if Dot_Replacement /= No_File then
4254 Lang_Id.Config.Naming_Data.Dot_Replacement :=
4255 Dot_Replacement;
4256 end if;
4258 if Casing_Defined then
4259 Lang_Id.Config.Naming_Data.Casing := Casing;
4260 end if;
4261 end if;
4263 Lang_Id := Lang_Id.Next;
4264 end loop;
4265 end if;
4267 -- Next, get the spec and body suffixes
4269 Lang_Id := Project.Languages;
4270 while Lang_Id /= No_Language_Index loop
4271 Lang := Lang_Id.Name;
4273 -- Spec_Suffix
4275 Suffix := Value_Of
4276 (Name => Lang,
4277 Attribute_Or_Array_Name => Name_Spec_Suffix,
4278 In_Package => Naming_Id,
4279 Shared => Shared);
4281 if Suffix = Nil_Variable_Value then
4282 Suffix := Value_Of
4283 (Name => Lang,
4284 Attribute_Or_Array_Name => Name_Specification_Suffix,
4285 In_Package => Naming_Id,
4286 Shared => Shared);
4287 end if;
4289 if Suffix /= Nil_Variable_Value then
4290 Lang_Id.Config.Naming_Data.Spec_Suffix :=
4291 File_Name_Type (Suffix.Value);
4293 Check_Illegal_Suffix
4294 (Project,
4295 Lang_Id.Config.Naming_Data.Spec_Suffix,
4296 Lang_Id.Config.Naming_Data.Dot_Replacement,
4297 "Spec_Suffix", Suffix.Location, Data);
4299 Write_Attr
4300 ("Spec_Suffix",
4301 Get_Name_String (Lang_Id.Config.Naming_Data.Spec_Suffix));
4302 end if;
4304 -- Body_Suffix
4306 Suffix :=
4307 Value_Of
4308 (Name => Lang,
4309 Attribute_Or_Array_Name => Name_Body_Suffix,
4310 In_Package => Naming_Id,
4311 Shared => Shared);
4313 if Suffix = Nil_Variable_Value then
4314 Suffix :=
4315 Value_Of
4316 (Name => Lang,
4317 Attribute_Or_Array_Name => Name_Implementation_Suffix,
4318 In_Package => Naming_Id,
4319 Shared => Shared);
4320 end if;
4322 if Suffix /= Nil_Variable_Value then
4323 Lang_Id.Config.Naming_Data.Body_Suffix :=
4324 File_Name_Type (Suffix.Value);
4326 -- The default value of separate suffix should be the same as
4327 -- the body suffix, so we need to compute that first.
4329 if Separate_Suffix = No_File then
4330 Lang_Id.Config.Naming_Data.Separate_Suffix :=
4331 Lang_Id.Config.Naming_Data.Body_Suffix;
4332 Write_Attr
4333 ("Sep_Suffix",
4334 Get_Name_String
4335 (Lang_Id.Config.Naming_Data.Separate_Suffix));
4336 else
4337 Lang_Id.Config.Naming_Data.Separate_Suffix :=
4338 Separate_Suffix;
4339 end if;
4341 Check_Illegal_Suffix
4342 (Project,
4343 Lang_Id.Config.Naming_Data.Body_Suffix,
4344 Lang_Id.Config.Naming_Data.Dot_Replacement,
4345 "Body_Suffix", Suffix.Location, Data);
4347 Write_Attr
4348 ("Body_Suffix",
4349 Get_Name_String (Lang_Id.Config.Naming_Data.Body_Suffix));
4351 elsif Separate_Suffix /= No_File then
4352 Lang_Id.Config.Naming_Data.Separate_Suffix := Separate_Suffix;
4353 end if;
4355 -- Spec_Suffix cannot be equal to Body_Suffix or Separate_Suffix,
4356 -- since that would cause a clear ambiguity. Note that we do allow
4357 -- a Spec_Suffix to have the same termination as one of these,
4358 -- which causes a potential ambiguity, but we resolve that by
4359 -- matching the longest possible suffix.
4361 if Lang_Id.Config.Naming_Data.Spec_Suffix /= No_File
4362 and then Lang_Id.Config.Naming_Data.Spec_Suffix =
4363 Lang_Id.Config.Naming_Data.Body_Suffix
4364 then
4365 Error_Msg
4366 (Data.Flags,
4367 "Body_Suffix ("""
4368 & Get_Name_String (Lang_Id.Config.Naming_Data.Body_Suffix)
4369 & """) cannot be the same as Spec_Suffix.",
4370 Ada_Body_Suffix_Loc, Project);
4371 end if;
4373 if Lang_Id.Config.Naming_Data.Body_Suffix /=
4374 Lang_Id.Config.Naming_Data.Separate_Suffix
4375 and then Lang_Id.Config.Naming_Data.Spec_Suffix =
4376 Lang_Id.Config.Naming_Data.Separate_Suffix
4377 then
4378 Error_Msg
4379 (Data.Flags,
4380 "Separate_Suffix ("""
4381 & Get_Name_String
4382 (Lang_Id.Config.Naming_Data.Separate_Suffix)
4383 & """) cannot be the same as Spec_Suffix.",
4384 Sep_Suffix_Loc, Project);
4385 end if;
4387 Lang_Id := Lang_Id.Next;
4388 end loop;
4390 -- Get the naming exceptions for all languages, but not for virtual
4391 -- projects.
4393 if not Project.Virtual then
4394 for Kind in Spec_Or_Body loop
4395 Lang_Id := Project.Languages;
4396 while Lang_Id /= No_Language_Index loop
4397 case Lang_Id.Config.Kind is
4398 when File_Based =>
4399 Process_Exceptions_File_Based (Lang_Id, Kind);
4401 when Unit_Based =>
4402 Process_Exceptions_Unit_Based (Lang_Id, Kind);
4403 end case;
4405 Lang_Id := Lang_Id.Next;
4406 end loop;
4407 end loop;
4408 end if;
4409 end Check_Naming;
4411 ----------------------------
4412 -- Initialize_Naming_Data --
4413 ----------------------------
4415 procedure Initialize_Naming_Data is
4416 Specs : Array_Element_Id :=
4417 Util.Value_Of
4418 (Name_Spec_Suffix,
4419 Naming.Decl.Arrays,
4420 Shared);
4422 Impls : Array_Element_Id :=
4423 Util.Value_Of
4424 (Name_Body_Suffix,
4425 Naming.Decl.Arrays,
4426 Shared);
4428 Lang : Language_Ptr;
4429 Lang_Name : Name_Id;
4430 Value : Variable_Value;
4431 Extended : Project_Id;
4433 begin
4434 -- At this stage, the project already contains the default extensions
4435 -- for the various languages. We now merge those suffixes read in the
4436 -- user project, and they override the default.
4438 while Specs /= No_Array_Element loop
4439 Lang_Name := Shared.Array_Elements.Table (Specs).Index;
4440 Lang :=
4441 Get_Language_From_Name
4442 (Project, Name => Get_Name_String (Lang_Name));
4444 -- An extending project inherits its parent projects' languages
4445 -- so if needed we should create entries for those languages
4447 if Lang = null then
4448 Extended := Project.Extends;
4449 while Extended /= null loop
4450 Lang := Get_Language_From_Name
4451 (Extended, Name => Get_Name_String (Lang_Name));
4452 exit when Lang /= null;
4454 Extended := Extended.Extends;
4455 end loop;
4457 if Lang /= null then
4458 Lang := new Language_Data'(Lang.all);
4459 Lang.First_Source := null;
4460 Lang.Next := Project.Languages;
4461 Project.Languages := Lang;
4462 end if;
4463 end if;
4465 -- If language was not found in project or the projects it extends
4467 if Lang = null then
4468 Debug_Output
4469 ("ignoring spec naming data (lang. not in project): ",
4470 Lang_Name);
4472 else
4473 Value := Shared.Array_Elements.Table (Specs).Value;
4475 if Value.Kind = Single then
4476 Lang.Config.Naming_Data.Spec_Suffix :=
4477 Canonical_Case_File_Name (Value.Value);
4478 end if;
4479 end if;
4481 Specs := Shared.Array_Elements.Table (Specs).Next;
4482 end loop;
4484 while Impls /= No_Array_Element loop
4485 Lang_Name := Shared.Array_Elements.Table (Impls).Index;
4486 Lang :=
4487 Get_Language_From_Name
4488 (Project, Name => Get_Name_String (Lang_Name));
4490 if Lang = null then
4491 Debug_Output
4492 ("ignoring impl naming data (lang. not in project): ",
4493 Lang_Name);
4494 else
4495 Value := Shared.Array_Elements.Table (Impls).Value;
4497 if Lang.Name = Name_Ada then
4498 Ada_Body_Suffix_Loc := Value.Location;
4499 end if;
4501 if Value.Kind = Single then
4502 Lang.Config.Naming_Data.Body_Suffix :=
4503 Canonical_Case_File_Name (Value.Value);
4504 end if;
4505 end if;
4507 Impls := Shared.Array_Elements.Table (Impls).Next;
4508 end loop;
4509 end Initialize_Naming_Data;
4511 -- Start of processing for Check_Naming_Schemes
4513 begin
4514 -- No Naming package or parsing a configuration file? nothing to do
4516 if Naming_Id /= No_Package
4517 and then Project.Qualifier /= Configuration
4518 then
4519 Naming := Shared.Packages.Table (Naming_Id);
4520 Debug_Increase_Indent ("checking package Naming for ", Project.Name);
4521 Initialize_Naming_Data;
4522 Check_Naming;
4523 Debug_Decrease_Indent ("done checking package naming");
4524 end if;
4525 end Check_Package_Naming;
4527 ---------------------------------
4528 -- Check_Programming_Languages --
4529 ---------------------------------
4531 procedure Check_Programming_Languages
4532 (Project : Project_Id;
4533 Data : in out Tree_Processing_Data)
4535 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
4537 Languages : Variable_Value := Nil_Variable_Value;
4538 Def_Lang : Variable_Value := Nil_Variable_Value;
4539 Def_Lang_Id : Name_Id;
4541 procedure Add_Language (Name, Display_Name : Name_Id);
4542 -- Add a new language to the list of languages for the project.
4543 -- Nothing is done if the language has already been defined
4545 ------------------
4546 -- Add_Language --
4547 ------------------
4549 procedure Add_Language (Name, Display_Name : Name_Id) is
4550 Lang : Language_Ptr;
4552 begin
4553 Lang := Project.Languages;
4554 while Lang /= No_Language_Index loop
4555 if Name = Lang.Name then
4556 return;
4557 end if;
4559 Lang := Lang.Next;
4560 end loop;
4562 Lang := new Language_Data'(No_Language_Data);
4563 Lang.Next := Project.Languages;
4564 Project.Languages := Lang;
4565 Lang.Name := Name;
4566 Lang.Display_Name := Display_Name;
4567 end Add_Language;
4569 -- Start of processing for Check_Programming_Languages
4571 begin
4572 Project.Languages := null;
4573 Languages :=
4574 Prj.Util.Value_Of (Name_Languages, Project.Decl.Attributes, Shared);
4575 Def_Lang :=
4576 Prj.Util.Value_Of
4577 (Name_Default_Language, Project.Decl.Attributes, Shared);
4579 if Project.Source_Dirs /= Nil_String then
4581 -- Check if languages are specified in this project
4583 if Languages.Default then
4585 -- Fail if there is no default language defined
4587 if Def_Lang.Default then
4588 Error_Msg
4589 (Data.Flags,
4590 "no languages defined for this project",
4591 Project.Location, Project);
4592 Def_Lang_Id := No_Name;
4594 else
4595 Get_Name_String (Def_Lang.Value);
4596 To_Lower (Name_Buffer (1 .. Name_Len));
4597 Def_Lang_Id := Name_Find;
4598 end if;
4600 if Def_Lang_Id /= No_Name then
4601 Get_Name_String (Def_Lang_Id);
4602 Name_Buffer (1) := GNAT.Case_Util.To_Upper (Name_Buffer (1));
4603 Add_Language
4604 (Name => Def_Lang_Id,
4605 Display_Name => Name_Find);
4606 end if;
4608 else
4609 declare
4610 Current : String_List_Id := Languages.Values;
4611 Element : String_Element;
4613 begin
4614 -- If there are no languages declared, there are no sources
4616 if Current = Nil_String then
4617 Project.Source_Dirs := Nil_String;
4619 if Project.Qualifier = Standard then
4620 Error_Msg
4621 (Data.Flags,
4622 "a standard project must have at least one language",
4623 Languages.Location, Project);
4624 end if;
4626 else
4627 -- Look through all the languages specified in attribute
4628 -- Languages.
4630 while Current /= Nil_String loop
4631 Element := Shared.String_Elements.Table (Current);
4632 Get_Name_String (Element.Value);
4633 To_Lower (Name_Buffer (1 .. Name_Len));
4635 Add_Language
4636 (Name => Name_Find,
4637 Display_Name => Element.Value);
4639 Current := Element.Next;
4640 end loop;
4641 end if;
4642 end;
4643 end if;
4644 end if;
4645 end Check_Programming_Languages;
4647 -------------------------------
4648 -- Check_Stand_Alone_Library --
4649 -------------------------------
4651 procedure Check_Stand_Alone_Library
4652 (Project : Project_Id;
4653 Data : in out Tree_Processing_Data)
4655 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
4657 Lib_Name : constant Prj.Variable_Value :=
4658 Prj.Util.Value_Of
4659 (Snames.Name_Library_Name,
4660 Project.Decl.Attributes,
4661 Shared);
4663 Lib_Standalone : constant Prj.Variable_Value :=
4664 Prj.Util.Value_Of
4665 (Snames.Name_Library_Standalone,
4666 Project.Decl.Attributes,
4667 Shared);
4669 Lib_Auto_Init : constant Prj.Variable_Value :=
4670 Prj.Util.Value_Of
4671 (Snames.Name_Library_Auto_Init,
4672 Project.Decl.Attributes,
4673 Shared);
4675 Lib_Src_Dir : constant Prj.Variable_Value :=
4676 Prj.Util.Value_Of
4677 (Snames.Name_Library_Src_Dir,
4678 Project.Decl.Attributes,
4679 Shared);
4681 Lib_Symbol_File : constant Prj.Variable_Value :=
4682 Prj.Util.Value_Of
4683 (Snames.Name_Library_Symbol_File,
4684 Project.Decl.Attributes,
4685 Shared);
4687 Lib_Symbol_Policy : constant Prj.Variable_Value :=
4688 Prj.Util.Value_Of
4689 (Snames.Name_Library_Symbol_Policy,
4690 Project.Decl.Attributes,
4691 Shared);
4693 Lib_Ref_Symbol_File : constant Prj.Variable_Value :=
4694 Prj.Util.Value_Of
4695 (Snames.Name_Library_Reference_Symbol_File,
4696 Project.Decl.Attributes,
4697 Shared);
4699 Auto_Init_Supported : Boolean;
4700 OK : Boolean := True;
4702 begin
4703 Auto_Init_Supported := Project.Config.Auto_Init_Supported;
4705 -- It is a stand-alone library project file if there is at least one
4706 -- unit in the declared or inherited interface.
4708 if Project.Lib_Interface_ALIs = Nil_String then
4709 if not Lib_Standalone.Default
4710 and then Get_Name_String (Lib_Standalone.Value) /= "no"
4711 then
4712 Error_Msg
4713 (Data.Flags,
4714 "Library_Standalone valid only if Library_Interface is set",
4715 Lib_Standalone.Location, Project);
4716 end if;
4718 else
4719 if Project.Standalone_Library = No then
4720 Project.Standalone_Library := Standard;
4721 end if;
4723 -- The name of a stand-alone library needs to have the syntax of an
4724 -- Ada identifier.
4726 declare
4727 Name : constant String := Get_Name_String (Project.Library_Name);
4728 OK : Boolean := Is_Letter (Name (Name'First));
4730 Underline : Boolean := False;
4732 begin
4733 for J in Name'First + 1 .. Name'Last loop
4734 exit when not OK;
4736 if Is_Alphanumeric (Name (J)) then
4737 Underline := False;
4739 elsif Name (J) = '_' then
4740 if Underline then
4741 OK := False;
4742 else
4743 Underline := True;
4744 end if;
4746 else
4747 OK := False;
4748 end if;
4749 end loop;
4751 OK := OK and not Underline;
4753 if not OK then
4754 Error_Msg
4755 (Data.Flags,
4756 "Incorrect library name for a Stand-Alone Library",
4757 Lib_Name.Location, Project);
4758 return;
4759 end if;
4760 end;
4762 if Lib_Standalone.Default then
4763 Project.Standalone_Library := Standard;
4765 else
4766 Get_Name_String (Lib_Standalone.Value);
4767 To_Lower (Name_Buffer (1 .. Name_Len));
4769 if Name_Buffer (1 .. Name_Len) = "standard" then
4770 Project.Standalone_Library := Standard;
4772 elsif Name_Buffer (1 .. Name_Len) = "encapsulated" then
4773 Project.Standalone_Library := Encapsulated;
4775 elsif Name_Buffer (1 .. Name_Len) = "no" then
4776 Project.Standalone_Library := No;
4777 Error_Msg
4778 (Data.Flags,
4779 "wrong value for Library_Standalone "
4780 & "when Library_Interface defined",
4781 Lib_Standalone.Location, Project);
4783 else
4784 Error_Msg
4785 (Data.Flags,
4786 "invalid value for attribute Library_Standalone",
4787 Lib_Standalone.Location, Project);
4788 end if;
4789 end if;
4791 -- Check value of attribute Library_Auto_Init and set Lib_Auto_Init
4792 -- accordingly.
4794 if Lib_Auto_Init.Default then
4796 -- If no attribute Library_Auto_Init is declared, then set auto
4797 -- init only if it is supported.
4799 Project.Lib_Auto_Init := Auto_Init_Supported;
4801 else
4802 Get_Name_String (Lib_Auto_Init.Value);
4803 To_Lower (Name_Buffer (1 .. Name_Len));
4805 if Name_Buffer (1 .. Name_Len) = "false" then
4806 Project.Lib_Auto_Init := False;
4808 elsif Name_Buffer (1 .. Name_Len) = "true" then
4809 if Auto_Init_Supported then
4810 Project.Lib_Auto_Init := True;
4812 else
4813 -- Library_Auto_Init cannot be "true" if auto init is not
4814 -- supported.
4816 Error_Msg
4817 (Data.Flags,
4818 "library auto init not supported " &
4819 "on this platform",
4820 Lib_Auto_Init.Location, Project);
4821 end if;
4823 else
4824 Error_Msg
4825 (Data.Flags,
4826 "invalid value for attribute Library_Auto_Init",
4827 Lib_Auto_Init.Location, Project);
4828 end if;
4829 end if;
4831 -- If attribute Library_Src_Dir is defined and not the empty string,
4832 -- check if the directory exist and is not the object directory or
4833 -- one of the source directories. This is the directory where copies
4834 -- of the interface sources will be copied. Note that this directory
4835 -- may be the library directory.
4837 if Lib_Src_Dir.Value /= Empty_String then
4838 declare
4839 Dir_Id : constant File_Name_Type :=
4840 File_Name_Type (Lib_Src_Dir.Value);
4841 Dir_Exists : Boolean;
4843 begin
4844 Locate_Directory
4845 (Project,
4846 Dir_Id,
4847 Path => Project.Library_Src_Dir,
4848 Dir_Exists => Dir_Exists,
4849 Data => Data,
4850 Must_Exist => False,
4851 Create => "library source copy",
4852 Location => Lib_Src_Dir.Location,
4853 Externally_Built => Project.Externally_Built);
4855 -- If directory does not exist, report an error
4857 if not Dir_Exists then
4859 -- Get the absolute name of the library directory that does
4860 -- not exist, to report an error.
4862 Err_Vars.Error_Msg_File_1 :=
4863 File_Name_Type (Project.Library_Src_Dir.Display_Name);
4864 Error_Msg
4865 (Data.Flags,
4866 "Directory { does not exist",
4867 Lib_Src_Dir.Location, Project);
4869 -- Report error if it is the same as the object directory
4871 elsif Project.Library_Src_Dir = Project.Object_Directory then
4872 Error_Msg
4873 (Data.Flags,
4874 "directory to copy interfaces cannot be " &
4875 "the object directory",
4876 Lib_Src_Dir.Location, Project);
4877 Project.Library_Src_Dir := No_Path_Information;
4879 else
4880 declare
4881 Src_Dirs : String_List_Id;
4882 Src_Dir : String_Element;
4883 Pid : Project_List;
4885 begin
4886 -- Interface copy directory cannot be one of the source
4887 -- directory of the current project.
4889 Src_Dirs := Project.Source_Dirs;
4890 while Src_Dirs /= Nil_String loop
4891 Src_Dir := Shared.String_Elements.Table (Src_Dirs);
4893 -- Report error if it is one of the source directories
4895 if Project.Library_Src_Dir.Name =
4896 Path_Name_Type (Src_Dir.Value)
4897 then
4898 Error_Msg
4899 (Data.Flags,
4900 "directory to copy interfaces cannot " &
4901 "be one of the source directories",
4902 Lib_Src_Dir.Location, Project);
4903 Project.Library_Src_Dir := No_Path_Information;
4904 exit;
4905 end if;
4907 Src_Dirs := Src_Dir.Next;
4908 end loop;
4910 if Project.Library_Src_Dir /= No_Path_Information then
4912 -- It cannot be a source directory of any other
4913 -- project either.
4915 Pid := Data.Tree.Projects;
4916 Project_Loop : loop
4917 exit Project_Loop when Pid = null;
4919 Src_Dirs := Pid.Project.Source_Dirs;
4920 Dir_Loop : while Src_Dirs /= Nil_String loop
4921 Src_Dir :=
4922 Shared.String_Elements.Table (Src_Dirs);
4924 -- Report error if it is one of the source
4925 -- directories.
4927 if Project.Library_Src_Dir.Name =
4928 Path_Name_Type (Src_Dir.Value)
4929 then
4930 Error_Msg_File_1 :=
4931 File_Name_Type (Src_Dir.Value);
4932 Error_Msg_Name_1 := Pid.Project.Name;
4933 Error_Msg
4934 (Data.Flags,
4935 "directory to copy interfaces cannot " &
4936 "be the same as source directory { of " &
4937 "project %%",
4938 Lib_Src_Dir.Location, Project);
4939 Project.Library_Src_Dir :=
4940 No_Path_Information;
4941 exit Project_Loop;
4942 end if;
4944 Src_Dirs := Src_Dir.Next;
4945 end loop Dir_Loop;
4947 Pid := Pid.Next;
4948 end loop Project_Loop;
4949 end if;
4950 end;
4952 -- In high verbosity, if there is a valid Library_Src_Dir,
4953 -- display its path name.
4955 if Project.Library_Src_Dir /= No_Path_Information
4956 and then Current_Verbosity = High
4957 then
4958 Write_Attr
4959 ("Directory to copy interfaces",
4960 Get_Name_String (Project.Library_Src_Dir.Name));
4961 end if;
4962 end if;
4963 end;
4964 end if;
4966 -- Check the symbol related attributes
4968 -- First, the symbol policy
4970 if not Lib_Symbol_Policy.Default then
4971 declare
4972 Value : constant String :=
4973 To_Lower
4974 (Get_Name_String (Lib_Symbol_Policy.Value));
4976 begin
4977 -- Symbol policy must have one of a limited number of values
4979 if Value = "autonomous" or else Value = "default" then
4980 Project.Symbol_Data.Symbol_Policy := Autonomous;
4982 elsif Value = "compliant" then
4983 Project.Symbol_Data.Symbol_Policy := Compliant;
4985 elsif Value = "controlled" then
4986 Project.Symbol_Data.Symbol_Policy := Controlled;
4988 elsif Value = "restricted" then
4989 Project.Symbol_Data.Symbol_Policy := Restricted;
4991 elsif Value = "direct" then
4992 Project.Symbol_Data.Symbol_Policy := Direct;
4994 else
4995 Error_Msg
4996 (Data.Flags,
4997 "illegal value for Library_Symbol_Policy",
4998 Lib_Symbol_Policy.Location, Project);
4999 end if;
5000 end;
5001 end if;
5003 -- If attribute Library_Symbol_File is not specified, symbol policy
5004 -- cannot be Restricted.
5006 if Lib_Symbol_File.Default then
5007 if Project.Symbol_Data.Symbol_Policy = Restricted then
5008 Error_Msg
5009 (Data.Flags,
5010 "Library_Symbol_File needs to be defined when " &
5011 "symbol policy is Restricted",
5012 Lib_Symbol_Policy.Location, Project);
5013 end if;
5015 else
5016 -- Library_Symbol_File is defined
5018 Project.Symbol_Data.Symbol_File :=
5019 Path_Name_Type (Lib_Symbol_File.Value);
5021 Get_Name_String (Lib_Symbol_File.Value);
5023 if Name_Len = 0 then
5024 Error_Msg
5025 (Data.Flags,
5026 "symbol file name cannot be an empty string",
5027 Lib_Symbol_File.Location, Project);
5029 else
5030 OK := not Is_Absolute_Path (Name_Buffer (1 .. Name_Len));
5032 if OK then
5033 for J in 1 .. Name_Len loop
5034 if Name_Buffer (J) = '/'
5035 or else Name_Buffer (J) = Directory_Separator
5036 then
5037 OK := False;
5038 exit;
5039 end if;
5040 end loop;
5041 end if;
5043 if not OK then
5044 Error_Msg_File_1 := File_Name_Type (Lib_Symbol_File.Value);
5045 Error_Msg
5046 (Data.Flags,
5047 "symbol file name { is illegal. " &
5048 "Name cannot include directory info.",
5049 Lib_Symbol_File.Location, Project);
5050 end if;
5051 end if;
5052 end if;
5054 -- If attribute Library_Reference_Symbol_File is not defined,
5055 -- symbol policy cannot be Compliant or Controlled.
5057 if Lib_Ref_Symbol_File.Default then
5058 if Project.Symbol_Data.Symbol_Policy = Compliant
5059 or else Project.Symbol_Data.Symbol_Policy = Controlled
5060 then
5061 Error_Msg
5062 (Data.Flags,
5063 "a reference symbol file needs to be defined",
5064 Lib_Symbol_Policy.Location, Project);
5065 end if;
5067 else
5068 -- Library_Reference_Symbol_File is defined, check file exists
5070 Project.Symbol_Data.Reference :=
5071 Path_Name_Type (Lib_Ref_Symbol_File.Value);
5073 Get_Name_String (Lib_Ref_Symbol_File.Value);
5075 if Name_Len = 0 then
5076 Error_Msg
5077 (Data.Flags,
5078 "reference symbol file name cannot be an empty string",
5079 Lib_Symbol_File.Location, Project);
5081 else
5082 if not Is_Absolute_Path (Name_Buffer (1 .. Name_Len)) then
5083 Name_Len := 0;
5084 Add_Str_To_Name_Buffer
5085 (Get_Name_String (Project.Directory.Name));
5086 Add_Str_To_Name_Buffer
5087 (Get_Name_String (Lib_Ref_Symbol_File.Value));
5088 Project.Symbol_Data.Reference := Name_Find;
5089 end if;
5091 if not Is_Regular_File
5092 (Get_Name_String (Project.Symbol_Data.Reference))
5093 then
5094 Error_Msg_File_1 :=
5095 File_Name_Type (Lib_Ref_Symbol_File.Value);
5097 -- For controlled and direct symbol policies, it is an error
5098 -- if the reference symbol file does not exist. For other
5099 -- symbol policies, this is just a warning
5101 Error_Msg_Warn :=
5102 Project.Symbol_Data.Symbol_Policy /= Controlled
5103 and then Project.Symbol_Data.Symbol_Policy /= Direct;
5105 Error_Msg
5106 (Data.Flags,
5107 "<library reference symbol file { does not exist",
5108 Lib_Ref_Symbol_File.Location, Project);
5110 -- In addition in the non-controlled case, if symbol policy
5111 -- is Compliant, it is changed to Autonomous, because there
5112 -- is no reference to check against, and we don't want to
5113 -- fail in this case.
5115 if Project.Symbol_Data.Symbol_Policy /= Controlled then
5116 if Project.Symbol_Data.Symbol_Policy = Compliant then
5117 Project.Symbol_Data.Symbol_Policy := Autonomous;
5118 end if;
5119 end if;
5120 end if;
5122 -- If both the reference symbol file and the symbol file are
5123 -- defined, then check that they are not the same file.
5125 if Project.Symbol_Data.Symbol_File /= No_Path then
5126 Get_Name_String (Project.Symbol_Data.Symbol_File);
5128 if Name_Len > 0 then
5129 declare
5130 -- We do not need to pass a Directory to
5131 -- Normalize_Pathname, since the path_information
5132 -- already contains absolute information.
5134 Symb_Path : constant String :=
5135 Normalize_Pathname
5136 (Get_Name_String
5137 (Project.Object_Directory.Name) &
5138 Name_Buffer (1 .. Name_Len),
5139 Directory => "/",
5140 Resolve_Links =>
5141 Opt.Follow_Links_For_Files);
5142 Ref_Path : constant String :=
5143 Normalize_Pathname
5144 (Get_Name_String
5145 (Project.Symbol_Data.Reference),
5146 Directory => "/",
5147 Resolve_Links =>
5148 Opt.Follow_Links_For_Files);
5149 begin
5150 if Symb_Path = Ref_Path then
5151 Error_Msg
5152 (Data.Flags,
5153 "library reference symbol file and library" &
5154 " symbol file cannot be the same file",
5155 Lib_Ref_Symbol_File.Location, Project);
5156 end if;
5157 end;
5158 end if;
5159 end if;
5160 end if;
5161 end if;
5162 end if;
5163 end Check_Stand_Alone_Library;
5165 ---------------------
5166 -- Check_Unit_Name --
5167 ---------------------
5169 procedure Check_Unit_Name (Name : String; Unit : out Name_Id) is
5170 The_Name : String := Name;
5171 Real_Name : Name_Id;
5172 Need_Letter : Boolean := True;
5173 Last_Underscore : Boolean := False;
5174 OK : Boolean := The_Name'Length > 0;
5175 First : Positive;
5177 function Is_Reserved (Name : Name_Id) return Boolean;
5178 function Is_Reserved (S : String) return Boolean;
5179 -- Check that the given name is not an Ada 95 reserved word. The reason
5180 -- for the Ada 95 here is that we do not want to exclude the case of an
5181 -- Ada 95 unit called Interface (for example). In Ada 2005, such a unit
5182 -- name would be rejected anyway by the compiler. That means there is no
5183 -- requirement that the project file parser reject this.
5185 -----------------
5186 -- Is_Reserved --
5187 -----------------
5189 function Is_Reserved (S : String) return Boolean is
5190 begin
5191 Name_Len := 0;
5192 Add_Str_To_Name_Buffer (S);
5193 return Is_Reserved (Name_Find);
5194 end Is_Reserved;
5196 -----------------
5197 -- Is_Reserved --
5198 -----------------
5200 function Is_Reserved (Name : Name_Id) return Boolean is
5201 begin
5202 if Get_Name_Table_Byte (Name) /= 0
5203 and then
5204 not Nam_In (Name, Name_Project, Name_Extends, Name_External)
5205 and then Name not in Ada_2005_Reserved_Words
5206 then
5207 Unit := No_Name;
5208 Debug_Output ("Ada reserved word: ", Name);
5209 return True;
5211 else
5212 return False;
5213 end if;
5214 end Is_Reserved;
5216 -- Start of processing for Check_Unit_Name
5218 begin
5219 To_Lower (The_Name);
5221 Name_Len := The_Name'Length;
5222 Name_Buffer (1 .. Name_Len) := The_Name;
5224 Real_Name := Name_Find;
5226 if Is_Reserved (Real_Name) then
5227 return;
5228 end if;
5230 First := The_Name'First;
5232 for Index in The_Name'Range loop
5233 if Need_Letter then
5235 -- We need a letter (at the beginning, and following a dot),
5236 -- but we don't have one.
5238 if Is_Letter (The_Name (Index)) then
5239 Need_Letter := False;
5241 else
5242 OK := False;
5244 if Current_Verbosity = High then
5245 Debug_Indent;
5246 Write_Int (Types.Int (Index));
5247 Write_Str (": '");
5248 Write_Char (The_Name (Index));
5249 Write_Line ("' is not a letter.");
5250 end if;
5252 exit;
5253 end if;
5255 elsif Last_Underscore
5256 and then (The_Name (Index) = '_' or else The_Name (Index) = '.')
5257 then
5258 -- Two underscores are illegal, and a dot cannot follow
5259 -- an underscore.
5261 OK := False;
5263 if Current_Verbosity = High then
5264 Debug_Indent;
5265 Write_Int (Types.Int (Index));
5266 Write_Str (": '");
5267 Write_Char (The_Name (Index));
5268 Write_Line ("' is illegal here.");
5269 end if;
5271 exit;
5273 elsif The_Name (Index) = '.' then
5275 -- First, check if the name before the dot is not a reserved word
5277 if Is_Reserved (The_Name (First .. Index - 1)) then
5278 return;
5279 end if;
5281 First := Index + 1;
5283 -- We need a letter after a dot
5285 Need_Letter := True;
5287 elsif The_Name (Index) = '_' then
5288 Last_Underscore := True;
5290 else
5291 -- We need an letter or a digit
5293 Last_Underscore := False;
5295 if not Is_Alphanumeric (The_Name (Index)) then
5296 OK := False;
5298 if Current_Verbosity = High then
5299 Debug_Indent;
5300 Write_Int (Types.Int (Index));
5301 Write_Str (": '");
5302 Write_Char (The_Name (Index));
5303 Write_Line ("' is not alphanumeric.");
5304 end if;
5306 exit;
5307 end if;
5308 end if;
5309 end loop;
5311 -- Cannot end with an underscore or a dot
5313 OK := OK and then not Need_Letter and then not Last_Underscore;
5315 if OK then
5316 if First /= Name'First
5317 and then Is_Reserved (The_Name (First .. The_Name'Last))
5318 then
5319 return;
5320 end if;
5322 Unit := Real_Name;
5324 else
5325 -- Signal a problem with No_Name
5327 Unit := No_Name;
5328 end if;
5329 end Check_Unit_Name;
5331 ----------------------------
5332 -- Compute_Directory_Last --
5333 ----------------------------
5335 function Compute_Directory_Last (Dir : String) return Natural is
5336 begin
5337 if Dir'Length > 1
5338 and then (Dir (Dir'Last - 1) = Directory_Separator
5339 or else
5340 Dir (Dir'Last - 1) = '/')
5341 then
5342 return Dir'Last - 1;
5343 else
5344 return Dir'Last;
5345 end if;
5346 end Compute_Directory_Last;
5348 ---------------------
5349 -- Get_Directories --
5350 ---------------------
5352 procedure Get_Directories
5353 (Project : Project_Id;
5354 Data : in out Tree_Processing_Data)
5356 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
5358 Object_Dir : constant Variable_Value :=
5359 Util.Value_Of
5360 (Name_Object_Dir, Project.Decl.Attributes, Shared);
5362 Exec_Dir : constant Variable_Value :=
5363 Util.Value_Of
5364 (Name_Exec_Dir, Project.Decl.Attributes, Shared);
5366 Source_Dirs : constant Variable_Value :=
5367 Util.Value_Of
5368 (Name_Source_Dirs, Project.Decl.Attributes, Shared);
5370 Ignore_Source_Sub_Dirs : constant Variable_Value :=
5371 Util.Value_Of
5372 (Name_Ignore_Source_Sub_Dirs,
5373 Project.Decl.Attributes,
5374 Shared);
5376 Excluded_Source_Dirs : constant Variable_Value :=
5377 Util.Value_Of
5378 (Name_Excluded_Source_Dirs,
5379 Project.Decl.Attributes,
5380 Shared);
5382 Source_Files : constant Variable_Value :=
5383 Util.Value_Of
5384 (Name_Source_Files,
5385 Project.Decl.Attributes, Shared);
5387 Last_Source_Dir : String_List_Id := Nil_String;
5388 Last_Src_Dir_Rank : Number_List_Index := No_Number_List;
5390 Languages : constant Variable_Value :=
5391 Prj.Util.Value_Of
5392 (Name_Languages, Project.Decl.Attributes, Shared);
5394 Remove_Source_Dirs : Boolean := False;
5396 procedure Add_To_Or_Remove_From_Source_Dirs
5397 (Path : Path_Information;
5398 Rank : Natural);
5399 -- When Removed = False, the directory Path_Id to the list of
5400 -- source_dirs if not already in the list. When Removed = True,
5401 -- removed directory Path_Id if in the list.
5403 procedure Find_Source_Dirs is new Expand_Subdirectory_Pattern
5404 (Add_To_Or_Remove_From_Source_Dirs);
5406 ---------------------------------------
5407 -- Add_To_Or_Remove_From_Source_Dirs --
5408 ---------------------------------------
5410 procedure Add_To_Or_Remove_From_Source_Dirs
5411 (Path : Path_Information;
5412 Rank : Natural)
5414 List : String_List_Id;
5415 Prev : String_List_Id;
5416 Rank_List : Number_List_Index;
5417 Prev_Rank : Number_List_Index;
5418 Element : String_Element;
5420 begin
5421 Prev := Nil_String;
5422 Prev_Rank := No_Number_List;
5423 List := Project.Source_Dirs;
5424 Rank_List := Project.Source_Dir_Ranks;
5425 while List /= Nil_String loop
5426 Element := Shared.String_Elements.Table (List);
5427 exit when Element.Value = Name_Id (Path.Name);
5428 Prev := List;
5429 List := Element.Next;
5430 Prev_Rank := Rank_List;
5431 Rank_List := Shared.Number_Lists.Table (Prev_Rank).Next;
5432 end loop;
5434 -- The directory is in the list if List is not Nil_String
5436 if not Remove_Source_Dirs and then List = Nil_String then
5437 Debug_Output ("adding source dir=", Name_Id (Path.Display_Name));
5439 String_Element_Table.Increment_Last (Shared.String_Elements);
5440 Element :=
5441 (Value => Name_Id (Path.Name),
5442 Index => 0,
5443 Display_Value => Name_Id (Path.Display_Name),
5444 Location => No_Location,
5445 Flag => False,
5446 Next => Nil_String);
5448 Number_List_Table.Increment_Last (Shared.Number_Lists);
5450 if Last_Source_Dir = Nil_String then
5452 -- This is the first source directory
5454 Project.Source_Dirs :=
5455 String_Element_Table.Last (Shared.String_Elements);
5456 Project.Source_Dir_Ranks :=
5457 Number_List_Table.Last (Shared.Number_Lists);
5459 else
5460 -- We already have source directories, link the previous
5461 -- last to the new one.
5463 Shared.String_Elements.Table (Last_Source_Dir).Next :=
5464 String_Element_Table.Last (Shared.String_Elements);
5465 Shared.Number_Lists.Table (Last_Src_Dir_Rank).Next :=
5466 Number_List_Table.Last (Shared.Number_Lists);
5467 end if;
5469 -- And register this source directory as the new last
5471 Last_Source_Dir :=
5472 String_Element_Table.Last (Shared.String_Elements);
5473 Shared.String_Elements.Table (Last_Source_Dir) := Element;
5474 Last_Src_Dir_Rank := Number_List_Table.Last (Shared.Number_Lists);
5475 Shared.Number_Lists.Table (Last_Src_Dir_Rank) :=
5476 (Number => Rank, Next => No_Number_List);
5478 elsif Remove_Source_Dirs and then List /= Nil_String then
5480 -- Remove source dir if present
5482 if Prev = Nil_String then
5483 Project.Source_Dirs := Shared.String_Elements.Table (List).Next;
5484 Project.Source_Dir_Ranks :=
5485 Shared.Number_Lists.Table (Rank_List).Next;
5487 else
5488 Shared.String_Elements.Table (Prev).Next :=
5489 Shared.String_Elements.Table (List).Next;
5490 Shared.Number_Lists.Table (Prev_Rank).Next :=
5491 Shared.Number_Lists.Table (Rank_List).Next;
5492 end if;
5493 end if;
5494 end Add_To_Or_Remove_From_Source_Dirs;
5496 -- Local declarations
5498 Dir_Exists : Boolean;
5500 No_Sources : constant Boolean :=
5501 ((not Source_Files.Default
5502 and then Source_Files.Values = Nil_String)
5503 or else (not Source_Dirs.Default
5504 and then Source_Dirs.Values = Nil_String)
5505 or else (not Languages.Default
5506 and then Languages.Values = Nil_String))
5507 and then Project.Extends = No_Project;
5509 -- Start of processing for Get_Directories
5511 begin
5512 Debug_Output ("starting to look for directories");
5514 -- Set the object directory to its default which may be nil, if there
5515 -- is no sources in the project.
5517 if No_Sources then
5518 Project.Object_Directory := No_Path_Information;
5519 else
5520 Project.Object_Directory := Project.Directory;
5521 end if;
5523 -- Check the object directory
5525 if Object_Dir.Value /= Empty_String then
5526 Get_Name_String (Object_Dir.Value);
5528 if Name_Len = 0 then
5529 Error_Msg
5530 (Data.Flags,
5531 "Object_Dir cannot be empty",
5532 Object_Dir.Location, Project);
5534 elsif Setup_Projects
5535 and then No_Sources
5536 and then Project.Extends = No_Project
5537 then
5538 -- Do not create an object directory for a non extending project
5539 -- with no sources.
5541 Locate_Directory
5542 (Project,
5543 File_Name_Type (Object_Dir.Value),
5544 Path => Project.Object_Directory,
5545 Dir_Exists => Dir_Exists,
5546 Data => Data,
5547 Location => Object_Dir.Location,
5548 Must_Exist => False,
5549 Externally_Built => Project.Externally_Built);
5551 else
5552 -- We check that the specified object directory does exist.
5553 -- However, even when it doesn't exist, we set it to a default
5554 -- value. This is for the benefit of tools that recover from
5555 -- errors; for example, these tools could create the non existent
5556 -- directory. We always return an absolute directory name though.
5558 Locate_Directory
5559 (Project,
5560 File_Name_Type (Object_Dir.Value),
5561 Path => Project.Object_Directory,
5562 Create => "object",
5563 Dir_Exists => Dir_Exists,
5564 Data => Data,
5565 Location => Object_Dir.Location,
5566 Must_Exist => False,
5567 Externally_Built => Project.Externally_Built);
5569 if not Dir_Exists and then not Project.Externally_Built then
5570 if Opt.Directories_Must_Exist_In_Projects then
5572 -- The object directory does not exist, report an error if
5573 -- the project is not externally built.
5575 Err_Vars.Error_Msg_File_1 :=
5576 File_Name_Type (Object_Dir.Value);
5577 Error_Or_Warning
5578 (Data.Flags, Data.Flags.Require_Obj_Dirs,
5579 "object directory { not found",
5580 Project.Location, Project);
5581 end if;
5582 end if;
5583 end if;
5585 elsif not No_Sources and then Subdirs /= null then
5586 Name_Len := 1;
5587 Name_Buffer (1) := '.';
5588 Locate_Directory
5589 (Project,
5590 Name_Find,
5591 Path => Project.Object_Directory,
5592 Create => "object",
5593 Dir_Exists => Dir_Exists,
5594 Data => Data,
5595 Location => Object_Dir.Location,
5596 Externally_Built => Project.Externally_Built);
5597 end if;
5599 if Current_Verbosity = High then
5600 if Project.Object_Directory = No_Path_Information then
5601 Debug_Output ("no object directory");
5602 else
5603 Write_Attr
5604 ("Object directory",
5605 Get_Name_String (Project.Object_Directory.Display_Name));
5606 end if;
5607 end if;
5609 -- Check the exec directory
5611 -- We set the object directory to its default
5613 Project.Exec_Directory := Project.Object_Directory;
5615 if Exec_Dir.Value /= Empty_String then
5616 Get_Name_String (Exec_Dir.Value);
5618 if Name_Len = 0 then
5619 Error_Msg
5620 (Data.Flags,
5621 "Exec_Dir cannot be empty",
5622 Exec_Dir.Location, Project);
5624 elsif Setup_Projects
5625 and then No_Sources
5626 and then Project.Extends = No_Project
5627 then
5628 -- Do not create an exec directory for a non extending project
5629 -- with no sources.
5631 Locate_Directory
5632 (Project,
5633 File_Name_Type (Exec_Dir.Value),
5634 Path => Project.Exec_Directory,
5635 Dir_Exists => Dir_Exists,
5636 Data => Data,
5637 Location => Exec_Dir.Location,
5638 Externally_Built => Project.Externally_Built);
5640 else
5641 -- We check that the specified exec directory does exist
5643 Locate_Directory
5644 (Project,
5645 File_Name_Type (Exec_Dir.Value),
5646 Path => Project.Exec_Directory,
5647 Dir_Exists => Dir_Exists,
5648 Data => Data,
5649 Create => "exec",
5650 Location => Exec_Dir.Location,
5651 Externally_Built => Project.Externally_Built);
5653 if not Dir_Exists then
5654 if Opt.Directories_Must_Exist_In_Projects then
5655 Err_Vars.Error_Msg_File_1 := File_Name_Type (Exec_Dir.Value);
5656 Error_Or_Warning
5657 (Data.Flags, Data.Flags.Missing_Source_Files,
5658 "exec directory { not found", Project.Location, Project);
5660 else
5661 Project.Exec_Directory := No_Path_Information;
5662 end if;
5663 end if;
5664 end if;
5665 end if;
5667 if Current_Verbosity = High then
5668 if Project.Exec_Directory = No_Path_Information then
5669 Debug_Output ("no exec directory");
5670 else
5671 Debug_Output
5672 ("exec directory: ",
5673 Name_Id (Project.Exec_Directory.Display_Name));
5674 end if;
5675 end if;
5677 -- Look for the source directories
5679 Debug_Output ("starting to look for source directories");
5681 pragma Assert (Source_Dirs.Kind = List, "Source_Dirs is not a list");
5683 if not Source_Files.Default and then Source_Files.Values = Nil_String
5684 then
5685 Project.Source_Dirs := Nil_String;
5687 if Project.Qualifier = Standard then
5688 Error_Msg
5689 (Data.Flags,
5690 "a standard project cannot have no sources",
5691 Source_Files.Location, Project);
5692 end if;
5694 elsif Source_Dirs.Default then
5696 -- No Source_Dirs specified: the single source directory is the one
5697 -- containing the project file.
5699 Remove_Source_Dirs := False;
5700 Add_To_Or_Remove_From_Source_Dirs
5701 (Path => (Name => Project.Directory.Name,
5702 Display_Name => Project.Directory.Display_Name),
5703 Rank => 1);
5705 else
5706 Remove_Source_Dirs := False;
5707 Find_Source_Dirs
5708 (Project => Project,
5709 Data => Data,
5710 Patterns => Source_Dirs.Values,
5711 Ignore => Ignore_Source_Sub_Dirs.Values,
5712 Search_For => Search_Directories,
5713 Resolve_Links => Opt.Follow_Links_For_Dirs);
5715 if Project.Source_Dirs = Nil_String
5716 and then Project.Qualifier = Standard
5717 then
5718 Error_Msg
5719 (Data.Flags,
5720 "a standard project cannot have no source directories",
5721 Source_Dirs.Location, Project);
5722 end if;
5723 end if;
5725 if not Excluded_Source_Dirs.Default
5726 and then Excluded_Source_Dirs.Values /= Nil_String
5727 then
5728 Remove_Source_Dirs := True;
5729 Find_Source_Dirs
5730 (Project => Project,
5731 Data => Data,
5732 Patterns => Excluded_Source_Dirs.Values,
5733 Ignore => Nil_String,
5734 Search_For => Search_Directories,
5735 Resolve_Links => Opt.Follow_Links_For_Dirs);
5736 end if;
5738 Debug_Output ("putting source directories in canonical cases");
5740 declare
5741 Current : String_List_Id := Project.Source_Dirs;
5742 Element : String_Element;
5744 begin
5745 while Current /= Nil_String loop
5746 Element := Shared.String_Elements.Table (Current);
5747 if Element.Value /= No_Name then
5748 Element.Value :=
5749 Name_Id (Canonical_Case_File_Name (Element.Value));
5750 Shared.String_Elements.Table (Current) := Element;
5751 end if;
5753 Current := Element.Next;
5754 end loop;
5755 end;
5756 end Get_Directories;
5758 ---------------
5759 -- Get_Mains --
5760 ---------------
5762 procedure Get_Mains
5763 (Project : Project_Id;
5764 Data : in out Tree_Processing_Data)
5766 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
5768 Mains : constant Variable_Value :=
5769 Prj.Util.Value_Of
5770 (Name_Main, Project.Decl.Attributes, Shared);
5771 List : String_List_Id;
5772 Elem : String_Element;
5774 begin
5775 Project.Mains := Mains.Values;
5777 -- If no Mains were specified, and if we are an extending project,
5778 -- inherit the Mains from the project we are extending.
5780 if Mains.Default then
5781 if not Project.Library and then Project.Extends /= No_Project then
5782 Project.Mains := Project.Extends.Mains;
5783 end if;
5785 -- In a library project file, Main cannot be specified
5787 elsif Project.Library then
5788 Error_Msg
5789 (Data.Flags,
5790 "a library project file cannot have Main specified",
5791 Mains.Location, Project);
5793 else
5794 List := Mains.Values;
5795 while List /= Nil_String loop
5796 Elem := Shared.String_Elements.Table (List);
5798 if Length_Of_Name (Elem.Value) = 0 then
5799 Error_Msg
5800 (Data.Flags,
5801 "?a main cannot have an empty name",
5802 Elem.Location, Project);
5803 exit;
5804 end if;
5806 List := Elem.Next;
5807 end loop;
5808 end if;
5809 end Get_Mains;
5811 ---------------------------
5812 -- Get_Sources_From_File --
5813 ---------------------------
5815 procedure Get_Sources_From_File
5816 (Path : String;
5817 Location : Source_Ptr;
5818 Project : in out Project_Processing_Data;
5819 Data : in out Tree_Processing_Data)
5821 File : Prj.Util.Text_File;
5822 Line : String (1 .. 250);
5823 Last : Natural;
5824 Source_Name : File_Name_Type;
5825 Name_Loc : Name_Location;
5827 begin
5828 if Current_Verbosity = High then
5829 Debug_Output ("opening """ & Path & '"');
5830 end if;
5832 -- Open the file
5834 Prj.Util.Open (File, Path);
5836 if not Prj.Util.Is_Valid (File) then
5837 Error_Msg
5838 (Data.Flags, "file does not exist", Location, Project.Project);
5840 else
5841 -- Read the lines one by one
5843 while not Prj.Util.End_Of_File (File) loop
5844 Prj.Util.Get_Line (File, Line, Last);
5846 -- A non empty, non comment line should contain a file name
5848 if Last /= 0 and then (Last = 1 or else Line (1 .. 2) /= "--") then
5849 Name_Len := Last;
5850 Name_Buffer (1 .. Name_Len) := Line (1 .. Last);
5851 Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
5852 Source_Name := Name_Find;
5854 -- Check that there is no directory information
5856 for J in 1 .. Last loop
5857 if Line (J) = '/' or else Line (J) = Directory_Separator then
5858 Error_Msg_File_1 := Source_Name;
5859 Error_Msg
5860 (Data.Flags,
5861 "file name cannot include directory information ({)",
5862 Location, Project.Project);
5863 exit;
5864 end if;
5865 end loop;
5867 Name_Loc := Source_Names_Htable.Get
5868 (Project.Source_Names, Source_Name);
5870 if Name_Loc = No_Name_Location then
5871 Name_Loc :=
5872 (Name => Source_Name,
5873 Location => Location,
5874 Source => No_Source,
5875 Listed => True,
5876 Found => False);
5878 else
5879 Name_Loc.Listed := True;
5880 end if;
5882 Source_Names_Htable.Set
5883 (Project.Source_Names, Source_Name, Name_Loc);
5884 end if;
5885 end loop;
5887 Prj.Util.Close (File);
5889 end if;
5890 end Get_Sources_From_File;
5892 ------------------
5893 -- No_Space_Img --
5894 ------------------
5896 function No_Space_Img (N : Natural) return String is
5897 Image : constant String := N'Img;
5898 begin
5899 return Image (2 .. Image'Last);
5900 end No_Space_Img;
5902 -----------------------
5903 -- Compute_Unit_Name --
5904 -----------------------
5906 procedure Compute_Unit_Name
5907 (File_Name : File_Name_Type;
5908 Naming : Lang_Naming_Data;
5909 Kind : out Source_Kind;
5910 Unit : out Name_Id;
5911 Project : Project_Processing_Data)
5913 Filename : constant String := Get_Name_String (File_Name);
5914 Last : Integer := Filename'Last;
5915 Sep_Len : Integer;
5916 Body_Len : Integer;
5917 Spec_Len : Integer;
5919 Unit_Except : Unit_Exception;
5920 Masked : Boolean := False;
5922 begin
5923 Unit := No_Name;
5924 Kind := Spec;
5926 if Naming.Separate_Suffix = No_File
5927 or else Naming.Body_Suffix = No_File
5928 or else Naming.Spec_Suffix = No_File
5929 then
5930 return;
5931 end if;
5933 if Naming.Dot_Replacement = No_File then
5934 Debug_Output ("no dot_replacement specified");
5935 return;
5936 end if;
5938 Sep_Len := Integer (Length_Of_Name (Naming.Separate_Suffix));
5939 Spec_Len := Integer (Length_Of_Name (Naming.Spec_Suffix));
5940 Body_Len := Integer (Length_Of_Name (Naming.Body_Suffix));
5942 -- Choose the longest suffix that matches. If there are several matches,
5943 -- give priority to specs, then bodies, then separates.
5945 if Naming.Separate_Suffix /= Naming.Body_Suffix
5946 and then Suffix_Matches (Filename, Naming.Separate_Suffix)
5947 then
5948 Last := Filename'Last - Sep_Len;
5949 Kind := Sep;
5950 end if;
5952 if Filename'Last - Body_Len <= Last
5953 and then Suffix_Matches (Filename, Naming.Body_Suffix)
5954 then
5955 Last := Natural'Min (Last, Filename'Last - Body_Len);
5956 Kind := Impl;
5957 end if;
5959 if Filename'Last - Spec_Len <= Last
5960 and then Suffix_Matches (Filename, Naming.Spec_Suffix)
5961 then
5962 Last := Natural'Min (Last, Filename'Last - Spec_Len);
5963 Kind := Spec;
5964 end if;
5966 if Last = Filename'Last then
5967 Debug_Output ("no matching suffix");
5968 return;
5969 end if;
5971 -- Check that the casing matches
5973 if File_Names_Case_Sensitive then
5974 case Naming.Casing is
5975 when All_Lower_Case =>
5976 for J in Filename'First .. Last loop
5977 if Is_Letter (Filename (J))
5978 and then not Is_Lower (Filename (J))
5979 then
5980 Debug_Output ("invalid casing");
5981 return;
5982 end if;
5983 end loop;
5985 when All_Upper_Case =>
5986 for J in Filename'First .. Last loop
5987 if Is_Letter (Filename (J))
5988 and then not Is_Upper (Filename (J))
5989 then
5990 Debug_Output ("invalid casing");
5991 return;
5992 end if;
5993 end loop;
5995 when Mixed_Case | Unknown =>
5996 null;
5997 end case;
5998 end if;
6000 -- If Dot_Replacement is not a single dot, then there should not
6001 -- be any dot in the name.
6003 declare
6004 Dot_Repl : constant String :=
6005 Get_Name_String (Naming.Dot_Replacement);
6007 begin
6008 if Dot_Repl /= "." then
6009 for Index in Filename'First .. Last loop
6010 if Filename (Index) = '.' then
6011 Debug_Output ("invalid name, contains dot");
6012 return;
6013 end if;
6014 end loop;
6016 Replace_Into_Name_Buffer
6017 (Filename (Filename'First .. Last), Dot_Repl, '.');
6019 else
6020 Name_Len := Last - Filename'First + 1;
6021 Name_Buffer (1 .. Name_Len) := Filename (Filename'First .. Last);
6022 Fixed.Translate
6023 (Source => Name_Buffer (1 .. Name_Len),
6024 Mapping => Lower_Case_Map);
6025 end if;
6026 end;
6028 -- In the standard GNAT naming scheme, check for special cases: children
6029 -- or separates of A, G, I or S, and run time sources.
6031 if Is_Standard_GNAT_Naming (Naming) and then Name_Len >= 3 then
6032 declare
6033 S1 : constant Character := Name_Buffer (1);
6034 S2 : constant Character := Name_Buffer (2);
6035 S3 : constant Character := Name_Buffer (3);
6037 begin
6038 if S1 = 'a' or else S1 = 'g' or else S1 = 'i' or else S1 = 's' then
6040 -- Children or separates of packages A, G, I or S. These names
6041 -- are x__ ... or x~... (where x is a, g, i, or s). Both
6042 -- versions (x__... and x~...) are allowed in all platforms,
6043 -- because it is not possible to know the platform before
6044 -- processing of the project files.
6046 if S2 = '_' and then S3 = '_' then
6047 Name_Buffer (2) := '.';
6048 Name_Buffer (3 .. Name_Len - 1) :=
6049 Name_Buffer (4 .. Name_Len);
6050 Name_Len := Name_Len - 1;
6052 elsif S2 = '~' then
6053 Name_Buffer (2) := '.';
6055 elsif S2 = '.' then
6057 -- If it is potentially a run time source
6059 null;
6060 end if;
6061 end if;
6062 end;
6063 end if;
6065 -- Name_Buffer contains the name of the unit in lower-cases. Check
6066 -- that this is a valid unit name
6068 Check_Unit_Name (Name_Buffer (1 .. Name_Len), Unit);
6070 -- If there is a naming exception for the same unit, the file is not
6071 -- a source for the unit.
6073 if Unit /= No_Name then
6074 Unit_Except :=
6075 Unit_Exceptions_Htable.Get (Project.Unit_Exceptions, Unit);
6077 if Kind = Spec then
6078 Masked := Unit_Except.Spec /= No_File
6079 and then
6080 Unit_Except.Spec /= File_Name;
6081 else
6082 Masked := Unit_Except.Impl /= No_File
6083 and then
6084 Unit_Except.Impl /= File_Name;
6085 end if;
6087 if Masked then
6088 if Current_Verbosity = High then
6089 Debug_Indent;
6090 Write_Str (" """ & Filename & """ contains the ");
6092 if Kind = Spec then
6093 Write_Str ("spec of a unit found in """);
6094 Write_Str (Get_Name_String (Unit_Except.Spec));
6095 else
6096 Write_Str ("body of a unit found in """);
6097 Write_Str (Get_Name_String (Unit_Except.Impl));
6098 end if;
6100 Write_Line (""" (ignored)");
6101 end if;
6103 Unit := No_Name;
6104 end if;
6105 end if;
6107 if Unit /= No_Name and then Current_Verbosity = High then
6108 case Kind is
6109 when Spec => Debug_Output ("spec of", Unit);
6110 when Impl => Debug_Output ("body of", Unit);
6111 when Sep => Debug_Output ("sep of", Unit);
6112 end case;
6113 end if;
6114 end Compute_Unit_Name;
6116 --------------------------
6117 -- Check_Illegal_Suffix --
6118 --------------------------
6120 procedure Check_Illegal_Suffix
6121 (Project : Project_Id;
6122 Suffix : File_Name_Type;
6123 Dot_Replacement : File_Name_Type;
6124 Attribute_Name : String;
6125 Location : Source_Ptr;
6126 Data : in out Tree_Processing_Data)
6128 Suffix_Str : constant String := Get_Name_String (Suffix);
6130 begin
6131 if Suffix_Str'Length = 0 then
6133 -- Always valid
6135 return;
6137 elsif Index (Suffix_Str, ".") = 0 then
6138 Err_Vars.Error_Msg_File_1 := Suffix;
6139 Error_Msg
6140 (Data.Flags,
6141 "{ is illegal for " & Attribute_Name & ": must have a dot",
6142 Location, Project);
6143 return;
6144 end if;
6146 -- Case of dot replacement is a single dot, and first character of
6147 -- suffix is also a dot.
6149 if Dot_Replacement /= No_File
6150 and then Get_Name_String (Dot_Replacement) = "."
6151 and then Suffix_Str (Suffix_Str'First) = '.'
6152 then
6153 for Index in Suffix_Str'First + 1 .. Suffix_Str'Last loop
6155 -- If there are multiple dots in the name
6157 if Suffix_Str (Index) = '.' then
6159 -- It is illegal to have a letter following the initial dot
6161 if Is_Letter (Suffix_Str (Suffix_Str'First + 1)) then
6162 Err_Vars.Error_Msg_File_1 := Suffix;
6163 Error_Msg
6164 (Data.Flags,
6165 "{ is illegal for " & Attribute_Name
6166 & ": ambiguous prefix when Dot_Replacement is a dot",
6167 Location, Project);
6168 end if;
6169 return;
6170 end if;
6171 end loop;
6172 end if;
6173 end Check_Illegal_Suffix;
6175 ----------------------
6176 -- Locate_Directory --
6177 ----------------------
6179 procedure Locate_Directory
6180 (Project : Project_Id;
6181 Name : File_Name_Type;
6182 Path : out Path_Information;
6183 Dir_Exists : out Boolean;
6184 Data : in out Tree_Processing_Data;
6185 Create : String := "";
6186 Location : Source_Ptr := No_Location;
6187 Must_Exist : Boolean := True;
6188 Externally_Built : Boolean := False)
6190 Parent : constant Path_Name_Type :=
6191 Project.Directory.Display_Name;
6192 The_Parent : constant String :=
6193 Get_Name_String (Parent);
6194 The_Parent_Last : constant Natural :=
6195 Compute_Directory_Last (The_Parent);
6196 Full_Name : File_Name_Type;
6197 The_Name : File_Name_Type;
6199 begin
6200 Get_Name_String (Name);
6202 -- Add Subdirs.all if it is a directory that may be created and
6203 -- Subdirs is not null;
6205 if Create /= "" and then Subdirs /= null then
6206 if Name_Buffer (Name_Len) /= Directory_Separator then
6207 Add_Char_To_Name_Buffer (Directory_Separator);
6208 end if;
6210 Add_Str_To_Name_Buffer (Subdirs.all);
6211 end if;
6213 -- Convert '/' to directory separator (for Windows)
6215 for J in 1 .. Name_Len loop
6216 if Name_Buffer (J) = '/' then
6217 Name_Buffer (J) := Directory_Separator;
6218 end if;
6219 end loop;
6221 The_Name := Name_Find;
6223 if Current_Verbosity = High then
6224 Debug_Indent;
6225 Write_Str ("Locate_Directory (""");
6226 Write_Str (Get_Name_String (The_Name));
6227 Write_Str (""", in """);
6228 Write_Str (The_Parent);
6229 Write_Line (""")");
6230 end if;
6232 Path := No_Path_Information;
6233 Dir_Exists := False;
6235 if Is_Absolute_Path (Get_Name_String (The_Name)) then
6236 Full_Name := The_Name;
6238 else
6239 Name_Len := 0;
6240 Add_Str_To_Name_Buffer
6241 (The_Parent (The_Parent'First .. The_Parent_Last));
6242 Add_Str_To_Name_Buffer (Get_Name_String (The_Name));
6243 Full_Name := Name_Find;
6244 end if;
6246 declare
6247 Full_Path_Name : String_Access :=
6248 new String'(Get_Name_String (Full_Name));
6250 begin
6251 if (Setup_Projects or else Subdirs /= null)
6252 and then Create'Length > 0
6253 then
6254 if not Is_Directory (Full_Path_Name.all) then
6256 -- If project is externally built, do not create a subdir,
6257 -- use the specified directory, without the subdir.
6259 if Externally_Built then
6260 if Is_Absolute_Path (Get_Name_String (Name)) then
6261 Get_Name_String (Name);
6263 else
6264 Name_Len := 0;
6265 Add_Str_To_Name_Buffer
6266 (The_Parent (The_Parent'First .. The_Parent_Last));
6267 Add_Str_To_Name_Buffer (Get_Name_String (Name));
6268 end if;
6270 Full_Path_Name := new String'(Name_Buffer (1 .. Name_Len));
6272 else
6273 begin
6274 Create_Path (Full_Path_Name.all);
6276 if not Quiet_Output then
6277 Write_Str (Create);
6278 Write_Str (" directory """);
6279 Write_Str (Full_Path_Name.all);
6280 Write_Str (""" created for project ");
6281 Write_Line (Get_Name_String (Project.Name));
6282 end if;
6284 exception
6285 when Use_Error =>
6287 -- Output message with name of directory. Note that we
6288 -- use the ~ insertion method here in case the name
6289 -- has special characters in it.
6291 Error_Msg_Strlen := Full_Path_Name'Length;
6292 Error_Msg_String (1 .. Error_Msg_Strlen) :=
6293 Full_Path_Name.all;
6294 Error_Msg
6295 (Data.Flags,
6296 "could not create " & Create & " directory ~",
6297 Location,
6298 Project);
6299 end;
6300 end if;
6301 end if;
6302 end if;
6304 Dir_Exists := Is_Directory (Full_Path_Name.all);
6306 if not Must_Exist or else Dir_Exists then
6307 declare
6308 Normed : constant String :=
6309 Normalize_Pathname
6310 (Full_Path_Name.all,
6311 Directory =>
6312 The_Parent (The_Parent'First .. The_Parent_Last),
6313 Resolve_Links => False,
6314 Case_Sensitive => True);
6316 Canonical_Path : constant String :=
6317 Normalize_Pathname
6318 (Normed,
6319 Directory =>
6320 The_Parent
6321 (The_Parent'First .. The_Parent_Last),
6322 Resolve_Links =>
6323 Opt.Follow_Links_For_Dirs,
6324 Case_Sensitive => False);
6326 begin
6327 Name_Len := Normed'Length;
6328 Name_Buffer (1 .. Name_Len) := Normed;
6330 -- Directories should always end with a directory separator
6332 if Name_Buffer (Name_Len) /= Directory_Separator then
6333 Add_Char_To_Name_Buffer (Directory_Separator);
6334 end if;
6336 Path.Display_Name := Name_Find;
6338 Name_Len := Canonical_Path'Length;
6339 Name_Buffer (1 .. Name_Len) := Canonical_Path;
6341 if Name_Buffer (Name_Len) /= Directory_Separator then
6342 Add_Char_To_Name_Buffer (Directory_Separator);
6343 end if;
6345 Path.Name := Name_Find;
6346 end;
6347 end if;
6349 Free (Full_Path_Name);
6350 end;
6351 end Locate_Directory;
6353 ---------------------------
6354 -- Find_Excluded_Sources --
6355 ---------------------------
6357 procedure Find_Excluded_Sources
6358 (Project : in out Project_Processing_Data;
6359 Data : in out Tree_Processing_Data)
6361 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
6363 Excluded_Source_List_File : constant Variable_Value :=
6364 Util.Value_Of
6365 (Name_Excluded_Source_List_File,
6366 Project.Project.Decl.Attributes,
6367 Shared);
6368 Excluded_Sources : Variable_Value := Util.Value_Of
6369 (Name_Excluded_Source_Files,
6370 Project.Project.Decl.Attributes,
6371 Shared);
6373 Current : String_List_Id;
6374 Element : String_Element;
6375 Location : Source_Ptr;
6376 Name : File_Name_Type;
6377 File : Prj.Util.Text_File;
6378 Line : String (1 .. 300);
6379 Last : Natural;
6380 Locally_Removed : Boolean := False;
6382 begin
6383 -- If Excluded_Source_Files is not declared, check Locally_Removed_Files
6385 if Excluded_Sources.Default then
6386 Locally_Removed := True;
6387 Excluded_Sources :=
6388 Util.Value_Of
6389 (Name_Locally_Removed_Files,
6390 Project.Project.Decl.Attributes, Shared);
6391 end if;
6393 -- If there are excluded sources, put them in the table
6395 if not Excluded_Sources.Default then
6396 if not Excluded_Source_List_File.Default then
6397 if Locally_Removed then
6398 Error_Msg
6399 (Data.Flags,
6400 "?both attributes Locally_Removed_Files and " &
6401 "Excluded_Source_List_File are present",
6402 Excluded_Source_List_File.Location, Project.Project);
6403 else
6404 Error_Msg
6405 (Data.Flags,
6406 "?both attributes Excluded_Source_Files and " &
6407 "Excluded_Source_List_File are present",
6408 Excluded_Source_List_File.Location, Project.Project);
6409 end if;
6410 end if;
6412 Current := Excluded_Sources.Values;
6413 while Current /= Nil_String loop
6414 Element := Shared.String_Elements.Table (Current);
6415 Name := Canonical_Case_File_Name (Element.Value);
6417 -- If the element has no location, then use the location of
6418 -- Excluded_Sources to report possible errors.
6420 if Element.Location = No_Location then
6421 Location := Excluded_Sources.Location;
6422 else
6423 Location := Element.Location;
6424 end if;
6426 Excluded_Sources_Htable.Set
6427 (Project.Excluded, Name,
6428 (Name, No_File, 0, False, Location));
6429 Current := Element.Next;
6430 end loop;
6432 elsif not Excluded_Source_List_File.Default then
6433 Location := Excluded_Source_List_File.Location;
6435 declare
6436 Source_File_Name : constant File_Name_Type :=
6437 File_Name_Type
6438 (Excluded_Source_List_File.Value);
6439 Source_File_Line : Natural := 0;
6441 Source_File_Path_Name : constant String :=
6442 Path_Name_Of
6443 (Source_File_Name,
6444 Project.Project.Directory.Name);
6446 begin
6447 if Source_File_Path_Name'Length = 0 then
6448 Err_Vars.Error_Msg_File_1 :=
6449 File_Name_Type (Excluded_Source_List_File.Value);
6450 Error_Msg
6451 (Data.Flags,
6452 "file with excluded sources { does not exist",
6453 Excluded_Source_List_File.Location, Project.Project);
6455 else
6456 -- Open the file
6458 Prj.Util.Open (File, Source_File_Path_Name);
6460 if not Prj.Util.Is_Valid (File) then
6461 Error_Msg
6462 (Data.Flags, "file does not exist",
6463 Location, Project.Project);
6464 else
6465 -- Read the lines one by one
6467 while not Prj.Util.End_Of_File (File) loop
6468 Prj.Util.Get_Line (File, Line, Last);
6469 Source_File_Line := Source_File_Line + 1;
6471 -- Non empty, non comment line should contain a file name
6473 if Last /= 0
6474 and then (Last = 1 or else Line (1 .. 2) /= "--")
6475 then
6476 Name_Len := Last;
6477 Name_Buffer (1 .. Name_Len) := Line (1 .. Last);
6478 Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
6479 Name := Name_Find;
6481 -- Check that there is no directory information
6483 for J in 1 .. Last loop
6484 if Line (J) = '/'
6485 or else Line (J) = Directory_Separator
6486 then
6487 Error_Msg_File_1 := Name;
6488 Error_Msg
6489 (Data.Flags,
6490 "file name cannot include " &
6491 "directory information ({)",
6492 Location, Project.Project);
6493 exit;
6494 end if;
6495 end loop;
6497 Excluded_Sources_Htable.Set
6498 (Project.Excluded,
6499 Name,
6500 (Name, Source_File_Name, Source_File_Line,
6501 False, Location));
6502 end if;
6503 end loop;
6505 Prj.Util.Close (File);
6506 end if;
6507 end if;
6508 end;
6509 end if;
6510 end Find_Excluded_Sources;
6512 ------------------
6513 -- Find_Sources --
6514 ------------------
6516 procedure Find_Sources
6517 (Project : in out Project_Processing_Data;
6518 Data : in out Tree_Processing_Data)
6520 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
6522 Sources : constant Variable_Value :=
6523 Util.Value_Of
6524 (Name_Source_Files,
6525 Project.Project.Decl.Attributes,
6526 Shared);
6528 Source_List_File : constant Variable_Value :=
6529 Util.Value_Of
6530 (Name_Source_List_File,
6531 Project.Project.Decl.Attributes,
6532 Shared);
6534 Name_Loc : Name_Location;
6535 Has_Explicit_Sources : Boolean;
6537 begin
6538 pragma Assert (Sources.Kind = List, "Source_Files is not a list");
6539 pragma Assert
6540 (Source_List_File.Kind = Single,
6541 "Source_List_File is not a single string");
6543 Project.Source_List_File_Location := Source_List_File.Location;
6545 -- If the user has specified a Source_Files attribute
6547 if not Sources.Default then
6548 if not Source_List_File.Default then
6549 Error_Msg
6550 (Data.Flags,
6551 "?both attributes source_files and " &
6552 "source_list_file are present",
6553 Source_List_File.Location, Project.Project);
6554 end if;
6556 -- Sources is a list of file names
6558 declare
6559 Current : String_List_Id := Sources.Values;
6560 Element : String_Element;
6561 Location : Source_Ptr;
6562 Name : File_Name_Type;
6564 begin
6565 if Current = Nil_String then
6566 Project.Project.Languages := No_Language_Index;
6568 -- This project contains no source. For projects that don't
6569 -- extend other projects, this also means that there is no
6570 -- need for an object directory, if not specified.
6572 if Project.Project.Extends = No_Project
6573 and then
6574 Project.Project.Object_Directory = Project.Project.Directory
6575 and then not (Project.Project.Qualifier = Aggregate_Library)
6576 then
6577 Project.Project.Object_Directory := No_Path_Information;
6578 end if;
6579 end if;
6581 while Current /= Nil_String loop
6582 Element := Shared.String_Elements.Table (Current);
6583 Name := Canonical_Case_File_Name (Element.Value);
6584 Get_Name_String (Element.Value);
6586 -- If the element has no location, then use the location of
6587 -- Sources to report possible errors.
6589 if Element.Location = No_Location then
6590 Location := Sources.Location;
6591 else
6592 Location := Element.Location;
6593 end if;
6595 -- Check that there is no directory information
6597 for J in 1 .. Name_Len loop
6598 if Name_Buffer (J) = '/'
6599 or else Name_Buffer (J) = Directory_Separator
6600 then
6601 Error_Msg_File_1 := Name;
6602 Error_Msg
6603 (Data.Flags,
6604 "file name cannot include directory " &
6605 "information ({)",
6606 Location, Project.Project);
6607 exit;
6608 end if;
6609 end loop;
6611 -- Check whether the file is already there: the same file name
6612 -- may be in the list. If the source is missing, the error will
6613 -- be on the first mention of the source file name.
6615 Name_Loc := Source_Names_Htable.Get
6616 (Project.Source_Names, Name);
6618 if Name_Loc = No_Name_Location then
6619 Name_Loc :=
6620 (Name => Name,
6621 Location => Location,
6622 Source => No_Source,
6623 Listed => True,
6624 Found => False);
6626 else
6627 Name_Loc.Listed := True;
6628 end if;
6630 Source_Names_Htable.Set
6631 (Project.Source_Names, Name, Name_Loc);
6633 Current := Element.Next;
6634 end loop;
6636 Has_Explicit_Sources := True;
6637 end;
6639 -- If we have no Source_Files attribute, check the Source_List_File
6640 -- attribute.
6642 elsif not Source_List_File.Default then
6644 -- Source_List_File is the name of the file that contains the source
6645 -- file names.
6647 declare
6648 Source_File_Path_Name : constant String :=
6649 Path_Name_Of
6650 (File_Name_Type
6651 (Source_List_File.Value),
6652 Project.Project.
6653 Directory.Display_Name);
6655 begin
6656 Has_Explicit_Sources := True;
6658 if Source_File_Path_Name'Length = 0 then
6659 Err_Vars.Error_Msg_File_1 :=
6660 File_Name_Type (Source_List_File.Value);
6661 Error_Msg
6662 (Data.Flags,
6663 "file with sources { does not exist",
6664 Source_List_File.Location, Project.Project);
6666 else
6667 Get_Sources_From_File
6668 (Source_File_Path_Name, Source_List_File.Location,
6669 Project, Data);
6670 end if;
6671 end;
6673 else
6674 -- Neither Source_Files nor Source_List_File has been specified. Find
6675 -- all the files that satisfy the naming scheme in all the source
6676 -- directories.
6678 Has_Explicit_Sources := False;
6679 end if;
6681 -- Remove any exception that is not in the specified list of sources
6683 if Has_Explicit_Sources then
6684 declare
6685 Source : Source_Id;
6686 Iter : Source_Iterator;
6687 NL : Name_Location;
6688 Again : Boolean;
6689 begin
6690 Iter_Loop :
6691 loop
6692 Again := False;
6693 Iter := For_Each_Source (Data.Tree, Project.Project);
6695 Source_Loop :
6696 loop
6697 Source := Prj.Element (Iter);
6698 exit Source_Loop when Source = No_Source;
6700 if Source.Naming_Exception /= No then
6701 NL := Source_Names_Htable.Get
6702 (Project.Source_Names, Source.File);
6704 if NL /= No_Name_Location and then not NL.Listed then
6706 -- Remove the exception
6708 Source_Names_Htable.Set
6709 (Project.Source_Names,
6710 Source.File,
6711 No_Name_Location);
6712 Remove_Source (Data.Tree, Source, No_Source);
6714 if Source.Naming_Exception = Yes then
6715 Error_Msg_Name_1 := Name_Id (Source.File);
6716 Error_Msg
6717 (Data.Flags,
6718 "? unknown source file %%",
6719 NL.Location,
6720 Project.Project);
6721 end if;
6723 Again := True;
6724 exit Source_Loop;
6725 end if;
6726 end if;
6728 Next (Iter);
6729 end loop Source_Loop;
6731 exit Iter_Loop when not Again;
6732 end loop Iter_Loop;
6733 end;
6734 end if;
6736 Search_Directories
6737 (Project,
6738 Data => Data,
6739 For_All_Sources => Sources.Default and then Source_List_File.Default);
6741 -- Check if all exceptions have been found
6743 declare
6744 Source : Source_Id;
6745 Iter : Source_Iterator;
6746 Found : Boolean := False;
6748 begin
6749 Iter := For_Each_Source (Data.Tree, Project.Project);
6750 loop
6751 Source := Prj.Element (Iter);
6752 exit when Source = No_Source;
6754 -- If the full source path is unknown for this source_id, there
6755 -- could be several reasons:
6756 -- * we simply did not find the file itself, this is an error
6757 -- * we have a multi-unit source file. Another Source_Id from
6758 -- the same file has received the full path, so we need to
6759 -- propagate it.
6761 if Source.Path = No_Path_Information then
6762 if Source.Naming_Exception = Yes then
6763 if Source.Unit /= No_Unit_Index then
6764 Found := False;
6766 if Source.Index /= 0 then -- Only multi-unit files
6767 declare
6768 S : Source_Id :=
6769 Source_Files_Htable.Get
6770 (Data.Tree.Source_Files_HT, Source.File);
6772 begin
6773 while S /= null loop
6774 if S.Path /= No_Path_Information then
6775 Source.Path := S.Path;
6776 Found := True;
6778 if Current_Verbosity = High then
6779 Debug_Output
6780 ("setting full path for "
6781 & Get_Name_String (Source.File)
6782 & " at" & Source.Index'Img
6783 & " to "
6784 & Get_Name_String (Source.Path.Name));
6785 end if;
6787 exit;
6788 end if;
6790 S := S.Next_With_File_Name;
6791 end loop;
6792 end;
6793 end if;
6795 if not Found then
6796 Error_Msg_Name_1 := Name_Id (Source.Display_File);
6797 Error_Msg_Name_2 := Source.Unit.Name;
6798 Error_Or_Warning
6799 (Data.Flags, Data.Flags.Missing_Source_Files,
6800 "source file %% for unit %% not found",
6801 No_Location, Project.Project);
6802 end if;
6803 end if;
6805 if Source.Path = No_Path_Information then
6806 Remove_Source (Data.Tree, Source, No_Source);
6807 end if;
6809 elsif Source.Naming_Exception = Inherited then
6810 Remove_Source (Data.Tree, Source, No_Source);
6811 end if;
6812 end if;
6814 Next (Iter);
6815 end loop;
6816 end;
6818 -- It is an error if a source file name in a source list or in a source
6819 -- list file is not found.
6821 if Has_Explicit_Sources then
6822 declare
6823 NL : Name_Location;
6824 First_Error : Boolean;
6826 begin
6827 NL := Source_Names_Htable.Get_First (Project.Source_Names);
6828 First_Error := True;
6829 while NL /= No_Name_Location loop
6830 if not NL.Found then
6831 Err_Vars.Error_Msg_File_1 := NL.Name;
6832 if First_Error then
6833 Error_Or_Warning
6834 (Data.Flags, Data.Flags.Missing_Source_Files,
6835 "source file { not found",
6836 NL.Location, Project.Project);
6837 First_Error := False;
6838 else
6839 Error_Or_Warning
6840 (Data.Flags, Data.Flags.Missing_Source_Files,
6841 "\source file { not found",
6842 NL.Location, Project.Project);
6843 end if;
6844 end if;
6846 NL := Source_Names_Htable.Get_Next (Project.Source_Names);
6847 end loop;
6848 end;
6849 end if;
6850 end Find_Sources;
6852 ----------------
6853 -- Initialize --
6854 ----------------
6856 procedure Initialize
6857 (Data : out Tree_Processing_Data;
6858 Tree : Project_Tree_Ref;
6859 Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
6860 Flags : Prj.Processing_Flags)
6862 begin
6863 Data.Tree := Tree;
6864 Data.Node_Tree := Node_Tree;
6865 Data.Flags := Flags;
6866 end Initialize;
6868 ----------
6869 -- Free --
6870 ----------
6872 procedure Free (Data : in out Tree_Processing_Data) is
6873 pragma Unreferenced (Data);
6874 begin
6875 null;
6876 end Free;
6878 ----------------
6879 -- Initialize --
6880 ----------------
6882 procedure Initialize
6883 (Data : in out Project_Processing_Data;
6884 Project : Project_Id)
6886 begin
6887 Data.Project := Project;
6888 end Initialize;
6890 ----------
6891 -- Free --
6892 ----------
6894 procedure Free (Data : in out Project_Processing_Data) is
6895 begin
6896 Source_Names_Htable.Reset (Data.Source_Names);
6897 Unit_Exceptions_Htable.Reset (Data.Unit_Exceptions);
6898 Excluded_Sources_Htable.Reset (Data.Excluded);
6899 end Free;
6901 -------------------------------
6902 -- Check_File_Naming_Schemes --
6903 -------------------------------
6905 procedure Check_File_Naming_Schemes
6906 (Project : Project_Processing_Data;
6907 File_Name : File_Name_Type;
6908 Alternate_Languages : out Language_List;
6909 Language : out Language_Ptr;
6910 Display_Language_Name : out Name_Id;
6911 Unit : out Name_Id;
6912 Lang_Kind : out Language_Kind;
6913 Kind : out Source_Kind)
6915 Filename : constant String := Get_Name_String (File_Name);
6916 Config : Language_Config;
6917 Tmp_Lang : Language_Ptr;
6919 Header_File : Boolean := False;
6920 -- True if we found at least one language for which the file is a header
6921 -- In such a case, we search for all possible languages where this is
6922 -- also a header (C and C++ for instance), since the file might be used
6923 -- for several such languages.
6925 procedure Check_File_Based_Lang;
6926 -- Does the naming scheme test for file-based languages. For those,
6927 -- there is no Unit. Just check if the file name has the implementation
6928 -- or, if it is specified, the template suffix of the language.
6930 -- Returns True if the file belongs to the current language and we
6931 -- should stop searching for matching languages. Not that a given header
6932 -- file could belong to several languages (C and C++ for instance). Thus
6933 -- if we found a header we'll check whether it matches other languages.
6935 ---------------------------
6936 -- Check_File_Based_Lang --
6937 ---------------------------
6939 procedure Check_File_Based_Lang is
6940 begin
6941 if not Header_File
6942 and then Suffix_Matches (Filename, Config.Naming_Data.Body_Suffix)
6943 then
6944 Unit := No_Name;
6945 Kind := Impl;
6946 Language := Tmp_Lang;
6948 Debug_Output
6949 ("implementation of language ", Display_Language_Name);
6951 elsif Suffix_Matches (Filename, Config.Naming_Data.Spec_Suffix) then
6952 Debug_Output
6953 ("header of language ", Display_Language_Name);
6955 if Header_File then
6956 Alternate_Languages := new Language_List_Element'
6957 (Language => Language,
6958 Next => Alternate_Languages);
6960 else
6961 Header_File := True;
6962 Kind := Spec;
6963 Unit := No_Name;
6964 Language := Tmp_Lang;
6965 end if;
6966 end if;
6967 end Check_File_Based_Lang;
6969 -- Start of processing for Check_File_Naming_Schemes
6971 begin
6972 Language := No_Language_Index;
6973 Alternate_Languages := null;
6974 Display_Language_Name := No_Name;
6975 Unit := No_Name;
6976 Lang_Kind := File_Based;
6977 Kind := Spec;
6979 Tmp_Lang := Project.Project.Languages;
6980 while Tmp_Lang /= No_Language_Index loop
6981 if Current_Verbosity = High then
6982 Debug_Output
6983 ("testing language "
6984 & Get_Name_String (Tmp_Lang.Name)
6985 & " Header_File=" & Header_File'Img);
6986 end if;
6988 Display_Language_Name := Tmp_Lang.Display_Name;
6989 Config := Tmp_Lang.Config;
6990 Lang_Kind := Config.Kind;
6992 case Config.Kind is
6993 when File_Based =>
6994 Check_File_Based_Lang;
6995 exit when Kind = Impl;
6997 when Unit_Based =>
6999 -- We know it belongs to a least a file_based language, no
7000 -- need to check unit-based ones.
7002 if not Header_File then
7003 Compute_Unit_Name
7004 (File_Name => File_Name,
7005 Naming => Config.Naming_Data,
7006 Kind => Kind,
7007 Unit => Unit,
7008 Project => Project);
7010 if Unit /= No_Name then
7011 Language := Tmp_Lang;
7012 exit;
7013 end if;
7014 end if;
7015 end case;
7017 Tmp_Lang := Tmp_Lang.Next;
7018 end loop;
7020 if Language = No_Language_Index then
7021 Debug_Output ("not a source of any language");
7022 end if;
7023 end Check_File_Naming_Schemes;
7025 -------------------
7026 -- Override_Kind --
7027 -------------------
7029 procedure Override_Kind (Source : Source_Id; Kind : Source_Kind) is
7030 begin
7031 -- If the file was previously already associated with a unit, change it
7033 if Source.Unit /= null
7034 and then Source.Kind in Spec_Or_Body
7035 and then Source.Unit.File_Names (Source.Kind) /= null
7036 then
7037 -- If we had another file referencing the same unit (for instance it
7038 -- was in an extended project), that source file is in fact invisible
7039 -- from now on, and in particular doesn't belong to the same unit.
7040 -- If the source is an inherited naming exception, then it may not
7041 -- really exist: the source potentially replaced is left untouched.
7043 if Source.Unit.File_Names (Source.Kind) /= Source then
7044 Source.Unit.File_Names (Source.Kind).Unit := No_Unit_Index;
7045 end if;
7047 Source.Unit.File_Names (Source.Kind) := null;
7048 end if;
7050 Source.Kind := Kind;
7052 if Current_Verbosity = High and then Source.File /= No_File then
7053 Debug_Output ("override kind for "
7054 & Get_Name_String (Source.File)
7055 & " idx=" & Source.Index'Img
7056 & " kind=" & Source.Kind'Img);
7057 end if;
7059 if Source.Unit /= null then
7060 if Source.Kind = Spec then
7061 Source.Unit.File_Names (Spec) := Source;
7062 else
7063 Source.Unit.File_Names (Impl) := Source;
7064 end if;
7065 end if;
7066 end Override_Kind;
7068 ----------------
7069 -- Check_File --
7070 ----------------
7072 procedure Check_File
7073 (Project : in out Project_Processing_Data;
7074 Data : in out Tree_Processing_Data;
7075 Source_Dir_Rank : Natural;
7076 Path : Path_Name_Type;
7077 Display_Path : Path_Name_Type;
7078 File_Name : File_Name_Type;
7079 Display_File_Name : File_Name_Type;
7080 Locally_Removed : Boolean;
7081 For_All_Sources : Boolean)
7083 Name_Loc : Name_Location :=
7084 Source_Names_Htable.Get
7085 (Project.Source_Names, File_Name);
7086 Check_Name : Boolean := False;
7087 Alternate_Languages : Language_List;
7088 Language : Language_Ptr;
7089 Source : Source_Id;
7090 Src_Ind : Source_File_Index;
7091 Unit : Name_Id;
7092 Display_Language_Name : Name_Id;
7093 Lang_Kind : Language_Kind;
7094 Kind : Source_Kind := Spec;
7096 begin
7097 if Current_Verbosity = High then
7098 Debug_Increase_Indent
7099 ("checking file (rank=" & Source_Dir_Rank'Img & ")",
7100 Name_Id (Display_Path));
7101 end if;
7103 if Name_Loc = No_Name_Location then
7104 Check_Name := For_All_Sources;
7106 else
7107 if Name_Loc.Found then
7109 -- Check if it is OK to have the same file name in several
7110 -- source directories.
7112 if Name_Loc.Source /= No_Source
7113 and then Source_Dir_Rank = Name_Loc.Source.Source_Dir_Rank
7114 then
7115 Error_Msg_File_1 := File_Name;
7116 Error_Msg
7117 (Data.Flags,
7118 "{ is found in several source directories",
7119 Name_Loc.Location, Project.Project);
7120 end if;
7122 else
7123 Name_Loc.Found := True;
7125 Source_Names_Htable.Set
7126 (Project.Source_Names, File_Name, Name_Loc);
7128 if Name_Loc.Source = No_Source then
7129 Check_Name := True;
7131 else
7132 -- Set the full path for the source_id (which might have been
7133 -- created when parsing the naming exceptions, and therefore
7134 -- might not have the full path).
7135 -- We only set this for this source_id, but not for other
7136 -- source_id in the same file (case of multi-unit source files)
7137 -- For the latter, they will be set in Find_Sources when we
7138 -- check that all source_id have known full paths.
7139 -- Doing this later saves one htable lookup per file in the
7140 -- common case where the user is not using multi-unit files.
7142 Name_Loc.Source.Path := (Path, Display_Path);
7144 Source_Paths_Htable.Set
7145 (Data.Tree.Source_Paths_HT, Path, Name_Loc.Source);
7147 -- Check if this is a subunit
7149 if Name_Loc.Source.Unit /= No_Unit_Index
7150 and then Name_Loc.Source.Kind = Impl
7151 then
7152 Src_Ind := Sinput.P.Load_Project_File
7153 (Get_Name_String (Display_Path));
7155 if Sinput.P.Source_File_Is_Subunit (Src_Ind) then
7156 Override_Kind (Name_Loc.Source, Sep);
7157 end if;
7158 end if;
7160 -- If this is an inherited naming exception, make sure that
7161 -- the naming exception it replaces is no longer a source.
7163 if Name_Loc.Source.Naming_Exception = Inherited then
7164 declare
7165 Proj : Project_Id := Name_Loc.Source.Project.Extends;
7166 Iter : Source_Iterator;
7167 Src : Source_Id;
7168 begin
7169 while Proj /= No_Project loop
7170 Iter := For_Each_Source (Data.Tree, Proj);
7171 Src := Prj.Element (Iter);
7172 while Src /= No_Source loop
7173 if Src.File = Name_Loc.Source.File then
7174 Src.Replaced_By := Name_Loc.Source;
7175 exit;
7176 end if;
7178 Next (Iter);
7179 Src := Prj.Element (Iter);
7180 end loop;
7182 Proj := Proj.Extends;
7183 end loop;
7184 end;
7186 if Name_Loc.Source.Unit /= No_Unit_Index then
7187 if Name_Loc.Source.Kind = Spec then
7188 Name_Loc.Source.Unit.File_Names (Spec) :=
7189 Name_Loc.Source;
7191 elsif Name_Loc.Source.Kind = Impl then
7192 Name_Loc.Source.Unit.File_Names (Impl) :=
7193 Name_Loc.Source;
7194 end if;
7196 Units_Htable.Set
7197 (Data.Tree.Units_HT,
7198 Name_Loc.Source.Unit.Name,
7199 Name_Loc.Source.Unit);
7200 end if;
7201 end if;
7202 end if;
7203 end if;
7204 end if;
7206 if Check_Name then
7207 Check_File_Naming_Schemes
7208 (Project => Project,
7209 File_Name => File_Name,
7210 Alternate_Languages => Alternate_Languages,
7211 Language => Language,
7212 Display_Language_Name => Display_Language_Name,
7213 Unit => Unit,
7214 Lang_Kind => Lang_Kind,
7215 Kind => Kind);
7217 if Language = No_Language_Index then
7219 -- A file name in a list must be a source of a language
7221 if Data.Flags.Error_On_Unknown_Language and then Name_Loc.Found
7222 then
7223 Error_Msg_File_1 := File_Name;
7224 Error_Msg
7225 (Data.Flags,
7226 "language unknown for {",
7227 Name_Loc.Location, Project.Project);
7228 end if;
7230 else
7231 Add_Source
7232 (Id => Source,
7233 Project => Project.Project,
7234 Source_Dir_Rank => Source_Dir_Rank,
7235 Lang_Id => Language,
7236 Kind => Kind,
7237 Data => Data,
7238 Alternate_Languages => Alternate_Languages,
7239 File_Name => File_Name,
7240 Display_File => Display_File_Name,
7241 Unit => Unit,
7242 Locally_Removed => Locally_Removed,
7243 Path => (Path, Display_Path));
7245 -- If it is a source specified in a list, update the entry in
7246 -- the Source_Names table.
7248 if Name_Loc.Found and then Name_Loc.Source = No_Source then
7249 Name_Loc.Source := Source;
7250 Source_Names_Htable.Set
7251 (Project.Source_Names, File_Name, Name_Loc);
7252 end if;
7253 end if;
7254 end if;
7256 Debug_Decrease_Indent;
7257 end Check_File;
7259 ---------------------------------
7260 -- Expand_Subdirectory_Pattern --
7261 ---------------------------------
7263 procedure Expand_Subdirectory_Pattern
7264 (Project : Project_Id;
7265 Data : in out Tree_Processing_Data;
7266 Patterns : String_List_Id;
7267 Ignore : String_List_Id;
7268 Search_For : Search_Type;
7269 Resolve_Links : Boolean)
7271 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
7273 package Recursive_Dirs is new GNAT.Dynamic_HTables.Simple_HTable
7274 (Header_Num => Header_Num,
7275 Element => Boolean,
7276 No_Element => False,
7277 Key => Path_Name_Type,
7278 Hash => Hash,
7279 Equal => "=");
7280 -- Hash table stores recursive source directories, to avoid looking
7281 -- several times, and to avoid cycles that may be introduced by symbolic
7282 -- links.
7284 File_Pattern : GNAT.Regexp.Regexp;
7285 -- Pattern to use when matching file names
7287 Visited : Recursive_Dirs.Instance;
7289 procedure Find_Pattern
7290 (Pattern_Id : Name_Id;
7291 Rank : Natural;
7292 Location : Source_Ptr);
7293 -- Find a specific pattern
7295 function Recursive_Find_Dirs
7296 (Path : Path_Information;
7297 Rank : Natural) return Boolean;
7298 -- Search all the subdirectories (recursively) of Path.
7299 -- Return True if at least one file or directory was processed
7301 function Subdirectory_Matches
7302 (Path : Path_Information;
7303 Rank : Natural) return Boolean;
7304 -- Called when a matching directory was found. If the user is in fact
7305 -- searching for files, we then search for those files matching the
7306 -- pattern within the directory.
7307 -- Return True if at least one file or directory was processed
7309 --------------------------
7310 -- Subdirectory_Matches --
7311 --------------------------
7313 function Subdirectory_Matches
7314 (Path : Path_Information;
7315 Rank : Natural) return Boolean
7317 Dir : Dir_Type;
7318 Name : String (1 .. 250);
7319 Last : Natural;
7320 Found : Path_Information;
7321 Success : Boolean := False;
7323 begin
7324 case Search_For is
7325 when Search_Directories =>
7326 Callback (Path, Rank);
7327 return True;
7329 when Search_Files =>
7330 Open (Dir, Get_Name_String (Path.Display_Name));
7331 loop
7332 Read (Dir, Name, Last);
7333 exit when Last = 0;
7335 if Name (Name'First .. Last) /= "."
7336 and then Name (Name'First .. Last) /= ".."
7337 and then Match (Name (Name'First .. Last), File_Pattern)
7338 then
7339 Get_Name_String (Path.Display_Name);
7340 Add_Str_To_Name_Buffer (Name (Name'First .. Last));
7342 Found.Display_Name := Name_Find;
7343 Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
7344 Found.Name := Name_Find;
7346 Callback (Found, Rank);
7347 Success := True;
7348 end if;
7349 end loop;
7351 Close (Dir);
7353 return Success;
7354 end case;
7355 end Subdirectory_Matches;
7357 -------------------------
7358 -- Recursive_Find_Dirs --
7359 -------------------------
7361 function Recursive_Find_Dirs
7362 (Path : Path_Information;
7363 Rank : Natural) return Boolean
7365 Path_Str : constant String := Get_Name_String (Path.Display_Name);
7366 Dir : Dir_Type;
7367 Name : String (1 .. 250);
7368 Last : Natural;
7369 Success : Boolean := False;
7371 begin
7372 Debug_Output ("looking for subdirs of ", Name_Id (Path.Display_Name));
7374 if Recursive_Dirs.Get (Visited, Path.Name) then
7375 return Success;
7376 end if;
7378 Recursive_Dirs.Set (Visited, Path.Name, True);
7380 Success := Subdirectory_Matches (Path, Rank) or Success;
7382 Open (Dir, Path_Str);
7384 loop
7385 Read (Dir, Name, Last);
7386 exit when Last = 0;
7388 if Name (1 .. Last) /= "." and then Name (1 .. Last) /= ".." then
7389 declare
7390 Path_Name : constant String :=
7391 Normalize_Pathname
7392 (Name => Name (1 .. Last),
7393 Directory => Path_Str,
7394 Resolve_Links => Resolve_Links)
7395 & Directory_Separator;
7397 Path2 : Path_Information;
7398 OK : Boolean := True;
7400 begin
7401 if Is_Directory (Path_Name) then
7402 if Ignore /= Nil_String then
7403 declare
7404 Dir_Name : String := Name (1 .. Last);
7405 List : String_List_Id := Ignore;
7407 begin
7408 Canonical_Case_File_Name (Dir_Name);
7410 while List /= Nil_String loop
7411 Get_Name_String
7412 (Shared.String_Elements.Table (List).Value);
7413 Canonical_Case_File_Name
7414 (Name_Buffer (1 .. Name_Len));
7415 OK := Name_Buffer (1 .. Name_Len) /= Dir_Name;
7416 exit when not OK;
7417 List := Shared.String_Elements.Table (List).Next;
7418 end loop;
7419 end;
7420 end if;
7422 if OK then
7423 Name_Len := 0;
7424 Add_Str_To_Name_Buffer (Path_Name);
7425 Path2.Display_Name := Name_Find;
7427 Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
7428 Path2.Name := Name_Find;
7430 Success :=
7431 Recursive_Find_Dirs (Path2, Rank) or Success;
7432 end if;
7433 end if;
7434 end;
7435 end if;
7436 end loop;
7438 Close (Dir);
7440 return Success;
7442 exception
7443 when Directory_Error =>
7444 return Success;
7445 end Recursive_Find_Dirs;
7447 ------------------
7448 -- Find_Pattern --
7449 ------------------
7451 procedure Find_Pattern
7452 (Pattern_Id : Name_Id;
7453 Rank : Natural;
7454 Location : Source_Ptr)
7456 Pattern : constant String := Get_Name_String (Pattern_Id);
7457 Pattern_End : Natural := Pattern'Last;
7458 Recursive : Boolean;
7459 Dir : File_Name_Type;
7460 Path_Name : Path_Information;
7461 Dir_Exists : Boolean;
7462 Has_Error : Boolean := False;
7463 Success : Boolean;
7465 begin
7466 Debug_Increase_Indent ("Find_Pattern", Pattern_Id);
7468 -- If we are looking for files, find the pattern for the files
7470 if Search_For = Search_Files then
7471 while Pattern_End >= Pattern'First
7472 and then Pattern (Pattern_End) /= '/'
7473 and then Pattern (Pattern_End) /= Directory_Separator
7474 loop
7475 Pattern_End := Pattern_End - 1;
7476 end loop;
7478 if Pattern_End = Pattern'Last then
7479 Err_Vars.Error_Msg_File_1 := File_Name_Type (Pattern_Id);
7480 Error_Or_Warning
7481 (Data.Flags, Data.Flags.Missing_Source_Files,
7482 "Missing file name or pattern in {", Location, Project);
7483 return;
7484 end if;
7486 if Current_Verbosity = High then
7487 Debug_Indent;
7488 Write_Str ("file_pattern=");
7489 Write_Str (Pattern (Pattern_End + 1 .. Pattern'Last));
7490 Write_Str (" dir_pattern=");
7491 Write_Line (Pattern (Pattern'First .. Pattern_End));
7492 end if;
7494 File_Pattern := Compile
7495 (Pattern (Pattern_End + 1 .. Pattern'Last),
7496 Glob => True,
7497 Case_Sensitive => File_Names_Case_Sensitive);
7499 -- If we had just "*.gpr", this is equivalent to "./*.gpr"
7501 if Pattern_End > Pattern'First then
7502 Pattern_End := Pattern_End - 1; -- Skip directory separator
7503 end if;
7504 end if;
7506 Recursive :=
7507 Pattern_End - 1 >= Pattern'First
7508 and then Pattern (Pattern_End - 1 .. Pattern_End) = "**"
7509 and then (Pattern_End - 1 = Pattern'First
7510 or else Pattern (Pattern_End - 2) = '/'
7511 or else Pattern (Pattern_End - 2) = Directory_Separator);
7513 if Recursive then
7514 Pattern_End := Pattern_End - 2;
7515 if Pattern_End > Pattern'First then
7516 Pattern_End := Pattern_End - 1; -- Skip '/'
7517 end if;
7518 end if;
7520 Name_Len := Pattern_End - Pattern'First + 1;
7521 Name_Buffer (1 .. Name_Len) := Pattern (Pattern'First .. Pattern_End);
7522 Dir := Name_Find;
7524 Locate_Directory
7525 (Project => Project,
7526 Name => Dir,
7527 Path => Path_Name,
7528 Dir_Exists => Dir_Exists,
7529 Data => Data,
7530 Must_Exist => False);
7532 if not Dir_Exists then
7533 Err_Vars.Error_Msg_File_1 := Dir;
7534 Error_Or_Warning
7535 (Data.Flags, Data.Flags.Missing_Source_Files,
7536 "{ is not a valid directory", Location, Project);
7537 Has_Error := Data.Flags.Missing_Source_Files = Error;
7538 end if;
7540 if not Has_Error then
7542 -- Links have been resolved if necessary, and Path_Name
7543 -- always ends with a directory separator.
7545 if Recursive then
7546 Success := Recursive_Find_Dirs (Path_Name, Rank);
7547 else
7548 Success := Subdirectory_Matches (Path_Name, Rank);
7549 end if;
7551 if not Success then
7552 case Search_For is
7553 when Search_Directories =>
7554 null; -- Error can't occur
7556 when Search_Files =>
7557 Err_Vars.Error_Msg_File_1 := File_Name_Type (Pattern_Id);
7558 Error_Or_Warning
7559 (Data.Flags, Data.Flags.Missing_Source_Files,
7560 "file { not found", Location, Project);
7561 end case;
7562 end if;
7563 end if;
7565 Debug_Decrease_Indent ("done Find_Pattern");
7566 end Find_Pattern;
7568 -- Local variables
7570 Pattern_Id : String_List_Id := Patterns;
7571 Element : String_Element;
7572 Rank : Natural := 1;
7574 -- Start of processing for Expand_Subdirectory_Pattern
7576 begin
7577 while Pattern_Id /= Nil_String loop
7578 Element := Shared.String_Elements.Table (Pattern_Id);
7579 Find_Pattern (Element.Value, Rank, Element.Location);
7580 Rank := Rank + 1;
7581 Pattern_Id := Element.Next;
7582 end loop;
7584 Recursive_Dirs.Reset (Visited);
7585 end Expand_Subdirectory_Pattern;
7587 ------------------------
7588 -- Search_Directories --
7589 ------------------------
7591 procedure Search_Directories
7592 (Project : in out Project_Processing_Data;
7593 Data : in out Tree_Processing_Data;
7594 For_All_Sources : Boolean)
7596 Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
7598 Source_Dir : String_List_Id;
7599 Element : String_Element;
7600 Src_Dir_Rank : Number_List_Index;
7601 Num_Nod : Number_Node;
7602 Dir : Dir_Type;
7603 Name : String (1 .. 1_000);
7604 Last : Natural;
7605 File_Name : File_Name_Type;
7606 Display_File_Name : File_Name_Type;
7608 begin
7609 Debug_Increase_Indent ("looking for sources of", Project.Project.Name);
7611 -- Loop through subdirectories
7613 Src_Dir_Rank := Project.Project.Source_Dir_Ranks;
7615 Source_Dir := Project.Project.Source_Dirs;
7616 while Source_Dir /= Nil_String loop
7617 begin
7618 Num_Nod := Shared.Number_Lists.Table (Src_Dir_Rank);
7619 Element := Shared.String_Elements.Table (Source_Dir);
7621 -- Use Element.Value in this test, not Display_Value, because we
7622 -- want the symbolic links to be resolved when appropriate.
7624 if Element.Value /= No_Name then
7625 declare
7626 Source_Directory : constant String :=
7627 Get_Name_String (Element.Value)
7628 & Directory_Separator;
7630 Dir_Last : constant Natural :=
7631 Compute_Directory_Last (Source_Directory);
7633 Display_Source_Directory : constant String :=
7634 Get_Name_String
7635 (Element.Display_Value)
7636 & Directory_Separator;
7637 -- Display_Source_Directory is to allow us to open a UTF-8
7638 -- encoded directory on Windows.
7640 begin
7641 if Current_Verbosity = High then
7642 Debug_Increase_Indent
7643 ("Source_Dir (node=" & Num_Nod.Number'Img & ") """
7644 & Source_Directory (Source_Directory'First .. Dir_Last)
7645 & '"');
7646 end if;
7648 -- We look to every entry in the source directory
7650 Open (Dir, Display_Source_Directory);
7652 loop
7653 Read (Dir, Name, Last);
7654 exit when Last = 0;
7656 -- In fast project loading mode (without -eL), the user
7657 -- guarantees that no directory has a name which is a
7658 -- valid source name, so we can avoid doing a system call
7659 -- here. This provides a very significant speed up on
7660 -- slow file systems (remote files for instance).
7662 if not Opt.Follow_Links_For_Files
7663 or else Is_Regular_File
7664 (Display_Source_Directory & Name (1 .. Last))
7665 then
7666 Name_Len := Last;
7667 Name_Buffer (1 .. Name_Len) := Name (1 .. Last);
7668 Display_File_Name := Name_Find;
7670 if Osint.File_Names_Case_Sensitive then
7671 File_Name := Display_File_Name;
7672 else
7673 Canonical_Case_File_Name
7674 (Name_Buffer (1 .. Name_Len));
7675 File_Name := Name_Find;
7676 end if;
7678 declare
7679 Path_Name : constant String :=
7680 Normalize_Pathname
7681 (Name (1 .. Last),
7682 Directory =>
7683 Source_Directory
7684 (Source_Directory'First ..
7685 Dir_Last),
7686 Resolve_Links =>
7687 Opt.Follow_Links_For_Files,
7688 Case_Sensitive => True);
7690 Path : Path_Name_Type;
7691 FF : File_Found :=
7692 Excluded_Sources_Htable.Get
7693 (Project.Excluded, File_Name);
7694 To_Remove : Boolean := False;
7696 begin
7697 Name_Len := Path_Name'Length;
7698 Name_Buffer (1 .. Name_Len) := Path_Name;
7700 if Osint.File_Names_Case_Sensitive then
7701 Path := Name_Find;
7702 else
7703 Canonical_Case_File_Name
7704 (Name_Buffer (1 .. Name_Len));
7705 Path := Name_Find;
7706 end if;
7708 if FF /= No_File_Found then
7709 if not FF.Found then
7710 FF.Found := True;
7711 Excluded_Sources_Htable.Set
7712 (Project.Excluded, File_Name, FF);
7714 Debug_Output
7715 ("excluded source ",
7716 Name_Id (Display_File_Name));
7718 -- Will mark the file as removed, but we
7719 -- still need to add it to the list: if we
7720 -- don't, the file will not appear in the
7721 -- mapping file and will cause the compiler
7722 -- to fail.
7724 To_Remove := True;
7725 end if;
7726 end if;
7728 -- Preserve the user's original casing and use of
7729 -- links. The display_value (a directory) already
7730 -- ends with a directory separator by construction,
7731 -- so no need to add one.
7733 Get_Name_String (Element.Display_Value);
7734 Get_Name_String_And_Append (Display_File_Name);
7736 Check_File
7737 (Project => Project,
7738 Source_Dir_Rank => Num_Nod.Number,
7739 Data => Data,
7740 Path => Path,
7741 Display_Path => Name_Find,
7742 File_Name => File_Name,
7743 Locally_Removed => To_Remove,
7744 Display_File_Name => Display_File_Name,
7745 For_All_Sources => For_All_Sources);
7746 end;
7748 else
7749 if Current_Verbosity = High then
7750 Debug_Output ("ignore " & Name (1 .. Last));
7751 end if;
7752 end if;
7753 end loop;
7755 Debug_Decrease_Indent;
7756 Close (Dir);
7757 end;
7758 end if;
7760 exception
7761 when Directory_Error =>
7762 null;
7763 end;
7765 Source_Dir := Element.Next;
7766 Src_Dir_Rank := Num_Nod.Next;
7767 end loop;
7769 Debug_Decrease_Indent ("end looking for sources.");
7770 end Search_Directories;
7772 ----------------------------
7773 -- Load_Naming_Exceptions --
7774 ----------------------------
7776 procedure Load_Naming_Exceptions
7777 (Project : in out Project_Processing_Data;
7778 Data : in out Tree_Processing_Data)
7780 Source : Source_Id;
7781 Iter : Source_Iterator;
7783 begin
7784 Iter := For_Each_Source (Data.Tree, Project.Project);
7785 loop
7786 Source := Prj.Element (Iter);
7787 exit when Source = No_Source;
7789 -- An excluded file cannot also be an exception file name
7791 if Excluded_Sources_Htable.Get (Project.Excluded, Source.File) /=
7792 No_File_Found
7793 then
7794 Error_Msg_File_1 := Source.File;
7795 Error_Msg
7796 (Data.Flags,
7797 "{ cannot be both excluded and an exception file name",
7798 No_Location, Project.Project);
7799 end if;
7801 Debug_Output
7802 ("naming exception: adding source file to source_Names: ",
7803 Name_Id (Source.File));
7805 Source_Names_Htable.Set
7806 (Project.Source_Names,
7807 K => Source.File,
7808 E => Name_Location'
7809 (Name => Source.File,
7810 Location => Source.Location,
7811 Source => Source,
7812 Listed => False,
7813 Found => False));
7815 -- If this is an Ada exception, record in table Unit_Exceptions
7817 if Source.Unit /= No_Unit_Index then
7818 declare
7819 Unit_Except : Unit_Exception :=
7820 Unit_Exceptions_Htable.Get
7821 (Project.Unit_Exceptions, Source.Unit.Name);
7823 begin
7824 Unit_Except.Name := Source.Unit.Name;
7826 if Source.Kind = Spec then
7827 Unit_Except.Spec := Source.File;
7828 else
7829 Unit_Except.Impl := Source.File;
7830 end if;
7832 Unit_Exceptions_Htable.Set
7833 (Project.Unit_Exceptions, Source.Unit.Name, Unit_Except);
7834 end;
7835 end if;
7837 Next (Iter);
7838 end loop;
7839 end Load_Naming_Exceptions;
7841 ----------------------
7842 -- Look_For_Sources --
7843 ----------------------
7845 procedure Look_For_Sources
7846 (Project : in out Project_Processing_Data;
7847 Data : in out Tree_Processing_Data)
7849 Object_Files : Object_File_Names_Htable.Instance;
7850 Iter : Source_Iterator;
7851 Src : Source_Id;
7853 procedure Check_Object (Src : Source_Id);
7854 -- Check if object file name of Src is already used in the project tree,
7855 -- and report an error if so.
7857 procedure Check_Object_Files;
7858 -- Check that no two sources of this project have the same object file
7860 procedure Mark_Excluded_Sources;
7861 -- Mark as such the sources that are declared as excluded
7863 procedure Check_Missing_Sources;
7864 -- Check whether one of the languages has no sources, and report an
7865 -- error when appropriate
7867 procedure Get_Sources_From_Source_Info;
7868 -- Get the source information from the tables that were created when a
7869 -- source info file was read.
7871 ---------------------------
7872 -- Check_Missing_Sources --
7873 ---------------------------
7875 procedure Check_Missing_Sources is
7876 Extending : constant Boolean :=
7877 Project.Project.Extends /= No_Project;
7878 Language : Language_Ptr;
7879 Source : Source_Id;
7880 Alt_Lang : Language_List;
7881 Continuation : Boolean := False;
7882 Iter : Source_Iterator;
7883 begin
7884 if not Project.Project.Externally_Built and then not Extending then
7885 Language := Project.Project.Languages;
7886 while Language /= No_Language_Index loop
7888 -- If there are no sources for this language, check if there
7889 -- are sources for which this is an alternate language.
7891 if Language.First_Source = No_Source
7892 and then (Data.Flags.Require_Sources_Other_Lang
7893 or else Language.Name = Name_Ada)
7894 then
7895 Iter := For_Each_Source (In_Tree => Data.Tree,
7896 Project => Project.Project);
7897 Source_Loop : loop
7898 Source := Element (Iter);
7899 exit Source_Loop when Source = No_Source
7900 or else Source.Language = Language;
7902 Alt_Lang := Source.Alternate_Languages;
7903 while Alt_Lang /= null loop
7904 exit Source_Loop when Alt_Lang.Language = Language;
7905 Alt_Lang := Alt_Lang.Next;
7906 end loop;
7908 Next (Iter);
7909 end loop Source_Loop;
7911 if Source = No_Source then
7912 Report_No_Sources
7913 (Project.Project,
7914 Get_Name_String (Language.Display_Name),
7915 Data,
7916 Project.Source_List_File_Location,
7917 Continuation);
7918 Continuation := True;
7919 end if;
7920 end if;
7922 Language := Language.Next;
7923 end loop;
7924 end if;
7925 end Check_Missing_Sources;
7927 ------------------
7928 -- Check_Object --
7929 ------------------
7931 procedure Check_Object (Src : Source_Id) is
7932 Source : Source_Id;
7934 begin
7935 Source := Object_File_Names_Htable.Get (Object_Files, Src.Object);
7937 -- We cannot just check on "Source /= Src", since we might have
7938 -- two different entries for the same file (and since that's
7939 -- the same file it is expected that it has the same object)
7941 if Source /= No_Source
7942 and then Source.Replaced_By = No_Source
7943 and then Source.Path /= Src.Path
7944 and then Is_Extending (Src.Project, Source.Project)
7945 then
7946 Error_Msg_File_1 := Src.File;
7947 Error_Msg_File_2 := Source.File;
7948 Error_Msg
7949 (Data.Flags,
7950 "{ and { have the same object file name",
7951 No_Location, Project.Project);
7953 else
7954 Object_File_Names_Htable.Set (Object_Files, Src.Object, Src);
7955 end if;
7956 end Check_Object;
7958 ---------------------------
7959 -- Mark_Excluded_Sources --
7960 ---------------------------
7962 procedure Mark_Excluded_Sources is
7963 Source : Source_Id := No_Source;
7964 Excluded : File_Found;
7965 Proj : Project_Id;
7967 begin
7968 -- Minor optimization: if there are no excluded files, no need to
7969 -- traverse the list of sources. We cannot however also check whether
7970 -- the existing exceptions have ".Found" set to True (indicating we
7971 -- found them before) because we need to do some final processing on
7972 -- them in any case.
7974 if Excluded_Sources_Htable.Get_First (Project.Excluded) /=
7975 No_File_Found
7976 then
7977 Proj := Project.Project;
7978 while Proj /= No_Project loop
7979 Iter := For_Each_Source (Data.Tree, Proj);
7980 while Prj.Element (Iter) /= No_Source loop
7981 Source := Prj.Element (Iter);
7982 Excluded := Excluded_Sources_Htable.Get
7983 (Project.Excluded, Source.File);
7985 if Excluded /= No_File_Found then
7986 Source.In_Interfaces := False;
7987 Source.Locally_Removed := True;
7989 if Proj = Project.Project then
7990 Source.Suppressed := True;
7991 end if;
7993 if Current_Verbosity = High then
7994 Debug_Indent;
7995 Write_Str ("removing file ");
7996 Write_Line
7997 (Get_Name_String (Excluded.File)
7998 & " " & Get_Name_String (Source.Project.Name));
7999 end if;
8001 Excluded_Sources_Htable.Remove
8002 (Project.Excluded, Source.File);
8003 end if;
8005 Next (Iter);
8006 end loop;
8008 Proj := Proj.Extends;
8009 end loop;
8010 end if;
8012 -- If we have any excluded element left, that means we did not find
8013 -- the source file
8015 Excluded := Excluded_Sources_Htable.Get_First (Project.Excluded);
8016 while Excluded /= No_File_Found loop
8017 if not Excluded.Found then
8019 -- Check if the file belongs to another imported project to
8020 -- provide a better error message.
8022 Src := Find_Source
8023 (In_Tree => Data.Tree,
8024 Project => Project.Project,
8025 In_Imported_Only => True,
8026 Base_Name => Excluded.File);
8028 Err_Vars.Error_Msg_File_1 := Excluded.File;
8030 if Src = No_Source then
8031 if Excluded.Excl_File = No_File then
8032 Error_Msg
8033 (Data.Flags,
8034 "unknown file {", Excluded.Location, Project.Project);
8036 else
8037 Error_Msg
8038 (Data.Flags,
8039 "in " &
8040 Get_Name_String (Excluded.Excl_File) & ":" &
8041 No_Space_Img (Excluded.Excl_Line) &
8042 ": unknown file {", Excluded.Location, Project.Project);
8043 end if;
8045 else
8046 if Excluded.Excl_File = No_File then
8047 Error_Msg
8048 (Data.Flags,
8049 "cannot remove a source from an imported project: {",
8050 Excluded.Location, Project.Project);
8052 else
8053 Error_Msg
8054 (Data.Flags,
8055 "in " &
8056 Get_Name_String (Excluded.Excl_File) & ":" &
8057 No_Space_Img (Excluded.Excl_Line) &
8058 ": cannot remove a source from an imported project: {",
8059 Excluded.Location, Project.Project);
8060 end if;
8061 end if;
8062 end if;
8064 Excluded := Excluded_Sources_Htable.Get_Next (Project.Excluded);
8065 end loop;
8066 end Mark_Excluded_Sources;
8068 ------------------------
8069 -- Check_Object_Files --
8070 ------------------------
8072 procedure Check_Object_Files is
8073 Iter : Source_Iterator;
8074 Src_Id : Source_Id;
8075 Src_Ind : Source_File_Index;
8077 begin
8078 Iter := For_Each_Source (Data.Tree);
8079 loop
8080 Src_Id := Prj.Element (Iter);
8081 exit when Src_Id = No_Source;
8083 if Is_Compilable (Src_Id)
8084 and then Src_Id.Language.Config.Object_Generated
8085 and then Is_Extending (Project.Project, Src_Id.Project)
8086 then
8087 if Src_Id.Unit = No_Unit_Index then
8088 if Src_Id.Kind = Impl then
8089 Check_Object (Src_Id);
8090 end if;
8092 else
8093 case Src_Id.Kind is
8094 when Spec =>
8095 if Other_Part (Src_Id) = No_Source then
8096 Check_Object (Src_Id);
8097 end if;
8099 when Sep =>
8100 null;
8102 when Impl =>
8103 if Other_Part (Src_Id) /= No_Source then
8104 Check_Object (Src_Id);
8106 else
8107 -- Check if it is a subunit
8109 Src_Ind :=
8110 Sinput.P.Load_Project_File
8111 (Get_Name_String (Src_Id.Path.Display_Name));
8113 if Sinput.P.Source_File_Is_Subunit (Src_Ind) then
8114 Override_Kind (Src_Id, Sep);
8115 else
8116 Check_Object (Src_Id);
8117 end if;
8118 end if;
8119 end case;
8120 end if;
8121 end if;
8123 Next (Iter);
8124 end loop;
8125 end Check_Object_Files;
8127 ----------------------------------
8128 -- Get_Sources_From_Source_Info --
8129 ----------------------------------
8131 procedure Get_Sources_From_Source_Info is
8132 Iter : Source_Info_Iterator;
8133 Src : Source_Info;
8134 Id : Source_Id;
8135 Lang_Id : Language_Ptr;
8137 begin
8138 Initialize (Iter, Project.Project.Name);
8140 loop
8141 Src := Source_Info_Of (Iter);
8143 exit when Src = No_Source_Info;
8145 Id := new Source_Data;
8147 Id.Project := Project.Project;
8149 Lang_Id := Project.Project.Languages;
8150 while Lang_Id /= No_Language_Index
8151 and then Lang_Id.Name /= Src.Language
8152 loop
8153 Lang_Id := Lang_Id.Next;
8154 end loop;
8156 if Lang_Id = No_Language_Index then
8157 Prj.Com.Fail
8158 ("unknown language " &
8159 Get_Name_String (Src.Language) &
8160 " for project " &
8161 Get_Name_String (Src.Project) &
8162 " in source info file");
8163 end if;
8165 Id.Language := Lang_Id;
8166 Id.Kind := Src.Kind;
8167 Id.Index := Src.Index;
8169 Id.Path :=
8170 (Path_Name_Type (Src.Display_Path_Name),
8171 Path_Name_Type (Src.Path_Name));
8173 Name_Len := 0;
8174 Add_Str_To_Name_Buffer
8175 (Directories.Simple_Name (Get_Name_String (Src.Path_Name)));
8176 Id.File := Name_Find;
8178 Id.Next_With_File_Name :=
8179 Source_Files_Htable.Get (Data.Tree.Source_Files_HT, Id.File);
8180 Source_Files_Htable.Set (Data.Tree.Source_Files_HT, Id.File, Id);
8182 Name_Len := 0;
8183 Add_Str_To_Name_Buffer
8184 (Directories.Simple_Name
8185 (Get_Name_String (Src.Display_Path_Name)));
8186 Id.Display_File := Name_Find;
8188 Id.Dep_Name :=
8189 Dependency_Name (Id.File, Id.Language.Config.Dependency_Kind);
8190 Id.Naming_Exception := Src.Naming_Exception;
8191 Id.Object :=
8192 Object_Name (Id.File, Id.Language.Config.Object_File_Suffix);
8193 Id.Switches := Switches_Name (Id.File);
8195 -- Add the source id to the Unit_Sources_HT hash table, if the
8196 -- unit name is not null.
8198 if Src.Kind /= Sep and then Src.Unit_Name /= No_Name then
8199 declare
8200 UData : Unit_Index :=
8201 Units_Htable.Get (Data.Tree.Units_HT, Src.Unit_Name);
8202 begin
8203 if UData = No_Unit_Index then
8204 UData := new Unit_Data;
8205 UData.Name := Src.Unit_Name;
8206 Units_Htable.Set
8207 (Data.Tree.Units_HT, Src.Unit_Name, UData);
8208 end if;
8210 Id.Unit := UData;
8211 end;
8213 -- Note that this updates Unit information as well
8215 Override_Kind (Id, Id.Kind);
8216 end if;
8218 if Src.Index /= 0 then
8219 Project.Project.Has_Multi_Unit_Sources := True;
8220 end if;
8222 -- Add the source to the language list
8224 Id.Next_In_Lang := Id.Language.First_Source;
8225 Id.Language.First_Source := Id;
8227 Next (Iter);
8228 end loop;
8229 end Get_Sources_From_Source_Info;
8231 -- Start of processing for Look_For_Sources
8233 begin
8234 if Data.Tree.Source_Info_File_Exists then
8235 Get_Sources_From_Source_Info;
8237 else
8238 if Project.Project.Source_Dirs /= Nil_String then
8239 Find_Excluded_Sources (Project, Data);
8241 if Project.Project.Languages /= No_Language_Index then
8242 Load_Naming_Exceptions (Project, Data);
8243 Find_Sources (Project, Data);
8244 Mark_Excluded_Sources;
8245 Check_Object_Files;
8246 Check_Missing_Sources;
8247 end if;
8248 end if;
8250 Object_File_Names_Htable.Reset (Object_Files);
8251 end if;
8252 end Look_For_Sources;
8254 ------------------
8255 -- Path_Name_Of --
8256 ------------------
8258 function Path_Name_Of
8259 (File_Name : File_Name_Type;
8260 Directory : Path_Name_Type) return String
8262 Result : String_Access;
8263 The_Directory : constant String := Get_Name_String (Directory);
8265 begin
8266 Debug_Output ("Path_Name_Of file name=", Name_Id (File_Name));
8267 Debug_Output ("Path_Name_Of directory=", Name_Id (Directory));
8268 Get_Name_String (File_Name);
8269 Result :=
8270 Locate_Regular_File
8271 (File_Name => Name_Buffer (1 .. Name_Len),
8272 Path => The_Directory);
8274 if Result = null then
8275 return "";
8276 else
8277 declare
8278 R : constant String := Result.all;
8279 begin
8280 Free (Result);
8281 return R;
8282 end;
8283 end if;
8284 end Path_Name_Of;
8286 -------------------
8287 -- Remove_Source --
8288 -------------------
8290 procedure Remove_Source
8291 (Tree : Project_Tree_Ref;
8292 Id : Source_Id;
8293 Replaced_By : Source_Id)
8295 Source : Source_Id;
8297 begin
8298 if Current_Verbosity = High then
8299 Debug_Indent;
8300 Write_Str ("removing source ");
8301 Write_Str (Get_Name_String (Id.File));
8303 if Id.Index /= 0 then
8304 Write_Str (" at" & Id.Index'Img);
8305 end if;
8307 Write_Eol;
8308 end if;
8310 if Replaced_By /= No_Source then
8311 Id.Replaced_By := Replaced_By;
8312 Replaced_By.Declared_In_Interfaces := Id.Declared_In_Interfaces;
8314 if Id.File /= Replaced_By.File then
8315 declare
8316 Replacement : constant File_Name_Type :=
8317 Replaced_Source_HTable.Get
8318 (Tree.Replaced_Sources, Id.File);
8320 begin
8321 Replaced_Source_HTable.Set
8322 (Tree.Replaced_Sources, Id.File, Replaced_By.File);
8324 if Replacement = No_File then
8325 Tree.Replaced_Source_Number :=
8326 Tree.Replaced_Source_Number + 1;
8327 end if;
8328 end;
8329 end if;
8330 end if;
8332 Id.In_Interfaces := False;
8333 Id.Locally_Removed := True;
8335 -- ??? Should we remove the source from the unit ? The file is not used,
8336 -- so probably should not be referenced from the unit. On the other hand
8337 -- it might give useful additional info
8338 -- if Id.Unit /= null then
8339 -- Id.Unit.File_Names (Id.Kind) := null;
8340 -- end if;
8342 Source := Id.Language.First_Source;
8344 if Source = Id then
8345 Id.Language.First_Source := Id.Next_In_Lang;
8347 else
8348 while Source.Next_In_Lang /= Id loop
8349 Source := Source.Next_In_Lang;
8350 end loop;
8352 Source.Next_In_Lang := Id.Next_In_Lang;
8353 end if;
8354 end Remove_Source;
8356 -----------------------
8357 -- Report_No_Sources --
8358 -----------------------
8360 procedure Report_No_Sources
8361 (Project : Project_Id;
8362 Lang_Name : String;
8363 Data : Tree_Processing_Data;
8364 Location : Source_Ptr;
8365 Continuation : Boolean := False)
8367 begin
8368 case Data.Flags.When_No_Sources is
8369 when Silent =>
8370 null;
8372 when Warning | Error =>
8373 declare
8374 Msg : constant String :=
8375 "<there are no "
8376 & Lang_Name & " sources in this project";
8378 begin
8379 Error_Msg_Warn := Data.Flags.When_No_Sources = Warning;
8381 if Continuation then
8382 Error_Msg (Data.Flags, "\" & Msg, Location, Project);
8383 else
8384 Error_Msg (Data.Flags, Msg, Location, Project);
8385 end if;
8386 end;
8387 end case;
8388 end Report_No_Sources;
8390 ----------------------
8391 -- Show_Source_Dirs --
8392 ----------------------
8394 procedure Show_Source_Dirs
8395 (Project : Project_Id;
8396 Shared : Shared_Project_Tree_Data_Access)
8398 Current : String_List_Id;
8399 Element : String_Element;
8401 begin
8402 if Project.Source_Dirs = Nil_String then
8403 Debug_Output ("no Source_Dirs");
8404 else
8405 Debug_Increase_Indent ("Source_Dirs:");
8407 Current := Project.Source_Dirs;
8408 while Current /= Nil_String loop
8409 Element := Shared.String_Elements.Table (Current);
8410 Debug_Output (Get_Name_String (Element.Display_Value));
8411 Current := Element.Next;
8412 end loop;
8414 Debug_Decrease_Indent ("end Source_Dirs.");
8415 end if;
8416 end Show_Source_Dirs;
8418 ---------------------------
8419 -- Process_Naming_Scheme --
8420 ---------------------------
8422 procedure Process_Naming_Scheme
8423 (Tree : Project_Tree_Ref;
8424 Root_Project : Project_Id;
8425 Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
8426 Flags : Processing_Flags)
8429 procedure Check
8430 (Project : Project_Id;
8431 In_Aggregate_Lib : Boolean;
8432 Data : in out Tree_Processing_Data);
8433 -- Process the naming scheme for a single project
8435 procedure Recursive_Check
8436 (Project : Project_Id;
8437 Prj_Tree : Project_Tree_Ref;
8438 Context : Project_Context;
8439 Data : in out Tree_Processing_Data);
8440 -- Check_Naming_Scheme for the project
8442 -----------
8443 -- Check --
8444 -----------
8446 procedure Check
8447 (Project : Project_Id;
8448 In_Aggregate_Lib : Boolean;
8449 Data : in out Tree_Processing_Data)
8451 procedure Check_Aggregated;
8452 -- Check aggregated projects which should not be externally built
8454 ----------------------
8455 -- Check_Aggregated --
8456 ----------------------
8458 procedure Check_Aggregated is
8459 L : Aggregated_Project_List;
8461 begin
8462 -- Check that aggregated projects are not externally built
8464 L := Project.Aggregated_Projects;
8465 while L /= null loop
8466 declare
8467 Var : constant Prj.Variable_Value :=
8468 Prj.Util.Value_Of
8469 (Snames.Name_Externally_Built,
8470 L.Project.Decl.Attributes,
8471 Data.Tree.Shared);
8472 begin
8473 if not Var.Default then
8474 Error_Msg_Name_1 := L.Project.Display_Name;
8475 Error_Msg
8476 (Data.Flags,
8477 "cannot aggregate externally built project %%",
8478 Var.Location, Project);
8479 end if;
8480 end;
8482 L := L.Next;
8483 end loop;
8484 end Check_Aggregated;
8486 -- Local Variables
8488 Shared : constant Shared_Project_Tree_Data_Access :=
8489 Data.Tree.Shared;
8490 Prj_Data : Project_Processing_Data;
8492 -- Start of processing for Check
8494 begin
8495 Debug_Increase_Indent ("check", Project.Name);
8497 Initialize (Prj_Data, Project);
8499 Check_If_Externally_Built (Project, Data);
8501 case Project.Qualifier is
8502 when Aggregate =>
8503 Check_Aggregated;
8505 when Aggregate_Library =>
8506 Check_Aggregated;
8508 if Project.Object_Directory = No_Path_Information then
8509 Project.Object_Directory := Project.Directory;
8510 end if;
8512 when others =>
8513 Get_Directories (Project, Data);
8514 Check_Programming_Languages (Project, Data);
8516 if Current_Verbosity = High then
8517 Show_Source_Dirs (Project, Shared);
8518 end if;
8520 if Project.Qualifier = Abstract_Project then
8521 Check_Abstract_Project (Project, Data);
8522 end if;
8523 end case;
8525 -- Check configuration. Must be done for gnatmake (even though no
8526 -- user configuration file was provided) since the default config we
8527 -- generate indicates whether libraries are supported for instance.
8529 Check_Configuration (Project, Data);
8531 if Project.Qualifier /= Aggregate then
8532 Check_Library_Attributes (Project, Data);
8533 Check_Package_Naming (Project, Data);
8535 -- An aggregate library has no source, no need to look for them
8537 if Project.Qualifier /= Aggregate_Library then
8538 Look_For_Sources (Prj_Data, Data);
8539 end if;
8541 Check_Interfaces (Project, Data);
8543 -- If this library is part of an aggregated library don't check it
8544 -- as it has no sources by itself and so interface won't be found.
8546 if Project.Library and not In_Aggregate_Lib then
8547 Check_Stand_Alone_Library (Project, Data);
8548 end if;
8550 Get_Mains (Project, Data);
8551 end if;
8553 Free (Prj_Data);
8555 Debug_Decrease_Indent ("done check");
8556 end Check;
8558 ---------------------
8559 -- Recursive_Check --
8560 ---------------------
8562 procedure Recursive_Check
8563 (Project : Project_Id;
8564 Prj_Tree : Project_Tree_Ref;
8565 Context : Project_Context;
8566 Data : in out Tree_Processing_Data)
8568 begin
8569 if Current_Verbosity = High then
8570 Debug_Increase_Indent
8571 ("Processing_Naming_Scheme for project", Project.Name);
8572 end if;
8574 Data.Tree := Prj_Tree;
8575 Data.In_Aggregate_Lib := Context.In_Aggregate_Lib;
8577 Check (Project, Context.In_Aggregate_Lib, Data);
8579 if Current_Verbosity = High then
8580 Debug_Decrease_Indent ("done Processing_Naming_Scheme");
8581 end if;
8582 end Recursive_Check;
8584 procedure Check_All_Projects is new For_Every_Project_Imported_Context
8585 (Tree_Processing_Data, Recursive_Check);
8586 -- Comment required???
8588 -- Local Variables
8590 Data : Tree_Processing_Data;
8592 -- Start of processing for Process_Naming_Scheme
8594 begin
8595 Lib_Data_Table.Init;
8596 Initialize (Data, Tree => Tree, Node_Tree => Node_Tree, Flags => Flags);
8597 Check_All_Projects (Root_Project, Tree, Data, Imported_First => True);
8598 Free (Data);
8600 -- Adjust language configs for projects that are extended
8602 declare
8603 List : Project_List;
8604 Proj : Project_Id;
8605 Exte : Project_Id;
8606 Lang : Language_Ptr;
8607 Elng : Language_Ptr;
8609 begin
8610 List := Tree.Projects;
8611 while List /= null loop
8612 Proj := List.Project;
8614 Exte := Proj;
8615 while Exte.Extended_By /= No_Project loop
8616 Exte := Exte.Extended_By;
8617 end loop;
8619 if Exte /= Proj then
8620 Lang := Proj.Languages;
8622 if Lang /= No_Language_Index then
8623 loop
8624 Elng := Get_Language_From_Name
8625 (Exte, Get_Name_String (Lang.Name));
8626 exit when Elng /= No_Language_Index;
8627 Exte := Exte.Extends;
8628 end loop;
8630 if Elng /= Lang then
8631 Lang.Config := Elng.Config;
8632 end if;
8633 end if;
8634 end if;
8636 List := List.Next;
8637 end loop;
8638 end;
8639 end Process_Naming_Scheme;
8641 end Prj.Nmsc;