]> git.saurik.com Git - wxWidgets.git/blob - src/common/strconv.cpp
This way strconv copmiles again. I don't think
[wxWidgets.git] / src / common / strconv.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: strconv.cpp
3 // Purpose: Unicode conversion classes
4 // Author: Ove Kaaven, Robert Roebling, Vadim Zeitlin, Vaclav Slavik
5 // Modified by:
6 // Created: 29/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1999 Ove Kaaven, Robert Roebling, Vadim Zeitlin, Vaclav Slavik
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "strconv.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include "wx/intl.h"
33 #include "wx/log.h"
34 #endif // WX_PRECOMP
35
36 #ifdef __WXMSW__
37 #include "wx/msw/private.h"
38 #endif
39
40 #include <errno.h>
41 #include <ctype.h>
42 #include <string.h>
43 #include <stdlib.h>
44
45 #include "wx/module.h"
46 #include "wx/strconv.h"
47
48 // ----------------------------------------------------------------------------
49 // globals
50 // ----------------------------------------------------------------------------
51
52 #if wxUSE_WCHAR_T
53 WXDLLEXPORT_DATA(wxMBConv) wxConvLibc;
54 WXDLLEXPORT_DATA(wxCSConv) wxConvLocal((const wxChar *)NULL);
55 #else
56 // stand-ins in absence of wchar_t
57 WXDLLEXPORT_DATA(wxMBConv) wxConvLibc, wxConvFile;
58 #endif // wxUSE_WCHAR_T
59
60 WXDLLEXPORT_DATA(wxMBConv *) wxConvCurrent = &wxConvLibc;
61
62 class wxStrConvModule: public wxModule
63 {
64 public:
65 wxStrConvModule() : wxModule() { }
66 virtual bool OnInit() { return TRUE; }
67 virtual void OnExit()
68 {
69 #if wxUSE_WCHAR_T
70 wxConvLocal.Clear();
71 #endif
72 }
73
74 DECLARE_DYNAMIC_CLASS(wxStrConvModule)
75 };
76
77 IMPLEMENT_DYNAMIC_CLASS(wxStrConvModule, wxModule)
78
79
80 // ----------------------------------------------------------------------------
81 // headers
82 // ----------------------------------------------------------------------------
83
84 #if wxUSE_WCHAR_T
85
86 #ifdef __SALFORDC__
87 #include <clib.h>
88 #endif
89
90 #ifdef HAVE_ICONV
91 #include <iconv.h>
92 #endif
93
94 #include "wx/encconv.h"
95 #include "wx/fontmap.h"
96
97 // ----------------------------------------------------------------------------
98 // macros
99 // ----------------------------------------------------------------------------
100
101 #define BSWAP_UCS4(str, len) { unsigned _c; for (_c=0; _c<len; _c++) str[_c]=wxUINT32_SWAP_ALWAYS(str[_c]); }
102 #define BSWAP_UTF16(str, len) { unsigned _c; for (_c=0; _c<len; _c++) str[_c]=wxUINT16_SWAP_ALWAYS(str[_c]); }
103
104 // under Unix SIZEOF_WCHAR_T is defined by configure, but under other platforms
105 // it might be not defined - assume the most common value
106 #ifndef SIZEOF_WCHAR_T
107 #define SIZEOF_WCHAR_T 2
108 #endif // !defined(SIZEOF_WCHAR_T)
109
110 #if SIZEOF_WCHAR_T == 4
111 #define WC_NAME "UCS4"
112 #define WC_BSWAP BSWAP_UCS4
113 #ifdef WORDS_BIGENDIAN
114 #define WC_NAME_BEST "UCS-4BE"
115 #else
116 #define WC_NAME_BEST "UCS-4LE"
117 #endif
118 #elif SIZEOF_WCHAR_T == 2
119 #define WC_NAME "UTF16"
120 #define WC_BSWAP BSWAP_UTF16
121 #define WC_UTF16
122 #ifdef WORDS_BIGENDIAN
123 #define WC_NAME_BEST "UTF-16BE"
124 #else
125 #define WC_NAME_BEST "UTF-16LE"
126 #endif
127 #else // sizeof(wchar_t) != 2 nor 4
128 // I don't know what to do about this
129 #error "Weird sizeof(wchar_t): please report your platform details to wx-users mailing list"
130 #endif
131
132 // ============================================================================
133 // implementation
134 // ============================================================================
135
136 // ----------------------------------------------------------------------------
137 // UTF-16 en/decoding
138 // ----------------------------------------------------------------------------
139
140 #ifdef WC_UTF16
141
142 static size_t encode_utf16(wxUint32 input, wchar_t *output)
143 {
144 if (input<=0xffff)
145 {
146 if (output) *output++ = (wchar_t) input;
147 return 1;
148 }
149 else if (input>=0x110000)
150 {
151 return (size_t)-1;
152 }
153 else
154 {
155 if (output)
156 {
157 *output++ = (wchar_t) ((input >> 10)+0xd7c0);
158 *output++ = (wchar_t) ((input&0x3ff)+0xdc00);
159 }
160 return 2;
161 }
162 }
163
164 static size_t decode_utf16(const wchar_t* input, wxUint32& output)
165 {
166 if ((*input<0xd800) || (*input>0xdfff))
167 {
168 output = *input;
169 return 1;
170 }
171 else if ((input[1]<0xdc00) || (input[1]>=0xdfff))
172 {
173 output = *input;
174 return (size_t)-1;
175 }
176 else
177 {
178 output = ((input[0] - 0xd7c0) << 10) + (input[1] - 0xdc00);
179 return 2;
180 }
181 }
182
183 #endif // WC_UTF16
184
185 // ----------------------------------------------------------------------------
186 // wxMBConv
187 // ----------------------------------------------------------------------------
188
189 #define IGNORE_LIBC 0
190
191 size_t wxMBConv::MB2WC(wchar_t *buf, const char *psz, size_t n) const
192 {
193 #if IGNORE_LIBC
194 if (buf)
195 {
196 for (size_t i = 0; i < strlen( psz )+1; i++)
197 buf[i] = (wchar_t) psz[i];
198 // printf( "libc %s\n", buf );
199 return strlen( psz );
200 }
201 else
202 {
203 return strlen( psz );
204 }
205 #else
206 return wxMB2WC(buf, psz, n);
207 #endif
208 }
209
210 size_t wxMBConv::WC2MB(char *buf, const wchar_t *psz, size_t n) const
211 {
212 #if IGNORE_LIBC
213 if (buf)
214 {
215 for (size_t i = 0; i < wxStrlen( psz )+1; i++)
216 buf[i] = (char) psz[i];
217 // printf( "libc %s\n", buf );
218 return wxStrlen( psz );
219 }
220 else
221 {
222 return wxStrlen( psz );
223 }
224 #else
225 return wxWC2MB(buf, psz, n);
226 #endif
227 }
228
229 const wxWCharBuffer wxMBConv::cMB2WC(const char *psz) const
230 {
231 if (psz)
232 {
233 size_t nLen = MB2WC((wchar_t *) NULL, psz, 0); // return value excludes /0
234 if (nLen == (size_t)-1)
235 return wxWCharBuffer((wchar_t *) NULL);
236 wxWCharBuffer buf(nLen); // this allocates nLen1+
237 MB2WC((wchar_t *)(const wchar_t *) buf, psz, nLen+1);
238 return buf;
239 }
240 else
241 return wxWCharBuffer((wchar_t *) NULL);
242 }
243
244 const wxCharBuffer wxMBConv::cWC2MB(const wchar_t *psz) const
245 {
246 if (psz)
247 {
248 size_t nLen = WC2MB((char *) NULL, psz, 0); // return value excludes /0
249 if (nLen == (size_t)-1)
250 return wxCharBuffer((char *) NULL);
251 wxCharBuffer buf(nLen); // this allocates nLen+1
252 WC2MB((char *)(const char *) buf, psz, nLen+1);
253 // printf( "str %s\n", (const char*) buf );
254 return buf;
255 }
256 else
257 return wxCharBuffer((char *) NULL);
258 }
259
260 // ----------------------------------------------------------------------------
261 // standard gdk conversion
262 // ----------------------------------------------------------------------------
263
264 #ifdef __WXGTK12__
265
266 WXDLLEXPORT_DATA(wxMBConvGdk) wxConvGdk;
267
268 #include <gdk/gdk.h>
269
270 size_t wxMBConvGdk::MB2WC(wchar_t *buf, const char *psz, size_t n) const
271 {
272 if (buf)
273 {
274 return gdk_mbstowcs((GdkWChar *)buf, psz, n);
275 }
276 else
277 {
278 GdkWChar *nbuf = new GdkWChar[n=strlen(psz)];
279 size_t len = gdk_mbstowcs(nbuf, psz, n);
280 delete[] nbuf;
281 return len;
282 }
283 }
284
285 size_t wxMBConvGdk::WC2MB(char *buf, const wchar_t *psz, size_t n) const
286 {
287 char *mbstr = gdk_wcstombs((GdkWChar *)psz);
288 size_t len = mbstr ? strlen(mbstr) : 0;
289 if (buf)
290 {
291 if (len > n)
292 len = n;
293 memcpy(buf, psz, len);
294 if (len < n)
295 buf[len] = 0;
296 }
297 return len;
298 }
299
300 #endif // GTK > 1.0
301
302 // ----------------------------------------------------------------------------
303 // UTF-7
304 // ----------------------------------------------------------------------------
305
306 WXDLLEXPORT_DATA(wxMBConvUTF7) wxConvUTF7;
307
308 #if 0
309 static char utf7_setD[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
310 "abcdefghijklmnopqrstuvwxyz"
311 "0123456789'(),-./:?";
312 static char utf7_setO[]="!\"#$%&*;<=>@[]^_`{|}";
313 static char utf7_setB[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
314 "abcdefghijklmnopqrstuvwxyz"
315 "0123456789+/";
316 #endif
317
318 // TODO: write actual implementations of UTF-7 here
319 size_t wxMBConvUTF7::MB2WC(wchar_t * WXUNUSED(buf),
320 const char * WXUNUSED(psz),
321 size_t WXUNUSED(n)) const
322 {
323 return 0;
324 }
325
326 size_t wxMBConvUTF7::WC2MB(char * WXUNUSED(buf),
327 const wchar_t * WXUNUSED(psz),
328 size_t WXUNUSED(n)) const
329 {
330 return 0;
331 }
332
333 // ----------------------------------------------------------------------------
334 // UTF-8
335 // ----------------------------------------------------------------------------
336
337 WXDLLEXPORT_DATA(wxMBConvUTF8) wxConvUTF8;
338
339 static wxUint32 utf8_max[]=
340 { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff, 0xffffffff };
341
342 size_t wxMBConvUTF8::MB2WC(wchar_t *buf, const char *psz, size_t n) const
343 {
344 size_t len = 0;
345
346 while (*psz && ((!buf) || (len < n)))
347 {
348 unsigned char cc = *psz++, fc = cc;
349 unsigned cnt;
350 for (cnt = 0; fc & 0x80; cnt++)
351 fc <<= 1;
352 if (!cnt)
353 {
354 // plain ASCII char
355 if (buf)
356 *buf++ = cc;
357 len++;
358 }
359 else
360 {
361 cnt--;
362 if (!cnt)
363 {
364 // invalid UTF-8 sequence
365 return (size_t)-1;
366 }
367 else
368 {
369 unsigned ocnt = cnt - 1;
370 wxUint32 res = cc & (0x3f >> cnt);
371 while (cnt--)
372 {
373 cc = *psz++;
374 if ((cc & 0xC0) != 0x80)
375 {
376 // invalid UTF-8 sequence
377 return (size_t)-1;
378 }
379 res = (res << 6) | (cc & 0x3f);
380 }
381 if (res <= utf8_max[ocnt])
382 {
383 // illegal UTF-8 encoding
384 return (size_t)-1;
385 }
386 #ifdef WC_UTF16
387 size_t pa = encode_utf16(res, buf);
388 if (pa == (size_t)-1)
389 return (size_t)-1;
390 if (buf)
391 buf += pa;
392 len += pa;
393 #else // !WC_UTF16
394 if (buf)
395 *buf++ = res;
396 len++;
397 #endif // WC_UTF16/!WC_UTF16
398 }
399 }
400 }
401 if (buf && (len < n))
402 *buf = 0;
403 return len;
404 }
405
406 size_t wxMBConvUTF8::WC2MB(char *buf, const wchar_t *psz, size_t n) const
407 {
408 size_t len = 0;
409
410 while (*psz && ((!buf) || (len < n)))
411 {
412 wxUint32 cc;
413 #ifdef WC_UTF16
414 size_t pa = decode_utf16(psz, cc);
415 psz += (pa == (size_t)-1) ? 1 : pa;
416 #else
417 cc=(*psz++) & 0x7fffffff;
418 #endif
419 unsigned cnt;
420 for (cnt = 0; cc > utf8_max[cnt]; cnt++) {}
421 if (!cnt)
422 {
423 // plain ASCII char
424 if (buf)
425 *buf++ = (char) cc;
426 len++;
427 }
428
429 else
430 {
431 len += cnt + 1;
432 if (buf)
433 {
434 *buf++ = (char) ((-128 >> cnt) | ((cc >> (cnt * 6)) & (0x3f >> cnt)));
435 while (cnt--)
436 *buf++ = (char) (0x80 | ((cc >> (cnt * 6)) & 0x3f));
437 }
438 }
439 }
440
441 if (buf && (len<n)) *buf = 0;
442
443 return len;
444 }
445
446 // ============================================================================
447 // wxCharacterSet and derived classes
448 // ============================================================================
449
450 // ----------------------------------------------------------------------------
451 // wxCharacterSet is the ABC for the classes below
452 // ----------------------------------------------------------------------------
453
454 class wxCharacterSet
455 {
456 public:
457 wxCharacterSet(const wxChar*name) : cname(name) {}
458 virtual ~wxCharacterSet() {}
459 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) = 0;
460 virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) = 0;
461 virtual bool usable() const = 0;
462 public:
463 const wxChar*cname;
464 };
465
466 // ----------------------------------------------------------------------------
467 // ID_CharSet: implementation of wxCharacterSet using an existing wxMBConv
468 // ----------------------------------------------------------------------------
469
470 class ID_CharSet : public wxCharacterSet
471 {
472 public:
473 ID_CharSet(const wxChar *name, wxMBConv *cnv)
474 : wxCharacterSet(name), work(cnv) {}
475
476 size_t MB2WC(wchar_t *buf, const char *psz, size_t n)
477 { return work ? work->MB2WC(buf,psz,n) : (size_t)-1; }
478
479 size_t WC2MB(char *buf, const wchar_t *psz, size_t n)
480 { return work ? work->WC2MB(buf,psz,n) : (size_t)-1; }
481
482 bool usable() const
483 { return work!=NULL; }
484 public:
485 wxMBConv*work;
486 };
487
488
489 // ============================================================================
490 // The classes doing conversion using the iconv_xxx() functions
491 // ============================================================================
492
493 #ifdef HAVE_ICONV
494
495 // VS: glibc 2.1.3 is broken in that iconv() conversion to/from UCS4 fails with E2BIG
496 // if output buffer is _exactly_ as big as needed. Such case is (unless there's
497 // yet another bug in glibc) the only case when iconv() returns with (size_t)-1
498 // (which means error) and says there are 0 bytes left in the input buffer --
499 // when _real_ error occurs, bytes-left-in-input buffer is non-zero. Hence,
500 // this alternative test for iconv() failure.
501 // [This bug does not appear in glibc 2.2.]
502 #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ <= 1
503 #define ICONV_FAILED(cres, bufLeft) ((cres == (size_t)-1) && \
504 (errno != E2BIG || bufLeft != 0))
505 #else
506 #define ICONV_FAILED(cres, bufLeft) (cres == (size_t)-1)
507 #endif
508
509 #if ICONV_CONST
510 #define ICONV_CHAR_CAST(x) ((char **)(x))
511 #else
512 #define ICONV_CHAR_CAST(x) ((const char **)(x))
513 #endif
514
515 // ----------------------------------------------------------------------------
516 // IC_CharSet: encapsulates an iconv character set
517 // ----------------------------------------------------------------------------
518
519 class IC_CharSet : public wxCharacterSet
520 {
521 public:
522 IC_CharSet(const wxChar *name);
523 virtual ~IC_CharSet();
524
525 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n);
526 virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n);
527
528 bool usable() const
529 { return (m2w != (iconv_t)-1) && (w2m != (iconv_t)-1); }
530
531 protected:
532 // the iconv handlers used to translate from multibyte to wide char and in
533 // the other direction
534 iconv_t m2w,
535 w2m;
536
537 private:
538 // the name (for iconv_open()) of a wide char charset - if none is
539 // available on this machine, it will remain NULL
540 static const char *ms_wcCharsetName;
541
542 // true if the wide char encoding we use (i.e. ms_wcCharsetName) has
543 // different endian-ness than the native one
544 static bool ms_wcNeedsSwap;
545 };
546
547 const char *IC_CharSet::ms_wcCharsetName = NULL;
548 bool IC_CharSet::ms_wcNeedsSwap = FALSE;
549
550 IC_CharSet::IC_CharSet(const wxChar *name)
551 : wxCharacterSet(name)
552 {
553 // Do it the hard way
554 char cname[100];
555 for (size_t i = 0; i < wxStrlen(name)+1; i++)
556 cname[i] = (char) name[i];
557
558 // check for charset that represents wchar_t:
559 if (ms_wcCharsetName == NULL)
560 {
561 ms_wcNeedsSwap = FALSE;
562
563 // try charset with explicit bytesex info (e.g. "UCS-4LE"):
564 ms_wcCharsetName = WC_NAME_BEST;
565 m2w = iconv_open(ms_wcCharsetName, cname);
566
567 if (m2w == (iconv_t)-1)
568 {
569 // try charset w/o bytesex info (e.g. "UCS4")
570 // and check for bytesex ourselves:
571 ms_wcCharsetName = WC_NAME;
572 m2w = iconv_open(ms_wcCharsetName, cname);
573
574 // last bet, try if it knows WCHAR_T pseudo-charset
575 if (m2w == (iconv_t)-1)
576 {
577 ms_wcCharsetName = "WCHAR_T";
578 m2w = iconv_open(ms_wcCharsetName, cname);
579 }
580
581 if (m2w != (iconv_t)-1)
582 {
583 char buf[2], *bufPtr;
584 wchar_t wbuf[2], *wbufPtr;
585 size_t insz, outsz;
586 size_t res;
587
588 buf[0] = 'A';
589 buf[1] = 0;
590 wbuf[0] = 0;
591 insz = 2;
592 outsz = SIZEOF_WCHAR_T * 2;
593 wbufPtr = wbuf;
594 bufPtr = buf;
595
596 res = iconv(m2w, ICONV_CHAR_CAST(&bufPtr), &insz,
597 (char**)&wbufPtr, &outsz);
598
599 if (ICONV_FAILED(res, insz))
600 {
601 ms_wcCharsetName = NULL;
602 wxLogLastError(wxT("iconv"));
603 wxLogError(_("Convertion to charset '%s' doesn't work."), name);
604 }
605 else
606 {
607 ms_wcNeedsSwap = wbuf[0] != (wchar_t)buf[0];
608 }
609 }
610 else
611 {
612 ms_wcCharsetName = NULL;
613
614 // VS: we must not output an error here, since wxWindows will safely
615 // fall back to using wxEncodingConverter.
616 wxLogTrace(wxT("strconv"), wxT("Impossible to convert to/from charset '%s' with iconv, falling back to wxEncodingConverter."), name);
617 //wxLogError(
618 }
619 }
620 wxLogTrace(wxT("strconv"), wxT("wchar_t charset is '%s', needs swap: %i"), ms_wcCharsetName, ms_wcNeedsSwap);
621 }
622 else // we already have ms_wcCharsetName
623 {
624 m2w = iconv_open(ms_wcCharsetName, cname);
625 }
626
627 // NB: don't ever pass NULL to iconv_open(), it may crash!
628 if ( ms_wcCharsetName )
629 {
630 w2m = iconv_open( cname, ms_wcCharsetName);
631 }
632 else
633 {
634 w2m = (iconv_t)-1;
635 }
636 }
637
638 IC_CharSet::~IC_CharSet()
639 {
640 if ( m2w != (iconv_t)-1 )
641 iconv_close(m2w);
642 if ( w2m != (iconv_t)-1 )
643 iconv_close(w2m);
644 }
645
646 size_t IC_CharSet::MB2WC(wchar_t *buf, const char *psz, size_t n)
647 {
648 size_t inbuf = strlen(psz);
649 size_t outbuf = n * SIZEOF_WCHAR_T;
650 size_t res, cres;
651 // VS: Use these instead of psz, buf because iconv() modifies its arguments:
652 wchar_t *bufPtr = buf;
653 const char *pszPtr = psz;
654
655 if (buf)
656 {
657 // have destination buffer, convert there
658 cres = iconv(m2w,
659 ICONV_CHAR_CAST(&pszPtr), &inbuf,
660 (char**)&bufPtr, &outbuf);
661 res = n - (outbuf / SIZEOF_WCHAR_T);
662
663 if (ms_wcNeedsSwap)
664 {
665 // convert to native endianness
666 WC_BSWAP(buf /* _not_ bufPtr */, res)
667 }
668 }
669 else
670 {
671 // no destination buffer... convert using temp buffer
672 // to calculate destination buffer requirement
673 wchar_t tbuf[8];
674 res = 0;
675 do {
676 bufPtr = tbuf;
677 outbuf = 8*SIZEOF_WCHAR_T;
678
679 cres = iconv(m2w,
680 ICONV_CHAR_CAST(&pszPtr), &inbuf,
681 (char**)&bufPtr, &outbuf );
682
683 res += 8-(outbuf/SIZEOF_WCHAR_T);
684 } while ((cres==(size_t)-1) && (errno==E2BIG));
685 }
686
687 if (ICONV_FAILED(cres, inbuf))
688 {
689 //VS: it is ok if iconv fails, hence trace only
690 wxLogTrace(wxT("strconv"), wxT("iconv failed: %s"), wxSysErrorMsg(wxSysErrorCode()));
691 return (size_t)-1;
692 }
693
694 return res;
695 }
696
697 size_t IC_CharSet::WC2MB(char *buf, const wchar_t *psz, size_t n)
698 {
699 #if defined(__BORLANDC__) && (__BORLANDC__ > 0x530)
700 size_t inbuf = std::wcslen(psz) * SIZEOF_WCHAR_T;
701 #else
702 size_t inbuf = ::wcslen(psz) * SIZEOF_WCHAR_T;
703 #endif
704 size_t outbuf = n;
705 size_t res, cres;
706
707 wchar_t *tmpbuf = 0;
708
709 if (ms_wcNeedsSwap)
710 {
711 // need to copy to temp buffer to switch endianness
712 // this absolutely doesn't rock!
713 // (no, doing WC_BSWAP twice on the original buffer won't help, as it
714 // could be in read-only memory, or be accessed in some other thread)
715 tmpbuf=(wchar_t*)malloc((inbuf+1)*SIZEOF_WCHAR_T);
716 memcpy(tmpbuf,psz,(inbuf+1)*SIZEOF_WCHAR_T);
717 WC_BSWAP(tmpbuf, inbuf)
718 psz=tmpbuf;
719 }
720
721 if (buf)
722 {
723 // have destination buffer, convert there
724 cres = iconv( w2m, ICONV_CHAR_CAST(&psz), &inbuf, &buf, &outbuf );
725
726 res = n-outbuf;
727 }
728 else
729 {
730 // no destination buffer... convert using temp buffer
731 // to calculate destination buffer requirement
732 char tbuf[16];
733 res = 0;
734 do {
735 buf = tbuf; outbuf = 16;
736
737 cres = iconv( w2m, ICONV_CHAR_CAST(&psz), &inbuf, &buf, &outbuf );
738
739 res += 16 - outbuf;
740 } while ((cres==(size_t)-1) && (errno==E2BIG));
741 }
742
743 if (ms_wcNeedsSwap)
744 {
745 free(tmpbuf);
746 }
747
748 if (ICONV_FAILED(cres, inbuf))
749 {
750 //VS: it is ok if iconv fails, hence trace only
751 wxLogTrace(wxT("strconv"), wxT("iconv failed: %s"), wxSysErrorMsg(wxSysErrorCode()));
752 return (size_t)-1;
753 }
754
755 return res;
756 }
757
758 #endif // HAVE_ICONV
759
760 // ============================================================================
761 // Win32 conversion classes
762 // ============================================================================
763
764 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
765
766 extern long wxCharsetToCodepage(const wxChar *charset); // from utils.cpp
767
768 class CP_CharSet : public wxCharacterSet
769 {
770 public:
771 CP_CharSet(const wxChar* name)
772 : wxCharacterSet(name)
773 {
774 m_CodePage = wxCharsetToCodepage(name);
775 }
776
777 size_t MB2WC(wchar_t *buf, const char *psz, size_t n)
778 {
779 size_t len =
780 MultiByteToWideChar(m_CodePage, 0, psz, -1, buf, buf ? n : 0);
781 //VS: returns # of written chars for buf!=NULL and *size*
782 // needed buffer for buf==NULL
783 return len ? (buf ? len : len-1) : (size_t)-1;
784 }
785
786 size_t WC2MB(char *buf, const wchar_t *psz, size_t n)
787 {
788 size_t len = WideCharToMultiByte(m_CodePage, 0, psz, -1, buf,
789 buf ? n : 0, NULL, NULL);
790 //VS: returns # of written chars for buf!=NULL and *size*
791 // needed buffer for buf==NULL
792 return len ? (buf ? len : len-1) : (size_t)-1;
793 }
794
795 bool usable() const
796 { return m_CodePage != -1; }
797
798 public:
799 long m_CodePage;
800 };
801 #endif // __WIN32__
802
803 // ============================================================================
804 // wxEncodingConverter based conversion classes
805 // ============================================================================
806
807 #if wxUSE_FONTMAP
808
809 class EC_CharSet : public wxCharacterSet
810 {
811 public:
812 // temporarily just use wxEncodingConverter stuff,
813 // so that it works while a better implementation is built
814 EC_CharSet(const wxChar* name) : wxCharacterSet(name),
815 enc(wxFONTENCODING_SYSTEM)
816 {
817 if (name)
818 enc = wxFontMapper::Get()->CharsetToEncoding(name, FALSE);
819
820 m_ok = m2w.Init(enc, wxFONTENCODING_UNICODE) &&
821 w2m.Init(wxFONTENCODING_UNICODE, enc);
822 }
823
824 size_t MB2WC(wchar_t *buf, const char *psz, size_t WXUNUSED(n))
825 {
826 size_t inbuf = strlen(psz);
827 if (buf)
828 m2w.Convert(psz,buf);
829 return inbuf;
830 }
831
832 size_t WC2MB(char *buf, const wchar_t *psz, size_t WXUNUSED(n))
833 {
834 #if ( defined(__BORLANDC__) && (__BORLANDC__ > 0x530) ) \
835 || ( defined(__MWERKS__) && defined(__WXMSW__) )
836 size_t inbuf = std::wcslen(psz);
837 #else
838 size_t inbuf = ::wcslen(psz);
839 #endif
840 if (buf)
841 w2m.Convert(psz,buf);
842
843 return inbuf;
844 }
845
846 bool usable() const { return m_ok; }
847
848 public:
849 wxFontEncoding enc;
850 wxEncodingConverter m2w, w2m;
851
852 // were we initialized successfully?
853 bool m_ok;
854 };
855
856 #endif // wxUSE_FONTMAP
857
858 // ----------------------------------------------------------------------------
859 // the function creating the wxCharacterSet for the specified charset on the
860 // current system, trying all possibilities
861 // ----------------------------------------------------------------------------
862
863 static wxCharacterSet *wxGetCharacterSet(const wxChar *name)
864 {
865 // check for the special case of ASCII charset
866 #if wxUSE_FONTMAP
867 if ( wxFontMapper::Get()->CharsetToEncoding(name) == wxFONTENCODING_DEFAULT )
868 #else // wxUSE_FONTMAP
869 if ( !name )
870 #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP
871 {
872 // don't convert at all
873 return NULL;
874 }
875
876 // the test above must have taken care of this case
877 wxCHECK_MSG( name, NULL, _T("NULL name must be wxFONTENCODING_DEFAULT") );
878
879 wxCharacterSet *cset;
880
881 if ( wxStricmp(name, wxT("UTF8")) == 0 || wxStricmp(name, wxT("UTF-8")) == 0)
882 {
883 cset = new ID_CharSet(name, &wxConvUTF8);
884 }
885 else
886 {
887 #ifdef HAVE_ICONV
888 cset = new IC_CharSet(name);
889 #else // !HAVE_ICONV
890 cset = NULL;
891 #endif // HAVE_ICONV/!HAVE_ICONV
892 }
893
894 // it can only be NULL in this case
895 #ifndef HAVE_ICONV
896 if ( cset )
897 #endif // !HAVE_ICONV
898 {
899 if ( cset->usable() )
900 return cset;
901
902 delete cset;
903 cset = NULL;
904 }
905
906 #if defined(__WIN32__) && !defined(__WXMICROWIN__)
907 cset = new CP_CharSet(name);
908 if ( cset->usable() )
909 return cset;
910
911 delete cset;
912 cset = NULL;
913 #endif // __WIN32__
914
915 #if wxUSE_FONTMAP
916 cset = new EC_CharSet(name);
917 if ( cset->usable() )
918 return cset;
919
920 delete cset;
921 cset = NULL;
922 #endif // wxUSE_FONTMAP
923
924 wxLogError(_("Cannot convert from encoding '%s'!"), name);
925
926 return NULL;
927 }
928
929 // ============================================================================
930 // wxCSConv implementation
931 // ============================================================================
932
933 wxCSConv::wxCSConv(const wxChar *charset)
934 {
935 m_name = (wxChar *)NULL;
936 m_cset = (wxCharacterSet *) NULL;
937 m_deferred = TRUE;
938
939 SetName(charset);
940 }
941
942 wxCSConv::~wxCSConv()
943 {
944 Clear();
945 }
946
947 wxCSConv::wxCSConv(const wxCSConv& conv)
948 : wxMBConv()
949 {
950 Clear();
951 SetName(conv.m_name);
952 }
953
954 wxCSConv& wxCSConv::operator=(const wxCSConv& conv)
955 {
956 Clear();
957 SetName(conv.m_name);
958 return *this;
959 }
960
961 void wxCSConv::Clear()
962 {
963 if (m_name)
964 free(m_name);
965 if (m_cset)
966 delete m_cset;
967 m_name = NULL;
968 m_cset = NULL;
969 }
970
971 void wxCSConv::SetName(const wxChar *charset)
972 {
973 if (charset)
974 {
975 m_name = wxStrdup(charset);
976 m_deferred = TRUE;
977 }
978 }
979
980 void wxCSConv::LoadNow()
981 {
982 if (m_deferred)
983 {
984 if ( !m_name )
985 {
986 wxString name = wxLocale::GetSystemEncodingName();
987 if ( !name.empty() )
988 {
989 SetName(name);
990 }
991 }
992
993 // wxGetCharacterSet() complains about NULL name
994 m_cset = m_name ? wxGetCharacterSet(m_name) : NULL;
995 m_deferred = FALSE;
996 }
997 }
998
999 size_t wxCSConv::MB2WC(wchar_t *buf, const char *psz, size_t n) const
1000 {
1001 ((wxCSConv *)this)->LoadNow(); // discard constness
1002
1003 if (m_cset)
1004 return m_cset->MB2WC(buf, psz, n);
1005
1006 // latin-1 (direct)
1007 size_t len = strlen(psz);
1008
1009 if (buf)
1010 {
1011 for (size_t c = 0; c <= len; c++)
1012 buf[c] = (unsigned char)(psz[c]);
1013 }
1014
1015 return len;
1016 }
1017
1018 size_t wxCSConv::WC2MB(char *buf, const wchar_t *psz, size_t n) const
1019 {
1020 ((wxCSConv *)this)->LoadNow(); // discard constness
1021
1022 if (m_cset)
1023 return m_cset->WC2MB(buf, psz, n);
1024
1025 // latin-1 (direct)
1026 #if ( defined(__BORLANDC__) && (__BORLANDC__ > 0x530) ) \
1027 || ( defined(__MWERKS__) && defined(__WXMSW__) )
1028 size_t len=std::wcslen(psz);
1029 #else
1030 size_t len=::wcslen(psz);
1031 #endif
1032 if (buf)
1033 {
1034 for (size_t c = 0; c <= len; c++)
1035 buf[c] = (psz[c] > 0xff) ? '?' : psz[c];
1036 }
1037
1038 return len;
1039 }
1040
1041 #endif // wxUSE_WCHAR_T
1042
1043