Changeset 148145 in webkit
- Timestamp:
- Apr 10, 2013, 3:47:07 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r148144 r148145 1 2013-04-10 Simon Fraser <simon.fraser@apple.com> 2 3 Flesh out the Animations logging 4 https://bugs.webkit.org/show_bug.cgi?id=114388 5 6 Reviewed by Dean Jackson. 7 8 Log state changes and transition/animation creation and destruction 9 to the Animations log channel. 10 11 * page/animation/AnimationBase.cpp: 12 (WebCore::nameForState): 13 (WebCore::AnimationBase::updateStateMachine): 14 (WebCore::AnimationBase::fireAnimationEventsIfNeeded): 15 (WebCore::AnimationBase::goIntoEndingOrLoopingState): 16 (WebCore::AnimationBase::freezeAtTime): 17 * page/animation/CompositeAnimation.cpp: 18 (WebCore::CompositeAnimation::updateTransitions): 19 (WebCore::CompositeAnimation::updateKeyframeAnimations): 20 * page/animation/KeyframeAnimation.h: 21 (WebCore::KeyframeAnimation::keyframes): 22 (KeyframeAnimation): 23 1 24 2013-04-10 Alexey Proskuryakov <ap@apple.com> 2 25 -
trunk/Source/WebCore/page/animation/AnimationBase.cpp
r148122 r148145 37 37 #include "EventNames.h" 38 38 #include "FloatConversion.h" 39 #include "Logging.h" 39 40 #include "RenderBox.h" 40 41 #include "RenderStyle.h" … … 112 113 } 113 114 115 #if !LOG_DISABLED 116 static const char* nameForState(AnimationBase::AnimState state) 117 { 118 switch (state) { 119 case AnimationBase::AnimationStateNew: return "New"; 120 case AnimationBase::AnimationStateStartWaitTimer: return "StartWaitTimer"; 121 case AnimationBase::AnimationStateStartWaitStyleAvailable: return "StartWaitStyleAvailable"; 122 case AnimationBase::AnimationStateStartWaitResponse: return "StartWaitResponse"; 123 case AnimationBase::AnimationStateLooping: return "Looping"; 124 case AnimationBase::AnimationStateEnding: return "Ending"; 125 case AnimationBase::AnimationStatePausedWaitTimer: return "PausedWaitTimer"; 126 case AnimationBase::AnimationStatePausedWaitStyleAvailable: return "PausedWaitStyleAvailable"; 127 case AnimationBase::AnimationStatePausedWaitResponse: return "PausedWaitResponse"; 128 case AnimationBase::AnimationStatePausedRun: return "PausedRun"; 129 case AnimationBase::AnimationStateDone: return "Done"; 130 case AnimationBase::AnimationStateFillingForwards: return "FillingForwards"; 131 } 132 return ""; 133 } 134 #endif 135 114 136 void AnimationBase::updateStateMachine(AnimStateInput input, double param) 115 137 { … … 121 143 if (m_animState == AnimationStateStartWaitStyleAvailable) 122 144 m_compAnim->animationController()->removeFromAnimationsWaitingForStyle(this); 145 LOG(Animations, "%p AnimationState %s -> New", this, nameForState(m_animState)); 123 146 m_animState = AnimationStateNew; 124 147 m_startTime = 0; … … 133 156 if (m_animState == AnimationStateStartWaitStyleAvailable) 134 157 m_compAnim->animationController()->removeFromAnimationsWaitingForStyle(this); 158 LOG(Animations, "%p AnimationState %s -> New", this, nameForState(m_animState)); 135 159 m_animState = AnimationStateNew; 136 160 m_startTime = 0; … … 148 172 if (m_animState == AnimationStateStartWaitStyleAvailable) 149 173 m_compAnim->animationController()->removeFromAnimationsWaitingForStyle(this); 174 LOG(Animations, "%p AnimationState %s -> Done", this, nameForState(m_animState)); 150 175 m_animState = AnimationStateDone; 151 176 endAnimation(); … … 177 202 if (input == AnimationStateInputStartAnimation || input == AnimationStateInputPlayStateRunning) { 178 203 m_requestedStartTime = beginAnimationUpdateTime(); 204 LOG(Animations, "%p AnimationState %s -> StartWaitTimer", this, nameForState(m_animState)); 179 205 m_animState = AnimationStateStartWaitTimer; 180 206 } … … 186 212 ASSERT(param >= 0); 187 213 // Start timer has fired, tell the animation to start and wait for it to respond with start time 214 LOG(Animations, "%p AnimationState %s -> StartWaitStyleAvailable", this, nameForState(m_animState)); 188 215 m_animState = AnimationStateStartWaitStyleAvailable; 189 216 m_compAnim->animationController()->addToAnimationsWaitingForStyle(this); … … 196 223 // We're waiting for the start timer to fire and we got a pause. Cancel the timer, pause and wait 197 224 m_pauseTime = beginAnimationUpdateTime(); 225 LOG(Animations, "%p AnimationState %s -> PausedWaitTimer", this, nameForState(m_animState)); 198 226 m_animState = AnimationStatePausedWaitTimer; 199 227 } … … 204 232 if (input == AnimationStateInputStyleAvailable) { 205 233 // Start timer has fired, tell the animation to start and wait for it to respond with start time 234 LOG(Animations, "%p AnimationState %s -> StartWaitResponse", this, nameForState(m_animState)); 206 235 m_animState = AnimationStateStartWaitResponse; 207 236 … … 212 241 // We won't try to start accelerated animations if we are overridden and 213 242 // just move on to the next state. 243 LOG(Animations, "%p AnimationState %s -> StartWaitResponse", this, nameForState(m_animState)); 214 244 m_animState = AnimationStateStartWaitResponse; 215 245 m_isAccelerated = false; … … 228 258 // We're waiting for the style to be available and we got a pause. Pause and wait 229 259 m_pauseTime = beginAnimationUpdateTime(); 260 LOG(Animations, "%p AnimationState %s -> PausedWaitStyleAvailable", this, nameForState(m_animState)); 230 261 m_animState = AnimationStatePausedWaitStyleAvailable; 231 262 } … … 258 289 m_pauseTime = beginAnimationUpdateTime(); 259 290 pauseAnimation(beginAnimationUpdateTime() - m_startTime); 291 LOG(Animations, "%p AnimationState %s -> PausedWaitResponse", this, nameForState(m_animState)); 260 292 m_animState = AnimationStatePausedWaitResponse; 261 293 } … … 275 307 m_pauseTime = beginAnimationUpdateTime(); 276 308 pauseAnimation(beginAnimationUpdateTime() - m_startTime); 309 LOG(Animations, "%p AnimationState %s -> PausedRun", this, nameForState(m_animState)); 277 310 m_animState = AnimationStatePausedRun; 278 311 } … … 289 322 onAnimationEnd(param); 290 323 324 LOG(Animations, "%p AnimationState %s -> Done", this, nameForState(m_animState)); 291 325 m_animState = AnimationStateDone; 292 326 293 327 if (m_object) { 294 if (m_animation->fillsForwards()) 328 if (m_animation->fillsForwards()) { 329 LOG(Animations, "%p AnimationState %s -> FillingForwards", this, nameForState(m_animState)); 295 330 m_animState = AnimationStateFillingForwards; 296 else331 } else 297 332 resumeOverriddenAnimations(); 298 333 … … 304 339 m_pauseTime = beginAnimationUpdateTime(); 305 340 pauseAnimation(beginAnimationUpdateTime() - m_startTime); 341 LOG(Animations, "%p AnimationState %s -> PausedRun", this, nameForState(m_animState)); 306 342 m_animState = AnimationStatePausedRun; 307 343 } … … 316 352 317 353 // we were waiting for the start timer to fire, go back and wait again 354 LOG(Animations, "%p AnimationState %s -> New", this, nameForState(m_animState)); 318 355 m_animState = AnimationStateNew; 319 356 updateStateMachine(AnimationStateInputStartAnimation, 0); … … 337 374 m_pauseTime = -1; 338 375 339 if (m_animState == AnimationStatePausedWaitStyleAvailable) 376 if (m_animState == AnimationStatePausedWaitStyleAvailable) { 377 LOG(Animations, "%p AnimationState %s -> StartWaitStyleAvailable", this, nameForState(m_animState)); 340 378 m_animState = AnimationStateStartWaitStyleAvailable; 341 else {379 } else { 342 380 // We were either running or waiting for a begin time response from the animation. 343 381 // Either way we need to restart the animation (possibly with an offset if we 344 382 // had already been running) and wait for it to start. 383 LOG(Animations, "%p AnimationState %s -> StartWaitResponse", this, nameForState(m_animState)); 345 384 m_animState = AnimationStateStartWaitResponse; 346 385 … … 365 404 // We are paused but we got the callback that notifies us that an accelerated animation started. 366 405 // We ignore the start time and just move into the paused-run state. 406 LOG(Animations, "%p AnimationState %s -> PausedRun", this, nameForState(m_animState)); 367 407 m_animState = AnimationStatePausedRun; 368 408 ASSERT(m_startTime == 0); … … 375 415 // We are paused but we got the callback that notifies us that style has been updated. 376 416 // We move to the AnimationStatePausedWaitResponse state 417 LOG(Animations, "%p AnimationState %s -> PausedWaitResponse", this, nameForState(m_animState)); 377 418 m_animState = AnimationStatePausedWaitResponse; 378 419 overrideAnimations(); … … 418 459 // We may still be in AnimationStateLooping if we've managed to skip a 419 460 // whole iteration, in which case we should jump to the end state. 461 LOG(Animations, "%p AnimationState %s -> Ending", this, nameForState(m_animState)); 420 462 m_animState = AnimationStateEnding; 421 463 … … 581 623 bool isLooping; 582 624 getTimeToNextEvent(t, isLooping); 625 LOG(Animations, "%p AnimationState %s -> %s", this, nameForState(m_animState), isLooping ? "Looping" : "Ending"); 583 626 m_animState = isLooping ? AnimationStateLooping : AnimationStateEnding; 584 627 } … … 591 634 if (!m_startTime) { 592 635 // If we haven't started yet, make it as if we started. 636 LOG(Animations, "%p AnimationState %s -> StartWaitResponse", this, nameForState(m_animState)); 593 637 m_animState = AnimationStateStartWaitResponse; 594 638 onAnimationStartResponse(currentTime()); -
trunk/Source/WebCore/page/animation/CompositeAnimation.cpp
r141656 r148145 35 35 #include "ImplicitAnimation.h" 36 36 #include "KeyframeAnimation.h" 37 #include "Logging.h" 37 38 #include "RenderObject.h" 38 39 #include "RenderStyle.h" … … 141 142 // behave as though this is a running animation being replaced. 142 143 if (!implAnim->isTargetPropertyEqual(prop, targetStyle)) { 143 144 #if USE(ACCELERATED_COMPOSITING) 144 145 // For accelerated animations we need to return a new RenderStyle with the _current_ value 145 146 // of the property, so that restarted transitions use the correct starting point. … … 150 151 implAnim->blendPropertyValueInStyle(prop, modifiedCurrentStyle.get()); 151 152 } 152 #endif 153 #endif 154 LOG(Animations, "Removing existing ImplicitAnimation %p for property %s", implAnim, getPropertyName(prop)); 153 155 animationController()->animationWillBeRemoved(implAnim); 154 156 m_transitions.remove(prop); … … 166 168 if (!equal && isActiveTransition) { 167 169 // Add the new transition 168 m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle)); 170 RefPtr<ImplicitAnimation> animation = ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle); 171 LOG(Animations, "Created ImplicitAnimation %p for property %s duration %.2f delay %.2f", animation.get(), getPropertyName(prop), anim->duration(), anim->delay()); 172 m_transitions.set(prop, animation.release()); 169 173 } 170 174 … … 184 188 animationController()->animationWillBeRemoved(anim); 185 189 toBeRemoved.append(anim->animatingProperty()); 190 LOG(Animations, "Removing ImplicitAnimation %p for property %s", anim, getPropertyName(anim->animatingProperty())); 186 191 } 187 192 } … … 247 252 } else if ((anim->duration() || anim->delay()) && anim->iterationCount() && animationName != none) { 248 253 keyframeAnim = KeyframeAnimation::create(const_cast<Animation*>(anim), renderer, i, this, targetStyle); 254 LOG(Animations, "Creating KeyframeAnimation %p with keyframes %s duration %.2f delay %.2f, iterations %.2f", keyframeAnim.get(), anim->name().utf8().data(), anim->duration(), anim->delay(), anim->iterationCount()); 255 #if !LOG_DISABLED 256 HashSet<CSSPropertyID>::const_iterator endProperties = keyframeAnim->keyframes().endProperties(); 257 for (HashSet<CSSPropertyID>::const_iterator it = keyframeAnim->keyframes().beginProperties(); it != endProperties; ++it) 258 LOG(Animations, " property %s", getPropertyName(*it)); 259 #endif 249 260 m_keyframeAnimations.set(keyframeAnim->name().impl(), keyframeAnim); 250 261 } … … 266 277 animationController()->animationWillBeRemoved(keyframeAnim); 267 278 keyframeAnim->clear(); 279 LOG(Animations, "Removing KeyframeAnimation %p", keyframeAnim); 268 280 } 269 281 } -
trunk/Source/WebCore/page/animation/KeyframeAnimation.h
r113281 r148145 49 49 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle); 50 50 virtual void getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle); 51 52 const KeyframeList& keyframes() const { return m_keyframes; } 51 53 52 54 const AtomicString& name() const { return m_keyframes.animationName(); }
Note:
See TracChangeset
for help on using the changeset viewer.