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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
/*
* Copyright (C) 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.
*/
#include "config.h"
#include "CSSAnimation.h"
#include "AnimationEffect.h"
#include "CSSAnimationEvent.h"
#include "DocumentTimeline.h"
#include "InspectorInstrumentation.h"
#include "KeyframeEffect.h"
#include "RenderStyle.h"
#include "StyleOriginatedTimelinesController.h"
#include "ViewTimeline.h"
#include <wtf/TZoneMallocInlines.h>
namespace WebCore {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(CSSAnimation);
Ref<CSSAnimation> CSSAnimation::create(const Styleable& owningElement, const Animation& backingAnimation, const RenderStyle* oldStyle, const RenderStyle& newStyle, const Style::ResolutionContext& resolutionContext)
{
auto result = adoptRef(*new CSSAnimation(owningElement, backingAnimation));
result->initialize(oldStyle, newStyle, resolutionContext);
InspectorInstrumentation::didCreateWebAnimation(result.get());
return result;
}
CSSAnimation::CSSAnimation(const Styleable& element, const Animation& backingAnimation)
: StyleOriginatedAnimation(element, backingAnimation)
, m_animationName(backingAnimation.name().name)
{
}
void CSSAnimation::syncPropertiesWithBackingAnimation()
{
StyleOriginatedAnimation::syncPropertiesWithBackingAnimation();
// If we have been disassociated from our original owning element,
// we should no longer sync any of the `animation-*` CSS properties.
if (!owningElement())
return;
if (!effect())
return;
suspendEffectInvalidation();
auto& animation = backingAnimation();
auto* animationEffect = effect();
if (!m_overriddenProperties.contains(Property::FillMode)) {
switch (animation.fillMode()) {
case AnimationFillMode::None:
animationEffect->setFill(FillMode::None);
break;
case AnimationFillMode::Backwards:
animationEffect->setFill(FillMode::Backwards);
break;
case AnimationFillMode::Forwards:
animationEffect->setFill(FillMode::Forwards);
break;
case AnimationFillMode::Both:
animationEffect->setFill(FillMode::Both);
break;
}
}
if (!m_overriddenProperties.contains(Property::Direction)) {
switch (animation.direction()) {
case Animation::Direction::Normal:
animationEffect->setDirection(PlaybackDirection::Normal);
break;
case Animation::Direction::Alternate:
animationEffect->setDirection(PlaybackDirection::Alternate);
break;
case Animation::Direction::Reverse:
animationEffect->setDirection(PlaybackDirection::Reverse);
break;
case Animation::Direction::AlternateReverse:
animationEffect->setDirection(PlaybackDirection::AlternateReverse);
break;
}
}
if (!m_overriddenProperties.contains(Property::IterationCount)) {
auto iterationCount = animation.iterationCount();
animationEffect->setIterations(iterationCount == Animation::IterationCountInfinite ? std::numeric_limits<double>::infinity() : iterationCount);
}
if (!m_overriddenProperties.contains(Property::Delay))
animationEffect->setDelay(Seconds(animation.delay()));
if (!m_overriddenProperties.contains(Property::Duration)) {
if (auto duration = animation.duration())
animationEffect->setIterationDuration(Seconds(*duration));
else
animationEffect->setIterationDuration(std::nullopt);
}
if (!m_overriddenProperties.contains(Property::CompositeOperation)) {
if (auto* keyframeEffect = dynamicDowncast<KeyframeEffect>(animationEffect))
keyframeEffect->setComposite(animation.compositeOperation());
}
syncStyleOriginatedTimeline();
if (!m_overriddenProperties.contains(Property::RangeStart))
setRangeStart(animation.range().start);
if (!m_overriddenProperties.contains(Property::RangeEnd))
setRangeEnd(animation.range().end);
effectTimingDidChange();
// Synchronize the play state
if (!m_overriddenProperties.contains(Property::PlayState)) {
auto styleOriginatedPlayState = animation.playState();
if (m_lastStyleOriginatedPlayState != styleOriginatedPlayState) {
if (styleOriginatedPlayState == AnimationPlayState::Playing && playState() == WebAnimation::PlayState::Paused)
play();
else if (styleOriginatedPlayState == AnimationPlayState::Paused && playState() == WebAnimation::PlayState::Running)
pause();
}
m_lastStyleOriginatedPlayState = styleOriginatedPlayState;
}
unsuspendEffectInvalidation();
}
void CSSAnimation::syncStyleOriginatedTimeline()
{
if (m_overriddenProperties.contains(Property::Timeline) || !effect())
return;
suspendEffectInvalidation();
ASSERT(owningElement());
Ref target = owningElement()->element;
Ref document = owningElement()->element.document();
auto& timeline = backingAnimation().timeline();
WTF::switchOn(timeline,
[&] (Animation::TimelineKeyword keyword) {
setTimeline(keyword == Animation::TimelineKeyword::None ? nullptr : RefPtr { document->existingTimeline() });
}, [&] (const AtomString& name) {
CheckedRef styleOriginatedTimelinesController = document->ensureStyleOriginatedTimelinesController();
styleOriginatedTimelinesController->setTimelineForName(name, *owningElement(), *this);
}, [&] (const Animation::AnonymousScrollTimeline& anonymousScrollTimeline) {
auto scrollTimeline = ScrollTimeline::create(anonymousScrollTimeline.scroller, anonymousScrollTimeline.axis);
scrollTimeline->setSource(*owningElement());
setTimeline(WTFMove(scrollTimeline));
}, [&] (const Animation::AnonymousViewTimeline& anonymousViewTimeline) {
auto insets = anonymousViewTimeline.insets;
auto viewTimeline = ViewTimeline::create(nullAtom(), anonymousViewTimeline.axis, WTFMove(insets));
viewTimeline->setSubject(*owningElement());
setTimeline(WTFMove(viewTimeline));
}
);
// If we're not dealing with a named timeline, we should make sure we have no
// pending attachment operation for this timeline name.
if (!std::holds_alternative<AtomString>(timeline)) {
CheckedRef styleOriginatedTimelinesController = document->ensureStyleOriginatedTimelinesController();
styleOriginatedTimelinesController->removePendingOperationsForCSSAnimation(*this);
}
unsuspendEffectInvalidation();
}
AnimationTimeline* CSSAnimation::bindingsTimeline() const
{
flushPendingStyleChanges();
return StyleOriginatedAnimation::bindingsTimeline();
}
void CSSAnimation::setBindingsTimeline(RefPtr<AnimationTimeline>&& timeline)
{
m_overriddenProperties.add(Property::Timeline);
StyleOriginatedAnimation::setBindingsTimeline(WTFMove(timeline));
}
void CSSAnimation::setBindingsRangeStart(TimelineRangeValue&& range)
{
m_overriddenProperties.add(Property::RangeStart);
StyleOriginatedAnimation::setBindingsRangeStart(WTFMove(range));
}
void CSSAnimation::setBindingsRangeEnd(TimelineRangeValue&& range)
{
m_overriddenProperties.add(Property::RangeEnd);
StyleOriginatedAnimation::setBindingsRangeEnd(WTFMove(range));
}
ExceptionOr<void> CSSAnimation::bindingsPlay()
{
// https://drafts.csswg.org/css-animations-2/#animations
// After a successful call to play() or pause() on a CSSAnimation, any subsequent change to the animation-play-state will
// no longer cause the CSSAnimation to be played or paused.
auto retVal = StyleOriginatedAnimation::bindingsPlay();
if (!retVal.hasException())
m_overriddenProperties.add(Property::PlayState);
return retVal;
}
ExceptionOr<void> CSSAnimation::bindingsPause()
{
// https://drafts.csswg.org/css-animations-2/#animations
// After a successful call to play() or pause() on a CSSAnimation, any subsequent change to the animation-play-state will
// no longer cause the CSSAnimation to be played or paused.
auto retVal = StyleOriginatedAnimation::bindingsPause();
if (!retVal.hasException())
m_overriddenProperties.add(Property::PlayState);
return retVal;
}
void CSSAnimation::setBindingsEffect(RefPtr<AnimationEffect>&& newEffect)
{
// https://drafts.csswg.org/css-animations-2/#animations
// After successfully setting the effect of a CSSAnimation to null or some AnimationEffect other than the original KeyframeEffect,
// all subsequent changes to animation properties other than animation-name or animation-play-state will not be reflected in that
// animation. Similarly, any change to matching @keyframes rules will not be reflected in that animation. However, if the last
// matching @keyframes rule is removed the animation must still be canceled.
auto* previousEffect = effect();
StyleOriginatedAnimation::setBindingsEffect(WTFMove(newEffect));
if (effect() != previousEffect) {
m_overriddenProperties.add(Property::Duration);
m_overriddenProperties.add(Property::TimingFunction);
m_overriddenProperties.add(Property::IterationCount);
m_overriddenProperties.add(Property::Direction);
m_overriddenProperties.add(Property::Delay);
m_overriddenProperties.add(Property::FillMode);
m_overriddenProperties.add(Property::Keyframes);
m_overriddenProperties.add(Property::CompositeOperation);
}
}
ExceptionOr<void> CSSAnimation::setBindingsStartTime(const std::optional<WebAnimationTime>& startTime)
{
// https://drafts.csswg.org/css-animations-2/#animations
// After a successful call to reverse() on a CSSAnimation or after successfully setting the startTime on a CSSAnimation,
// if, as a result of that call the play state of the CSSAnimation changes to or from the paused play state, any subsequent
// change to the animation-play-state will no longer cause the CSSAnimation to be played or paused.
auto previousPlayState = playState();
auto result = StyleOriginatedAnimation::setBindingsStartTime(startTime);
if (result.hasException())
return result.releaseException();
auto currentPlayState = playState();
if (currentPlayState != previousPlayState && (currentPlayState == PlayState::Paused || previousPlayState == PlayState::Paused))
m_overriddenProperties.add(Property::PlayState);
return { };
}
ExceptionOr<void> CSSAnimation::bindingsReverse()
{
// https://drafts.csswg.org/css-animations-2/#animations
// After a successful call to reverse() on a CSSAnimation or after successfully setting the startTime on a CSSAnimation,
// if, as a result of that call the play state of the CSSAnimation changes to or from the paused play state, any subsequent
// change to the animation-play-state will no longer cause the CSSAnimation to be played or paused.
auto previousPlayState = playState();
auto retVal = StyleOriginatedAnimation::bindingsReverse();
if (!retVal.hasException()) {
auto currentPlayState = playState();
if (currentPlayState != previousPlayState && (currentPlayState == PlayState::Paused || previousPlayState == PlayState::Paused))
m_overriddenProperties.add(Property::PlayState);
}
return retVal;
}
void CSSAnimation::effectTimingWasUpdatedUsingBindings(OptionalEffectTiming timing)
{
// https://drafts.csswg.org/css-animations-2/#animations
// After a successful call to updateTiming() on the KeyframeEffect associated with a CSSAnimation, for each property
// included in the timing parameter, any subsequent change to a corresponding animation property will not be reflected
// in that animation.
if (timing.duration)
m_overriddenProperties.add(Property::Duration);
if (timing.iterations)
m_overriddenProperties.add(Property::IterationCount);
if (timing.delay)
m_overriddenProperties.add(Property::Delay);
if (!timing.easing.isNull())
m_overriddenProperties.add(Property::TimingFunction);
if (timing.fill)
m_overriddenProperties.add(Property::FillMode);
if (timing.direction)
m_overriddenProperties.add(Property::Direction);
}
void CSSAnimation::effectKeyframesWereSetUsingBindings()
{
// https://drafts.csswg.org/css-animations-2/#animations
// After a successful call to setKeyframes() on the KeyframeEffect associated with a CSSAnimation, any subsequent change to
// matching @keyframes rules or the resolved value of the animation-timing-function property for the target element will not
// be reflected in that animation.
m_overriddenProperties.add(Property::Keyframes);
m_overriddenProperties.add(Property::TimingFunction);
}
void CSSAnimation::effectCompositeOperationWasSetUsingBindings()
{
m_overriddenProperties.add(Property::CompositeOperation);
}
void CSSAnimation::keyframesRuleDidChange()
{
if (m_overriddenProperties.contains(Property::Keyframes))
return;
auto* keyframeEffect = dynamicDowncast<KeyframeEffect>(effect());
if (!keyframeEffect)
return;
auto owningElement = this->owningElement();
if (!owningElement)
return;
keyframeEffect->keyframesRuleDidChange();
owningElement->keyframesRuleDidChange();
}
void CSSAnimation::updateKeyframesIfNeeded(const RenderStyle* oldStyle, const RenderStyle& newStyle, const Style::ResolutionContext& resolutionContext)
{
if (m_overriddenProperties.contains(Property::Keyframes))
return;
auto* keyframeEffect = dynamicDowncast<KeyframeEffect>(effect());
if (!keyframeEffect)
return;
if (keyframeEffect->blendingKeyframes().isEmpty())
keyframeEffect->computeStyleOriginatedAnimationBlendingKeyframes(oldStyle, newStyle, resolutionContext);
}
Ref<StyleOriginatedAnimationEvent> CSSAnimation::createEvent(const AtomString& eventType, std::optional<Seconds> scheduledTime, double elapsedTime, const std::optional<Style::PseudoElementIdentifier>& pseudoElementIdentifier)
{
return CSSAnimationEvent::create(eventType, this, scheduledTime, elapsedTime, pseudoElementIdentifier, m_animationName);
}
} // namespace WebCore
|