1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2001-2017, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
27 with Osint
; use Osint
;
28 with Output
; use Output
;
30 with Types
; use Types
;
32 pragma Warnings
(Off
);
33 -- This package is used also by gnatcoll
34 with System
.OS_Lib
; use System
.OS_Lib
;
37 with Unchecked_Conversion
;
43 No_Mapping_File
: Boolean := False;
44 -- Set to True when the specified mapping file cannot be read in
45 -- procedure Initialize, so that no attempt is made to open the mapping
46 -- file in procedure Update_Mapping_File.
48 Max_Buffer
: constant := 1_500
;
49 Buffer
: String (1 .. Max_Buffer
);
50 -- Used to buffer output when writing to a new mapping file
52 Buffer_Last
: Natural := 0;
53 -- Index of last valid character in Buffer
55 type Mapping
is record
56 Uname
: Unit_Name_Type
;
57 Fname
: File_Name_Type
;
60 package File_Mapping
is new Table
.Table
(
61 Table_Component_Type
=> Mapping
,
62 Table_Index_Type
=> Int
,
64 Table_Initial
=> 1_000
,
65 Table_Increment
=> 1_000
,
66 Table_Name
=> "Fmap.File_Mapping");
67 -- Mapping table to map unit names to file names
69 package Path_Mapping
is new Table
.Table
(
70 Table_Component_Type
=> Mapping
,
71 Table_Index_Type
=> Int
,
73 Table_Initial
=> 1_000
,
74 Table_Increment
=> 1_000
,
75 Table_Name
=> "Fmap.Path_Mapping");
76 -- Mapping table to map file names to path names
78 type Header_Num
is range 0 .. 1_000
;
80 function Hash
(F
: Unit_Name_Type
) return Header_Num
;
81 -- Function used to compute hash of unit name
83 No_Entry
: constant Int
:= -1;
84 -- Signals no entry in following table
86 package Unit_Hash_Table
is new GNAT
.HTable
.Simple_HTable
(
87 Header_Num
=> Header_Num
,
89 No_Element
=> No_Entry
,
90 Key
=> Unit_Name_Type
,
93 -- Hash table to map unit names to file names. Used in conjunction with
94 -- table File_Mapping above.
96 function Hash
(F
: File_Name_Type
) return Header_Num
;
97 -- Function used to compute hash of file name
99 package File_Hash_Table
is new GNAT
.HTable
.Simple_HTable
(
100 Header_Num
=> Header_Num
,
102 No_Element
=> No_Entry
,
103 Key
=> File_Name_Type
,
106 -- Hash table to map file names to path names. Used in conjunction with
107 -- table Path_Mapping above.
109 Last_In_Table
: Int
:= 0;
111 package Forbidden_Names
is new GNAT
.HTable
.Simple_HTable
(
112 Header_Num
=> Header_Num
,
115 Key
=> File_Name_Type
,
119 -----------------------------
120 -- Add_Forbidden_File_Name --
121 -----------------------------
123 procedure Add_Forbidden_File_Name
(Name
: File_Name_Type
) is
125 Forbidden_Names
.Set
(Name
, True);
126 end Add_Forbidden_File_Name
;
128 ---------------------
129 -- Add_To_File_Map --
130 ---------------------
132 procedure Add_To_File_Map
133 (Unit_Name
: Unit_Name_Type
;
134 File_Name
: File_Name_Type
;
135 Path_Name
: File_Name_Type
)
137 Unit_Entry
: constant Int
:= Unit_Hash_Table
.Get
(Unit_Name
);
138 File_Entry
: constant Int
:= File_Hash_Table
.Get
(File_Name
);
140 if Unit_Entry
= No_Entry
or else
141 File_Mapping
.Table
(Unit_Entry
).Fname
/= File_Name
143 File_Mapping
.Increment_Last
;
144 Unit_Hash_Table
.Set
(Unit_Name
, File_Mapping
.Last
);
145 File_Mapping
.Table
(File_Mapping
.Last
) :=
146 (Uname
=> Unit_Name
, Fname
=> File_Name
);
149 if File_Entry
= No_Entry
or else
150 Path_Mapping
.Table
(File_Entry
).Fname
/= Path_Name
152 Path_Mapping
.Increment_Last
;
153 File_Hash_Table
.Set
(File_Name
, Path_Mapping
.Last
);
154 Path_Mapping
.Table
(Path_Mapping
.Last
) :=
155 (Uname
=> Unit_Name
, Fname
=> Path_Name
);
163 function Hash
(F
: File_Name_Type
) return Header_Num
is
165 return Header_Num
(Int
(F
) rem Header_Num
'Range_Length);
168 function Hash
(F
: Unit_Name_Type
) return Header_Num
is
170 return Header_Num
(Int
(F
) rem Header_Num
'Range_Length);
177 procedure Initialize
(File_Name
: String) is
178 Src
: Source_Buffer_Ptr
;
181 First
: Source_Ptr
:= 1;
182 Last
: Source_Ptr
:= 0;
184 Uname
: Unit_Name_Type
;
185 Fname
: File_Name_Type
;
186 Pname
: File_Name_Type
;
188 procedure Empty_Tables
;
189 -- Remove all entries in case of incorrect mapping file
191 function Find_File_Name
return File_Name_Type
;
192 -- Return Error_File_Name if the name buffer contains "/", otherwise
193 -- call Name_Find. "/" is the path name in the mapping file to indicate
194 -- that a source has been suppressed, and thus should not be found by
197 function Find_Unit_Name
return Unit_Name_Type
;
198 -- Return the unit name in the name buffer. Return Error_Unit_Name if
199 -- the name buffer contains "/".
202 -- Get a line from the mapping file, where a line is Src (First .. Last)
204 procedure Report_Truncated
;
205 -- Report a warning when the mapping file is truncated
206 -- (number of lines is not a multiple of 3).
212 procedure Empty_Tables
is
214 Unit_Hash_Table
.Reset
;
215 File_Hash_Table
.Reset
;
216 Path_Mapping
.Set_Last
(0);
217 File_Mapping
.Set_Last
(0);
225 function Find_File_Name
return File_Name_Type
is
227 if Name_Buffer
(1 .. Name_Len
) = "/" then
229 -- A path name of "/" is the indication that the source has been
230 -- "suppressed". Return Error_File_Name so that the compiler does
231 -- not find the source, even if it is in the include path.
233 return Error_File_Name
;
244 function Find_Unit_Name
return Unit_Name_Type
is
246 return Unit_Name_Type
(Find_File_Name
);
253 procedure Get_Line
is
259 -- If not at the end of file, skip the end of line
261 while First
< Src
'Last
262 and then (Src
(First
) = CR
263 or else Src
(First
) = LF
264 or else Src
(First
) = EOF
)
269 -- If not at the end of file, find the end of this new line
271 if First
< Src
'Last and then Src
(First
) /= EOF
then
274 while Last
< Src
'Last
275 and then Src
(Last
+ 1) /= CR
276 and then Src
(Last
+ 1) /= LF
277 and then Src
(Last
+ 1) /= EOF
285 ----------------------
286 -- Report_Truncated --
287 ----------------------
289 procedure Report_Truncated
is
291 Write_Str
("warning: mapping file """);
292 Write_Str
(File_Name
);
293 Write_Line
(""" is truncated");
294 end Report_Truncated
;
296 -- Start of processing for Initialize
300 Read_Source_File
(Name_Enter
(File_Name
), 1, Hi
, Src
, Config
);
302 if Null_Source_Buffer_Ptr
(Src
) then
303 Write_Str
("warning: could not read mapping file """);
304 Write_Str
(File_Name
);
306 No_Mapping_File
:= True;
314 -- Exit if end of file has been reached
316 exit when First
> Last
;
318 if (Last
< First
+ 2) or else (Src
(Last
- 1) /= '%')
319 or else (Src
(Last
) /= 's' and then Src
(Last
) /= 'b')
322 ("warning: mapping file """ & File_Name
&
323 """ is incorrectly formatted");
324 Write_Line
("Line = """ & String (Src
(First
.. Last
)) & '"');
329 Name_Len
:= Integer (Last
- First
+ 1);
330 Name_Buffer
(1 .. Name_Len
) := String (Src
(First
.. Last
));
331 Uname
:= Find_Unit_Name
;
337 -- If end of line has been reached, file is truncated
345 Name_Len
:= Integer (Last
- First
+ 1);
346 Name_Buffer
(1 .. Name_Len
) := String (Src
(First
.. Last
));
347 Canonical_Case_File_Name
(Name_Buffer
(1 .. Name_Len
));
348 Fname
:= Find_File_Name
;
354 -- If end of line has been reached, file is truncated
362 Name_Len
:= Integer (Last
- First
+ 1);
363 Name_Buffer
(1 .. Name_Len
) := String (Src
(First
.. Last
));
364 Pname
:= Find_File_Name
;
366 -- Add the mappings for this unit name
368 Add_To_File_Map
(Uname
, Fname
, Pname
);
372 -- Record the length of the two mapping tables
374 Last_In_Table
:= File_Mapping
.Last
;
377 ----------------------
378 -- Mapped_File_Name --
379 ----------------------
381 function Mapped_File_Name
(Unit
: Unit_Name_Type
) return File_Name_Type
is
382 The_Index
: constant Int
:= Unit_Hash_Table
.Get
(Unit
);
385 if The_Index
= No_Entry
then
388 return File_Mapping
.Table
(The_Index
).Fname
;
390 end Mapped_File_Name
;
392 ----------------------
393 -- Mapped_Path_Name --
394 ----------------------
396 function Mapped_Path_Name
(File
: File_Name_Type
) return File_Name_Type
is
397 Index
: Int
:= No_Entry
;
400 if Forbidden_Names
.Get
(File
) then
401 return Error_File_Name
;
404 Index
:= File_Hash_Table
.Get
(File
);
406 if Index
= No_Entry
then
409 return Path_Mapping
.Table
(Index
).Fname
;
411 end Mapped_Path_Name
;
417 procedure Reset_Tables
is
421 Unit_Hash_Table
.Reset
;
422 File_Hash_Table
.Reset
;
423 Forbidden_Names
.Reset
;
427 -------------------------
428 -- Update_Mapping_File --
429 -------------------------
431 procedure Update_Mapping_File
(File_Name
: String) is
432 File
: File_Descriptor
;
438 -- For the call to Close
440 procedure Put_Line
(Name
: Name_Id
);
441 -- Put Name as a line in the Mapping File
447 procedure Put_Line
(Name
: Name_Id
) is
449 Get_Name_String
(Name
);
451 -- If the Buffer is full, write it to the file
453 if Buffer_Last
+ Name_Len
+ 1 > Buffer
'Last then
454 N_Bytes
:= Write
(File
, Buffer
(1)'Address, Buffer_Last
);
456 if N_Bytes
< Buffer_Last
then
463 -- Add the line to the Buffer
465 Buffer
(Buffer_Last
+ 1 .. Buffer_Last
+ Name_Len
) :=
466 Name_Buffer
(1 .. Name_Len
);
467 Buffer_Last
:= Buffer_Last
+ Name_Len
+ 1;
468 Buffer
(Buffer_Last
) := ASCII
.LF
;
471 -- Start of processing for Update_Mapping_File
474 -- If the mapping file could not be read, then it will not be possible
477 if No_Mapping_File
then
480 -- Only Update if there are new entries in the mappings
482 if Last_In_Table
< File_Mapping
.Last
then
484 File
:= Open_Read_Write
(Name
=> File_Name
, Fmode
=> Binary
);
486 if File
/= Invalid_FD
then
487 if Last_In_Table
> 0 then
488 Lseek
(File
, 0, Seek_End
);
491 for Unit
in Last_In_Table
+ 1 .. File_Mapping
.Last
loop
492 Put_Line
(Name_Id
(File_Mapping
.Table
(Unit
).Uname
));
493 Put_Line
(Name_Id
(File_Mapping
.Table
(Unit
).Fname
));
495 File_Hash_Table
.Get
(File_Mapping
.Table
(Unit
).Fname
);
496 Put_Line
(Name_Id
(Path_Mapping
.Table
(File_Entry
).Fname
));
499 -- Before closing the file, write the buffer to the file. It is
500 -- guaranteed that the Buffer is not empty, because Put_Line has
501 -- been called at least 3 times, and after a call to Put_Line, the
502 -- Buffer is not empty.
504 N_Bytes
:= Write
(File
, Buffer
(1)'Address, Buffer_Last
);
506 if N_Bytes
< Buffer_Last
then
510 Close
(File
, Status
);
516 elsif not Quiet_Output
then
517 Write_Str
("warning: could not open mapping file """);
518 Write_Str
(File_Name
);
519 Write_Line
(""" for update");
523 end Update_Mapping_File
;