PR rtl-optimization/82913
[official-gcc.git] / gcc / ada / clean.adb
blob891575ea9d39fe402b6565b9b692d7d9f4a498a0
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- C L E A N --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2003-2017, Free Software Foundation, Inc. --
10 -- --
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. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 with ALI; use ALI;
27 with Make_Util; use Make_Util;
28 with Namet; use Namet;
29 with Opt; use Opt;
30 with Osint; use Osint;
31 with Osint.M; use Osint.M;
32 with Switch; use Switch;
33 with Table;
34 with Targparm;
35 with Types; use Types;
37 with Ada.Command_Line; use Ada.Command_Line;
39 with GNAT.Command_Line; use GNAT.Command_Line;
40 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
41 with GNAT.IO; use GNAT.IO;
42 with GNAT.OS_Lib; use GNAT.OS_Lib;
44 package body Clean is
46 -- Suffixes of various files
48 Assembly_Suffix : constant String := ".s";
49 Tree_Suffix : constant String := ".adt";
50 Object_Suffix : constant String := Get_Target_Object_Suffix.all;
51 Debug_Suffix : constant String := ".dg";
52 Repinfo_Suffix : constant String := ".rep";
53 -- Suffix of representation info files
55 B_Start : constant String := "b~";
56 -- Prefix of binder generated file, and number of actual characters used
58 Object_Directory_Path : String_Access := null;
59 -- The path name of the object directory, set with switch -D
61 Force_Deletions : Boolean := False;
62 -- Set to True by switch -f. When True, attempts to delete non writable
63 -- files will be done.
65 Do_Nothing : Boolean := False;
66 -- Set to True when switch -n is specified. When True, no file is deleted.
67 -- gnatclean only lists the files that would have been deleted if the
68 -- switch -n had not been specified.
70 File_Deleted : Boolean := False;
71 -- Set to True if at least one file has been deleted
73 Copyright_Displayed : Boolean := False;
74 Usage_Displayed : Boolean := False;
76 Project_File_Name : String_Access := null;
78 package Sources is new Table.Table
79 (Table_Component_Type => File_Name_Type,
80 Table_Index_Type => Natural,
81 Table_Low_Bound => 0,
82 Table_Initial => 10,
83 Table_Increment => 100,
84 Table_Name => "Clean.Processed_Projects");
85 -- Table to store all the source files of a library unit: spec, body and
86 -- subunits, to detect .dg files and delete them.
88 -----------------------------
89 -- Other local subprograms --
90 -----------------------------
92 function Assembly_File_Name (Source : File_Name_Type) return String;
93 -- Returns the assembly file name corresponding to Source
95 procedure Clean_Executables;
96 -- Do the cleaning work when no project file is specified
98 function Debug_File_Name (Source : File_Name_Type) return String;
99 -- Name of the expanded source file corresponding to Source
101 procedure Delete (In_Directory : String; File : String);
102 -- Delete one file, or list the file name if switch -n is specified
104 procedure Delete_Binder_Generated_Files
105 (Dir : String;
106 Source : File_Name_Type);
107 -- Delete the binder generated file in directory Dir for Source, if they
108 -- exist: for Unix these are b~<source>.ads, b~<source>.adb,
109 -- b~<source>.ali and b~<source>.o.
111 procedure Display_Copyright;
112 -- Display the Copyright notice. If called several times, display the
113 -- Copyright notice only the first time.
115 procedure Initialize;
116 -- Call the necessary package initializations
118 function Object_File_Name (Source : File_Name_Type) return String;
119 -- Returns the object file name corresponding to Source
121 procedure Parse_Cmd_Line;
122 -- Parse the command line
124 function Repinfo_File_Name (Source : File_Name_Type) return String;
125 -- Returns the repinfo file name corresponding to Source
127 function Tree_File_Name (Source : File_Name_Type) return String;
128 -- Returns the tree file name corresponding to Source
130 procedure Usage;
131 -- Display the usage. If called several times, the usage is displayed only
132 -- the first time.
134 ------------------------
135 -- Assembly_File_Name --
136 ------------------------
138 function Assembly_File_Name (Source : File_Name_Type) return String is
139 Src : constant String := Get_Name_String (Source);
141 begin
142 -- If the source name has an extension, then replace it with
143 -- the assembly suffix.
145 for Index in reverse Src'First + 1 .. Src'Last loop
146 if Src (Index) = '.' then
147 return Src (Src'First .. Index - 1) & Assembly_Suffix;
148 end if;
149 end loop;
151 -- If there is no dot, or if it is the first character, just add the
152 -- assembly suffix.
154 return Src & Assembly_Suffix;
155 end Assembly_File_Name;
157 -----------------------
158 -- Clean_Executables --
159 -----------------------
161 procedure Clean_Executables is
162 Main_Source_File : File_Name_Type;
163 -- Current main source
165 Main_Lib_File : File_Name_Type;
166 -- ALI file of the current main
168 Lib_File : File_Name_Type;
169 -- Current ALI file
171 Full_Lib_File : File_Name_Type;
172 -- Full name of the current ALI file
174 Text : Text_Buffer_Ptr;
175 The_ALI : ALI_Id;
176 Found : Boolean;
177 Source : Queue.Source_Info;
179 begin
180 Queue.Initialize;
182 -- It does not really matter if there is or not an object file
183 -- corresponding to an ALI file: if there is one, it will be deleted.
185 Opt.Check_Object_Consistency := False;
187 -- Proceed each executable one by one. Each source is marked as it is
188 -- processed, so common sources between executables will not be
189 -- processed several times.
191 for N_File in 1 .. Osint.Number_Of_Files loop
192 Main_Source_File := Next_Main_Source;
193 Main_Lib_File :=
194 Osint.Lib_File_Name (Main_Source_File, Current_File_Index);
196 if Main_Lib_File /= No_File then
197 Queue.Insert
198 ((File => Main_Lib_File,
199 Unit => No_Unit_Name,
200 Index => 0));
201 end if;
203 while not Queue.Is_Empty loop
204 Sources.Set_Last (0);
205 Queue.Extract (Found, Source);
206 pragma Assert (Found);
207 pragma Assert (Source.File /= No_File);
208 Lib_File := Source.File;
209 Full_Lib_File := Osint.Full_Lib_File_Name (Lib_File);
211 -- If we have existing ALI file that is not read-only, process it
213 if Full_Lib_File /= No_File
214 and then not Is_Readonly_Library (Full_Lib_File)
215 then
216 Text := Read_Library_Info (Lib_File);
218 if Text /= null then
219 The_ALI :=
220 Scan_ALI (Lib_File, Text, Ignore_ED => False, Err => True);
221 Free (Text);
223 -- If no error was produced while loading this ALI file,
224 -- insert into the queue all the unmarked withed sources.
226 if The_ALI /= No_ALI_Id then
227 for J in ALIs.Table (The_ALI).First_Unit ..
228 ALIs.Table (The_ALI).Last_Unit
229 loop
230 Sources.Increment_Last;
231 Sources.Table (Sources.Last) :=
232 ALI.Units.Table (J).Sfile;
234 for K in ALI.Units.Table (J).First_With ..
235 ALI.Units.Table (J).Last_With
236 loop
237 if Withs.Table (K).Afile /= No_File then
238 Queue.Insert
239 ((File => Withs.Table (K).Afile,
240 Unit => No_Unit_Name,
241 Index => 0));
242 end if;
243 end loop;
244 end loop;
246 -- Look for subunits and put them in the Sources table
248 for J in ALIs.Table (The_ALI).First_Sdep ..
249 ALIs.Table (The_ALI).Last_Sdep
250 loop
251 if Sdep.Table (J).Subunit_Name /= No_Name then
252 Sources.Increment_Last;
253 Sources.Table (Sources.Last) :=
254 Sdep.Table (J).Sfile;
255 end if;
256 end loop;
257 end if;
258 end if;
260 -- Now delete all existing files corresponding to this ALI file
262 declare
263 Obj_Dir : constant String :=
264 Dir_Name (Get_Name_String (Full_Lib_File));
265 Obj : constant String := Object_File_Name (Lib_File);
266 Adt : constant String := Tree_File_Name (Lib_File);
267 Asm : constant String := Assembly_File_Name (Lib_File);
269 begin
270 Delete (Obj_Dir, Get_Name_String (Lib_File));
272 if Is_Regular_File (Obj_Dir & Dir_Separator & Obj) then
273 Delete (Obj_Dir, Obj);
274 end if;
276 if Is_Regular_File (Obj_Dir & Dir_Separator & Adt) then
277 Delete (Obj_Dir, Adt);
278 end if;
280 if Is_Regular_File (Obj_Dir & Dir_Separator & Asm) then
281 Delete (Obj_Dir, Asm);
282 end if;
284 -- Delete expanded source files (.dg) and/or repinfo files
285 -- (.rep) if any
287 for J in 1 .. Sources.Last loop
288 declare
289 Deb : constant String :=
290 Debug_File_Name (Sources.Table (J));
291 Rep : constant String :=
292 Repinfo_File_Name (Sources.Table (J));
294 begin
295 if Is_Regular_File (Obj_Dir & Dir_Separator & Deb) then
296 Delete (Obj_Dir, Deb);
297 end if;
299 if Is_Regular_File (Obj_Dir & Dir_Separator & Rep) then
300 Delete (Obj_Dir, Rep);
301 end if;
302 end;
303 end loop;
304 end;
305 end if;
306 end loop;
308 -- Delete the executable, if it exists, and the binder generated
309 -- files, if any.
311 if not Compile_Only then
312 declare
313 Source : constant File_Name_Type :=
314 Strip_Suffix (Main_Lib_File);
315 Executable : constant String :=
316 Get_Name_String (Executable_Name (Source));
317 begin
318 if Is_Regular_File (Executable) then
319 Delete ("", Executable);
320 end if;
322 Delete_Binder_Generated_Files (Get_Current_Dir, Source);
323 end;
324 end if;
325 end loop;
326 end Clean_Executables;
328 ---------------------
329 -- Debug_File_Name --
330 ---------------------
332 function Debug_File_Name (Source : File_Name_Type) return String is
333 begin
334 return Get_Name_String (Source) & Debug_Suffix;
335 end Debug_File_Name;
337 ------------
338 -- Delete --
339 ------------
341 procedure Delete (In_Directory : String; File : String) is
342 Full_Name : String (1 .. In_Directory'Length + File'Length + 1);
343 Last : Natural := 0;
344 Success : Boolean;
346 begin
347 -- Indicate that at least one file is deleted or is to be deleted
349 File_Deleted := True;
351 -- Build the path name of the file to delete
353 Last := In_Directory'Length;
354 Full_Name (1 .. Last) := In_Directory;
356 if Last > 0 and then Full_Name (Last) /= Directory_Separator then
357 Last := Last + 1;
358 Full_Name (Last) := Directory_Separator;
359 end if;
361 Full_Name (Last + 1 .. Last + File'Length) := File;
362 Last := Last + File'Length;
364 -- If switch -n was used, simply output the path name
366 if Do_Nothing then
367 Put_Line (Full_Name (1 .. Last));
369 -- Otherwise, delete the file if it is writable
371 else
372 if Force_Deletions
373 or else Is_Writable_File (Full_Name (1 .. Last))
374 or else Is_Symbolic_Link (Full_Name (1 .. Last))
375 then
376 Delete_File (Full_Name (1 .. Last), Success);
378 -- Here if no deletion required
380 else
381 Success := False;
382 end if;
384 if Verbose_Mode or else not Quiet_Output then
385 if not Success then
386 Put ("Warning: """);
387 Put (Full_Name (1 .. Last));
388 Put_Line (""" could not be deleted");
390 else
391 Put ("""");
392 Put (Full_Name (1 .. Last));
393 Put_Line (""" has been deleted");
394 end if;
395 end if;
396 end if;
397 end Delete;
399 -----------------------------------
400 -- Delete_Binder_Generated_Files --
401 -----------------------------------
403 procedure Delete_Binder_Generated_Files
404 (Dir : String;
405 Source : File_Name_Type)
407 Source_Name : constant String := Get_Name_String (Source);
408 Current : constant String := Get_Current_Dir;
409 Last : constant Positive := B_Start'Length + Source_Name'Length;
410 File_Name : String (1 .. Last + 4);
412 begin
413 Change_Dir (Dir);
415 -- Build the file name (before the extension)
417 File_Name (1 .. B_Start'Length) := B_Start;
418 File_Name (B_Start'Length + 1 .. Last) := Source_Name;
420 -- Spec
422 File_Name (Last + 1 .. Last + 4) := ".ads";
424 if Is_Regular_File (File_Name (1 .. Last + 4)) then
425 Delete (Dir, File_Name (1 .. Last + 4));
426 end if;
428 -- Body
430 File_Name (Last + 1 .. Last + 4) := ".adb";
432 if Is_Regular_File (File_Name (1 .. Last + 4)) then
433 Delete (Dir, File_Name (1 .. Last + 4));
434 end if;
436 -- ALI file
438 File_Name (Last + 1 .. Last + 4) := ".ali";
440 if Is_Regular_File (File_Name (1 .. Last + 4)) then
441 Delete (Dir, File_Name (1 .. Last + 4));
442 end if;
444 -- Object file
446 File_Name (Last + 1 .. Last + Object_Suffix'Length) := Object_Suffix;
448 if Is_Regular_File (File_Name (1 .. Last + Object_Suffix'Length)) then
449 Delete (Dir, File_Name (1 .. Last + Object_Suffix'Length));
450 end if;
452 -- Change back to previous directory
454 Change_Dir (Current);
455 end Delete_Binder_Generated_Files;
457 -----------------------
458 -- Display_Copyright --
459 -----------------------
461 procedure Display_Copyright is
462 begin
463 if not Copyright_Displayed then
464 Copyright_Displayed := True;
465 Display_Version ("GNATCLEAN", "2003");
466 end if;
467 end Display_Copyright;
469 ---------------
470 -- Gnatclean --
471 ---------------
473 procedure Gnatclean is
474 begin
475 -- Do the necessary initializations
477 Clean.Initialize;
479 -- Parse the command line, getting the switches and the executable names
481 Parse_Cmd_Line;
483 if Verbose_Mode then
484 Display_Copyright;
485 end if;
487 Osint.Add_Default_Search_Dirs;
488 Targparm.Get_Target_Parameters;
490 if Osint.Number_Of_Files = 0 then
491 if Argument_Count = 0 then
492 Usage;
493 else
494 Try_Help;
495 end if;
497 return;
498 end if;
500 if Verbose_Mode then
501 New_Line;
502 end if;
504 if Project_File_Name /= null then
505 declare
506 Gprclean_Path : constant String_Access :=
507 Locate_Exec_On_Path ("gprclean");
508 Arg_Len : Natural := Argument_Count;
509 Pos : Natural := 0;
510 Target : String_Access := null;
511 Success : Boolean := False;
512 begin
513 if Gprclean_Path = null then
514 Fail_Program
515 ("project files are no longer supported by gnatclean;" &
516 " use gprclean instead");
517 end if;
519 Find_Program_Name;
521 if Name_Len > 10
522 and then Name_Buffer (Name_Len - 8 .. Name_Len) = "gnatclean"
523 then
524 Target := new String'(Name_Buffer (1 .. Name_Len - 9));
525 Arg_Len := Arg_Len + 1;
526 end if;
528 declare
529 Args : Argument_List (1 .. Arg_Len);
530 begin
531 if Target /= null then
532 Args (1) := new String'("--target=" & Target.all);
533 Pos := 1;
534 end if;
536 for J in 1 .. Argument_Count loop
537 Pos := Pos + 1;
538 Args (Pos) := new String'(Argument (J));
539 end loop;
541 Spawn (Gprclean_Path.all, Args, Success);
543 if Success then
544 Exit_Program (E_Success);
545 else
546 Exit_Program (E_Errors);
547 end if;
548 end;
549 end;
550 end if;
552 Clean_Executables;
554 -- In verbose mode, if Delete has not been called, indicate that no file
555 -- needs to be deleted.
557 if Verbose_Mode and (not File_Deleted) then
558 New_Line;
560 if Do_Nothing then
561 Put_Line ("No file needs to be deleted");
562 else
563 Put_Line ("No file has been deleted");
564 end if;
565 end if;
566 end Gnatclean;
568 ----------------
569 -- Initialize --
570 ----------------
572 procedure Initialize is
573 begin
574 -- Reset global variables
576 Free (Object_Directory_Path);
577 Do_Nothing := False;
578 File_Deleted := False;
579 Copyright_Displayed := False;
580 Usage_Displayed := False;
581 end Initialize;
583 ----------------------
584 -- Object_File_Name --
585 ----------------------
587 function Object_File_Name (Source : File_Name_Type) return String is
588 Src : constant String := Get_Name_String (Source);
590 begin
591 -- If the source name has an extension, then replace it with
592 -- the Object suffix.
594 for Index in reverse Src'First + 1 .. Src'Last loop
595 if Src (Index) = '.' then
596 return Src (Src'First .. Index - 1) & Object_Suffix;
597 end if;
598 end loop;
600 -- If there is no dot, or if it is the first character, just add the
601 -- ALI suffix.
603 return Src & Object_Suffix;
604 end Object_File_Name;
606 --------------------
607 -- Parse_Cmd_Line --
608 --------------------
610 procedure Parse_Cmd_Line is
611 Last : constant Natural := Argument_Count;
612 Index : Positive;
613 Source_Index : Int := 0;
615 procedure Check_Version_And_Help is new Check_Version_And_Help_G (Usage);
617 begin
618 -- First, check for --version and --help
620 Check_Version_And_Help ("GNATCLEAN", "2003");
622 -- First, check for switch -P and, if found and gprclean is available,
623 -- silently invoke gprclean, with switch --target if not on a native
624 -- platform.
626 declare
627 Arg_Len : Positive := Argument_Count;
628 Call_Gprclean : Boolean := False;
629 Gprclean : String_Access := null;
630 Pos : Natural := 0;
631 Success : Boolean;
632 Target : String_Access := null;
634 begin
635 Find_Program_Name;
637 if Name_Len >= 9
638 and then Name_Buffer (Name_Len - 8 .. Name_Len) = "gnatclean"
639 then
640 if Name_Len > 9 then
641 Target := new String'(Name_Buffer (1 .. Name_Len - 10));
642 Arg_Len := Arg_Len + 1;
643 end if;
645 for J in 1 .. Argument_Count loop
646 declare
647 Arg : constant String := Argument (J);
648 begin
649 if Arg'Length >= 2
650 and then Arg (Arg'First .. Arg'First + 1) = "-P"
651 then
652 Call_Gprclean := True;
653 exit;
654 end if;
655 end;
656 end loop;
658 if Call_Gprclean then
659 Gprclean := Locate_Exec_On_Path (Exec_Name => "gprclean");
661 if Gprclean /= null then
662 declare
663 Args : Argument_List (1 .. Arg_Len);
664 begin
665 if Target /= null then
666 Args (1) := new String'("--target=" & Target.all);
667 Pos := 1;
668 end if;
670 for J in 1 .. Argument_Count loop
671 Pos := Pos + 1;
672 Args (Pos) := new String'(Argument (J));
673 end loop;
675 Spawn (Gprclean.all, Args, Success);
677 Free (Gprclean);
679 if Success then
680 Exit_Program (E_Success);
682 else
683 Exit_Program (E_Fatal);
684 end if;
685 end;
686 end if;
687 end if;
688 end if;
689 end;
691 Index := 1;
692 while Index <= Last loop
693 declare
694 Arg : constant String := Argument (Index);
696 procedure Bad_Argument;
697 -- Signal bad argument
699 ------------------
700 -- Bad_Argument --
701 ------------------
703 procedure Bad_Argument is
704 begin
705 Fail ("invalid argument """ & Arg & """");
706 end Bad_Argument;
708 begin
709 if Arg'Length /= 0 then
710 if Arg (1) = '-' then
711 if Arg'Length = 1 then
712 Bad_Argument;
713 end if;
715 case Arg (2) is
716 when '-' =>
717 if Arg'Length > Subdirs_Option'Length
718 and then
719 Arg (1 .. Subdirs_Option'Length) = Subdirs_Option
720 then
721 null;
722 -- Subdirs are only used in gprclean
724 elsif Arg = Make_Util.Unchecked_Shared_Lib_Imports then
725 Opt.Unchecked_Shared_Lib_Imports := True;
727 else
728 Bad_Argument;
729 end if;
731 when 'a' =>
732 if Arg'Length < 4 then
733 Bad_Argument;
734 end if;
736 if Arg (3) = 'O' then
737 Add_Lib_Search_Dir (Arg (4 .. Arg'Last));
739 elsif Arg (3) = 'P' then
740 null;
741 -- This is only for gprclean
743 else
744 Bad_Argument;
745 end if;
747 when 'c' =>
748 Compile_Only := True;
750 when 'D' =>
751 if Object_Directory_Path /= null then
752 Fail ("duplicate -D switch");
754 elsif Project_File_Name /= null then
755 Fail ("-P and -D cannot be used simultaneously");
756 end if;
758 if Arg'Length > 2 then
759 declare
760 Dir : constant String := Arg (3 .. Arg'Last);
761 begin
762 if not Is_Directory (Dir) then
763 Fail (Dir & " is not a directory");
764 else
765 Add_Lib_Search_Dir (Dir);
766 end if;
767 end;
769 else
770 if Index = Last then
771 Fail ("no directory specified after -D");
772 end if;
774 Index := Index + 1;
776 declare
777 Dir : constant String := Argument (Index);
778 begin
779 if not Is_Directory (Dir) then
780 Fail (Dir & " is not a directory");
781 else
782 Add_Lib_Search_Dir (Dir);
783 end if;
784 end;
785 end if;
787 when 'e' =>
788 if Arg = "-eL" then
789 Follow_Links_For_Files := True;
790 Follow_Links_For_Dirs := True;
792 else
793 Bad_Argument;
794 end if;
796 when 'f' =>
797 Force_Deletions := True;
798 Directories_Must_Exist_In_Projects := False;
800 when 'F' =>
801 Full_Path_Name_For_Brief_Errors := True;
803 when 'h' =>
804 Usage;
806 when 'i' =>
807 if Arg'Length = 2 then
808 Bad_Argument;
809 end if;
811 Source_Index := 0;
813 for J in 3 .. Arg'Last loop
814 if Arg (J) not in '0' .. '9' then
815 Bad_Argument;
816 end if;
818 Source_Index :=
819 (20 * Source_Index) +
820 (Character'Pos (Arg (J)) - Character'Pos ('0'));
821 end loop;
823 when 'I' =>
824 if Arg = "-I-" then
825 Opt.Look_In_Primary_Dir := False;
827 else
828 if Arg'Length = 2 then
829 Bad_Argument;
830 end if;
832 Add_Lib_Search_Dir (Arg (3 .. Arg'Last));
833 end if;
835 when 'n' =>
836 Do_Nothing := True;
838 when 'P' =>
839 if Project_File_Name /= null then
840 Fail ("multiple -P switches");
842 elsif Object_Directory_Path /= null then
843 Fail ("-D and -P cannot be used simultaneously");
845 end if;
847 if Arg'Length > 2 then
848 declare
849 Prj : constant String := Arg (3 .. Arg'Last);
850 begin
851 if Prj'Length > 1
852 and then Prj (Prj'First) = '='
853 then
854 Project_File_Name :=
855 new String'
856 (Prj (Prj'First + 1 .. Prj'Last));
857 else
858 Project_File_Name := new String'(Prj);
859 end if;
860 end;
862 else
863 if Index = Last then
864 Fail ("no project specified after -P");
865 end if;
867 Index := Index + 1;
868 Project_File_Name := new String'(Argument (Index));
869 end if;
871 when 'q' =>
872 Quiet_Output := True;
874 when 'r' =>
875 null;
876 -- This is only for gprclean
878 when 'v' =>
879 if Arg = "-v" then
880 Verbose_Mode := True;
882 elsif Arg = "-vP0"
883 or else Arg = "-vP1"
884 or else Arg = "-vP2"
885 then
886 null;
887 -- This is only for gprclean
889 else
890 Bad_Argument;
891 end if;
893 when 'X' =>
894 if Arg'Length = 2 then
895 Bad_Argument;
896 end if;
898 when others =>
899 Bad_Argument;
900 end case;
902 else
903 Add_File (Arg, Source_Index);
904 end if;
905 end if;
906 end;
908 Index := Index + 1;
909 end loop;
910 end Parse_Cmd_Line;
912 -----------------------
913 -- Repinfo_File_Name --
914 -----------------------
916 function Repinfo_File_Name (Source : File_Name_Type) return String is
917 begin
918 return Get_Name_String (Source) & Repinfo_Suffix;
919 end Repinfo_File_Name;
921 --------------------
922 -- Tree_File_Name --
923 --------------------
925 function Tree_File_Name (Source : File_Name_Type) return String is
926 Src : constant String := Get_Name_String (Source);
928 begin
929 -- If source name has an extension, then replace it with the tree suffix
931 for Index in reverse Src'First + 1 .. Src'Last loop
932 if Src (Index) = '.' then
933 return Src (Src'First .. Index - 1) & Tree_Suffix;
934 end if;
935 end loop;
937 -- If there is no dot, or if it is the first character, just add the
938 -- tree suffix.
940 return Src & Tree_Suffix;
941 end Tree_File_Name;
943 -----------
944 -- Usage --
945 -----------
947 procedure Usage is
948 begin
949 if not Usage_Displayed then
950 Usage_Displayed := True;
951 Display_Copyright;
952 Put_Line ("Usage: gnatclean [switches] {[-innn] name}");
953 New_Line;
955 Display_Usage_Version_And_Help;
957 Put_Line (" names is one or more file names from which " &
958 "the .adb or .ads suffix may be omitted");
959 Put_Line (" names may be omitted if -P<project> is specified");
960 New_Line;
962 Put_Line (" --subdirs=dir real obj/lib/exec dirs are subdirs");
963 Put_Line (" " & Make_Util.Unchecked_Shared_Lib_Imports);
964 Put_Line (" Allow shared libraries to import static libraries");
965 New_Line;
967 Put_Line (" -c Only delete compiler generated files");
968 Put_Line (" -D dir Specify dir as the object library");
969 Put_Line (" -eL Follow symbolic links when processing " &
970 "project files");
971 Put_Line (" -f Force deletions of unwritable files");
972 Put_Line (" -F Full project path name " &
973 "in brief error messages");
974 Put_Line (" -h Display this message");
975 Put_Line (" -innn Index of unit in source for following names");
976 Put_Line (" -n Nothing to do: only list files to delete");
977 Put_Line (" -Pproj Use GNAT Project File proj");
978 Put_Line (" -q Be quiet/terse");
979 Put_Line (" -r Clean all projects recursively");
980 Put_Line (" -v Verbose mode");
981 Put_Line (" -vPx Specify verbosity when parsing " &
982 "GNAT Project Files");
983 Put_Line (" -Xnm=val Specify an external reference " &
984 "for GNAT Project Files");
985 New_Line;
987 Put_Line (" -aPdir Add directory dir to project search path");
988 New_Line;
990 Put_Line (" -aOdir Specify ALI/object files search path");
991 Put_Line (" -Idir Like -aOdir");
992 Put_Line (" -I- Don't look for source/library files " &
993 "in the default directory");
994 New_Line;
995 end if;
996 end Usage;
998 end Clean;