Merge "Fix more compile error/warnings for gcc-13" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / animated-vector-image / vector-animation-thread.h
1 #ifndef DALI_TOOLKIT_VECTOR_ANIMATION_THREAD_H
2 #define DALI_TOOLKIT_VECTOR_ANIMATION_THREAD_H
3
4 /*
5  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 // EXTERNAL INCLUDES
21 #include <dali/devel-api/threading/conditional-wait.h>
22 #include <dali/devel-api/threading/thread.h>
23 #include <dali/integration-api/adaptor-framework/log-factory-interface.h>
24 #include <dali/public-api/adaptor-framework/round-robin-container-view.h>
25 #include <dali/public-api/signals/connection-tracker.h>
26 #include <memory>
27
28 // INTERNAL INCLUDES
29 #include <dali-toolkit/internal/visuals/animated-vector-image/vector-animation-task.h>
30
31 namespace Dali
32 {
33 namespace Toolkit
34 {
35 namespace Internal
36 {
37 /**
38  * The main animation thread for vector animations
39  */
40 class VectorAnimationThread : public Thread
41 {
42 public:
43   /**
44    * @brief Constructor.
45    */
46   VectorAnimationThread();
47
48   /**
49    * @brief Destructor.
50    */
51   ~VectorAnimationThread() override;
52
53   /**
54    * @brief Add a animation task into the vector animation thread, called by main thread.
55    *
56    * @param[in] task The task added to the thread.
57    */
58   void AddTask(VectorAnimationTaskPtr task);
59
60   /**
61    * @brief Called when the rasterization is completed from the rasterize thread.
62    *
63    * @param[in] task The completed task
64    * @param[in] success true if the task succeeded, false otherwise.
65    * @param[in] keepAnimation true if the animation is running, false otherwise.
66    */
67   void OnTaskCompleted(VectorAnimationTaskPtr task, bool success, bool keepAnimation);
68
69   /**
70    * @brief Called when the sleep thread is awaken.
71    */
72   void OnAwakeFromSleep();
73
74   /**
75    * @brief Add an event trigger callback.
76    *
77    * @param callback The callback to add
78    * @note Ownership of the callback is NOT passed onto this class.
79    * @note The callback will be excuted in the main thread.
80    */
81   void AddEventTriggerCallback(CallbackBase* callback);
82
83   /**
84    * @brief Remove an event trigger callback.
85    *
86    * @param callback The callback to remove
87    */
88   void RemoveEventTriggerCallback(CallbackBase* callback);
89
90 protected:
91   /**
92    * @brief The entry function of the animation thread.
93    */
94   void Run() override;
95
96 private:
97   /**
98    * Rasterizes the tasks.
99    */
100   void Rasterize();
101
102   /**
103    * @brief Called when the event callback is triggered.
104    */
105   void OnEventCallbackTriggered();
106
107   /**
108    * @brief The thread to sleep until the next frame time.
109    */
110   class SleepThread : public Thread
111   {
112   public:
113     /**
114      * @brief Constructor.
115      */
116     SleepThread(CallbackBase* callback);
117
118     /**
119      * @brief Destructor.
120      */
121     ~SleepThread() override;
122
123     /**
124      * @brief Sleeps untile the specified time point.
125      */
126     void SleepUntil(std::chrono::time_point<std::chrono::steady_clock> timeToSleepUntil);
127
128   protected:
129     /**
130      * @brief The entry function of the animation thread.
131      */
132     void Run() override;
133
134   private:
135     SleepThread(const SleepThread& thread) = delete;
136     SleepThread& operator=(const SleepThread& thread) = delete;
137
138   private:
139     ConditionalWait                                    mConditionalWait;
140     std::unique_ptr<CallbackBase>                      mAwakeCallback;
141     std::chrono::time_point<std::chrono::steady_clock> mSleepTimePoint;
142     const Dali::LogFactoryInterface&                   mLogFactory;
143     bool                                               mNeedToSleep;
144     bool                                               mDestroyThread;
145   };
146
147 private:
148   // Undefined
149   VectorAnimationThread(const VectorAnimationThread& thread) = delete;
150
151   // Undefined
152   VectorAnimationThread& operator=(const VectorAnimationThread& thread) = delete;
153
154 private:
155   std::vector<VectorAnimationTaskPtr>  mAnimationTasks;
156   std::vector<VectorAnimationTaskPtr>  mCompletedTasks;
157   std::vector<VectorAnimationTaskPtr>  mWorkingTasks;
158   std::vector<CallbackBase*>           mTriggerEventCallbacks{}; // Callbacks are not owned
159   SleepThread                          mSleepThread;
160   ConditionalWait                      mConditionalWait;
161   std::unique_ptr<EventThreadCallback> mEventTrigger{};
162   bool                                 mNeedToSleep;
163   bool                                 mDestroyThread;
164   bool                                 mEventTriggered{false};
165   const Dali::LogFactoryInterface&     mLogFactory;
166   Dali::AsyncTaskManager               mAsyncTaskManager;
167 };
168
169 } // namespace Internal
170
171 } // namespace Toolkit
172
173 } // namespace Dali
174
175 #endif // #endif // DALI_TOOLKIT_VECTOR_ANIMATION_THREAD_H