Revert "[Tizen] Remove to call key consumed event in ATSPI bridge"
[platform/core/uifw/dali-adaptor.git] / dali / internal / imaging / tizen / native-image-source-queue-impl-tizen.h
1 #ifndef DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_TIZEN_H
2 #define DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_TIZEN_H
3
4 /*
5  * Copyright (c) 2021 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
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/threading/mutex.h>
23 #include <dali/public-api/common/vector-wrapper.h>
24 #include <tbm_surface.h>
25 #include <tbm_surface_queue.h>
26
27 // INTERNAL INCLUDES
28 #include <dali/internal/imaging/common/native-image-source-queue-impl.h>
29
30 namespace Dali
31 {
32 namespace Internal
33 {
34 namespace Adaptor
35 {
36 class EglGraphics;
37 class EglImageExtensions;
38
39 /**
40  * Dali internal NativeImageSource.
41  */
42 class NativeImageSourceQueueTizen : public Internal::Adaptor::NativeImageSourceQueue
43 {
44 public:
45   /**
46    * Create a new NativeImageSourceQueueTizen internally.
47    * Depending on hardware the width and height may have to be a power of two.
48    * @param[in] width The width of the image.
49    * @param[in] height The height of the image.
50    * @param[in] colorFormat The color format of the image.
51    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
52    * @return A smart-pointer to a newly allocated image.
53    */
54   static NativeImageSourceQueueTizen* New(uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorFormat colorFormat, Any nativeImageSourceQueue);
55
56   /**
57    * @copydoc Dali::NativeImageSourceQueue::GetNativeImageSourceQueue()
58    */
59   Any GetNativeImageSourceQueue() const override;
60
61   /**
62    * @copydoc Dali::NativeImageSourceQueue::SetSize
63    */
64   void SetSize(uint32_t width, uint32_t height) override;
65
66   /**
67    * @copydoc Dali::NativeImageSourceQueue::IgnoreSourceImage
68    */
69   void IgnoreSourceImage() override;
70
71   /**
72    * @copydoc Dali::NativeImageSourceQueue::CanDequeueBuffer
73    */
74   bool CanDequeueBuffer() override;
75
76   /**
77    * @copydoc Dali::NativeImageSourceQueue::DequeueBuffer
78    */
79   uint8_t* DequeueBuffer(uint32_t& width, uint32_t& height, uint32_t& stride) override;
80
81   /**
82    * @copydoc Dali::NativeImageSourceQueue::EnqueueBuffer
83    */
84   bool EnqueueBuffer(uint8_t* buffer) override;
85
86   /**
87    * destructor
88    */
89   ~NativeImageSourceQueueTizen() override;
90
91   /**
92    * @copydoc Dali::NativeImageInterface::CreateResource
93    */
94   bool CreateResource() override;
95
96   /**
97    * @copydoc Dali::NativeImageInterface::DestroyResource()
98    */
99   void DestroyResource() override;
100
101   /**
102    * @copydoc Dali::NativeImageInterface::TargetTexture()
103    */
104   uint32_t TargetTexture() override;
105
106   /**
107    * @copydoc Dali::NativeImageInterface::PrepareTexture()
108    */
109   void PrepareTexture() override;
110
111   /**
112    * @copydoc Dali::NativeImageInterface::GetWidth()
113    */
114   uint32_t GetWidth() const override
115   {
116     return mWidth;
117   }
118
119   /**
120    * @copydoc Dali::NativeImageInterface::GetHeight()
121    */
122   uint32_t GetHeight() const override
123   {
124     return mHeight;
125   }
126
127   /**
128    * @copydoc Dali::NativeImageInterface::RequiresBlending()
129    */
130   bool RequiresBlending() const override
131   {
132     return mBlendingRequired;
133   }
134
135   /**
136    * @copydoc Dali::NativeImageInterface::ApplyNativeFragmentShader()
137    */
138   bool ApplyNativeFragmentShader(std::string& shader) override;
139
140   /**
141    * @copydoc Dali::NativeImageInterface::GetCustomSamplerTypename()
142    */
143   const char* GetCustomSamplerTypename() const override;
144
145   /**
146    * @copydoc Dali::NativeImageInterface::GetTextureTarget()
147    */
148   int GetTextureTarget() const override;
149
150   /**
151    * @copydoc Dali::NativeImageInterface::GetNativeImageHandle()
152    */
153   Any GetNativeImageHandle() const override;
154
155   /**
156    * @copydoc Dali::NativeImageInterface::SourceChanged()
157    */
158   bool SourceChanged() const override;
159
160   /**
161    * @copydoc Dali::NativeImageInterface::GetExtension()
162    */
163   NativeImageInterface::Extension* GetNativeImageInterfaceExtension() override
164   {
165     return nullptr;
166   }
167
168 private:
169   /**
170    * Private constructor; @see NativeImageSourceQueue::New()
171    * @param[in] width The width of the image.
172    * @param[in] height The height of the image.
173    * @param[in] colorFormat The format of the image.
174    * @param[in] nativeImageSourceQueue contains tbm_surface_queue_h or is empty
175    */
176   NativeImageSourceQueueTizen(uint32_t width, uint32_t height, Dali::NativeImageSourceQueue::ColorFormat colorFormat, Any nativeImageSourceQueue);
177
178   void Initialize(Dali::NativeImageSourceQueue::ColorFormat colorFormat);
179
180   void ResetEglImageList(bool releaseConsumeSurface);
181
182   tbm_surface_queue_h GetSurfaceFromAny(Any source) const;
183
184   bool CheckBlending(int format);
185
186 private:
187   typedef std::pair<tbm_surface_h, void*> EglImagePair;
188   typedef std::pair<tbm_surface_h, void*> BufferPair;
189
190   Dali::Mutex               mMutex;              ///< Mutex
191   uint32_t                  mWidth;              ///< image width
192   uint32_t                  mHeight;             ///< image height
193   tbm_surface_queue_h       mTbmQueue;           ///< Tbm surface queue handle
194   tbm_surface_h             mConsumeSurface;     ///< The current tbm surface
195   std::vector<EglImagePair> mEglImages;          ///< EGL Image vector
196   std::vector<BufferPair>   mBuffers;            ///< Buffer vector
197   EglGraphics*              mEglGraphics;        ///< EGL Graphics
198   EglImageExtensions*       mEglImageExtensions; ///< The EGL Image Extensions
199   bool                      mOwnTbmQueue;        ///< Whether we created tbm queue
200   bool                      mBlendingRequired;   ///< Whether blending is required
201   bool                      mIsResized;          ///< Whether the size has changed
202 };
203
204 } // namespace Adaptor
205
206 } // namespace Internal
207
208 } // namespace Dali
209
210 #endif // DALI_INTERNAL_NATIVE_IMAGE_SOURCE_QUEUE_IMPL_TIZEN_H