OSDN Git Service

* Make-lang.in (gnat_ug_unx.info): Add dependency on stmp-docobjdir.
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-wtinau.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUNTIME COMPONENTS                          --
4 --                                                                          --
5 --         A D A . W I D E _ T E X T _ I O . I N T E G E R  _ A U X         --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2001 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 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,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- As a special exception,  if other files  instantiate  generics from this --
23 -- unit, or you link  this unit with other files  to produce an executable, --
24 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
25 -- covered  by the  GNU  General  Public  License.  This exception does not --
26 -- however invalidate  any other reasons why  the executable file  might be --
27 -- covered by the  GNU Public License.                                      --
28 --                                                                          --
29 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 with Ada.Wide_Text_IO.Generic_Aux; use Ada.Wide_Text_IO.Generic_Aux;
35
36 with System.Img_BIU;   use System.Img_BIU;
37 with System.Img_Int;   use System.Img_Int;
38 with System.Img_LLB;   use System.Img_LLB;
39 with System.Img_LLI;   use System.Img_LLI;
40 with System.Img_LLW;   use System.Img_LLW;
41 with System.Img_WIU;   use System.Img_WIU;
42 with System.Val_Int;   use System.Val_Int;
43 with System.Val_LLI;   use System.Val_LLI;
44
45 package body Ada.Wide_Text_IO.Integer_Aux is
46
47    -----------------------
48    -- Local Subprograms --
49    -----------------------
50
51    procedure Load_Integer
52      (File : in File_Type;
53       Buf  : out String;
54       Ptr  : in out Natural);
55    --  This is an auxiliary routine that is used to load an possibly signed
56    --  integer literal value from the input file into Buf, starting at Ptr + 1.
57    --  On return, Ptr is set to the last character stored.
58
59    -------------
60    -- Get_Int --
61    -------------
62
63    procedure Get_Int
64      (File  : in File_Type;
65       Item  : out Integer;
66       Width : in Field)
67    is
68       Buf  : String (1 .. Field'Last);
69       Ptr  : aliased Integer := 1;
70       Stop : Integer := 0;
71
72    begin
73       if Width /= 0 then
74          Load_Width (File, Width, Buf, Stop);
75          String_Skip (Buf, Ptr);
76       else
77          Load_Integer (File, Buf, Stop);
78       end if;
79
80       Item := Scan_Integer (Buf, Ptr'Access, Stop);
81       Check_End_Of_Field (Buf, Stop, Ptr, Width);
82    end Get_Int;
83
84    -------------
85    -- Get_LLI --
86    -------------
87
88    procedure Get_LLI
89      (File  : in File_Type;
90       Item  : out Long_Long_Integer;
91       Width : in Field)
92    is
93       Buf  : String (1 .. Field'Last);
94       Ptr  : aliased Integer := 1;
95       Stop : Integer := 0;
96
97    begin
98       if Width /= 0 then
99          Load_Width (File, Width, Buf, Stop);
100          String_Skip (Buf, Ptr);
101       else
102          Load_Integer (File, Buf, Stop);
103       end if;
104
105       Item := Scan_Long_Long_Integer (Buf, Ptr'Access, Stop);
106       Check_End_Of_Field (Buf, Stop, Ptr, Width);
107    end Get_LLI;
108
109    --------------
110    -- Gets_Int --
111    --------------
112
113    procedure Gets_Int
114      (From : in String;
115       Item : out Integer;
116       Last : out Positive)
117    is
118       Pos : aliased Integer;
119
120    begin
121       String_Skip (From, Pos);
122       Item := Scan_Integer (From, Pos'Access, From'Last);
123       Last := Pos - 1;
124
125    exception
126       when Constraint_Error =>
127          Last := Pos - 1;
128          raise Data_Error;
129
130    end Gets_Int;
131
132    --------------
133    -- Gets_LLI --
134    --------------
135
136    procedure Gets_LLI
137      (From : in String;
138       Item : out Long_Long_Integer;
139       Last : out Positive)
140    is
141       Pos : aliased Integer;
142
143    begin
144       String_Skip (From, Pos);
145       Item := Scan_Long_Long_Integer (From, Pos'Access, From'Last);
146       Last := Pos - 1;
147
148    exception
149       when Constraint_Error =>
150          Last := Pos - 1;
151          raise Data_Error;
152
153    end Gets_LLI;
154
155    ------------------
156    -- Load_Integer --
157    ------------------
158
159    procedure Load_Integer
160      (File : in File_Type;
161       Buf  : out String;
162       Ptr  : in out Natural)
163    is
164       Hash_Loc : Natural;
165       Loaded   : Boolean;
166
167    begin
168       Load_Skip (File);
169       Load (File, Buf, Ptr, '+', '-');
170
171       Load_Digits (File, Buf, Ptr, Loaded);
172
173       if Loaded then
174          Load (File, Buf, Ptr, '#', ':', Loaded);
175
176          if Loaded then
177             Hash_Loc := Ptr;
178             Load_Extended_Digits (File, Buf, Ptr);
179             Load (File, Buf, Ptr, Buf (Hash_Loc));
180          end if;
181
182          Load (File, Buf, Ptr, 'E', 'e', Loaded);
183
184          if Loaded then
185
186             --  Note: it is strange to allow a minus sign, since the syntax
187             --  does not, but that is what ACVC test CE3704F, case (6) wants.
188
189             Load (File, Buf, Ptr, '+', '-');
190             Load_Digits (File, Buf, Ptr);
191          end if;
192       end if;
193    end Load_Integer;
194
195    -------------
196    -- Put_Int --
197    -------------
198
199    procedure Put_Int
200      (File  : in File_Type;
201       Item  : in Integer;
202       Width : in Field;
203       Base  : in Number_Base)
204    is
205       Buf : String (1 .. Field'Last);
206       Ptr : Natural := 0;
207
208    begin
209       if Base = 10 and then Width = 0 then
210          Set_Image_Integer (Item, Buf, Ptr);
211       elsif Base = 10 then
212          Set_Image_Width_Integer (Item, Width, Buf, Ptr);
213       else
214          Set_Image_Based_Integer (Item, Base, Width, Buf, Ptr);
215       end if;
216
217       Put_Item (File, Buf (1 .. Ptr));
218    end Put_Int;
219
220    -------------
221    -- Put_LLI --
222    -------------
223
224    procedure Put_LLI
225      (File  : in File_Type;
226       Item  : in Long_Long_Integer;
227       Width : in Field;
228       Base  : in Number_Base)
229    is
230       Buf : String (1 .. Field'Last);
231       Ptr : Natural := 0;
232
233    begin
234       if Base = 10 and then Width = 0 then
235          Set_Image_Long_Long_Integer (Item, Buf, Ptr);
236       elsif Base = 10 then
237          Set_Image_Width_Long_Long_Integer (Item, Width, Buf, Ptr);
238       else
239          Set_Image_Based_Long_Long_Integer (Item, Base, Width, Buf, Ptr);
240       end if;
241
242       Put_Item (File, Buf (1 .. Ptr));
243    end Put_LLI;
244
245    --------------
246    -- Puts_Int --
247    --------------
248
249    procedure Puts_Int
250      (To   : out String;
251       Item : in Integer;
252       Base : in Number_Base)
253    is
254       Buf : String (1 .. Field'Last);
255       Ptr : Natural := 0;
256
257    begin
258       if Base = 10 then
259          Set_Image_Width_Integer (Item, To'Length, Buf, Ptr);
260       else
261          Set_Image_Based_Integer (Item, Base, To'Length, Buf, Ptr);
262       end if;
263
264       if Ptr > To'Length then
265          raise Layout_Error;
266       else
267          To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr);
268       end if;
269    end Puts_Int;
270
271    --------------
272    -- Puts_LLI --
273    --------------
274
275    procedure Puts_LLI
276      (To   : out String;
277       Item : in Long_Long_Integer;
278       Base : in Number_Base)
279    is
280       Buf : String (1 .. Field'Last);
281       Ptr : Natural := 0;
282
283    begin
284       if Base = 10 then
285          Set_Image_Width_Long_Long_Integer (Item, To'Length, Buf, Ptr);
286       else
287          Set_Image_Based_Long_Long_Integer (Item, Base, To'Length, Buf, Ptr);
288       end if;
289
290       if Ptr > To'Length then
291          raise Layout_Error;
292       else
293          To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr);
294       end if;
295    end Puts_LLI;
296
297 end Ada.Wide_Text_IO.Integer_Aux;