1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2008-2012, 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 3, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with System
.WCh_Cnv
; use System
.WCh_Cnv
;
34 with GNAT
.UTF_32_Spelling_Checker
;
36 package body Namet
.Sp
is
38 -----------------------
39 -- Local Subprograms --
40 -----------------------
42 procedure Get_Name_String_UTF_32
44 Result
: out UTF_32_String
;
45 Length
: out Natural);
46 -- This procedure is similar to Get_Decoded_Name except that the output
47 -- is stored in the given Result array as single codes, so in particular
48 -- any Uhh, Whhhh, or WWhhhhhhhh sequences are decoded to appear as a
49 -- single value in the output. This call does not affect the contents of
50 -- either Name_Buffer or Name_Len. The result is in Result (1 .. Length).
51 -- The caller must ensure that the result buffer is long enough.
53 ----------------------------
54 -- Get_Name_String_UTF_32 --
55 ----------------------------
57 procedure Get_Name_String_UTF_32
59 Result
: out UTF_32_String
;
62 pragma Assert
(Result
'First = 1);
64 SPtr
: Int
:= Name_Entries
.Table
(Id
).Name_Chars_Index
+ 1;
65 -- Index through characters of name in Name_Chars table. Initial value
66 -- points to first character of the name.
68 SLen
: constant Nat
:= Nat
(Name_Entries
.Table
(Id
).Name_Len
);
71 SLast
: constant Int
:= SPtr
+ SLen
- 1;
72 -- Last index in Name_Chars table for name
75 -- Current character from Name_Chars table
77 procedure Store_Hex
(N
: Natural);
78 -- Read and store next N characters starting at SPtr and store result
79 -- in next character of Result. Update SPtr past characters read.
85 procedure Store_Hex
(N
: Natural) is
92 C
:= Name_Chars
.Table
(SPtr
);
95 if C
in '0' .. '9' then
96 T
:= 16 * T
+ Character'Pos (C
) - Character'Pos ('0');
98 pragma Assert
(C
in 'a' .. 'f');
100 T
:= 16 * T
+ Character'Pos (C
) - (Character'Pos ('a') - 10);
104 Length
:= Length
+ 1;
105 pragma Assert
(Length
<= Result
'Length);
106 Result
(Length
) := T
;
109 -- Start of processing for Get_Name_String_UTF_32
113 while SPtr
<= SLast
loop
114 C
:= Name_Chars
.Table
(SPtr
);
119 and then SPtr
<= SLast
- 2
120 and then Name_Chars
.Table
(SPtr
+ 1) not in 'A' .. 'Z'
128 and then SPtr
<= SLast
- 4
129 and then Name_Chars
.Table
(SPtr
+ 1) not in 'A' .. 'Z'
134 -- WWhhhhhhhh encoding
137 and then SPtr
<= SLast
- 8
138 and then Name_Chars
.Table
(SPtr
+ 1) = 'W'
143 -- Q encoding (character literal)
145 elsif C
= 'Q' and then SPtr
< SLast
then
147 -- Put apostrophes around character
149 pragma Assert
(Length
<= Result
'Last - 3);
150 Result
(Length
+ 1) := UTF_32_Code
'Val (Character'Pos ('''));
151 Result
(Length
+ 2) :=
152 UTF_32_Code
(Get_Char_Code
(Name_Chars
.Table
(SPtr
+ 1)));
153 Result
(Length
+ 3) := UTF_32_Code
'Val (Character'Pos ('''));
155 Length
:= Length
+ 3;
161 Length
:= Length
+ 1;
162 pragma Assert
(Length
<= Result
'Last);
163 Result
(Length
) := UTF_32_Code
(Get_Char_Code
(C
));
166 end Get_Name_String_UTF_32
;
168 ------------------------
169 -- Is_Bad_Spelling_Of --
170 ------------------------
172 function Is_Bad_Spelling_Of
(Found
, Expect
: Name_Id
) return Boolean is
173 FL
: constant Natural := Natural (Length_Of_Name
(Found
));
174 EL
: constant Natural := Natural (Length_Of_Name
(Expect
));
175 -- Length of input names
177 FB
: UTF_32_String
(1 .. 2 * FL
);
178 EB
: UTF_32_String
(1 .. 2 * EL
);
179 -- Buffers for results, a factor of 2 is more than enough, the only
180 -- sequence which expands is Q (character literal) by 1.5 times.
184 -- Length of decoded names
187 Get_Name_String_UTF_32
(Found
, FB
, FBL
);
188 Get_Name_String_UTF_32
(Expect
, EB
, EBL
);
190 -- For an exact match, return False, otherwise check bad spelling. We
191 -- need this special test because the library routine returns True for
194 if FB
(1 .. FBL
) = EB
(1 .. EBL
) then
198 GNAT
.UTF_32_Spelling_Checker
.Is_Bad_Spelling_Of
199 (FB
(1 .. FBL
), EB
(1 .. EBL
));
201 end Is_Bad_Spelling_Of
;