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
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
* All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef StyleResolver_h
#define StyleResolver_h
#include "core/CoreExport.h"
#include "core/animation/PropertyHandle.h"
#include "core/css/ElementRuleCollector.h"
#include "core/css/PseudoStyleRequest.h"
#include "core/css/SelectorChecker.h"
#include "core/css/SelectorFilter.h"
#include "core/css/resolver/CSSPropertyPriority.h"
#include "core/css/resolver/MatchedPropertiesCache.h"
#include "core/css/resolver/StyleBuilder.h"
#include "platform/heap/Handle.h"
#include "wtf/Deque.h"
#include "wtf/HashMap.h"
#include "wtf/HashSet.h"
#include "wtf/ListHashSet.h"
#include "wtf/RefPtr.h"
#include "wtf/Vector.h"
namespace blink {
class AnimatableValue;
class CSSRuleList;
class CSSValue;
class Document;
class Element;
class Interpolation;
class MatchResult;
class RuleSet;
class StylePropertySet;
class StyleRuleUsageTracker;
enum StyleSharingBehavior {
AllowStyleSharing,
DisallowStyleSharing,
};
enum RuleMatchingBehavior { MatchAllRules, MatchAllRulesExcludingSMIL };
const unsigned styleSharingListSize = 15;
const unsigned styleSharingMaxDepth = 32;
using StyleSharingList = HeapDeque<Member<Element>, styleSharingListSize>;
using ActiveInterpolationsMap =
HashMap<PropertyHandle, Vector<RefPtr<Interpolation>, 1>>;
// This class selects a ComputedStyle for a given element based on a collection
// of stylesheets.
class CORE_EXPORT StyleResolver final
: public GarbageCollectedFinalized<StyleResolver> {
WTF_MAKE_NONCOPYABLE(StyleResolver);
public:
static StyleResolver* create(Document& document) {
return new StyleResolver(document);
}
~StyleResolver();
void dispose();
PassRefPtr<ComputedStyle> styleForElement(
Element*,
const ComputedStyle* parentStyle = 0,
StyleSharingBehavior = AllowStyleSharing,
RuleMatchingBehavior = MatchAllRules);
static PassRefPtr<AnimatableValue> createAnimatableValueSnapshot(
Element&,
const ComputedStyle& baseStyle,
const ComputedStyle* parentStyle,
CSSPropertyID,
const CSSValue*);
PassRefPtr<ComputedStyle> pseudoStyleForElement(
Element*,
const PseudoStyleRequest&,
const ComputedStyle* parentStyle);
PassRefPtr<ComputedStyle> styleForPage(int pageIndex);
PassRefPtr<ComputedStyle> styleForText(Text*);
static PassRefPtr<ComputedStyle> styleForDocument(Document&);
// TODO(esprehn): StyleResolver should probably not contain tree walking
// state, instead we should pass a context object during recalcStyle.
SelectorFilter& selectorFilter() { return m_selectorFilter; }
StyleRuleKeyframes* findKeyframesRule(const Element*,
const AtomicString& animationName);
// These methods will give back the set of rules that matched for a given
// element (or a pseudo-element).
enum CSSRuleFilter {
UAAndUserCSSRules = 1 << 1,
AuthorCSSRules = 1 << 2,
EmptyCSSRules = 1 << 3,
CrossOriginCSSRules = 1 << 4,
AllButEmptyCSSRules =
UAAndUserCSSRules | AuthorCSSRules | CrossOriginCSSRules,
AllCSSRules = AllButEmptyCSSRules | EmptyCSSRules,
};
CSSRuleList* cssRulesForElement(
Element*,
unsigned rulesToInclude = AllButEmptyCSSRules);
CSSRuleList* pseudoCSSRulesForElement(
Element*,
PseudoId,
unsigned rulesToInclude = AllButEmptyCSSRules);
StyleRuleList* styleRulesForElement(Element*, unsigned rulesToInclude);
void computeFont(ComputedStyle*, const StylePropertySet&);
// FIXME: Rename to reflect the purpose, like didChangeFontSize or something.
void invalidateMatchedPropertiesCache();
void setResizedForViewportUnits();
void clearResizedForViewportUnits();
// Exposed for ComputedStyle::isStyleAvilable().
static ComputedStyle* styleNotYetAvailable() {
return s_styleNotYetAvailable;
}
StyleSharingList& styleSharingList();
void addToStyleSharingList(Element&);
void clearStyleSharingList();
void increaseStyleSharingDepth() { ++m_styleSharingDepth; }
void decreaseStyleSharingDepth() { --m_styleSharingDepth; }
PseudoElement* createPseudoElementIfNeeded(Element& parent, PseudoId);
void setRuleUsageTracker(StyleRuleUsageTracker*);
void updateMediaType();
DECLARE_TRACE();
private:
explicit StyleResolver(Document&);
PassRefPtr<ComputedStyle> initialStyleForElement();
// FIXME: This should probably go away, folded into FontBuilder.
void updateFont(StyleResolverState&);
void addMatchedRulesToTracker(const ElementRuleCollector&);
void loadPendingResources(StyleResolverState&);
void adjustComputedStyle(StyleResolverState&, Element*);
void collectPseudoRulesForElement(const Element&,
ElementRuleCollector&,
PseudoId,
unsigned rulesToInclude);
void matchRuleSet(ElementRuleCollector&, RuleSet*);
void matchUARules(ElementRuleCollector&);
void matchScopedRules(const Element&, ElementRuleCollector&);
void matchAuthorRules(const Element&, ElementRuleCollector&);
void matchAuthorRulesV0(const Element&, ElementRuleCollector&);
void matchAllRules(StyleResolverState&,
ElementRuleCollector&,
bool includeSMILProperties);
void collectTreeBoundaryCrossingRulesV0CascadeOrder(const Element&,
ElementRuleCollector&);
struct CacheSuccess {
STACK_ALLOCATED();
bool isInheritedCacheHit;
bool isNonInheritedCacheHit;
unsigned cacheHash;
Member<const CachedMatchedProperties> cachedMatchedProperties;
CacheSuccess(bool isInheritedCacheHit,
bool isNonInheritedCacheHit,
unsigned cacheHash,
const CachedMatchedProperties* cachedMatchedProperties)
: isInheritedCacheHit(isInheritedCacheHit),
isNonInheritedCacheHit(isNonInheritedCacheHit),
cacheHash(cacheHash),
cachedMatchedProperties(cachedMatchedProperties) {}
bool isFullCacheHit() const {
return isInheritedCacheHit && isNonInheritedCacheHit;
}
bool shouldApplyInheritedOnly() const {
return isNonInheritedCacheHit && !isInheritedCacheHit;
}
void setFailed() {
isInheritedCacheHit = false;
isNonInheritedCacheHit = false;
}
};
// These flags indicate whether an apply pass for a given CSSPropertyPriority
// and isImportant is required.
class NeedsApplyPass {
public:
bool get(CSSPropertyPriority priority, bool isImportant) const {
return m_flags[getIndex(priority, isImportant)];
}
void set(CSSPropertyPriority priority, bool isImportant) {
m_flags[getIndex(priority, isImportant)] = true;
}
private:
static size_t getIndex(CSSPropertyPriority priority, bool isImportant) {
DCHECK(priority >= 0 && priority < PropertyPriorityCount);
return priority * 2 + isImportant;
}
bool m_flags[PropertyPriorityCount * 2] = {0};
};
enum ShouldUpdateNeedsApplyPass {
CheckNeedsApplyPass = false,
UpdateNeedsApplyPass = true,
};
void applyMatchedPropertiesAndCustomPropertyAnimations(
StyleResolverState&,
const MatchResult&,
const Element* animatingElement);
CacheSuccess applyMatchedCache(StyleResolverState&, const MatchResult&);
void applyCustomProperties(StyleResolverState&,
const MatchResult&,
bool applyAnimations,
const CacheSuccess&,
NeedsApplyPass&);
void applyMatchedAnimationProperties(StyleResolverState&,
const MatchResult&,
const CacheSuccess&,
NeedsApplyPass&);
void applyMatchedStandardProperties(StyleResolverState&,
const MatchResult&,
const CacheSuccess&,
NeedsApplyPass&);
void calculateAnimationUpdate(StyleResolverState&,
const Element* animatingElement);
bool applyAnimatedStandardProperties(StyleResolverState&, const Element*);
void applyCallbackSelectors(StyleResolverState&);
template <CSSPropertyPriority priority, ShouldUpdateNeedsApplyPass>
void applyMatchedProperties(StyleResolverState&,
const MatchedPropertiesRange&,
bool important,
bool inheritedOnly,
NeedsApplyPass&);
template <CSSPropertyPriority priority, ShouldUpdateNeedsApplyPass>
void applyProperties(StyleResolverState&,
const StylePropertySet* properties,
bool isImportant,
bool inheritedOnly,
NeedsApplyPass&,
PropertyWhitelistType = PropertyWhitelistNone);
template <CSSPropertyPriority priority>
void applyAnimatedProperties(StyleResolverState&,
const ActiveInterpolationsMap&);
template <CSSPropertyPriority priority>
void applyAllProperty(StyleResolverState&,
const CSSValue&,
bool inheritedOnly,
PropertyWhitelistType);
template <CSSPropertyPriority priority, ShouldUpdateNeedsApplyPass>
void applyPropertiesForApplyAtRule(StyleResolverState&,
const CSSValue&,
bool isImportant,
NeedsApplyPass&,
PropertyWhitelistType);
bool pseudoStyleForElementInternal(Element&,
const PseudoStyleRequest&,
const ComputedStyle* parentStyle,
StyleResolverState&);
bool hasAuthorBackground(const StyleResolverState&);
bool hasAuthorBorder(const StyleResolverState&);
PseudoElement* createPseudoElement(Element* parent, PseudoId);
Document& document() const { return *m_document; }
bool wasViewportResized() const { return m_wasViewportResized; }
static ComputedStyle* s_styleNotYetAvailable;
MatchedPropertiesCache m_matchedPropertiesCache;
Member<Document> m_document;
SelectorFilter m_selectorFilter;
Member<StyleRuleUsageTracker> m_tracker;
bool m_printMediaType = false;
bool m_wasViewportResized = false;
unsigned m_styleSharingDepth = 0;
HeapVector<Member<StyleSharingList>, styleSharingMaxDepth>
m_styleSharingLists;
};
} // namespace blink
#endif // StyleResolver_h
|