| /* |
| * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013, 2014 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. |
| * |
| */ |
| |
| #pragma once |
| |
| #include "MediaQueryEvaluator.h" |
| #include "SelectorChecker.h" |
| #include "StyleResolver.h" |
| #include <memory> |
| #include <wtf/RefPtr.h> |
| #include <wtf/Vector.h> |
| |
| namespace WebCore { |
| |
| class DocumentRuleSets; |
| class MatchRequest; |
| class RuleData; |
| class RuleSet; |
| class SelectorFilter; |
| |
| struct MatchedRule { |
| const RuleData* ruleData; |
| unsigned specificity; |
| Style::ScopeOrdinal styleScopeOrdinal; |
| }; |
| |
| class ElementRuleCollector { |
| public: |
| ElementRuleCollector(const Element&, const DocumentRuleSets&, const SelectorFilter*); |
| ElementRuleCollector(const Element&, const RuleSet& authorStyle, const SelectorFilter*); |
| |
| void matchAllRules(bool matchAuthorAndUserStyles, bool includeSMILProperties); |
| void matchUARules(); |
| void matchAuthorRules(bool includeEmptyRules); |
| void matchUserRules(bool includeEmptyRules); |
| |
| void setMode(SelectorChecker::Mode mode) { m_mode = mode; } |
| void setPseudoStyleRequest(const PseudoStyleRequest& request) { m_pseudoStyleRequest = request; } |
| void setMedium(const MediaQueryEvaluator* medium) { m_isPrintStyle = medium->mediaTypeMatchSpecific("print"); } |
| |
| bool hasAnyMatchingRules(const RuleSet*); |
| |
| StyleResolver::MatchResult& matchedResult(); |
| const Vector<RefPtr<StyleRule>>& matchedRuleList() const; |
| |
| bool hasMatchedRules() const { return !m_matchedRules.isEmpty(); } |
| void clearMatchedRules(); |
| |
| const PseudoIdSet& matchedPseudoElementIds() const { return m_matchedPseudoElementIds; } |
| const Style::Relations& styleRelations() const { return m_styleRelations; } |
| bool didMatchUncommonAttributeSelector() const { return m_didMatchUncommonAttributeSelector; } |
| |
| private: |
| void addElementStyleProperties(const StyleProperties*, bool isCacheable = true); |
| |
| void matchUARules(const RuleSet&); |
| void matchAuthorShadowPseudoElementRules(bool includeEmptyRules, StyleResolver::RuleRange&); |
| void matchHostPseudoClassRules(bool includeEmptyRules, StyleResolver::RuleRange&); |
| void matchSlottedPseudoElementRules(bool includeEmptyRules, StyleResolver::RuleRange&); |
| void matchPartPseudoElementRules(bool includeEmptyRules, StyleResolver::RuleRange&); |
| void matchPartPseudoElementRulesForScope(const ShadowRoot& scopeShadowRoot, bool includeEmptyRules, StyleResolver::RuleRange&); |
| |
| void collectMatchingShadowPseudoElementRules(const MatchRequest&, StyleResolver::RuleRange&); |
| std::unique_ptr<RuleSet::RuleDataVector> collectSlottedPseudoElementRulesForSlot(bool includeEmptyRules); |
| |
| void collectMatchingRules(const MatchRequest&, StyleResolver::RuleRange&); |
| void collectMatchingRulesForList(const RuleSet::RuleDataVector*, const MatchRequest&, StyleResolver::RuleRange&); |
| bool ruleMatches(const RuleData&, unsigned &specificity); |
| |
| void sortMatchedRules(); |
| void sortAndTransferMatchedRules(); |
| |
| void addMatchedRule(const RuleData&, unsigned specificity, Style::ScopeOrdinal, StyleResolver::RuleRange&); |
| |
| const Element& element() const { return m_element.get(); } |
| |
| const Ref<const Element> m_element; |
| const RuleSet& m_authorStyle; |
| const RuleSet* m_userStyle { nullptr }; |
| const RuleSet* m_userAgentMediaQueryStyle { nullptr }; |
| const SelectorFilter* m_selectorFilter { nullptr }; |
| |
| bool m_isPrintStyle { false }; |
| PseudoStyleRequest m_pseudoStyleRequest { PseudoId::None }; |
| SelectorChecker::Mode m_mode { SelectorChecker::Mode::ResolvingStyle }; |
| bool m_isMatchingSlottedPseudoElements { false }; |
| bool m_isMatchingHostPseudoClass { false }; |
| RefPtr<const Element> m_shadowHostInPartRuleScope; |
| Vector<std::unique_ptr<RuleSet::RuleDataVector>> m_keepAliveSlottedPseudoElementRules; |
| |
| Vector<MatchedRule, 64> m_matchedRules; |
| |
| // Output. |
| Vector<RefPtr<StyleRule>> m_matchedRuleList; |
| bool m_didMatchUncommonAttributeSelector { false }; |
| StyleResolver::MatchResult m_result; |
| Style::Relations m_styleRelations; |
| PseudoIdSet m_matchedPseudoElementIds; |
| }; |
| |
| } // namespace WebCore |