client: add tdm_client_handle_events_timeout
[platform/core/uifw/libtdm.git] / src / tdm_macro.h
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: Eunchul Kim <chulspro.kim@samsung.com>,
8  *          JinYoung Jeon <jy0.jeon@samsung.com>,
9  *          Taeheon Kim <th908.kim@samsung.com>,
10  *          YoungJun Cho <yj44.cho@samsung.com>,
11  *          SooChan Lim <sc1.lim@samsung.com>,
12  *          Boram Park <sc1.lim@samsung.com>
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the
16  * "Software"), to deal in the Software without restriction, including
17  * without limitation the rights to use, copy, modify, merge, publish,
18  * distribute, sub license, and/or sell copies of the Software, and to
19  * permit persons to whom the Software is furnished to do so, subject to
20  * the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
30  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33  *
34 **************************************************************************/
35
36 #ifndef _TDM_MACRO_H_
37 #define _TDM_MACRO_H_
38
39 #include <stdio.h>
40 #include <string.h>
41 #include <stdlib.h>
42 #include <sys/types.h>
43
44 #include <tdm_common.h>
45 #include <tbm_surface.h>
46
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50
51 #define TDM_SERVER_REPLY_MSG_LEN        8192
52 #define TDM_DEBUG_REPLY_MSG_LEN         2048
53
54 #undef EXTERN
55 #undef DEPRECATED
56 #undef INTERN
57
58 #if defined(__GNUC__) && __GNUC__ >= 4
59 #define EXTERN __attribute__ ((visibility("default")))
60 #else
61 #define EXTERN
62 #endif
63
64 #if defined(__GNUC__) && __GNUC__ >= 4
65 #define INTERN __attribute__ ((visibility("hidden")))
66 #else
67 #define INTERN
68 #endif
69
70 #if defined(__GNUC__) && __GNUC__ >= 4
71 #define DEPRECATED __attribute__ ((deprecated))
72 #else
73 #define DEPRECATED
74 #endif
75
76 /* check condition */
77 #define TDM_RETURN_IF_FAIL(cond) { \
78         if (!(cond))  { \
79                 TDM_ERR("'%s' failed", #cond); \
80                 return; \
81         } \
82 }
83 #define TDM_RETURN_VAL_IF_FAIL(cond, val) { \
84         if (!(cond)) { \
85                 TDM_ERR("'%s' failed", #cond); \
86                 return val; \
87         } \
88 }
89 #define TDM_RETURN_VAL_IF_FAIL_WITH_ERROR(cond, error_v, val) { \
90         if (!(cond)) { \
91                 TDM_ERR("'%s' failed", #cond); \
92                 ret = error_v; \
93                 if (error) *error = ret; \
94                 return val; \
95         } \
96 }
97
98 #define TDM_WARNING_IF_FAIL(cond)  { \
99         if (!(cond)) \
100                 TDM_WRN("'%s' failed", #cond); \
101 }
102 #define TDM_GOTO_IF_FAIL(cond, dst) { \
103         if (!(cond)) { \
104                 TDM_ERR("'%s' failed", #cond); \
105                 goto dst; \
106         } \
107 }
108 #define TDM_EXIT_IF_FAIL(cond) { \
109         if (!(cond)) { \
110                 TDM_ERR("'%s' failed", #cond); \
111                 exit(0); \
112         } \
113 }
114
115 #define TDM_NEVER_GET_HERE() TDM_WRN("** NEVER GET HERE **")
116
117 #define TDM_SNPRINTF(p, len, fmt, ARG...)  \
118         do { \
119                 if (p && len && *len > 0) { \
120                         int s = snprintf(p, *len, fmt, ##ARG); \
121                         p += s; \
122                         *len -= s; \
123                 } \
124         } while (0)
125
126 #define TDM_DBG_RETURN_IF_FAIL(cond) { \
127         if (!(cond))  { \
128                 TDM_SNPRINTF(reply, len, "[%s %d] '%s' failed\n", __func__, __LINE__, #cond); \
129                 return; \
130         } \
131 }
132 #define TDM_DBG_GOTO_IF_FAIL(cond, dst) { \
133         if (!(cond))  { \
134                 TDM_SNPRINTF(reply, len, "[%s %d] '%s' failed\n", __func__, __LINE__, #cond); \
135                 goto dst; \
136         } \
137 }
138
139 #define TDM_NOT_DEFINED_VALUE       (-1)
140 #define TDM_FRONT_VALUE(n)          (((n) > 0) ? (n) : TDM_NOT_DEFINED_VALUE)
141
142 #define TDM_MAX(x, y) (((x) > (y)) ? (x) : (y))
143 #define TDM_MIN(x, y) (((x) < (y)) ? (x) : (y))
144
145 #define TDM_TIME(sec, usec)   ((double)(sec) + ((double)(usec)) / 1000000.0)
146 #define TDM_TIME_SEC(time)    ((unsigned int)(time))
147 #define TDM_TIME_USEC(time)   (unsigned int)(((time) - (unsigned int)(time)) * 1000000.0)
148
149 #define C(b, m)             (((b) >> (m)) & 0xFF)
150 #define B(c, s)             ((((unsigned int)(c)) & 0xff) << (s))
151 #define FOURCC(a, b, c, d)  (B(d, 24) | B(c, 16) | B(b, 8) | B(a, 0))
152 #define FOURCC_STR(id)      C(id, 0), C(id, 8), C(id, 16), C(id, 24)
153 #define FOURCC_ID(str)      FOURCC(((char*)str)[0], ((char*)str)[1], ((char*)str)[2], ((char*)str)[3])
154 #define IS_RGB(f)           ((f) == TBM_FORMAT_XRGB8888 || (f) == TBM_FORMAT_ARGB8888)
155
156 /* don't using !,$,# */
157 #define TDM_DELIM           "@^&*+-|,:~"
158 #define TDM_ALIGN(a, b)     (((a) + ((b) - 1)) & ~((b) - 1))
159 #define TDM_SWAP(a, b)      ({ int t; t = a; a = b; b = t; })
160 #define TDM_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
161
162 struct tdm_type_name {
163         int type;
164         const char *name;
165 };
166
167 #define TDM_TYPE_NAME_FN(res) \
168 static inline const char * tdm_##res##_str(int type)    \
169 {                       \
170         unsigned int i;                                 \
171         for (i = 0; i < TDM_ARRAY_SIZE(tdm_##res##_names); i++) { \
172                 if (tdm_##res##_names[i].type == type)  \
173                         return tdm_##res##_names[i].name;       \
174         }                                               \
175         return "(invalid)";                             \
176 }
177
178 static struct tdm_type_name tdm_dpms_names[] = {
179         { TDM_OUTPUT_DPMS_ON, "on" },
180         { TDM_OUTPUT_DPMS_STANDBY, "standby" },
181         { TDM_OUTPUT_DPMS_SUSPEND, "suspend" },
182         { TDM_OUTPUT_DPMS_OFF, "off" },
183 };
184 TDM_TYPE_NAME_FN(dpms)
185
186 static struct tdm_type_name tdm_status_names[] = {
187         { TDM_OUTPUT_CONN_STATUS_DISCONNECTED, "disconnected" },
188         { TDM_OUTPUT_CONN_STATUS_CONNECTED, "connected" },
189         { TDM_OUTPUT_CONN_STATUS_MODE_SETTED, "mode_setted" },
190 };
191 TDM_TYPE_NAME_FN(status)
192
193 static struct tdm_type_name tdm_conn_names[] = {
194         { TDM_OUTPUT_TYPE_Unknown, "Unknown" },
195         { TDM_OUTPUT_TYPE_VGA, "VGA" },
196         { TDM_OUTPUT_TYPE_DVII, "DVII" },
197         { TDM_OUTPUT_TYPE_DVID, "DVID" },
198         { TDM_OUTPUT_TYPE_DVIA, "DVIA" },
199         { TDM_OUTPUT_TYPE_Composite, "Composite" },
200         { TDM_OUTPUT_TYPE_SVIDEO, "SVIDEO" },
201         { TDM_OUTPUT_TYPE_LVDS, "LVDS" },
202         { TDM_OUTPUT_TYPE_Component, "Component" },
203         { TDM_OUTPUT_TYPE_9PinDIN, "9PinDIN" },
204         { TDM_OUTPUT_TYPE_DisplayPort, "DisplayPort" },
205         { TDM_OUTPUT_TYPE_HDMIA, "HDMIA" },
206         { TDM_OUTPUT_TYPE_HDMIB, "HDMIB" },
207         { TDM_OUTPUT_TYPE_TV, "TV" },
208         { TDM_OUTPUT_TYPE_eDP, "eDP" },
209         { TDM_OUTPUT_TYPE_VIRTUAL, "VIRTUAL" },
210         { TDM_OUTPUT_TYPE_DSI, "DSI" },
211 };
212 TDM_TYPE_NAME_FN(conn)
213
214 static struct tdm_type_name tdm_transform_names[] = {
215         { TDM_TRANSFORM_NORMAL, "none" },
216         { TDM_TRANSFORM_90, "90" },
217         { TDM_TRANSFORM_180, "180" },
218         { TDM_TRANSFORM_270, "270" },
219         { TDM_TRANSFORM_FLIPPED, "flipped" },
220         { TDM_TRANSFORM_FLIPPED_90, "90,flipped" },
221         { TDM_TRANSFORM_FLIPPED_180, "180,flipped" },
222         { TDM_TRANSFORM_FLIPPED_270, "270,flipped" },
223 };
224 TDM_TYPE_NAME_FN(transform)
225
226 static struct tdm_type_name tdm_value_type_names[] = {
227         { TDM_VALUE_TYPE_UNKNOWN, "unknown" },
228         { TDM_VALUE_TYPE_PTR, "ptr" },
229         { TDM_VALUE_TYPE_INT32, "int32" },
230         { TDM_VALUE_TYPE_UINT32, "uint32" },
231         { TDM_VALUE_TYPE_INT64, "int64" },
232         { TDM_VALUE_TYPE_UINT64, "uint64" },
233 };
234 TDM_TYPE_NAME_FN(value_type)
235
236 #define TDM_BIT_NAME_FB(res)                                    \
237 static inline const char * tdm_##res##_str(int type, char **reply, int *len)    \
238 {                       \
239         unsigned int i;                                         \
240         const char *sep = "";                                   \
241         if (type == 0) {        \
242                 TDM_SNPRINTF(*reply, len, "none");      \
243                 return NULL;    \
244         }       \
245         for (i = 0; i < TDM_ARRAY_SIZE(tdm_##res##_names); i++) {               \
246                 if (type & (1 << i)) {                          \
247                         TDM_SNPRINTF(*reply, len, "%s%s", sep, tdm_##res##_names[i]);   \
248                         sep = ",";                              \
249                 }                                               \
250         }                                                       \
251         return NULL;                                            \
252 }
253
254 static const char *tdm_mode_type_names[] = {
255         "builtin",
256         "clock_c",
257         "crtc_c",
258         "preferred",
259         "default",
260         "userdef",
261         "driver",
262 };
263 TDM_BIT_NAME_FB(mode_type)
264
265 static const char *tdm_mode_flag_names[] = {
266         "phsync",
267         "nhsync",
268         "pvsync",
269         "nvsync",
270         "interlace",
271         "dblscan",
272         "csync",
273         "pcsync",
274         "ncsync",
275         "hskew",
276         "bcast",
277         "pixmux",
278         "dblclk",
279         "clkdiv2"
280 };
281 TDM_BIT_NAME_FB(mode_flag)
282
283 static const char *tdm_layer_caps_names[] = {
284         "cursor",
285         "primary",
286         "overlay",
287         "",
288         "graphic",
289         "video",
290         "",
291         "",
292         "scale",
293         "transform",
294         "scanout",
295         "reserved",
296         "no_crop",
297 };
298 TDM_BIT_NAME_FB(layer_caps)
299
300 static const char *tdm_pp_caps_names[] = {
301         "sync",
302         "async",
303         "scale",
304         "transform",
305 };
306 TDM_BIT_NAME_FB(pp_caps)
307
308 static const char *tdm_capture_caps_names[] = {
309         "output",
310         "layer",
311         "scale",
312         "transform",
313 };
314 TDM_BIT_NAME_FB(capture_caps)
315
316 static inline char*
317 strtostr(char *buf, int len, char *str, char *delim)
318 {
319         char *end;
320         end = strpbrk(str, delim);
321         if (end)
322                 len = ((end - str + 1) < len) ? (end - str + 1) : len;
323         else {
324                 int l = strlen(str);
325                 len = ((l + 1) < len) ? (l + 1) : len;
326         }
327         snprintf(buf, len, "%s", str);
328         return str + len - 1;
329 }
330
331 #ifdef __cplusplus
332 }
333 #endif
334
335 #endif /* _TDM_MACRO_H_ */