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
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INK_OVERFLOW_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INK_OVERFLOW_H_
#include <array>
#include <optional>
#include "base/check_op.h"
#include "base/dcheck_is_on.h"
#include "build/build_config.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/editing/markers/document_marker.h"
#include "third_party/blink/renderer/core/layout/geometry/physical_rect.h"
#include "third_party/blink/renderer/core/layout/inline/text_offset_range.h"
#include "third_party/blink/renderer/platform/text/writing_mode.h"
namespace blink {
class AffineTransform;
class AppliedTextDecoration;
class ComputedStyle;
class Font;
class FragmentItem;
class InlineCursor;
class InlinePaintContext;
class ShadowList;
class Text;
struct LogicalRect;
struct TextFragmentPaintInfo;
// Represents an ink-overflow rectangle. Used for:
// - Objects without children, such as text runs.
// - Objects that has only self or contents ink-overflow.
struct SingleInkOverflow {
USING_FAST_MALLOC(SingleInkOverflow);
public:
explicit SingleInkOverflow(const PhysicalRect& ink_overflow)
: ink_overflow(ink_overflow) {}
PhysicalRect ink_overflow;
};
// Represents two ink-overflow rectangles, to keep self and contents ink
// overflow separately. Used for objects with children, such as boxes.
struct ContainerInkOverflow : SingleInkOverflow {
USING_FAST_MALLOC(ContainerInkOverflow);
public:
ContainerInkOverflow(const PhysicalRect& self, const PhysicalRect& contents)
: SingleInkOverflow(self), contents_ink_overflow(contents) {}
PhysicalRect SelfAndContentsInkOverflow() const {
return UnionRect(ink_overflow, contents_ink_overflow);
}
PhysicalRect contents_ink_overflow;
};
// Represents multiple types of ink overflow in a size of a pointer.
//
// When no overflow, or when overflow is small, this class does not allocate
// memory.
//
// In order to keep the instance small, callers must keep |Type| separately.
// |Set*| functions return |Type|, which callers must keep and pass to following
// function calls. Functions have DCHECKs to ensure callers pass the correct
// |Type|.
class CORE_EXPORT InkOverflow {
public:
enum class Type {
kNotSet,
kInvalidated,
kNone,
kSmallSelf,
kSelf,
kSmallContents,
kContents,
kSelfAndContents
// When adding values, make sure |FragmentItem| has enough storage.
};
constexpr static int kTypeBits = 3;
InkOverflow() = default;
#if DCHECK_IS_ON()
~InkOverflow();
#endif
// Regular copy is prohibited because |Type| is outside of the instance. Use
// functions with |Type| below instead.
InkOverflow(const InkOverflow&) = delete;
InkOverflow& operator=(const InkOverflow&) = delete;
// To copy/move, |Type| is required.
InkOverflow(Type source_type, const InkOverflow& source);
InkOverflow(Type source_type, InkOverflow&& source);
// Get ink overflow of various types.
PhysicalRect Self(Type type, const PhysicalSize& size) const;
PhysicalRect Contents(Type type, const PhysicalSize& size) const;
PhysicalRect SelfAndContents(Type type, const PhysicalSize& size) const;
// Reset to |kNone|.
Type Reset(Type type) { return Reset(type, Type::kNone); }
// Reset to |kInvalidated|.
Type Invalidate(Type type) { return Reset(type, Type::kInvalidated); }
// Set self ink overflow rect.
// If |this| had contents ink overflow, it is cleared.
Type SetSelf(Type type, const PhysicalRect& self, const PhysicalSize& size);
// Set contents ink overflow rect.
// If |this| had self ink overflow, it is cleared.
Type SetContents(Type type,
const PhysicalRect& contents,
const PhysicalSize& size);
// Set self and contents ink overflow rects.
Type Set(Type type,
const PhysicalRect& self,
const PhysicalRect& contents,
const PhysicalSize& size);
// Compute and set ink overflow for text.
Type SetTextInkOverflow(Type type,
const InlineCursor& cursor,
const TextFragmentPaintInfo& text_info,
const ComputedStyle& style,
const PhysicalRect& rect_in_container,
const InlinePaintContext* inline_context,
PhysicalRect* ink_overflow_out);
// Compute and set ink overflow for SVG text.
// |rect| represents scaled rectangle, and |*ink_overflow_out| will store
// unscaled rectangle.
Type SetSvgTextInkOverflow(Type type,
const InlineCursor& cursor,
const TextFragmentPaintInfo& text_info,
const ComputedStyle& style,
const Font& scaled_font,
const gfx::RectF& rect,
float scaling_factor,
float length_adjust_scale,
const AffineTransform& transform,
PhysicalRect* ink_overflow_out);
static std::optional<PhysicalRect> ComputeTextInkOverflow(
const InlineCursor& cursor,
const TextFragmentPaintInfo& text_info,
const ComputedStyle& style,
const Font& scaled_font,
const PhysicalRect& rect_in_container,
const InlinePaintContext* inline_context);
// Returns ink-overflow with emphasis mark overflow in logical direction.
// |size| is a size of text item, e.g. |FragmentItem::Size()|.
// Note: |style| should have emphasis mark and |ink_overflow| should be in
// logical direction.
static LogicalRect ComputeEmphasisMarkOverflow(
const ComputedStyle& style,
const PhysicalSize& size,
const LogicalRect& ink_overflow);
// Expands the given overflow to account for shadows.
static void ExpandForShadowOverflow(LogicalRect& ink_overflow,
const ShadowList& text_shadow,
const WritingMode writing_mode);
// Returns ink-overflow with text decoration overflow in logical direction.
// |inline_context| may be null.
// Note: |ink_overflow| should be in logical direction.
// Returns ink-overflow with text decoration, markers and highlights
// overflow in the logical direction.
static LogicalRect ComputeDecorationOverflow(
const InlineCursor& cursor,
const ComputedStyle& style,
const Font& scaled_font,
const PhysicalOffset& container_offset,
const LogicalRect& ink_overflow,
const InlinePaintContext* inline_context,
const WritingMode writing_mode);
#if DCHECK_IS_ON()
struct ReadUnsetAsNoneScope {
STACK_ALLOCATED();
public:
ReadUnsetAsNoneScope() { ++read_unset_as_none_; }
~ReadUnsetAsNoneScope() { --read_unset_as_none_; }
static bool IsActive() { return read_unset_as_none_; }
};
#endif
private:
static LogicalRect ComputeAppliedDecorationOverflow(
const ComputedStyle& style,
const Font& scaled_font,
const PhysicalOffset& offset_in_container,
const LogicalRect& ink_overflow,
const InlinePaintContext* inline_context,
const AppliedTextDecoration* decoration_override = nullptr);
// For all markers but custom highlights. i.e. those with only one
// potential style for the type, regardless of which marker it is.
static LogicalRect ComputeMarkerOverflow(
const DocumentMarkerVector& markers,
const DocumentMarker::MarkerType type,
const FragmentItem* fragment_item,
const TextOffsetRange& fragment_dom_offsets,
Text* node,
const ComputedStyle& style,
const Font& scaled_font,
const PhysicalOffset& offset_in_container,
const LogicalRect& ink_overflow,
const InlinePaintContext* inline_context,
const WritingMode writing_mode);
static LogicalRect ComputeCustomHighlightOverflow(
const DocumentMarkerVector& markers,
const FragmentItem* fragment_item,
const TextOffsetRange& fragment_dom_offsets,
Text* text_node,
const ComputedStyle& style,
const Font& scaled_font,
const PhysicalOffset& offset_in_container,
const LogicalRect& ink_overflow,
const InlinePaintContext* inline_context);
PhysicalRect FromOutsets(const PhysicalSize& size) const;
void CheckType(Type type) const;
Type SetType(Type type);
Type Reset(Type type, Type new_type);
bool TrySetOutsets(Type type,
LayoutUnit left_outset,
LayoutUnit top_outset,
LayoutUnit right_outset,
LayoutUnit bottom_outset);
Type SetSingle(Type type,
const PhysicalRect& ink_overflow,
const PhysicalSize& size,
Type new_type,
Type new_small_type);
// |SmallRawValue| can store small values without allocating memory.
// |LayoutUnit| uses 6 bits (|kLayoutUnitFractionalBits|) for fraction.
#if defined(ARCH_CPU_32_BITS)
// |uint8_t| can represent 0 to (4 - 1/64) using 2 bits for integer.
using SmallRawValue = uint8_t;
#elif defined(ARCH_CPU_64_BITS)
// |uint16_t| can represent 0 to (1024 - 1/64) using 10 bits for integer.
using SmallRawValue = uint16_t;
#else
#error Only support 32/64 bits.
#endif
union {
// When only self or contents overflow.
SingleInkOverflow* single_;
// When both self and contents overflow.
ContainerInkOverflow* container_;
// Outsets in small |LayoutUnit|s when overflow is small.
std::array<SmallRawValue, 4> outsets_;
static_assert(sizeof(outsets_) == sizeof(single_),
"outsets should be the size of a pointer");
};
#if DCHECK_IS_ON()
Type type_ = Type::kNotSet;
static unsigned read_unset_as_none_;
#endif
};
#if DCHECK_IS_ON()
inline void InkOverflow::CheckType(Type type) const {
DCHECK_EQ(type, type_);
}
inline InkOverflow::Type InkOverflow::SetType(Type type) {
type_ = type;
return type;
}
#else
inline void InkOverflow::CheckType(Type type) const {}
inline InkOverflow::Type InkOverflow::SetType(Type type) {
return type;
}
#endif
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INK_OVERFLOW_H_
|