dd0a94eadfd2478aef2bb46445aeee97afa4d333
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / gif-loading.h
1 #ifndef __DALI_INTERNAL_GIF_LOADING_H__
2 #define __DALI_INTERNAL_GIF_LOADING_H__
3
4 /*
5  * Copyright (c) 2018 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 <cstdint>
22 #include <memory>
23 #include <dali/public-api/math/rect.h>
24 #include <dali/public-api/common/dali-vector.h>
25 #include <dali/public-api/common/vector-wrapper.h>
26 #include <dali/public-api/math/uint-16-pair.h>
27
28 namespace Dali
29 {
30 class PixelData;
31 typedef Dali::Uint16Pair ImageDimensions;
32
33 /**
34  * Class to manage loading frames of an animated gif in small chunks. Lazy initializes only when
35  * data is actually needed.
36  * Note, once the GIF has loaded, the undecoded data will reside in memory until this object
37  * is released. (This is to speed up frame loads, which would otherwise have to re-acquire the
38  * data from disk)
39  */
40 class DALI_IMPORT_API GifLoading
41 {
42 public:
43
44   static std::unique_ptr<GifLoading> New( const std::string& url );
45
46   /**
47    * @brief Constructor
48    *
49    * Construct a Loader with the given URL
50    * @param[in] url The url of the gif image to load
51    */
52   GifLoading( const std::string& url );
53
54   // Moveable but not copyable
55
56   GifLoading( const GifLoading& ) = delete;
57   GifLoading& operator=( const GifLoading& ) = delete;
58   GifLoading( GifLoading&& ) = default;
59   GifLoading& operator=( GifLoading&& ) = default;
60
61   /**
62    * @brief Destructor
63    */
64   ~GifLoading();
65
66   /**
67    * @brief Load the next N Frames of the gif.
68    *
69    * @note This function will load the entire gif into memory if not already loaded.
70    * @param[in] frameStartIndex The frame counter to start from. Will usually be the next frame
71    * after the previous invocation of this method, or 0 to start.
72    * @param[in] count The number of frames to load
73    * @param[out] pixelData The vector in which to return the frame data
74    * @return True if the frame data was successfully loaded
75    */
76   bool LoadNextNFrames( int frameStartIndex, int count, std::vector<Dali::PixelData>& pixelData );
77
78   /**
79    * @brief Load all frames of an animated gif file.
80    *
81    * @note This function will load the entire gif into memory if not already loaded.
82    *
83    * @param[out] pixelData The loaded pixel data for each frame.
84    * @param[out] frameDelays The loaded delay time for each frame.
85    *
86    * @return True if the loading succeeded, false otherwise.
87    */
88   bool LoadAllFrames( std::vector<Dali::PixelData>& pixelData, Dali::Vector<uint32_t>& frameDelays );
89
90   /**
91    * @brief Get the size of a gif image.
92    *
93    * @note This function will load the entire gif into memory if not already loaded.
94    *
95    * @return The width and height in pixels of the gif image.
96    */
97   ImageDimensions GetImageSize();
98
99   /**
100    * @brief Get the number of frames in this gif.
101    *
102    * @note This function will load the entire gif into memory if not already loaded.
103    */
104   int GetImageCount();
105
106   /**
107    * @brief Load the frame delay counts into the provided array.
108    *
109    * @note This function will load the entire gif into memory if not already loaded.
110    * @param[in] frameDelays a vector to write the frame delays into
111    * @return true if the frame delays were successfully loaded
112    */
113   bool LoadFrameDelays( Dali::Vector<uint32_t>& frameDelays );
114
115 private:
116   struct Impl;
117   Impl* mImpl;
118 };
119
120 } // namespace Dali
121
122 #endif // __DALI_INTERNAL_GIF_LOADING_H__