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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"
#include <unicode/utf16.h>
#include "base/check.h"
#include "third_party/blink/renderer/platform/wtf/text/ascii_fast_path.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
#include "third_party/blink/renderer/platform/wtf/text/character_names.h"
#include "third_party/blink/renderer/platform/wtf/text/character_visitor.h"
#include "third_party/blink/renderer/platform/wtf/text/code_point_iterator.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/text/string_impl.h"
#include "third_party/blink/renderer/platform/wtf/text/utf16.h"
#include "third_party/blink/renderer/platform/wtf/text/utf8.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace WTF {
namespace {
class StackStringViewAllocator {
public:
explicit StackStringViewAllocator(
StringView::StackBackingStore& backing_store)
: backing_store_(backing_store) {}
using ResultStringType = StringView;
template <typename CharType>
StringView Alloc(wtf_size_t length, base::span<CharType>& buffer) {
buffer = backing_store_.Realloc<CharType>(length);
return StringView(buffer);
}
StringView CoerceOriginal(StringView string) { return string; }
private:
StringView::StackBackingStore& backing_store_;
};
} // namespace
StringView::StringView(const UChar* chars)
// SAFETY: It's safe if `chars` points to a NUL-terminated string.
: StringView(UNSAFE_BUFFERS(
base::span(chars, chars ? LengthOfNullTerminatedString(chars) : 0))) {
}
#if DCHECK_IS_ON()
StringView::~StringView() {
DCHECK(impl_);
DCHECK(!impl_->HasOneRef() || impl_->IsStatic())
<< "StringView does not own the StringImpl, it "
"must not have the last ref.";
}
#endif
// Helper to write a three-byte UTF-8 code point to the buffer, caller must
// check room is available.
static inline void PutUTF8Triple(base::span<uint8_t, 3u> buffer, UChar ch) {
DCHECK_GE(ch, 0x0800);
buffer[0] = ((ch >> 12) & 0x0F) | 0xE0;
buffer[1] = ((ch >> 6) & 0x3F) | 0x80;
buffer[2] = (ch & 0x3F) | 0x80;
}
std::string StringView::Utf8(Utf8ConversionMode mode) const {
unsigned length = this->length();
if (!length)
return std::string();
// Allocate a buffer big enough to hold all the characters
// (an individual UTF-16 UChar can only expand to 3 UTF-8 bytes).
// Optimization ideas, if we find this function is hot:
// * We could speculatively create a std::string to contain 'length'
// characters, and resize if necessary (i.e. if the buffer contains
// non-ascii characters). (Alternatively, scan the buffer first for
// ascii characters, so we know this will be sufficient).
// * We could allocate a std::string with an appropriate size to
// have a good chance of being able to write the string into the
// buffer without reallocing (say, 1.5 x length).
if (length > std::numeric_limits<unsigned>::max() / 3)
return std::string();
Vector<char, 1024> buffer_vector(length * 3);
size_t buffer_written = 0;
if (Is8Bit()) {
unicode::ConversionResult result = unicode::ConvertLatin1ToUTF8(
Span8(), base::as_writable_byte_span(buffer_vector));
// (length * 3) should be sufficient for any conversion
DCHECK_NE(result.status, unicode::kTargetExhausted);
buffer_written = result.converted.size();
} else {
base::span<const UChar> characters = Span16();
base::span<uint8_t> buffer(base::as_writable_byte_span(buffer_vector));
if (mode == Utf8ConversionMode::kStrictReplacingErrors) {
while (!characters.empty()) {
// Use strict conversion to detect unpaired surrogates.
unicode::ConversionResult result =
unicode::ConvertUTF16ToUTF8(characters, buffer, true);
DCHECK_NE(result.status, unicode::kTargetExhausted);
buffer = buffer.subspan(result.converted.size());
// Conversion fails when there is an unpaired surrogate. Put
// replacement character (U+FFFD) instead of the unpaired
// surrogate.
if (result.status != unicode::kConversionOK) {
DCHECK_LE(0xD800, characters[result.consumed]);
DCHECK_LE(characters[result.consumed], 0xDFFF);
// There should be room left, since one UChar hasn't been
// converted.
auto [replacement_buffer, rest] = buffer.split_at<3u>();
PutUTF8Triple(replacement_buffer, kReplacementCharacter);
buffer = rest;
result.consumed++;
}
characters = characters.subspan(result.consumed);
}
buffer_written = buffer_vector.size() - buffer.size();
} else {
const bool strict = mode == Utf8ConversionMode::kStrict;
unicode::ConversionResult result =
unicode::ConvertUTF16ToUTF8(characters, buffer, strict);
// (length * 3) should be sufficient for any conversion
DCHECK_NE(result.status, unicode::kTargetExhausted);
// Only produced from strict conversion.
if (result.status == unicode::kSourceIllegal) {
DCHECK(strict);
return std::string();
}
// Check for an unconverted high surrogate.
if (result.status == unicode::kSourceExhausted) {
if (strict)
return std::string();
buffer = buffer.subspan(result.converted.size());
// This should be one unpaired high surrogate. Treat it the same
// was as an unpaired high surrogate would have been handled in
// the middle of a string with non-strict conversion - which is
// to say, simply encode it to UTF-8.
DCHECK_EQ(result.consumed + 1, characters.size());
DCHECK_GE(characters[result.consumed], 0xD800);
DCHECK_LE(characters[result.consumed], 0xDBFF);
// There should be room left, since one UChar hasn't been
// converted.
auto unpaired_surrogate_buffer = buffer.first<3u>();
PutUTF8Triple(unpaired_surrogate_buffer, characters[result.consumed]);
buffer_written = unpaired_surrogate_buffer.size();
}
buffer_written += result.converted.size();
}
}
return std::string(buffer_vector.data(), buffer_written);
}
bool StringView::IsLowerASCII() const {
if (StringImpl* impl = SharedImpl()) {
return impl->IsLowerASCII();
}
return VisitCharacters(*this,
[](auto chars) { return WTF::IsLowerASCII(chars); });
}
bool StringView::ContainsOnlyASCIIOrEmpty() const {
if (StringImpl* impl = SharedImpl())
return impl->ContainsOnlyASCIIOrEmpty();
if (empty())
return true;
ASCIIStringAttributes attrs = VisitCharacters(
*this, [](auto chars) { return CharacterAttributes(chars); });
return attrs.contains_only_ascii;
}
bool StringView::SubstringContainsOnlyWhitespaceOrEmpty(unsigned from,
unsigned to) const {
DCHECK_LE(from, to);
return VisitCharacters(StringView(*this, from, to - from), [](auto chars) {
for (size_t i = 0; i < chars.size(); ++i) {
if (!IsASCIISpace(chars[i])) {
return false;
}
}
return true;
});
}
String StringView::ToString() const {
if (IsNull())
return String();
if (empty())
return g_empty_string;
if (StringImpl* impl = SharedImpl())
return impl;
if (Is8Bit())
return String(Span8());
return StringImpl::Create8BitIfPossible(Span16());
}
AtomicString StringView::ToAtomicString() const {
if (IsNull())
return g_null_atom;
if (empty())
return g_empty_atom;
if (StringImpl* impl = SharedImpl())
return AtomicString(impl);
if (Is8Bit())
return AtomicString(Span8());
return AtomicString(Span16());
}
String StringView::EncodeForDebugging() const {
if (IsNull()) {
return "<null>";
}
StringBuilder builder;
builder.Append('"');
for (unsigned index = 0; index < length(); ++index) {
// Print shorthands for select cases.
UChar character = (*this)[index];
switch (character) {
case '\t':
builder.Append("\\t");
break;
case '\n':
builder.Append("\\n");
break;
case '\r':
builder.Append("\\r");
break;
case '"':
builder.Append("\\\"");
break;
case '\\':
builder.Append("\\\\");
break;
default:
if (IsASCIIPrintable(character)) {
builder.Append(static_cast<char>(character));
} else {
// Print "\uXXXX" for control or non-ASCII characters.
builder.AppendFormat("\\u%04X", character);
}
break;
}
}
builder.Append('"');
return builder.ToString();
}
bool EqualStringView(const StringView& a, const StringView& b) {
if (a.IsNull() || b.IsNull())
return a.IsNull() == b.IsNull();
if (a.length() != b.length())
return false;
if (a.Bytes() == b.Bytes() && a.Is8Bit() == b.Is8Bit())
return true;
return VisitCharacters(a, [b](auto chars) {
return b.Is8Bit() ? chars == b.Span8() : chars == b.Span16();
});
}
bool DeprecatedEqualIgnoringCaseAndNullity(const StringView& a,
const StringView& b) {
if (a.length() != b.length())
return false;
return VisitCharacters(a, [b](auto chars) {
return b.Is8Bit() ? DeprecatedEqualIgnoringCase(chars, b.Span8())
: DeprecatedEqualIgnoringCase(chars, b.Span16());
});
}
bool DeprecatedEqualIgnoringCase(const StringView& a, const StringView& b) {
if (a.IsNull() || b.IsNull())
return a.IsNull() == b.IsNull();
return DeprecatedEqualIgnoringCaseAndNullity(a, b);
}
bool EqualIgnoringASCIICase(const StringView& a, const StringView& b) {
if (a.IsNull() || b.IsNull())
return a.IsNull() == b.IsNull();
if (a.length() != b.length())
return false;
if (a.Bytes() == b.Bytes() && a.Is8Bit() == b.Is8Bit())
return true;
return VisitCharacters(a, [b](auto chars) {
return b.Is8Bit() ? EqualIgnoringASCIICase(chars, b.Span8())
: EqualIgnoringASCIICase(chars, b.Span16());
});
}
StringView StringView::LowerASCIIMaybeUsingBuffer(
StackBackingStore& buffer) const {
return ConvertASCIICase(*this, LowerConverter(),
StackStringViewAllocator(buffer));
}
UChar32 StringView::CodepointAt(unsigned i) const {
SECURITY_DCHECK(i < length());
if (Is8Bit())
return (*this)[i];
return CodePointAt(Span16(), i);
}
unsigned StringView::NextCodePointOffset(unsigned i) const {
DCHECK_LT(i, length());
unsigned next = i + 1;
if (Is8Bit())
return next;
auto str = Span16();
if (U16_IS_LEAD(str[i]) && next < str.size() && U16_IS_TRAIL(str[next])) {
++next;
}
return next;
}
UChar32 StringView::CodePointAtAndNext(unsigned& i) const {
if (Is8Bit()) {
return (*this)[i++];
}
return WTF::CodePointAtAndNext(Span16(), i);
}
CodePointIterator StringView::begin() const {
return CodePointIterator(*this);
}
CodePointIterator StringView::end() const {
return CodePointIterator::End(*this);
}
std::ostream& operator<<(std::ostream& out, const StringView& string) {
return out << string.EncodeForDebugging().Utf8();
}
} // namespace WTF
|