]>
git.saurik.com Git - wxWidgets.git/blob - src/common/strconv.cpp
113c02acfd93855683ca16ec42cd344e1e5c00ad
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Unicode conversion classes
4 // Author: Ove Kaaven, Robert Roebling, Vadim Zeitlin, Vaclav Slavik
8 // Copyright: (c) 1999 Ove Kaaven, Robert Roebling, Vadim Zeitlin, Vaclav Slavik
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "strconv.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/msw/private.h"
48 #include "wx/module.h"
49 #include "wx/strconv.h"
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
56 WXDLLIMPEXP_DATA_BASE(wxMBConv
) wxConvLibc
;
57 WXDLLIMPEXP_DATA_BASE(wxCSConv
) wxConvLocal((const wxChar
*)NULL
);
58 WXDLLIMPEXP_DATA_BASE(wxCSConv
) wxConvISO8859_1(_T("iso-8859-1"));
60 // stand-ins in absence of wchar_t
61 WXDLLIMPEXP_DATA_BASE(wxMBConv
) wxConvLibc
,
66 #endif // wxUSE_WCHAR_T
68 WXDLLIMPEXP_DATA_BASE(wxMBConv
*) wxConvCurrent
= &wxConvLibc
;
70 class wxStrConvModule
: public wxModule
73 wxStrConvModule() : wxModule() { }
74 virtual bool OnInit() { return TRUE
; }
79 wxConvISO8859_1
.Clear();
83 DECLARE_DYNAMIC_CLASS(wxStrConvModule
)
86 IMPLEMENT_DYNAMIC_CLASS(wxStrConvModule
, wxModule
)
89 // ----------------------------------------------------------------------------
91 // ----------------------------------------------------------------------------
103 #include "wx/encconv.h"
104 #include "wx/fontmap.h"
106 // ----------------------------------------------------------------------------
108 // ----------------------------------------------------------------------------
110 #define BSWAP_UCS4(str, len) { unsigned _c; for (_c=0; _c<len; _c++) str[_c]=wxUINT32_SWAP_ALWAYS(str[_c]); }
111 #define BSWAP_UTF16(str, len) { unsigned _c; for (_c=0; _c<len; _c++) str[_c]=wxUINT16_SWAP_ALWAYS(str[_c]); }
113 // under Unix SIZEOF_WCHAR_T is defined by configure, but under other platforms
114 // it might be not defined - assume the most common value
115 #ifndef SIZEOF_WCHAR_T
116 #define SIZEOF_WCHAR_T 2
117 #endif // !defined(SIZEOF_WCHAR_T)
119 #if SIZEOF_WCHAR_T == 4
120 #define WC_NAME "UCS4"
121 #define WC_BSWAP BSWAP_UCS4
122 #ifdef WORDS_BIGENDIAN
123 #define WC_NAME_BEST "UCS-4BE"
125 #define WC_NAME_BEST "UCS-4LE"
127 #elif SIZEOF_WCHAR_T == 2
128 #define WC_NAME "UTF16"
129 #define WC_BSWAP BSWAP_UTF16
131 #ifdef WORDS_BIGENDIAN
132 #define WC_NAME_BEST "UTF-16BE"
134 #define WC_NAME_BEST "UTF-16LE"
136 #else // sizeof(wchar_t) != 2 nor 4
137 // I don't know what to do about this
138 #error "Weird sizeof(wchar_t): please report your platform details to wx-users mailing list"
141 // ============================================================================
143 // ============================================================================
145 // ----------------------------------------------------------------------------
146 // UTF-16 en/decoding to/from UCS-4
147 // ----------------------------------------------------------------------------
150 static size_t encode_utf16(wxUint32 input
, wxUint16
*output
)
154 if (output
) *output
++ = (wxUint16
) input
;
157 else if (input
>=0x110000)
165 *output
++ = (wxUint16
) ((input
>> 10)+0xd7c0);
166 *output
++ = (wxUint16
) ((input
&0x3ff)+0xdc00);
172 static size_t decode_utf16(const wxUint16
* input
, wxUint32
& output
)
174 if ((*input
<0xd800) || (*input
>0xdfff))
179 else if ((input
[1]<0xdc00) || (input
[1]>=0xdfff))
186 output
= ((input
[0] - 0xd7c0) << 10) + (input
[1] - 0xdc00);
192 // ----------------------------------------------------------------------------
194 // ----------------------------------------------------------------------------
196 #define IGNORE_LIBC 0
198 wxMBConv::~wxMBConv()
200 // nothing to do here
203 size_t wxMBConv::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
208 for (size_t i
= 0; i
< strlen( psz
)+1; i
++)
209 buf
[i
] = (wchar_t) psz
[i
];
210 return strlen( psz
);
214 return strlen( psz
);
217 return wxMB2WC(buf
, psz
, n
);
221 size_t wxMBConv::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
226 for (size_t i
= 0; i
< wxStrlen( psz
)+1; i
++)
227 buf
[i
] = (char) psz
[i
];
228 return wxStrlen( psz
);
232 return wxStrlen( psz
);
235 return wxWC2MB(buf
, psz
, n
);
239 const wxWCharBuffer
wxMBConv::cMB2WC(const char *psz
) const
243 // calculate the length of the buffer needed first
244 size_t nLen
= MB2WC(NULL
, psz
, 0);
245 if ( nLen
!= (size_t)-1 )
247 // now do the actual conversion
248 wxWCharBuffer
buf(nLen
);
249 MB2WC(buf
.data(), psz
, nLen
+ 1); // with the trailing NUL
255 wxWCharBuffer
buf((wchar_t *)NULL
);
260 const wxCharBuffer
wxMBConv::cWC2MB(const wchar_t *pwz
) const
264 size_t nLen
= WC2MB(NULL
, pwz
, 0);
265 if ( nLen
!= (size_t)-1 )
267 wxCharBuffer
buf(nLen
+3); // space for a wxUint32 trailing zero
268 WC2MB(buf
.data(), pwz
, nLen
+ 4);
274 wxCharBuffer
buf((char *)NULL
);
279 // ----------------------------------------------------------------------------
281 // ----------------------------------------------------------------------------
283 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF7
) wxConvUTF7
;
286 static char utf7_setD
[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
287 "abcdefghijklmnopqrstuvwxyz"
288 "0123456789'(),-./:?";
289 static char utf7_setO
[]="!\"#$%&*;<=>@[]^_`{|}";
290 static char utf7_setB
[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
291 "abcdefghijklmnopqrstuvwxyz"
295 // TODO: write actual implementations of UTF-7 here
296 size_t wxMBConvUTF7::MB2WC(wchar_t * WXUNUSED(buf
),
297 const char * WXUNUSED(psz
),
298 size_t WXUNUSED(n
)) const
303 size_t wxMBConvUTF7::WC2MB(char * WXUNUSED(buf
),
304 const wchar_t * WXUNUSED(psz
),
305 size_t WXUNUSED(n
)) const
310 // ----------------------------------------------------------------------------
312 // ----------------------------------------------------------------------------
314 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF8
) wxConvUTF8
;
316 static wxUint32 utf8_max
[]=
317 { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff, 0xffffffff };
319 size_t wxMBConvUTF8::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
323 while (*psz
&& ((!buf
) || (len
< n
)))
325 unsigned char cc
= *psz
++, fc
= cc
;
327 for (cnt
= 0; fc
& 0x80; cnt
++)
341 // invalid UTF-8 sequence
346 unsigned ocnt
= cnt
- 1;
347 wxUint32 res
= cc
& (0x3f >> cnt
);
351 if ((cc
& 0xC0) != 0x80)
353 // invalid UTF-8 sequence
356 res
= (res
<< 6) | (cc
& 0x3f);
358 if (res
<= utf8_max
[ocnt
])
360 // illegal UTF-8 encoding
364 size_t pa
= encode_utf16(res
, buf
);
365 if (pa
== (size_t)-1)
374 #endif // WC_UTF16/!WC_UTF16
378 if (buf
&& (len
< n
))
383 size_t wxMBConvUTF8::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
387 while (*psz
&& ((!buf
) || (len
< n
)))
391 size_t pa
= decode_utf16(psz
, cc
);
392 psz
+= (pa
== (size_t)-1) ? 1 : pa
;
394 cc
=(*psz
++) & 0x7fffffff;
397 for (cnt
= 0; cc
> utf8_max
[cnt
]; cnt
++) {}
411 *buf
++ = (char) ((-128 >> cnt
) | ((cc
>> (cnt
* 6)) & (0x3f >> cnt
)));
413 *buf
++ = (char) (0x80 | ((cc
>> (cnt
* 6)) & 0x3f));
418 if (buf
&& (len
<n
)) *buf
= 0;
426 // ----------------------------------------------------------------------------
428 // ----------------------------------------------------------------------------
430 #ifdef WORDS_BIGENDIAN
431 #define wxMBConvUTF16straight wxMBConvUTF16BE
432 #define wxMBConvUTF16swap wxMBConvUTF16LE
434 #define wxMBConvUTF16swap wxMBConvUTF16BE
435 #define wxMBConvUTF16straight wxMBConvUTF16LE
439 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF16LE
) wxConvUTF16LE
;
440 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF16BE
) wxConvUTF16BE
;
449 // copy 16bit MB to 16bit String
450 size_t wxMBConvUTF16straight::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
454 while (*(wxUint16
*)psz
&& (!buf
|| len
< n
))
457 *buf
++ = *(wxUint16
*)psz
;
460 psz
+= sizeof(wxUint16
);
462 if (buf
&& len
<n
) *buf
=0;
468 // copy 16bit String to 16bit MB
469 size_t wxMBConvUTF16straight::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
473 while (*psz
&& (!buf
|| len
< n
))
477 *(wxUint16
*)buf
= *psz
;
478 buf
+= sizeof(wxUint16
);
480 len
+= sizeof(wxUint16
);
483 if (buf
&& len
<=n
-sizeof(wxUint16
)) *(wxUint16
*)buf
=0;
489 // swap 16bit MB to 16bit String
490 size_t wxMBConvUTF16swap::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
494 while (*(wxUint16
*)psz
&& (!buf
|| len
< n
))
498 ((char *)buf
)[0] = psz
[1];
499 ((char *)buf
)[1] = psz
[0];
503 psz
+= sizeof(wxUint16
);
505 if (buf
&& len
<n
) *buf
=0;
511 // swap 16bit MB to 16bit String
512 size_t wxMBConvUTF16swap::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
516 while (*psz
&& (!buf
|| len
< n
))
520 *buf
++ = ((char*)psz
)[1];
521 *buf
++ = ((char*)psz
)[0];
523 len
+= sizeof(wxUint16
);
526 if (buf
&& len
<=n
-sizeof(wxUint16
)) *(wxUint16
*)buf
=0;
535 // copy 16bit MB to 32bit String
536 size_t wxMBConvUTF16straight::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
540 while (*(wxUint16
*)psz
&& (!buf
|| len
< n
))
543 size_t pa
=decode_utf16((wxUint16
*)psz
, cc
);
544 if (pa
== (size_t)-1)
550 psz
+= pa
* sizeof(wxUint16
);
552 if (buf
&& len
<n
) *buf
=0;
558 // copy 32bit String to 16bit MB
559 size_t wxMBConvUTF16straight::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
563 while (*psz
&& (!buf
|| len
< n
))
566 size_t pa
=encode_utf16(*psz
, cc
);
568 if (pa
== (size_t)-1)
573 *((wxUint16
*)buf
)++ = cc
[0];
575 *((wxUint16
*)buf
)++ = cc
[1];
578 len
+= pa
*sizeof(wxUint16
);
581 if (buf
&& len
<=n
-sizeof(wxUint16
)) *(wxUint16
*)buf
=0;
587 // swap 16bit MB to 32bit String
588 size_t wxMBConvUTF16swap::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
592 while (*(wxUint16
*)psz
&& (!buf
|| len
< n
))
596 tmp
[0]=psz
[1]; tmp
[1]=psz
[0];
597 tmp
[2]=psz
[3]; tmp
[3]=psz
[2];
599 size_t pa
=decode_utf16((wxUint16
*)tmp
, cc
);
600 if (pa
== (size_t)-1)
607 psz
+= pa
* sizeof(wxUint16
);
609 if (buf
&& len
<n
) *buf
=0;
615 // swap 32bit String to 16bit MB
616 size_t wxMBConvUTF16swap::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
620 while (*psz
&& (!buf
|| len
< n
))
623 size_t pa
=encode_utf16(*psz
, cc
);
625 if (pa
== (size_t)-1)
630 *buf
++ = ((char*)cc
)[1];
631 *buf
++ = ((char*)cc
)[0];
634 *buf
++ = ((char*)cc
)[3];
635 *buf
++ = ((char*)cc
)[2];
639 len
+= pa
*sizeof(wxUint16
);
642 if (buf
&& len
<=n
-sizeof(wxUint16
)) *(wxUint16
*)buf
=0;
650 // ----------------------------------------------------------------------------
652 // ----------------------------------------------------------------------------
654 #ifdef WORDS_BIGENDIAN
655 #define wxMBConvUTF32straight wxMBConvUTF32BE
656 #define wxMBConvUTF32swap wxMBConvUTF32LE
658 #define wxMBConvUTF32swap wxMBConvUTF32BE
659 #define wxMBConvUTF32straight wxMBConvUTF32LE
663 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF32LE
) wxConvUTF32LE
;
664 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF32BE
) wxConvUTF32BE
;
669 // copy 32bit MB to 16bit String
670 size_t wxMBConvUTF32straight::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
674 while (*(wxUint32
*)psz
&& (!buf
|| len
< n
))
678 size_t pa
=encode_utf16(*(wxUint32
*)psz
, cc
);
679 if (pa
== (size_t)-1)
689 psz
+= sizeof(wxUint32
);
691 if (buf
&& len
<n
) *buf
=0;
697 // copy 16bit String to 32bit MB
698 size_t wxMBConvUTF32straight::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
702 while (*psz
&& (!buf
|| len
< n
))
706 size_t pa
=decode_utf16(psz
, cc
);
707 if (pa
== (size_t)-1)
712 *(wxUint32
*)buf
= cc
;
713 buf
+= sizeof(wxUint32
);
715 len
+= sizeof(wxUint32
);
718 if (buf
&& len
<=n
-sizeof(wxUint32
)) *(wxUint32
*)buf
=0;
725 // swap 32bit MB to 16bit String
726 size_t wxMBConvUTF32swap::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
730 while (*(wxUint32
*)psz
&& (!buf
|| len
< n
))
733 tmp
[0] = psz
[3]; tmp
[1] = psz
[2];
734 tmp
[2] = psz
[1]; tmp
[3] = psz
[0];
739 size_t pa
=encode_utf16(*(wxUint32
*)tmp
, cc
);
740 if (pa
== (size_t)-1)
750 psz
+= sizeof(wxUint32
);
752 if (buf
&& len
<n
) *buf
=0;
758 // swap 16bit String to 32bit MB
759 size_t wxMBConvUTF32swap::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
763 while (*psz
&& (!buf
|| len
< n
))
767 size_t pa
=decode_utf16(psz
, *(wxUint32
*)cc
);
768 if (pa
== (size_t)-1)
778 len
+= sizeof(wxUint32
);
781 if (buf
&& len
<=n
-sizeof(wxUint32
)) *(wxUint32
*)buf
=0;
789 // copy 32bit MB to 32bit String
790 size_t wxMBConvUTF32straight::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
794 while (*(wxUint32
*)psz
&& (!buf
|| len
< n
))
797 *buf
++ = *(wxUint32
*)psz
;
799 psz
+= sizeof(wxUint32
);
801 if (buf
&& len
<n
) *buf
=0;
807 // copy 32bit String to 32bit MB
808 size_t wxMBConvUTF32straight::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
812 while (*psz
&& (!buf
|| len
< n
))
816 *(wxUint32
*)buf
= *psz
;
817 buf
+= sizeof(wxUint32
);
820 len
+= sizeof(wxUint32
);
824 if (buf
&& len
<=n
-sizeof(wxUint32
)) *(wxUint32
*)buf
=0;
830 // swap 32bit MB to 32bit String
831 size_t wxMBConvUTF32swap::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
835 while (*(wxUint32
*)psz
&& (!buf
|| len
< n
))
839 ((char *)buf
)[0] = psz
[3];
840 ((char *)buf
)[1] = psz
[2];
841 ((char *)buf
)[2] = psz
[1];
842 ((char *)buf
)[3] = psz
[0];
846 psz
+= sizeof(wxUint32
);
848 if (buf
&& len
<n
) *buf
=0;
854 // swap 32bit String to 32bit MB
855 size_t wxMBConvUTF32swap::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
859 while (*psz
&& (!buf
|| len
< n
))
863 *buf
++ = ((char *)psz
)[3];
864 *buf
++ = ((char *)psz
)[2];
865 *buf
++ = ((char *)psz
)[1];
866 *buf
++ = ((char *)psz
)[0];
868 len
+= sizeof(wxUint32
);
871 if (buf
&& len
<=n
-sizeof(wxUint32
)) *(wxUint32
*)buf
=0;
880 // ============================================================================
881 // wxCharacterSet and derived classes
882 // ============================================================================
884 // ----------------------------------------------------------------------------
885 // wxCharacterSet is the ABC for the classes below
886 // ----------------------------------------------------------------------------
892 virtual ~wxCharacterSet() {}
894 virtual size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
) = 0;
895 virtual size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
) = 0;
896 virtual bool usable() const = 0;
899 // ----------------------------------------------------------------------------
900 // ID_CharSet: implementation of wxCharacterSet using an existing wxMBConv
901 // ----------------------------------------------------------------------------
903 class ID_CharSet
: public wxCharacterSet
906 ID_CharSet(wxMBConv
*cnv
) : work(cnv
) {}
908 size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
)
909 { return work
? work
->MB2WC(buf
,psz
,n
) : (size_t)-1; }
911 size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
)
912 { return work
? work
->WC2MB(buf
,psz
,n
) : (size_t)-1; }
915 { return work
!=NULL
; }
921 // ============================================================================
922 // The classes doing conversion using the iconv_xxx() functions
923 // ============================================================================
927 // VS: glibc 2.1.3 is broken in that iconv() conversion to/from UCS4 fails with E2BIG
928 // if output buffer is _exactly_ as big as needed. Such case is (unless there's
929 // yet another bug in glibc) the only case when iconv() returns with (size_t)-1
930 // (which means error) and says there are 0 bytes left in the input buffer --
931 // when _real_ error occurs, bytes-left-in-input buffer is non-zero. Hence,
932 // this alternative test for iconv() failure.
933 // [This bug does not appear in glibc 2.2.]
934 #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ <= 1
935 #define ICONV_FAILED(cres, bufLeft) ((cres == (size_t)-1) && \
936 (errno != E2BIG || bufLeft != 0))
938 #define ICONV_FAILED(cres, bufLeft) (cres == (size_t)-1)
941 #define ICONV_CHAR_CAST(x) ((ICONV_CONST char **)(x))
943 // ----------------------------------------------------------------------------
944 // IC_CharSet: encapsulates an iconv character set
945 // ----------------------------------------------------------------------------
947 class IC_CharSet
: public wxCharacterSet
950 IC_CharSet(const wxChar
*name
);
951 virtual ~IC_CharSet();
953 virtual size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
);
954 virtual size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
);
957 { return (m2w
!= (iconv_t
)-1) && (w2m
!= (iconv_t
)-1); }
960 // the iconv handlers used to translate from multibyte to wide char and in
961 // the other direction
966 // the name (for iconv_open()) of a wide char charset - if none is
967 // available on this machine, it will remain NULL
968 static const char *ms_wcCharsetName
;
970 // true if the wide char encoding we use (i.e. ms_wcCharsetName) has
971 // different endian-ness than the native one
972 static bool ms_wcNeedsSwap
;
975 const char *IC_CharSet::ms_wcCharsetName
= NULL
;
976 bool IC_CharSet::ms_wcNeedsSwap
= FALSE
;
978 IC_CharSet::IC_CharSet(const wxChar
*name
)
980 // Do it the hard way
982 for (size_t i
= 0; i
< wxStrlen(name
)+1; i
++)
983 cname
[i
] = (char) name
[i
];
985 // check for charset that represents wchar_t:
986 if (ms_wcCharsetName
== NULL
)
988 ms_wcNeedsSwap
= FALSE
;
990 // try charset with explicit bytesex info (e.g. "UCS-4LE"):
991 ms_wcCharsetName
= WC_NAME_BEST
;
992 m2w
= iconv_open(ms_wcCharsetName
, cname
);
994 if (m2w
== (iconv_t
)-1)
996 // try charset w/o bytesex info (e.g. "UCS4")
997 // and check for bytesex ourselves:
998 ms_wcCharsetName
= WC_NAME
;
999 m2w
= iconv_open(ms_wcCharsetName
, cname
);
1001 // last bet, try if it knows WCHAR_T pseudo-charset
1002 if (m2w
== (iconv_t
)-1)
1004 ms_wcCharsetName
= "WCHAR_T";
1005 m2w
= iconv_open(ms_wcCharsetName
, cname
);
1008 if (m2w
!= (iconv_t
)-1)
1010 char buf
[2], *bufPtr
;
1011 wchar_t wbuf
[2], *wbufPtr
;
1019 outsz
= SIZEOF_WCHAR_T
* 2;
1023 res
= iconv(m2w
, ICONV_CHAR_CAST(&bufPtr
), &insz
,
1024 (char**)&wbufPtr
, &outsz
);
1026 if (ICONV_FAILED(res
, insz
))
1028 ms_wcCharsetName
= NULL
;
1029 wxLogLastError(wxT("iconv"));
1030 wxLogError(_("Conversion to charset '%s' doesn't work."), name
);
1034 ms_wcNeedsSwap
= wbuf
[0] != (wchar_t)buf
[0];
1039 ms_wcCharsetName
= NULL
;
1041 // VS: we must not output an error here, since wxWindows will safely
1042 // fall back to using wxEncodingConverter.
1043 wxLogTrace(wxT("strconv"), wxT("Impossible to convert to/from charset '%s' with iconv, falling back to wxEncodingConverter."), name
);
1047 wxLogTrace(wxT("strconv"), wxT("wchar_t charset is '%s', needs swap: %i"), ms_wcCharsetName
, ms_wcNeedsSwap
);
1049 else // we already have ms_wcCharsetName
1051 m2w
= iconv_open(ms_wcCharsetName
, cname
);
1054 // NB: don't ever pass NULL to iconv_open(), it may crash!
1055 if ( ms_wcCharsetName
)
1057 w2m
= iconv_open( cname
, ms_wcCharsetName
);
1065 IC_CharSet::~IC_CharSet()
1067 if ( m2w
!= (iconv_t
)-1 )
1069 if ( w2m
!= (iconv_t
)-1 )
1073 size_t IC_CharSet::MB2WC(wchar_t *buf
, const char *psz
, size_t n
)
1075 size_t inbuf
= strlen(psz
);
1076 size_t outbuf
= n
* SIZEOF_WCHAR_T
;
1078 // VS: Use these instead of psz, buf because iconv() modifies its arguments:
1079 wchar_t *bufPtr
= buf
;
1080 const char *pszPtr
= psz
;
1084 // have destination buffer, convert there
1086 ICONV_CHAR_CAST(&pszPtr
), &inbuf
,
1087 (char**)&bufPtr
, &outbuf
);
1088 res
= n
- (outbuf
/ SIZEOF_WCHAR_T
);
1092 // convert to native endianness
1093 WC_BSWAP(buf
/* _not_ bufPtr */, res
)
1096 // NB: iconv was given only strlen(psz) characters on input, and so
1097 // it couldn't convert the trailing zero. Let's do it ourselves
1098 // if there's some room left for it in the output buffer.
1104 // no destination buffer... convert using temp buffer
1105 // to calculate destination buffer requirement
1110 outbuf
= 8*SIZEOF_WCHAR_T
;
1113 ICONV_CHAR_CAST(&pszPtr
), &inbuf
,
1114 (char**)&bufPtr
, &outbuf
);
1116 res
+= 8-(outbuf
/SIZEOF_WCHAR_T
);
1117 } while ((cres
==(size_t)-1) && (errno
==E2BIG
));
1120 if (ICONV_FAILED(cres
, inbuf
))
1122 //VS: it is ok if iconv fails, hence trace only
1123 wxLogTrace(wxT("strconv"), wxT("iconv failed: %s"), wxSysErrorMsg(wxSysErrorCode()));
1130 size_t IC_CharSet::WC2MB(char *buf
, const wchar_t *psz
, size_t n
)
1132 size_t inbuf
= wxWcslen(psz
) * SIZEOF_WCHAR_T
;
1136 wchar_t *tmpbuf
= 0;
1140 // need to copy to temp buffer to switch endianness
1141 // this absolutely doesn't rock!
1142 // (no, doing WC_BSWAP twice on the original buffer won't help, as it
1143 // could be in read-only memory, or be accessed in some other thread)
1144 tmpbuf
=(wchar_t*)malloc((inbuf
+1)*SIZEOF_WCHAR_T
);
1145 memcpy(tmpbuf
,psz
,(inbuf
+1)*SIZEOF_WCHAR_T
);
1146 WC_BSWAP(tmpbuf
, inbuf
)
1152 // have destination buffer, convert there
1153 cres
= iconv( w2m
, ICONV_CHAR_CAST(&psz
), &inbuf
, &buf
, &outbuf
);
1157 // NB: iconv was given only wcslen(psz) characters on input, and so
1158 // it couldn't convert the trailing zero. Let's do it ourselves
1159 // if there's some room left for it in the output buffer.
1165 // no destination buffer... convert using temp buffer
1166 // to calculate destination buffer requirement
1170 buf
= tbuf
; outbuf
= 16;
1172 cres
= iconv( w2m
, ICONV_CHAR_CAST(&psz
), &inbuf
, &buf
, &outbuf
);
1175 } while ((cres
==(size_t)-1) && (errno
==E2BIG
));
1183 if (ICONV_FAILED(cres
, inbuf
))
1185 //VS: it is ok if iconv fails, hence trace only
1186 wxLogTrace(wxT("strconv"), wxT("iconv failed: %s"), wxSysErrorMsg(wxSysErrorCode()));
1193 #endif // HAVE_ICONV
1195 // ============================================================================
1196 // Win32 conversion classes
1197 // ============================================================================
1199 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
1202 extern WXDLLIMPEXP_BASE
long wxCharsetToCodepage(const wxChar
*charset
);
1203 extern WXDLLIMPEXP_BASE
long wxEncodingToCodepage(wxFontEncoding encoding
);
1205 class CP_CharSet
: public wxCharacterSet
1208 CP_CharSet(const wxChar
* name
)
1210 m_CodePage
= wxCharsetToCodepage(name
);
1213 CP_CharSet(wxFontEncoding encoding
)
1215 m_CodePage
= wxEncodingToCodepage(encoding
);
1218 size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
)
1220 const size_t len
= ::MultiByteToWideChar
1222 m_CodePage
, // code page
1224 psz
, // input string
1225 -1, // its length (NUL-terminated)
1226 buf
, // output string
1227 buf
? n
: 0 // size of output buffer
1230 // note that it returns # of written chars for buf != NULL and *size*
1231 // of the needed buffer for buf == NULL
1232 return len
? (buf
? len
: len
- 1) : (size_t)-1;
1235 size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
)
1237 const size_t len
= ::WideCharToMultiByte
1239 m_CodePage
, // code page
1241 psz
, // input string
1242 -1, // it is (wide) NUL-terminated
1243 buf
, // output buffer
1244 buf
? n
: 0, // and its size
1245 NULL
, // default "replacement" char
1246 NULL
// [out] was it used?
1249 // see the comment above!
1250 return len
? (buf
? len
: len
- 1) : (size_t)-1;
1254 { return m_CodePage
!= -1; }
1259 #endif // defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
1261 // ============================================================================
1262 // wxEncodingConverter based conversion classes
1263 // ============================================================================
1267 class EC_CharSet
: public wxCharacterSet
1272 m_ok
= m2w
.Init(m_enc
, wxFONTENCODING_UNICODE
) &&
1273 w2m
.Init(wxFONTENCODING_UNICODE
, m_enc
);
1277 // temporarily just use wxEncodingConverter stuff,
1278 // so that it works while a better implementation is built
1279 EC_CharSet(const wxChar
* name
)
1282 m_enc
= wxFontMapper::Get()->CharsetToEncoding(name
, FALSE
);
1284 m_enc
= wxFONTENCODING_SYSTEM
;
1289 EC_CharSet(wxFontEncoding enc
)
1296 size_t MB2WC(wchar_t *buf
, const char *psz
, size_t WXUNUSED(n
))
1298 size_t inbuf
= strlen(psz
);
1300 m2w
.Convert(psz
,buf
);
1304 size_t WC2MB(char *buf
, const wchar_t *psz
, size_t WXUNUSED(n
))
1306 const size_t inbuf
= wxWcslen(psz
);
1308 w2m
.Convert(psz
,buf
);
1313 bool usable() const { return m_ok
; }
1316 wxFontEncoding m_enc
;
1317 wxEncodingConverter m2w
, w2m
;
1319 // were we initialized successfully?
1322 DECLARE_NO_COPY_CLASS(EC_CharSet
)
1325 #endif // wxUSE_FONTMAP
1327 // ----------------------------------------------------------------------------
1328 // the function creating the wxCharacterSet for the specified charset on the
1329 // current system, trying all possibilities
1331 // it uses the name if it is given or encoding if name == NULL
1332 // ----------------------------------------------------------------------------
1334 static wxCharacterSet
*
1335 wxGetCharacterSet(const wxChar
*name
, wxFontEncoding encoding
)
1337 // check for the special case of ASCII charset
1338 if ( (!name
&& encoding
== wxFONTENCODING_DEFAULT
)
1340 || (name
&& wxFontMapper::Get()->
1341 CharsetToEncoding(name
) == wxFONTENCODING_DEFAULT
)
1342 #endif // wxUSE_FONTMAP
1345 // don't convert at all
1349 wxCharacterSet
*cset
= NULL
;
1353 if((wxStricmp(name
, wxT("UTF8")) == 0) ||
1354 (wxStricmp(name
, wxT("UTF-8")) == 0) ||
1355 encoding
== wxFONTENCODING_UTF8
)
1357 cset
= new ID_CharSet(&wxConvUTF8
);
1359 else if((wxStricmp(name
, wxT("UTF16")) == 0) ||
1360 (wxStricmp(name
, wxT("UTF-16")) == 0) ||
1361 encoding
== wxFONTENCODING_UTF16
)
1363 #ifdef WORDS_BIGENDIAN
1364 cset
= new ID_CharSet(&wxConvUTF16BE
);
1366 cset
= new ID_CharSet(&wxConvUTF16LE
);
1369 else if((wxStricmp(name
, wxT("UTF16BE")) == 0) ||
1370 (wxStricmp(name
, wxT("UTF-16BE")) == 0) ||
1371 encoding
== wxFONTENCODING_UTF16BE
)
1373 cset
= new ID_CharSet(&wxConvUTF16BE
);
1375 else if((wxStricmp(name
, wxT("UTF16LE")) == 0) ||
1376 (wxStricmp(name
, wxT("UTF-16LE")) == 0) ||
1377 encoding
== wxFONTENCODING_UTF16LE
)
1379 cset
= new ID_CharSet(&wxConvUTF16LE
);
1381 else if((wxStricmp(name
, wxT("UTF32")) == 0) ||
1382 (wxStricmp(name
, wxT("UTF-32")) == 0) ||
1383 (wxStricmp(name
, wxT("UCS4")) == 0) ||
1384 (wxStricmp(name
, wxT("UCS-4")) == 0) ||
1385 encoding
== wxFONTENCODING_UTF32
)
1387 #ifdef WORDS_BIGENDIAN
1388 cset
= new ID_CharSet(&wxConvUTF32BE
);
1390 cset
= new ID_CharSet(&wxConvUTF32LE
);
1393 else if((wxStricmp(name
, wxT("UTF32BE")) == 0) ||
1394 (wxStricmp(name
, wxT("UTF-32BE")) == 0) ||
1395 (wxStricmp(name
, wxT("UCS4BE")) == 0) ||
1396 (wxStricmp(name
, wxT("UCS-4BE")) == 0) ||
1397 encoding
== wxFONTENCODING_UTF32BE
)
1399 cset
= new ID_CharSet(&wxConvUTF32BE
);
1401 else if((wxStricmp(name
, wxT("UTF32LE")) == 0) ||
1402 (wxStricmp(name
, wxT("UTF-32LE")) == 0) ||
1403 (wxStricmp(name
, wxT("UCS4LE")) == 0) ||
1404 (wxStricmp(name
, wxT("UCS-4LE")) == 0) ||
1405 encoding
== wxFONTENCODING_UTF32
)
1407 cset
= new ID_CharSet(&wxConvUTF32LE
);
1412 cset
= new IC_CharSet(name
);
1414 #endif // HAVE_ICONV
1417 // it can only be NULL in this case
1420 #endif // !HAVE_ICONV
1422 if ( cset
->usable() )
1429 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
1430 cset
= name
? new CP_CharSet(name
) : new CP_CharSet(encoding
);
1431 if ( cset
->usable() )
1436 #endif // defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
1439 cset
= name
? new EC_CharSet(name
) : new EC_CharSet(encoding
);
1440 if ( cset
->usable() )
1445 #endif // wxUSE_FONTMAP
1447 wxLogError(_("Cannot convert from encoding '%s'!"),
1451 wxFontMapper::GetEncodingDescription(encoding
).c_str()
1452 #else // !wxUSE_FONTMAP
1453 wxString::Format(_T("%s"), encoding
).c_str()
1454 #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP
1460 // ============================================================================
1461 // wxCSConv implementation
1462 // ============================================================================
1464 void wxCSConv::Init()
1466 m_name
= (wxChar
*)NULL
;
1467 m_cset
= (wxCharacterSet
*) NULL
;
1471 wxCSConv::wxCSConv(const wxChar
*charset
)
1474 m_encoding
= wxFONTENCODING_DEFAULT
;
1479 wxCSConv::wxCSConv(wxFontEncoding encoding
)
1483 m_encoding
= encoding
;
1486 wxCSConv::~wxCSConv()
1491 wxCSConv::wxCSConv(const wxCSConv
& conv
)
1496 SetName(conv
.m_name
);
1497 m_encoding
= conv
.m_encoding
;
1500 wxCSConv
& wxCSConv::operator=(const wxCSConv
& conv
)
1504 SetName(conv
.m_name
);
1505 m_encoding
= conv
.m_encoding
;
1510 void wxCSConv::Clear()
1519 void wxCSConv::SetName(const wxChar
*charset
)
1523 m_name
= wxStrdup(charset
);
1528 void wxCSConv::LoadNow()
1532 // it would probably be better to make GetSystemEncodingName() always
1533 // available (i.e. even when wxUSE_INTL == 0)?
1535 if ( !m_name
&& m_encoding
== wxFONTENCODING_DEFAULT
)
1537 wxString name
= wxLocale::GetSystemEncodingName();
1538 if ( !name
.empty() )
1543 #endif // wxUSE_INTL
1545 // wxGetCharacterSet() complains about NULL name
1546 m_cset
= wxGetCharacterSet(m_name
, m_encoding
);
1551 size_t wxCSConv::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
1553 ((wxCSConv
*)this)->LoadNow(); // discard constness
1556 return m_cset
->MB2WC(buf
, psz
, n
);
1559 size_t len
= strlen(psz
);
1563 for (size_t c
= 0; c
<= len
; c
++)
1564 buf
[c
] = (unsigned char)(psz
[c
]);
1570 size_t wxCSConv::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
1572 ((wxCSConv
*)this)->LoadNow(); // discard constness
1575 return m_cset
->WC2MB(buf
, psz
, n
);
1578 const size_t len
= wxWcslen(psz
);
1581 for (size_t c
= 0; c
<= len
; c
++)
1582 buf
[c
] = (psz
[c
] > 0xff) ? '?' : psz
[c
];
1588 #endif // wxUSE_WCHAR_T