1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . T E X T _ I O . E N U M E R A T I O N _ I O --
9 -- Copyright (C) 1992-2007, 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 -- 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. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
34 with Ada
.Text_IO
.Enumeration_Aux
;
36 package body Ada
.Text_IO
.Enumeration_IO
is
38 package Aux
renames Ada
.Text_IO
.Enumeration_Aux
;
44 procedure Get
(File
: File_Type
; Item
: out Enum
) is
45 Buf
: String (1 .. Enum
'Width + 1);
49 Aux
.Get_Enum_Lit
(File
, Buf
, Buflen
);
52 Buf_Str
: String renames Buf
(1 .. Buflen
);
53 pragma Unsuppress
(Range_Check
);
55 Item
:= Enum
'Value (Buf_Str
);
59 when Constraint_Error
=> raise Data_Error
;
62 procedure Get
(Item
: out Enum
) is
63 pragma Unsuppress
(Range_Check
);
65 Get
(Current_In
, Item
);
76 Aux
.Scan_Enum_Lit
(From
, Start
, Last
);
79 From_Str
: String renames From
(Start
.. Last
);
80 pragma Unsuppress
(Range_Check
);
82 Item
:= Enum
'Value (From_Str
);
86 when Constraint_Error
=> raise Data_Error
;
96 Width
: Field
:= Default_Width
;
97 Set
: Type_Set
:= Default_Setting
)
99 Image
: constant String := Enum
'Image (Item
);
101 Aux
.Put
(File
, Image
, Width
, Set
);
106 Width
: Field
:= Default_Width
;
107 Set
: Type_Set
:= Default_Setting
)
110 Put
(Current_Out
, Item
, Width
, Set
);
116 Set
: Type_Set
:= Default_Setting
)
118 Image
: constant String := Enum
'Image (Item
);
120 Aux
.Puts
(To
, Image
, Set
);
123 end Ada
.Text_IO
.Enumeration_IO
;