mirrored from https://skia.googlesource.com/skia
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathSkUnicode.h
More file actions
286 lines (258 loc) · 10.6 KB
/
SkUnicode.h
File metadata and controls
286 lines (258 loc) · 10.6 KB
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
* Copyright 2020 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkUnicode_DEFINED
#define SkUnicode_DEFINED
#include "include/core/SkSpan.h"
#include "include/core/SkString.h"
#include "include/core/SkTypes.h"
#include "include/private/SkBitmaskEnum.h" // IWYU pragma: keep
#include "include/private/base/SkTArray.h"
#include "src/base/SkUTF.h"
#include <cstddef>
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
#if !defined(SKUNICODE_IMPLEMENTATION)
#define SKUNICODE_IMPLEMENTATION 0
#endif
#if !defined(SKUNICODE_API)
#if defined(SKUNICODE_DLL)
#if defined(_MSC_VER)
#if SKUNICODE_IMPLEMENTATION
#define SKUNICODE_API __declspec(dllexport)
#else
#define SKUNICODE_API __declspec(dllimport)
#endif
#else
#define SKUNICODE_API __attribute__((visibility("default")))
#endif
#else
#define SKUNICODE_API
#endif
#endif
class SKUNICODE_API SkBidiIterator {
public:
typedef int32_t Position;
typedef uint8_t Level;
struct Region {
Region(Position start, Position end, Level level)
: start(start), end(end), level(level) { }
Position start;
Position end;
Level level;
};
enum Direction {
kLTR,
kRTL,
};
virtual ~SkBidiIterator() = default;
virtual Position getLength() = 0;
virtual Level getLevelAt(Position) = 0;
};
class SKUNICODE_API SkBreakIterator {
public:
typedef int32_t Position;
typedef int32_t Status;
virtual ~SkBreakIterator() = default;
virtual Position first() = 0;
virtual Position current() = 0;
virtual Position next() = 0;
virtual Status status() = 0;
virtual bool isDone() = 0;
virtual bool setText(const char utftext8[], int utf8Units) = 0;
virtual bool setText(const char16_t utftext16[], int utf16Units) = 0;
};
class SKUNICODE_API SkUnicode {
public:
enum CodeUnitFlags {
kNoCodeUnitFlag = 0x00,
kPartOfWhiteSpaceBreak = 0x01,
kGraphemeStart = 0x02,
kSoftLineBreakBefore = 0x04,
kHardLineBreakBefore = 0x08,
kPartOfIntraWordBreak = 0x10,
kControl = 0x20,
kTabulation = 0x40,
kGlyphClusterStart = 0x80,
};
enum class TextDirection {
kLTR,
kRTL,
};
typedef size_t Position;
typedef uint8_t BidiLevel;
struct BidiRegion {
BidiRegion(Position start, Position end, BidiLevel level)
: start(start), end(end), level(level) { }
Position start;
Position end;
BidiLevel level;
};
enum class LineBreakType {
kSoftLineBreak = 0,
kHardLineBreak = 100,
};
enum class BreakType {
kWords,
kGraphemes,
kLines
};
struct LineBreakBefore {
LineBreakBefore(Position pos, LineBreakType breakType)
: pos(pos), breakType(breakType) { }
Position pos;
LineBreakType breakType;
};
virtual ~SkUnicode() = default;
virtual SkString toUpper(const SkString&) = 0;
// Methods used in SkShaper and SkText
virtual std::unique_ptr<SkBidiIterator> makeBidiIterator
(const uint16_t text[], int count, SkBidiIterator::Direction) = 0;
virtual std::unique_ptr<SkBidiIterator> makeBidiIterator
(const char text[], int count, SkBidiIterator::Direction) = 0;
virtual std::unique_ptr<SkBreakIterator> makeBreakIterator
(const char locale[], BreakType breakType) = 0;
virtual std::unique_ptr<SkBreakIterator> makeBreakIterator(BreakType type) = 0;
// Methods used in SkParagraph
static bool isTabulation(SkUnicode::CodeUnitFlags flags);
static bool isHardLineBreak(SkUnicode::CodeUnitFlags flags);
static bool isSoftLineBreak(SkUnicode::CodeUnitFlags flags);
static bool isGraphemeStart(SkUnicode::CodeUnitFlags flags);
static bool isControl(SkUnicode::CodeUnitFlags flags);
static bool isPartOfWhiteSpaceBreak(SkUnicode::CodeUnitFlags flags);
static bool extractBidi(const char utf8[],
int utf8Units,
TextDirection dir,
std::vector<BidiRegion>* bidiRegions);
virtual bool getBidiRegions(const char utf8[],
int utf8Units,
TextDirection dir,
std::vector<BidiRegion>* results) = 0;
virtual bool getWords(const char utf8[], int utf8Units, const char* locale,
std::vector<Position>* results) = 0;
virtual bool computeCodeUnitFlags(char utf8[], int utf8Units, bool replaceTabs,
SkTArray<SkUnicode::CodeUnitFlags, true>* results) = 0;
virtual bool computeCodeUnitFlags(char16_t utf16[], int utf16Units, bool replaceTabs,
SkTArray<SkUnicode::CodeUnitFlags, true>* results) = 0;
static SkString convertUtf16ToUtf8(const char16_t * utf16, int utf16Units);
static SkString convertUtf16ToUtf8(const std::u16string& utf16);
static std::u16string convertUtf8ToUtf16(const char* utf8, int utf8Units);
static std::u16string convertUtf8ToUtf16(const SkString& utf8);
static bool isEmoji(SkUnichar utf8);
template <typename Appender8, typename Appender16>
static bool extractUtfConversionMapping(SkSpan<const char> utf8, Appender8&& appender8, Appender16&& appender16) {
size_t size8 = 0;
size_t size16 = 0;
auto ptr = utf8.begin();
auto end = utf8.end();
while (ptr < end) {
size_t index = ptr - utf8.begin();
SkUnichar u = SkUTF::NextUTF8(&ptr, end);
// All UTF8 code units refer to the same codepoint
size_t next = ptr - utf8.begin();
for (auto i = index; i < next; ++i) {
//fUTF16IndexForUTF8Index.emplace_back(fUTF8IndexForUTF16Index.size());
appender16(size8);
++size16;
}
//SkASSERT(fUTF16IndexForUTF8Index.size() == next);
SkASSERT(size16 == next);
if (size16 != next) {
return false;
}
// One or two UTF16 code units refer to the same codepoint
uint16_t buffer[2];
size_t count = SkUTF::ToUTF16(u, buffer);
//fUTF8IndexForUTF16Index.emplace_back(index);
appender8(index);
++size8;
if (count > 1) {
//fUTF8IndexForUTF16Index.emplace_back(index);
appender8(index);
++size8;
}
}
//fUTF16IndexForUTF8Index.emplace_back(fUTF8IndexForUTF16Index.size());
appender16(size8);
++size16;
//fUTF8IndexForUTF16Index.emplace_back(fText.size());
appender8(utf8.size());
++size8;
return true;
}
template <typename Callback>
void forEachCodepoint(const char* utf8, int32_t utf8Units, Callback&& callback) {
const char* current = utf8;
const char* end = utf8 + utf8Units;
while (current < end) {
auto before = current - utf8;
SkUnichar unichar = SkUTF::NextUTF8(¤t, end);
if (unichar < 0) unichar = 0xFFFD;
auto after = current - utf8;
uint16_t buffer[2];
size_t count = SkUTF::ToUTF16(unichar, buffer);
callback(unichar, before, after, count);
}
}
template <typename Callback>
void forEachCodepoint(const char16_t* utf16, int32_t utf16Units, Callback&& callback) {
const char16_t* current = utf16;
const char16_t* end = utf16 + utf16Units;
while (current < end) {
auto before = current - utf16;
SkUnichar unichar = SkUTF::NextUTF16((const uint16_t**)¤t, (const uint16_t*)end);
auto after = current - utf16;
callback(unichar, before, after);
}
}
template <typename Callback>
void forEachBidiRegion(const uint16_t utf16[], int utf16Units, SkBidiIterator::Direction dir, Callback&& callback) {
auto iter = makeBidiIterator(utf16, utf16Units, dir);
const uint16_t* start16 = utf16;
const uint16_t* end16 = utf16 + utf16Units;
SkBidiIterator::Level currentLevel = 0;
SkBidiIterator::Position pos16 = 0;
while (pos16 <= iter->getLength()) {
auto level = iter->getLevelAt(pos16);
if (pos16 == 0) {
currentLevel = level;
} else if (level != currentLevel) {
callback(pos16, start16 - utf16, currentLevel);
currentLevel = level;
}
if (start16 == end16) {
break;
}
SkUnichar u = SkUTF::NextUTF16(&start16, end16);
pos16 += SkUTF::ToUTF16(u);
}
}
template <typename Callback>
void forEachBreak(const char16_t utf16[], int utf16Units, SkUnicode::BreakType type, Callback&& callback) {
auto iter = makeBreakIterator(type);
iter->setText(utf16, utf16Units);
auto pos = iter->first();
do {
callback(pos, iter->status());
pos = iter->next();
} while (!iter->isDone());
}
virtual void reorderVisual(const BidiLevel runLevels[], int levelsCount, int32_t logicalFromVisual[]) = 0;
virtual std::unique_ptr<SkUnicode> copy() = 0;
static std::unique_ptr<SkUnicode> Make();
static std::unique_ptr<SkUnicode> MakeIcuBasedUnicode();
static std::unique_ptr<SkUnicode> MakeClientBasedUnicode(
SkSpan<char> text,
std::vector<SkUnicode::Position> words,
std::vector<SkUnicode::Position> graphemeBreaks,
std::vector<SkUnicode::LineBreakBefore> lineBreaks);
};
namespace sknonstd {
template <> struct is_bitmask_enum<SkUnicode::CodeUnitFlags> : std::true_type {};
} // namespace sknonstd
#endif // SkUnicode_DEFINED