blob: 9ec7c4aebe248ee32bd35024a46e9996c02e2dbf [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CSSVariableResolver_h
#define CSSVariableResolver_h
#include "core/CSSPropertyNames.h"
#include "core/css/parser/CSSParserToken.h"
#include "wtf/HashSet.h"
#include "wtf/text/AtomicString.h"
#include "wtf/text/AtomicStringHash.h"
namespace blink {
class CSSParserTokenRange;
class CSSPendingSubstitutionValue;
class CSSVariableData;
class CSSVariableReferenceValue;
class PropertyRegistry;
class StyleResolverState;
class StyleVariableData;
class CSSVariableResolver {
STACK_ALLOCATED();
public:
static void resolveVariableDefinitions(const StyleResolverState&);
static const CSSValue* resolvePendingSubstitutions(StyleResolverState&, CSSPropertyID, const CSSPendingSubstitutionValue&);
// Shorthand properties are not supported.
static const CSSValue* resolveVariableReferences(const StyleResolverState&, CSSPropertyID, const CSSVariableReferenceValue&);
DECLARE_TRACE();
private:
CSSVariableResolver(const StyleResolverState&);
// These return false if we encounter a reference to an invalid variable with no fallback
// Resolves a range which may contain var() references or @apply rules
bool resolveTokenRange(CSSParserTokenRange, Vector<CSSParserToken>& result);
// Resolves the fallback (if present) of a var() reference, starting from the comma
bool resolveFallback(CSSParserTokenRange, Vector<CSSParserToken>& result);
// Resolves the contents of a var() reference
bool resolveVariableReference(CSSParserTokenRange, Vector<CSSParserToken>& result);
// Consumes and resolves an @apply rule
void resolveApplyAtRule(CSSParserTokenRange&, Vector<CSSParserToken>& result);
// These return null if the custom property is invalid
// Returns the CSSVariableData for a custom property, resolving and storing it if necessary
CSSVariableData* valueForCustomProperty(AtomicString name);
// Resolves the CSSVariableData from a custom property declaration
PassRefPtr<CSSVariableData> resolveCustomProperty(AtomicString name, const CSSVariableData&);
const StyleResolverState& m_styleResolverState;
StyleVariableData* m_styleVariableData;
Member<const PropertyRegistry> m_registry;
HashSet<AtomicString> m_variablesSeen;
// Resolution doesn't finish when a cycle is detected. Fallbacks still
// need to be tracked for additional cycles, and invalidation only
// applies back to cycle starts.
HashSet<AtomicString> m_cycleStartPoints;
};
} // namespace blink
#endif // CSSVariableResolver