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
|
/*
* Copyright (C) 2017-2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "ActiveDOMObject.h"
#include "AnimationFrameRate.h"
#include "AnimationFrameRatePreset.h"
#include "CSSNumericValue.h"
#include "EventTarget.h"
#include "ExceptionOr.h"
#include "IDLTypes.h"
#include "Styleable.h"
#include "WebAnimationTypes.h"
#include <wtf/Forward.h>
#include <wtf/Markable.h>
#include <wtf/RefCounted.h>
#include <wtf/Seconds.h>
#include <wtf/UniqueRef.h>
#include <wtf/WeakPtr.h>
namespace WebCore {
class AnimationEffect;
class AnimationEventBase;
class AnimationTimeline;
class Document;
class RenderStyle;
template<typename IDLType> class DOMPromiseProxyWithResolveCallback;
namespace Style {
struct ResolutionContext;
}
class WebAnimation : public RefCounted<WebAnimation>, public EventTarget, public ActiveDOMObject {
WTF_MAKE_ISO_ALLOCATED(WebAnimation);
public:
static Ref<WebAnimation> create(Document&, AnimationEffect*);
static Ref<WebAnimation> create(Document&, AnimationEffect*, AnimationTimeline*);
~WebAnimation();
WEBCORE_EXPORT static HashSet<WebAnimation*>& instances();
virtual bool isDeclarativeAnimation() const { return false; }
virtual bool isCSSAnimation() const { return false; }
virtual bool isCSSTransition() const { return false; }
const String& id() const { return m_id; }
void setId(String&&);
AnimationEffect* bindingsEffect() const { return effect(); }
virtual void setBindingsEffect(RefPtr<AnimationEffect>&&);
AnimationEffect* effect() const { return m_effect.get(); }
void setEffect(RefPtr<AnimationEffect>&&);
AnimationTimeline* timeline() const { return m_timeline.get(); }
virtual void setTimeline(RefPtr<AnimationTimeline>&&);
std::optional<Seconds> currentTime(std::optional<Seconds> = std::nullopt) const;
ExceptionOr<void> setCurrentTime(std::optional<Seconds>);
double playbackRate() const { return m_playbackRate + 0; }
void setPlaybackRate(double);
enum class PlayState : uint8_t { Idle, Running, Paused, Finished };
PlayState playState() const;
enum class ReplaceState : uint8_t { Active, Removed, Persisted };
ReplaceState replaceState() const { return m_replaceState; }
void setReplaceState(ReplaceState replaceState) { m_replaceState = replaceState; }
bool pending() const { return hasPendingPauseTask() || hasPendingPlayTask(); }
using ReadyPromise = DOMPromiseProxyWithResolveCallback<IDLInterface<WebAnimation>>;
ReadyPromise& ready() { return m_readyPromise.get(); }
using FinishedPromise = DOMPromiseProxyWithResolveCallback<IDLInterface<WebAnimation>>;
FinishedPromise& finished() { return m_finishedPromise.get(); }
virtual void cancel();
ExceptionOr<void> finish();
ExceptionOr<void> play();
void updatePlaybackRate(double);
ExceptionOr<void> pause();
virtual ExceptionOr<void> bindingsReverse();
ExceptionOr<void> reverse();
void persist();
ExceptionOr<void> commitStyles();
virtual std::optional<double> bindingsStartTime() const;
virtual ExceptionOr<void> setBindingsStartTime(const std::optional<CSSNumberish>&);
std::optional<Seconds> startTime() const { return m_startTime; }
void setStartTime(std::optional<Seconds>);
virtual std::optional<double> bindingsCurrentTime() const;
virtual ExceptionOr<void> setBindingsCurrentTime(const std::optional<CSSNumberish>&);
virtual PlayState bindingsPlayState() const { return playState(); }
virtual ReplaceState bindingsReplaceState() const { return replaceState(); }
virtual bool bindingsPending() const { return pending(); }
virtual ReadyPromise& bindingsReady() { return ready(); }
virtual FinishedPromise& bindingsFinished() { return finished(); }
virtual ExceptionOr<void> bindingsPlay() { return play(); }
virtual ExceptionOr<void> bindingsPause() { return pause(); }
std::optional<Seconds> holdTime() const { return m_holdTime; }
virtual std::variant<FramesPerSecond, AnimationFrameRatePreset> bindingsFrameRate() const { return m_bindingsFrameRate; }
virtual void setBindingsFrameRate(std::variant<FramesPerSecond, AnimationFrameRatePreset>&&);
std::optional<FramesPerSecond> frameRate() const { return m_effectiveFrameRate; }
bool needsTick() const;
virtual void tick();
WEBCORE_EXPORT Seconds timeToNextTick() const;
virtual void resolve(RenderStyle& targetStyle, const Style::ResolutionContext&, std::optional<Seconds> = std::nullopt);
void effectTargetDidChange(const std::optional<const Styleable>& previousTarget, const std::optional<const Styleable>& newTarget);
void acceleratedStateDidChange();
void willChangeRenderer();
bool isRelevant() const { return m_isRelevant; }
void updateRelevance();
void effectTimingDidChange();
void suspendEffectInvalidation();
void unsuspendEffectInvalidation();
void setSuspended(bool);
bool isSuspended() const { return m_isSuspended; }
bool isReplaceable() const;
void remove();
void enqueueAnimationPlaybackEvent(const AtomString&, std::optional<Seconds> currentTime, std::optional<Seconds> scheduledTime);
uint64_t globalPosition() const { return m_globalPosition; }
void setGlobalPosition(uint64_t globalPosition) { m_globalPosition = globalPosition; }
virtual bool canHaveGlobalPosition() { return true; }
std::optional<Seconds> convertAnimationTimeToTimelineTime(Seconds) const;
// ContextDestructionObserver.
ScriptExecutionContext* scriptExecutionContext() const final { return ActiveDOMObject::scriptExecutionContext(); }
void contextDestroyed() final;
using RefCounted::ref;
using RefCounted::deref;
protected:
explicit WebAnimation(Document&);
void initialize();
void enqueueAnimationEvent(Ref<AnimationEventBase>&&);
virtual void animationDidFinish();
private:
enum class DidSeek : bool { No, Yes };
enum class SynchronouslyNotify : bool { No, Yes };
enum class Silently : bool { No, Yes };
enum class RespectHoldTime : bool { No, Yes };
enum class AutoRewind : bool { No, Yes };
enum class TimeToRunPendingTask : uint8_t { NotScheduled, ASAP, WhenReady };
ExceptionOr<std::optional<Seconds>> validateCSSNumberishValue(const std::optional<CSSNumberish>&) const;
void timingDidChange(DidSeek, SynchronouslyNotify, Silently = Silently::No);
void updateFinishedState(DidSeek, SynchronouslyNotify);
Seconds effectEndTime() const;
WebAnimation& readyPromiseResolve();
WebAnimation& finishedPromiseResolve();
std::optional<Seconds> currentTime(RespectHoldTime, std::optional<Seconds> = std::nullopt) const;
ExceptionOr<void> silentlySetCurrentTime(std::optional<Seconds>);
void finishNotificationSteps();
bool hasPendingPauseTask() const { return m_timeToRunPendingPauseTask != TimeToRunPendingTask::NotScheduled; }
bool hasPendingPlayTask() const { return m_timeToRunPendingPlayTask != TimeToRunPendingTask::NotScheduled; }
ExceptionOr<void> play(AutoRewind);
void runPendingPauseTask();
void runPendingPlayTask();
void resetPendingTasks();
void setEffectInternal(RefPtr<AnimationEffect>&&, bool = false);
void setTimelineInternal(RefPtr<AnimationTimeline>&&);
bool isEffectInvalidationSuspended() { return m_suspendCount; }
bool computeRelevance();
void invalidateEffect();
double effectivePlaybackRate() const;
void applyPendingPlaybackRate();
void setEffectiveFrameRate(std::optional<FramesPerSecond>);
// ActiveDOMObject.
const char* activeDOMObjectName() const final;
void suspend(ReasonForSuspension) final;
void resume() final;
void stop() final;
bool virtualHasPendingActivity() const final;
// EventTarget
EventTargetInterface eventTargetInterface() const final { return WebAnimationEventTargetInterfaceType; }
void refEventTarget() final { ref(); }
void derefEventTarget() final { deref(); }
RefPtr<AnimationEffect> m_effect;
RefPtr<AnimationTimeline> m_timeline;
UniqueRef<ReadyPromise> m_readyPromise;
UniqueRef<FinishedPromise> m_finishedPromise;
Markable<Seconds, Seconds::MarkableTraits> m_previousCurrentTime;
Markable<Seconds, Seconds::MarkableTraits> m_startTime;
Markable<Seconds, Seconds::MarkableTraits> m_holdTime;
MarkableDouble m_pendingPlaybackRate;
double m_playbackRate { 1 };
std::variant<FramesPerSecond, AnimationFrameRatePreset> m_bindingsFrameRate { AnimationFrameRatePreset::Auto };
std::optional<FramesPerSecond> m_effectiveFrameRate;
String m_id;
int m_suspendCount { 0 };
bool m_isSuspended { false };
bool m_finishNotificationStepsMicrotaskPending;
bool m_isRelevant;
bool m_shouldSkipUpdatingFinishedStateWhenResolving;
bool m_hasScheduledEventsDuringTick { false };
TimeToRunPendingTask m_timeToRunPendingPlayTask { TimeToRunPendingTask::NotScheduled };
TimeToRunPendingTask m_timeToRunPendingPauseTask { TimeToRunPendingTask::NotScheduled };
ReplaceState m_replaceState { ReplaceState::Active };
uint64_t m_globalPosition { 0 };
};
} // namespace WebCore
#define SPECIALIZE_TYPE_TRAITS_WEB_ANIMATION(ToValueTypeName, predicate) \
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::ToValueTypeName) \
static bool isType(const WebCore::WebAnimation& value) { return value.predicate; } \
SPECIALIZE_TYPE_TRAITS_END()
|