21a7fc5f737fe17e12a561a225cf7a7fbf588348
[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 backend = Dali::Internal::Adaptor::GetFrameworkFactory()->GetFrameworkBackend();
58   if(backend == FrameworkBackend::DEFAULT)
59   {
60     ecore_wl2_init();
61   }
62 }
63
64 void Shutdown()
65 {
66   auto backend = Dali::Internal::Adaptor::GetFrameworkFactory()->GetFrameworkBackend();
67   if(backend == FrameworkBackend::DEFAULT)
68   {
69     ecore_wl2_shutdown();
70   }
71 }
72
73 void GetScreenSize(int32_t& width, int32_t& height)
74 {
75   auto backend = Dali::Internal::Adaptor::GetFrameworkFactory()->GetFrameworkBackend();
76   if(backend == 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 backend = Dali::Internal::Adaptor::GetFrameworkFactory()->GetFrameworkBackend();
99   if(backend == 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 backend = Dali::Internal::Adaptor::GetFrameworkFactory()->GetFrameworkBackend();
114   if(backend == 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 }
120
121 bool GetKeyboardRepeatInfo(float& rate, float& delay)
122 {
123   auto backend = Dali::Internal::Adaptor::GetFrameworkFactory()->GetFrameworkBackend();
124   if(backend == FrameworkBackend::DEFAULT)
125   {
126     Ecore_Wl2_Input* input = ecore_wl2_input_default_input_get(ecore_wl2_connected_display_get(NULL));
127     double           rateVal, delayVal;
128     bool             ret = ecore_wl2_input_keyboard_repeat_get(input, &rateVal, &delayVal);
129     rate                 = static_cast<float>(rateVal);
130     delay                = static_cast<float>(delayVal);
131
132     return ret;
133   }
134   return false;
135 }
136
137 } // namespace WindowSystem
138
139 } // namespace Adaptor
140
141 } // namespace Internal
142
143 } // namespace Dali
144
145 #pragma GCC diagnostic pop