Home | History | Annotate | Download | only in css
      1 /*
      2  * Copyright (C) 1999 Lars Knoll (knoll (at) kde.org)
      3  * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
      4  *
      5  * This library is free software; you can redistribute it and/or
      6  * modify it under the terms of the GNU Library General Public
      7  * License as published by the Free Software Foundation; either
      8  * version 2 of the License, or (at your option) any later version.
      9  *
     10  * This library is distributed in the hope that it will be useful,
     11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13  * Library General Public License for more details.
     14  *
     15  * You should have received a copy of the GNU Library General Public License
     16  * along with this library; see the file COPYING.LIB.  If not, write to
     17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     18  * Boston, MA 02110-1301, USA.
     19  *
     20  */
     21 
     22 #ifndef RuleFeature_h
     23 #define RuleFeature_h
     24 
     25 #include "wtf/Forward.h"
     26 #include "wtf/HashSet.h"
     27 #include "wtf/text/AtomicStringHash.h"
     28 
     29 namespace WebCore {
     30 
     31 class StyleRule;
     32 class CSSSelector;
     33 class CSSSelectorList;
     34 
     35 struct RuleFeature {
     36     RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin)
     37         : rule(rule)
     38         , selectorIndex(selectorIndex)
     39         , hasDocumentSecurityOrigin(hasDocumentSecurityOrigin)
     40     {
     41     }
     42     StyleRule* rule;
     43     unsigned selectorIndex;
     44     bool hasDocumentSecurityOrigin;
     45 };
     46 
     47 class RuleFeatureSet {
     48 public:
     49     RuleFeatureSet()
     50         : m_usesFirstLineRules(false)
     51         , m_usesBeforeAfterRules(false)
     52     { }
     53 
     54     void add(const RuleFeatureSet&);
     55     void clear();
     56 
     57     void collectFeaturesFromSelector(const CSSSelector*);
     58 
     59     bool usesSiblingRules() const { return !siblingRules.isEmpty(); }
     60     bool usesFirstLineRules() const { return m_usesFirstLineRules; }
     61     bool usesBeforeAfterRules() const { return m_usesBeforeAfterRules; }
     62 
     63     inline bool hasSelectorForAttribute(const AtomicString& attributeName) const
     64     {
     65         ASSERT(!attributeName.isEmpty());
     66         return attrsInRules.contains(attributeName);
     67     }
     68 
     69     inline bool hasSelectorForClass(const AtomicString& classValue) const
     70     {
     71         ASSERT(!classValue.isEmpty());
     72         return classesInRules.contains(classValue);
     73     }
     74 
     75     inline bool hasSelectorForId(const AtomicString& idValue) const
     76     {
     77         ASSERT(!idValue.isEmpty());
     78         return idsInRules.contains(idValue);
     79     }
     80 
     81     HashSet<AtomicString> idsInRules;
     82     HashSet<AtomicString> classesInRules;
     83     HashSet<AtomicString> attrsInRules;
     84     Vector<RuleFeature> siblingRules;
     85     Vector<RuleFeature> uncommonAttributeRules;
     86 private:
     87     void collectFeaturesFromSelectorList(const CSSSelectorList*);
     88 
     89     bool m_usesFirstLineRules;
     90     bool m_usesBeforeAfterRules;
     91 };
     92 
     93 } // namespace WebCore
     94 
     95 #endif // RuleFeature_h
     96