1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2003-2005, 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 with Ada
.Command_Line
; use Ada
.Command_Line
;
34 with MLib
.Tgt
; use MLib
.Tgt
;
35 with Namet
; use Namet
;
37 with Osint
; use Osint
;
38 with Osint
.M
; use Osint
.M
;
43 with Prj
.Util
; use Prj
.Util
;
46 with Types
; use Types
;
48 with GNAT
.Directory_Operations
; use GNAT
.Directory_Operations
;
49 with GNAT
.IO
; use GNAT
.IO
;
50 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
54 Initialized
: Boolean := False;
55 -- Set to True by the first call to Initialize.
56 -- To avoid reinitialization of some packages.
58 -- Suffixes of various files
60 Assembly_Suffix
: constant String := ".s";
61 ALI_Suffix
: constant String := ".ali";
62 Tree_Suffix
: constant String := ".adt";
63 Object_Suffix
: constant String := Get_Object_Suffix
.all;
64 Debug_Suffix
: String := ".dg";
65 -- Changed to "_dg" for VMS in the body of the package
67 Repinfo_Suffix
: String := ".rep";
68 -- Changed to "_rep" for VMS in the body of the package
70 B_Start
: String := "b~";
71 -- Prefix of binder generated file.
72 -- Changed to "b$" for VMS in the body of the package.
74 Object_Directory_Path
: String_Access
:= null;
75 -- The path name of the object directory, set with switch -D
77 Force_Deletions
: Boolean := False;
78 -- Set to True by switch -f. When True, attempts to delete non writable
79 -- files will be done.
81 Do_Nothing
: Boolean := False;
82 -- Set to True when switch -n is specified. When True, no file is deleted.
83 -- gnatclean only lists the files that would have been deleted if the
84 -- switch -n had not been specified.
86 File_Deleted
: Boolean := False;
87 -- Set to True if at least one file has been deleted
89 Copyright_Displayed
: Boolean := False;
90 Usage_Displayed
: Boolean := False;
92 Project_File_Name
: String_Access
:= null;
94 Project_Tree
: constant Prj
.Project_Tree_Ref
:= new Prj
.Project_Tree_Data
;
96 Main_Project
: Prj
.Project_Id
:= Prj
.No_Project
;
98 All_Projects
: Boolean := False;
100 -- Packages of project files where unknown attributes are errors
102 Naming_String
: aliased String := "naming";
103 Builder_String
: aliased String := "builder";
104 Compiler_String
: aliased String := "compiler";
105 Binder_String
: aliased String := "binder";
106 Linker_String
: aliased String := "linker";
108 Gnatmake_Packages
: aliased String_List
:=
109 (Naming_String
'Access,
110 Builder_String 'Access,
111 Compiler_String
'Access,
112 Binder_String 'Access,
113 Linker_String
'Access);
115 Packages_To_Check_By_Gnatmake : constant String_List_Access :=
116 Gnatmake_Packages'Access;
118 package Processed_Projects is new Table.Table
119 (Table_Component_Type => Project_Id,
120 Table_Index_Type => Natural,
121 Table_Low_Bound => 0,
123 Table_Increment => 10,
124 Table_Name => "Clean.Processed_Projects");
125 -- Table to keep track of what project files have been processed, when
126 -- switch -r is specified.
128 package Sources is new Table.Table
129 (Table_Component_Type => File_Name_Type,
130 Table_Index_Type => Natural,
131 Table_Low_Bound => 0,
133 Table_Increment => 10,
134 Table_Name => "Clean.Processed_Projects");
135 -- Table to store all the source files of a library unit: spec, body and
136 -- subunits, to detect .dg files and delete them.
138 ----------------------------
139 -- Queue (Q) manipulation --
140 ----------------------------
143 -- Must be called to initialize the Q
145 procedure Insert_Q (Lib_File : File_Name_Type);
146 -- If Lib_File is not marked, inserts it at the end of Q and mark it
148 function Empty_Q return Boolean;
149 -- Returns True if Q is empty
151 procedure Extract_From_Q (Lib_File : out File_Name_Type);
152 -- Extracts the first element from the Q
155 -- Points to the first valid element in the Q
157 package Q is new Table.Table (
158 Table_Component_Type => File_Name_Type,
159 Table_Index_Type => Natural,
160 Table_Low_Bound => 0,
161 Table_Initial => 4000,
162 Table_Increment => 100,
163 Table_Name => "Clean.Q");
164 -- This is the actual queue
166 -----------------------------
167 -- Other local subprograms --
168 -----------------------------
170 procedure Add_Source_Dir (N : String);
171 -- Call Add_Src_Search_Dir.
172 -- Output one line when in verbose mode.
174 procedure Add_Source_Directories is
175 new Prj.Env.For_All_Source_Dirs (Action => Add_Source_Dir);
177 procedure Add_Object_Dir (N : String);
178 -- Call Add_Lib_Search_Dir.
179 -- Output one line when in verbose mode.
181 procedure Add_Object_Directories is
182 new Prj.Env.For_All_Object_Dirs (Action => Add_Object_Dir);
184 function ALI_File_Name (Source : Name_Id) return String;
185 -- Returns the name of the ALI file corresponding to Source
187 function Assembly_File_Name (Source : Name_Id) return String;
188 -- Returns the assembly file name corresponding to Source
190 procedure Clean_Archive (Project : Project_Id);
191 -- Delete a global archive or a fake library project archive and the
192 -- dependency file, if they exist.
194 procedure Clean_Directory (Dir : Name_Id);
195 -- Delete all regular files in a library directory or in a library
198 procedure Clean_Executables;
199 -- Do the cleaning work when no project file is specified
201 procedure Clean_Project (Project : Project_Id);
202 -- Do the cleaning work when a project file is specified.
203 -- This procedure calls itself recursively when there are several
204 -- project files in the tree rooted at the main project file and switch -r
205 -- has been specified.
207 function Debug_File_Name (Source : Name_Id) return String;
208 -- Name of the expanded source file corresponding to Source
210 procedure Delete (In_Directory : String; File : String);
211 -- Delete one file, or list the file name if switch -n is specified
213 procedure Delete_Binder_Generated_Files (Dir : String; Source : Name_Id);
214 -- Delete the binder generated file in directory Dir for Source, if they
215 -- exist: for Unix these are b~<source>.ads, b~<source>.adb,
216 -- b~<source>.ali and b~<source>.o.
218 procedure Display_Copyright;
219 -- Display the Copyright notice.
220 -- If called several times, display the Copyright notice only the first
223 procedure Initialize;
224 -- Call the necessary package initializations
226 function Object_File_Name (Source : Name_Id) return String;
227 -- Returns the object file name corresponding to Source
229 procedure Parse_Cmd_Line;
230 -- Parse the command line
232 function Repinfo_File_Name (Source : Name_Id) return String;
233 -- Returns the repinfo file name corresponding to Source
235 function Tree_File_Name (Source : Name_Id) return String;
236 -- Returns the tree file name corresponding to Source
238 function In_Extension_Chain
239 (Of_Project : Project_Id;
240 Prj : Project_Id) return Boolean;
241 -- Returns True iff Prj is an extension of Of_Project or if Of_Project is
242 -- an extension of Prj.
245 -- Display the usage.
246 -- If called several times, the usage is displayed only the first time.
252 procedure Add_Object_Dir (N : String) is
254 Add_Lib_Search_Dir (N);
256 if Opt.Verbose_Mode then
257 Put ("Adding object directory """);
268 procedure Add_Source_Dir (N : String) is
270 Add_Src_Search_Dir (N);
272 if Opt.Verbose_Mode then
273 Put ("Adding source directory """);
284 function ALI_File_Name (Source : Name_Id) return String is
285 Src : constant String := Get_Name_String (Source);
288 -- If the source name has an extension, then replace it with
291 for Index in reverse Src'First + 1 .. Src'Last loop
292 if Src (Index) = '.' then
293 return Src (Src'First .. Index - 1) & ALI_Suffix;
297 -- If there is no dot, or if it is the first character, just add the
300 return Src & ALI_Suffix;
303 ------------------------
304 -- Assembly_File_Name --
305 ------------------------
307 function Assembly_File_Name (Source : Name_Id) return String is
308 Src : constant String := Get_Name_String (Source);
311 -- If the source name has an extension, then replace it with
312 -- the assembly suffix.
314 for Index in reverse Src'First + 1 .. Src'Last loop
315 if Src (Index) = '.' then
316 return Src (Src'First .. Index - 1) & Assembly_Suffix;
320 -- If there is no dot, or if it is the first character, just add the
323 return Src & Assembly_Suffix;
324 end Assembly_File_Name;
330 procedure Clean_Archive (Project : Project_Id) is
331 Current_Dir : constant Dir_Name_Str := Get_Current_Dir;
332 Data : constant Project_Data :=
333 Project_Tree.Projects.Table (Project);
335 Archive_Name : constant String :=
336 "lib" & Get_Name_String (Data.Name) & '.' & Archive_Ext;
337 -- The name of the archive file for this project
339 Archive_Dep_Name : constant String :=
340 "lib" & Get_Name_String (Data.Name) & ".deps";
341 -- The name of the archive dependency file for this project
343 Obj_Dir : constant String := Get_Name_String (Data.Object_Directory);
346 Change_Dir (Obj_Dir);
348 if Is_Regular_File (Archive_Name) then
349 Delete (Obj_Dir, Archive_Name);
352 if Is_Regular_File (Archive_Dep_Name) then
353 Delete (Obj_Dir, Archive_Dep_Name);
356 Change_Dir (Current_Dir);
359 ---------------------
360 -- Clean_Directory --
361 ---------------------
363 procedure Clean_Directory (Dir : Name_Id) is
364 Directory : constant String := Get_Name_String (Dir);
365 Current : constant Dir_Name_Str := Get_Current_Dir;
369 Name : String (1 .. 200);
373 Change_Dir (Directory);
376 -- For each regular file in the directory, if switch -n has not been
377 -- specified, make it writable and delete the file.
380 Read (Direc, Name, Last);
383 if Is_Regular_File (Name (1 .. Last)) then
384 if not Do_Nothing then
385 Set_Writable (Name (1 .. Last));
388 Delete (Directory, Name (1 .. Last));
394 -- Restore the initial working directory
396 Change_Dir (Current);
399 -----------------------
400 -- Clean_Executables --
401 -----------------------
403 procedure Clean_Executables is
404 Main_Source_File : File_Name_Type;
405 -- Current main source
407 Main_Lib_File : File_Name_Type;
408 -- ALI file of the current main
410 Lib_File : File_Name_Type;
413 Full_Lib_File : File_Name_Type;
414 -- Full name of the current ALI file
416 Text : Text_Buffer_Ptr;
422 -- It does not really matter if there is or not an object file
423 -- corresponding to an ALI file: if there is one, it will be deleted.
425 Opt.Check_Object_Consistency := False;
427 -- Proceed each executable one by one. Each source is marked as it is
428 -- processed, so common sources between executables will not be
429 -- processed several times.
431 for N_File in 1 .. Osint.Number_Of_Files loop
432 Main_Source_File := Next_Main_Source;
433 Main_Lib_File := Osint.Lib_File_Name
434 (Main_Source_File, Current_File_Index);
435 Insert_Q (Main_Lib_File);
437 while not Empty_Q loop
438 Sources.Set_Last (0);
439 Extract_From_Q (Lib_File);
440 Full_Lib_File := Osint.Full_Lib_File_Name (Lib_File);
442 -- If we have existing ALI file that is not read-only, process it
444 if Full_Lib_File /= No_File
445 and then not Is_Readonly_Library (Full_Lib_File)
447 Text := Read_Library_Info (Lib_File);
451 Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
454 -- If no error was produced while loading this ALI file,
455 -- insert into the queue all the unmarked withed sources.
457 if The_ALI /= No_ALI_Id then
458 for J in ALIs.Table (The_ALI).First_Unit ..
459 ALIs.Table (The_ALI).Last_Unit
461 Sources.Increment_Last;
462 Sources.Table (Sources.Last) :=
463 ALI.Units.Table (J).Sfile;
465 for K in ALI.Units.Table (J).First_With ..
466 ALI.Units.Table (J).Last_With
468 Insert_Q (Withs.Table (K).Afile);
472 -- Look for subunits and put them in the Sources table
474 for J in ALIs.Table (The_ALI).First_Sdep ..
475 ALIs.Table (The_ALI).Last_Sdep
477 if Sdep.Table (J).Subunit_Name /= No_Name then
478 Sources.Increment_Last;
479 Sources.Table (Sources.Last) :=
480 Sdep.Table (J).Sfile;
486 -- Now delete all existing files corresponding to this ALI file
489 Obj_Dir : constant String :=
490 Dir_Name (Get_Name_String (Full_Lib_File));
491 Obj : constant String := Object_File_Name (Lib_File);
492 Adt : constant String := Tree_File_Name (Lib_File);
493 Asm : constant String := Assembly_File_Name (Lib_File);
496 Delete (Obj_Dir, Get_Name_String (Lib_File));
498 if Is_Regular_File (Obj_Dir & Dir_Separator & Obj) then
499 Delete (Obj_Dir, Obj);
502 if Is_Regular_File (Obj_Dir & Dir_Separator & Adt) then
503 Delete (Obj_Dir, Adt);
506 if Is_Regular_File (Obj_Dir & Dir_Separator & Asm) then
507 Delete (Obj_Dir, Asm);
510 -- Delete expanded source files (.dg) and/or repinfo files
513 for J in 1 .. Sources.Last loop
515 Deb : constant String :=
516 Debug_File_Name (Sources.Table (J));
517 Rep : constant String :=
518 Repinfo_File_Name (Sources.Table (J));
521 if Is_Regular_File (Obj_Dir & Dir_Separator & Deb) then
522 Delete (Obj_Dir, Deb);
525 if Is_Regular_File (Obj_Dir & Dir_Separator & Rep) then
526 Delete (Obj_Dir, Rep);
534 -- Delete the executable, if it exists, and the binder generated
537 if not Compile_Only then
539 Source : constant Name_Id := Strip_Suffix (Main_Lib_File);
540 Executable : constant String := Get_Name_String
541 (Executable_Name (Source));
543 if Is_Regular_File (Executable) then
544 Delete ("", Executable);
547 Delete_Binder_Generated_Files (Get_Current_Dir, Source);
551 end Clean_Executables;
557 procedure Clean_Project (Project : Project_Id) is
558 Main_Source_File : File_Name_Type;
559 -- Name of executable on the command line without directory info
561 Executable : Name_Id;
562 -- Name of the executable file
564 Current_Dir : constant Dir_Name_Str := Get_Current_Dir;
565 Data : constant Project_Data :=
566 Project_Tree.Projects.Table (Project);
568 File_Name1 : Name_Id;
570 File_Name2 : Name_Id;
572 Lib_File : File_Name_Type;
574 Source_Id : Other_Source_Id;
575 Source : Other_Source;
577 Global_Archive : Boolean := False;
580 -- Check that we don't specify executable on the command line for
581 -- a main library project.
583 if Project = Main_Project
584 and then Osint.Number_Of_Files /= 0
585 and then Data.Library
588 ("Cannot specify executable(s) for a Library Project File");
592 Put ("Cleaning project """);
593 Put (Get_Name_String (Data.Name));
597 -- Add project to the list of processed projects
599 Processed_Projects.Increment_Last;
600 Processed_Projects.Table (Processed_Projects.Last) := Project;
602 if Data.Object_Directory /= No_Name then
604 Obj_Dir : constant String :=
605 Get_Name_String (Data.Object_Directory);
608 Change_Dir (Obj_Dir);
610 -- First, deal with Ada
612 -- Look through the units to find those that are either immediate
613 -- sources or inherited sources of the project.
615 if Data.Languages (Ada_Language_Index) then
616 for Unit in Unit_Table.First ..
617 Unit_Table.Last (Project_Tree.Units)
619 U_Data := Project_Tree.Units.Table (Unit);
620 File_Name1 := No_Name;
621 File_Name2 := No_Name;
623 -- If either the spec or the body is a source of the
624 -- project, check for the corresponding ALI file in the
627 if In_Extension_Chain
628 (U_Data.File_Names (Body_Part).Project, Project)
631 (U_Data.File_Names (Specification).Project, Project)
633 File_Name1 := U_Data.File_Names (Body_Part).Name;
634 Index1 := U_Data.File_Names (Body_Part).Index;
635 File_Name2 := U_Data.File_Names (Specification).Name;
636 Index2 := U_Data.File_Names (Specification).Index;
638 -- If there is no body file name, then there may be only
641 if File_Name1 = No_Name then
642 File_Name1 := File_Name2;
644 File_Name2 := No_Name;
649 -- If there is either a spec or a body, look for files
650 -- in the object directory.
652 if File_Name1 /= No_Name then
653 Lib_File := Osint.Lib_File_Name (File_Name1, Index1);
656 Asm : constant String := Assembly_File_Name (Lib_File);
657 ALI : constant String := ALI_File_Name (Lib_File);
658 Obj : constant String := Object_File_Name (Lib_File);
659 Adt : constant String := Tree_File_Name (Lib_File);
660 Deb : constant String :=
661 Debug_File_Name (File_Name1);
662 Rep : constant String :=
663 Repinfo_File_Name (File_Name1);
664 Del : Boolean := True;
667 -- If the ALI file exists and is read-only, no file
670 if Is_Regular_File (ALI) then
671 if Is_Writable_File (ALI) then
672 Delete (Obj_Dir, ALI);
681 if Obj_Dir (Obj_Dir'Last) /=
688 Put_Line (""" is read
-only
");
697 if Is_Regular_File (Obj) then
698 Delete (Obj_Dir, Obj);
703 if Is_Regular_File (Asm) then
704 Delete (Obj_Dir, Asm);
709 if Is_Regular_File (Adt) then
710 Delete (Obj_Dir, Adt);
713 -- First expanded source file
715 if Is_Regular_File (Deb) then
716 Delete (Obj_Dir, Deb);
721 if Is_Regular_File (Rep) then
722 Delete (Obj_Dir, Rep);
725 -- Second expanded source file
727 if File_Name2 /= No_Name then
729 Deb : constant String :=
730 Debug_File_Name (File_Name2);
731 Rep : constant String :=
732 Repinfo_File_Name (File_Name2);
734 if Is_Regular_File (Deb) then
735 Delete (Obj_Dir, Deb);
738 if Is_Regular_File (Rep) then
739 Delete (Obj_Dir, Rep);
749 -- Check if a global archive and it dependency file could have
750 -- been created and, if they exist, delete them.
752 if Project = Main_Project and then not Data.Library then
753 Global_Archive := False;
755 for Proj in Project_Table.First ..
756 Project_Table.Last (Project_Tree.Projects)
758 if Project_Tree.Projects.Table
759 (Proj).Other_Sources_Present
761 Global_Archive := True;
766 if Global_Archive then
767 Clean_Archive (Project);
771 if Data.Other_Sources_Present then
773 -- There is non-Ada code: delete the object files and
774 -- the dependency files if they exist.
776 Source_Id := Data.First_Other_Source;
778 while Source_Id /= No_Other_Source loop
780 Project_Tree.Other_Sources.Table (Source_Id);
783 (Get_Name_String (Source.Object_Name))
785 Delete (Obj_Dir, Get_Name_String (Source.Object_Name));
788 if Is_Regular_File (Get_Name_String (Source.Dep_Name)) then
789 Delete (Obj_Dir, Get_Name_String (Source.Dep_Name));
792 Source_Id := Source.Next;
795 -- If it is a library with only non Ada sources, delete
796 -- the fake archive and the dependency file, if they exist.
799 and then not Data.Languages (Ada_Language_Index)
801 Clean_Archive (Project);
807 -- If this is a library project, clean the library directory, the
808 -- interface copy dir and, for a Stand-Alone Library, the binder
809 -- generated files of the library.
811 -- The directories are cleaned only if switch -c is not specified
814 if not Compile_Only then
815 Clean_Directory (Data.Library_Dir);
817 if Data.Library_Src_Dir /= No_Name
818 and then Data.Library_Src_Dir /= Data.Library_Dir
820 Clean_Directory (Data.Library_Src_Dir);
824 if Data.Standalone_Library and then
825 Data.Object_Directory /= No_Name
827 Delete_Binder_Generated_Files
828 (Get_Name_String (Data.Object_Directory), Data.Library_Name);
836 -- If switch -r is specified, call Clean_Project recursively for the
837 -- imported projects and the project being extended.
841 Imported : Project_List := Data.Imported_Projects;
842 Element : Project_Element;
846 -- For each imported project, call Clean_Project if the project
847 -- has not been processed already.
849 while Imported /= Empty_Project_List loop
850 Element := Project_Tree.Project_Lists.Table (Imported);
851 Imported := Element.Next;
855 J in Processed_Projects.First .. Processed_Projects.Last
857 if Element.Project = Processed_Projects.Table (J) then
864 Clean_Project (Element.Project);
868 -- If this project extends another project, call Clean_Project for
869 -- the project being extended. It is guaranteed that it has not
870 -- called before, because no other project may import or extend
873 if Data.Extends /= No_Project then
874 Clean_Project (Data.Extends);
879 -- For the main project, delete the executables and the binder
882 -- The executables are deleted only if switch -c is not specified
884 if Project = Main_Project and then Data.Exec_Directory /= No_Name then
886 Exec_Dir : constant String :=
887 Get_Name_String (Data.Exec_Directory);
890 Change_Dir (Exec_Dir);
892 for N_File in 1 .. Osint.Number_Of_Files loop
893 Main_Source_File := Next_Main_Source;
895 if not Compile_Only then
904 Exec_File_Name : constant String :=
905 Get_Name_String (Executable);
908 if Is_Absolute_Path (Name => Exec_File_Name) then
909 if Is_Regular_File (Exec_File_Name) then
910 Delete ("", Exec_File_Name);
914 if Is_Regular_File (Exec_File_Name) then
915 Delete (Exec_Dir, Exec_File_Name);
921 if Data.Object_Directory /= No_Name then
922 Delete_Binder_Generated_Files
924 (Data.Object_Directory),
925 Strip_Suffix (Main_Source_File));
931 -- Change back to previous directory
933 Change_Dir (Current_Dir);
936 ---------------------
937 -- Debug_File_Name --
938 ---------------------
940 function Debug_File_Name (Source : Name_Id) return String is
942 return Get_Name_String (Source) & Debug_Suffix;
949 procedure Delete (In_Directory : String; File : String) is
950 Full_Name : String (1 .. In_Directory'Length + File'Length + 1);
955 -- Indicate that at least one file is deleted or is to be deleted
957 File_Deleted := True;
959 -- Build the path name of the file to delete
961 Last := In_Directory'Length;
962 Full_Name (1 .. Last) := In_Directory;
964 if Last > 0 and then Full_Name (Last) /= Directory_Separator then
966 Full_Name (Last) := Directory_Separator;
969 Full_Name (Last + 1 .. Last + File'Length) := File;
970 Last := Last + File'Length;
972 -- If switch -n was used, simply output the path name
975 Put_Line (Full_Name (1 .. Last));
977 -- Otherwise, delete the file if it is writable
981 or else Is_Writable_File (Full_Name (1 .. Last))
983 Delete_File (Full_Name (1 .. Last), Success);
988 if Verbose_Mode or else not Quiet_Output then
991 Put (Full_Name (1 .. Last));
992 Put_Line (""" could
not be deleted
");
996 Put (Full_Name (1 .. Last));
997 Put_Line (""" has been deleted
");
1003 -----------------------------------
1004 -- Delete_Binder_Generated_Files --
1005 -----------------------------------
1007 procedure Delete_Binder_Generated_Files (Dir : String; Source : Name_Id) is
1008 Source_Name : constant String := Get_Name_String (Source);
1009 Current : constant String := Get_Current_Dir;
1010 Last : constant Positive := B_Start'Length + Source_Name'Length;
1011 File_Name : String (1 .. Last + 4);
1016 -- Build the file name (before the extension)
1018 File_Name (1 .. B_Start'Length) := B_Start;
1019 File_Name (B_Start'Length + 1 .. Last) := Source_Name;
1023 File_Name (Last + 1 .. Last + 4) := ".ads
";
1025 if Is_Regular_File (File_Name (1 .. Last + 4)) then
1026 Delete (Dir, File_Name (1 .. Last + 4));
1031 File_Name (Last + 1 .. Last + 4) := ".adb
";
1033 if Is_Regular_File (File_Name (1 .. Last + 4)) then
1034 Delete (Dir, File_Name (1 .. Last + 4));
1039 File_Name (Last + 1 .. Last + 4) := ".ali
";
1041 if Is_Regular_File (File_Name (1 .. Last + 4)) then
1042 Delete (Dir, File_Name (1 .. Last + 4));
1047 File_Name (Last + 1 .. Last + Object_Suffix'Length) := Object_Suffix;
1049 if Is_Regular_File (File_Name (1 .. Last + Object_Suffix'Length)) then
1050 Delete (Dir, File_Name (1 .. Last + Object_Suffix'Length));
1053 -- Change back to previous directory
1055 Change_Dir (Current);
1056 end Delete_Binder_Generated_Files;
1058 -----------------------
1059 -- Display_Copyright --
1060 -----------------------
1062 procedure Display_Copyright is
1064 if not Copyright_Displayed then
1065 Copyright_Displayed := True;
1066 Put_Line ("GNATCLEAN
" & Gnatvsn.Gnat_Version_String
1067 & " Copyright
2003-2005 Free Software Foundation
, Inc
.");
1069 end Display_Copyright;
1075 function Empty_Q return Boolean is
1077 return Q_Front >= Q.Last;
1080 --------------------
1081 -- Extract_From_Q --
1082 --------------------
1084 procedure Extract_From_Q (Lib_File : out File_Name_Type) is
1085 Lib : constant File_Name_Type := Q.Table (Q_Front);
1088 Q_Front := Q_Front + 1;
1096 procedure Gnatclean is
1098 -- Do the necessary initializations
1102 -- Parse the command line, getting the switches and the executable names
1106 if Verbose_Mode then
1110 if Project_File_Name /= null then
1112 -- A project file was specified by a -P switch
1114 if Opt.Verbose_Mode then
1116 Put ("Parsing Project File
""");
1117 Put (Project_File_Name.all);
1122 -- Set the project parsing verbosity to whatever was specified
1123 -- by a possible -vP switch.
1125 Prj.Pars.Set_Verbosity (To => Current_Verbosity);
1127 -- Parse the project file. If there is an error, Main_Project
1128 -- will still be No_Project.
1131 (Project => Main_Project,
1132 In_Tree => Project_Tree,
1133 Project_File_Name => Project_File_Name.all,
1134 Packages_To_Check => Packages_To_Check_By_Gnatmake);
1136 if Main_Project = No_Project then
1137 Fail ("""" & Project_File_Name.all & """ processing failed
");
1140 if Opt.Verbose_Mode then
1142 Put ("Parsing
of Project File
""");
1143 Put (Project_File_Name.all);
1144 Put (""" is finished
.");
1148 -- Add source directories and object directories to the search paths
1150 Add_Source_Directories (Main_Project, Project_Tree);
1151 Add_Object_Directories (Main_Project, Project_Tree);
1154 Osint.Add_Default_Search_Dirs;
1156 -- If a project file was specified, but no executable name, put all
1157 -- the mains of the project file (if any) as if there were on the
1160 if Main_Project /= No_Project and then Osint.Number_Of_Files = 0 then
1162 Value : String_List_Id :=
1163 Project_Tree.Projects.Table (Main_Project).Mains;
1164 Main : String_Element;
1166 while Value /= Prj.Nil_String loop
1167 Main := Project_Tree.String_Elements.Table (Value);
1169 (File_Name => Get_Name_String (Main.Value),
1170 Index => Main.Index);
1176 -- If neither a project file nor an executable were specified,
1177 -- output the usage and exit.
1179 if Main_Project = No_Project and then Osint.Number_Of_Files = 0 then
1184 if Verbose_Mode then
1188 if Main_Project /= No_Project then
1190 -- If a project file has been specified, call Clean_Project with the
1191 -- project id of this project file, after resetting the list of
1192 -- processed projects.
1194 Processed_Projects.Init;
1195 Clean_Project (Main_Project);
1198 -- If no project file has been specified, the work is done in
1199 -- Clean_Executables.
1204 -- In verbose mode, if Delete has not been called, indicate that
1205 -- no file needs to be deleted.
1207 if Verbose_Mode and (not File_Deleted) then
1211 Put_Line ("No file needs to be deleted
");
1213 Put_Line ("No file has been deleted
");
1218 ------------------------
1219 -- In_Extension_Chain --
1220 ------------------------
1222 function In_Extension_Chain
1223 (Of_Project : Project_Id;
1224 Prj : Project_Id) return Boolean
1226 Data : Project_Data;
1229 if Prj = No_Project or else Of_Project = No_Project then
1233 if Of_Project = Prj then
1237 Data := Project_Tree.Projects.Table (Of_Project);
1239 while Data.Extends /= No_Project loop
1240 if Data.Extends = Prj then
1244 Data := Project_Tree.Projects.Table (Data.Extends);
1247 Data := Project_Tree.Projects.Table (Prj);
1249 while Data.Extends /= No_Project loop
1250 if Data.Extends = Of_Project then
1254 Data := Project_Tree.Projects.Table (Data.Extends);
1258 end In_Extension_Chain;
1267 Q.Set_Last (Q.First);
1274 procedure Initialize is
1276 if not Initialized then
1277 Initialized := True;
1279 -- Initialize some packages
1284 Prj.Initialize (Project_Tree);
1287 -- Reset global variables
1289 Free (Object_Directory_Path);
1290 Do_Nothing := False;
1291 File_Deleted := False;
1292 Copyright_Displayed := False;
1293 Usage_Displayed := False;
1294 Free (Project_File_Name);
1295 Main_Project := Prj.No_Project;
1296 All_Projects := False;
1303 procedure Insert_Q (Lib_File : File_Name_Type) is
1305 -- Do not insert an empty name or an already marked source
1307 if Lib_File /= No_Name and then not Makeutl.Is_Marked (Lib_File) then
1308 Q.Table (Q.Last) := Lib_File;
1311 -- Mark the source that has been just added to the Q
1313 Makeutl.Mark (Lib_File);
1317 ----------------------
1318 -- Object_File_Name --
1319 ----------------------
1321 function Object_File_Name (Source : Name_Id) return String is
1322 Src : constant String := Get_Name_String (Source);
1325 -- If the source name has an extension, then replace it with
1326 -- the Object suffix.
1328 for Index in reverse Src'First + 1 .. Src'Last loop
1329 if Src (Index) = '.' then
1330 return Src (Src'First .. Index - 1) & Object_Suffix;
1334 -- If there is no dot, or if it is the first character, just add the
1337 return Src & Object_Suffix;
1338 end Object_File_Name;
1340 --------------------
1341 -- Parse_Cmd_Line --
1342 --------------------
1344 procedure Parse_Cmd_Line is
1345 Source_Index : Int := 0;
1346 Index : Positive := 1;
1347 Last : constant Natural := Argument_Count;
1350 while Index <= Last loop
1352 Arg : constant String := Argument (Index);
1354 procedure Bad_Argument;
1355 -- Signal bad argument
1361 procedure Bad_Argument is
1363 Fail ("invalid argument
""", Arg, """");
1367 if Arg'Length /= 0 then
1368 if Arg (1) = '-' then
1369 if Arg'Length = 1 then
1375 if Arg'Length < 4 or else Arg (3) /= 'O' then
1379 Add_Lib_Search_Dir (Arg (3 .. Arg'Last));
1382 Compile_Only := True;
1385 if Object_Directory_Path /= null then
1386 Fail ("duplicate
-D switch
");
1388 elsif Project_File_Name /= null then
1389 Fail ("-P
and -D cannot be used simultaneously
");
1392 if Arg'Length > 2 then
1394 Dir : constant String := Arg (3 .. Arg'Last);
1396 if not Is_Directory (Dir) then
1397 Fail (Dir, " is not a directory
");
1399 Add_Lib_Search_Dir (Dir);
1404 if Index = Last then
1405 Fail ("no directory specified after
-D
");
1411 Dir : constant String := Argument (Index);
1413 if not Is_Directory (Dir) then
1414 Fail (Dir, " is not a directory
");
1416 Add_Lib_Search_Dir (Dir);
1422 Force_Deletions := True;
1425 Full_Path_Name_For_Brief_Errors := True;
1431 if Arg'Length = 2 then
1437 for J in 3 .. Arg'Last loop
1438 if Arg (J) not in '0' .. '9' then
1443 (20 * Source_Index) +
1444 (Character'Pos (Arg (J)) - Character'Pos ('0'));
1449 Opt.Look_In_Primary_Dir := False;
1452 if Arg'Length = 2 then
1456 Add_Lib_Search_Dir (Arg (3 .. Arg'Last));
1463 if Project_File_Name /= null then
1464 Fail ("multiple
-P switches
");
1466 elsif Object_Directory_Path /= null then
1467 Fail ("-D
and -P cannot be used simultaneously
");
1471 if Arg'Length > 2 then
1473 Prj : constant String := Arg (3 .. Arg'Last);
1475 if Prj'Length > 1 and then
1476 Prj (Prj'First) = '='
1478 Project_File_Name :=
1480 (Prj (Prj'First + 1 .. Prj'Last));
1482 Project_File_Name := new String'(Prj);
1487 if Index = Last then
1488 Fail ("no project specified after
-P
");
1492 Project_File_Name := new String'(Argument (Index));
1496 Quiet_Output := True;
1499 All_Projects := True;
1503 Verbose_Mode := True;
1505 elsif Arg = "-vP0
" then
1506 Current_Verbosity := Prj.Default;
1508 elsif Arg = "-vP1
" then
1509 Current_Verbosity := Prj.Medium;
1511 elsif Arg = "-vP2
" then
1512 Current_Verbosity := Prj.High;
1519 if Arg'Length = 2 then
1524 Ext_Asgn : constant String := Arg (3 .. Arg'Last);
1525 Start : Positive := Ext_Asgn'First;
1526 Stop : Natural := Ext_Asgn'Last;
1527 Equal_Pos : Natural;
1528 OK : Boolean := True;
1531 if Ext_Asgn (Start) = '"' then
1532 if Ext_Asgn (Stop) = '"' then
1543 while Equal_Pos <= Stop
1544 and then Ext_Asgn (Equal_Pos) /= '='
1546 Equal_Pos := Equal_Pos + 1;
1549 if Equal_Pos = Start or else Equal_Pos > Stop then
1556 Ext_Asgn (Start .. Equal_Pos - 1),
1558 Ext_Asgn (Equal_Pos + 1 .. Stop));
1562 ("illegal external assignment
'",
1572 Add_File (Arg, Source_Index);
1581 -----------------------
1582 -- Repinfo_File_Name --
1583 -----------------------
1585 function Repinfo_File_Name (Source : Name_Id) return String is
1587 return Get_Name_String (Source) & Repinfo_Suffix;
1588 end Repinfo_File_Name;
1590 --------------------
1591 -- Tree_File_Name --
1592 --------------------
1594 function Tree_File_Name (Source : Name_Id) return String is
1595 Src : constant String := Get_Name_String (Source);
1598 -- If the source name has an extension, then replace it with
1601 for Index in reverse Src'First + 1 .. Src'Last loop
1602 if Src (Index) = '.' then
1603 return Src (Src'First .. Index - 1) & Tree_Suffix;
1607 -- If there is no dot, or if it is the first character, just add the
1610 return Src & Tree_Suffix;
1619 if not Usage_Displayed then
1620 Usage_Displayed := True;
1622 Put_Line ("Usage
: gnatclean
[switches
] {[-innn
] name
}");
1625 Put_Line (" names
is one
or more file names from which
" &
1626 "the
.adb
or .ads suffix may be omitted
");
1627 Put_Line (" names may be omitted
if -P
<project
> is specified
");
1630 Put_Line (" -c Only delete compiler generated files
");
1631 Put_Line (" -D dir Specify dir as the object library
");
1632 Put_Line (" -f Force deletions
of unwritable files
");
1633 Put_Line (" -F Full project path name
" &
1634 "in brief error messages
");
1635 Put_Line (" -h Display this message
");
1636 Put_Line (" -innn Index
of unit
in source
for following names
");
1637 Put_Line (" -n Nothing to
do: only list files to delete
");
1638 Put_Line (" -Pproj
Use GNAT Project File proj
");
1639 Put_Line (" -q Be quiet
/terse
");
1640 Put_Line (" -r Clean
all projects recursively
");
1641 Put_Line (" -v Verbose mode
");
1642 Put_Line (" -vPx Specify verbosity
when parsing
" &
1643 "GNAT Project Files
");
1644 Put_Line (" -Xnm
=val Specify an external reference
" &
1645 "for GNAT Project Files
");
1648 Put_Line (" -aOdir Specify ALI
/object files search path
");
1649 Put_Line (" -Idir Like
-aOdir
");
1650 Put_Line (" -I
- Don
't look
for source
/library files
" &
1651 "in the default directory
");
1657 if Hostparm.OpenVMS then
1658 Debug_Suffix (Debug_Suffix'First) := '_';
1659 Repinfo_Suffix (Repinfo_Suffix'First) := '_';
1660 B_Start (B_Start'Last) := '$';