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
|
/*
* (C) 1999-2003 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2012 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 "CSSParserContext.h"
#include <optional>
#include <wtf/CheckedRef.h>
#include <wtf/Function.h>
#include <wtf/HashMap.h>
#include <wtf/RefCountedAndCanMakeWeakPtr.h>
#include <wtf/URL.h>
#include <wtf/Vector.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/AtomStringHash.h>
namespace WebCore {
class CSSStyleSheet;
class CachedCSSStyleSheet;
class CachedResource;
class Document;
class FrameLoader;
class Node;
class SecurityOrigin;
class StyleRuleBase;
class StyleRuleImport;
class StyleRuleLayer;
class StyleRuleNamespace;
enum class CachePolicy : uint8_t;
class StyleSheetContents final : public RefCountedAndCanMakeWeakPtr<StyleSheetContents> {
public:
static Ref<StyleSheetContents> create(const CSSParserContext& context = CSSParserContext(HTMLStandardMode))
{
return adoptRef(*new StyleSheetContents(nullptr, String(), context));
}
static Ref<StyleSheetContents> create(const String& originalURL, const CSSParserContext& context)
{
return adoptRef(*new StyleSheetContents(nullptr, originalURL, context));
}
static Ref<StyleSheetContents> create(StyleRuleImport* ownerRule, const String& originalURL, const CSSParserContext& context)
{
return adoptRef(*new StyleSheetContents(ownerRule, originalURL, context));
}
WEBCORE_EXPORT ~StyleSheetContents();
const CSSParserContext& parserContext() const { return m_parserContext; }
const AtomString& defaultNamespace() { return m_defaultNamespace; }
const AtomString& namespaceURIFromPrefix(const AtomString& prefix);
bool parseAuthorStyleSheet(const CachedCSSStyleSheet*, const SecurityOrigin*);
WEBCORE_EXPORT bool parseString(const String&);
bool isCacheable() const;
bool isCacheableWithNoBaseURLDependency() const;
bool isLoading() const;
bool subresourcesAllowReuse(CachePolicy, FrameLoader&) const;
WEBCORE_EXPORT bool isLoadingSubresources() const;
void checkLoaded();
void startLoadingDynamicSheet();
StyleSheetContents* rootStyleSheet() const;
Node* singleOwnerNode() const;
Document* singleOwnerDocument() const;
ASCIILiteral charset() const { return m_parserContext.charset; }
bool loadCompleted() const { return m_loadCompleted; }
bool mayDependOnBaseURL() const;
bool traverseRules(NOESCAPE const Function<bool(const StyleRuleBase&)>& handler) const;
bool traverseSubresources(NOESCAPE const Function<bool(const CachedResource&)>& handler) const;
void setIsUserStyleSheet(bool b) { m_isUserStyleSheet = b; }
bool isUserStyleSheet() const { return m_isUserStyleSheet; }
void setHasSyntacticallyValidCSSHeader(bool b) { m_hasSyntacticallyValidCSSHeader = b; }
bool hasSyntacticallyValidCSSHeader() const { return m_hasSyntacticallyValidCSSHeader; }
void parserAddNamespace(const AtomString& prefix, const AtomString& uri);
void parserAppendRule(Ref<StyleRuleBase>&&);
void parserSetEncodingFromCharsetRule(const String& encoding);
void parserSetUsesStyleBasedEditability() { m_usesStyleBasedEditability = true; }
void clearRules();
String encodingFromCharsetRule() const { return m_encodingFromCharsetRule; }
const Vector<Ref<StyleRuleLayer>>& layerRulesBeforeImportRules() const { return m_layerRulesBeforeImportRules; }
const Vector<Ref<StyleRuleImport>>& importRules() const { return m_importRules; }
const Vector<Ref<StyleRuleNamespace>>& namespaceRules() const { return m_namespaceRules; }
const Vector<Ref<StyleRuleBase>>& childRules() const { return m_childRules; }
void notifyLoadedSheet(const CachedCSSStyleSheet*);
StyleSheetContents* parentStyleSheet() const;
StyleRuleImport* ownerRule() const { return m_ownerRule; }
void clearOwnerRule() { m_ownerRule = nullptr; }
// Note that href is the URL that started the redirect chain that led to
// this style sheet. This property probably isn't useful for much except
// the JavaScript binding (which needs to use this value for security).
String originalURL() const { return m_originalURL; }
const URL& baseURL() const { return m_parserContext.baseURL; }
bool isEmpty() const { return !ruleCount(); }
unsigned ruleCount() const;
StyleRuleBase* ruleAt(unsigned index) const;
bool usesStyleBasedEditability() const { return m_usesStyleBasedEditability; }
unsigned estimatedSizeInBytes() const;
bool wrapperInsertRule(Ref<StyleRuleBase>&&, unsigned index);
bool wrapperDeleteRule(unsigned index);
Ref<StyleSheetContents> copy() const { return adoptRef(*new StyleSheetContents(*this)); }
void registerClient(CSSStyleSheet*);
void unregisterClient(CSSStyleSheet*);
bool hasOneClient() { return m_clients.size() == 1; }
Vector<CSSStyleSheet*> clients() const { return m_clients; }
bool isMutable() const { return m_isMutable; }
void setMutable() { m_isMutable = true; }
bool hasNestingRules() const;
void clearHasNestingRulesCache() { m_hasNestingRulesCache = { }; }
bool isInMemoryCache() const { return m_inMemoryCacheCount; }
void addedToMemoryCache();
void removedFromMemoryCache();
void shrinkToFit();
void setAsOpaque() { m_parserContext.isContentOpaque = true; }
bool isContentOpaque() const { return m_parserContext.isContentOpaque; }
void setLoadErrorOccured() { m_didLoadErrorOccur = true; }
friend class CSSStyleSheet;
bool hasResolvedNesting() const { return m_hasResolvedNesting; }
void setHasResolvedNesting(bool value) const { m_hasResolvedNesting = value; }
private:
WEBCORE_EXPORT StyleSheetContents(StyleRuleImport* ownerRule, const String& originalURL, const CSSParserContext&);
StyleSheetContents(const StyleSheetContents&);
void clearCharsetRule();
StyleRuleImport* m_ownerRule { nullptr };
String m_originalURL;
String m_encodingFromCharsetRule;
Vector<Ref<StyleRuleLayer>> m_layerRulesBeforeImportRules;
Vector<Ref<StyleRuleImport>> m_importRules;
Vector<Ref<StyleRuleNamespace>> m_namespaceRules;
Vector<Ref<StyleRuleBase>> m_childRules;
typedef UncheckedKeyHashMap<AtomString, AtomString> PrefixNamespaceURIMap;
PrefixNamespaceURIMap m_namespaces;
AtomString m_defaultNamespace;
bool m_isUserStyleSheet;
bool m_loadCompleted { false };
bool m_hasSyntacticallyValidCSSHeader { true };
bool m_didLoadErrorOccur { false };
bool m_usesStyleBasedEditability { false };
bool m_isMutable { false };
mutable bool m_hasResolvedNesting { false };
mutable std::optional<bool> m_hasNestingRulesCache;
unsigned m_inMemoryCacheCount { 0 };
CSSParserContext m_parserContext;
Vector<CSSStyleSheet*> m_clients;
};
} // namespace WebCore
|