1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . S T R I N G S . W I D E _ W I D E _ M A P S --
9 -- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 3, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. --
22 -- As a special exception under Section 7 of GPL version 3, you are granted --
23 -- additional permissions described in the GCC Runtime Library Exception, --
24 -- version 3.1, as published by the Free Software Foundation. --
26 -- You should have received a copy of the GNU General Public License and --
27 -- a copy of the GCC Runtime Library Exception along with this program; --
28 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
29 -- <http://www.gnu.org/licenses/>. --
31 -- GNAT was originally developed by the GNAT team at New York University. --
32 -- Extensive contributions were provided by Ada Core Technologies Inc. --
34 ------------------------------------------------------------------------------
36 with Ada
.Finalization
;
38 package Ada
.Strings
.Wide_Wide_Maps
is
41 ------------------------------------------
42 -- Wide_Wide_Character Set Declarations --
43 ------------------------------------------
45 type Wide_Wide_Character_Set
is private;
46 pragma Preelaborable_Initialization
(Wide_Wide_Character_Set
);
47 -- Representation for a set of Wide_Wide_Character values:
49 Null_Set
: constant Wide_Wide_Character_Set
;
51 -----------------------------------------------
52 -- Constructors for Wide_Wide_Character Sets --
53 -----------------------------------------------
55 type Wide_Wide_Character_Range
is record
56 Low
: Wide_Wide_Character
;
57 High
: Wide_Wide_Character
;
59 -- Represents Wide_Wide_Character range Low .. High
61 type Wide_Wide_Character_Ranges
is
62 array (Positive range <>) of Wide_Wide_Character_Range
;
65 (Ranges
: Wide_Wide_Character_Ranges
) return Wide_Wide_Character_Set
;
68 (Span
: Wide_Wide_Character_Range
) return Wide_Wide_Character_Set
;
71 (Set
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Ranges
;
73 ---------------------------------------
74 -- Operations on Wide Character Sets --
75 ---------------------------------------
77 function "=" (Left
, Right
: Wide_Wide_Character_Set
) return Boolean;
80 (Right
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Set
;
83 (Left
, Right
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Set
;
86 (Left
, Right
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Set
;
89 (Left
, Right
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Set
;
92 (Left
, Right
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Set
;
95 (Element
: Wide_Wide_Character
;
96 Set
: Wide_Wide_Character_Set
) return Boolean;
99 (Elements
: Wide_Wide_Character_Set
;
100 Set
: Wide_Wide_Character_Set
) return Boolean;
103 (Left
: Wide_Wide_Character_Set
;
104 Right
: Wide_Wide_Character_Set
) return Boolean
107 subtype Wide_Wide_Character_Sequence
is Wide_Wide_String
;
108 -- Alternative representation for a set of character values
111 (Sequence
: Wide_Wide_Character_Sequence
) return Wide_Wide_Character_Set
;
114 (Singleton
: Wide_Wide_Character
) return Wide_Wide_Character_Set
;
117 (Set
: Wide_Wide_Character_Set
) return Wide_Wide_Character_Sequence
;
119 ----------------------------------------------
120 -- Wide_Wide_Character Mapping Declarations --
121 ----------------------------------------------
123 type Wide_Wide_Character_Mapping
is private;
124 pragma Preelaborable_Initialization
(Wide_Wide_Character_Mapping
);
125 -- Representation for a wide character to wide character mapping:
128 (Map
: Wide_Wide_Character_Mapping
;
129 Element
: Wide_Wide_Character
) return Wide_Wide_Character
;
131 Identity
: constant Wide_Wide_Character_Mapping
;
133 --------------------------------------
134 -- Operations on Wide Wide Mappings --
135 ---------------------------------------
138 (From
, To
: Wide_Wide_Character_Sequence
)
139 return Wide_Wide_Character_Mapping
;
142 (Map
: Wide_Wide_Character_Mapping
) return Wide_Wide_Character_Sequence
;
145 (Map
: Wide_Wide_Character_Mapping
) return Wide_Wide_Character_Sequence
;
147 type Wide_Wide_Character_Mapping_Function
is
148 access function (From
: Wide_Wide_Character
) return Wide_Wide_Character
;
151 package AF
renames Ada
.Finalization
;
153 -----------------------------------------------
154 -- Representation of Wide_Wide_Character_Set --
155 -----------------------------------------------
157 -- A wide character set is represented as a sequence of wide character
158 -- ranges (i.e. an object of type Wide_Wide_Character_Ranges) in which the
161 -- The lower bound is 1
162 -- The ranges are in order by increasing Low values
163 -- The ranges are non-overlapping and discontigous
165 -- A character value is in the set if it is contained in one of the
166 -- ranges. The actual Wide_Wide_Character_Set value is a controlled pointer
167 -- to this Wide_Wide_Character_Ranges value. The use of a controlled type
168 -- is necessary to prevent storage leaks.
170 type Wide_Wide_Character_Ranges_Access
is
171 access all Wide_Wide_Character_Ranges
;
173 type Wide_Wide_Character_Set
is new AF
.Controlled
with record
174 Set
: Wide_Wide_Character_Ranges_Access
;
177 pragma Finalize_Storage_Only
(Wide_Wide_Character_Set
);
178 -- This avoids useless finalizations, and, more importantly avoids
179 -- incorrect attempts to finalize constants that are statically
180 -- declared here and in Ada.Strings.Wide_Wide_Maps, which is incorrect.
182 procedure Initialize
(Object
: in out Wide_Wide_Character_Set
);
183 procedure Adjust
(Object
: in out Wide_Wide_Character_Set
);
184 procedure Finalize
(Object
: in out Wide_Wide_Character_Set
);
186 Null_Range
: aliased constant Wide_Wide_Character_Ranges
:=
187 (1 .. 0 => (Low
=> ' ', High
=> ' '));
189 Null_Set
: constant Wide_Wide_Character_Set
:=
191 Set
=> Null_Range
'Unrestricted_Access);
193 ---------------------------------------------------
194 -- Representation of Wide_Wide_Character_Mapping --
195 ---------------------------------------------------
197 -- A wide character mapping is represented as two strings of equal
198 -- length, where any character appearing in Domain is mapped to the
199 -- corresponding character in Rangev. A character not appearing in
200 -- Domain is mapped to itself. The characters in Domain are sorted
201 -- in ascending order.
203 -- The actual Wide_Wide_Character_Mapping value is a controlled record
204 -- that contains a pointer to a discriminated record containing the
205 -- range and domain values.
207 -- Note: this representation is canonical, and the values stored in
208 -- Domain and Rangev are exactly the values that are returned by the
209 -- functions To_Domain and To_Range. The use of a controlled type is
210 -- necessary to prevent storage leaks.
212 type Wide_Wide_Character_Mapping_Values
(Length
: Natural) is record
213 Domain
: Wide_Wide_Character_Sequence
(1 .. Length
);
214 Rangev
: Wide_Wide_Character_Sequence
(1 .. Length
);
217 type Wide_Wide_Character_Mapping_Values_Access
is
218 access all Wide_Wide_Character_Mapping_Values
;
220 type Wide_Wide_Character_Mapping
is new AF
.Controlled
with record
221 Map
: Wide_Wide_Character_Mapping_Values_Access
;
224 pragma Finalize_Storage_Only
(Wide_Wide_Character_Mapping
);
225 -- This avoids useless finalizations, and, more importantly avoids
226 -- incorrect attempts to finalize constants that are statically
227 -- declared here and in Ada.Strings.Wide_Wide_Maps, which is incorrect.
229 procedure Initialize
(Object
: in out Wide_Wide_Character_Mapping
);
230 procedure Adjust
(Object
: in out Wide_Wide_Character_Mapping
);
231 procedure Finalize
(Object
: in out Wide_Wide_Character_Mapping
);
233 Null_Map
: aliased constant Wide_Wide_Character_Mapping_Values
:=
238 Identity
: constant Wide_Wide_Character_Mapping
:=
240 Map
=> Null_Map
'Unrestricted_Access);
242 end Ada
.Strings
.Wide_Wide_Maps
;