1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1998-2009, 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 ------------------------------------------------------------------------------
26 with Ada
.Characters
.Conversions
; use Ada
.Characters
.Conversions
;
27 with Ada
.Command_Line
; use Ada
.Command_Line
;
28 with Ada
.Directories
; use Ada
.Directories
;
29 with Ada
.Streams
.Stream_IO
; use Ada
.Streams
;
30 with Ada
.Text_IO
; use Ada
.Text_IO
;
31 with System
.CRTL
; use System
; use System
.CRTL
;
33 with GNAT
.Byte_Order_Mark
; use GNAT
.Byte_Order_Mark
;
34 with GNAT
.Command_Line
; use GNAT
.Command_Line
;
35 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
36 with GNAT
.Heap_Sort_G
;
40 with Switch
; use Switch
;
45 Config_File_Name
: constant String_Access
:= new String'("gnat.adc");
46 -- The name of the file holding the GNAT configuration pragmas
48 Gcc : String_Access := new String'("gcc");
49 -- May be modified by switch --GCC=
51 Gcc_Set
: Boolean := False;
52 -- True if a switch --GCC= is used
54 Gnat_Cmd
: String_Access
;
55 -- Command to execute the GNAT compiler
57 Gnat_Args
: Argument_List_Access
:=
62 new String'("-gnats"),
63 new String'("-gnatu"));
64 -- Arguments used in Gnat_Cmd call
66 EOF
: constant Character := Character'Val (26);
67 -- Special character to signal end of file. Not required in input files,
68 -- but properly treated if present. Not generated in output files except
69 -- as a result of copying input file.
71 BOM_Length
: Natural := 0;
72 -- Reset to non-zero value if BOM detected at start of file
78 subtype File_Num
is Natural;
79 subtype File_Offset
is Natural;
81 type File_Entry
is record
83 -- Name of chop file or directory
85 SR_Name
: String_Access
;
86 -- Null unless the chop file starts with a source reference pragma
87 -- in which case this field points to the file name from this pragma.
90 package File
is new GNAT
.Table
91 (Table_Component_Type
=> File_Entry
,
92 Table_Index_Type
=> File_Num
,
95 Table_Increment
=> 100);
97 Directory
: String_Access
;
98 -- Record name of directory, or a null string if no directory given
100 Compilation_Mode
: Boolean := False;
101 Overwrite_Files
: Boolean := False;
102 Preserve_Mode
: Boolean := False;
103 Quiet_Mode
: Boolean := False;
104 Source_References
: Boolean := False;
105 Verbose_Mode
: Boolean := False;
106 Exit_On_Error
: Boolean := False;
109 Write_gnat_adc
: Boolean := False;
110 -- Gets set true if we append to gnat.adc or create a new gnat.adc.
111 -- Used to inhibit complaint about no units generated.
117 type Line_Num
is new Natural;
118 -- Line number (for source reference pragmas)
120 type Unit_Count_Type
is new Integer;
121 subtype Unit_Num
is Unit_Count_Type
range 1 .. Unit_Count_Type
'Last;
122 -- Used to refer to unit number in unit table
124 type SUnit_Num
is new Integer;
125 -- Used to refer to entry in sorted units table. Note that entry
126 -- zero is only for use by Heapsort, and is not otherwise referenced.
128 type Unit_Kind
is (Unit_Spec
, Unit_Body
, Config_Pragmas
);
130 -- Structure to contain all necessary information for one unit.
131 -- Entries are also temporarily used to record config pragma sequences.
133 type Unit_Info
is record
134 File_Name
: String_Access
;
135 -- File name from GNAT output line
137 Chop_File
: File_Num
;
138 -- File number in chop file sequence
140 Start_Line
: Line_Num
;
141 -- Line number from GNAT output line
143 Offset
: File_Offset
;
144 -- Offset name from GNAT output line
146 SR_Present
: Boolean;
147 -- Set True if SR parameter present
149 Length
: File_Offset
;
150 -- A length of 0 means that the Unit is the last one in the file
153 -- Indicates kind of unit
155 Sorted_Index
: SUnit_Num
;
156 -- Index of unit in sorted unit list
158 Bufferg
: String_Access
;
159 -- Pointer to buffer containing configuration pragmas to be prepended.
160 -- Null if no pragmas to be prepended.
163 -- The following table stores the unit offset information
165 package Unit
is new GNAT
.Table
166 (Table_Component_Type
=> Unit_Info
,
167 Table_Index_Type
=> Unit_Count_Type
,
168 Table_Low_Bound
=> 1,
169 Table_Initial
=> 500,
170 Table_Increment
=> 100);
172 -- The following table is used as a sorted index to the Unit.Table.
173 -- The entries in Unit.Table are not moved, instead we just shuffle
174 -- the entries in Sorted_Units. Note that the zeroeth entry in this
175 -- table is used by GNAT.Heap_Sort_G.
177 package Sorted_Units
is new GNAT
.Table
178 (Table_Component_Type
=> Unit_Num
,
179 Table_Index_Type
=> SUnit_Num
,
180 Table_Low_Bound
=> 0,
181 Table_Initial
=> 500,
182 Table_Increment
=> 100);
184 function Is_Duplicated
(U
: SUnit_Num
) return Boolean;
185 -- Returns true if U is duplicated by a later unit.
186 -- Note that this function returns false for the last entry.
188 procedure Sort_Units
;
189 -- Sort units and set up sorted unit table
191 ----------------------
192 -- File_Descriptors --
193 ----------------------
195 function dup
(handle
: File_Descriptor
) return File_Descriptor
;
196 function dup2
(from
, to
: File_Descriptor
) return File_Descriptor
;
198 ---------------------
199 -- Local variables --
200 ---------------------
202 Warning_Count
: Natural := 0;
203 -- Count of warnings issued so far
205 -----------------------
206 -- Local subprograms --
207 -----------------------
209 procedure Error_Msg
(Message
: String; Warning
: Boolean := False);
210 -- Produce an error message on standard error output
212 procedure File_Time_Stamp
(Name
: C_File_Name
; Time
: OS_Time
);
213 -- Given the name of a file or directory, Name, set the
214 -- time stamp. This function must be used for an unopened file.
216 function Files_Exist
return Boolean;
217 -- Check Unit.Table for possible file names that already exist
218 -- in the file system. Returns true if files exist, False otherwise
220 function Get_Maximum_File_Name_Length
return Integer;
221 pragma Import
(C
, Get_Maximum_File_Name_Length
,
222 "__gnat_get_maximum_file_name_length");
223 -- Function to get maximum file name length for system
225 Maximum_File_Name_Length
: constant Integer := Get_Maximum_File_Name_Length
;
226 Maximum_File_Name_Length_String
: constant String :=
228 (Maximum_File_Name_Length
);
230 function Locate_Executable
231 (Program_Name
: String;
232 Look_For_Prefix
: Boolean := True) return String_Access
;
233 -- Locate executable for given program name. This takes into account
234 -- the target-prefix of the current command, if Look_For_Prefix is True.
236 subtype EOL_Length
is Natural range 0 .. 2;
237 -- Possible lengths of end of line sequence
239 type EOL_String
(Len
: EOL_Length
:= 0) is record
240 Str
: String (1 .. Len
);
244 (Source
: not null access String;
245 Start
: Positive) return EOL_String
;
246 -- Return the line terminator used in the passed string
249 (Source
: not null access String;
250 Ptr
: in out Positive);
251 -- On return Source (Ptr) is the first character of the next line
252 -- or EOF. Source.all must be terminated by EOF.
254 function Parse_File
(Num
: File_Num
) return Boolean;
255 -- Calls the GNAT compiler to parse the given source file and parses the
256 -- output using Parse_Offset_Info. Returns True if parse operation
257 -- completes, False if some system error (e.g. failure to read the
258 -- offset information) occurs.
260 procedure Parse_Offset_Info
261 (Chop_File
: File_Num
;
262 Source
: not null access String);
263 -- Parses the output of the compiler indicating the offsets
264 -- and names of the compilation units in Chop_File.
266 procedure Parse_Token
267 (Source
: not null access String;
268 Ptr
: in out Positive;
269 Token_Ptr
: out Positive);
270 -- Skips any separators and stores the start of the token in Token_Ptr.
271 -- Then stores the position of the next separator in Ptr.
272 -- On return Source (Token_Ptr .. Ptr - 1) is the token.
275 (FD
: File_Descriptor
;
276 Contents
: out String_Access
;
277 Success
: out Boolean);
278 -- Reads file associated with FS into the newly allocated
280 -- [VMS] Success is true iff the number of bytes read is less than or
281 -- equal to the file size.
282 -- [Other] Success is true iff the number of bytes read is equal to
285 function Report_Duplicate_Units
return Boolean;
286 -- Output messages about duplicate units in the input files in Unit.Table
287 -- Returns True if any duplicates found, False if no duplicates found.
289 function Scan_Arguments
return Boolean;
290 -- Scan command line options and set global variables accordingly.
291 -- Also scan out file and directory arguments. Returns True if scan
292 -- was successful, and False if the scan fails for any reason.
295 -- Output message on standard output describing syntax of gnatchop command
297 procedure Warning_Msg
(Message
: String);
298 -- Output a warning message on standard error and update warning count
300 function Write_Chopped_Files
(Input
: File_Num
) return Boolean;
301 -- Write all units that result from chopping the Input file
303 procedure Write_Config_File
(Input
: File_Num
; U
: Unit_Num
);
304 -- Call to write configuration pragmas (append them to gnat.adc)
305 -- Input is the file number for the chop file and U identifies the
306 -- unit entry for the configuration pragmas.
308 function Get_Config_Pragmas
310 U
: Unit_Num
) return String_Access
;
311 -- Call to read configuration pragmas from given unit entry, and
312 -- return a buffer containing the pragmas to be appended to
313 -- following units. Input is the file number for the chop file and
314 -- U identifies the unit entry for the configuration pragmas.
316 procedure Write_Source_Reference_Pragma
319 File
: Stream_IO
.File_Type
;
321 Success
: in out Boolean);
322 -- If Success is True on entry, writes a source reference pragma using
323 -- the chop file from Info, and the given line number. On return Success
324 -- indicates whether the write succeeded. If Success is False on entry,
325 -- or if the global flag Source_References is False, then the call to
326 -- Write_Source_Reference_Pragma has no effect. EOL indicates the end
327 -- of line sequence to be written at the end of the pragma.
330 (Source
: not null access String;
334 Success
: out Boolean);
335 -- Write one compilation unit of the source to file. Source is the pointer
336 -- to the input string, Num is the unit number, TS_Time is the timestamp,
337 -- Write_BOM is set True to write a UTF-8 BOM at the start of the file.
338 -- Success is set True unless the write attempt fails.
344 function dup
(handle
: File_Descriptor
) return File_Descriptor
is
346 return File_Descriptor
(System
.CRTL
.dup
(int
(handle
)));
353 function dup2
(from
, to
: File_Descriptor
) return File_Descriptor
is
355 return File_Descriptor
(System
.CRTL
.dup2
(int
(from
), int
(to
)));
362 procedure Error_Msg
(Message
: String; Warning
: Boolean := False) is
364 Put_Line
(Standard_Error
, Message
);
367 Set_Exit_Status
(Failure
);
369 if Exit_On_Error
then
370 raise Types
.Terminate_Program
;
375 ---------------------
376 -- File_Time_Stamp --
377 ---------------------
379 procedure File_Time_Stamp
(Name
: C_File_Name
; Time
: OS_Time
) is
380 procedure Set_File_Time
(Name
: C_File_Name
; Time
: OS_Time
);
381 pragma Import
(C
, Set_File_Time
, "__gnat_set_file_time_name");
384 Set_File_Time
(Name
, Time
);
391 function Files_Exist
return Boolean is
392 Exists
: Boolean := False;
395 for SNum
in 1 .. SUnit_Num
(Unit
.Last
) loop
397 -- Only check and report for the last instance of duplicated files
399 if not Is_Duplicated
(SNum
) then
401 Info
: constant Unit_Info
:=
402 Unit
.Table
(Sorted_Units
.Table
(SNum
));
405 if Is_Writable_File
(Info
.File_Name
.all) then
406 if Hostparm
.OpenVMS
then
409 & " already exists, use /OVERWRITE to overwrite");
411 Error_Msg
(Info
.File_Name
.all
412 & " already exists, use -w to overwrite");
424 ------------------------
425 -- Get_Config_Pragmas --
426 ------------------------
428 function Get_Config_Pragmas
430 U
: Unit_Num
) return String_Access
432 Info
: Unit_Info
renames Unit
.Table
(U
);
433 FD
: File_Descriptor
;
434 Name
: aliased constant String :=
435 File
.Table
(Input
).Name
.all & ASCII
.NUL
;
436 Length
: File_Offset
;
437 Buffer
: String_Access
;
438 Result
: String_Access
;
441 pragma Warnings
(Off
, Success
);
444 FD
:= Open_Read
(Name
'Address, Binary
);
446 if FD
= Invalid_FD
then
447 Error_Msg
("cannot open " & File
.Table
(Input
).Name
.all);
451 Read_File
(FD
, Buffer
, Success
);
453 -- A length of 0 indicates that the rest of the file belongs to
454 -- this unit. The actual length must be calculated now. Take into
455 -- account that the last character (EOF) must not be written.
457 if Info
.Length
= 0 then
458 Length
:= Buffer
'Last - (Buffer
'First + Info
.Offset
);
460 Length
:= Info
.Length
;
463 Result
:= new String'(Buffer (1 .. Length));
466 end Get_Config_Pragmas;
473 (Source : not null access String;
474 Start : Positive) return EOL_String
476 Ptr : Positive := Start;
481 -- Skip to end of line
483 while Source (Ptr) /= ASCII.CR and then
484 Source (Ptr) /= ASCII.LF and then
492 if Source (Ptr) /= EOF then
504 if Source (Ptr) = ASCII.CR and then Source (Ptr + 1) = ASCII.LF then
508 return (Len => Last + 1 - First, Str => Source (First .. Last));
515 function Is_Duplicated (U : SUnit_Num) return Boolean is
517 return U < SUnit_Num (Unit.Last)
519 Unit.Table (Sorted_Units.Table (U)).File_Name.all =
520 Unit.Table (Sorted_Units.Table (U + 1)).File_Name.all;
523 -----------------------
524 -- Locate_Executable --
525 -----------------------
527 function Locate_Executable
528 (Program_Name : String;
529 Look_For_Prefix : Boolean := True) return String_Access
531 Gnatchop_Str : constant String := "gnatchop";
532 Current_Command : constant String := Normalize_Pathname (Command_Name);
533 End_Of_Prefix : Natural;
534 Start_Of_Prefix : Positive;
535 Start_Of_Suffix : Positive;
536 Result : String_Access;
539 Start_Of_Prefix := Current_Command'First;
540 Start_Of_Suffix := Current_Command'Last + 1;
541 End_Of_Prefix := Start_Of_Prefix - 1;
543 if Look_For_Prefix then
545 -- Find Start_Of_Prefix
547 for J in reverse Current_Command'Range loop
548 if Current_Command (J) = '/' or else
549 Current_Command (J) = Directory_Separator or else
550 Current_Command (J) = ':'
552 Start_Of_Prefix := J + 1;
557 -- Find End_Of_Prefix
559 for J in Start_Of_Prefix ..
560 Current_Command'Last - Gnatchop_Str'Length + 1
562 if Current_Command (J .. J + Gnatchop_Str'Length - 1) =
565 End_Of_Prefix := J - 1;
571 if End_Of_Prefix > Current_Command'First then
572 Start_Of_Suffix := End_Of_Prefix + Gnatchop_Str'Length + 1;
576 Command : constant String :=
577 Current_Command (Start_Of_Prefix .. End_Of_Prefix)
579 & Current_Command (Start_Of_Suffix ..
580 Current_Command'Last);
582 Result := Locate_Exec_On_Path (Command);
584 if Result = null then
586 (Command & ": installation problem, executable not found");
591 end Locate_Executable;
598 (Source : not null access String;
599 Ptr : in out Positive) is
601 -- Skip to end of line
603 while Source (Ptr) /= ASCII.CR and then Source (Ptr) /= ASCII.LF
604 and then Source (Ptr) /= EOF
609 if Source (Ptr) /= EOF then
610 Ptr := Ptr + 1; -- skip CR or LF
613 -- Skip past CR/LF or LF/CR combination
615 if (Source (Ptr) = ASCII.CR or else Source (Ptr) = ASCII.LF)
616 and then Source (Ptr) /= Source (Ptr - 1)
626 function Parse_File (Num : File_Num) return Boolean is
627 Chop_Name : constant String_Access := File.Table (Num).Name;
628 Save_Stdout : constant File_Descriptor := dup (Standout);
629 Offset_Name : Temp_File_Name;
630 Offset_FD : File_Descriptor;
631 Buffer : String_Access;
636 -- Display copy of GNAT command if verbose mode
641 for J in 1 .. Gnat_Args'Length loop
643 Put (Gnat_Args (J).all);
647 Put_Line (Chop_Name.all);
650 -- Create temporary file
652 Create_Temp_File (Offset_FD, Offset_Name);
654 if Offset_FD = Invalid_FD then
655 Error_Msg ("gnatchop: cannot create temporary file");
660 -- Redirect Stdout to this temporary file in the Unix way
662 if dup2 (Offset_FD, Standout) = Invalid_FD then
663 Error_Msg ("gnatchop: cannot redirect stdout to temporary file");
669 -- Call Gnat on the source filename argument with special options
670 -- to generate offset information. If this special compilation completes
671 -- successfully then we can do the actual gnatchop operation.
673 Spawn (Gnat_Cmd.all, Gnat_Args.all & Chop_Name, Success);
676 Error_Msg (Chop_Name.all & ": parse errors detected");
677 Error_Msg (Chop_Name.all & ": chop may not be successful");
682 if dup2 (Save_Stdout, Standout) = Invalid_FD then
683 Error_Msg ("gnatchop: cannot restore stdout");
686 -- Reopen the file to start reading from the beginning
690 Offset_FD := Open_Read (Offset_Name'Address, Binary);
692 if Offset_FD = Invalid_FD then
693 Error_Msg ("gnatchop: cannot access offset info");
697 Read_File (Offset_FD, Buffer, Success);
700 Error_Msg ("gnatchop: error reading offset info");
704 Parse_Offset_Info (Num, Buffer);
707 -- Close and delete temporary file
710 Delete_File (Offset_Name'Address, Success);
715 when Failure | Types.Terminate_Program =>
717 Delete_File (Offset_Name'Address, Success);
722 -----------------------
723 -- Parse_Offset_Info --
724 -----------------------
726 procedure Parse_Offset_Info
727 (Chop_File : File_Num;
728 Source : not null access String)
730 First_Unit : constant Unit_Num := Unit.Last + 1;
731 Bufferg : String_Access := null;
732 Parse_Ptr : File_Offset := Source'First;
733 Token_Ptr : File_Offset;
736 function Match (Literal : String) return Boolean;
737 -- Checks if given string appears at the current Token_Ptr location
738 -- and if so, bumps Parse_Ptr past the token and returns True. If
739 -- the string is not present, sets Parse_Ptr to Token_Ptr and
746 function Match (Literal : String) return Boolean is
748 Parse_Token (Source, Parse_Ptr, Token_Ptr);
750 if Source'Last + 1 - Token_Ptr < Literal'Length
752 Source (Token_Ptr .. Token_Ptr + Literal'Length - 1) /= Literal
754 Parse_Ptr := Token_Ptr;
758 Parse_Ptr := Token_Ptr + Literal'Length;
762 -- Start of processing for Parse_Offset_Info
766 -- Set default values, should get changed for all
767 -- units/pragmas except for the last
769 Info.Chop_File := Chop_File;
772 -- Parse the current line of offset information into Info
773 -- and exit the loop if there are any errors or on EOF.
775 -- First case, parse a line in the following format:
777 -- Unit x (spec) line 7, file offset 142, [SR, ]file name x.ads
779 -- Note that the unit name can be an operator name in quotes.
780 -- This is of course illegal, but both GNAT and gnatchop handle
781 -- the case so that this error does not interfere with chopping.
783 -- The SR ir present indicates that a source reference pragma
784 -- was processed as part of this unit (and that therefore no
785 -- Source_Reference pragma should be generated.
787 if Match ("Unit") then
788 Parse_Token (Source, Parse_Ptr, Token_Ptr);
790 if Match ("(body)") then
791 Info.Kind := Unit_Body;
792 elsif Match ("(spec)") then
793 Info.Kind := Unit_Spec;
798 exit when not Match ("line");
799 Parse_Token (Source, Parse_Ptr, Token_Ptr);
800 Info.Start_Line := Line_Num'Value
801 (Source (Token_Ptr .. Parse_Ptr - 1));
803 exit when not Match ("file offset");
804 Parse_Token (Source, Parse_Ptr, Token_Ptr);
805 Info.Offset := File_Offset'Value
806 (Source (Token_Ptr .. Parse_Ptr - 1));
808 Info.SR_Present := Match ("SR, ");
810 exit when not Match ("file name");
811 Parse_Token (Source, Parse_Ptr, Token_Ptr);
812 Info.File_Name := new String'
813 (Directory
.all & Source
(Token_Ptr
.. Parse_Ptr
- 1));
814 Parse_EOL
(Source
, Parse_Ptr
);
816 -- Second case, parse a line of the following form
818 -- Configuration pragmas at line 10, file offset 223
820 elsif Match
("Configuration pragmas at") then
821 Info
.Kind
:= Config_Pragmas
;
822 Info
.File_Name
:= Config_File_Name
;
824 exit when not Match
("line");
825 Parse_Token
(Source
, Parse_Ptr
, Token_Ptr
);
826 Info
.Start_Line
:= Line_Num
'Value
827 (Source
(Token_Ptr
.. Parse_Ptr
- 1));
829 exit when not Match
("file offset");
830 Parse_Token
(Source
, Parse_Ptr
, Token_Ptr
);
831 Info
.Offset
:= File_Offset
'Value
832 (Source
(Token_Ptr
.. Parse_Ptr
- 1));
834 Parse_EOL
(Source
, Parse_Ptr
);
836 -- Third case, parse a line of the following form
838 -- Source_Reference pragma for file "filename"
840 -- This appears at the start of the file only, and indicates
841 -- the name to be used on any generated Source_Reference pragmas.
843 elsif Match
("Source_Reference pragma for file ") then
844 Parse_Token
(Source
, Parse_Ptr
, Token_Ptr
);
845 File
.Table
(Chop_File
).SR_Name
:=
846 new String'(Source (Token_Ptr + 1 .. Parse_Ptr - 2));
847 Parse_EOL (Source, Parse_Ptr);
850 -- Unrecognized keyword or end of file
856 -- Store the data in the Info record in the Unit.Table
859 Unit.Table (Unit.Last) := Info;
861 -- If this is not the first unit from the file, calculate
862 -- the length of the previous unit as difference of the offsets
864 if Unit.Last > First_Unit then
865 Unit.Table (Unit.Last - 1).Length :=
866 Info.Offset - Unit.Table (Unit.Last - 1).Offset;
869 -- If not in compilation mode combine current unit with any
870 -- preceding configuration pragmas.
872 if not Compilation_Mode
873 and then Unit.Last > First_Unit
874 and then Unit.Table (Unit.Last - 1).Kind = Config_Pragmas
876 Info.Start_Line := Unit.Table (Unit.Last - 1).Start_Line;
877 Info.Offset := Unit.Table (Unit.Last - 1).Offset;
879 -- Delete the configuration pragma entry
881 Unit.Table (Unit.Last - 1) := Info;
885 -- If in compilation mode, and previous entry is the initial
886 -- entry for the file and is for configuration pragmas, then
887 -- they are to be appended to every unit in the file.
890 and then Unit.Last = First_Unit + 1
891 and then Unit.Table (First_Unit).Kind = Config_Pragmas
895 (Unit.Table (Unit.Last - 1).Chop_File, First_Unit);
896 Unit.Table (Unit.Last - 1) := Info;
900 Unit.Table (Unit.Last).Bufferg := Bufferg;
902 -- If in compilation mode, and this is not the first item,
903 -- combine configuration pragmas with previous unit, which
904 -- will cause an error message to be generated when the unit
908 and then Unit.Last > First_Unit
909 and then Unit.Table (Unit.Last).Kind = Config_Pragmas
919 -- Find out if the loop was exited prematurely because of
920 -- an error or if the EOF marker was found.
922 if Source (Parse_Ptr) /= EOF then
924 (File.Table (Chop_File).Name.all & ": error parsing offset info");
928 -- Handle case of a chop file consisting only of config pragmas
930 if Unit.Last = First_Unit
931 and then Unit.Table (Unit.Last).Kind = Config_Pragmas
933 -- In compilation mode, we append such a file to gnat.adc
935 if Compilation_Mode then
936 Write_Config_File (Unit.Table (Unit.Last).Chop_File, First_Unit);
939 -- In default (non-compilation) mode, this is invalid
943 (File.Table (Chop_File).Name.all &
944 ": no units found (only pragmas)");
949 -- Handle case of a chop file ending with config pragmas. This can
950 -- happen only in default non-compilation mode, since in compilation
951 -- mode such configuration pragmas are part of the preceding unit.
952 -- We simply concatenate such pragmas to the previous file which
953 -- will cause a compilation error, which is appropriate.
955 if Unit.Last > First_Unit
956 and then Unit.Table (Unit.Last).Kind = Config_Pragmas
960 end Parse_Offset_Info;
966 procedure Parse_Token
967 (Source : not null access String;
968 Ptr : in out Positive;
969 Token_Ptr : out Positive)
971 In_Quotes : Boolean := False;
976 while Source (Ptr) = ' ' or else Source (Ptr) = ',' loop
985 or else not (Source (Ptr) = ' ' or else Source (Ptr) = ','))
986 and then Source (Ptr) >= ' '
988 if Source (Ptr) = '"' then
989 In_Quotes := not In_Quotes;
1001 (FD : File_Descriptor;
1002 Contents : out String_Access;
1003 Success : out Boolean)
1005 Length : constant File_Offset := File_Offset (File_Length (FD));
1006 -- Include room for EOF char
1007 Buffer : constant String_Access := new String (1 .. Length + 1);
1009 This_Read : Integer;
1010 Read_Ptr : File_Offset := 1;
1015 This_Read := Read (FD,
1016 A => Buffer (Read_Ptr)'Address,
1017 N => Length + 1 - Read_Ptr);
1018 Read_Ptr := Read_Ptr + Integer'Max (This_Read, 0);
1019 exit when This_Read <= 0;
1022 Buffer (Read_Ptr) := EOF;
1023 Contents := new String (1 .. Read_Ptr);
1024 Contents.all := Buffer (1 .. Read_Ptr);
1026 -- Things aren't simple on VMS due to the plethora of file types and
1027 -- organizations. It seems clear that there shouldn't be more bytes
1028 -- read than are contained in the file though.
1030 if Hostparm.OpenVMS then
1031 Success := Read_Ptr <= Length + 1;
1033 Success := Read_Ptr = Length + 1;
1037 ----------------------------
1038 -- Report_Duplicate_Units --
1039 ----------------------------
1041 function Report_Duplicate_Units return Boolean is
1045 Duplicates : Boolean := False;
1049 while US < SUnit_Num (Unit.Last) loop
1050 U := Sorted_Units.Table (US);
1052 if Is_Duplicated (US) then
1055 -- Move to last two versions of duplicated file to make it clearer
1056 -- to understand which file is retained in case of overwriting.
1058 while US + 1 < SUnit_Num (Unit.Last) loop
1059 exit when not Is_Duplicated (US + 1);
1063 U := Sorted_Units.Table (US);
1065 if Overwrite_Files then
1066 Warning_Msg (Unit.Table (U).File_Name.all
1067 & " is duplicated
(all but last will be skipped
)");
1069 elsif Unit.Table (U).Chop_File =
1070 Unit.Table (Sorted_Units.Table (US + 1)).Chop_File
1072 Error_Msg (Unit.Table (U).File_Name.all
1073 & " is duplicated
in "
1074 & File.Table (Unit.Table (U).Chop_File).Name.all);
1077 Error_Msg (Unit.Table (U).File_Name.all
1079 & File.Table (Unit.Table (U).Chop_File).Name.all
1080 & " is duplicated
in "
1083 (Sorted_Units.Table (US + 1)).Chop_File).Name.all);
1090 if Duplicates and not Overwrite_Files then
1091 if Hostparm.OpenVMS then
1093 ("use /OVERWRITE to overwrite files
and keep last version
");
1095 Put_Line ("use -w to overwrite files
and keep last version
");
1100 end Report_Duplicate_Units;
1102 --------------------
1103 -- Scan_Arguments --
1104 --------------------
1106 function Scan_Arguments return Boolean is
1107 Kset : Boolean := False;
1108 -- Set true if -k switch found
1111 Initialize_Option_Scan;
1113 -- Scan options first
1116 case Getopt ("c gnat? h k? p q r v w x
-GCC
=!") is
1121 Gcc := new String'(Parameter);
1125 Compilation_Mode := True;
1129 new Argument_List'(Gnat_Args.all &
1130 new String'("-gnat
" & Parameter));
1134 raise Types.Terminate_Program;
1138 Param : String_Access := new String'(Parameter);
1141 if Param.all /= "" then
1142 for J in Param'Range loop
1143 if Param (J) not in '0' .. '9' then
1144 if Hostparm.OpenVMS then
1145 Error_Msg ("/FILE_NAME_MAX_LENGTH
=nnn
" &
1146 " requires numeric parameter
");
1148 Error_Msg ("-k# requires numeric parameter
");
1156 if Hostparm.OpenVMS then
1157 Param := new String'("39");
1159 Param := new String'("8");
1164 new Argument_List'(Gnat_Args.all &
1165 new String'("-gnatk
" & Param.all));
1170 Preserve_Mode := True;
1176 Source_References := True;
1179 Verbose_Mode := True;
1180 Display_Version ("GNATCHOP
", "1998");
1183 Overwrite_Files := True;
1186 Exit_On_Error := True;
1193 if not Kset and then Maximum_File_Name_Length > 0 then
1195 -- If this system has restricted filename lengths, tell gnat1
1196 -- about them, removing the leading blank from the image string.
1199 new Argument_List'(Gnat_Args.all
1200 & new String'("-gnatk
"
1201 & Maximum_File_Name_Length_String
1202 (Maximum_File_Name_Length_String'First + 1
1203 .. Maximum_File_Name_Length_String'Last)));
1210 S : constant String := Get_Argument (Do_Expansion => True);
1214 File.Increment_Last;
1215 File.Table (File.Last).Name := new String'(S);
1216 File.Table (File.Last).SR_Name := null;
1220 -- Case of more than one file where last file is a directory
1223 and then Is_Directory (File.Table (File.Last).Name.all)
1225 Directory := File.Table (File.Last).Name;
1226 File.Decrement_Last;
1228 -- Make sure Directory is terminated with a directory separator,
1229 -- so we can generate the output by just appending a filename.
1231 if Directory (Directory'Last) /= Directory_Separator
1232 and then Directory (Directory'Last) /= '/'
1234 Directory := new String'(Directory.all & Directory_Separator);
1237 -- At least one filename must be given
1239 elsif File.Last = 0 then
1243 -- No directory given, set directory to null, so that we can just
1244 -- concatenate the directory name to the file name unconditionally.
1247 Directory := new String'("");
1250 -- Finally check all filename arguments
1252 for File_Num in 1 .. File.Last loop
1254 F : constant String := File.Table (File_Num).Name.all;
1257 if Is_Directory (F) then
1258 Error_Msg (F & " is a directory
, cannot be chopped
");
1261 elsif not Is_Regular_File (F) then
1262 Error_Msg (F & " not found
");
1271 when Invalid_Switch =>
1272 Error_Msg ("invalid switch
" & Full_Switch);
1275 when Invalid_Parameter =>
1276 if Hostparm.OpenVMS then
1277 Error_Msg ("/FILE_NAME_MAX_LENGTH
=nnn qualifier
" &
1278 " requires numeric parameter
");
1280 Error_Msg ("-k switch requires numeric parameter
");
1290 procedure Sort_Units is
1292 procedure Move (From : Natural; To : Natural);
1293 -- Procedure used to sort the unit list
1294 -- Unit.Table (To) := Unit_List (From); used by sort
1296 function Lt (Left, Right : Natural) return Boolean;
1297 -- Compares Left and Right units based on file name (first),
1298 -- Chop_File (second) and Offset (third). This ordering is
1299 -- important to keep the last version in case of duplicate files.
1301 package Unit_Sort is new GNAT.Heap_Sort_G (Move, Lt);
1302 -- Used for sorting on filename to detect duplicates
1308 function Lt (Left, Right : Natural) return Boolean is
1309 L : Unit_Info renames
1310 Unit.Table (Sorted_Units.Table (SUnit_Num (Left)));
1312 R : Unit_Info renames
1313 Unit.Table (Sorted_Units.Table (SUnit_Num (Right)));
1316 return L.File_Name.all < R.File_Name.all
1317 or else (L.File_Name.all = R.File_Name.all
1318 and then (L.Chop_File < R.Chop_File
1319 or else (L.Chop_File = R.Chop_File
1320 and then L.Offset < R.Offset)));
1327 procedure Move (From : Natural; To : Natural) is
1329 Sorted_Units.Table (SUnit_Num (To)) :=
1330 Sorted_Units.Table (SUnit_Num (From));
1333 -- Start of processing for Sort_Units
1336 Sorted_Units.Set_Last (SUnit_Num (Unit.Last));
1338 for J in 1 .. Unit.Last loop
1339 Sorted_Units.Table (SUnit_Num (J)) := J;
1342 -- Sort Unit.Table, using Sorted_Units.Table (0) as scratch
1344 Unit_Sort.Sort (Natural (Unit.Last));
1346 -- Set the Sorted_Index fields in the unit tables
1348 for J in 1 .. SUnit_Num (Unit.Last) loop
1349 Unit.Table (Sorted_Units.Table (J)).Sorted_Index := J;
1360 ("Usage
: gnatchop
[-c
] [-h
] [-k#
] " &
1361 "[-r
] [-p
] [-q
] [-v
] [-w
] [-x
] [--GCC=xx] file [file ...] [dir]");
1365 (" -c compilation mode, configuration pragmas " &
1369 (" -gnatxxx passes the -gnatxxx switch to gnat parser");
1372 (" -h help: output this usage information");
1375 (" -k# krunch file names of generated files to " &
1376 "no more than # characters");
1379 (" -k krunch file names of generated files to " &
1380 "no more than 8 characters");
1383 (" -p preserve time stamp, output files will " &
1384 "have same stamp as input");
1387 (" -q quiet mode, no output of generated file " &
1391 (" -r generate Source_Reference pragmas refer" &
1392 "encing original source file");
1395 (" -v verbose mode, output version and generat" &
1399 (" -w overwrite existing filenames");
1402 (" -x exit on error");
1405 (" --GCC=xx specify the path of the gnat parser to be used");
1409 (" file... list of source files to be chopped");
1412 (" dir directory location for split files (defa" &
1413 "ult = current directory)");
1420 procedure Warning_Msg
(Message
: String) is
1422 Warning_Count
:= Warning_Count
+ 1;
1423 Put_Line
(Standard_Error
, "warning: " & Message
);
1426 -------------------------
1427 -- Write_Chopped_Files --
1428 -------------------------
1430 function Write_Chopped_Files
(Input
: File_Num
) return Boolean is
1431 Name
: aliased constant String :=
1432 File
.Table
(Input
).Name
.all & ASCII
.NUL
;
1433 FD
: File_Descriptor
;
1434 Buffer
: String_Access
;
1438 BOM_Present
: Boolean;
1440 -- Record presence of UTF8 BOM in input
1443 FD
:= Open_Read
(Name
'Address, Binary
);
1444 TS_Time
:= File_Time_Stamp
(FD
);
1446 if FD
= Invalid_FD
then
1447 Error_Msg
("cannot open " & File
.Table
(Input
).Name
.all);
1451 Read_File
(FD
, Buffer
, Success
);
1454 Error_Msg
("cannot read " & File
.Table
(Input
).Name
.all);
1459 if not Quiet_Mode
then
1460 Put_Line
("splitting " & File
.Table
(Input
).Name
.all & " into:");
1463 -- Test for presence of BOM
1465 Read_BOM
(Buffer
.all, BOM_Length
, BOM
, False);
1466 BOM_Present
:= BOM
/= Unknown
;
1468 -- Only chop those units that come from this file
1470 for Unit_Number
in 1 .. Unit
.Last
loop
1471 if Unit
.Table
(Unit_Number
).Chop_File
= Input
then
1476 Write_BOM
=> BOM_Present
and then Unit_Number
/= 1,
1477 Success
=> Success
);
1478 exit when not Success
;
1484 end Write_Chopped_Files
;
1486 -----------------------
1487 -- Write_Config_File --
1488 -----------------------
1490 procedure Write_Config_File
(Input
: File_Num
; U
: Unit_Num
) is
1491 FD
: File_Descriptor
;
1492 Name
: aliased constant String := "gnat.adc" & ASCII
.NUL
;
1493 Buffer
: String_Access
;
1496 Buffera
: String_Access
;
1500 Write_gnat_adc
:= True;
1501 FD
:= Open_Read_Write
(Name
'Address, Binary
);
1503 if FD
= Invalid_FD
then
1504 FD
:= Create_File
(Name
'Address, Binary
);
1507 if not Quiet_Mode
then
1508 Put_Line
("writing configuration pragmas from " &
1509 File
.Table
(Input
).Name
.all & " to gnat.adc");
1515 if not Quiet_Mode
then
1517 ("appending configuration pragmas from " &
1518 File
.Table
(Input
).Name
.all & " to gnat.adc");
1522 Success
:= FD
/= Invalid_FD
;
1525 Error_Msg
("cannot create gnat.adc");
1529 -- In append mode, acquire existing gnat.adc file
1532 Read_File
(FD
, Buffera
, Success
);
1535 Error_Msg
("cannot read gnat.adc");
1539 -- Find location of EOF byte if any to exclude from append
1542 while Bufferl
<= Buffera
'Last
1543 and then Buffera
(Bufferl
) /= EOF
1545 Bufferl
:= Bufferl
+ 1;
1548 Bufferl
:= Bufferl
- 1;
1551 -- Write existing gnat.adc to new gnat.adc file
1553 FD
:= Create_File
(Name
'Address, Binary
);
1554 Success
:= Write
(FD
, Buffera
(1)'Address, Bufferl
) = Bufferl
;
1557 Error_Msg
("error writing gnat.adc");
1562 Buffer
:= Get_Config_Pragmas
(Input
, U
);
1564 if Buffer
/= null then
1565 Success
:= Write
(FD
, Buffer
.all'Address, Buffer
'Length) =
1569 Error_Msg
("disk full writing gnat.adc");
1575 end Write_Config_File
;
1577 -----------------------------------
1578 -- Write_Source_Reference_Pragma --
1579 -----------------------------------
1581 procedure Write_Source_Reference_Pragma
1584 File
: Stream_IO
.File_Type
;
1586 Success
: in out Boolean)
1588 FTE
: File_Entry
renames Gnatchop
.File
.Table
(Info
.Chop_File
);
1589 Nam
: String_Access
;
1592 if Success
and then Source_References
and then not Info
.SR_Present
then
1593 if FTE
.SR_Name
/= null then
1600 Reference
: String :=
1601 "pragma Source_Reference (000000, """
1602 & Nam
.all & """);" & EOL
.Str
;
1604 Pos
: Positive := Reference
'First;
1605 Lin
: Line_Num
:= Line
;
1608 while Reference
(Pos
+ 1) /= ',' loop
1612 while Reference
(Pos
) = '0' loop
1613 Reference
(Pos
) := Character'Val
1614 (Character'Pos ('0') + Lin
mod 10);
1619 -- Assume there are enough zeroes for any program length
1621 pragma Assert
(Lin
= 0);
1624 String'Write (Stream_IO
.Stream
(File
), Reference
);
1632 end Write_Source_Reference_Pragma
;
1638 procedure Write_Unit
1639 (Source
: not null access String;
1642 Write_BOM
: Boolean;
1643 Success
: out Boolean)
1646 procedure OS_Filename
1648 W_Name
: Wide_String;
1650 N_Length
: access Natural;
1652 E_Length
: access Natural);
1653 pragma Import
(C
, OS_Filename
, "__gnat_os_filename");
1654 -- Returns in OS_Name the proper name for the OS when used with the
1655 -- returned Encoding value. For example on Windows this will return the
1656 -- UTF-8 encoded name into OS_Name and set Encoding to encoding=utf8
1657 -- (the form parameter for Stream_IO).
1659 -- Name is the filename and W_Name the same filename in Unicode 16 bits
1660 -- (this corresponds to Win32 Unicode ISO/IEC 10646). N_Length/E_Length
1661 -- are the length returned in OS_Name/Encoding respectively.
1663 Info
: Unit_Info
renames Unit
.Table
(Num
);
1664 Name
: aliased constant String := Info
.File_Name
.all & ASCII
.NUL
;
1665 W_Name
: aliased constant Wide_String := To_Wide_String
(Name
);
1666 EOL
: constant EOL_String
:=
1667 Get_EOL
(Source
, Source
'First + Info
.Offset
);
1668 OS_Name
: aliased String (1 .. Name
'Length * 2);
1669 O_Length
: aliased Natural := OS_Name
'Length;
1670 Encoding
: aliased String (1 .. 64);
1671 E_Length
: aliased Natural := Encoding
'Length;
1672 Length
: File_Offset
;
1675 -- Skip duplicated files
1677 if Is_Duplicated
(Info
.Sorted_Index
) then
1678 Put_Line
(" " & Info
.File_Name
.all & " skipped");
1679 Success
:= Overwrite_Files
;
1687 OS_Name
'Address, O_Length
'Access,
1688 Encoding
'Address, E_Length
'Access);
1691 E_Name
: constant String := OS_Name
(1 .. O_Length
);
1692 C_Name
: aliased constant String := E_Name
& ASCII
.NUL
;
1693 OS_Encoding
: constant String := Encoding
(1 .. E_Length
);
1694 File
: Stream_IO
.File_Type
;
1698 if not Overwrite_Files
and then Exists
(E_Name
) then
1699 raise Stream_IO
.Name_Error
;
1702 (File
, Stream_IO
.Out_File
, E_Name
, OS_Encoding
);
1707 when Stream_IO
.Name_Error | Stream_IO
.Use_Error
=>
1708 Error_Msg
("cannot create " & Info
.File_Name
.all);
1712 -- A length of 0 indicates that the rest of the file belongs to
1713 -- this unit. The actual length must be calculated now. Take into
1714 -- account that the last character (EOF) must not be written.
1716 if Info
.Length
= 0 then
1717 Length
:= Source
'Last - (Source
'First + Info
.Offset
);
1719 Length
:= Info
.Length
;
1722 -- Write BOM if required
1726 (Stream_IO
.Stream
(File
),
1727 Source
.all (Source
'First .. Source
'First + BOM_Length
- 1));
1730 -- Prepend configuration pragmas if necessary
1732 if Success
and then Info
.Bufferg
/= null then
1733 Write_Source_Reference_Pragma
(Info
, 1, File
, EOL
, Success
);
1734 String'Write (Stream_IO
.Stream
(File
), Info
.Bufferg
.all);
1737 Write_Source_Reference_Pragma
1738 (Info
, Info
.Start_Line
, File
, EOL
, Success
);
1743 (Stream_IO
.Stream
(File
),
1744 Source
(Source
'First + Info
.Offset
..
1745 Source
'First + Info
.Offset
+ Length
- 1));
1747 when Stream_IO
.Use_Error | Stream_IO
.Device_Error
=>
1748 Error_Msg
("disk full writing " & Info
.File_Name
.all);
1753 if not Quiet_Mode
then
1754 Put_Line
(" " & Info
.File_Name
.all);
1757 Stream_IO
.Close
(File
);
1759 if Preserve_Mode
then
1760 File_Time_Stamp
(C_Name
'Address, TS_Time
);
1765 procedure Check_Version_And_Help
is new Check_Version_And_Help_G
(Usage
);
1767 -- Start of processing for gnatchop
1770 -- Add the directory where gnatchop is invoked in front of the path, if
1771 -- gnatchop is invoked with directory information. Only do this if the
1772 -- platform is not VMS, where the notion of path does not really exist.
1774 if not Hostparm
.OpenVMS
then
1776 Command
: constant String := Command_Name
;
1779 for Index
in reverse Command
'Range loop
1780 if Command
(Index
) = Directory_Separator
then
1782 Absolute_Dir
: constant String :=
1784 (Command
(Command
'First .. Index
));
1785 PATH
: constant String :=
1788 & Getenv
("PATH").all;
1790 Setenv
("PATH", PATH
);
1799 -- Process command line options and initialize global variables
1801 -- First, scan to detect --version and/or --help
1803 Check_Version_And_Help
("GNATCHOP", "1998");
1805 if not Scan_Arguments
then
1806 Set_Exit_Status
(Failure
);
1810 -- Check presence of required executables
1812 Gnat_Cmd
:= Locate_Executable
(Gcc
.all, not Gcc_Set
);
1814 if Gnat_Cmd
= null then
1815 goto No_Files_Written
;
1818 -- First parse all files and read offset information
1820 for Num
in 1 .. File
.Last
loop
1821 if not Parse_File
(Num
) then
1822 goto No_Files_Written
;
1826 -- Check if any units have been found (assumes non-empty Unit.Table)
1828 if Unit
.Last
= 0 then
1829 if not Write_gnat_adc
then
1830 Error_Msg
("no compilation units found", Warning
=> True);
1833 goto No_Files_Written
;
1838 -- Check if any duplicate files would be created. If so, emit a warning if
1839 -- Overwrite_Files is true, otherwise generate an error.
1841 if Report_Duplicate_Units
and then not Overwrite_Files
then
1842 goto No_Files_Written
;
1845 -- Check if any files exist, if so do not write anything Because all files
1846 -- have been parsed and checked already, there won't be any duplicates
1848 if not Overwrite_Files
and then Files_Exist
then
1849 goto No_Files_Written
;
1852 -- After this point, all source files are read in succession and chopped
1853 -- into their destination files.
1855 -- Source_File_Name pragmas are handled as logical file 0 so write it first
1857 for F
in 1 .. File
.Last
loop
1858 if not Write_Chopped_Files
(F
) then
1859 Set_Exit_Status
(Failure
);
1864 if Warning_Count
> 0 then
1866 Warnings_Msg
: constant String := Warning_Count
'Img & " warning(s)";
1868 Error_Msg
(Warnings_Msg
(2 .. Warnings_Msg
'Last), Warning
=> True);
1874 <<No_Files_Written
>>
1876 -- Special error exit for all situations where no files have
1879 if not Write_gnat_adc
then
1880 Error_Msg
("no source files written", Warning
=> True);
1886 when Types
.Terminate_Program
=>