-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathAnimationCommon.h
295 lines (259 loc) · 10.3 KB
/
AnimationCommon.h
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/* -*- 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_css_AnimationCommon_h
#define mozilla_css_AnimationCommon_h
#include "mozilla/AnimationCollection.h"
#include "mozilla/LinkedList.h"
#include "mozilla/dom/Animation.h"
#include "mozilla/dom/BaseKeyframeTypesBinding.h"
#include "mozilla/Assertions.h"
#include "mozilla/Maybe.h"
#include "mozilla/TimingParams.h"
#include "mozilla/dom/Nullable.h"
#include "nsContentUtils.h"
#include "nsDOMMutationObserver.h" // For nsAutoAnimationMutationBatch
class nsPresContext;
namespace mozilla {
enum class PseudoStyleType : uint8_t;
namespace dom {
class Element;
}
template <class AnimationType>
class CommonAnimationManager {
public:
explicit CommonAnimationManager(nsPresContext* aPresContext)
: mPresContext(aPresContext) {}
// NOTE: This can return null after Disconnect().
nsPresContext* PresContext() const { return mPresContext; }
/**
* Notify the manager that the pres context is going away.
*/
void Disconnect() {
// Content nodes might outlive the transition or animation manager.
RemoveAllElementCollections();
mPresContext = nullptr;
}
/**
* Stop animations on the element. This method takes the real element
* rather than the element for the generated content for animations on
* ::before, ::after and ::marker.
*/
void StopAnimationsForElement(dom::Element* aElement,
const PseudoStyleRequest& aPseudoRequest) {
MOZ_ASSERT(aElement);
auto* collection =
AnimationCollection<AnimationType>::Get(aElement, aPseudoRequest);
if (!collection) {
return;
}
nsAutoAnimationMutationBatch mb(aElement->OwnerDoc());
collection->Destroy();
}
protected:
virtual ~CommonAnimationManager() {
MOZ_ASSERT(!mPresContext, "Disconnect should have been called");
}
void AddElementCollection(AnimationCollection<AnimationType>* aCollection) {
mElementCollections.insertBack(aCollection);
}
void RemoveAllElementCollections() {
while (AnimationCollection<AnimationType>* head =
mElementCollections.getFirst()) {
head->Destroy(); // Note: this removes 'head' from mElementCollections.
}
}
LinkedList<AnimationCollection<AnimationType>> mElementCollections;
nsPresContext* mPresContext; // weak (non-null from ctor to Disconnect)
};
/**
* Utility class for referencing the element that created a CSS animation or
* transition. It is non-owning (i.e. it uses a raw pointer) since it is only
* expected to be set by the owned animation while it actually being managed
* by the owning element.
*
* This class also abstracts the comparison of an element/pseudo-class pair
* for the sake of composite ordering since this logic is common to both CSS
* animations and transitions.
*
* (We call this OwningElementRef instead of just OwningElement so that we can
* call the getter on CSSAnimation/CSSTransition OwningElement() without
* clashing with this object's contructor.)
*/
class OwningElementRef final {
public:
OwningElementRef() = default;
explicit OwningElementRef(const NonOwningAnimationTarget& aTarget)
: mTarget(aTarget) {}
OwningElementRef(dom::Element& aElement,
const PseudoStyleRequest& aPseudoRequest)
: mTarget(&aElement, aPseudoRequest) {}
bool Equals(const OwningElementRef& aOther) const {
return mTarget == aOther.mTarget;
}
int32_t Compare(const OwningElementRef& aOther,
nsContentUtils::NodeIndexCache& aCache) const {
MOZ_ASSERT(mTarget.mElement && aOther.mTarget.mElement,
"Elements to compare should not be null");
if (mTarget.mElement != aOther.mTarget.mElement) {
const bool connected = mTarget.mElement->IsInComposedDoc();
if (connected != aOther.mTarget.mElement->IsInComposedDoc()) {
// Disconnected elements sort last.
return connected ? -1 : 1;
}
if (!connected) {
auto* thisRoot = mTarget.mElement->SubtreeRoot();
auto* otherRoot = aOther.mTarget.mElement->SubtreeRoot();
if (thisRoot != otherRoot) {
// We need some consistent ordering across disconnected subtrees. This
// is kind of arbitrary.
return uintptr_t(thisRoot) < uintptr_t(otherRoot) ? -1 : 1;
}
}
return nsContentUtils::CompareTreePosition<TreeKind::ShadowIncludingDOM>(
mTarget.mElement, aOther.mTarget.mElement, nullptr, &aCache);
}
enum SortingIndex : uint8_t {
NotPseudo,
Marker,
Before,
After,
ViewTransition,
ViewTransitionGroup,
ViewTransitionImagePair,
ViewTransitionOld,
ViewTransitionNew,
Other
};
auto sortingIndex =
[](const PseudoStyleRequest& aPseudoRequest) -> SortingIndex {
switch (aPseudoRequest.mType) {
case PseudoStyleType::NotPseudo:
return SortingIndex::NotPseudo;
case PseudoStyleType::marker:
return SortingIndex::Marker;
case PseudoStyleType::before:
return SortingIndex::Before;
case PseudoStyleType::after:
return SortingIndex::After;
case PseudoStyleType::viewTransition:
return SortingIndex::ViewTransition;
case PseudoStyleType::viewTransitionGroup:
return SortingIndex::ViewTransitionGroup;
case PseudoStyleType::viewTransitionImagePair:
return SortingIndex::ViewTransitionImagePair;
case PseudoStyleType::viewTransitionOld:
return SortingIndex::ViewTransitionOld;
case PseudoStyleType::viewTransitionNew:
return SortingIndex::ViewTransitionNew;
default:
MOZ_ASSERT_UNREACHABLE("Unexpected pseudo type");
return SortingIndex::Other;
}
};
auto cmp = sortingIndex(mTarget.mPseudoRequest) -
sortingIndex(aOther.mTarget.mPseudoRequest);
if (cmp != 0) {
return cmp;
}
auto* ident = mTarget.mPseudoRequest.mIdentifier.get();
auto* otherIdent = aOther.mTarget.mPseudoRequest.mIdentifier.get();
MOZ_ASSERT(!!ident == !!otherIdent);
if (ident == otherIdent) {
return 0;
}
// FIXME(emilio, bug 1956219): This compares ::view-transition-* pseudos
// with string comparison, which is not terrible but probably not quite
// intended? It seems we should probably compare the pseudo-element tree
// position or something if available, at least...
return nsDependentAtomString(ident) < nsDependentAtomString(otherIdent) ? -1
: 1;
}
bool IsSet() const { return !!mTarget.mElement; }
bool ShouldFireEvents() const {
// NOTE(emilio): Pseudo-elements are represented with a non-native animation
// target, and a pseudo-element separately, so the check is also correct for
// them.
return IsSet() && !mTarget.mElement->IsInNativeAnonymousSubtree();
}
void GetElement(dom::Element*& aElement,
PseudoStyleRequest& aPseudoRequest) const {
aElement = mTarget.mElement;
aPseudoRequest = mTarget.mPseudoRequest;
}
const NonOwningAnimationTarget& Target() const { return mTarget; }
nsPresContext* GetPresContext() const {
return nsContentUtils::GetContextForContent(mTarget.mElement);
}
private:
NonOwningAnimationTarget mTarget;
};
// Return the TransitionPhase or AnimationPhase to use when the animation
// doesn't have a target effect.
template <typename PhaseType>
PhaseType GetAnimationPhaseWithoutEffect(const dom::Animation& aAnimation) {
MOZ_ASSERT(!aAnimation.GetEffect(),
"Should only be called when we do not have an effect");
dom::Nullable<TimeDuration> currentTime =
aAnimation.GetCurrentTimeAsDuration();
if (currentTime.IsNull()) {
return PhaseType::Idle;
}
// If we don't have a target effect, the duration will be zero so the phase is
// 'before' if the current time is less than zero.
return currentTime.Value() < TimeDuration() ? PhaseType::Before
: PhaseType::After;
};
inline dom::PlaybackDirection StyleToDom(StyleAnimationDirection aDirection) {
switch (aDirection) {
case StyleAnimationDirection::Normal:
return dom::PlaybackDirection::Normal;
case StyleAnimationDirection::Reverse:
return dom::PlaybackDirection::Reverse;
case StyleAnimationDirection::Alternate:
return dom::PlaybackDirection::Alternate;
case StyleAnimationDirection::AlternateReverse:
return dom::PlaybackDirection::Alternate_reverse;
}
MOZ_ASSERT_UNREACHABLE("Wrong style value?");
return dom::PlaybackDirection::Normal;
}
inline dom::FillMode StyleToDom(StyleAnimationFillMode aFillMode) {
switch (aFillMode) {
case StyleAnimationFillMode::None:
return dom::FillMode::None;
case StyleAnimationFillMode::Both:
return dom::FillMode::Both;
case StyleAnimationFillMode::Forwards:
return dom::FillMode::Forwards;
case StyleAnimationFillMode::Backwards:
return dom::FillMode::Backwards;
}
MOZ_ASSERT_UNREACHABLE("Wrong style value?");
return dom::FillMode::None;
}
inline dom::CompositeOperation StyleToDom(StyleAnimationComposition aStyle) {
switch (aStyle) {
case StyleAnimationComposition::Replace:
return dom::CompositeOperation::Replace;
case StyleAnimationComposition::Add:
return dom::CompositeOperation::Add;
case StyleAnimationComposition::Accumulate:
return dom::CompositeOperation::Accumulate;
}
MOZ_ASSERT_UNREACHABLE("Invalid style composite operation?");
return dom::CompositeOperation::Replace;
}
inline TimingParams TimingParamsFromCSSParams(
Maybe<float> aDuration, float aDelay, float aIterationCount,
StyleAnimationDirection aDirection, StyleAnimationFillMode aFillMode) {
MOZ_ASSERT(aIterationCount >= 0.0 && !std::isnan(aIterationCount),
"aIterations should be nonnegative & finite, as ensured by "
"CSSParser");
return TimingParams{aDuration, aDelay, aIterationCount,
StyleToDom(aDirection), StyleToDom(aFillMode)};
}
} // namespace mozilla
#endif /* !defined(mozilla_css_AnimationCommon_h) */