1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: conversion routines for char sets any Unicode
4 // Author: Robert Roebling, Ove Kaaven
8 // Copyright: (c) 1998 Ove Kaaven, Robert Roebling, Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_WXSTRCONVH__
13 #define _WX_WXSTRCONVH__
16 #include "wx/wxchar.h"
17 #include "wx/buffer.h"
19 #ifdef __DIGITALMARS__
23 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
31 // ----------------------------------------------------------------------------
32 // wxMBConv (abstract base class for conversions)
33 // ----------------------------------------------------------------------------
35 class WXDLLIMPEXP_BASE wxMBConv
38 // the actual conversion takes place here
40 // note that outputSize is the size of the output buffer, not the length of input
41 // (the latter is always supposed to be NUL-terminated)
42 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const = 0;
43 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const = 0;
46 const wxWCharBuffer
cMB2WC(const char *psz
) const;
47 const wxCharBuffer
cWC2MB(const wchar_t *psz
) const;
49 // MB <-> WC for strings with embedded null characters
51 // pszLen length of the input string
52 // pOutSize gets the final size of the converted string
53 const wxWCharBuffer
cMB2WC(const char *psz
, size_t pszLen
, size_t* pOutSize
) const;
54 const wxCharBuffer
cWC2MB(const wchar_t *psz
, size_t pszLen
, size_t* pOutSize
) const;
56 // convenience functions for converting MB or WC to/from wxWin default
58 const wxWCharBuffer
cMB2WX(const char *psz
) const { return cMB2WC(psz
); }
59 const wxCharBuffer
cWX2MB(const wchar_t *psz
) const { return cWC2MB(psz
); }
60 const wchar_t* cWC2WX(const wchar_t *psz
) const { return psz
; }
61 const wchar_t* cWX2WC(const wchar_t *psz
) const { return psz
; }
63 const char* cMB2WX(const char *psz
) const { return psz
; }
64 const char* cWX2MB(const char *psz
) const { return psz
; }
65 const wxCharBuffer
cWC2WX(const wchar_t *psz
) const { return cWC2MB(psz
); }
66 const wxWCharBuffer
cWX2WC(const char *psz
) const { return cMB2WC(psz
); }
67 #endif // Unicode/ANSI
69 // virtual dtor for any base class
73 // ----------------------------------------------------------------------------
74 // wxMBConvLibc uses standard mbstowcs() and wcstombs() functions for
75 // conversion (hence it depends on the current locale)
76 // ----------------------------------------------------------------------------
78 class WXDLLIMPEXP_BASE wxMBConvLibc
: public wxMBConv
81 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
82 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
87 // ----------------------------------------------------------------------------
88 // wxConvBrokenFileNames is made for Unix in Unicode mode when
89 // files are accidentally written in an encoding which is not
90 // the system encoding. Typically, the system encoding will be
91 // UTF8 but there might be files stored in ISO8859-1 on disk.
92 // ----------------------------------------------------------------------------
94 class WXDLLIMPEXP_BASE wxConvBrokenFileNames
: public wxMBConv
97 wxConvBrokenFileNames(const wxChar
*charset
);
98 virtual ~wxConvBrokenFileNames() { delete m_conv
; }
100 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
101 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
104 // the conversion object we forward to
110 // ----------------------------------------------------------------------------
111 // wxMBConvUTF7 (for conversion using UTF7 encoding)
112 // ----------------------------------------------------------------------------
114 class WXDLLIMPEXP_BASE wxMBConvUTF7
: public wxMBConv
117 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
118 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
121 // ----------------------------------------------------------------------------
122 // wxMBConvUTF8 (for conversion using UTF8 encoding)
123 // ----------------------------------------------------------------------------
125 class WXDLLIMPEXP_BASE wxMBConvUTF8
: public wxMBConv
129 MAP_INVALID_UTF8_NOT
= 0,
130 MAP_INVALID_UTF8_TO_PUA
= 1,
131 MAP_INVALID_UTF8_TO_OCTAL
= 2
134 wxMBConvUTF8(int options
= MAP_INVALID_UTF8_NOT
) : m_options(options
) { }
135 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
136 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
142 // ----------------------------------------------------------------------------
143 // wxMBConvUTF16LE (for conversion using UTF16 Little Endian encoding)
144 // ----------------------------------------------------------------------------
146 class WXDLLIMPEXP_BASE wxMBConvUTF16LE
: public wxMBConv
149 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
150 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
153 // ----------------------------------------------------------------------------
154 // wxMBConvUTF16BE (for conversion using UTF16 Big Endian encoding)
155 // ----------------------------------------------------------------------------
157 class WXDLLIMPEXP_BASE wxMBConvUTF16BE
: public wxMBConv
160 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
161 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
164 // ----------------------------------------------------------------------------
165 // wxMBConvUTF32LE (for conversion using UTF32 Little Endian encoding)
166 // ----------------------------------------------------------------------------
168 class WXDLLIMPEXP_BASE wxMBConvUTF32LE
: public wxMBConv
171 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
172 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
175 // ----------------------------------------------------------------------------
176 // wxMBConvUTF32BE (for conversion using UTF32 Big Endian encoding)
177 // ----------------------------------------------------------------------------
179 class WXDLLIMPEXP_BASE wxMBConvUTF32BE
: public wxMBConv
182 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
183 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
186 // ----------------------------------------------------------------------------
187 // wxCSConv (for conversion based on loadable char sets)
188 // ----------------------------------------------------------------------------
190 #include "wx/fontenc.h"
192 class WXDLLIMPEXP_BASE wxCSConv
: public wxMBConv
195 // we can be created either from charset name or from an encoding constant
196 // but we can't have both at once
197 wxCSConv(const wxChar
*charset
);
198 wxCSConv(wxFontEncoding encoding
);
200 wxCSConv(const wxCSConv
& conv
);
203 wxCSConv
& operator=(const wxCSConv
& conv
);
205 virtual size_t MB2WC(wchar_t *outputBuf
, const char *psz
, size_t outputSize
) const;
206 virtual size_t WC2MB(char *outputBuf
, const wchar_t *psz
, size_t outputSize
) const;
211 // common part of all ctors
214 // creates m_convReal if necessary
215 void CreateConvIfNeeded() const;
217 // do create m_convReal (unconditionally)
218 wxMBConv
*DoCreate() const;
220 // set the name (may be only called when m_name == NULL), makes copy of
222 void SetName(const wxChar
*charset
);
225 // note that we can't use wxString here because of compilation
226 // dependencies: we're included from wx/string.h
228 wxFontEncoding m_encoding
;
230 // use CreateConvIfNeeded() before accessing m_convReal!
231 wxMBConv
*m_convReal
;
236 // ----------------------------------------------------------------------------
237 // declare predefined conversion objects
238 // ----------------------------------------------------------------------------
240 // conversion to be used with all standard functions affected by locale, e.g.
241 // strtol(), strftime(), ...
242 extern WXDLLIMPEXP_DATA_BASE(wxMBConv
&) wxConvLibc
;
244 // conversion ISO-8859-1/UTF-7/UTF-8 <-> wchar_t
245 extern WXDLLIMPEXP_DATA_BASE(wxCSConv
&) wxConvISO8859_1
;
246 extern WXDLLIMPEXP_DATA_BASE(wxMBConvUTF7
&) wxConvUTF7
;
247 extern WXDLLIMPEXP_DATA_BASE(wxMBConvUTF8
&) wxConvUTF8
;
249 // conversion used for the file names on the systems where they're not Unicode
250 // (basically anything except Windows)
252 // this is used by all file functions, can be changed by the application
254 // by default UTF-8 under Mac OS X and wxConvLibc elsewhere (but it's not used
255 // under Windows normally)
256 extern WXDLLIMPEXP_DATA_BASE(wxMBConv
*) wxConvFileName
;
258 // backwards compatible define
259 #define wxConvFile (*wxConvFileName)
261 // the current conversion object, may be set to any conversion, is used by
262 // default in a couple of places inside wx (initially same as wxConvLibc)
263 extern WXDLLIMPEXP_DATA_BASE(wxMBConv
*) wxConvCurrent
;
266 extern WXDLLIMPEXP_DATA_BASE(wxCSConv
&) wxConvLocal
;
269 // ----------------------------------------------------------------------------
270 // endianness-dependent conversions
271 // ----------------------------------------------------------------------------
273 #ifdef WORDS_BIGENDIAN
274 typedef wxMBConvUTF16BE wxMBConvUTF16
;
275 typedef wxMBConvUTF32BE wxMBConvUTF32
;
277 typedef wxMBConvUTF16LE wxMBConvUTF16
;
278 typedef wxMBConvUTF32LE wxMBConvUTF32
;
281 // ----------------------------------------------------------------------------
282 // filename conversion macros
283 // ----------------------------------------------------------------------------
285 // filenames are multibyte on Unix and probably widechar on Windows?
286 #if defined(__UNIX__) || defined(__BORLANDC__) || defined(__WXMAC__ )
292 #if wxMBFILES && wxUSE_UNICODE
293 #define wxFNCONV(name) wxConvFileName->cWX2MB(name)
294 #define wxFNSTRINGCAST wxMBSTRINGCAST
296 #if defined( __WXOSX__ ) && wxMBFILES
297 #define wxFNCONV(name) wxConvFileName->cWC2MB( wxConvLocal.cWX2WC(name) )
299 #define wxFNCONV(name) name
301 #define wxFNSTRINGCAST WXSTRINGCAST
304 #else // !wxUSE_WCHAR_T
306 // ----------------------------------------------------------------------------
307 // stand-ins in absence of wchar_t
308 // ----------------------------------------------------------------------------
310 class WXDLLIMPEXP_BASE wxMBConv
313 const char* cMB2WX(const char *psz
) const { return psz
; }
314 const char* cWX2MB(const char *psz
) const { return psz
; }
317 #define wxConvFile wxConvLocal
319 extern WXDLLIMPEXP_DATA_BASE(wxMBConv
) wxConvLibc
,
323 extern WXDLLIMPEXP_DATA_BASE(wxMBConv
*) wxConvCurrent
;
325 #define wxFNCONV(name) name
326 #define wxFNSTRINGCAST WXSTRINGCAST
331 // ----------------------------------------------------------------------------
332 // macros for the most common conversions
333 // ----------------------------------------------------------------------------
336 #define wxConvertWX2MB(s) wxConvCurrent->cWX2MB(s)
337 #define wxConvertMB2WX(s) wxConvCurrent->cMB2WX(s)
339 // no conversions to do
340 #define wxConvertWX2MB(s) (s)
341 #define wxConvertMB2WX(s) (s)
342 #endif // Unicode/ANSI