Merge "Fix documentation for Text::EditableControlInterface interface override functi...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / animated-image / rolling-animated-image-cache.h
1 #ifndef DALI_TOOLKIT_INTERNAL_ROLLING_ANIMATED_IMAGE_CACHE_H
2 #define DALI_TOOLKIT_INTERNAL_ROLLING_ANIMATED_IMAGE_CACHE_H
3
4 /*
5  * Copyright (c) 2020 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/adaptor-framework/animated-image-loading.h>
22 #include <dali/devel-api/common/circular-queue.h>
23 #include <dali-toolkit/internal/visuals/animated-image/image-cache.h>
24 #include <dali-toolkit/internal/visuals/texture-manager-impl.h>
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 namespace Internal
31 {
32
33 /**
34  * Class to manage a rolling cache of Animated images, where the cache size
35  * is smaller than the total number of images.
36  *
37  * Frames are always ready, so the observer.FrameReady callback is never triggered;
38  * the FirstFrame and NextFrame APIs will always return a texture.
39  */
40 class RollingAnimatedImageCache : public ImageCache, public TextureUploadObserver
41 {
42 public:
43   /**
44    * Constructor.
45    * @param[in] textureManager The texture manager
46    * @param[in] animatedImageLoader The loaded animated image
47    * @param[in] frameCount The number of frames in the animated image
48    * @param[in] observer FrameReady observer
49    * @param[in] cacheSize The size of the cache
50    * @param[in] batchSize The size of a batch to load
51    * @param[in] isSynchronousLoading The flag to define whether to load first frame synchronously
52    *
53    * This will start loading textures immediately, according to the
54    * batch and cache sizes.
55    */
56   RollingAnimatedImageCache( TextureManager&                 textureManager,
57                              AnimatedImageLoading&           animatedImageLoader,
58                              uint32_t                        frameCount,
59                              ImageCache::FrameReadyObserver& observer,
60                              uint16_t                        cacheSize,
61                              uint16_t                        batchSize,
62                              bool                            isSynchronousLoading );
63
64   /**
65    * Destructor
66    */
67   ~RollingAnimatedImageCache() override;
68
69   /**
70    * Get the Nth frame. If it's not ready, this will trigger the
71    * sending of FrameReady() when the image becomes ready.
72    */
73   TextureSet Frame( uint32_t frameIndex ) override;
74
75   /**
76    * Get the first frame. If it's not ready, this will trigger the
77    * sending of FrameReady() when the image becomes ready.
78    */
79   TextureSet FirstFrame() override;
80
81   /**
82    * Get the interval of Nth frame.
83    */
84   uint32_t GetFrameInterval( uint32_t frameIndex ) override;
85
86 private:
87   /**
88    * @return true if the front frame is ready
89    */
90   bool IsFrontReady() const;
91
92   /**
93    * Request to Load a frame
94    */
95   void RequestFrameLoading( uint32_t frameIndex );
96
97   /**
98    * Load the next batch of images
99    */
100   void LoadBatch();
101
102   /**
103    * Find the matching image frame, and set it to ready
104    */
105   void SetImageFrameReady( TextureManager::TextureId textureId );
106
107   /**
108    * Get the texture set of the front frame.
109    * @return the texture set
110    */
111   TextureSet GetFrontTextureSet() const;
112
113   /**
114    * Get the texture id of the given index
115    */
116   TextureManager::TextureId GetCachedTextureId( int index ) const;
117
118   /**
119    * Check if the front frame has become ready - if so, inform observer
120    * @param[in] wasReady Readiness before call.
121    */
122   void CheckFrontFrame( bool wasReady );
123
124 protected:
125   void UploadComplete(
126     bool           loadSuccess,
127     int32_t        textureId,
128     TextureSet     textureSet,
129     bool           useAtlasing,
130     const Vector4& atlasRect,
131     bool           preMultiplied ) override;
132
133   void LoadComplete(
134     bool loadSuccess,
135     Devel::PixelBuffer pixelBuffer,
136     const VisualUrl& url,
137     bool preMultiplied ) override;
138
139 private:
140   /**
141    * Secondary class to hold readiness and index into url
142    */
143   struct ImageFrame
144   {
145     unsigned int mFrameNumber = 0u;
146     bool mReady = false;
147   };
148
149   Dali::AnimatedImageLoading  mAnimatedImageLoading;
150   uint32_t                    mFrameCount;
151   int                         mFrameIndex;
152   std::vector<UrlStore>       mImageUrls;
153   std::vector<int32_t>        mIntervals;
154   std::vector<uint32_t>       mLoadWaitingQueue;
155   CircularQueue<ImageFrame>   mQueue;
156   bool                        mIsSynchronousLoading;
157   bool                        mOnLoading;
158 };
159
160 } // namespace Internal
161
162 } // namespace Toolkit
163
164 } // namespace Dali
165
166 #endif //DALI_TOOLKIT_INTERNAL_ROLLING_ANIMATED_IMAGE_CACHE_H