gecko-dev/layout/xul/tree/nsTreeStyleCache.cpp
Xidorn Quan 4cf9aed667 Bug 1449400 part 5 - Remove StyleSetHandle. r=emilio
This patch basically does:
* remove StyleSetHandle and its corresponding files
* revisit #includes of related header files and change correspondingly
* change nsIPresShell::mStyleSet to be UniquePtr<ServoStyleSet>
* change the creating path of ServoStyleSet to pass UniquePtr
* change other mentions of StyleSetHandle to ServoStyleSet*
* remove AsServo() calls on ServoStyleSet

Some unfortunate bits:
* some methods of (Servo)StyleSet only accepts ServoStyleSheet while
  many places call into the methods with StyleSheet, so there are many
  ->AsServo() added to sheets

MozReview-Commit-ID: K4zYnuhOurA

--HG--
extra : rebase_source : 459e8efeb171adad089d94272e143e8c244bd279
extra : source : 65ba2f174fcf7dba4e59c00ee8908b1bd0820a48
2018-03-29 22:15:46 +11:00

98 lines
3.0 KiB
C++

/* -*- 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/. */
#include "nsTreeStyleCache.h"
#include "mozilla/dom/Element.h"
#include "mozilla/ServoStyleSet.h"
using namespace mozilla;
nsTreeStyleCache::Transition::Transition(DFAState aState, nsAtom* aSymbol)
: mState(aState), mInputSymbol(aSymbol)
{
}
bool
nsTreeStyleCache::Transition::operator==(const Transition& aOther) const
{
return aOther.mState == mState && aOther.mInputSymbol == mInputSymbol;
}
uint32_t
nsTreeStyleCache::Transition::Hash() const
{
// Make a 32-bit integer that combines the low-order 16 bits of the state and the input symbol.
uint32_t hb = mState << 16;
uint32_t lb = (NS_PTR_TO_UINT32(mInputSymbol.get()) << 16) >> 16;
return hb+lb;
}
// The ComputedStyle cache impl
ComputedStyle*
nsTreeStyleCache::GetComputedStyle(nsPresContext* aPresContext,
nsIContent* aContent,
ComputedStyle* aStyle,
nsICSSAnonBoxPseudo* aPseudoElement,
const AtomArray & aInputWord)
{
MOZ_ASSERT(nsCSSAnonBoxes::IsTreePseudoElement(aPseudoElement));
uint32_t count = aInputWord.Length();
// Go ahead and init the transition table.
if (!mTransitionTable) {
// Automatic miss. Build the table
mTransitionTable = new TransitionTable();
}
// The first transition is always made off the supplied pseudo-element.
Transition transition(0, aPseudoElement);
DFAState currState = mTransitionTable->Get(transition);
if (!currState) {
// We had a miss. Make a new state and add it to our hash.
currState = mNextState;
mNextState++;
mTransitionTable->Put(transition, currState);
}
for (uint32_t i = 0; i < count; i++) {
Transition transition(currState, aInputWord[i]);
currState = mTransitionTable->Get(transition);
if (!currState) {
// We had a miss. Make a new state and add it to our hash.
currState = mNextState;
mNextState++;
mTransitionTable->Put(transition, currState);
}
}
// We're in a final state.
// Look up our ComputedStyle for this state.
ComputedStyle* result = nullptr;
if (mCache) {
result = mCache->GetWeak(currState);
}
if (!result) {
// We missed the cache. Resolve this pseudo-style.
RefPtr<ComputedStyle> newResult = aPresContext->StyleSet()->
ResolveXULTreePseudoStyle(aContent->AsElement(),
aPseudoElement, aStyle, aInputWord);
// Put the ComputedStyle in our table, transferring the owning reference to the table.
if (!mCache) {
mCache = new ComputedStyleCache();
}
result = newResult.get();
mCache->Put(currState, newResult.forget());
}
return result;
}