Merge "Pixmap render surface synchronization moved to thread-synchronization" into...
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / resource-loader / resource-thread-image.h
1 #ifndef __DALI_TIZEN_PLATFORM_RESOURCE_THREAD_IMAGE_H__
2 #define __DALI_TIZEN_PLATFORM_RESOURCE_THREAD_IMAGE_H__
3
4 /*
5  * Copyright (c) 2015 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/integration-api/resource-cache.h>
22 #include <dali/integration-api/resource-types.h>
23
24 // INTERNAL INCLUDES
25 #include "resource-thread-base.h"
26
27 namespace Dali
28 {
29
30 namespace TizenPlatform
31 {
32
33 class ResourceThreadImage : public ResourceThreadBase
34 {
35 public:
36   /**
37    * Constructor
38    * @param[in] resourceLoader A reference to the ResourceLoader
39    */
40   ResourceThreadImage( ResourceLoader& resourceLoader );
41
42   /**
43    * Destructor
44    */
45   virtual ~ResourceThreadImage();
46
47
48 private:
49   /**
50    * @copydoc ResourceThreadBase::Load
51    */
52   virtual void Load(const Integration::ResourceRequest& request);
53
54   /**
55    * @copydoc ResourceThreadBase::Download
56    */
57   virtual void Download(const Integration::ResourceRequest& request);
58
59   /**
60    * @copydoc ResourceThreadBase::Decode
61    */
62   virtual void Decode(const Integration::ResourceRequest& request);
63
64   /**
65    * Download a requested image into a memory buffer.
66    * @param[in] request  The requested resource/file url and attributes
67    * @param[out] dataBuffer  A memory buffer object to be written with downloaded image data.
68    * @param[out] dataSize  The size of the memory buffer.
69    */
70   bool DownloadRemoteImageIntoMemory(const Integration::ResourceRequest& request, Dali::Vector<uint8_t>& dataBuffer, size_t& dataSize);
71
72   /**
73    * Load a requested image from a local file.
74    * @param[in] request  The requested resource/file url and attributes
75    */
76   void LoadImageFromLocalFile(const Integration::ResourceRequest& request);
77
78   /**
79    * Decode a requested image from a memory buffer.
80    * @param[in] blobBytes  A pointer to the memory buffer containig the requested image data.
81    * @param[in] blobSize  The size of the memory buffer containing the requested image data.
82    * @param[in] request  The requested resource/file url and attributes
83    */
84   void DecodeImageFromMemory(void* blobBytes, size_t blobSize, const Integration::ResourceRequest& request);
85 }; // class ResourceThreadImage
86
87 } // namespace TizenPlatform
88
89 } // namespace Dali
90
91 #endif // __DALI_TIZEN_PLATFORM_RESOURCE_THREAD_IMAGE_H__