1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164 | --
-- Copyright (C) 2022-2024, AdaCore
--
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-Exception
--
with Ada.Containers.Ordered_Sets;
with Ada.Strings.Fixed;
with Ada.Strings.Maps.Constants;
with Ada.Text_IO;
with GNAT.OS_Lib;
with GPR2.Build.Tree_Db;
with GPR2.Build.Unit_Info;
with GPR2.Project.Attribute;
with GPR2.Message;
with GPR2.Source_Reference.Value;
with GPR2.Path_Name;
with GPR2.Project.Registry.Attribute;
with GPR2.Tree_Internal;
package body GPR2.Build.View_Tables is
procedure Add_Unit_Part
(NS_Db : View_Data_Ref;
CU : Name_Type;
Kind : Unit_Kind;
Sep_Name : Optional_Name_Type;
View_Db : View_Data_Ref;
Path : Path_Name.Object;
Index : Unit_Index;
Messages : in out GPR2.Log.Object)
with Pre => NS_Db.Is_Root
and then (Kind = S_Separate) = (Sep_Name'Length > 0);
procedure Remove_Unit_Part
(NS_Db : View_Data_Ref;
CU : Name_Type;
Kind : Unit_Kind;
Sep_Name : Optional_Name_Type;
View_Db : View_Data_Ref;
Path : Path_Name.Object;
Index : Unit_Index)
with Pre => NS_Db.Is_Root
and then (Kind = S_Separate) = (Sep_Name'Length > 0);
procedure Resolve_Visibility
(Data : View_Data_Ref;
Cursor : in out Basename_Source_List_Maps.Cursor;
Messages : in out GPR2.Log.Object);
procedure Add_Unit_Ownership
(To : View_Data_Ref;
CU : Name_Type;
Root : View_Data_Ref);
procedure Remove_Unit_Ownership
(From : View_Data_Ref;
CU : Name_Type;
Root : View_Data_Ref);
procedure Read_Source_List
(View : Project.View.Object;
Attr : Project.Attribute.Object;
Set : in out Source_Set.Set;
Messages : in out GPR2.Log.Object);
-- Read from file defined in project attribute Attr_Name and insert each
-- line into Set
procedure Include_Simple_Filename
(Set : in out Source_Set.Set;
Value : Value_Type;
Sloc : Source_Reference.Object'Class;
Messages : in out GPR2.Log.Object);
package Update_Sources_List is
procedure Process
(Data : View_Data_Ref;
Stop_On_Error : Boolean;
Messages : in out GPR2.Log.Object);
-- Update the list of sources
end Update_Sources_List;
function "-" (Inst : Build.View_Db.Object) return View_Data_Ref
is (Get_Ref (Inst));
procedure Check_Separate
(Root_Db : View_Tables.View_Data_Ref;
File : in out Source_Base.Object)
with Pre => Root_Db.Is_Root
and then File.Has_Single_Unit
and then File.Unit.Kind = S_Separate;
----------------
-- Add_Source --
----------------
procedure Add_Source
(Data : View_Data_Ref;
View_Owner : GPR2.Project.View.Object;
Path : Filename_Type;
Extended_View : GPR2.Project.View.Object;
Resolve_Visibility : Boolean := False;
Messages : in out GPR2.Log.Object)
is
-- function Get_Owner_Db return View_Data_Ref is
-- (if View_Owner = Data.View
-- then Data
-- else Get_Data (Data.Tree_Db, View_Owner));
C_Overload : Basename_Source_List_Maps.Cursor;
Done : Boolean;
Proxy : constant Source_Proxy :=
(Path_Len => Path'Length,
View => View_Owner,
Path_Name => Path,
Inh_From => Extended_View);
Owner_Db : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, View_Owner);
Src_Info : constant Src_Info_Maps.Constant_Reference_Type :=
Owner_Db.Src_Infos.Constant_Reference (Path);
begin
Data.Overloaded_Srcs.Insert (Path_Name.Simple_Name (Path),
Source_Proxy_Sets.Empty_Set,
C_Overload,
Done);
Data.Overloaded_Srcs.Reference (C_Overload).Include (Proxy);
if not Data.Langs_Usage.Contains (Src_Info.Language) then
Data.Langs_Usage.Insert (Src_Info.Language, 1);
else
declare
Val : constant Sources_By_Langs_Maps.Reference_Type :=
Data.Langs_Usage.Reference (Src_Info.Language);
begin
Val.Element.all := Val + 1;
end;
end if;
if Resolve_Visibility then
View_Tables.Resolve_Visibility (Data, C_Overload, Messages);
end if;
end Add_Source;
------------------------
-- Add_Unit_Ownership --
------------------------
procedure Add_Unit_Ownership
(To : View_Data_Ref;
CU : Name_Type;
Root : View_Data_Ref)
is
C : Unit_Maps.Cursor;
New_Set : Project.View.Set.Object;
begin
C := To.Own_CUs.Find (CU);
if Unit_Maps.Has_Element (C) then
To.Own_CUs.Reference (C).Insert (Root.View);
else
New_Set.Insert (Root.View);
To.Own_CUs.Include (CU, New_Set);
end if;
if not To.View.Is_Extended then
for NS of To.View.Aggregate_Libraries loop
if NS.Namespace_Roots.Contains (Root.View) then
Add_Unit_Ownership (Get_Data (To.Tree_Db, NS), CU, Root);
end if;
end loop;
end if;
end Add_Unit_Ownership;
-------------------
-- Add_Unit_Part --
-------------------
procedure Add_Unit_Part
(NS_Db : View_Data_Ref;
CU : Name_Type;
Kind : Unit_Kind;
Sep_Name : Optional_Name_Type;
View_Db : View_Data_Ref;
Path : Path_Name.Object;
Index : Unit_Index;
Messages : in out GPR2.Log.Object)
is
Cursor : Compilation_Unit_Maps.Cursor;
Success : Boolean := True;
begin
Cursor := NS_Db.CUs.Find (CU);
if not Compilation_Unit_Maps.Has_Element (Cursor) then
-- Compilation unit name is not known: new unit, so simply add it
declare
CU_Instance : Compilation_Unit.Object :=
Compilation_Unit.Create (CU, NS_Db.View);
begin
CU_Instance.Add
(Kind, View_Db.View, Path, Index, Sep_Name, Success);
NS_Db.CUs.Insert (CU, CU_Instance);
Add_Unit_Ownership (View_Db, CU, NS_Db);
end;
else
declare
CU_Instance : constant Compilation_Unit_Maps.Reference_Type :=
NS_Db.CUs.Reference (Cursor);
Old_Owner : constant Project.View.Object :=
CU_Instance.Owning_View;
Other : Compilation_Unit.Unit_Location;
use type GPR2.Project.View.Object;
begin
CU_Instance.Add
(Kind, View_Db.View, Path, Index, Sep_Name, Success);
if not Success and then not View_Db.View.Is_Runtime then
-- Check for duplicated units
-- Note: the runtime *has* duplicated unit to support
-- system.memory, now our generated project to add it to the
-- tree is a bit simple minded, so just kill the warning for
-- the runtime view, not user friendly.
Other := CU_Instance.Get (Kind, Sep_Name);
if Other.View.Is_Runtime then
-- ??? Special case for the runtime, where we allow some
-- runtime units to be overriden by project sources.
CU_Instance.Remove
(Kind, Other.View, Other.Source, Other.Index, Sep_Name);
CU_Instance.Add
(Kind, View_Db.View, Path, Index, Sep_Name, Success);
elsif Other.Source.Value = Path.Value then
-- Same source found by multiple projects
Messages.Append
(Message.Create
(Level => Message.Error,
Message => "source file """ &
String (Path.Simple_Name) &
""" already part of project " &
String (CU_Instance.Get (Kind, Sep_Name).View.Name),
Sloc => Source_Reference.Create
(View_Db.View.Path_Name.Value, 0, 0)));
else
-- Clashing unit case: we need to check if project extension
-- is involved to hide the extended unit.
declare
Other_Db : constant View_Data_Ref :=
Get_Data (NS_Db.Tree_Db, Other.View);
Other_Loc : constant Source_Proxy :=
Other_Db.Sources (Other.Source.Simple_Name);
Remove_Src : Boolean;
begin
if Other_Loc.Inh_From.Is_Defined
and then NS_Db.View.Is_Extending (Other_Loc.Inh_From)
then
-- Replace the unit in the compilation unit
CU_Instance.Remove
(Kind, Other.View, Other.Source, Other.Index);
CU_Instance.Add
(Kind, View_Db.View, Path, Index, Sep_Name, Success);
-- If the source is multi-unit, remove this unit from
-- it, else completely remove the source.
if Other.Index /= No_Index then
declare
use Src_Info_Maps;
Owning_Db : constant View_Data_Ref :=
Get_Data (NS_Db.Tree_Db,
Other_Loc.View);
Other_Src : constant Reference_Type :=
Owning_Db.Src_Infos.Reference
(Other.Source.Value);
begin
Other_Src.Remove_Unit (Other.Index);
Remove_Src := Other_Src.Units.Is_Empty;
end;
else
Remove_Src := True;
end if;
if Remove_Src then
Remove_Source (View_Db,
Other_Loc.View,
Other_Loc.Path_Name,
Other_Loc.Inh_From,
True,
Messages);
end if;
else
-- Two sources in the closure declare the same unit
-- part, so issue a warning.
Messages.Append
(Message.Create
(Level => Message.Warning,
Message => "duplicated " &
Image (Kind) & " for unit """ & String (CU) &
""" in " & Other.Source.String_Value &
" and " & String (Path.Value),
Sloc =>
Source_Reference.Create
(NS_Db.View.Path_Name.Value, 0, 0)));
end if;
end;
end if;
end if;
if Success then
if Old_Owner /= CU_Instance.Owning_View then
-- Owning view changed, let's apply this change
if Old_Owner.Is_Defined then
declare
Old_Db : constant View_Data_Ref :=
Get_Data (NS_Db.Tree_Db, Old_Owner);
begin
Remove_Unit_Ownership (Old_Db, CU, NS_Db);
end;
end if;
if CU_Instance.Owning_View.Is_Defined then
Add_Unit_Ownership (View_Db, CU, NS_Db);
end if;
end if;
end if;
end;
end if;
if Success and then Kind = S_Separate then
declare
Full_Name : constant Name_Type :=
GPR2."&" (GPR2."&" (CU, "."), Sep_Name);
begin
NS_Db.Separates.Include (Full_Name, CU);
end;
end if;
end Add_Unit_Part;
--------------------
-- Check_Separate --
--------------------
procedure Check_Separate
(Root_Db : View_Tables.View_Data_Ref;
File : in out Source_Base.Object)
is
C : Name_Maps.Cursor;
begin
loop
C := Root_Db.Separates.Find (File.Unit.Name);
exit when not Name_Maps.Has_Element (C);
-- The separate_from unit is in the separates map, this
-- happens in case of separates of separates.
-- We need to rebase on the actual compilation unit in this case.
declare
U : constant Unit_Info.Object := File.Unit;
New_Name : constant Name_Type := Name_Maps.Element (C);
-- New compilation unit name
P_Simple : constant Name_Type := U.Name
(New_Name'Length + 2 .. U.Name'Length);
-- Simple unit name of the separate parent
New_Sep_Name : constant Name_Type :=
GPR2."&" (GPR2."&" (P_Simple, "."),
U.Separate_Name);
begin
File.Update_Unit
(Unit_Info.Create
(Unit_Name => New_Name,
Index => U.Index,
Kind => U.Kind,
Separate_Name => New_Sep_Name));
end;
end loop;
end Check_Separate;
------------------------
-- Check_Source_Lists --
------------------------
procedure Check_Source_Lists
(Data : View_Data_Ref;
Messages : in out GPR2.Log.Object)
is
package PRA renames Project.Registry.Attribute;
Attr : Project.Attribute.Object;
Exc_List : Source_Set.Set;
begin
Data.Excluded_Sources.Clear;
Data.Listed_Sources.Clear;
-- If we have attribute Excluded_Source_List_File
Attr := Data.View.Attribute (PRA.Excluded_Source_List_File);
if Attr.Is_Defined then
Read_Source_List
(Data.View, Attr, Exc_List, Messages);
if not Messages.Has_Error then
for Src of Exc_List loop
Data.Excluded_Sources.Include
(Src, Source_Reference.Object (Attr.Value));
end loop;
end if;
end if;
-- If we have attribute Excluded_Source_Files
Attr := Data.View.Attribute (PRA.Excluded_Source_Files);
if Attr.Is_Defined then
for File of Attr.Values loop
Exc_List.Clear;
Include_Simple_Filename
(Exc_List, File.Text, File, Messages);
if not Exc_List.Is_Empty then
Data.Excluded_Sources.Include
(Exc_List.First_Element, Source_Reference.Object (File));
end if;
end loop;
end if;
-- Remove naming exception sources from inactive case alternatives
for File of Data.View.Skipped_Sources loop
Exc_List.Clear;
Include_Simple_Filename
(Exc_List, File.Text, File, Messages);
if not Exc_List.Is_Empty then
Data.Excluded_Sources.Include
(Exc_List.First_Element, Source_Reference.Undefined);
end if;
end loop;
-- If we have attribute Source_List_File
Attr := Data.View.Attribute (PRA.Source_List_File);
if Attr.Is_Defined then
Read_Source_List
(Data.View, Attr, Data.Listed_Sources, Messages);
end if;
-- If we have attribute Source_Files
Attr := Data.View.Attribute (PRA.Source_Files);
if Attr.Is_Defined then
for File of Attr.Values loop
Include_Simple_Filename
(Data.Listed_Sources, File.Text, File, Messages);
end loop;
end if;
end Check_Source_Lists;
--------------
-- Get_Data --
--------------
function Get_Data
(Db : access GPR2.Build.Tree_Db.Object;
View : GPR2.Project.View.Object) return View_Data_Ref is
begin
return -Db.View_Database (View);
end Get_Data;
-----------------------------
-- Include_Simple_Filename --
-----------------------------
procedure Include_Simple_Filename
(Set : in out Source_Set.Set;
Value : Value_Type;
Sloc : Source_Reference.Object'Class;
Messages : in out GPR2.Log.Object)
is
Position : Source_Set.Cursor;
Inserted : Boolean;
begin
if Has_Directory_Separator (Value) then
Messages.Append
(Message.Create
(Message.Error,
"file name cannot include directory information (""" & Value
& """)",
Sloc));
elsif Value'Length = 0 then
Messages.Append
(Message.Create
(Message.Error,
"file name cannot be empty",
Sloc));
else
Set.Insert (Filename_Type (Value), Position, Inserted);
end if;
end Include_Simple_Filename;
----------------------
-- Read_Source_List --
----------------------
procedure Read_Source_List
(View : Project.View.Object;
Attr : Project.Attribute.Object;
Set : in out Source_Set.Set;
Messages : in out GPR2.Log.Object)
is
use Ada.Strings;
use type Ada.Strings.Maps.Character_Set;
package PRA renames Project.Registry.Attribute;
Filename : constant GPR2.Path_Name.Object :=
(if GNAT.OS_Lib.Is_Absolute_Path (Attr.Value.Text)
then Path_Name.Create_File
(Filename_Type (Attr.Value.Text))
else View.Dir_Name.Compose
(Filename_Type (Attr.Value.Text)));
Skip_Set : constant Strings.Maps.Character_Set :=
Maps.Constants.Control_Set or Maps.To_Set (" ");
F : Text_IO.File_Type;
begin
if View.Kind not in K_Standard | K_Library then
return;
end if;
if not Filename.Exists or else Filename.Is_Directory then
Messages.Append
(Message.Create
(Message.Error,
(if Attr.Name.Id = PRA.Excluded_Source_List_File
then "excluded "
else "") & "source list file " &
Filename.String_Value & " not found",
Sloc => Attr));
return;
end if;
Text_IO.Open (F, Text_IO.In_File, Filename.String_Value);
while not Text_IO.End_Of_File (F) loop
declare
Line : constant String :=
Fixed.Trim (Text_IO.Get_Line (F), Skip_Set, Skip_Set);
begin
if Line /= ""
and then not GNATCOLL.Utils.Starts_With (Line, "--")
then
Include_Simple_Filename
(Set, Line, Attr.Value, Messages);
end if;
end;
end loop;
Text_IO.Close (F);
end Read_Source_List;
-------------
-- Refresh --
-------------
procedure Refresh
(Data : View_Data_Ref;
Messages : in out GPR2.Log.Object) is
begin
Update_Sources_List.Process (Data, False, Messages);
-- Disambiguate unit kind for Ada bodies
if Data.Tree_Db.Source_Option >= Sources_Units
and then not Data.View.Is_Extended
and then Data.View.Kind in With_Object_Dir_Kind
then
-- Check separates of separates
for C_Proxy in Data.Sources.Iterate loop
declare
Proxy : constant Source_Proxy :=
Basename_Source_Maps.Element (C_Proxy);
Db : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, Proxy.View);
S_Ref : constant Src_Info_Maps.Reference_Type :=
Db.Src_Infos.Reference (Proxy.Path_Name);
begin
if S_Ref.Has_Units
and then not S_Ref.Has_Index
and then S_Ref.Unit.Kind = S_Separate
then
for Root of Data.View.Namespace_Roots loop
declare
Root_Db : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, Root);
Old : constant Unit_Info.Object := S_Ref.Unit;
begin
Check_Separate (Root_Db, S_Ref);
if S_Ref.Unit.Name /= Old.Name then
Remove_Unit_Part
(Root_Db,
Old.Name,
Old.Kind,
Old.Separate_Name,
Data,
S_Ref.Path_Name,
S_Ref.Unit.Index);
-- And add the new one
Add_Unit_Part
(Root_Db,
S_Ref.Unit.Name,
S_Ref.Unit.Kind,
S_Ref.Unit.Separate_Name,
Data,
S_Ref.Path_Name,
S_Ref.Unit.Index,
Messages);
end if;
end;
end loop;
end if;
end;
end loop;
end if;
end Refresh;
-------------------
-- Remove_Source --
-------------------
procedure Remove_Source
(Data : View_Data_Ref;
View_Owner : GPR2.Project.View.Object;
Path : Filename_Type;
Extended_View : GPR2.Project.View.Object;
Resolve_Visibility : Boolean := False;
Messages : in out GPR2.Log.Object)
is
use type GPR2.Project.View.Object;
Basename : constant Simple_Name :=
Path_Name.Simple_Name (Path);
C_Overload : Basename_Source_List_Maps.Cursor;
Proxy : constant Source_Proxy := (Path_Len => Path'Length,
View => View_Owner,
Path_Name => Path,
Inh_From => Extended_View);
Owner_Db : constant View_Data :=
(if View_Owner = Data.View
then Data
else Get_Data (Data.Tree_Db, View_Owner));
Src_Info : constant Src_Info_Maps.Constant_Reference_Type :=
Owner_Db.Src_Infos.Constant_Reference (Path);
begin
C_Overload := Data.Overloaded_Srcs.Find (Basename);
Data.Overloaded_Srcs.Reference (C_Overload).Delete (Proxy);
declare
Val : constant Sources_By_Langs_Maps.Reference_Type :=
Data.Langs_Usage.Reference (Src_Info.Language);
begin
pragma Assert (Val > 0);
Val.Element.all := Val - 1;
end;
if Resolve_Visibility then
View_Tables.Resolve_Visibility (Data, C_Overload, Messages);
end if;
end Remove_Source;
---------------------------
-- Remove_Unit_Ownership --
---------------------------
procedure Remove_Unit_Ownership
(From : View_Data_Ref;
CU : Name_Type;
Root : View_Data_Ref)
is
C : Unit_Maps.Cursor := From.Own_CUs.Find (CU);
begin
From.Own_CUs.Reference (C).Delete (Root.View);
if Unit_Maps.Element (C).Is_Empty then
From.Own_CUs.Delete (C);
end if;
if not From.View.Is_Extended then
for NS of From.View.Aggregate_Libraries loop
if NS.Namespace_Roots.Contains (Root.View) then
Remove_Unit_Ownership (Get_Data (From.Tree_Db, NS), CU, Root);
end if;
end loop;
end if;
end Remove_Unit_Ownership;
----------------------
-- Remove_Unit_Part --
----------------------
procedure Remove_Unit_Part
(NS_Db : View_Data_Ref;
CU : Name_Type;
Kind : Unit_Kind;
Sep_Name : Optional_Name_Type;
View_Db : View_Data_Ref;
Path : Path_Name.Object;
Index : Unit_Index)
is
Cursor : Compilation_Unit_Maps.Cursor := NS_Db.CUs.Find (CU);
Old_Owner : Project.View.Object;
begin
if not Compilation_Unit_Maps.Has_Element (Cursor) then
return;
end if;
declare
use type GPR2.Project.View.Object;
CU_Ref : constant Compilation_Unit_Maps.Reference_Type :=
NS_Db.CUs.Reference (Cursor);
begin
Old_Owner := CU_Ref.Owning_View;
CU_Ref.Remove
(Kind, View_Db.View, Path, Index, Sep_Name);
if CU_Ref.Owning_View /= Old_Owner then
if Old_Owner.Is_Defined then
pragma Assert (Old_Owner = View_Db.View);
Remove_Unit_Ownership (View_Db, CU, NS_Db);
end if;
if CU_Ref.Owning_View.Is_Defined then
Add_Unit_Ownership
(Get_Data (NS_Db.Tree_Db, CU_Ref.Owning_View), CU, NS_Db);
end if;
end if;
end;
if Compilation_Unit_Maps.Element (Cursor).Is_Empty then
NS_Db.CUs.Delete (Cursor);
end if;
if Kind = S_Separate then
declare
Full_Name : constant Name_Type :=
GPR2."&" (GPR2."&" (CU, "."), Sep_Name);
begin
NS_Db.Separates.Delete (Full_Name);
end;
end if;
end Remove_Unit_Part;
------------------------
-- Resolve_Visibility --
------------------------
procedure Resolve_Visibility
(Data : View_Data_Ref;
Cursor : in out Basename_Source_List_Maps.Cursor;
Messages : in out GPR2.Log.Object)
is
use type Ada.Containers.Count_Type;
use type Project.View.Object;
procedure Propagate_Visible_Source_Removal (Src : Source_Proxy);
procedure Propagate_Visible_Source_Added (Src : Source_Proxy);
------------------------------------
-- Propagate_Visible_Source_Added --
------------------------------------
procedure Propagate_Visible_Source_Added (Src : Source_Proxy) is
View_Db : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, Src.View);
Src_Info : constant Src_Info_Maps.Reference_Type :=
View_Db.Src_Infos.Reference (Src.Path_Name);
begin
if Data.View.Is_Extended then
declare
Ext_Data : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, Data.View.Extending);
Name : constant Simple_Name :=
GPR2.Path_Name.Simple_Name (Src.Path_Name);
begin
-- Check if the extending project excludes the source
if Ext_Data.Excluded_Sources.Contains (Name) then
Ext_Data.Actually_Excluded.Include (Name);
else
Add_Source
(Ext_Data,
Src.View,
Src.Path_Name,
Extended_View => Data.View,
Resolve_Visibility => True,
Messages => Messages);
end if;
end;
end if;
if Src_Info.Has_Units
and then not Data.View.Is_Extended
then
-- Update unit information. Note that we do that on "final"
-- views only, so not if the view is extended or aggregated in
-- a library, since that's the extending or aggregating lib
-- that will have the full picture on what is visible or not.
for U of Src_Info.Units loop
for Root of Src.View.Namespace_Roots loop
if Root.Kind in With_View_Db
and then U.Kind /= S_No_Body
then
Add_Unit_Part
(NS_Db => Get_Data (Data.Tree_Db, Root),
CU => U.Name,
Kind => U.Kind,
Sep_Name => U.Separate_Name,
View_Db => Data,
Path => Src_Info.Path_Name,
Index => U.Index,
Messages => Messages);
end if;
end loop;
end loop;
end if;
end Propagate_Visible_Source_Added;
--------------------------------------
-- Propagate_Visible_Source_Removal --
--------------------------------------
procedure Propagate_Visible_Source_Removal (Src : Source_Proxy) is
View_Db : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, Src.View);
Src_Info : constant Source_Base.Object :=
View_Db.Src_Infos (Src.Path_Name);
begin
if Src_Info.Has_Units and then not Data.View.Is_Extended then
for U of Src_Info.Units loop
for Root of Src.View.Namespace_Roots loop
if Root.Kind in With_View_Db then
Remove_Unit_Part
(Get_Data (Data.Tree_Db, Root),
CU => U.Name,
Kind => U.Kind,
Sep_Name => U.Separate_Name,
View_Db => Data,
Path => Src_Info.Path_Name,
Index => U.Index);
end if;
end loop;
end loop;
end if;
if Data.View.Is_Extended then
declare
Ext_Data : constant View_Data_Ref :=
Get_Data (Data.Tree_Db, Data.View.Extending);
Name : constant Simple_Name :=
GPR2.Path_Name.Simple_Name (Src.Path_Name);
begin
-- Check if the extending project excludes the source
if Ext_Data.Excluded_Sources.Contains (Name) then
Ext_Data.Actually_Excluded.Delete (Name);
else
Remove_Source
(Get_Data (Data.Tree_Db, Data.View.Extending),
Src.View,
Src.Path_Name,
Extended_View => Data.View,
Resolve_Visibility => True,
Messages => Messages);
end if;
end;
end if;
end Propagate_Visible_Source_Removal;
package Natural_Sets is new Ada.Containers.Ordered_Sets (Natural);
Basename : constant Simple_Name :=
Basename_Source_List_Maps.Key (Cursor);
Set : constant Basename_Source_List_Maps.Constant_Reference_Type :=
Data.Overloaded_Srcs.Constant_Reference (Cursor);
Candidate : access constant Source_Proxy;
Current : access constant Source_Proxy;
C_Src : Basename_Source_Maps.Cursor :=
Data.Sources.Find (Basename);
C_Info : Src_Info_Maps.Cursor;
C_Info2 : Src_Info_Maps.Cursor;
SR1, SR2 : Natural;
Clashes : Natural_Sets.Set;
begin
if Set.Is_Empty then
-- no source for the specified basenamne
Candidate := null;
elsif Set.Length = 1 then
-- Only one source in the set: just use it
Candidate := Set.Constant_Reference (Set.First).Element;
else
-- project extension case, or the same basename is found in
-- different source dirs
for Curs in Set.Iterate loop
declare
C : constant Source_Proxy_Sets.Constant_Reference_Type :=
Set.Constant_Reference (Curs);
begin
if Candidate = null then
-- First value, consider it as a candidate
Candidate := C.Element;
if Candidate.View = Data.View then
-- Own source, get Src_Info cursor
C_Info := Data.Src_Infos.Find (Candidate.Path_Name);
end if;
elsif C.View = Data.View
and then Candidate.View /= Data.View
then
-- Candidate was inherited: own source overrides it
Candidate := C.Element;
C_Info := Data.Src_Infos.Find (Candidate.Path_Name);
elsif Candidate.View = Data.View
and then C.View /= Data.View
then
-- Candidate is owned by current view, so ignore inherited
-- source
null;
elsif C.View = Data.View then
-- Both candidates are owned by the view, check
-- Source_Reference: the declaration order of the source
-- directory in the Source_Dirs attribute gives the
-- visibility priority
C_Info2 := Data.Src_Infos.Find (C.Path_Name);
SR1 :=
Src_Info_Maps.Element (C_Info).Source_Dir_Value_Index;
SR2 :=
Src_Info_Maps.Element (C_Info2).Source_Dir_Value_Index;
if SR1 = SR2 then
Clashes.Include (SR1);
elsif SR2 < SR1 then
-- Source_Ref of C2 is declared before the one of
-- Candidate, so takes precedence.
Candidate := C.Element;
C_Info := C_Info2;
Clashes.Clear;
end if;
else
-- Remaining case: inheritance shows two candidate sources
Messages.Append
(Message.Create
(Message.Error,
'"' & String (Basename) & '"' &
" is found in several extended projects",
Source_Reference.Create
(Data.View.Path_Name.Value, 0, 0)));
-- Use alphabetical sort to have consistent output.
-- This is in particular important when comparing test
-- output.
declare
C_First : constant Boolean :=
C.Path_Name < Candidate.Path_Name;
P1 : constant Filename_Type :=
(if C_First
then C.Path_Name
else Candidate.Path_Name);
P2 : constant Filename_Type :=
(if not C_First
then C.Path_Name
else Candidate.Path_Name);
V1, V2 : GPR2.Path_Name.Object;
begin
if C_First then
V1 := C.View.Path_Name;
V2 := Candidate.View.Path_Name;
else
V1 := Candidate.View.Path_Name;
V2 := C.View.Path_Name;
end if;
Messages.Append
(Message.Create
(Message.Error,
String (P1),
Source_Reference.Create (V1.Value, 0, 0),
Indent => 1));
Messages.Append
(Message.Create
(Message.Error,
String (P2),
Source_Reference.Create (V2.Value, 0, 0),
Indent => 1));
end;
Candidate := null;
exit;
end if;
end;
end loop;
if not Clashes.Is_Empty then
for SR of Clashes loop
Messages.Append
(Message.Create
(Message.Error,
'"' & String (Basename) & '"' &
" is found multiple times for the same source" &
" directory",
Data.View.Attribute
(Project.Registry.Attribute.Source_Dirs)));
end loop;
Candidate := null;
end if;
end if;
if Basename_Source_Maps.Has_Element (C_Src) then
Current := Data.Sources.Constant_Reference (C_Src).Element;
else
Current := null;
end if;
if Current /= Candidate then
-- Remove current visible source
if Current /= null then
Propagate_Visible_Source_Removal (Current.all);
if Candidate = null then
Data.Sources.Delete (C_Src);
end if;
end if;
if Candidate /= null then
if Current = null then
Data.Sources.Insert (Basename, Candidate.all);
else
Data.Sources.Replace_Element (C_Src, Candidate.all);
end if;
Propagate_Visible_Source_Added (Candidate.all);
end if;
end if;
end Resolve_Visibility;
------------
-- Source --
------------
function Source
(Data : View_Data_Ref;
Basename : Simple_Name) return Build.Source.Object
is
C : constant Basename_Source_Maps.Cursor :=
Data.Sources.Find (Basename);
begin
if not Basename_Source_Maps.Has_Element (C) then
return Build.Source.Undefined;
else
declare
Proxy : Source_Proxy renames Basename_Source_Maps.Element (C);
use type GPR2.Project.View.Object;
begin
if Proxy.View = Data.View then
return Build.Source.Create
(Base_Source => Data.Src_Infos.Element (Proxy.Path_Name),
Defining_View => Proxy.View,
Owning_View => Data.View,
Inherited_From => Proxy.Inh_From);
else
return Build.Source.Create
(Base_Source => Get_Data
(Data.Tree_Db,
Proxy.View).Src_Infos.Element
(Proxy.Path_Name),
Defining_View => Proxy.View,
Owning_View => Data.View,
Inherited_From => Proxy.Inh_From);
end if;
end;
end if;
end Source;
package body Update_Sources_List is separate;
--------------------
-- Visible_Source --
--------------------
function Visible_Source
(Data : View_Data_Ref;
Basename : Simple_Name) return Build.Source.Object
is
Result : GPR2.Build.Source.Object;
begin
-- Look for the source in the view's closure (withed or limited withed
-- views)
Result := Source (Data, Basename);
if not Result.Is_Defined then
for V of Data.View.Closure (Include_Self => False) loop
if V.Kind in With_Object_Dir_Kind then
declare
V_Data : View_Data_Ref renames Get_Data (Data.Tree_Db, V);
begin
Result := Source (V_Data, Basename);
exit when Result.Is_Defined;
end;
end if;
end loop;
end if;
return Result;
end Visible_Source;
end GPR2.Build.View_Tables;
|