1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2010, 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 ALI
.Util
; use ALI
.Util
;
28 with Binderr
; use Binderr
;
29 with Butil
; use Butil
;
30 with Csets
; use Csets
;
31 with Fname
; use Fname
;
32 with Gnatvsn
; use Gnatvsn
;
33 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
34 with Namet
; use Namet
;
36 with Osint
; use Osint
;
37 with Osint
.L
; use Osint
.L
;
38 with Output
; use Output
;
39 with Rident
; use Rident
;
42 with Switch
; use Switch
;
43 with Types
; use Types
;
45 with GNAT
.Case_Util
; use GNAT
.Case_Util
;
48 pragma Ident
(Gnat_Static_Version_String
);
50 Gpr_Project_Path
: constant String := "GPR_PROJECT_PATH";
51 Ada_Project_Path
: constant String := "ADA_PROJECT_PATH";
52 -- Names of the env. variables that contains path name(s) of directories
53 -- where project files may reside. If GPR_PROJECT_PATH is defined, its
54 -- value is used, otherwise ADA_PROJECT_PATH is used, if defined.
56 -- NOTE : The following string may be used by other tools, such as GPS. So
57 -- it can only be modified if these other uses are checked and coordinated.
59 Project_Search_Path
: constant String := "Project Search Path:";
60 -- Label displayed in verbose mode before the directories in the project
61 -- search path. Do not modify without checking NOTE above.
63 No_Project_Default_Dir
: constant String := "-";
65 Max_Column
: constant := 80;
67 No_Obj
: aliased String := "<no_obj>";
70 OK
, -- matching timestamp
71 Checksum_OK
, -- only matching checksum
72 Not_Found
, -- file not found on source PATH
73 Not_Same
, -- neither checksum nor timestamp matching
74 Not_First_On_PATH
); -- matching file hidden by Not_Same file on path
77 type Dir_Ref
is access Dir_Data
;
79 type Dir_Data
is record
80 Value
: String_Access
;
85 First_Source_Dir
: Dir_Ref
;
86 Last_Source_Dir
: Dir_Ref
;
87 -- The list of source directories from the command line.
88 -- These directories are added using Osint.Add_Src_Search_Dir
89 -- after those of the GNAT Project File, if any.
91 First_Lib_Dir
: Dir_Ref
;
92 Last_Lib_Dir
: Dir_Ref
;
93 -- The list of object directories from the command line.
94 -- These directories are added using Osint.Add_Lib_Search_Dir
95 -- after those of the GNAT Project File, if any.
97 Main_File
: File_Name_Type
;
98 Ali_File
: File_Name_Type
;
99 Text
: Text_Buffer_Ptr
;
102 Too_Long
: Boolean := False;
103 -- When True, lines are too long for multi-column output and each
104 -- item of information is on a different line.
106 Selective_Output
: Boolean := False;
107 Print_Usage
: Boolean := False;
108 Print_Unit
: Boolean := True;
109 Print_Source
: Boolean := True;
110 Print_Object
: Boolean := True;
111 -- Flags controlling the form of the output
113 Also_Predef
: Boolean := False; -- -a
114 Dependable
: Boolean := False; -- -d
115 License
: Boolean := False; -- -l
116 Very_Verbose_Mode
: Boolean := False; -- -V
117 -- Command line flags
119 Unit_Start
: Integer;
121 Source_Start
: Integer;
122 Source_End
: Integer;
123 Object_Start
: Integer;
124 Object_End
: Integer;
125 -- Various column starts and ends
127 Spaces
: constant String (1 .. Max_Column
) := (others => ' ');
129 RTS_Specified
: String_Access
:= null;
130 -- Used to detect multiple use of --RTS= switch
132 -----------------------
133 -- Local Subprograms --
134 -----------------------
136 procedure Add_Lib_Dir
(Dir
: String);
137 -- Add an object directory in the list First_Lib_Dir-Last_Lib_Dir
139 procedure Add_Source_Dir
(Dir
: String);
140 -- Add a source directory in the list First_Source_Dir-Last_Source_Dir
142 procedure Find_General_Layout
;
143 -- Determine the structure of the output (multi columns or not, etc)
145 procedure Find_Status
146 (FS
: in out File_Name_Type
;
147 Stamp
: Time_Stamp_Type
;
149 Status
: out File_Status
);
150 -- Determine the file status (Status) of the file represented by FS
151 -- with the expected Stamp and checksum given as argument. FS will be
152 -- updated to the full file name if available.
154 function Corresponding_Sdep_Entry
(A
: ALI_Id
; U
: Unit_Id
) return Sdep_Id
;
155 -- Give the Sdep entry corresponding to the unit U in ali record A
157 procedure Output_Object
(O
: File_Name_Type
);
158 -- Print out the name of the object when requested
160 procedure Output_Source
(Sdep_I
: Sdep_Id
);
161 -- Print out the name and status of the source corresponding to this
164 procedure Output_Status
(FS
: File_Status
; Verbose
: Boolean);
165 -- Print out FS either in a coded form if verbose is false or in an
166 -- expanded form otherwise.
168 procedure Output_Unit
(ALI
: ALI_Id
; U_Id
: Unit_Id
);
169 -- Print out information on the unit when requested
171 procedure Reset_Print
;
172 -- Reset Print flags properly when selective output is chosen
174 procedure Scan_Ls_Arg
(Argv
: String);
175 -- Scan and process lser specific arguments. Argv is a single argument
178 -- Print usage message
180 procedure Output_License_Information
;
181 -- Output license statement, and if not found, output reference to
184 function Image
(Restriction
: Restriction_Id
) return String;
185 -- Returns the capitalized image of Restriction
187 ------------------------------------------
188 -- GNATDIST specific output subprograms --
189 ------------------------------------------
193 -- Any modification to this subunit requires synchronization with the
196 procedure Output_ALI
(A
: ALI_Id
);
197 -- Comment required saying what this routine does ???
199 procedure Output_No_ALI
(Afile
: File_Name_Type
);
200 -- Comments required saying what this routine does ???
208 procedure Add_Lib_Dir
(Dir
: String) is
210 if First_Lib_Dir
= null then
213 (Value => new String'(Dir
),
215 Last_Lib_Dir
:= First_Lib_Dir
;
220 (Value => new String'(Dir
),
222 Last_Lib_Dir
:= Last_Lib_Dir
.Next
;
230 procedure Add_Source_Dir
(Dir
: String) is
232 if First_Source_Dir
= null then
235 (Value => new String'(Dir
),
237 Last_Source_Dir
:= First_Source_Dir
;
240 Last_Source_Dir
.Next
:=
242 (Value => new String'(Dir
),
244 Last_Source_Dir
:= Last_Source_Dir
.Next
;
248 ------------------------------
249 -- Corresponding_Sdep_Entry --
250 ------------------------------
252 function Corresponding_Sdep_Entry
254 U
: Unit_Id
) return Sdep_Id
257 for D
in ALIs
.Table
(A
).First_Sdep
.. ALIs
.Table
(A
).Last_Sdep
loop
258 if Sdep
.Table
(D
).Sfile
= Units
.Table
(U
).Sfile
then
263 Error_Msg_Unit_1
:= Units
.Table
(U
).Uname
;
264 Error_Msg_File_1
:= ALIs
.Table
(A
).Afile
;
266 Error_Msg
("wrong ALI format, can't find dependency line for $ in {");
267 Exit_Program
(E_Fatal
);
269 end Corresponding_Sdep_Entry
;
271 -------------------------
272 -- Find_General_Layout --
273 -------------------------
275 procedure Find_General_Layout
is
276 Max_Unit_Length
: Integer := 11;
277 Max_Src_Length
: Integer := 11;
278 Max_Obj_Length
: Integer := 11;
284 -- Compute maximum of each column
286 for Id
in ALIs
.First
.. ALIs
.Last
loop
287 Get_Name_String
(Units
.Table
(ALIs
.Table
(Id
).First_Unit
).Uname
);
288 if Also_Predef
or else not Is_Internal_Unit
then
292 Max_Unit_Length
:= Integer'Max (Max_Unit_Length
, Len
);
296 FS
:= Full_Source_Name
(ALIs
.Table
(Id
).Sfile
);
299 Get_Name_String
(ALIs
.Table
(Id
).Sfile
);
300 Name_Len
:= Name_Len
+ 13;
302 Get_Name_String
(FS
);
305 Max_Src_Length
:= Integer'Max (Max_Src_Length
, Name_Len
+ 1);
309 if ALIs
.Table
(Id
).No_Object
then
311 Integer'Max (Max_Obj_Length
, No_Obj
'Length);
313 Get_Name_String
(ALIs
.Table
(Id
).Ofile_Full_Name
);
314 Max_Obj_Length
:= Integer'Max (Max_Obj_Length
, Name_Len
+ 1);
320 -- Verify is output is not wider than maximum number of columns
325 (Max_Unit_Length
+ Max_Src_Length
+ Max_Obj_Length
) > Max_Column
;
327 -- Set start and end of columns
330 Object_End
:= Object_Start
- 1;
333 Object_End
:= Object_Start
+ Max_Obj_Length
;
336 Unit_Start
:= Object_End
+ 1;
337 Unit_End
:= Unit_Start
- 1;
340 Unit_End
:= Unit_Start
+ Max_Unit_Length
;
343 Source_Start
:= Unit_End
+ 1;
345 if Source_Start
> Spaces
'Last then
346 Source_Start
:= Spaces
'Last;
349 Source_End
:= Source_Start
- 1;
352 Source_End
:= Source_Start
+ Max_Src_Length
;
354 end Find_General_Layout
;
360 procedure Find_Status
361 (FS
: in out File_Name_Type
;
362 Stamp
: Time_Stamp_Type
;
364 Status
: out File_Status
)
366 Tmp1
: File_Name_Type
;
367 Tmp2
: File_Name_Type
;
370 Tmp1
:= Full_Source_Name
(FS
);
372 if Tmp1
= No_File
then
375 elsif File_Stamp
(Tmp1
) = Stamp
then
379 elsif Checksums_Match
(Get_File_Checksum
(FS
), Checksum
) then
381 Status
:= Checksum_OK
;
384 Tmp2
:= Matching_Full_Source_Name
(FS
, Stamp
);
386 if Tmp2
= No_File
then
391 Status
:= Not_First_On_PATH
;
401 package body GNATDIST
is
404 N_Indents
: Natural := 0;
435 Image
: constant array (Token_Type
) of String_Access
:=
436 (T_No_ALI
=> new String'("No_ALI"),
437 T_ALI => new String'("ALI"),
438 T_Unit
=> new String'("Unit"),
439 T_With => new String'("With"),
440 T_Source
=> new String'("Source"),
441 T_Afile => new String'("Afile"),
442 T_Ofile
=> new String'("Ofile"),
443 T_Sfile => new String'("Sfile"),
444 T_Name
=> new String'("Name"),
445 T_Main => new String'("Main"),
446 T_Kind
=> new String'("Kind"),
447 T_Flags => new String'("Flags"),
448 T_Preelaborated
=> new String'("Preelaborated"),
449 T_Pure => new String'("Pure"),
450 T_Has_RACW
=> new String'("Has_RACW"),
451 T_Remote_Types => new String'("Remote_Types"),
452 T_Shared_Passive
=> new String'("Shared_Passive"),
453 T_RCI => new String'("RCI"),
454 T_Predefined
=> new String'("Predefined"),
455 T_Internal => new String'("Internal"),
456 T_Is_Generic
=> new String'("Is_Generic"),
457 T_Procedure => new String'("procedure"),
458 T_Function
=> new String'("function"),
459 T_Package => new String'("package"),
460 T_Subprogram
=> new String'("subprogram"),
461 T_Spec => new String'("spec"),
462 T_Body
=> new String'("body"));
464 procedure Output_Name (N : Name_Id);
465 -- Remove any encoding info (%b and %s) and output N
467 procedure Output_Afile (A : File_Name_Type);
468 procedure Output_Ofile (O : File_Name_Type);
469 procedure Output_Sfile (S : File_Name_Type);
470 -- Output various names. Check that the name is different from no name.
471 -- Otherwise, skip the output.
473 procedure Output_Token (T : Token_Type);
474 -- Output token using specific format. That is several indentations and:
476 -- T_No_ALI .. T_With : <token> & " =>" & NL
477 -- T_Source .. T_Kind : <token> & " => "
478 -- T_Flags : <token> & " =>"
479 -- T_Preelab .. T_Body : " " & <token>
481 procedure Output_Sdep (S : Sdep_Id);
482 procedure Output_Unit (U : Unit_Id);
483 procedure Output_With (W : With_Id);
484 -- Output this entry as a global section (like ALIs)
490 procedure Output_Afile (A : File_Name_Type) is
493 Output_Token (T_Afile);
503 procedure Output_ALI (A : ALI_Id) is
505 Output_Token (T_ALI);
506 N_Indents := N_Indents + 1;
508 Output_Afile (ALIs.Table (A).Afile);
509 Output_Ofile (ALIs.Table (A).Ofile_Full_Name);
510 Output_Sfile (ALIs.Table (A).Sfile);
514 if ALIs.Table (A).Main_Program /= None then
515 Output_Token (T_Main);
517 if ALIs.Table (A).Main_Program = Proc then
518 Output_Token (T_Procedure);
520 Output_Token (T_Function);
528 for U in ALIs.Table (A).First_Unit .. ALIs.Table (A).Last_Unit loop
534 for S in ALIs.Table (A).First_Sdep .. ALIs.Table (A).Last_Sdep loop
538 N_Indents := N_Indents - 1;
545 procedure Output_No_ALI (Afile : File_Name_Type) is
547 Output_Token (T_No_ALI);
548 N_Indents := N_Indents + 1;
549 Output_Afile (Afile);
550 N_Indents := N_Indents - 1;
557 procedure Output_Name (N : Name_Id) is
559 -- Remove any encoding info (%s or %b)
564 and then Name_Buffer (Name_Len - 1) = '%'
566 Name_Len := Name_Len - 2;
569 Output_Token (T_Name);
570 Write_Str (Name_Buffer (1 .. Name_Len));
578 procedure Output_Ofile (O : File_Name_Type) is
581 Output_Token (T_Ofile);
591 procedure Output_Sdep (S : Sdep_Id) is
593 Output_Token (T_Source);
594 Write_Name (Sdep.Table (S).Sfile);
602 procedure Output_Sfile (S : File_Name_Type) is
603 FS : File_Name_Type := S;
606 if FS /= No_File then
608 -- We want to output the full source name
610 FS := Full_Source_Name (FS);
612 -- There is no full source name. This occurs for instance when a
613 -- withed unit has a spec file but no body file. This situation is
614 -- not a problem for GNATDIST since the unit may be located on a
615 -- partition we do not want to build. However, we need to locate
616 -- the spec file and to find its full source name. Replace the
617 -- body file name with the spec file name used to compile the
618 -- current unit when possible.
624 and then Name_Buffer (Name_Len - 3 .. Name_Len) = ".adb"
626 Name_Buffer (Name_Len) := 's
';
627 FS := Full_Source_Name (Name_Find);
632 if FS /= No_File then
633 Output_Token (T_Sfile);
643 procedure Output_Token (T : Token_Type) is
645 if T in T_No_ALI .. T_Flags then
646 for J in 1 .. N_Indents loop
650 Write_Str (Image (T).all);
652 for J in Image (T)'Length .. 12 loop
658 if T in T_No_ALI .. T_With then
660 elsif T in T_Source .. T_Name then
664 elsif T in T_Preelaborated .. T_Body then
665 if T in T_Preelaborated .. T_Is_Generic then
667 Output_Token (T_Flags);
670 N_Flags := N_Flags + 1;
674 Write_Str (Image (T).all);
677 Write_Str (Image (T).all);
685 procedure Output_Unit (U : Unit_Id) is
687 Output_Token (T_Unit);
688 N_Indents := N_Indents + 1;
692 Output_Name (Name_Id (Units.Table (U).Uname));
696 Output_Token (T_Kind);
698 if Units.Table (U).Unit_Kind = 'p
' then
699 Output_Token (T_Package);
701 Output_Token (T_Subprogram);
704 if Name_Buffer (Name_Len) = 's
' then
705 Output_Token (T_Spec);
707 Output_Token (T_Body);
712 -- Output source file name
714 Output_Sfile (Units.Table (U).Sfile);
720 if Units.Table (U).Preelab then
721 Output_Token (T_Preelaborated);
724 if Units.Table (U).Pure then
725 Output_Token (T_Pure);
728 if Units.Table (U).Has_RACW then
729 Output_Token (T_Has_RACW);
732 if Units.Table (U).Remote_Types then
733 Output_Token (T_Remote_Types);
736 if Units.Table (U).Shared_Passive then
737 Output_Token (T_Shared_Passive);
740 if Units.Table (U).RCI then
741 Output_Token (T_RCI);
744 if Units.Table (U).Predefined then
745 Output_Token (T_Predefined);
748 if Units.Table (U).Internal then
749 Output_Token (T_Internal);
752 if Units.Table (U).Is_Generic then
753 Output_Token (T_Is_Generic);
762 for W in Units.Table (U).First_With .. Units.Table (U).Last_With loop
766 N_Indents := N_Indents - 1;
773 procedure Output_With (W : With_Id) is
775 Output_Token (T_With);
776 N_Indents := N_Indents + 1;
778 Output_Name (Name_Id (Withs.Table (W).Uname));
782 Output_Token (T_Kind);
784 if Name_Buffer (Name_Len) = 's
' then
785 Output_Token (T_Spec);
787 Output_Token (T_Body);
792 Output_Afile (Withs.Table (W).Afile);
793 Output_Sfile (Withs.Table (W).Sfile);
795 N_Indents := N_Indents - 1;
804 function Image (Restriction : Restriction_Id) return String is
805 Result : String := Restriction'Img;
806 Skip : Boolean := True;
809 for J in Result'Range loop
812 Result (J) := To_Upper (Result (J));
814 elsif Result (J) = '_
' then
818 Result (J) := To_Lower (Result (J));
825 --------------------------------
826 -- Output_License_Information --
827 --------------------------------
829 procedure Output_License_Information is
830 Params_File_Name : constant String := "gnatlic.adl";
831 -- Name of license file
833 Lo : constant Source_Ptr := 1;
835 Text : Source_Buffer_Ptr;
839 Add_Str_To_Name_Buffer (Params_File_Name);
840 Read_Source_File (Name_Find, Lo, Hi, Text);
844 -- Omit last character (end-of-file marker) in output
846 Write_Str (String (Text (Lo .. Hi - 1)));
849 -- The following condition is determined at compile time: disable
850 -- "condition is always true/false" warning.
852 pragma Warnings (Off);
853 elsif Build_Type /= GPL and then Build_Type /= FSF then
854 pragma Warnings (On);
856 Write_Str ("License file missing, please contact AdaCore.");
860 Write_Str ("Please refer to file COPYING in your distribution"
861 & " for license terms.");
866 Exit_Program (E_Success);
867 end Output_License_Information;
873 procedure Output_Object (O : File_Name_Type) is
874 Object_Name : String_Access;
880 Object_Name := To_Host_File_Spec (Name_Buffer (1 .. Name_Len));
882 Object_Name := No_Obj'Unchecked_Access;
885 Write_Str (Object_Name.all);
887 if Print_Source or else Print_Unit then
893 (Object_Start + Object_Name'Length .. Object_End));
903 procedure Output_Source (Sdep_I : Sdep_Id) is
904 Stamp : Time_Stamp_Type;
907 Status : File_Status;
908 Object_Name : String_Access;
911 if Sdep_I = No_Sdep_Id then
915 Stamp := Sdep.Table (Sdep_I).Stamp;
916 Checksum := Sdep.Table (Sdep_I).Checksum;
917 FS := Sdep.Table (Sdep_I).Sfile;
920 Find_Status (FS, Stamp, Checksum, Status);
921 Get_Name_String (FS);
923 Object_Name := To_Host_File_Spec (Name_Buffer (1 .. Name_Len));
926 Write_Str (" Source => ");
927 Write_Str (Object_Name.all);
931 (Spaces (Source_Start + Object_Name'Length .. Source_End));
934 Output_Status (Status, Verbose => True);
939 if not Selective_Output then
940 Output_Status (Status, Verbose => False);
943 Write_Str (Object_Name.all);
952 procedure Output_Status (FS : File_Status; Verbose : Boolean) is
957 Write_Str (" unchanged");
960 Write_Str (" slightly modified");
963 Write_Str (" file not found");
966 Write_Str (" modified");
968 when Not_First_On_PATH =>
969 Write_Str (" unchanged version not first on PATH");
986 when Not_First_On_PATH =>
996 procedure Output_Unit (ALI : ALI_Id; U_Id : Unit_Id) is
998 U : Unit_Record renames Units.Table (U_Id);
1002 Get_Name_String (U.Uname);
1003 Kind := Name_Buffer (Name_Len);
1004 Name_Len := Name_Len - 2;
1006 if not Verbose_Mode then
1007 Write_Str (Name_Buffer (1 .. Name_Len));
1010 Write_Str ("Unit => ");
1012 Write_Str (" Name => ");
1013 Write_Str (Name_Buffer (1 .. Name_Len));
1015 Write_Str (" Kind => ");
1017 if Units.Table (U_Id).Unit_Kind = 'p
' then
1018 Write_Str ("package ");
1020 Write_Str ("subprogram ");
1030 if Verbose_Mode then
1031 if U.Preelab or else
1034 U.Dynamic_Elab or else
1036 U.Remote_Types or else
1037 U.Shared_Passive or else
1039 U.Predefined or else
1041 U.Is_Generic or else
1042 U.Init_Scalars or else
1043 U.SAL_Interface or else
1044 U.Body_Needed_For_SAL or else
1048 Write_Str (" Flags =>");
1051 Write_Str (" Preelaborable");
1055 Write_Str (" No_Elab_Code");
1059 Write_Str (" Pure");
1062 if U.Dynamic_Elab then
1063 Write_Str (" Dynamic_Elab");
1067 Write_Str (" Has_RACW");
1070 if U.Remote_Types then
1071 Write_Str (" Remote_Types");
1074 if U.Shared_Passive then
1075 Write_Str (" Shared_Passive");
1082 if U.Predefined then
1083 Write_Str (" Predefined");
1087 Write_Str (" Internal");
1090 if U.Is_Generic then
1091 Write_Str (" Is_Generic");
1094 if U.Init_Scalars then
1095 Write_Str (" Init_Scalars");
1098 if U.SAL_Interface then
1099 Write_Str (" SAL_Interface");
1102 if U.Body_Needed_For_SAL then
1103 Write_Str (" Body_Needed_For_SAL");
1106 if U.Elaborate_Body then
1107 Write_Str (" Elaborate Body");
1110 if U.Remote_Types then
1111 Write_Str (" Remote_Types");
1114 if U.Shared_Passive then
1115 Write_Str (" Shared_Passive");
1118 if U.Predefined then
1119 Write_Str (" Predefined");
1124 Restrictions : constant Restrictions_Info :=
1125 ALIs.Table (ALI).Restrictions;
1128 -- If the source was compiled with pragmas Restrictions,
1129 -- Display these restrictions.
1131 if Restrictions.Set /= (All_Restrictions => False) then
1133 Write_Str (" pragma Restrictions =>");
1135 -- For boolean restrictions, just display the name of the
1136 -- restriction; for valued restrictions, also display the
1137 -- restriction value.
1139 for Restriction in All_Restrictions loop
1140 if Restrictions.Set (Restriction) then
1143 Write_Str (Image (Restriction));
1145 if Restriction in All_Parameter_Restrictions then
1147 Write_Str (Restrictions.Value (Restriction)'Img);
1153 -- If the unit violates some Restrictions, display the list of
1154 -- these restrictions.
1156 if Restrictions.Violated /= (All_Restrictions => False) then
1158 Write_Str (" Restrictions violated =>");
1160 -- For boolean restrictions, just display the name of the
1161 -- restriction. For valued restrictions, also display the
1162 -- restriction value.
1164 for Restriction in All_Restrictions loop
1165 if Restrictions.Violated (Restriction) then
1168 Write_Str (Image (Restriction));
1170 if Restriction in All_Parameter_Restrictions then
1171 if Restrictions.Count (Restriction) > 0 then
1174 if Restrictions.Unknown (Restriction) then
1175 Write_Str (" at least");
1178 Write_Str (Restrictions.Count (Restriction)'Img);
1187 if Print_Source then
1192 Write_Str (Spaces (Unit_Start + Name_Len + 1 .. Unit_End));
1202 procedure Reset_Print is
1204 if not Selective_Output then
1205 Selective_Output := True;
1206 Print_Source := False;
1207 Print_Object := False;
1208 Print_Unit := False;
1216 procedure Scan_Ls_Arg (Argv : String) is
1217 FD : File_Descriptor;
1221 pragma Assert (Argv'First = 1);
1223 if Argv'Length = 0 then
1227 if Argv (1) = '-' then
1228 if Argv'Length = 1 then
1229 Fail ("switch character cannot be followed by a blank");
1231 -- Processing for -I-
1233 elsif Argv (2 .. Argv'Last) = "I-" then
1234 Opt.Look_In_Primary_Dir := False;
1236 -- Forbid -?- or -??- where ? is any character
1238 elsif (Argv'Length = 3 and then Argv (3) = '-')
1239 or else (Argv'Length = 4 and then Argv (4) = '-')
1241 Fail ("Trailing ""-"" at the end of " & Argv & " forbidden.");
1243 -- Processing for -Idir
1245 elsif Argv (2) = 'I
' then
1246 Add_Source_Dir (Argv (3 .. Argv'Last));
1247 Add_Lib_Dir (Argv (3 .. Argv'Last));
1249 -- Processing for -aIdir (to gcc this is like a -I switch)
1251 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aI" then
1252 Add_Source_Dir (Argv (4 .. Argv'Last));
1254 -- Processing for -aOdir
1256 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aO" then
1257 Add_Lib_Dir (Argv (4 .. Argv'Last));
1259 -- Processing for -aLdir (to gnatbind this is like a -aO switch)
1261 elsif Argv'Length >= 3 and then Argv (2 .. 3) = "aL" then
1262 Add_Lib_Dir (Argv (4 .. Argv'Last));
1264 -- Processing for -nostdinc
1266 elsif Argv (2 .. Argv'Last) = "nostdinc" then
1267 Opt.No_Stdinc := True;
1269 -- Processing for one character switches
1271 elsif Argv'Length = 2 then
1273 when 'a
' => Also_Predef := True;
1274 when 'h
' => Print_Usage := True;
1275 when 'u
' => Reset_Print; Print_Unit := True;
1276 when 's
' => Reset_Print; Print_Source := True;
1277 when 'o
' => Reset_Print; Print_Object := True;
1278 when 'v
' => Verbose_Mode := True;
1279 when 'd
' => Dependable := True;
1280 when 'l
' => License := True;
1281 when 'V
' => Very_Verbose_Mode := True;
1283 when others => null;
1286 -- Processing for -files=file
1288 elsif Argv'Length > 7 and then Argv (1 .. 7) = "-files=" then
1289 FD := Open_Read (Argv (8 .. Argv'Last), GNAT.OS_Lib.Text);
1291 if FD = Invalid_FD then
1292 Osint.Fail ("could not find text file """ &
1293 Argv (8 .. Argv'Last) & '"');
1296 Len := Integer (File_Length (FD));
1299 Buffer : String (1 .. Len + 1);
1300 Index : Positive := 1;
1306 Len := Read (FD, Buffer (1)'Address, Len);
1307 Buffer (Buffer'Last) := ASCII.NUL;
1310 -- Scan the file line by line
1312 while Index < Buffer'Last loop
1314 -- Find the end of line
1317 while Last <= Buffer'Last
1318 and then Buffer (Last) /= ASCII.LF
1319 and then Buffer (Last) /= ASCII.CR
1324 -- Ignore empty lines
1326 if Last > Index then
1327 Add_File (Buffer (Index .. Last - 1));
1330 -- Find the beginning of the next line
1333 while Buffer (Index) = ASCII.CR or else
1334 Buffer (Index) = ASCII.LF
1341 -- Processing for --RTS=path
1343 elsif Argv'Length >= 5 and then Argv (1 .. 5) = "--RTS" then
1344 if Argv
'Length <= 6 or else Argv
(6) /= '='then
1345 Osint
.Fail
("missing path for --RTS");
1348 -- Check that it is the first time we see this switch or, if
1349 -- it is not the first time, the same path is specified.
1351 if RTS_Specified
= null then
1352 RTS_Specified
:= new String'(Argv (7 .. Argv'Last));
1354 elsif RTS_Specified.all /= Argv (7 .. Argv'Last) then
1355 Osint.Fail ("--RTS cannot be specified multiple times");
1358 -- Valid --RTS switch
1360 Opt.No_Stdinc := True;
1361 Opt.RTS_Switch := True;
1364 Src_Path_Name : constant String_Ptr :=
1366 (Argv (7 .. Argv'Last), Include);
1367 Lib_Path_Name : constant String_Ptr :=
1369 (Argv (7 .. Argv'Last), Objects);
1372 if Src_Path_Name /= null
1373 and then Lib_Path_Name /= null
1375 Add_Search_Dirs (Src_Path_Name, Include);
1376 Add_Search_Dirs (Lib_Path_Name, Objects);
1378 elsif Src_Path_Name = null
1379 and then Lib_Path_Name = null
1381 Osint.Fail ("RTS path not valid: missing " &
1382 "adainclude and adalib directories");
1384 elsif Src_Path_Name = null then
1385 Osint.Fail ("RTS path not valid: missing " &
1386 "adainclude directory");
1388 elsif Lib_Path_Name = null then
1389 Osint.Fail ("RTS path not valid: missing " &
1390 "adalib directory");
1396 -- If not a switch, it must be a file name
1411 Write_Str ("Usage: ");
1412 Osint.Write_Program_Name;
1413 Write_Str (" switches [list of object files]");
1419 Write_Str ("switches:");
1424 Write_Str (" -a also output relevant predefined units");
1429 Write_Str (" -u output only relevant unit names");
1434 Write_Str (" -h output this help message");
1439 Write_Str (" -s output only relevant source names");
1444 Write_Str (" -o output only relevant object names");
1449 Write_Str (" -d output sources on which specified units " &
1455 Write_Str (" -l output license information");
1460 Write_Str (" -v verbose output, full path and unit " &
1467 Write_Str (" -files=fil files are listed in text file 'fil
'");
1470 -- Line for -aI switch
1472 Write_Str (" -aIdir specify source files search path");
1475 -- Line for -aO switch
1477 Write_Str (" -aOdir specify object files search path");
1480 -- Line for -I switch
1482 Write_Str (" -Idir like -aIdir -aOdir");
1485 -- Line for -I- switch
1487 Write_Str (" -I- do not look for sources & object files");
1488 Write_Str (" in the default directory");
1491 -- Line for -nostdinc
1493 Write_Str (" -nostdinc do not look for source files");
1494 Write_Str (" in the system default directory");
1499 Write_Str (" --RTS=dir specify the default source and object search"
1503 -- File Status explanation
1506 Write_Str (" file status can be:");
1509 for ST in File_Status loop
1511 Output_Status (ST, Verbose => False);
1512 Write_Str (" ==> ");
1513 Output_Status (ST, Verbose => True);
1518 procedure Check_Version_And_Help is new Check_Version_And_Help_G (Usage);
1520 -- Start of processing for Gnatls
1523 -- Initialize standard packages
1528 -- First check for --version or --help
1530 Check_Version_And_Help ("GNATLS", "1997");
1532 -- Loop to scan out arguments
1535 Scan_Args : while Next_Arg < Arg_Count loop
1537 Next_Argv : String (1 .. Len_Arg (Next_Arg));
1539 Fill_Arg (Next_Argv'Address, Next_Arg);
1540 Scan_Ls_Arg (Next_Argv);
1543 Next_Arg := Next_Arg + 1;
1546 -- If -l (output license information) is given, it must be the only switch
1548 if License and then Arg_Count /= 2 then
1549 Write_Str ("Can't use -l with another switch");
1552 Exit_Program (E_Fatal);
1555 -- Add the source and object directories specified on the command line, if
1556 -- any, to the searched directories.
1558 while First_Source_Dir /= null loop
1559 Add_Src_Search_Dir (First_Source_Dir.Value.all);
1560 First_Source_Dir := First_Source_Dir.Next;
1563 while First_Lib_Dir /= null loop
1564 Add_Lib_Search_Dir (First_Lib_Dir.Value.all);
1565 First_Lib_Dir := First_Lib_Dir.Next;
1568 -- Finally, add the default directories and obtain target parameters
1570 Osint.Add_Default_Search_Dirs;
1572 if Verbose_Mode then
1574 Display_Version ("GNATLS", "1997");
1576 Write_Str ("Source Search Path:");
1579 for J in 1 .. Nb_Dir_In_Src_Search_Path loop
1582 if Dir_In_Src_Search_Path (J)'Length = 0 then
1583 Write_Str ("<Current_Directory>");
1585 Write_Str (To_Host_Dir_Spec
1586 (Dir_In_Src_Search_Path (J).all, True).all);
1594 Write_Str ("Object Search Path:");
1597 for J in 1 .. Nb_Dir_In_Obj_Search_Path loop
1600 if Dir_In_Obj_Search_Path (J)'Length = 0 then
1601 Write_Str ("<Current_Directory>");
1603 Write_Str (To_Host_Dir_Spec
1604 (Dir_In_Obj_Search_Path (J).all, True).all);
1612 Write_Str (Project_Search_Path);
1614 Write_Str (" <Current_Directory>");
1618 Project_Path : String_Access := Getenv (Gpr_Project_Path);
1620 Lib : constant String :=
1621 Directory_Separator & "lib" & Directory_Separator;
1626 Add_Default_Dir : Boolean := True;
1629 -- If there is a project path, display each directory in the path
1631 if Project_Path.all = "" then
1632 Project_Path := Getenv (Ada_Project_Path);
1635 if Project_Path.all /= "" then
1636 First := Project_Path'First;
1638 while First <= Project_Path'Last
1639 and then (Project_Path (First) = Path_Separator)
1644 exit when First > Project_Path'Last;
1647 while Last < Project_Path'Last
1648 and then Project_Path (Last + 1) /= Path_Separator
1653 -- If the directory is No_Default_Project_Dir, set
1654 -- Add_Default_Dir to False.
1656 if Project_Path (First .. Last) = No_Project_Default_Dir then
1657 Add_Default_Dir := False;
1659 elsif First /= Last or else Project_Path (First) /= '.' then
1661 -- If the directory is ".", skip it as it is the current
1662 -- directory and it is already the first directory in the
1668 (Project_Path (First .. Last), True).all);
1676 -- Add the default dir, except if "-" was one of the "directories"
1677 -- specified in ADA_PROJECT_DIR.
1679 if Add_Default_Dir then
1681 Add_Str_To_Name_Buffer (Sdefault.Search_Dir_Prefix.all);
1683 -- On Windows, make sure that all directory separators are '\
'
1685 if Directory_Separator /= '/' then
1686 for J in 1 .. Name_Len loop
1687 if Name_Buffer (J) = '/' then
1688 Name_Buffer (J) := Directory_Separator;
1693 -- Find the sequence "/lib/"
1695 while Name_Len >= Lib'Length
1696 and then Name_Buffer (Name_Len - 4 .. Name_Len) /= Lib
1698 Name_Len := Name_Len - 1;
1701 -- If the sequence "/lib"/ was found, display the default
1702 -- directory <prefix>/lib/gnat/.
1704 if Name_Len >= 5 then
1705 Name_Buffer (Name_Len + 1 .. Name_Len + 4) := "gnat";
1706 Name_Buffer (Name_Len + 5) := Directory_Separator;
1707 Name_Len := Name_Len + 5;
1710 (To_Host_Dir_Spec (Name_Buffer (1 .. Name_Len), True).all);
1718 -- Output usage information when requested
1724 -- Output license information when requested
1727 Output_License_Information;
1728 Exit_Program (E_Success);
1731 if not More_Lib_Files then
1732 if not Print_Usage and then not Verbose_Mode then
1736 Exit_Program (E_Fatal);
1740 Initialize_ALI_Source;
1742 -- Print out all library for which no ALI files can be located
1744 while More_Lib_Files loop
1745 Main_File := Next_Main_Lib_File;
1746 Ali_File := Full_Lib_File_Name (Lib_File_Name (Main_File));
1748 if Ali_File = No_File then
1749 if Very_Verbose_Mode then
1750 GNATDIST.Output_No_ALI (Lib_File_Name (Main_File));
1753 Write_Str ("Can't find library info for ");
1754 Get_Name_String (Main_File);
1755 Write_Char ('"'); -- "
1756 Write_Str
(Name_Buffer
(1 .. Name_Len
));
1757 Write_Char
('"'); -- "
1762 Ali_File
:= Strip_Directory
(Ali_File
);
1764 if Get_Name_Table_Info
(Ali_File
) = 0 then
1765 Text
:= Read_Library_Info
(Ali_File
, True);
1769 pragma Unreferenced
(Discard
);
1777 Ignore_Errors
=> True);
1785 if Very_Verbose_Mode
then
1786 for A
in ALIs
.First
.. ALIs
.Last
loop
1787 GNATDIST
.Output_ALI
(A
);
1793 Find_General_Layout
;
1795 for Id
in ALIs
.First
.. ALIs
.Last
loop
1800 Get_Name_String
(Units
.Table
(ALIs
.Table
(Id
).First_Unit
).Uname
);
1802 if Also_Predef
or else not Is_Internal_Unit
then
1803 if ALIs
.Table
(Id
).No_Object
then
1804 Output_Object
(No_File
);
1806 Output_Object
(ALIs
.Table
(Id
).Ofile_Full_Name
);
1809 -- In verbose mode print all main units in the ALI file, otherwise
1810 -- just print the first one to ease columnwise printout
1812 if Verbose_Mode
then
1813 Last_U
:= ALIs
.Table
(Id
).Last_Unit
;
1815 Last_U
:= ALIs
.Table
(Id
).First_Unit
;
1818 for U
in ALIs
.Table
(Id
).First_Unit
.. Last_U
loop
1819 if U
/= ALIs
.Table
(Id
).First_Unit
1820 and then Selective_Output
1826 Output_Unit
(Id
, U
);
1828 -- Output source now, unless if it will be done as part of
1829 -- outputing dependencies.
1831 if not (Dependable
and then Print_Source
) then
1832 Output_Source
(Corresponding_Sdep_Entry
(Id
, U
));
1836 -- Print out list of units on which this unit depends (D lines)
1838 if Dependable
and then Print_Source
then
1839 if Verbose_Mode
then
1840 Write_Str
("depends upon");
1848 ALIs
.Table
(Id
).First_Sdep
.. ALIs
.Table
(Id
).Last_Sdep
1851 or else not Is_Internal_File_Name
(Sdep
.Table
(D
).Sfile
)
1853 if Verbose_Mode
then
1863 Write_Str
(Spaces
(1 .. Source_Start
- 2));
1876 -- All done. Set proper exit status
1879 Exit_Program
(E_Success
);