2005-12-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / ada / a-strmap.ads
blobbd1b98f00cc80fdfea5365b94bfdd27050fe274c
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . S T R I N G S . M A P S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
10 -- --
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. --
14 -- --
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 2, 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. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- GNAT was originally developed by the GNAT team at New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc. --
35 -- --
36 ------------------------------------------------------------------------------
38 with Ada.Characters.Latin_1;
40 package Ada.Strings.Maps is
41 pragma Preelaborate;
42 pragma Pure_05;
43 -- In accordance with Ada 2005 AI-362
45 --------------------------------
46 -- Character Set Declarations --
47 --------------------------------
49 type Character_Set is private;
50 -- Representation for a set of character values:
52 Null_Set : constant Character_Set;
54 ---------------------------
55 -- Constructors for Sets --
56 ---------------------------
58 type Character_Range is record
59 Low : Character;
60 High : Character;
61 end record;
62 -- Represents Character range Low .. High
64 type Character_Ranges is array (Positive range <>) of Character_Range;
66 function To_Set (Ranges : Character_Ranges) return Character_Set;
68 function To_Set (Span : Character_Range) return Character_Set;
70 function To_Ranges (Set : Character_Set) return Character_Ranges;
72 ----------------------------------
73 -- Operations on Character Sets --
74 ----------------------------------
76 function "=" (Left, Right : Character_Set) return Boolean;
78 function "not" (Right : Character_Set) return Character_Set;
79 function "and" (Left, Right : Character_Set) return Character_Set;
80 function "or" (Left, Right : Character_Set) return Character_Set;
81 function "xor" (Left, Right : Character_Set) return Character_Set;
82 function "-" (Left, Right : Character_Set) return Character_Set;
84 function Is_In
85 (Element : Character;
86 Set : Character_Set) return Boolean;
88 function Is_Subset
89 (Elements : Character_Set;
90 Set : Character_Set) return Boolean;
92 function "<="
93 (Left : Character_Set;
94 Right : Character_Set) return Boolean
95 renames Is_Subset;
97 subtype Character_Sequence is String;
98 -- Alternative representation for a set of character values
100 function To_Set (Sequence : Character_Sequence) return Character_Set;
101 function To_Set (Singleton : Character) return Character_Set;
103 function To_Sequence (Set : Character_Set) return Character_Sequence;
105 ------------------------------------
106 -- Character Mapping Declarations --
107 ------------------------------------
109 type Character_Mapping is private;
110 -- Representation for a character to character mapping:
112 function Value
113 (Map : Character_Mapping;
114 Element : Character) return Character;
116 Identity : constant Character_Mapping;
118 ----------------------------
119 -- Operations on Mappings --
120 ----------------------------
122 function To_Mapping
123 (From, To : Character_Sequence) return Character_Mapping;
125 function To_Domain
126 (Map : Character_Mapping) return Character_Sequence;
128 function To_Range
129 (Map : Character_Mapping) return Character_Sequence;
131 type Character_Mapping_Function is
132 access function (From : Character) return Character;
134 private
135 pragma Inline (Is_In);
136 pragma Inline (Value);
138 type Character_Set_Internal is array (Character) of Boolean;
139 pragma Pack (Character_Set_Internal);
141 type Character_Set is new Character_Set_Internal;
142 -- Note: the reason for this level of derivation is to make sure
143 -- that the predefined logical operations on this type remain
144 -- accessible. The operations on Character_Set are overridden by
145 -- the defined operations in the spec, but the operations defined
146 -- on Character_Set_Internal remain visible.
148 Null_Set : constant Character_Set := (others => False);
150 type Character_Mapping is array (Character) of Character;
152 package L renames Ada.Characters.Latin_1;
154 Identity : constant Character_Mapping :=
155 (L.NUL & -- NUL 0
156 L.SOH & -- SOH 1
157 L.STX & -- STX 2
158 L.ETX & -- ETX 3
159 L.EOT & -- EOT 4
160 L.ENQ & -- ENQ 5
161 L.ACK & -- ACK 6
162 L.BEL & -- BEL 7
163 L.BS & -- BS 8
164 L.HT & -- HT 9
165 L.LF & -- LF 10
166 L.VT & -- VT 11
167 L.FF & -- FF 12
168 L.CR & -- CR 13
169 L.SO & -- SO 14
170 L.SI & -- SI 15
171 L.DLE & -- DLE 16
172 L.DC1 & -- DC1 17
173 L.DC2 & -- DC2 18
174 L.DC3 & -- DC3 19
175 L.DC4 & -- DC4 20
176 L.NAK & -- NAK 21
177 L.SYN & -- SYN 22
178 L.ETB & -- ETB 23
179 L.CAN & -- CAN 24
180 L.EM & -- EM 25
181 L.SUB & -- SUB 26
182 L.ESC & -- ESC 27
183 L.FS & -- FS 28
184 L.GS & -- GS 29
185 L.RS & -- RS 30
186 L.US & -- US 31
187 L.Space & -- ' ' 32
188 L.Exclamation & -- '!' 33
189 L.Quotation & -- '"' 34
190 L.Number_Sign & -- '#' 35
191 L.Dollar_Sign & -- '$' 36
192 L.Percent_Sign & -- '%' 37
193 L.Ampersand & -- '&' 38
194 L.Apostrophe & -- ''' 39
195 L.Left_Parenthesis & -- '(' 40
196 L.Right_Parenthesis & -- ')' 41
197 L.Asterisk & -- '*' 42
198 L.Plus_Sign & -- '+' 43
199 L.Comma & -- ',' 44
200 L.Hyphen & -- '-' 45
201 L.Full_Stop & -- '.' 46
202 L.Solidus & -- '/' 47
203 '0' & -- '0' 48
204 '1' & -- '1' 49
205 '2' & -- '2' 50
206 '3' & -- '3' 51
207 '4' & -- '4' 52
208 '5' & -- '5' 53
209 '6' & -- '6' 54
210 '7' & -- '7' 55
211 '8' & -- '8' 56
212 '9' & -- '9' 57
213 L.Colon & -- ':' 58
214 L.Semicolon & -- ';' 59
215 L.Less_Than_Sign & -- '<' 60
216 L.Equals_Sign & -- '=' 61
217 L.Greater_Than_Sign & -- '>' 62
218 L.Question & -- '?' 63
219 L.Commercial_At & -- '@' 64
220 'A' & -- 'A' 65
221 'B' & -- 'B' 66
222 'C' & -- 'C' 67
223 'D' & -- 'D' 68
224 'E' & -- 'E' 69
225 'F' & -- 'F' 70
226 'G' & -- 'G' 71
227 'H' & -- 'H' 72
228 'I' & -- 'I' 73
229 'J' & -- 'J' 74
230 'K' & -- 'K' 75
231 'L' & -- 'L' 76
232 'M' & -- 'M' 77
233 'N' & -- 'N' 78
234 'O' & -- 'O' 79
235 'P' & -- 'P' 80
236 'Q' & -- 'Q' 81
237 'R' & -- 'R' 82
238 'S' & -- 'S' 83
239 'T' & -- 'T' 84
240 'U' & -- 'U' 85
241 'V' & -- 'V' 86
242 'W' & -- 'W' 87
243 'X' & -- 'X' 88
244 'Y' & -- 'Y' 89
245 'Z' & -- 'Z' 90
246 L.Left_Square_Bracket & -- '[' 91
247 L.Reverse_Solidus & -- '\' 92
248 L.Right_Square_Bracket & -- ']' 93
249 L.Circumflex & -- '^' 94
250 L.Low_Line & -- '_' 95
251 L.Grave & -- '`' 96
252 L.LC_A & -- 'a' 97
253 L.LC_B & -- 'b' 98
254 L.LC_C & -- 'c' 99
255 L.LC_D & -- 'd' 100
256 L.LC_E & -- 'e' 101
257 L.LC_F & -- 'f' 102
258 L.LC_G & -- 'g' 103
259 L.LC_H & -- 'h' 104
260 L.LC_I & -- 'i' 105
261 L.LC_J & -- 'j' 106
262 L.LC_K & -- 'k' 107
263 L.LC_L & -- 'l' 108
264 L.LC_M & -- 'm' 109
265 L.LC_N & -- 'n' 110
266 L.LC_O & -- 'o' 111
267 L.LC_P & -- 'p' 112
268 L.LC_Q & -- 'q' 113
269 L.LC_R & -- 'r' 114
270 L.LC_S & -- 's' 115
271 L.LC_T & -- 't' 116
272 L.LC_U & -- 'u' 117
273 L.LC_V & -- 'v' 118
274 L.LC_W & -- 'w' 119
275 L.LC_X & -- 'x' 120
276 L.LC_Y & -- 'y' 121
277 L.LC_Z & -- 'z' 122
278 L.Left_Curly_Bracket & -- '{' 123
279 L.Vertical_Line & -- '|' 124
280 L.Right_Curly_Bracket & -- '}' 125
281 L.Tilde & -- '~' 126
282 L.DEL & -- DEL 127
283 L.Reserved_128 & -- Reserved_128 128
284 L.Reserved_129 & -- Reserved_129 129
285 L.BPH & -- BPH 130
286 L.NBH & -- NBH 131
287 L.Reserved_132 & -- Reserved_132 132
288 L.NEL & -- NEL 133
289 L.SSA & -- SSA 134
290 L.ESA & -- ESA 135
291 L.HTS & -- HTS 136
292 L.HTJ & -- HTJ 137
293 L.VTS & -- VTS 138
294 L.PLD & -- PLD 139
295 L.PLU & -- PLU 140
296 L.RI & -- RI 141
297 L.SS2 & -- SS2 142
298 L.SS3 & -- SS3 143
299 L.DCS & -- DCS 144
300 L.PU1 & -- PU1 145
301 L.PU2 & -- PU2 146
302 L.STS & -- STS 147
303 L.CCH & -- CCH 148
304 L.MW & -- MW 149
305 L.SPA & -- SPA 150
306 L.EPA & -- EPA 151
307 L.SOS & -- SOS 152
308 L.Reserved_153 & -- Reserved_153 153
309 L.SCI & -- SCI 154
310 L.CSI & -- CSI 155
311 L.ST & -- ST 156
312 L.OSC & -- OSC 157
313 L.PM & -- PM 158
314 L.APC & -- APC 159
315 L.No_Break_Space & -- No_Break_Space 160
316 L.Inverted_Exclamation & -- Inverted_Exclamation 161
317 L.Cent_Sign & -- Cent_Sign 162
318 L.Pound_Sign & -- Pound_Sign 163
319 L.Currency_Sign & -- Currency_Sign 164
320 L.Yen_Sign & -- Yen_Sign 165
321 L.Broken_Bar & -- Broken_Bar 166
322 L.Section_Sign & -- Section_Sign 167
323 L.Diaeresis & -- Diaeresis 168
324 L.Copyright_Sign & -- Copyright_Sign 169
325 L.Feminine_Ordinal_Indicator & -- Feminine_Ordinal_Indicator 170
326 L.Left_Angle_Quotation & -- Left_Angle_Quotation 171
327 L.Not_Sign & -- Not_Sign 172
328 L.Soft_Hyphen & -- Soft_Hyphen 173
329 L.Registered_Trade_Mark_Sign & -- Registered_Trade_Mark_Sign 174
330 L.Macron & -- Macron 175
331 L.Degree_Sign & -- Degree_Sign 176
332 L.Plus_Minus_Sign & -- Plus_Minus_Sign 177
333 L.Superscript_Two & -- Superscript_Two 178
334 L.Superscript_Three & -- Superscript_Three 179
335 L.Acute & -- Acute 180
336 L.Micro_Sign & -- Micro_Sign 181
337 L.Pilcrow_Sign & -- Pilcrow_Sign 182
338 L.Middle_Dot & -- Middle_Dot 183
339 L.Cedilla & -- Cedilla 184
340 L.Superscript_One & -- Superscript_One 185
341 L.Masculine_Ordinal_Indicator & -- Masculine_Ordinal_Indicator 186
342 L.Right_Angle_Quotation & -- Right_Angle_Quotation 187
343 L.Fraction_One_Quarter & -- Fraction_One_Quarter 188
344 L.Fraction_One_Half & -- Fraction_One_Half 189
345 L.Fraction_Three_Quarters & -- Fraction_Three_Quarters 190
346 L.Inverted_Question & -- Inverted_Question 191
347 L.UC_A_Grave & -- UC_A_Grave 192
348 L.UC_A_Acute & -- UC_A_Acute 193
349 L.UC_A_Circumflex & -- UC_A_Circumflex 194
350 L.UC_A_Tilde & -- UC_A_Tilde 195
351 L.UC_A_Diaeresis & -- UC_A_Diaeresis 196
352 L.UC_A_Ring & -- UC_A_Ring 197
353 L.UC_AE_Diphthong & -- UC_AE_Diphthong 198
354 L.UC_C_Cedilla & -- UC_C_Cedilla 199
355 L.UC_E_Grave & -- UC_E_Grave 200
356 L.UC_E_Acute & -- UC_E_Acute 201
357 L.UC_E_Circumflex & -- UC_E_Circumflex 202
358 L.UC_E_Diaeresis & -- UC_E_Diaeresis 203
359 L.UC_I_Grave & -- UC_I_Grave 204
360 L.UC_I_Acute & -- UC_I_Acute 205
361 L.UC_I_Circumflex & -- UC_I_Circumflex 206
362 L.UC_I_Diaeresis & -- UC_I_Diaeresis 207
363 L.UC_Icelandic_Eth & -- UC_Icelandic_Eth 208
364 L.UC_N_Tilde & -- UC_N_Tilde 209
365 L.UC_O_Grave & -- UC_O_Grave 210
366 L.UC_O_Acute & -- UC_O_Acute 211
367 L.UC_O_Circumflex & -- UC_O_Circumflex 212
368 L.UC_O_Tilde & -- UC_O_Tilde 213
369 L.UC_O_Diaeresis & -- UC_O_Diaeresis 214
370 L.Multiplication_Sign & -- Multiplication_Sign 215
371 L.UC_O_Oblique_Stroke & -- UC_O_Oblique_Stroke 216
372 L.UC_U_Grave & -- UC_U_Grave 217
373 L.UC_U_Acute & -- UC_U_Acute 218
374 L.UC_U_Circumflex & -- UC_U_Circumflex 219
375 L.UC_U_Diaeresis & -- UC_U_Diaeresis 220
376 L.UC_Y_Acute & -- UC_Y_Acute 221
377 L.UC_Icelandic_Thorn & -- UC_Icelandic_Thorn 222
378 L.LC_German_Sharp_S & -- LC_German_Sharp_S 223
379 L.LC_A_Grave & -- LC_A_Grave 224
380 L.LC_A_Acute & -- LC_A_Acute 225
381 L.LC_A_Circumflex & -- LC_A_Circumflex 226
382 L.LC_A_Tilde & -- LC_A_Tilde 227
383 L.LC_A_Diaeresis & -- LC_A_Diaeresis 228
384 L.LC_A_Ring & -- LC_A_Ring 229
385 L.LC_AE_Diphthong & -- LC_AE_Diphthong 230
386 L.LC_C_Cedilla & -- LC_C_Cedilla 231
387 L.LC_E_Grave & -- LC_E_Grave 232
388 L.LC_E_Acute & -- LC_E_Acute 233
389 L.LC_E_Circumflex & -- LC_E_Circumflex 234
390 L.LC_E_Diaeresis & -- LC_E_Diaeresis 235
391 L.LC_I_Grave & -- LC_I_Grave 236
392 L.LC_I_Acute & -- LC_I_Acute 237
393 L.LC_I_Circumflex & -- LC_I_Circumflex 238
394 L.LC_I_Diaeresis & -- LC_I_Diaeresis 239
395 L.LC_Icelandic_Eth & -- LC_Icelandic_Eth 240
396 L.LC_N_Tilde & -- LC_N_Tilde 241
397 L.LC_O_Grave & -- LC_O_Grave 242
398 L.LC_O_Acute & -- LC_O_Acute 243
399 L.LC_O_Circumflex & -- LC_O_Circumflex 244
400 L.LC_O_Tilde & -- LC_O_Tilde 245
401 L.LC_O_Diaeresis & -- LC_O_Diaeresis 246
402 L.Division_Sign & -- Division_Sign 247
403 L.LC_O_Oblique_Stroke & -- LC_O_Oblique_Stroke 248
404 L.LC_U_Grave & -- LC_U_Grave 249
405 L.LC_U_Acute & -- LC_U_Acute 250
406 L.LC_U_Circumflex & -- LC_U_Circumflex 251
407 L.LC_U_Diaeresis & -- LC_U_Diaeresis 252
408 L.LC_Y_Acute & -- LC_Y_Acute 253
409 L.LC_Icelandic_Thorn & -- LC_Icelandic_Thorn 254
410 L.LC_Y_Diaeresis); -- LC_Y_Diaeresis 255
412 end Ada.Strings.Maps;