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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/intl/Bidi.h"
#include "mozilla/Casting.h"
#include "mozilla/intl/ICU4CGlue.h"
#if !USE_RUST_UNICODE_BIDI
# include "unicode/ubidi.h"
#endif
namespace mozilla::intl {
#if USE_RUST_UNICODE_BIDI
using namespace ffi;
Bidi::Bidi() = default;
Bidi::~Bidi() = default;
#else
Bidi::Bidi() { mBidi = ubidi_open(); }
Bidi::~Bidi() { ubidi_close(mBidi.GetMut()); }
#endif
ICUResult Bidi::SetParagraph(Span<const char16_t> aParagraph,
BidiEmbeddingLevel aLevel) {
#if USE_RUST_UNICODE_BIDI
const auto* text = reinterpret_cast<const uint16_t*>(aParagraph.Elements());
mBidi.reset(bidi_new(text, aParagraph.Length(), aLevel));
return ToICUResult(U_ZERO_ERROR);
#else
// Do not allow any reordering of the runs, as this can change the
// performance characteristics of working with runs. In the default mode,
// the levels can be iterated over directly, rather than relying on computing
// logical runs on the fly. This can have negative performance characteristics
// compared to iterating over the levels.
//
// In the UBIDI_REORDER_RUNS_ONLY the levels are encoded with additional
// information which can be safely ignored in this Bidi implementation.
// Note that this check is here since setting the mode must be done before
// calls to setting the paragraph.
MOZ_ASSERT(ubidi_getReorderingMode(mBidi.GetMut()) == UBIDI_REORDER_DEFAULT);
UErrorCode status = U_ZERO_ERROR;
ubidi_setPara(mBidi.GetMut(), aParagraph.Elements(),
AssertedCast<int32_t>(aParagraph.Length()), aLevel, nullptr,
&status);
mLevels = nullptr;
return ToICUResult(status);
#endif
}
Bidi::ParagraphDirection Bidi::GetParagraphDirection() const {
#if USE_RUST_UNICODE_BIDI
auto dir = bidi_get_direction(mBidi.get());
switch (dir) {
case -1:
return Bidi::ParagraphDirection::RTL;
case 0:
return Bidi::ParagraphDirection::Mixed;
case 1:
return Bidi::ParagraphDirection::LTR;
default:
MOZ_ASSERT_UNREACHABLE("Bad direction value");
return Bidi::ParagraphDirection::Mixed;
}
#else
switch (ubidi_getDirection(mBidi.GetConst())) {
case UBIDI_LTR:
return Bidi::ParagraphDirection::LTR;
case UBIDI_RTL:
return Bidi::ParagraphDirection::RTL;
case UBIDI_MIXED:
return Bidi::ParagraphDirection::Mixed;
case UBIDI_NEUTRAL:
// This is only used in `ubidi_getBaseDirection` which is unused in this
// API.
MOZ_ASSERT_UNREACHABLE("Unexpected UBiDiDirection value.");
};
return Bidi::ParagraphDirection::Mixed;
#endif
}
/* static */
void Bidi::ReorderVisual(const BidiEmbeddingLevel* aLevels, int32_t aLength,
int32_t* aIndexMap) {
#if USE_RUST_UNICODE_BIDI
bidi_reorder_visual(reinterpret_cast<const uint8_t*>(aLevels), aLength,
aIndexMap);
#else
ubidi_reorderVisual(reinterpret_cast<const uint8_t*>(aLevels), aLength,
aIndexMap);
#endif
}
/* static */
Bidi::BaseDirection Bidi::GetBaseDirection(Span<const char16_t> aText) {
#if USE_RUST_UNICODE_BIDI
const auto* text = reinterpret_cast<const uint16_t*>(aText.Elements());
switch (bidi_get_base_direction(text, aText.Length(), false)) {
case -1:
return Bidi::BaseDirection::RTL;
case 0:
return Bidi::BaseDirection::Neutral;
case 1:
return Bidi::BaseDirection::LTR;
default:
MOZ_ASSERT_UNREACHABLE("Bad base direction value");
return Bidi::BaseDirection::Neutral;
}
#else
UBiDiDirection direction = ubidi_getBaseDirection(
aText.Elements(), AssertedCast<int32_t>(aText.Length()));
switch (direction) {
case UBIDI_LTR:
return Bidi::BaseDirection::LTR;
case UBIDI_RTL:
return Bidi::BaseDirection::RTL;
case UBIDI_NEUTRAL:
return Bidi::BaseDirection::Neutral;
case UBIDI_MIXED:
MOZ_ASSERT_UNREACHABLE("Unexpected UBiDiDirection value.");
}
return Bidi::BaseDirection::Neutral;
#endif
}
#if !USE_RUST_UNICODE_BIDI
static BidiDirection ToBidiDirection(UBiDiDirection aDirection) {
switch (aDirection) {
case UBIDI_LTR:
return BidiDirection::LTR;
case UBIDI_RTL:
return BidiDirection::RTL;
case UBIDI_MIXED:
case UBIDI_NEUTRAL:
MOZ_ASSERT_UNREACHABLE("Unexpected UBiDiDirection value.");
}
return BidiDirection::LTR;
}
#endif
Result<int32_t, ICUError> Bidi::CountRuns() {
#if USE_RUST_UNICODE_BIDI
return bidi_count_runs(mBidi.get());
#else
UErrorCode status = U_ZERO_ERROR;
int32_t runCount = ubidi_countRuns(mBidi.GetMut(), &status);
if (U_FAILURE(status)) {
return Err(ToICUError(status));
}
mLength = ubidi_getProcessedLength(mBidi.GetConst());
mLevels = mLength > 0 ? reinterpret_cast<const BidiEmbeddingLevel*>(
ubidi_getLevels(mBidi.GetMut(), &status))
: nullptr;
if (U_FAILURE(status)) {
return Err(ToICUError(status));
}
return runCount;
#endif
}
void Bidi::GetLogicalRun(int32_t aLogicalStart, int32_t* aLogicalLimitOut,
BidiEmbeddingLevel* aLevelOut) {
#if USE_RUST_UNICODE_BIDI
const int32_t length = bidi_get_length(mBidi.get());
MOZ_DIAGNOSTIC_ASSERT(aLogicalStart < length);
const auto* levels = bidi_get_levels(mBidi.get());
#else
MOZ_ASSERT(mLevels, "CountRuns hasn't been run?");
MOZ_RELEASE_ASSERT(aLogicalStart < mLength, "Out of bound");
const int32_t length = mLength;
const auto* levels = mLevels;
#endif
const uint8_t level = levels[aLogicalStart];
int32_t limit;
for (limit = aLogicalStart + 1; limit < length; limit++) {
if (levels[limit] != level) {
break;
}
}
*aLogicalLimitOut = limit;
*aLevelOut = BidiEmbeddingLevel(level);
}
BidiEmbeddingLevel Bidi::GetParagraphEmbeddingLevel() const {
#if USE_RUST_UNICODE_BIDI
return BidiEmbeddingLevel(bidi_get_paragraph_level(mBidi.get()));
#else
return BidiEmbeddingLevel(ubidi_getParaLevel(mBidi.GetConst()));
#endif
}
BidiDirection Bidi::GetVisualRun(int32_t aRunIndex, int32_t* aLogicalStart,
int32_t* aLength) {
#if USE_RUST_UNICODE_BIDI
auto run = bidi_get_visual_run(mBidi.get(), aRunIndex);
*aLogicalStart = run.start;
*aLength = run.length;
return BidiEmbeddingLevel(run.level).Direction();
#else
return ToBidiDirection(
ubidi_getVisualRun(mBidi.GetMut(), aRunIndex, aLogicalStart, aLength));
#endif
}
} // namespace mozilla::intl
|