Tizen version check for some ecore_wl2 API
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / tizen-wayland / ecore-wl2 / window-system-ecore-wl2.cpp
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // EXTERNAL_HEADERS
19 #include <Ecore_Wl2.h>
20 #include <dali/integration-api/debug.h>
21
22 // INTERNAL HEADERS
23 #include <dali/devel-api/adaptor-framework/keyboard.h>
24 #include <dali/internal/adaptor/common/framework-factory.h>
25 #include <dali/internal/system/common/time-service.h>
26 #include <dali/internal/window-system/common/window-system.h>
27
28 #define START_DURATION_CHECK()                               \
29   uint32_t durationMilliSeconds = static_cast<uint32_t>(-1); \
30   uint32_t startTime, endTime;                               \
31   startTime = TimeService::GetMilliSeconds();
32
33 #define FINISH_DURATION_CHECK(functionName)                                             \
34   endTime              = TimeService::GetMilliSeconds();                                \
35   durationMilliSeconds = endTime - startTime;                                           \
36   if(durationMilliSeconds > 0)                                                          \
37   {                                                                                     \
38     DALI_LOG_DEBUG_INFO("%s : duration [%u ms]\n", functionName, durationMilliSeconds); \
39   }
40
41 namespace Dali
42 {
43 namespace Internal
44 {
45 namespace Adaptor
46 {
47 namespace WindowSystem
48 {
49 namespace
50 {
51 static int32_t gScreenWidth  = 0;
52 static int32_t gScreenHeight = 0;
53 } // unnamed namespace
54
55 void Initialize()
56 {
57   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
58   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
59   {
60     ecore_wl2_init();
61   }
62 }
63
64 void Shutdown()
65 {
66   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
67   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
68   {
69     ecore_wl2_shutdown();
70   }
71 }
72
73 void GetScreenSize(int32_t& width, int32_t& height)
74 {
75   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
76   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
77   {
78     if(gScreenWidth == 0 || gScreenHeight == 0)
79     {
80       Ecore_Wl2_Display* display = ecore_wl2_display_connect(NULL);
81       if(display)
82       {
83         START_DURATION_CHECK();
84         ecore_wl2_display_screen_size_get(display, &gScreenWidth, &gScreenHeight);
85         FINISH_DURATION_CHECK("ecore_wl2_display_screen_size_get");
86
87         DALI_ASSERT_ALWAYS((gScreenWidth > 0) && "screen width is 0");
88         DALI_ASSERT_ALWAYS((gScreenHeight > 0) && "screen height is 0");
89       }
90     }
91   }
92   width  = gScreenWidth;
93   height = gScreenHeight;
94 }
95
96 void UpdateScreenSize()
97 {
98   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
99   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
100   {
101     Ecore_Wl2_Display* display = ecore_wl2_display_connect(NULL);
102     if(display)
103     {
104       START_DURATION_CHECK();
105       ecore_wl2_display_screen_size_get(display, &gScreenWidth, &gScreenHeight);
106       FINISH_DURATION_CHECK("ecore_wl2_display_screen_size_get");
107     }
108   }
109 }
110
111 bool SetKeyboardRepeatInfo(float rate, float delay)
112 {
113   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
114   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
115   {
116     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
117     return ecore_wl2_input_keyboard_repeat_set(input, static_cast<double>(rate), static_cast<double>(delay));
118   }
119   return false;
120 }
121
122 bool GetKeyboardRepeatInfo(float& rate, float& delay)
123 {
124   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
125   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
126   {
127     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
128     double           rateVal, delayVal;
129     bool             ret = ecore_wl2_input_keyboard_repeat_get(input, &rateVal, &delayVal);
130     rate                 = static_cast<float>(rateVal);
131     delay                = static_cast<float>(delayVal);
132
133     return ret;
134   }
135   return false;
136 }
137
138 bool SetKeyboardHorizontalRepeatInfo(float rate, float delay)
139 {
140 #ifdef OVER_TIZEN_VERSION_8
141   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
142   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
143   {
144     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
145     return ecore_wl2_input_keyboard_horizontal_way_repeat_set(input, static_cast<double>(rate), static_cast<double>(delay));
146   }
147   return false;
148 #else
149   return SetKeyboardRepeatInfo(rate, delay);
150 #endif
151 }
152
153 bool GetKeyboardHorizontalRepeatInfo(float& rate, float& delay)
154 {
155 #ifdef OVER_TIZEN_VERSION_8
156   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
157   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
158   {
159     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
160     double           rateVal, delayVal;
161     bool             ret = ecore_wl2_input_keyboard_horizontal_way_repeat_get(input, &rateVal, &delayVal);
162     rate                 = static_cast<float>(rateVal);
163     delay                = static_cast<float>(delayVal);
164
165     return ret;
166   }
167   return false;
168 #else
169   return GetKeyboardRepeatInfo(rate, delay);
170 #endif
171 }
172
173 bool SetKeyboardVerticalRepeatInfo(float rate, float delay)
174 {
175 #ifdef OVER_TIZEN_VERSION_8
176   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
177   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
178   {
179     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
180     return ecore_wl2_input_keyboard_vertical_way_repeat_set(input, static_cast<double>(rate), static_cast<double>(delay));
181   }
182   return false;
183 #else
184   return SetKeyboardRepeatInfo(rate, delay);
185 #endif
186 }
187
188 bool GetKeyboardVerticalRepeatInfo(float& rate, float& delay)
189 {
190 #ifdef OVER_TIZEN_VERSION_8
191   auto frameworkFactory = Dali::Internal::Adaptor::GetFrameworkFactory();
192   if(frameworkFactory == nullptr || (frameworkFactory && frameworkFactory->GetFrameworkBackend() == FrameworkBackend::DEFAULT))
193   {
194     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
195     double           rateVal, delayVal;
196     bool             ret = ecore_wl2_input_keyboard_vertical_way_repeat_get(input, &rateVal, &delayVal);
197     rate                 = static_cast<float>(rateVal);
198     delay                = static_cast<float>(delayVal);
199
200     return ret;
201   }
202   return false;
203 #else
204   return GetKeyboardRepeatInfo(rate, delay);
205 #endif
206 }
207
208 } // namespace WindowSystem
209
210 } // namespace Adaptor
211
212 } // namespace Internal
213
214 } // namespace Dali
215
216 #pragma GCC diagnostic pop