1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2004, 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 package body Switch
is
29 -------------------------
30 -- Is_Front_End_Switch --
31 -------------------------
33 function Is_Front_End_Switch
(Switch_Chars
: String) return Boolean is
34 Ptr
: constant Positive := Switch_Chars
'First;
36 return Is_Switch
(Switch_Chars
)
38 (Switch_Chars
(Ptr
+ 1) = 'I'
39 or else (Switch_Chars
'Length >= 5
40 and then Switch_Chars
(Ptr
+ 1 .. Ptr
+ 4) = "gnat")
41 or else (Switch_Chars
'Length >= 5
42 and then Switch_Chars
(Ptr
+ 2 .. Ptr
+ 4) = "RTS"));
43 end Is_Front_End_Switch
;
49 function Is_Switch
(Switch_Chars
: String) return Boolean is
51 return Switch_Chars
'Length > 1
52 and then Switch_Chars
(Switch_Chars
'First) = '-';
55 ------------------------
61 (Switch_Chars
: String;
69 if Ptr
> Max
or else Switch_Chars
(Ptr
) not in '0' .. '9' then
70 raise Missing_Switch_Value
;
73 while Ptr
<= Max
and then Switch_Chars
(Ptr
) in '0' .. '9' loop
74 Result
:= Result
* 10 +
75 Character'Pos (Switch_Chars
(Ptr
)) - Character'Pos ('0');
78 if Result
> Switch_Max_Value
then
79 raise Bad_Switch_Value
;
89 (Switch_Chars
: String;
97 Scan_Nat
(Switch_Chars
, Max
, Ptr
, Temp
);
100 raise Bad_Switch_Value
;