diff options
Diffstat (limited to 'gcc/ada/g-comlin.adb')
-rw-r--r-- | gcc/ada/g-comlin.adb | 261 |
1 files changed, 224 insertions, 37 deletions
diff --git a/gcc/ada/g-comlin.adb b/gcc/ada/g-comlin.adb index f2ee9b8a054..16aea3f7330 100644 --- a/gcc/ada/g-comlin.adb +++ b/gcc/ada/g-comlin.adb @@ -6,9 +6,9 @@ -- -- -- B o d y -- -- -- --- $Revision: 1.21 $ +-- $Revision$ -- -- --- Copyright (C) 1999-2001 Free Software Foundation, Inc. -- +-- Copyright (C) 1999-2002 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -33,6 +33,7 @@ ------------------------------------------------------------------------------ with Ada.Command_Line; +with GNAT.OS_Lib; use GNAT.OS_Lib; package body GNAT.Command_Line is @@ -41,12 +42,11 @@ package body GNAT.Command_Line is type Section_Number is new Natural range 0 .. 65534; for Section_Number'Size use 16; - type Parameter_Type is - record - Arg_Num : Positive; - First : Positive; - Last : Positive; - end record; + type Parameter_Type is record + Arg_Num : Positive; + First : Positive; + Last : Positive; + end record; The_Parameter : Parameter_Type; The_Switch : Parameter_Type; -- This type and this variable are provided to store the current switch @@ -101,8 +101,39 @@ package body GNAT.Command_Line is -- Go to the next argument on the command line. If we are at the end -- of the current section, we want to make sure there is no other -- identical section on the command line (there might be multiple - -- instances of -largs). - -- Return True if there as another argument, False otherwise + -- instances of -largs). Returns True iff there is another argument. + + function Get_File_Names_Case_Sensitive return Integer; + pragma Import (C, Get_File_Names_Case_Sensitive, + "__gnat_get_file_names_case_sensitive"); + File_Names_Case_Sensitive : constant Boolean := + Get_File_Names_Case_Sensitive /= 0; + + procedure Canonical_Case_File_Name (S : in out String); + -- Given a file name, converts it to canonical case form. For systems + -- where file names are case sensitive, this procedure has no effect. + -- If file names are not case sensitive (i.e. for example if you have + -- the file "xyz.adb", you can refer to it as XYZ.adb or XyZ.AdB), then + -- this call converts the given string to canonical all lower case form, + -- so that two file names compare equal if they refer to the same file. + + ------------------------------ + -- Canonical_Case_File_Name -- + ------------------------------ + + procedure Canonical_Case_File_Name (S : in out String) is + begin + if not File_Names_Case_Sensitive then + for J in S'Range loop + if S (J) in 'A' .. 'Z' then + S (J) := Character'Val ( + Character'Pos (S (J)) + + Character'Pos ('a') - + Character'Pos ('A')); + end if; + end loop; + end if; + end Canonical_Case_File_Name; --------------- -- Expansion -- @@ -116,17 +147,81 @@ package body GNAT.Command_Line is Last : Natural; It : Pointer := Iterator'Unrestricted_Access; + Current : Depth := It.Current_Depth; + NL : Positive; + begin + -- It is assumed that a directory is opened at the current level; + -- otherwise, GNAT.Directory_Operations.Directory_Error will be raised + -- at the first call to Read. + loop - Read (It.Dir, S, Last); + Read (It.Levels (Current).Dir, S, Last); + + -- If we have exhausted the directory, close it and go back one level if Last = 0 then - Close (It.Dir); - return String'(1 .. 0 => ' '); - end if; + Close (It.Levels (Current).Dir); + + -- If we are at level 1, we are finished; return an empty string. + + if Current = 1 then + return String'(1 .. 0 => ' '); + else + -- Otherwise, continue with the directory at the previous level + + Current := Current - 1; + It.Current_Depth := Current; + end if; + + -- If this is a directory, that is neither "." or "..", attempt to + -- go to the next level. + + elsif Is_Directory + (It.Dir_Name (1 .. It.Levels (Current).Name_Last) & S (1 .. Last)) + and then S (1 .. Last) /= "." + and then S (1 .. Last) /= ".." + then + -- We can go to the next level only if we have not reached the + -- maximum depth, + + if Current < It.Maximum_Depth then + NL := It.Levels (Current).Name_Last; + + -- And if relative path of this new directory is not too long + + if NL + Last + 1 < Max_Path_Length then + Current := Current + 1; + It.Current_Depth := Current; + It.Dir_Name (NL + 1 .. NL + Last) := S (1 .. Last); + NL := NL + Last + 1; + It.Dir_Name (NL) := Directory_Separator; + It.Levels (Current).Name_Last := NL; + Canonical_Case_File_Name (It.Dir_Name (1 .. NL)); + + -- Open the new directory, and read from it - if GNAT.Regexp.Match (S (1 .. Last), Iterator.Regexp) then - return S (1 .. Last); + GNAT.Directory_Operations.Open + (It.Levels (Current).Dir, It.Dir_Name (1 .. NL)); + end if; + end if; + + -- If not a directory, check the relative path against the pattern + + else + declare + Name : String := + It.Dir_Name (It.Start .. It.Levels (Current).Name_Last) & + S (1 .. Last); + begin + Canonical_Case_File_Name (Name); + + -- If it matches, return the relative path + + if GNAT.Regexp.Match (Name, Iterator.Regexp) then + return Name; + end if; + end; end if; end loop; @@ -155,13 +250,13 @@ package body GNAT.Command_Line is if In_Expansion then declare S : String := Expansion (Expansion_It); + begin if S'Length /= 0 then return S; else In_Expansion := False; end if; - end; end if; @@ -206,7 +301,7 @@ package body GNAT.Command_Line is Current_Argument := Current_Argument + 1; - -- Could it be a file name with wild cards to expand ? + -- Could it be a file name with wild cards to expand? if Do_Expansion then declare @@ -238,16 +333,16 @@ package body GNAT.Command_Line is ------------ function Getopt (Switches : String) return Character is - Dummy : Boolean; + Dummy : Boolean; begin - -- If we have finished to parse the current command line item (there + -- If we have finished parsing the current command line item (there -- might be multiple switches in a single item), then go to the next -- element if Current_Argument > CL.Argument_Count or else (Current_Index > CL.Argument (Current_Argument)'Last - and then not Goto_Next_Argument_In_Section) + and then not Goto_Next_Argument_In_Section) then return ASCII.NUL; end if; @@ -302,9 +397,10 @@ package body GNAT.Command_Line is Length := Length + 1; end loop; - if (Switches (Length - 1) = ':' - or else Switches (Length - 1) = '?' - or else Switches (Length - 1) = '!') + if (Switches (Length - 1) = ':' or else + Switches (Length - 1) = '=' or else + Switches (Length - 1) = '?' or else + Switches (Length - 1) = '!') and then Length > Index + 1 then Length := Length - 1; @@ -314,8 +410,8 @@ package body GNAT.Command_Line is if Current_Index + Length - 1 - Index <= Arg'Last and then - Switches (Index .. Length - 1) = - Arg (Current_Index .. Current_Index + Length - 1 - Index) + Switches (Index .. Length - 1) = + Arg (Current_Index .. Current_Index + Length - 1 - Index) and then Length - Index > Max_Length then Index_Switches := Index; @@ -323,18 +419,18 @@ package body GNAT.Command_Line is end if; -- Look for the next switch in Switches + while Index <= Switches'Last and then Switches (Index) /= ' ' loop Index := Index + 1; end loop; - Index := Index + 1; + Index := Index + 1; end loop; End_Index := Current_Index + Max_Length - 1; - -- If the switch is not accepted, skip it, unless we had a '*' in - -- Switches + -- If switch is not accepted, skip it, unless we had '*' in Switches if Index_Switches = 0 then if Switches (Switches'First) = '*' then @@ -360,7 +456,7 @@ package body GNAT.Command_Line is First => Current_Index, Last => End_Index); - -- If switch needs an argument + -- Case of switch needs an argument if Index_Switches + Max_Length <= Switches'Last then @@ -390,6 +486,43 @@ package body GNAT.Command_Line is raise Invalid_Parameter; end if; + when '=' => + + -- If the switch is of the form <switch>=xxx + + if End_Index < Arg'Last then + + if Arg (End_Index + 1) = '=' + and then End_Index + 1 < Arg'Last + then + Set_Parameter (The_Parameter, + Arg_Num => Current_Argument, + First => End_Index + 2, + Last => Arg'Last); + Dummy := Goto_Next_Argument_In_Section; + + else + Current_Index := End_Index + 1; + raise Invalid_Parameter; + end if; + + -- If the switch is of the form <switch> xxx + + elsif Section (Current_Argument + 1) /= 0 then + Set_Parameter + (The_Parameter, + Arg_Num => Current_Argument + 1, + First => 1, + Last => CL.Argument (Current_Argument + 1)'Last); + Current_Argument := Current_Argument + 1; + Is_Switch (Current_Argument) := True; + Dummy := Goto_Next_Argument_In_Section; + + else + Current_Index := End_Index + 1; + raise Invalid_Parameter; + end if; + when '!' => if End_Index < Arg'Last then @@ -447,6 +580,7 @@ package body GNAT.Command_Line is if Current_Argument > CL.Argument_Count then return False; end if; + Current_Argument := Current_Argument + 1; exit when Section (Current_Argument) = Current_Section; end loop; @@ -478,6 +612,7 @@ package body GNAT.Command_Line is then Current_Argument := Index + 1; Current_Index := 1; + if Current_Argument <= CL.Argument_Count then Current_Section := Section (Current_Argument); end if; @@ -486,6 +621,7 @@ package body GNAT.Command_Line is Index := Index + 1; end loop; + Current_Argument := Positive'Last; Current_Index := 2; -- so that Get_Argument returns nothing end Goto_Section; @@ -529,8 +665,10 @@ package body GNAT.Command_Line is for Index in 1 .. CL.Argument_Count loop if CL.Argument (Index)(1) = Switch_Character - and then CL.Argument (Index) = Switch_Character - & Section_Delimiters (Section_Index .. Last - 1) + and then + CL.Argument (Index) = Switch_Character & + Section_Delimiters + (Section_Index .. Last - 1) then Section (Index) := 0; Delimiter_Found := True; @@ -576,7 +714,8 @@ package body GNAT.Command_Line is (Variable : out Parameter_Type; Arg_Num : Positive; First : Positive; - Last : Positive) is + Last : Positive) + is begin Variable.Arg_Num := Arg_Num; Variable.First := First; @@ -595,16 +734,64 @@ package body GNAT.Command_Line is is Directory_Separator : Character; pragma Import (C, Directory_Separator, "__gnat_dir_separator"); + First : Positive := Pattern'First; + + Pat : String := Pattern; begin + Canonical_Case_File_Name (Pat); + Iterator.Current_Depth := 1; + + -- If Directory is unspecified, use the current directory ("./" or ".\") + if Directory = "" then - GNAT.Directory_Operations.Open - (Iterator.Dir, "." & Directory_Separator); + Iterator.Dir_Name (1 .. 2) := "." & Directory_Separator; + Iterator.Start := 3; + else - GNAT.Directory_Operations.Open (Iterator.Dir, Directory); + Iterator.Dir_Name (1 .. Directory'Length) := Directory; + Iterator.Start := Directory'Length + 1; + Canonical_Case_File_Name (Iterator.Dir_Name (1 .. Directory'Length)); + + -- Make sure that the last character is a directory separator + + if Directory (Directory'Last) /= Directory_Separator then + Iterator.Dir_Name (Iterator.Start) := Directory_Separator; + Iterator.Start := Iterator.Start + 1; + end if; + end if; + + Iterator.Levels (1).Name_Last := Iterator.Start - 1; + + -- Open the initial Directory, at depth 1 + + GNAT.Directory_Operations.Open + (Iterator.Levels (1).Dir, Iterator.Dir_Name (1 .. Iterator.Start - 1)); + + -- If in the current directory and the pattern starts with "./", + -- drop the "./" from the pattern. + + if Directory = "" and then Pat'Length > 2 + and then Pat (Pat'First .. Pat'First + 1) = "./" + then + First := Pat'First + 2; end if; - Iterator.Regexp := GNAT.Regexp.Compile (Pattern, Basic_Regexp, True); + Iterator.Regexp := + GNAT.Regexp.Compile (Pat (First .. Pat'Last), Basic_Regexp, True); + + Iterator.Maximum_Depth := 1; + + -- Maximum_Depth is equal to 1 plus the number of directory separators + -- in the pattern. + + for Index in First .. Pat'Last loop + if Pat (Index) = Directory_Separator then + Iterator.Maximum_Depth := Iterator.Maximum_Depth + 1; + exit when Iterator.Maximum_Depth = Max_Depth; + end if; + end loop; + end Start_Expansion; begin |