]>
git.saurik.com Git - wxWidgets.git/blob - src/common/unichar.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/unichar.cpp
3 // Purpose: wxUniChar and wxUniCharRef classes
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2007 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
13 // ===========================================================================
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
23 #include "wx/strconv.h" // wxConvLibc
26 #include "wx/unichar.h"
27 #include "wx/string.h"
29 // ===========================================================================
31 // ===========================================================================
33 // ---------------------------------------------------------------------------
35 // ---------------------------------------------------------------------------
38 wxUniChar::value_type
wxUniChar::From8bit(char c
)
40 // all supported charsets have the first 128 characters same as ASCII:
41 if ( (unsigned char)c
< 0x80 )
44 #if wxUSE_UTF8_LOCALE_ONLY
45 wxFAIL_MSG( _T("invalid UTF-8 character") );
46 return wxT('?'); // FIXME-UTF8: what to use as failure character?
49 if ( wxConvLibc
.ToWChar(buf
, 2, &c
, 1) != 2 )
50 return wxT('?'); // FIXME-UTF8: what to use as failure character?
56 char wxUniChar::To8bit(wxUniChar::value_type c
)
58 // all supported charsets have the first 128 characters same as ASCII:
62 #if wxUSE_UTF8_LOCALE_ONLY
63 wxFAIL_MSG( _T("character cannot be converted to single UTF-8 byte") );
64 return '?'; // FIXME-UTF8: what to use as failure character?
68 if ( wxConvLibc
.FromWChar(buf
, 2, &in
, 1) != 2 )
69 return '?'; // FIXME-UTF8: what to use as failure character?
75 // ---------------------------------------------------------------------------
77 // ---------------------------------------------------------------------------
79 #if wxUSE_UNICODE_UTF8
80 wxUniChar
wxUniCharRef::UniChar() const
82 return wxStringOperations::DecodeChar(m_pos
);
85 wxUniCharRef
& wxUniCharRef::operator=(const wxUniChar
& c
)
87 wxStringOperations::Utf8CharBuffer
utf(wxStringOperations::EncodeChar(c
));
88 size_t lenOld
= wxStringOperations::GetUtf8CharLength(*m_pos
);
89 size_t lenNew
= wxStringOperations::GetUtf8CharLength(utf
[0]);
91 if ( lenNew
== lenOld
)
93 // this is the simpler case: if the new value's UTF-8 code has the
94 // same length, we can just replace it:
97 for ( size_t i
= 0; i
< lenNew
; ++i
, ++pos
)
102 // the worse case is when the new value has either longer or shorter
103 // code -- in that case, we have to use wxStringImpl::replace() and
104 // this invalidates all iterators, so we have to update them too:
106 wxString
& str
= *wx_const_cast(wxString
*, m_node
.m_str
);
107 wxStringImpl
& strimpl
= str
.m_impl
;
109 int iterDiff
= lenNew
- lenOld
;
110 size_t posIdx
= m_pos
- strimpl
.begin();
112 // compute positions of outstanding iterators for this string after the
113 // replacement is done (there is only a small number of iterators at
114 // any time, so we use an array on the stack to avoid unneeded
116 static const size_t STATIC_SIZE
= 32;
117 size_t indexes_a
[STATIC_SIZE
];
118 size_t *indexes
= indexes_a
;
120 wxStringIteratorNode
*it
;
121 for ( it
= str
.m_iterators
.ptr
; it
; it
= it
->m_next
, ++iterNum
)
123 wxASSERT( it
->m_iter
|| it
->m_citer
);
125 if ( iterNum
== STATIC_SIZE
)
127 wxLogTrace( _T("utf8"), _T("unexpectedly many iterators") );
129 size_t total
= iterNum
+ 1;
130 for ( wxStringIteratorNode
*it2
= it
; it2
; it2
= it2
->m_next
)
132 indexes
= new size_t[total
];
133 memcpy(indexes
, indexes_a
, sizeof(size_t) * STATIC_SIZE
);
136 size_t idx
= it
->m_iter
137 ? (*it
->m_iter
- strimpl
.begin())
138 : (*it
->m_citer
- strimpl
.begin());
143 indexes
[iterNum
] = idx
;
146 // update the string:
147 strimpl
.replace(m_pos
, m_pos
+ lenOld
, utf
, lenNew
);
149 // finally, set the iterators to valid values again (note that this
150 // updates m_pos as well):
152 for ( i
= 0, it
= str
.m_iterators
.ptr
; it
; it
= it
->m_next
, ++i
)
154 wxASSERT( i
< iterNum
);
155 wxASSERT( it
->m_iter
|| it
->m_citer
);
158 *it
->m_iter
= strimpl
.begin() + indexes
[i
];
160 *it
->m_citer
= strimpl
.begin() + indexes
[i
];
163 if ( indexes
!= indexes_a
)
169 #endif // wxUSE_UNICODE_UTF8