aboutsummaryrefslogtreecommitdiff
path: root/src/codepoint_iterator.cc
blob: 21a8c36414210235653463da4328134070a33fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#include "codepoint_iterator.h"

#include <cstdint>

namespace {

enum class CodeUnitType : uint8_t {
	CONTINUATION = 128, // 10000000
	LEADING      = 64,  // 01000000
	THREE        = 32,  // 00100000
	FOUR         = 16,  // 00010000
};

enum class CodePoint : uint8_t {
	CONTINUATION = 63,  // 00111111
	TWO          = 31,  // 00011111
	THREE        = 15,  // 00001111
	FOUR         = 7,   // 00000111
};

inline bool match(const uint8_t& codeUnit, CodeUnitType&& type) {
	return codeUnit & static_cast<uint8_t>(type);
}

inline void write(char32_t& codePoint,
                  const uint8_t& codeUnit,
                  CodePoint&& mask,
                  const uint8_t& offset) {
	codePoint += (codeUnit & static_cast<uint8_t>(mask)) << offset;
}

}

namespace UTF8 {

CodepointIterator::CodepointIterator(std::string::const_iterator iter):
	iterator_(iter),
	dereferenced_(false),
	codepoint_(0) { }

CodepointIterator::CodepointIterator(const CodepointIterator& src):
	iterator_(src.iterator_),
	dereferenced_(src.dereferenced_),
	codepoint_(src.codepoint_) { }

CodepointIterator& CodepointIterator::operator=(const CodepointIterator& src) {
	this->iterator_     = src.iterator_;
	this->dereferenced_ = src.dereferenced_;
	this->codepoint_    = src.codepoint_;
	
	return *this;
}

bool CodepointIterator::operator==(const CodepointIterator& src) const {
	return this->iterator_ == src.iterator_;
}

bool CodepointIterator::operator!=(const CodepointIterator& src) const {
	return this->iterator_ != src.iterator_;
}

bool CodepointIterator::operator==(
	const std::string::const_iterator& src) const {
	return this->iterator_ == src;
}

bool CodepointIterator::operator!=(
	const std::string::const_iterator& src) const {
	return this->iterator_ != src;
}

char32_t CodepointIterator::operator*() {
	if ( !this->dereferenced_ ) {
		uint8_t currByte    = *(this->iterator_);
		this->dereferenced_ = true;
		this->codepoint_    = 0;

		if ( match(currByte, CodeUnitType::CONTINUATION) ) {
			if ( match(currByte, CodeUnitType::THREE) ) {
				if ( match(currByte, CodeUnitType::FOUR) ) {
					write(this->codepoint_,
					      currByte,
					      CodePoint::FOUR,
					      18);
					write(this->codepoint_,
					      *(this->iterator_ + 1),
					      CodePoint::CONTINUATION,
					      12);
					write(this->codepoint_,
					      *(this->iterator_ + 2),
					      CodePoint::CONTINUATION,
					      6);
					write(this->codepoint_,
					      *(this->iterator_ + 3),
					      CodePoint::CONTINUATION,
					      0);
				} else {
					write(this->codepoint_,
					      currByte,
					      CodePoint::THREE,
					      12);
					write(this->codepoint_,
					      *(this->iterator_ + 1),
					      CodePoint::CONTINUATION,
					      6);
					write(this->codepoint_,
					      *(this->iterator_ + 2),
					      CodePoint::CONTINUATION,
					      0);
				}
			} else {
				write(this->codepoint_,
				      currByte,
				      CodePoint::TWO,
				      6);
				write(this->codepoint_,
				      *(this->iterator_ + 1),
				      CodePoint::CONTINUATION,
				      0);
			}
		} else {
			this->codepoint_ = currByte;
		}
	}

	return this->codepoint_;
}

CodepointIterator& CodepointIterator::operator++() {
	this->dereferenced_                 = false;
	uint8_t currByte                    = *(this->iterator_);
	std::string::difference_type offset = 1;

	if ( match(currByte, CodeUnitType::CONTINUATION) ) {
		if ( match(currByte, CodeUnitType::THREE) ) {
			if ( match(currByte, CodeUnitType::FOUR) ) {
				offset = 4;
			} else {
				offset = 3;
			}
		} else {
			offset = 2;
		}
	}

	this->iterator_ += offset;

	return *this;
}

CodepointIterator& CodepointIterator::operator--() {
	this->dereferenced_ = false;
	--this->iterator_;

	if ( match(*(this->iterator_), CodeUnitType::CONTINUATION) ) {
		--this->iterator_;

		if ( !match(*(this->iterator_), CodeUnitType::LEADING) ) {
			--this->iterator_;

			if ( !match(*(this->iterator_), CodeUnitType::LEADING) ) {
				--this->iterator_;

				if ( !match(*(this->iterator_), CodeUnitType::LEADING) ) {
					throw codepoint_invalid();
				}
			}
		}
	}

	return *this;
}

CodepointIterator CodepointIterator::operator++(int) {
	CodepointIterator oldIter(*this);

	++(*this);

	return oldIter;
}

CodepointIterator CodepointIterator::operator--(int) {
	CodepointIterator oldIter(*this);

	--(*this);

	return oldIter;
}

}