]>
git.saurik.com Git - wxWidgets.git/blob - src/common/strconv.cpp
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
147 // ----------------------------------------------------------------------------
151 static size_t encode_utf16(wxUint32 input
, wchar_t *output
)
155 if (output
) *output
++ = (wchar_t) input
;
158 else if (input
>=0x110000)
166 *output
++ = (wchar_t) ((input
>> 10)+0xd7c0);
167 *output
++ = (wchar_t) ((input
&0x3ff)+0xdc00);
173 static size_t decode_utf16(const wchar_t* input
, wxUint32
& output
)
175 if ((*input
<0xd800) || (*input
>0xdfff))
180 else if ((input
[1]<0xdc00) || (input
[1]>=0xdfff))
187 output
= ((input
[0] - 0xd7c0) << 10) + (input
[1] - 0xdc00);
194 // ----------------------------------------------------------------------------
196 // ----------------------------------------------------------------------------
198 #define IGNORE_LIBC 0
200 wxMBConv::~wxMBConv()
202 // nothing to do here
205 size_t wxMBConv::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
210 for (size_t i
= 0; i
< strlen( psz
)+1; i
++)
211 buf
[i
] = (wchar_t) psz
[i
];
212 return strlen( psz
);
216 return strlen( psz
);
219 return wxMB2WC(buf
, psz
, n
);
223 size_t wxMBConv::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
228 for (size_t i
= 0; i
< wxStrlen( psz
)+1; i
++)
229 buf
[i
] = (char) psz
[i
];
230 return wxStrlen( psz
);
234 return wxStrlen( psz
);
237 return wxWC2MB(buf
, psz
, n
);
241 const wxWCharBuffer
wxMBConv::cMB2WC(const char *psz
) const
245 // calculate the length of the buffer needed first
246 size_t nLen
= MB2WC(NULL
, psz
, 0);
247 if ( nLen
!= (size_t)-1 )
249 // now do the actual conversion
250 wxWCharBuffer
buf(nLen
);
251 MB2WC(buf
.data(), psz
, nLen
+ 1); // with the trailing NUL
257 wxWCharBuffer
buf((wchar_t *)NULL
);
262 const wxCharBuffer
wxMBConv::cWC2MB(const wchar_t *pwz
) const
266 size_t nLen
= WC2MB(NULL
, pwz
, 0);
267 if ( nLen
!= (size_t)-1 )
269 wxCharBuffer
buf(nLen
);
270 WC2MB(buf
.data(), pwz
, nLen
+ 1);
276 wxCharBuffer
buf((char *)NULL
);
281 // ----------------------------------------------------------------------------
283 // ----------------------------------------------------------------------------
285 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF7
) wxConvUTF7
;
288 static char utf7_setD
[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
289 "abcdefghijklmnopqrstuvwxyz"
290 "0123456789'(),-./:?";
291 static char utf7_setO
[]="!\"#$%&*;<=>@[]^_`{|}";
292 static char utf7_setB
[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
293 "abcdefghijklmnopqrstuvwxyz"
297 // TODO: write actual implementations of UTF-7 here
298 size_t wxMBConvUTF7::MB2WC(wchar_t * WXUNUSED(buf
),
299 const char * WXUNUSED(psz
),
300 size_t WXUNUSED(n
)) const
305 size_t wxMBConvUTF7::WC2MB(char * WXUNUSED(buf
),
306 const wchar_t * WXUNUSED(psz
),
307 size_t WXUNUSED(n
)) const
312 // ----------------------------------------------------------------------------
314 // ----------------------------------------------------------------------------
316 WXDLLIMPEXP_DATA_BASE(wxMBConvUTF8
) wxConvUTF8
;
318 static wxUint32 utf8_max
[]=
319 { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff, 0xffffffff };
321 size_t wxMBConvUTF8::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
325 while (*psz
&& ((!buf
) || (len
< n
)))
327 unsigned char cc
= *psz
++, fc
= cc
;
329 for (cnt
= 0; fc
& 0x80; cnt
++)
343 // invalid UTF-8 sequence
348 unsigned ocnt
= cnt
- 1;
349 wxUint32 res
= cc
& (0x3f >> cnt
);
353 if ((cc
& 0xC0) != 0x80)
355 // invalid UTF-8 sequence
358 res
= (res
<< 6) | (cc
& 0x3f);
360 if (res
<= utf8_max
[ocnt
])
362 // illegal UTF-8 encoding
366 size_t pa
= encode_utf16(res
, buf
);
367 if (pa
== (size_t)-1)
376 #endif // WC_UTF16/!WC_UTF16
380 if (buf
&& (len
< n
))
385 size_t wxMBConvUTF8::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
389 while (*psz
&& ((!buf
) || (len
< n
)))
393 size_t pa
= decode_utf16(psz
, cc
);
394 psz
+= (pa
== (size_t)-1) ? 1 : pa
;
396 cc
=(*psz
++) & 0x7fffffff;
399 for (cnt
= 0; cc
> utf8_max
[cnt
]; cnt
++) {}
413 *buf
++ = (char) ((-128 >> cnt
) | ((cc
>> (cnt
* 6)) & (0x3f >> cnt
)));
415 *buf
++ = (char) (0x80 | ((cc
>> (cnt
* 6)) & 0x3f));
420 if (buf
&& (len
<n
)) *buf
= 0;
425 // ============================================================================
426 // wxCharacterSet and derived classes
427 // ============================================================================
429 // ----------------------------------------------------------------------------
430 // wxCharacterSet is the ABC for the classes below
431 // ----------------------------------------------------------------------------
437 virtual ~wxCharacterSet() {}
439 virtual size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
) = 0;
440 virtual size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
) = 0;
441 virtual bool usable() const = 0;
444 // ----------------------------------------------------------------------------
445 // ID_CharSet: implementation of wxCharacterSet using an existing wxMBConv
446 // ----------------------------------------------------------------------------
448 class ID_CharSet
: public wxCharacterSet
451 ID_CharSet(wxMBConv
*cnv
) : work(cnv
) {}
453 size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
)
454 { return work
? work
->MB2WC(buf
,psz
,n
) : (size_t)-1; }
456 size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
)
457 { return work
? work
->WC2MB(buf
,psz
,n
) : (size_t)-1; }
460 { return work
!=NULL
; }
466 // ============================================================================
467 // The classes doing conversion using the iconv_xxx() functions
468 // ============================================================================
472 // VS: glibc 2.1.3 is broken in that iconv() conversion to/from UCS4 fails with E2BIG
473 // if output buffer is _exactly_ as big as needed. Such case is (unless there's
474 // yet another bug in glibc) the only case when iconv() returns with (size_t)-1
475 // (which means error) and says there are 0 bytes left in the input buffer --
476 // when _real_ error occurs, bytes-left-in-input buffer is non-zero. Hence,
477 // this alternative test for iconv() failure.
478 // [This bug does not appear in glibc 2.2.]
479 #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ <= 1
480 #define ICONV_FAILED(cres, bufLeft) ((cres == (size_t)-1) && \
481 (errno != E2BIG || bufLeft != 0))
483 #define ICONV_FAILED(cres, bufLeft) (cres == (size_t)-1)
486 #define ICONV_CHAR_CAST(x) ((ICONV_CONST char **)(x))
488 // ----------------------------------------------------------------------------
489 // IC_CharSet: encapsulates an iconv character set
490 // ----------------------------------------------------------------------------
492 class IC_CharSet
: public wxCharacterSet
495 IC_CharSet(const wxChar
*name
);
496 virtual ~IC_CharSet();
498 virtual size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
);
499 virtual size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
);
502 { return (m2w
!= (iconv_t
)-1) && (w2m
!= (iconv_t
)-1); }
505 // the iconv handlers used to translate from multibyte to wide char and in
506 // the other direction
511 // the name (for iconv_open()) of a wide char charset - if none is
512 // available on this machine, it will remain NULL
513 static const char *ms_wcCharsetName
;
515 // true if the wide char encoding we use (i.e. ms_wcCharsetName) has
516 // different endian-ness than the native one
517 static bool ms_wcNeedsSwap
;
520 const char *IC_CharSet::ms_wcCharsetName
= NULL
;
521 bool IC_CharSet::ms_wcNeedsSwap
= FALSE
;
523 IC_CharSet::IC_CharSet(const wxChar
*name
)
525 // Do it the hard way
527 for (size_t i
= 0; i
< wxStrlen(name
)+1; i
++)
528 cname
[i
] = (char) name
[i
];
530 // check for charset that represents wchar_t:
531 if (ms_wcCharsetName
== NULL
)
533 ms_wcNeedsSwap
= FALSE
;
535 // try charset with explicit bytesex info (e.g. "UCS-4LE"):
536 ms_wcCharsetName
= WC_NAME_BEST
;
537 m2w
= iconv_open(ms_wcCharsetName
, cname
);
539 if (m2w
== (iconv_t
)-1)
541 // try charset w/o bytesex info (e.g. "UCS4")
542 // and check for bytesex ourselves:
543 ms_wcCharsetName
= WC_NAME
;
544 m2w
= iconv_open(ms_wcCharsetName
, cname
);
546 // last bet, try if it knows WCHAR_T pseudo-charset
547 if (m2w
== (iconv_t
)-1)
549 ms_wcCharsetName
= "WCHAR_T";
550 m2w
= iconv_open(ms_wcCharsetName
, cname
);
553 if (m2w
!= (iconv_t
)-1)
555 char buf
[2], *bufPtr
;
556 wchar_t wbuf
[2], *wbufPtr
;
564 outsz
= SIZEOF_WCHAR_T
* 2;
568 res
= iconv(m2w
, ICONV_CHAR_CAST(&bufPtr
), &insz
,
569 (char**)&wbufPtr
, &outsz
);
571 if (ICONV_FAILED(res
, insz
))
573 ms_wcCharsetName
= NULL
;
574 wxLogLastError(wxT("iconv"));
575 wxLogError(_("Conversion to charset '%s' doesn't work."), name
);
579 ms_wcNeedsSwap
= wbuf
[0] != (wchar_t)buf
[0];
584 ms_wcCharsetName
= NULL
;
586 // VS: we must not output an error here, since wxWindows will safely
587 // fall back to using wxEncodingConverter.
588 wxLogTrace(wxT("strconv"), wxT("Impossible to convert to/from charset '%s' with iconv, falling back to wxEncodingConverter."), name
);
592 wxLogTrace(wxT("strconv"), wxT("wchar_t charset is '%s', needs swap: %i"), ms_wcCharsetName
, ms_wcNeedsSwap
);
594 else // we already have ms_wcCharsetName
596 m2w
= iconv_open(ms_wcCharsetName
, cname
);
599 // NB: don't ever pass NULL to iconv_open(), it may crash!
600 if ( ms_wcCharsetName
)
602 w2m
= iconv_open( cname
, ms_wcCharsetName
);
610 IC_CharSet::~IC_CharSet()
612 if ( m2w
!= (iconv_t
)-1 )
614 if ( w2m
!= (iconv_t
)-1 )
618 size_t IC_CharSet::MB2WC(wchar_t *buf
, const char *psz
, size_t n
)
620 size_t inbuf
= strlen(psz
);
621 size_t outbuf
= n
* SIZEOF_WCHAR_T
;
623 // VS: Use these instead of psz, buf because iconv() modifies its arguments:
624 wchar_t *bufPtr
= buf
;
625 const char *pszPtr
= psz
;
629 // have destination buffer, convert there
631 ICONV_CHAR_CAST(&pszPtr
), &inbuf
,
632 (char**)&bufPtr
, &outbuf
);
633 res
= n
- (outbuf
/ SIZEOF_WCHAR_T
);
637 // convert to native endianness
638 WC_BSWAP(buf
/* _not_ bufPtr */, res
)
641 // NB: iconv was given only strlen(psz) characters on input, and so
642 // it couldn't convert the trailing zero. Let's do it ourselves
643 // if there's some room left for it in the output buffer.
649 // no destination buffer... convert using temp buffer
650 // to calculate destination buffer requirement
655 outbuf
= 8*SIZEOF_WCHAR_T
;
658 ICONV_CHAR_CAST(&pszPtr
), &inbuf
,
659 (char**)&bufPtr
, &outbuf
);
661 res
+= 8-(outbuf
/SIZEOF_WCHAR_T
);
662 } while ((cres
==(size_t)-1) && (errno
==E2BIG
));
665 if (ICONV_FAILED(cres
, inbuf
))
667 //VS: it is ok if iconv fails, hence trace only
668 wxLogTrace(wxT("strconv"), wxT("iconv failed: %s"), wxSysErrorMsg(wxSysErrorCode()));
675 size_t IC_CharSet::WC2MB(char *buf
, const wchar_t *psz
, size_t n
)
677 size_t inbuf
= wxWcslen(psz
) * SIZEOF_WCHAR_T
;
685 // need to copy to temp buffer to switch endianness
686 // this absolutely doesn't rock!
687 // (no, doing WC_BSWAP twice on the original buffer won't help, as it
688 // could be in read-only memory, or be accessed in some other thread)
689 tmpbuf
=(wchar_t*)malloc((inbuf
+1)*SIZEOF_WCHAR_T
);
690 memcpy(tmpbuf
,psz
,(inbuf
+1)*SIZEOF_WCHAR_T
);
691 WC_BSWAP(tmpbuf
, inbuf
)
697 // have destination buffer, convert there
698 cres
= iconv( w2m
, ICONV_CHAR_CAST(&psz
), &inbuf
, &buf
, &outbuf
);
702 // NB: iconv was given only wcslen(psz) characters on input, and so
703 // it couldn't convert the trailing zero. Let's do it ourselves
704 // if there's some room left for it in the output buffer.
710 // no destination buffer... convert using temp buffer
711 // to calculate destination buffer requirement
715 buf
= tbuf
; outbuf
= 16;
717 cres
= iconv( w2m
, ICONV_CHAR_CAST(&psz
), &inbuf
, &buf
, &outbuf
);
720 } while ((cres
==(size_t)-1) && (errno
==E2BIG
));
728 if (ICONV_FAILED(cres
, inbuf
))
730 //VS: it is ok if iconv fails, hence trace only
731 wxLogTrace(wxT("strconv"), wxT("iconv failed: %s"), wxSysErrorMsg(wxSysErrorCode()));
740 // ============================================================================
741 // Win32 conversion classes
742 // ============================================================================
744 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
747 extern WXDLLIMPEXP_BASE
long wxCharsetToCodepage(const wxChar
*charset
);
748 extern WXDLLIMPEXP_BASE
long wxEncodingToCodepage(wxFontEncoding encoding
);
750 class CP_CharSet
: public wxCharacterSet
753 CP_CharSet(const wxChar
* name
)
755 m_CodePage
= wxCharsetToCodepage(name
);
758 CP_CharSet(wxFontEncoding encoding
)
760 m_CodePage
= wxEncodingToCodepage(encoding
);
763 size_t MB2WC(wchar_t *buf
, const char *psz
, size_t n
)
765 const size_t len
= ::MultiByteToWideChar
767 m_CodePage
, // code page
770 -1, // its length (NUL-terminated)
771 buf
, // output string
772 buf
? n
: 0 // size of output buffer
775 // note that it returns # of written chars for buf != NULL and *size*
776 // of the needed buffer for buf == NULL
777 return len
? (buf
? len
: len
- 1) : (size_t)-1;
780 size_t WC2MB(char *buf
, const wchar_t *psz
, size_t n
)
782 const size_t len
= ::WideCharToMultiByte
784 m_CodePage
, // code page
787 -1, // it is (wide) NUL-terminated
788 buf
, // output buffer
789 buf
? n
: 0, // and its size
790 NULL
, // default "replacement" char
791 NULL
// [out] was it used?
794 // see the comment above!
795 return len
? (buf
? len
: len
- 1) : (size_t)-1;
799 { return m_CodePage
!= -1; }
804 #endif // defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
806 // ============================================================================
807 // wxEncodingConverter based conversion classes
808 // ============================================================================
812 class EC_CharSet
: public wxCharacterSet
817 m_ok
= m2w
.Init(m_enc
, wxFONTENCODING_UNICODE
) &&
818 w2m
.Init(wxFONTENCODING_UNICODE
, m_enc
);
822 // temporarily just use wxEncodingConverter stuff,
823 // so that it works while a better implementation is built
824 EC_CharSet(const wxChar
* name
)
827 m_enc
= wxFontMapper::Get()->CharsetToEncoding(name
, FALSE
);
829 m_enc
= wxFONTENCODING_SYSTEM
;
834 EC_CharSet(wxFontEncoding enc
)
841 size_t MB2WC(wchar_t *buf
, const char *psz
, size_t WXUNUSED(n
))
843 size_t inbuf
= strlen(psz
);
845 m2w
.Convert(psz
,buf
);
849 size_t WC2MB(char *buf
, const wchar_t *psz
, size_t WXUNUSED(n
))
851 const size_t inbuf
= wxWcslen(psz
);
853 w2m
.Convert(psz
,buf
);
858 bool usable() const { return m_ok
; }
861 wxFontEncoding m_enc
;
862 wxEncodingConverter m2w
, w2m
;
864 // were we initialized successfully?
867 DECLARE_NO_COPY_CLASS(EC_CharSet
)
870 #endif // wxUSE_FONTMAP
872 // ----------------------------------------------------------------------------
873 // the function creating the wxCharacterSet for the specified charset on the
874 // current system, trying all possibilities
876 // it uses the name if it is given or encoding if name == NULL
877 // ----------------------------------------------------------------------------
879 static wxCharacterSet
*
880 wxGetCharacterSet(const wxChar
*name
, wxFontEncoding encoding
)
882 // check for the special case of ASCII charset
883 if ( (!name
&& encoding
== wxFONTENCODING_DEFAULT
)
885 || (name
&& wxFontMapper::Get()->
886 CharsetToEncoding(name
) == wxFONTENCODING_DEFAULT
)
887 #endif // wxUSE_FONTMAP
890 // don't convert at all
894 wxCharacterSet
*cset
;
897 (wxStricmp(name
, wxT("UTF8")) == 0 ||
898 wxStricmp(name
, wxT("UTF-8")) == 0)) ||
899 encoding
== wxFONTENCODING_UTF8
)
901 cset
= new ID_CharSet(&wxConvUTF8
);
908 cset
= new IC_CharSet(name
);
917 // it can only be NULL in this case
920 #endif // !HAVE_ICONV
922 if ( cset
->usable() )
929 #if defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
930 cset
= name
? new CP_CharSet(name
) : new CP_CharSet(encoding
);
931 if ( cset
->usable() )
936 #endif // defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXUNIVERSAL__)
939 cset
= name
? new EC_CharSet(name
) : new EC_CharSet(encoding
);
940 if ( cset
->usable() )
945 #endif // wxUSE_FONTMAP
947 wxLogError(_("Cannot convert from encoding '%s'!"),
951 wxFontMapper::GetEncodingDescription(encoding
).c_str()
952 #else // !wxUSE_FONTMAP
953 wxString::Format(_T("%s"), encoding
).c_str()
954 #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP
960 // ============================================================================
961 // wxCSConv implementation
962 // ============================================================================
964 void wxCSConv::Init()
966 m_name
= (wxChar
*)NULL
;
967 m_cset
= (wxCharacterSet
*) NULL
;
971 wxCSConv::wxCSConv(const wxChar
*charset
)
974 m_encoding
= wxFONTENCODING_DEFAULT
;
979 wxCSConv::wxCSConv(wxFontEncoding encoding
)
983 m_encoding
= encoding
;
986 wxCSConv::~wxCSConv()
991 wxCSConv::wxCSConv(const wxCSConv
& conv
)
996 SetName(conv
.m_name
);
997 m_encoding
= conv
.m_encoding
;
1000 wxCSConv
& wxCSConv::operator=(const wxCSConv
& conv
)
1004 SetName(conv
.m_name
);
1005 m_encoding
= conv
.m_encoding
;
1010 void wxCSConv::Clear()
1019 void wxCSConv::SetName(const wxChar
*charset
)
1023 m_name
= wxStrdup(charset
);
1028 void wxCSConv::LoadNow()
1032 // it would probably be better to make GetSystemEncodingName() always
1033 // available (i.e. even when wxUSE_INTL == 0)?
1035 if ( !m_name
&& m_encoding
== wxFONTENCODING_DEFAULT
)
1037 wxString name
= wxLocale::GetSystemEncodingName();
1038 if ( !name
.empty() )
1043 #endif // wxUSE_INTL
1045 // wxGetCharacterSet() complains about NULL name
1046 m_cset
= wxGetCharacterSet(m_name
, m_encoding
);
1051 size_t wxCSConv::MB2WC(wchar_t *buf
, const char *psz
, size_t n
) const
1053 ((wxCSConv
*)this)->LoadNow(); // discard constness
1056 return m_cset
->MB2WC(buf
, psz
, n
);
1059 size_t len
= strlen(psz
);
1063 for (size_t c
= 0; c
<= len
; c
++)
1064 buf
[c
] = (unsigned char)(psz
[c
]);
1070 size_t wxCSConv::WC2MB(char *buf
, const wchar_t *psz
, size_t n
) const
1072 ((wxCSConv
*)this)->LoadNow(); // discard constness
1075 return m_cset
->WC2MB(buf
, psz
, n
);
1078 const size_t len
= wxWcslen(psz
);
1081 for (size_t c
= 0; c
<= len
; c
++)
1082 buf
[c
] = (psz
[c
] > 0xff) ? '?' : psz
[c
];
1088 #endif // wxUSE_WCHAR_T