зеркало из https://github.com/mozilla/gecko-dev.git
256 строки
8.1 KiB
C++
256 строки
8.1 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_ServoTypes_h
|
|
#define mozilla_ServoTypes_h
|
|
|
|
#include "mozilla/TypedEnumBits.h"
|
|
|
|
#define STYLE_STRUCT(name_, checkdata_cb_) struct nsStyle##name_;
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT
|
|
|
|
/*
|
|
* Type definitions used to interact with Servo. This gets included by nsINode,
|
|
* so don't add significant include dependencies to this file.
|
|
*/
|
|
|
|
class nsWindowSizes;
|
|
struct ServoNodeData;
|
|
namespace mozilla {
|
|
|
|
class SizeOfState;
|
|
|
|
/*
|
|
* Replaced types. These get mapped to associated Servo types in bindgen.
|
|
*/
|
|
|
|
template<typename T>
|
|
struct ServoUnsafeCell {
|
|
T value;
|
|
|
|
// Ensure that primitive types (i.e. pointers) get zero-initialized.
|
|
ServoUnsafeCell() : value() {};
|
|
};
|
|
|
|
template<typename T>
|
|
struct ServoCell {
|
|
ServoUnsafeCell<T> value;
|
|
T Get() const { return value.value; }
|
|
void Set(T arg) { value.value = arg; }
|
|
ServoCell() : value() {};
|
|
};
|
|
|
|
// Indicates whether the Servo style system should expect the style on an element
|
|
// to have already been resolved (i.e. via a parallel traversal), or whether it
|
|
// may be lazily computed.
|
|
enum class LazyComputeBehavior {
|
|
Allow,
|
|
Assert,
|
|
};
|
|
|
|
// Various flags for the servo traversal.
|
|
enum class ServoTraversalFlags : uint32_t {
|
|
Empty = 0,
|
|
// Perform animation processing but not regular styling.
|
|
AnimationOnly = 1 << 0,
|
|
// Traverses as normal mode but tries to update all CSS animations.
|
|
ForCSSRuleChanges = 1 << 1,
|
|
// A forgetful traversal ignores the previous state of the frame tree, and
|
|
// thus does not compute damage or maintain other state describing the styles
|
|
// pre-traversal. A forgetful traversal is usually the right thing if you
|
|
// aren't going to do a post-traversal.
|
|
Forgetful = 1 << 3,
|
|
// Clears all the dirty bits (dirty descendants, animation-only dirty-descendants,
|
|
// needs frame, descendants need frames) on the elements traversed.
|
|
// in the subtree.
|
|
ClearDirtyBits = 1 << 5,
|
|
// Clears only the animation-only dirty descendants bit in the subtree.
|
|
ClearAnimationOnlyDirtyDescendants = 1 << 6,
|
|
// Allows the traversal to run in parallel if there are sufficient cores on
|
|
// the machine.
|
|
ParallelTraversal = 1 << 7,
|
|
// Flush throttled animations. By default, we only update throttled animations
|
|
// when we have other non-throttled work to do. With this flag, we
|
|
// unconditionally tick and process them.
|
|
FlushThrottledAnimations = 1 << 8,
|
|
};
|
|
|
|
MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS(ServoTraversalFlags)
|
|
|
|
// Indicates which rules should be included when performing selecting matching
|
|
// on an element. DefaultOnly is used to exclude all rules except for those
|
|
// that come from UA style sheets, and is used to implemented
|
|
// getDefaultComputedStyle.
|
|
enum class StyleRuleInclusion {
|
|
All,
|
|
DefaultOnly,
|
|
};
|
|
|
|
// Represents which tasks are performed in a SequentialTask of UpdateAnimations.
|
|
enum class UpdateAnimationsTasks : uint8_t {
|
|
CSSAnimations = 1 << 0,
|
|
CSSTransitions = 1 << 1,
|
|
EffectProperties = 1 << 2,
|
|
CascadeResults = 1 << 3,
|
|
};
|
|
|
|
MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS(UpdateAnimationsTasks)
|
|
|
|
// The mode to use when parsing values.
|
|
enum class ParsingMode : uint8_t {
|
|
// In CSS, lengths must have units, except for zero values, where the unit can
|
|
// be omitted.
|
|
// https://www.w3.org/TR/css3-values/#lengths
|
|
Default = 0,
|
|
// In SVG, a coordinate or length value without a unit identifier (e.g., "25")
|
|
// is assumed to be in user units (px).
|
|
// https://www.w3.org/TR/SVG/coords.html#Units
|
|
AllowUnitlessLength = 1 << 0,
|
|
// In SVG, out-of-range values are not treated as an error in parsing.
|
|
// https://www.w3.org/TR/SVG/implnote.html#RangeClamping
|
|
AllowAllNumericValues = 1 << 1,
|
|
};
|
|
|
|
MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS(ParsingMode)
|
|
|
|
// The kind of style we're generating when requesting Servo to give us an
|
|
// inherited style.
|
|
enum class InheritTarget {
|
|
// We're requesting a text style.
|
|
Text,
|
|
// We're requesting a first-letter continuation frame style.
|
|
FirstLetterContinuation,
|
|
// We're requesting a style for a placeholder frame.
|
|
PlaceholderFrame,
|
|
};
|
|
|
|
struct ServoWritingMode {
|
|
uint8_t mBits;
|
|
};
|
|
|
|
struct ServoCustomPropertiesMap {
|
|
uintptr_t mPtr;
|
|
};
|
|
|
|
struct ServoRuleNode {
|
|
uintptr_t mPtr;
|
|
};
|
|
|
|
|
|
class ServoStyleContext;
|
|
|
|
struct ServoVisitedStyle {
|
|
// This is actually a strong reference
|
|
// but ServoComputedData's destructor is
|
|
// managed by the Rust code so we just use a
|
|
// regular pointer
|
|
ServoStyleContext* mPtr;
|
|
};
|
|
|
|
template <typename T>
|
|
struct ServoRawOffsetArc {
|
|
// Again, a strong reference, but
|
|
// managed by the Rust code
|
|
T* mPtr;
|
|
};
|
|
|
|
struct ServoComputedValueFlags {
|
|
uint16_t mFlags;
|
|
};
|
|
|
|
#define STYLE_STRUCT(name_, checkdata_cb_) struct Gecko##name_;
|
|
#define STYLE_STRUCT_LIST_IGNORE_VARIABLES
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT
|
|
#undef STYLE_STRUCT_LIST_IGNORE_VARIABLES
|
|
|
|
// These measurements are obtained for both the UA cache and the Stylist, but
|
|
// not all the fields are used in both cases.
|
|
class ServoStyleSetSizes
|
|
{
|
|
public:
|
|
size_t mRuleTree; // Stylist-only
|
|
size_t mPrecomputedPseudos; // UA cache-only
|
|
size_t mElementAndPseudosMaps; // Used for both
|
|
size_t mInvalidationMap; // Used for both
|
|
size_t mRevalidationSelectors; // Used for both
|
|
size_t mOther; // Used for both
|
|
|
|
ServoStyleSetSizes()
|
|
: mRuleTree(0)
|
|
, mPrecomputedPseudos(0)
|
|
, mElementAndPseudosMaps(0)
|
|
, mInvalidationMap(0)
|
|
, mRevalidationSelectors(0)
|
|
, mOther(0)
|
|
{}
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
class ServoComputedData;
|
|
|
|
struct ServoComputedDataForgotten
|
|
{
|
|
// Make sure you manually mem::forget the backing ServoComputedData
|
|
// after calling this
|
|
explicit ServoComputedDataForgotten(const ServoComputedData* aValue) : mPtr(aValue) {}
|
|
const ServoComputedData* mPtr;
|
|
};
|
|
|
|
/**
|
|
* We want C++ to be able to read the style struct fields of ComputedValues
|
|
* so we define this type on the C++ side and use the bindgenned version
|
|
* on the Rust side.
|
|
*/
|
|
class ServoComputedData
|
|
{
|
|
friend class mozilla::ServoStyleContext;
|
|
|
|
public:
|
|
// Constructs via memcpy. Will not move out of aValue.
|
|
explicit ServoComputedData(const ServoComputedDataForgotten aValue);
|
|
|
|
#define STYLE_STRUCT(name_, checkdata_cb_) \
|
|
mozilla::ServoRawOffsetArc<mozilla::Gecko##name_> name_; \
|
|
inline const nsStyle##name_* GetStyle##name_() const;
|
|
#define STYLE_STRUCT_LIST_IGNORE_VARIABLES
|
|
#include "nsStyleStructList.h"
|
|
#undef STYLE_STRUCT
|
|
#undef STYLE_STRUCT_LIST_IGNORE_VARIABLES
|
|
const nsStyleVariables* GetStyleVariables() const;
|
|
|
|
void AddSizeOfExcludingThis(nsWindowSizes& aSizes) const;
|
|
|
|
private:
|
|
mozilla::ServoCustomPropertiesMap custom_properties;
|
|
mozilla::ServoWritingMode writing_mode;
|
|
mozilla::ServoComputedValueFlags flags;
|
|
/// The rule node representing the ordered list of rules matched for this
|
|
/// node. Can be None for default values and text nodes. This is
|
|
/// essentially an optimization to avoid referencing the root rule node.
|
|
mozilla::ServoRuleNode rules;
|
|
/// The element's computed values if visited, only computed if there's a
|
|
/// relevant link for this element. A element's "relevant link" is the
|
|
/// element being matched if it is a link or the nearest ancestor link.
|
|
mozilla::ServoVisitedStyle visited_style;
|
|
|
|
// C++ just sees this struct as a bucket of bits, and will
|
|
// do the wrong thing if we let it use the default copy ctor/assignment
|
|
// operator. Remove them so that there is no footgun.
|
|
//
|
|
// We remove the move ctor/assignment operator as well, because
|
|
// moves in C++ don't prevent destructors from being called,
|
|
// which will lead to double frees.
|
|
ServoComputedData& operator=(const ServoComputedData&) = delete;
|
|
ServoComputedData(const ServoComputedData&) = delete;
|
|
ServoComputedData&& operator=(const ServoComputedData&&) = delete;
|
|
ServoComputedData(const ServoComputedData&&) = delete;
|
|
};
|
|
|
|
#endif // mozilla_ServoTypes_h
|