28 #ifndef UTF8_FOR_CPP_UNCHECKED_H_2675DCD0_9480_4c0c_B92A_CC14C027B731
29 #define UTF8_FOR_CPP_UNCHECKED_H_2675DCD0_9480_4c0c_B92A_CC14C027B731
37 template <
typename octet_iterator>
38 octet_iterator append(uint32_t cp, octet_iterator result)
41 *(result++) = static_cast<uint8_t>(cp);
42 else if (cp < 0x800) {
43 *(result++) = static_cast<uint8_t>((cp >> 6) | 0xc0);
44 *(result++) = static_cast<uint8_t>((cp & 0x3f) | 0x80);
46 else if (cp < 0x10000) {
47 *(result++) = static_cast<uint8_t>((cp >> 12) | 0xe0);
48 *(result++) = static_cast<uint8_t>(((cp >> 6) & 0x3f) | 0x80);
49 *(result++) = static_cast<uint8_t>((cp & 0x3f) | 0x80);
52 *(result++) = static_cast<uint8_t>((cp >> 18) | 0xf0);
53 *(result++) = static_cast<uint8_t>(((cp >> 12) & 0x3f)| 0x80);
54 *(result++) = static_cast<uint8_t>(((cp >> 6) & 0x3f) | 0x80);
55 *(result++) = static_cast<uint8_t>((cp & 0x3f) | 0x80);
60 template <
typename octet_iterator>
61 uint32_t next(octet_iterator& it)
63 uint32_t cp = utf8::internal::mask8(*it);
64 typename std::iterator_traits<octet_iterator>::difference_type length = utf8::internal::sequence_length(it);
70 cp = ((cp << 6) & 0x7ff) + ((*it) & 0x3f);
74 cp = ((cp << 12) & 0xffff) + ((utf8::internal::mask8(*it) << 6) & 0xfff);
80 cp = ((cp << 18) & 0x1fffff) + ((utf8::internal::mask8(*it) << 12) & 0x3ffff);
82 cp += (utf8::internal::mask8(*it) << 6) & 0xfff;
91 template <
typename octet_iterator>
92 uint32_t peek_next(octet_iterator it)
94 return utf8::unchecked::next(it);
97 template <
typename octet_iterator>
98 uint32_t prior(octet_iterator& it)
100 while (utf8::internal::is_trail(*(--it))) ;
101 octet_iterator temp = it;
102 return utf8::unchecked::next(temp);
106 template <
typename octet_iterator>
107 inline uint32_t previous(octet_iterator& it)
109 return utf8::unchecked::prior(it);
112 template <
typename octet_iterator,
typename distance_type>
113 void advance (octet_iterator& it, distance_type n)
115 for (distance_type i = 0; i < n; ++i)
116 utf8::unchecked::next(it);
119 template <
typename octet_iterator>
120 typename std::iterator_traits<octet_iterator>::difference_type
121 distance (octet_iterator first, octet_iterator last)
123 typename std::iterator_traits<octet_iterator>::difference_type dist;
124 for (dist = 0; first < last; ++dist)
125 utf8::unchecked::next(first);
129 template <
typename u16bit_iterator,
typename octet_iterator>
130 octet_iterator utf16to8 (u16bit_iterator start, u16bit_iterator end, octet_iterator result)
132 while (start != end) {
133 uint32_t cp = utf8::internal::mask16(*start++);
135 if (utf8::internal::is_lead_surrogate(cp)) {
136 uint32_t trail_surrogate = utf8::internal::mask16(*start++);
137 cp = (cp << 10) + trail_surrogate + internal::SURROGATE_OFFSET;
139 result = utf8::unchecked::append(cp, result);
144 template <
typename u16bit_iterator,
typename octet_iterator>
145 u16bit_iterator utf8to16 (octet_iterator start, octet_iterator end, u16bit_iterator result)
147 while (start < end) {
148 uint32_t cp = utf8::unchecked::next(start);
150 *result++ =
static_cast<uint16_t
>((cp >> 10) + internal::LEAD_OFFSET);
151 *result++ =
static_cast<uint16_t
>((cp & 0x3ff) + internal::TRAIL_SURROGATE_MIN);
154 *result++ =
static_cast<uint16_t
>(cp);
159 template <
typename octet_iterator,
typename u32bit_iterator>
160 octet_iterator utf32to8 (u32bit_iterator start, u32bit_iterator end, octet_iterator result)
163 result = utf8::unchecked::append(*(start++), result);
168 template <
typename octet_iterator,
typename u32bit_iterator>
169 u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result)
172 (*result++) = utf8::unchecked::next(start);
178 template <
typename octet_iterator>
179 class iterator :
public std::iterator <std::bidirectional_iterator_tag, uint32_t> {
183 explicit iterator (
const octet_iterator& octet_it): it(octet_it) {}
185 octet_iterator base ()
const {
return it; }
186 uint32_t operator * ()
const
188 octet_iterator temp = it;
189 return utf8::unchecked::next(temp);
191 bool operator == (
const iterator& rhs)
const
193 return (it == rhs.it);
195 bool operator != (
const iterator& rhs)
const
197 return !(operator == (rhs));
201 ::std::advance(it, utf8::internal::sequence_length(it));
207 ::std::advance(it, utf8::internal::sequence_length(it));
212 utf8::unchecked::prior(it);
218 utf8::unchecked::prior(it);
227 #endif // header guard
Definition: unchecked.h:179