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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
/*
* base class for rendering objects that can be split across lines,
* columns, or pages
*/
#include "nsSplittableFrame.h"
#include "nsContainerFrame.h"
#include "nsFieldSetFrame.h"
#include "nsIFrameInlines.h"
using namespace mozilla;
NS_QUERYFRAME_HEAD(nsSplittableFrame)
NS_QUERYFRAME_ENTRY(nsSplittableFrame)
NS_QUERYFRAME_TAIL_INHERITING(nsIFrame)
void nsSplittableFrame::Init(nsIContent* aContent, nsContainerFrame* aParent,
nsIFrame* aPrevInFlow) {
if (aPrevInFlow) {
// Hook the frame into the flow
SetPrevInFlow(aPrevInFlow);
aPrevInFlow->SetNextInFlow(this);
}
nsIFrame::Init(aContent, aParent, aPrevInFlow);
}
void nsSplittableFrame::Destroy(DestroyContext& aContext) {
// Disconnect from the flow list
if (mPrevContinuation || mNextContinuation) {
RemoveFromFlow(this);
}
// Let the base class destroy the frame
nsIFrame::Destroy(aContext);
}
nsIFrame* nsSplittableFrame::GetPrevContinuation() const {
return mPrevContinuation;
}
void nsSplittableFrame::SetPrevContinuation(nsIFrame* aFrame) {
NS_ASSERTION(!aFrame || Type() == aFrame->Type(),
"setting a prev continuation with incorrect type!");
NS_ASSERTION(!IsInPrevContinuationChain(aFrame, this),
"creating a loop in continuation chain!");
mPrevContinuation = aFrame;
RemoveStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
UpdateFirstContinuationAndFirstInFlowCache();
}
nsIFrame* nsSplittableFrame::GetNextContinuation() const {
return mNextContinuation;
}
void nsSplittableFrame::SetNextContinuation(nsIFrame* aFrame) {
NS_ASSERTION(!aFrame || Type() == aFrame->Type(),
"setting a next continuation with incorrect type!");
NS_ASSERTION(!IsInNextContinuationChain(aFrame, this),
"creating a loop in continuation chain!");
mNextContinuation = aFrame;
if (mNextContinuation) {
mNextContinuation->RemoveStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
}
}
nsIFrame* nsSplittableFrame::FirstContinuation() const {
if (mFirstContinuation) {
return mFirstContinuation;
}
// We fall back to the slow path during the frame destruction where our
// first-continuation cache was purged.
auto* firstContinuation = const_cast<nsSplittableFrame*>(this);
while (nsIFrame* prev = firstContinuation->GetPrevContinuation()) {
firstContinuation = static_cast<nsSplittableFrame*>(prev);
}
MOZ_ASSERT(firstContinuation);
return firstContinuation;
}
nsIFrame* nsSplittableFrame::LastContinuation() const {
nsSplittableFrame* lastContinuation = const_cast<nsSplittableFrame*>(this);
while (lastContinuation->mNextContinuation) {
lastContinuation =
static_cast<nsSplittableFrame*>(lastContinuation->mNextContinuation);
}
MOZ_ASSERT(lastContinuation, "post-condition failed");
return lastContinuation;
}
#ifdef DEBUG
bool nsSplittableFrame::IsInPrevContinuationChain(nsIFrame* aFrame1,
nsIFrame* aFrame2) {
int32_t iterations = 0;
while (aFrame1 && iterations < 10) {
// Bail out after 10 iterations so we don't bog down debug builds too much
if (aFrame1 == aFrame2) return true;
aFrame1 = aFrame1->GetPrevContinuation();
++iterations;
}
return false;
}
bool nsSplittableFrame::IsInNextContinuationChain(nsIFrame* aFrame1,
nsIFrame* aFrame2) {
int32_t iterations = 0;
while (aFrame1 && iterations < 10) {
// Bail out after 10 iterations so we don't bog down debug builds too much
if (aFrame1 == aFrame2) return true;
aFrame1 = aFrame1->GetNextContinuation();
++iterations;
}
return false;
}
#endif
nsIFrame* nsSplittableFrame::GetPrevInFlow() const {
return HasAnyStateBits(NS_FRAME_IS_FLUID_CONTINUATION) ? mPrevContinuation
: nullptr;
}
void nsSplittableFrame::SetPrevInFlow(nsIFrame* aFrame) {
NS_ASSERTION(!aFrame || Type() == aFrame->Type(),
"setting a prev in flow with incorrect type!");
NS_ASSERTION(!IsInPrevContinuationChain(aFrame, this),
"creating a loop in continuation chain!");
mPrevContinuation = aFrame;
AddStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
UpdateFirstContinuationAndFirstInFlowCache();
}
nsIFrame* nsSplittableFrame::GetNextInFlow() const {
return mNextContinuation && mNextContinuation->HasAnyStateBits(
NS_FRAME_IS_FLUID_CONTINUATION)
? mNextContinuation
: nullptr;
}
void nsSplittableFrame::SetNextInFlow(nsIFrame* aFrame) {
NS_ASSERTION(!aFrame || Type() == aFrame->Type(),
"setting a next in flow with incorrect type!");
NS_ASSERTION(!IsInNextContinuationChain(aFrame, this),
"creating a loop in continuation chain!");
mNextContinuation = aFrame;
if (mNextContinuation) {
mNextContinuation->AddStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
}
}
nsIFrame* nsSplittableFrame::FirstInFlow() const {
if (mFirstInFlow) {
return mFirstInFlow;
}
// We fall back to the slow path during the frame destruction where our
// first-in-flow cache was purged.
auto* firstInFlow = const_cast<nsSplittableFrame*>(this);
while (nsIFrame* prev = firstInFlow->GetPrevInFlow()) {
firstInFlow = static_cast<nsSplittableFrame*>(prev);
}
MOZ_ASSERT(firstInFlow);
return firstInFlow;
}
nsIFrame* nsSplittableFrame::LastInFlow() const {
nsSplittableFrame* lastInFlow = const_cast<nsSplittableFrame*>(this);
while (nsIFrame* next = lastInFlow->GetNextInFlow()) {
lastInFlow = static_cast<nsSplittableFrame*>(next);
}
MOZ_ASSERT(lastInFlow, "post-condition failed");
return lastInFlow;
}
void nsSplittableFrame::RemoveFromFlow(nsIFrame* aFrame) {
nsIFrame* prevContinuation = aFrame->GetPrevContinuation();
nsIFrame* nextContinuation = aFrame->GetNextContinuation();
// The new continuation is fluid only if the continuation on both sides
// of the removed frame was fluid
if (aFrame->GetPrevInFlow() && aFrame->GetNextInFlow()) {
if (prevContinuation) {
prevContinuation->SetNextInFlow(nextContinuation);
}
if (nextContinuation) {
nextContinuation->SetPrevInFlow(prevContinuation);
}
} else {
if (prevContinuation) {
prevContinuation->SetNextContinuation(nextContinuation);
}
if (nextContinuation) {
nextContinuation->SetPrevContinuation(prevContinuation);
}
}
// **Note: it is important here that we clear the Next link from aFrame
// BEFORE clearing its Prev link, because in nsContinuingTextFrame,
// SetPrevInFlow() would follow the Next pointers, wiping out the cached
// mFirstContinuation field from each following frame in the list.
aFrame->SetNextInFlow(nullptr);
aFrame->SetPrevInFlow(nullptr);
}
void nsSplittableFrame::UpdateFirstContinuationAndFirstInFlowCache() {
nsIFrame* oldCachedFirstContinuation = mFirstContinuation;
if (nsIFrame* prevContinuation = GetPrevContinuation()) {
nsIFrame* newFirstContinuation = prevContinuation->FirstContinuation();
if (oldCachedFirstContinuation != newFirstContinuation) {
// Update the first-continuation cache for us and our next-continuations.
for (nsSplittableFrame* f = this; f;
f = reinterpret_cast<nsSplittableFrame*>(f->GetNextContinuation())) {
f->mFirstContinuation = newFirstContinuation;
}
}
} else {
// We become the new first-continuation due to our prev-continuation being
// removed.
if (oldCachedFirstContinuation) {
// It's tempting to update the first-continuation cache for our
// next-continuations here, but that would result in overall O(n^2)
// behavior when a frame list is destroyed from the front. To avoid that
// pathological behavior, we simply purge the cached values.
for (nsSplittableFrame* f = this; f;
f = reinterpret_cast<nsSplittableFrame*>(f->GetNextContinuation())) {
f->mFirstContinuation = nullptr;
}
}
}
nsIFrame* oldCachedFirstInFlow = mFirstInFlow;
if (nsIFrame* prevInFlow = GetPrevInFlow()) {
nsIFrame* newFirstInFlow = prevInFlow->FirstInFlow();
if (oldCachedFirstInFlow != newFirstInFlow) {
// Update the first-in-flow cache for us and our next-in-flows.
for (nsSplittableFrame* f = this; f;
f = reinterpret_cast<nsSplittableFrame*>(f->GetNextInFlow())) {
f->mFirstInFlow = newFirstInFlow;
}
}
} else {
// We become the new first-in-flow due to our prev-in-flow being removed.
if (oldCachedFirstInFlow) {
// It's tempting to update the first-in-flow cache for our
// next-in-flows here, but that would result in overall O(n^2)
// behavior when a frame list is destroyed from the front. To avoid that
// pathological behavior, we simply purge the cached values.
for (nsSplittableFrame* f = this; f;
f = reinterpret_cast<nsSplittableFrame*>(f->GetNextInFlow())) {
f->mFirstInFlow = nullptr;
}
}
}
}
NS_DECLARE_FRAME_PROPERTY_SMALL_VALUE(ConsumedBSizeProperty, nscoord);
nscoord nsSplittableFrame::CalcAndCacheConsumedBSize() {
nsIFrame* prev = GetPrevContinuation();
if (!prev) {
return 0;
}
const auto wm = GetWritingMode();
nscoord bSize = 0;
for (; prev; prev = prev->GetPrevContinuation()) {
if (prev->IsTrueOverflowContainer()) {
// Overflow containers might not get reflowed, and they have no bSize
// anyways.
continue;
}
bSize += prev->ContentBSize(wm);
bool found = false;
nscoord consumed = prev->GetProperty(ConsumedBSizeProperty(), &found);
if (found) {
bSize += consumed;
break;
}
MOZ_ASSERT(!prev->GetPrevContinuation(),
"Property should always be set on prev continuation if not "
"the first continuation");
}
SetProperty(ConsumedBSizeProperty(), bSize);
return bSize;
}
nscoord nsSplittableFrame::GetEffectiveComputedBSize(
const ReflowInput& aReflowInput, nscoord aConsumedBSize) const {
nscoord bSize = aReflowInput.ComputedBSize();
if (bSize == NS_UNCONSTRAINEDSIZE) {
return NS_UNCONSTRAINEDSIZE;
}
bSize -= aConsumedBSize;
// nsFieldSetFrame's inner frames are special since some of their content-box
// BSize may be consumed by positioning it below the legend. So we always
// report zero for true overflow containers here.
// XXXmats: hmm, can we fix this so that the sizes actually adds up instead?
if (IsTrueOverflowContainer() &&
Style()->GetPseudoType() == PseudoStyleType::fieldsetContent) {
for (nsFieldSetFrame* fieldset = do_QueryFrame(GetParent()); fieldset;
fieldset = static_cast<nsFieldSetFrame*>(fieldset->GetPrevInFlow())) {
bSize -= fieldset->LegendSpace();
}
}
// We may have stretched the frame beyond its computed height. Oh well.
return std::max(0, bSize);
}
LogicalSides nsSplittableFrame::GetBlockLevelLogicalSkipSides(
bool aAfterReflow) const {
LogicalSides skip(mWritingMode);
if (MOZ_UNLIKELY(IsTrueOverflowContainer())) {
skip += LogicalSides(mWritingMode, LogicalSides::BBoth);
return skip;
}
if (MOZ_UNLIKELY(StyleBorder()->mBoxDecorationBreak ==
StyleBoxDecorationBreak::Clone)) {
return skip;
}
if (GetPrevContinuation()) {
skip += LogicalSide::BStart;
}
// Always skip block-end side if we have a *later* sibling across column-span
// split.
if (HasColumnSpanSiblings()) {
skip += LogicalSide::BEnd;
}
if (aAfterReflow) {
nsIFrame* nif = GetNextContinuation();
if (nif && !nif->IsTrueOverflowContainer()) {
skip += LogicalSide::BEnd;
}
}
return skip;
}
|