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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
/*
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "TextUtil.h"
#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
#include "BreakLines.h"
#include "FontCascade.h"
#include "InlineTextItem.h"
#include "Latin1TextIterator.h"
#include "LayoutInlineTextBox.h"
#include "RenderBox.h"
#include "RenderStyle.h"
#include "SurrogatePairAwareTextIterator.h"
#include <unicode/ubidi.h>
#include <wtf/text/TextBreakIterator.h>
namespace WebCore {
namespace Layout {
static inline InlineLayoutUnit spaceWidth(const FontCascade& fontCascade, bool canUseSimplifiedContentMeasuring)
{
if (canUseSimplifiedContentMeasuring)
return fontCascade.primaryFont().spaceWidth();
return fontCascade.widthOfSpaceString();
}
enum class UseTrailingWhitespaceMeasuringOptimization : uint8_t { Yes, No };
static inline InlineLayoutUnit contentWidth(const InlineTextBox& inlineTextBox, const FontCascade& fontCascade, unsigned from, unsigned to, InlineLayoutUnit contentLogicalLeft, UseTrailingWhitespaceMeasuringOptimization useTrailingWhitespaceMeasuringOptimization = UseTrailingWhitespaceMeasuringOptimization::Yes)
{
if (from == to)
return 0;
auto text = inlineTextBox.content();
ASSERT(to <= text.length());
auto hasKerningOrLigatures = fontCascade.enableKerning() || fontCascade.requiresShaping();
// The "non-whitespace" + "whitespace" pattern is very common for inline content and since most of the "non-whitespace" runs end up with
// their "whitespace" pair on the line (notable exception is when trailing whitespace is trimmed).
// Including the trailing whitespace here enables us to cut the number of text measures when placing content on the line.
auto extendedMeasuring = useTrailingWhitespaceMeasuringOptimization == UseTrailingWhitespaceMeasuringOptimization::Yes && hasKerningOrLigatures && to < text.length() && text[to] == space;
if (extendedMeasuring)
++to;
auto width = 0.f;
auto useSimplifiedContentMeasuring = inlineTextBox.canUseSimplifiedContentMeasuring();
if (useSimplifiedContentMeasuring)
width = fontCascade.widthForSimpleText(StringView(text).substring(from, to - from));
else {
WebCore::TextRun run(StringView(text).substring(from, to - from), contentLogicalLeft);
auto& style = inlineTextBox.style();
if (!style.collapseWhiteSpace() && style.tabSize())
run.setTabSize(true, style.tabSize());
width = fontCascade.width(run);
}
if (extendedMeasuring)
width -= (spaceWidth(fontCascade, useSimplifiedContentMeasuring) + fontCascade.wordSpacing());
return std::isnan(width) ? 0.0f : std::isinf(width) ? maxInlineLayoutUnit() : width;
}
InlineLayoutUnit TextUtil::width(const InlineTextItem& inlineTextItem, const FontCascade& fontCascade, InlineLayoutUnit contentLogicalLeft)
{
return TextUtil::width(inlineTextItem, fontCascade, inlineTextItem.start(), inlineTextItem.end(), contentLogicalLeft);
}
InlineLayoutUnit TextUtil::width(const InlineTextItem& inlineTextItem, const FontCascade& fontCascade, unsigned from, unsigned to, InlineLayoutUnit contentLogicalLeft)
{
RELEASE_ASSERT(from >= inlineTextItem.start());
RELEASE_ASSERT(to <= inlineTextItem.end());
if (inlineTextItem.isWhitespace()) {
auto& inlineTextBox = inlineTextItem.inlineTextBox();
auto useSimplifiedContentMeasuring = inlineTextBox.canUseSimplifiedContentMeasuring();
auto length = from - to;
auto singleWhiteSpace = length == 1 || !TextUtil::shouldPreserveSpacesAndTabs(inlineTextBox);
if (singleWhiteSpace) {
auto width = spaceWidth(fontCascade, useSimplifiedContentMeasuring);
return std::isnan(width) ? 0.0f : std::isinf(width) ? maxInlineLayoutUnit() : width;
}
}
return contentWidth(inlineTextItem.inlineTextBox(), fontCascade, from, to, contentLogicalLeft);
}
InlineLayoutUnit TextUtil::trailingWhitespaceWidth(const InlineTextBox& inlineTextBox, const FontCascade& fontCascade, size_t startPosition, size_t endPosition)
{
auto text = inlineTextBox.content();
ASSERT(endPosition > startPosition + 1);
ASSERT(text[endPosition - 1] == space);
return contentWidth(inlineTextBox, fontCascade, startPosition, endPosition, { }, UseTrailingWhitespaceMeasuringOptimization::Yes) -
contentWidth(inlineTextBox, fontCascade, startPosition, endPosition - 1, { }, UseTrailingWhitespaceMeasuringOptimization::No);
}
template <typename TextIterator>
static void fallbackFontsForRunWithIterator(HashSet<const Font*>& fallbackFonts, const FontCascade& fontCascade, const TextRun& run, TextIterator& textIterator)
{
auto isRTL = run.rtl();
auto isSmallCaps = fontCascade.isSmallCaps();
auto& primaryFont = fontCascade.primaryFont();
UChar32 currentCharacter = 0;
unsigned clusterLength = 0;
while (textIterator.consume(currentCharacter, clusterLength)) {
auto addFallbackFontForCharacterIfApplicable = [&](auto character) {
if (isSmallCaps && character != u_toupper(character))
character = u_toupper(character);
auto glyphData = fontCascade.glyphDataForCharacter(character, isRTL);
if (glyphData.glyph && glyphData.font && glyphData.font != &primaryFont) {
auto isNonSpacingMark = U_MASK(u_charType(character)) & U_GC_MN_MASK;
// If we include the synthetic bold expansion, then even zero-width glyphs will have their fonts added.
if (isNonSpacingMark || glyphData.font->widthForGlyph(glyphData.glyph, Font::SyntheticBoldInclusion::Exclude))
fallbackFonts.add(glyphData.font);
}
};
addFallbackFontForCharacterIfApplicable(currentCharacter);
textIterator.advance(clusterLength);
}
}
TextUtil::FallbackFontList TextUtil::fallbackFontsForText(StringView textContent, const RenderStyle& style, IncludeHyphen includeHyphen)
{
TextUtil::FallbackFontList fallbackFonts;
auto collectFallbackFonts = [&](const auto& textRun) {
if (textRun.text().isEmpty())
return;
if (textRun.is8Bit()) {
auto textIterator = Latin1TextIterator { textRun.data8(0), 0, textRun.length(), textRun.length() };
fallbackFontsForRunWithIterator(fallbackFonts, style.fontCascade(), textRun, textIterator);
return;
}
auto textIterator = SurrogatePairAwareTextIterator { textRun.data16(0), 0, textRun.length(), textRun.length() };
fallbackFontsForRunWithIterator(fallbackFonts, style.fontCascade(), textRun, textIterator);
};
if (includeHyphen == IncludeHyphen::Yes)
collectFallbackFonts(TextRun { StringView(style.hyphenString().string()), { }, { }, ExpansionBehavior::defaultBehavior(), style.direction() });
collectFallbackFonts(TextRun { textContent, { }, { }, ExpansionBehavior::defaultBehavior(), style.direction() });
return fallbackFonts;
}
TextUtil::WordBreakLeft TextUtil::breakWord(const InlineTextItem& inlineTextItem, const FontCascade& fontCascade, InlineLayoutUnit textWidth, InlineLayoutUnit availableWidth, InlineLayoutUnit contentLogicalLeft)
{
return breakWord(inlineTextItem.inlineTextBox(), inlineTextItem.start(), inlineTextItem.length(), textWidth, availableWidth, contentLogicalLeft, fontCascade);
}
TextUtil::WordBreakLeft TextUtil::breakWord(const InlineTextBox& inlineTextBox, size_t startPosition, size_t length, InlineLayoutUnit textWidth, InlineLayoutUnit availableWidth, InlineLayoutUnit contentLogicalLeft, const FontCascade& fontCascade)
{
ASSERT(availableWidth >= 0);
ASSERT(length);
auto text = inlineTextBox.content();
if (inlineTextBox.canUseSimpleFontCodePath()) {
auto findBreakingPositionInSimpleText = [&] {
auto userPerceivedCharacterBoundaryAlignedIndex = [&] (auto index) -> size_t {
if (text.is8Bit())
return index;
auto alignedStartIndex = index;
U16_SET_CP_START(text, startPosition, alignedStartIndex);
ASSERT(alignedStartIndex >= startPosition);
return alignedStartIndex;
};
auto nextUserPerceivedCharacterIndex = [&] (auto index) -> size_t {
if (text.is8Bit())
return index + 1;
U16_FWD_1(text, index, length);
return index;
};
auto left = startPosition;
auto right = left + length - 1;
// Pathological case of (extremely)long string and narrow lines.
// Adjust the range so that we can pick a reasonable midpoint.
auto averageCharacterWidth = InlineLayoutUnit { textWidth / length };
size_t startOffset = 2 * availableWidth / averageCharacterWidth;
right = userPerceivedCharacterBoundaryAlignedIndex(std::min(left + startOffset, right));
// Preserve the left width for the final split position so that we don't need to remeasure the left side again.
auto leftSideWidth = InlineLayoutUnit { 0 };
while (left < right) {
auto middle = userPerceivedCharacterBoundaryAlignedIndex((left + right) / 2);
ASSERT(middle >= left && middle < right);
auto endOfMiddleCharacter = nextUserPerceivedCharacterIndex(middle);
auto width = contentWidth(inlineTextBox, fontCascade, startPosition, endOfMiddleCharacter, contentLogicalLeft);
if (width < availableWidth) {
left = endOfMiddleCharacter;
leftSideWidth = width;
} else if (width > availableWidth)
right = middle;
else {
right = endOfMiddleCharacter;
leftSideWidth = width;
break;
}
}
RELEASE_ASSERT(right >= startPosition);
return TextUtil::WordBreakLeft { right - startPosition, leftSideWidth };
};
return findBreakingPositionInSimpleText();
}
auto graphemeClusterIterator = NonSharedCharacterBreakIterator { StringView { text }.substring(startPosition, length) };
auto leftSide = TextUtil::WordBreakLeft { };
for (auto clusterStartPosition = ubrk_next(graphemeClusterIterator); clusterStartPosition != UBRK_DONE; clusterStartPosition = ubrk_next(graphemeClusterIterator)) {
auto width = contentWidth(inlineTextBox, fontCascade, startPosition, startPosition + clusterStartPosition, contentLogicalLeft);
if (width > availableWidth)
return leftSide;
leftSide = { static_cast<size_t>(clusterStartPosition), width };
}
// This content is not supposed to fit availableWidth.
ASSERT_NOT_REACHED();
return { };
}
unsigned TextUtil::findNextBreakablePosition(LazyLineBreakIterator& lineBreakIterator, unsigned startPosition, const RenderStyle& style)
{
auto keepAllWordsForCJK = style.wordBreak() == WordBreak::KeepAll;
auto breakNBSP = style.autoWrap() && style.nbspMode() == NBSPMode::Space;
if (keepAllWordsForCJK) {
if (breakNBSP)
return nextBreakablePositionKeepingAllWords(lineBreakIterator, startPosition);
return nextBreakablePositionKeepingAllWordsIgnoringNBSP(lineBreakIterator, startPosition);
}
if (lineBreakIterator.mode() == LineBreakIteratorMode::Default) {
if (breakNBSP)
return WebCore::nextBreakablePosition(lineBreakIterator, startPosition);
return nextBreakablePositionIgnoringNBSP(lineBreakIterator, startPosition);
}
if (breakNBSP)
return nextBreakablePositionWithoutShortcut(lineBreakIterator, startPosition);
return nextBreakablePositionIgnoringNBSPWithoutShortcut(lineBreakIterator, startPosition);
}
bool TextUtil::shouldPreserveSpacesAndTabs(const Box& layoutBox)
{
// https://www.w3.org/TR/css-text-3/#white-space-property
auto whitespace = layoutBox.style().whiteSpace();
return whitespace == WhiteSpace::Pre || whitespace == WhiteSpace::PreWrap || whitespace == WhiteSpace::BreakSpaces;
}
bool TextUtil::shouldPreserveNewline(const Box& layoutBox)
{
auto whitespace = layoutBox.style().whiteSpace();
// https://www.w3.org/TR/css-text-3/#white-space-property
return whitespace == WhiteSpace::Pre || whitespace == WhiteSpace::PreWrap || whitespace == WhiteSpace::BreakSpaces || whitespace == WhiteSpace::PreLine;
}
bool TextUtil::isWrappingAllowed(const RenderStyle& style)
{
// Do not try to wrap overflown 'pre' and 'no-wrap' content to next line.
return style.whiteSpace() != WhiteSpace::Pre && style.whiteSpace() != WhiteSpace::NoWrap;
}
LineBreakIteratorMode TextUtil::lineBreakIteratorMode(LineBreak lineBreak)
{
switch (lineBreak) {
case LineBreak::Auto:
case LineBreak::AfterWhiteSpace:
case LineBreak::Anywhere:
return LineBreakIteratorMode::Default;
case LineBreak::Loose:
return LineBreakIteratorMode::Loose;
case LineBreak::Normal:
return LineBreakIteratorMode::Normal;
case LineBreak::Strict:
return LineBreakIteratorMode::Strict;
}
ASSERT_NOT_REACHED();
return LineBreakIteratorMode::Default;
}
bool TextUtil::containsStrongDirectionalityText(StringView text)
{
if (text.is8Bit())
return false;
auto length = text.length();
for (size_t position = 0; position < length;) {
UChar32 character;
U16_NEXT(text.characters16(), position, length, character);
auto bidiCategory = u_charDirection(character);
bool hasBidiContent = bidiCategory == U_RIGHT_TO_LEFT
|| bidiCategory == U_RIGHT_TO_LEFT_ARABIC
|| bidiCategory == U_RIGHT_TO_LEFT_EMBEDDING
|| bidiCategory == U_RIGHT_TO_LEFT_OVERRIDE
|| bidiCategory == U_LEFT_TO_RIGHT_EMBEDDING
|| bidiCategory == U_LEFT_TO_RIGHT_OVERRIDE
|| bidiCategory == U_POP_DIRECTIONAL_FORMAT;
if (hasBidiContent)
return true;
}
return false;
}
size_t TextUtil::firstUserPerceivedCharacterLength(const InlineTextItem& inlineTextItem)
{
auto& inlineTextBox = inlineTextItem.inlineTextBox();
auto textContent = inlineTextBox.content();
RELEASE_ASSERT(!textContent.isEmpty());
if (textContent.is8Bit())
return 1;
if (inlineTextBox.canUseSimpleFontCodePath()) {
UChar32 character;
size_t endOfCodePoint = inlineTextItem.start();
U16_NEXT(textContent.characters16(), endOfCodePoint, textContent.length(), character);
ASSERT(endOfCodePoint > inlineTextItem.start());
return endOfCodePoint - inlineTextItem.start();
}
auto graphemeClustersIterator = NonSharedCharacterBreakIterator { textContent };
auto nextPosition = ubrk_following(graphemeClustersIterator, inlineTextItem.start());
if (nextPosition == UBRK_DONE)
return inlineTextItem.length();
return nextPosition - inlineTextItem.start();
}
TextDirection TextUtil::directionForTextContent(StringView content)
{
if (content.is8Bit())
return TextDirection::LTR;
return ubidi_getBaseDirection(content.characters16(), content.length()) == UBIDI_RTL ? TextDirection::RTL : TextDirection::LTR;
}
}
}
#endif
|