// helper functions
-static ustring::size_type utf8_find_offset(const char *str, const char *pos)
+// takes a pointer into a utf8 string and returns a unicode character for the
+// first character at the pointer
+unichar utf8_get_char (const char *p)
+{
+ unichar result = static_cast<unsigned char>(*p);
+
+ // if its not a 7-bit ascii character
+ if((result & 0x80) != 0) {
+ // len is the number of bytes this character takes up in the string
+ unsigned char len = utf8_skip[result];
+ result &= 0x7F >> len;
+
+ while(--len != 0) {
+ result <<= 6;
+ result |= static_cast<unsigned char>(*++p) & 0x3F;
+ }
+ }
+
+ return result;
+}
+
+// takes a pointer into a string and finds its offset
+static ustring::size_type utf8_ptr_to_offset(const char *str, const char *pos)
{
ustring::size_type offset = 0;
while (str < pos) {
- str += g_utf8_skip[*str];
- offset += g_utf8_skip[*str];
+ str += utf8_skip[*str];
+ offset++;
}
return offset;
}
+// takes an offset into a string and returns a pointer to it
+const char *utf8_offset_to_ptr(const char *str, ustring::size_type offset)
+{
+ while (offset--)
+ str += utf8_skip[*str];
+ return str;
+}
+
// First overload: stop on '\0' character.
ustring::size_type utf8_byte_offset(const char* str, ustring::size_type offset)
{
if(*p == '\0')
return ustring::npos;
- p += g_utf8_skip[*p];
+ p += utf8_skip[*p];
}
return (p - str);
if(p >= pend)
return ustring::npos;
- p += g_utf8_skip[*p];
+ p += utf8_skip[*p];
}
return (p - str);
{
if (_utf8) {
const char *const pdata = _string.data();
- return utf8_find_offset(pdata, pdata + _string.size());
+ return utf8_ptr_to_offset(pdata, pdata + _string.size());
} else
return _string.size();
}
_string.resize(n, c);
}
+ustring::value_type ustring::operator[](ustring::size_type i) const
+{
+ return utf8_get_char(utf8_offset_to_ptr(_string.data(), i));
+}
+
const char* ustring::data() const
{
return _string.data();
*/
extern "C" {
-/*
+
#ifdef HAVE_STDINT_H
# include <stdint.h>
#else
# include <sys/types.h>
# endif
#endif
-*/
+
}
#include <string>
namespace otk {
-/*
+
#ifdef HAVE_STDINT_H
typedef uint32_t unichar;
#else
typedef u_int32_t unichar;
#endif
-*/
+
#ifndef DOXYGEN_IGNORE
//! The number of bytes to skip to find the next character in the string
-const char g_utf8_skip[256] = {
+const char utf8_skip[256] = {
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1
};
+unichar utf8_get_char(const char *p);
+
#endif // DOXYGEN_IGNORE
//! The iterator type for ustring
write operation would invalidate all other iterators pointing into the same
string.
*/
-/*
+
template <class T>
class ustring_Iterator
{
public:
typedef std::bidirectional_iterator_tag iterator_category;
- //typedef unichar value_type;
+ typedef unichar value_type;
typedef std::string::difference_type difference_type;
//typedef value_type reference;
typedef void pointer;
-
+
inline ustring_Iterator() {}
inline ustring_Iterator(const ustring_Iterator<std::string::iterator>&
other) : _pos(other.base()) {}
inline value_type operator*() const {
- // get a unicode character from the iterator's position
-
// get an iterator to the internal string
std::string::const_iterator pos = _pos;
-
- unichar result = static_cast<unsigned char>(*pos);
-
- // if its not a 7-bit ascii character
- if((result & 0x80) != 0) {
- // len is the number of bytes this character takes up in the string
- unsigned char len = g_utf8_skip[result];
- result &= 0x7F >> len;
-
- while(--len != 0) {
- result <<= 6;
- result |= static_cast<unsigned char>(*++pos) & 0x3F;
- }
- }
-
- return result;
+ return utf8_get_char(&(*pos));
}
private:
T _pos;
};
-*/
+
//! This class provides a simple wrapper to a std::string that can be encoded
//! as UTF-8. The ustring::utf() member specifies if the given string is UTF-8
typedef std::string::size_type size_type;
typedef std::string::difference_type difference_type;
- //typedef unichar value_type;
+ typedef unichar value_type;
//typedef unichar & reference;
//typedef const unichar & const_reference;
// change the string's size
void resize(size_type n, char c='\0');
+
+ // extract characters
+ // No reference return; use replace() to write characters.
+ value_type operator[](size_type i) const;
+
// internal data
const char* data() const;