X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/54380f29f05b666338bd0a61487304ded2d57255..4589ec39c0a8fb5268f577dfdeea2ccce7fb88d1:/src/common/strconv.cpp diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index bdb210d538..25620c07c5 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -54,7 +54,7 @@ WXDLLEXPORT_DATA(wxCSConv) wxConvLocal((const wxChar *)NULL); #else // stand-ins in absence of wchar_t - WXDLLEXPORT_DATA(wxMBConv) wxConvLibc, wxConvFile; + WXDLLEXPORT_DATA(wxMBConv) wxConvLibc, wxConvFile, wxConvLocal; #endif // wxUSE_WCHAR_T WXDLLEXPORT_DATA(wxMBConv *) wxConvCurrent = &wxConvLibc; @@ -67,7 +67,7 @@ public: virtual void OnExit() { #if wxUSE_WCHAR_T - wxConvLocal.Clear(); + wxConvLocal.Clear(); #endif } @@ -186,61 +186,69 @@ static size_t decode_utf16(const wchar_t* input, wxUint32& output) // wxMBConv // ---------------------------------------------------------------------------- +#define IGNORE_LIBC 0 + size_t wxMBConv::MB2WC(wchar_t *buf, const char *psz, size_t n) const { +#if IGNORE_LIBC + if (buf) + { + for (size_t i = 0; i < strlen( psz )+1; i++) + buf[i] = (wchar_t) psz[i]; + return strlen( psz ); + } + else + { + return strlen( psz ); + } +#else return wxMB2WC(buf, psz, n); +#endif } size_t wxMBConv::WC2MB(char *buf, const wchar_t *psz, size_t n) const { +#if IGNORE_LIBC + if (buf) + { + for (size_t i = 0; i < wxStrlen( psz )+1; i++) + buf[i] = (char) psz[i]; + return wxStrlen( psz ); + } + else + { + return wxStrlen( psz ); + } +#else return wxWC2MB(buf, psz, n); +#endif } const wxWCharBuffer wxMBConv::cMB2WC(const char *psz) const { if (psz) { - size_t nLen = MB2WC((wchar_t *) NULL, psz, 0); + size_t nLen = MB2WC((wchar_t *) NULL, psz, 0); // return value excludes /0 if (nLen == (size_t)-1) return wxWCharBuffer((wchar_t *) NULL); - wxWCharBuffer buf(nLen); - MB2WC((wchar_t *)(const wchar_t *) buf, psz, nLen); + wxWCharBuffer buf(nLen); // this allocates nLen1+ + MB2WC((wchar_t *)(const wchar_t *) buf, psz, nLen+1); return buf; } else return wxWCharBuffer((wchar_t *) NULL); } -const wxCharBuffer wxMBConv::cWC2MB(const wchar_t *psz) const +const wxCharBuffer wxMBConv::cWC2MB(const wchar_t *pwz) const { - if (psz) - { - size_t nLen = WC2MB((char *) NULL, psz, 0); - if (nLen == (size_t)-1) - return wxCharBuffer((char *) NULL); - wxCharBuffer buf(nLen); - WC2MB((char *)(const char *) buf, psz, nLen); - return buf; - } - else - return wxCharBuffer((char *) NULL); -} - -// ---------------------------------------------------------------------------- -// standard file conversion -// ---------------------------------------------------------------------------- - -WXDLLEXPORT_DATA(wxMBConvFile) wxConvFile; - -// just use the libc conversion for now -size_t wxMBConvFile::MB2WC(wchar_t *buf, const char *psz, size_t n) const -{ - return wxMB2WC(buf, psz, n); -} - -size_t wxMBConvFile::WC2MB(char *buf, const wchar_t *psz, size_t n) const -{ - return wxWC2MB(buf, psz, n); + // return value excludes NUL + size_t nLen = pwz ? WC2MB((char *) NULL, pwz, 0) : (size_t)-1; + if (nLen == (size_t)-1) + return wxCharBuffer((const char *)NULL); + + wxCharBuffer buf(nLen); // this allocates nLen+1 + WC2MB((char *)(const char *) buf, pwz, nLen+1); + return buf; } // ---------------------------------------------------------------------------- @@ -425,6 +433,7 @@ size_t wxMBConvUTF8::WC2MB(char *buf, const wchar_t *psz, size_t n) const } if (buf && (len