blob: 083100e8b183e12dd82530e80389707cbcf23858 [file] [log] [blame]
John Recke45b1fd2014-04-15 09:50:16 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef TREEINFO_H
17#define TREEINFO_H
18
John Reckc25e5062014-06-18 14:21:29 -070019#include <string>
20
John Recke45b1fd2014-04-15 09:50:16 -070021#include <utils/Timers.h>
John Recke45b1fd2014-04-15 09:50:16 -070022
John Recka447d292014-06-11 18:39:44 -070023#include "DamageAccumulator.h"
John Recke4267ea2014-06-03 15:53:15 -070024#include "utils/Macros.h"
25
John Recke45b1fd2014-04-15 09:50:16 -070026namespace android {
27namespace uirenderer {
28
John Reckff941dc2014-05-14 16:34:14 -070029class BaseRenderNodeAnimator;
John Reck52244ff2014-05-01 21:27:37 -070030class AnimationListener;
John Reck25fbb3f2014-06-12 13:46:45 -070031class OpenGLRenderer;
John Reck3b202512014-06-23 13:13:08 -070032class RenderState;
John Recke45b1fd2014-04-15 09:50:16 -070033
John Reck52244ff2014-05-01 21:27:37 -070034class AnimationHook {
John Recke45b1fd2014-04-15 09:50:16 -070035public:
John Reckff941dc2014-05-14 16:34:14 -070036 virtual void callOnFinished(BaseRenderNodeAnimator* animator, AnimationListener* listener) = 0;
John Recke45b1fd2014-04-15 09:50:16 -070037protected:
John Reck52244ff2014-05-01 21:27:37 -070038 ~AnimationHook() {}
John Recke45b1fd2014-04-15 09:50:16 -070039};
40
John Reckc25e5062014-06-18 14:21:29 -070041class ErrorHandler {
42public:
43 virtual void onError(const std::string& message) = 0;
44protected:
45 ~ErrorHandler() {}
46};
47
John Recke4267ea2014-06-03 15:53:15 -070048// This would be a struct, but we want to PREVENT_COPY_AND_ASSIGN
49class TreeInfo {
50 PREVENT_COPY_AND_ASSIGN(TreeInfo);
51public:
52 enum TraversalMode {
53 // The full monty - sync, push, run animators, etc... Used by DrawFrameTask
54 // May only be used if both the UI thread and RT thread are blocked on the
55 // prepare
56 MODE_FULL,
57 // Run only what can be done safely on RT thread. Currently this only means
58 // animators, but potentially things like SurfaceTexture updates
59 // could be handled by this as well if there are no listeners
60 MODE_RT_ONLY,
61 // The subtree is being detached. Maybe. If the RenderNode is present
62 // in both the old and new display list's children then it will get a
63 // MODE_MAYBE_DETACHING followed shortly by a MODE_FULL.
64 // Push any pending display list changes in case it is detached,
65 // but don't evaluate animators and such as if it isn't detached as a
66 // MODE_FULL will follow shortly.
67 MODE_MAYBE_DETACHING,
68 // TODO: TRIM_MEMORY?
69 };
70
John Reck3b202512014-06-23 13:13:08 -070071 explicit TreeInfo(TraversalMode mode, RenderState& renderState)
John Recke4267ea2014-06-03 15:53:15 -070072 : mode(mode)
73 , frameTimeMs(0)
John Reckf9be7792014-05-02 18:21:16 -070074 , animationHook(NULL)
John Recke4267ea2014-06-03 15:53:15 -070075 , prepareTextures(mode == MODE_FULL)
John Recka447d292014-06-11 18:39:44 -070076 , damageAccumulator(NullDamageAccumulator::instance())
John Reck3b202512014-06-23 13:13:08 -070077 , renderState(renderState)
78 , renderer(NULL)
79 , errorHandler(NULL)
John Recke45b1fd2014-04-15 09:50:16 -070080 {}
81
John Reck68bfe0a2014-06-24 15:34:58 -070082 explicit TreeInfo(TraversalMode mode, const TreeInfo& clone)
83 : mode(mode)
84 , frameTimeMs(clone.frameTimeMs)
85 , animationHook(clone.animationHook)
86 , prepareTextures(mode == MODE_FULL)
87 , damageAccumulator(clone.damageAccumulator)
88 , renderState(clone.renderState)
89 , renderer(clone.renderer)
90 , errorHandler(clone.errorHandler)
91 {}
92
John Recke4267ea2014-06-03 15:53:15 -070093 const TraversalMode mode;
John Reckf9be7792014-05-02 18:21:16 -070094 nsecs_t frameTimeMs;
95 AnimationHook* animationHook;
John Recke4267ea2014-06-03 15:53:15 -070096 // TODO: Remove this? Currently this is used to signal to stop preparing
97 // textures if we run out of cache space.
John Recke45b1fd2014-04-15 09:50:16 -070098 bool prepareTextures;
John Recka447d292014-06-11 18:39:44 -070099 // Must not be null
100 IDamageAccumulator* damageAccumulator;
John Reck3b202512014-06-23 13:13:08 -0700101 RenderState& renderState;
John Reck25fbb3f2014-06-12 13:46:45 -0700102 // The renderer that will be drawing the next frame. Use this to push any
103 // layer updates or similar. May be NULL.
104 OpenGLRenderer* renderer;
John Reckc25e5062014-06-18 14:21:29 -0700105 ErrorHandler* errorHandler;
John Reckf9be7792014-05-02 18:21:16 -0700106
107 struct Out {
108 Out()
109 : hasFunctors(false)
110 , hasAnimations(false)
111 , requiresUiRedraw(false)
John Recka5dda642014-05-22 15:43:54 -0700112 , canDrawThisFrame(true)
John Reckf9be7792014-05-02 18:21:16 -0700113 {}
114 bool hasFunctors;
115 // This is only updated if evaluateAnimations is true
116 bool hasAnimations;
117 // This is set to true if there is an animation that RenderThread cannot
118 // animate itself, such as if hasFunctors is true
119 // This is only set if hasAnimations is true
120 bool requiresUiRedraw;
John Recka5dda642014-05-22 15:43:54 -0700121 // This is set to true if draw() can be called this frame
122 // false means that we must delay until the next vsync pulse as frame
123 // production is outrunning consumption
124 // NOTE that if this is false CanvasContext will set either requiresUiRedraw
125 // *OR* will post itself for the next vsync automatically, use this
126 // only to avoid calling draw()
127 bool canDrawThisFrame;
John Reckf9be7792014-05-02 18:21:16 -0700128 } out;
John Recke45b1fd2014-04-15 09:50:16 -0700129
130 // TODO: Damage calculations
131};
132
133} /* namespace uirenderer */
134} /* namespace android */
135
136#endif /* TREEINFO_H */