1 ------------------------------------------------------------------------------
3 -- GNAT RUNTIME COMPONENTS --
5 -- A D A . W I D E _ T E X T _ I O . D E C I M A L _ I O --
11 -- Copyright (C) 1992-2000 Free Software Foundation, Inc. --
13 -- GNAT is free software; you can redistribute it and/or modify it under --
14 -- terms of the GNU General Public License as published by the Free Soft- --
15 -- ware Foundation; either version 2, or (at your option) any later ver- --
16 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
19 -- for more details. You should have received a copy of the GNU General --
20 -- Public License distributed with GNAT; see file COPYING. If not, write --
21 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
22 -- MA 02111-1307, USA. --
24 -- As a special exception, if other files instantiate generics from this --
25 -- unit, or you link this unit with other files to produce an executable, --
26 -- this unit does not by itself cause the resulting executable to be --
27 -- covered by the GNU General Public License. This exception does not --
28 -- however invalidate any other reasons why the executable file might be --
29 -- covered by the GNU Public License. --
31 -- GNAT was originally developed by the GNAT team at New York University. --
32 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
34 ------------------------------------------------------------------------------
36 with Ada
.Wide_Text_IO
.Decimal_Aux
;
37 with System
.WCh_Con
; use System
.WCh_Con
;
38 with System
.WCh_WtS
; use System
.WCh_WtS
;
40 package body Ada
.Wide_Text_IO
.Decimal_IO
is
42 subtype TFT
is Ada
.Wide_Text_IO
.File_Type
;
43 -- File type required for calls to routines in Aux
45 package Aux
renames Ada
.Wide_Text_IO
.Decimal_Aux
;
47 Scale
: constant Integer := Num
'Scale;
56 Width
: in Field
:= 0)
59 if Num
'Size > Integer'Size then
60 Item
:= Num
(Aux
.Get_LLD
(TFT
(File
), Width
, Scale
));
61 -- Item := Num'Fixed_Value (Aux.Get_LLD (TFT (File), Width, Scale));
62 -- above is what we should write, but gets assert error ???
65 Item
:= Num
(Aux
.Get_Dec
(TFT
(File
), Width
, Scale
));
66 -- Item := Num'Fixed_Value (Aux.Get_Dec (TFT (File), Width, Scale));
67 -- above is what we should write, but gets assert error ???
71 when Constraint_Error
=> raise Data_Error
;
76 Width
: in Field
:= 0)
79 Get
(Current_Input
, Item
, Width
);
83 (From
: in Wide_String;
87 S
: constant String := Wide_String_To_String
(From
, WCEM_Upper
);
88 -- String on which we do the actual conversion. Note that the method
89 -- used for wide character encoding is irrelevant, since if there is
90 -- a character outside the Standard.Character range then the call to
91 -- Aux.Gets will raise Data_Error in any case.
94 if Num
'Size > Integer'Size then
95 -- Item := Num'Fixed_Value
96 -- should write above, but gets assert error ???
98 (Aux
.Gets_LLD
(S
, Last
'Unrestricted_Access, Scale
));
100 -- Item := Num'Fixed_Value
101 -- should write above, but gets assert error ???
103 (Aux
.Gets_Dec
(S
, Last
'Unrestricted_Access, Scale
));
107 when Constraint_Error
=> raise Data_Error
;
115 (File
: in File_Type
;
117 Fore
: in Field
:= Default_Fore
;
118 Aft
: in Field
:= Default_Aft
;
119 Exp
: in Field
:= Default_Exp
)
122 if Num
'Size > Integer'Size then
124 -- (TFT (File), Long_Long_Integer'Integer_Value (Item),
126 (TFT
(File
), Long_Long_Integer (Item
),
127 Fore
, Aft
, Exp
, Scale
);
130 -- (TFT (File), Integer'Integer_Value (Item), Fore, Aft, Exp, Scale);
132 (TFT
(File
), Integer (Item
), Fore
, Aft
, Exp
, Scale
);
139 Fore
: in Field
:= Default_Fore
;
140 Aft
: in Field
:= Default_Aft
;
141 Exp
: in Field
:= Default_Exp
)
144 Put
(Current_Output
, Item
, Aft
, Exp
);
148 (To
: out Wide_String;
150 Aft
: in Field
:= Default_Aft
;
151 Exp
: in Field
:= Default_Exp
)
153 S
: String (To
'First .. To
'Last);
156 if Num
'Size > Integer'Size then
158 -- (S, Long_Long_Integer'Integer_Value (Item), Aft, Exp, Scale);
161 (S
, Long_Long_Integer (Item
), Aft
, Exp
, Scale
);
163 -- Aux.Puts_Dec (S, Integer'Integer_Value (Item), Aft, Exp, Scale);
165 Aux
.Puts_Dec
(S
, Integer (Item
), Aft
, Exp
, Scale
);
168 for J
in S
'Range loop
169 To
(J
) := Wide_Character'Val (Character'Pos (S
(J
)));
173 end Ada
.Wide_Text_IO
.Decimal_IO
;