OSDN Git Service

* config/pa/fptr.c: Update license header.
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-wchstw.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUN-TIME COMPONENTS                         --
4 --                                                                          --
5 --                       S Y S T E M . W C H _ S T W                        --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2005, Free Software Foundation, Inc.         --
10 --                                                                          --
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.                                              --
21 --                                                                          --
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.                                      --
28 --                                                                          --
29 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 with System.WCh_Con; use System.WCh_Con;
35 with System.WCh_Cnv; use System.WCh_Cnv;
36
37 package body System.WCh_StW is
38
39    -----------------------
40    -- Local Subprograms --
41    -----------------------
42
43    procedure Get_Next_Code
44      (S  : String;
45       P  : in out Natural;
46       V  : out UTF_32_Code;
47       EM : WC_Encoding_Method);
48    --  Scans next character starting at S(P) and returns its value in V. On
49    --  exit P is updated past the last character read. Raises Constraint_Error
50    --  if the string is not well formed. Raises Constraint_Error if the code
51    --  value is greater than 16#7FFF_FFFF#. On entry P <= S'Last.
52
53    -------------------
54    -- Get_Next_Code --
55    -------------------
56
57    procedure Get_Next_Code
58      (S  : String;
59       P  : in out Natural;
60       V  : out UTF_32_Code;
61       EM : WC_Encoding_Method)
62    is
63       function In_Char return Character;
64       --  Function to return a character, bumping P, raises Constraint_Error
65       --  if P > S'Last on entry.
66
67       function Get_UTF_32 is new Char_Sequence_To_UTF_32 (In_Char);
68       --  Function to get next UFT_32 value
69
70       -------------
71       -- In_Char --
72       -------------
73
74       function In_Char return Character is
75       begin
76          if P > S'Last then
77             raise Constraint_Error;
78          else
79             P := P + 1;
80             return S (P - 1);
81          end if;
82       end In_Char;
83
84    --  Start of processing for Get_Next_Code
85
86    begin
87       --  Check for wide character encoding
88
89       case EM is
90          when WCEM_Hex =>
91             if S (P) = ASCII.ESC then
92                V := Get_UTF_32 (In_Char, EM);
93                return;
94             end if;
95
96          when WCEM_Upper | WCEM_Shift_JIS | WCEM_EUC | WCEM_UTF8 =>
97             if S (P) >= Character'Val (16#80#) then
98                V := Get_UTF_32 (In_Char, EM);
99                return;
100             end if;
101
102          when WCEM_Brackets =>
103             if P + 2 <= S'Last
104               and then S (P) = '['
105               and then S (P + 1) = '"'
106               and then S (P + 2) /= '"'
107             then
108                V := Get_UTF_32 (In_Char, EM);
109                return;
110             end if;
111       end case;
112
113       --  If it is not a wide character code, just get it
114
115       V := Character'Pos (S (P));
116       P := P + 1;
117    end Get_Next_Code;
118
119    ---------------------------
120    -- String_To_Wide_String --
121    ---------------------------
122
123    function String_To_Wide_String
124      (S  : String;
125       EM : WC_Encoding_Method) return Wide_String
126    is
127       R  : Wide_String (1 .. S'Length);
128       RP : Natural;
129       SP : Natural;
130       V  : UTF_32_Code;
131
132    begin
133       SP := S'First;
134       RP := 0;
135       while SP <= S'Last loop
136          Get_Next_Code (S, SP, V, EM);
137
138          if V > 16#FFFF# then
139             raise Constraint_Error;
140          end if;
141
142          RP := RP + 1;
143          R (RP) := Wide_Character'Val (V);
144       end loop;
145
146       return R (1 .. RP);
147    end String_To_Wide_String;
148
149    --------------------------------
150    -- String_To_Wide_Wide_String --
151    --------------------------------
152
153    function String_To_Wide_Wide_String
154      (S  : String;
155       EM : WC_Encoding_Method) return Wide_Wide_String
156    is
157       R  : Wide_Wide_String (1 .. S'Length);
158       RP : Natural;
159       SP : Natural;
160       V  : UTF_32_Code;
161
162    begin
163       SP := S'First;
164       RP := 0;
165       while SP <= S'Last loop
166          Get_Next_Code (S, SP, V, EM);
167          RP := RP + 1;
168          R (RP) := Wide_Wide_Character'Val (V);
169       end loop;
170
171       return R (1 .. RP);
172    end String_To_Wide_Wide_String;
173
174 end System.WCh_StW;