1 ------------------------------------------------------------------------------
3 -- GNAT RUNTIME COMPONENTS --
5 -- A D A . T E X T _ I O . M O D U L A R _ I O --
11 -- Copyright (C) 1992,1993,1994,1995,1996 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
.Text_IO
.Modular_Aux
;
38 with System
.Unsigned_Types
; use System
.Unsigned_Types
;
40 package body Ada
.Text_IO
.Modular_IO
is
42 package Aux
renames Ada
.Text_IO
.Modular_Aux
;
51 Width
: in Field
:= 0)
53 pragma Unsuppress
(Range_Check
);
56 if Num
'Size > Unsigned
'Size then
57 Aux
.Get_LLU
(File
, Long_Long_Unsigned
(Item
), Width
);
59 Aux
.Get_Uns
(File
, Unsigned
(Item
), Width
);
63 when Constraint_Error
=> raise Data_Error
;
68 Width
: in Field
:= 0)
70 pragma Unsuppress
(Range_Check
);
73 if Num
'Size > Unsigned
'Size then
74 Aux
.Get_LLU
(Current_In
, Long_Long_Unsigned
(Item
), Width
);
76 Aux
.Get_Uns
(Current_In
, Unsigned
(Item
), Width
);
80 when Constraint_Error
=> raise Data_Error
;
88 pragma Unsuppress
(Range_Check
);
91 if Num
'Size > Unsigned
'Size then
92 Aux
.Gets_LLU
(From
, Long_Long_Unsigned
(Item
), Last
);
94 Aux
.Gets_Uns
(From
, Unsigned
(Item
), Last
);
98 when Constraint_Error
=> raise Data_Error
;
106 (File
: in File_Type
;
108 Width
: in Field
:= Default_Width
;
109 Base
: in Number_Base
:= Default_Base
)
112 if Num
'Size > Unsigned
'Size then
113 Aux
.Put_LLU
(File
, Long_Long_Unsigned
(Item
), Width
, Base
);
115 Aux
.Put_Uns
(File
, Unsigned
(Item
), Width
, Base
);
121 Width
: in Field
:= Default_Width
;
122 Base
: in Number_Base
:= Default_Base
)
125 if Num
'Size > Unsigned
'Size then
126 Aux
.Put_LLU
(Current_Out
, Long_Long_Unsigned
(Item
), Width
, Base
);
128 Aux
.Put_Uns
(Current_Out
, Unsigned
(Item
), Width
, Base
);
135 Base
: in Number_Base
:= Default_Base
)
138 if Num
'Size > Unsigned
'Size then
139 Aux
.Puts_LLU
(To
, Long_Long_Unsigned
(Item
), Base
);
141 Aux
.Puts_Uns
(To
, Unsigned
(Item
), Base
);
145 end Ada
.Text_IO
.Modular_IO
;