1 ------------------------------------------------------------------------------
3 -- GNAT RUNTIME COMPONENTS --
5 -- S Y S T E M . W C H _ W T S --
9 -- $Revision: 1.1.16.1 $
11 -- Copyright (C) 1992-2000 Free Software Foundation, Inc. --
13 -- GNAT is free software; you can redistribute it and/or modify it under --
14 -- terms of the GNU General Public License as published by the Free Soft- --
15 -- ware Foundation; either version 2, or (at your option) any later ver- --
16 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
19 -- for more details. You should have received a copy of the GNU General --
20 -- Public License distributed with GNAT; see file COPYING. If not, write --
21 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
22 -- MA 02111-1307, USA. --
24 -- As a special exception, if other files instantiate generics from this --
25 -- unit, or you link this unit with other files to produce an executable, --
26 -- this unit does not by itself cause the resulting executable to be --
27 -- covered by the GNU General Public License. This exception does not --
28 -- however invalidate any other reasons why the executable file might be --
29 -- covered by the GNU Public License. --
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 Interfaces
; use Interfaces
;
37 with System
.WCh_Con
; use System
.WCh_Con
;
38 with System
.WCh_JIS
; use System
.WCh_JIS
;
40 package body System
.WCh_WtS
is
42 ---------------------------
43 -- Wide_String_To_String --
44 ---------------------------
46 function Wide_String_To_String
48 EM
: WC_Encoding_Method
)
51 R
: String (1 .. 5 * S
'Length); -- worst case length!
59 for SP
in S
'Range loop
61 C
: constant Wide_Character := S
(SP
);
62 CV
: constant Unsigned_16
:= Wide_Character'Pos (C
);
63 Hex
: constant array (Unsigned_16
range 0 .. 15) of Character :=
69 R
(RP
) := Character'Val (CV
);
74 -- Hex ESC sequence encoding
79 R
(RP
) := Character'Val (CV
);
82 R
(RP
+ 1) := ASCII
.ESC
;
83 R
(RP
+ 2) := Hex
(Shift_Right
(CV
, 12));
84 R
(RP
+ 3) := Hex
(Shift_Right
(CV
, 8) and 16#
000F#
);
85 R
(RP
+ 4) := Hex
(Shift_Right
(CV
, 4) and 16#
000F#
);
86 R
(RP
+ 5) := Hex
(CV
and 16#
000F#
);
90 -- Upper bit shift (internal code = external code)
93 R
(RP
+ 1) := Character'Val (Shift_Right
(CV
, 8));
94 R
(RP
+ 2) := Character'Val (CV
and 16#FF#
);
97 -- Upper bit shift (EUC)
100 JIS_To_EUC
(C
, C1
, C2
);
105 -- Upper bit shift (Shift-JIS)
107 when WCEM_Shift_JIS
=>
108 JIS_To_Shift_JIS
(C
, C1
, C2
);
113 -- Upper bit shift (UTF-8)
115 -- 16#0080#-16#07ff#: 2#110xxxxx# 2#10xxxxxx#
116 -- 16#0800#-16#ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx#
119 if CV
< 16#
0800#
then
121 Character'Val (2#
11000000#
or Shift_Right
(CV
, 6));
123 Character'Val (2#
10000000#
or (CV
and 2#
00111111#
));
128 Character'Val (2#
11100000#
or Shift_Right
(CV
, 12));
130 Character'Val (2#
10000000#
or
131 (Shift_Right
(CV
, 6) and
134 Character'Val (2#
10000000#
or (CV
and 2#
00111111#
));
140 when WCEM_Brackets
=>
143 R
(RP
) := Character'Val (CV
);
148 R
(RP
+ 3) := Hex
(Shift_Right
(CV
, 12));
149 R
(RP
+ 4) := Hex
(Shift_Right
(CV
, 8) and 16#
000F#
);
150 R
(RP
+ 5) := Hex
(Shift_Right
(CV
, 4) and 16#
000F#
);
151 R
(RP
+ 6) := Hex
(CV
and 16#
000F#
);
163 end Wide_String_To_String
;