increase version to 1.7.0
[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
53 #undef EXTERN
54 #undef DEPRECATED
55 #undef INTERN
56
57 #if defined(__GNUC__) && __GNUC__ >= 4
58 #define EXTERN __attribute__ ((visibility("default")))
59 #else
60 #define EXTERN
61 #endif
62
63 #if defined(__GNUC__) && __GNUC__ >= 4
64 #define INTERN __attribute__ ((visibility("hidden")))
65 #else
66 #define INTERN
67 #endif
68
69 #if defined(__GNUC__) && __GNUC__ >= 4
70 #define DEPRECATED __attribute__ ((deprecated))
71 #else
72 #define DEPRECATED
73 #endif
74
75 /* check condition */
76 #define TDM_RETURN_IF_FAIL(cond) { \
77         if (!(cond))  { \
78                 TDM_ERR("'%s' failed", #cond); \
79                 return; \
80         } \
81 }
82 #define TDM_RETURN_VAL_IF_FAIL(cond, val) { \
83         if (!(cond)) { \
84                 TDM_ERR("'%s' failed", #cond); \
85                 return val; \
86         } \
87 }
88 #define TDM_RETURN_VAL_IF_FAIL_WITH_ERROR(cond, error_v, val) { \
89         if (!(cond)) { \
90                 TDM_ERR("'%s' failed", #cond); \
91                 ret = error_v; \
92                 if (error) *error = ret; \
93                 return val; \
94         } \
95 }
96
97 #define TDM_WARNING_IF_FAIL(cond)  { \
98         if (!(cond)) \
99                 TDM_WRN("'%s' failed", #cond); \
100 }
101 #define TDM_GOTO_IF_FAIL(cond, dst) { \
102         if (!(cond)) { \
103                 TDM_ERR("'%s' failed", #cond); \
104                 goto dst; \
105         } \
106 }
107 #define TDM_EXIT_IF_FAIL(cond) { \
108         if (!(cond)) { \
109                 TDM_ERR("'%s' failed", #cond); \
110                 exit(0); \
111         } \
112 }
113
114 #define TDM_NEVER_GET_HERE() TDM_WRN("** NEVER GET HERE **")
115
116 #define TDM_SNPRINTF(p, len, fmt, ARG...)  \
117         do { \
118                 if (p && len && *len > 0) { \
119                         int s = snprintf(p, *len, fmt, ##ARG); \
120                         p += s; \
121                         *len -= s; \
122                 } \
123         } while (0)
124
125 #define TDM_DBG_RETURN_IF_FAIL(cond) { \
126         if (!(cond))  { \
127                 TDM_SNPRINTF(reply, len, "[%s %d] '%s' failed\n", __func__, __LINE__, #cond); \
128                 return; \
129         } \
130 }
131 #define TDM_DBG_GOTO_IF_FAIL(cond, dst) { \
132         if (!(cond))  { \
133                 TDM_SNPRINTF(reply, len, "[%s %d] '%s' failed\n", __func__, __LINE__, #cond); \
134                 goto dst; \
135         } \
136 }
137
138 #define TDM_NOT_DEFINED_VALUE       (-1)
139 #define TDM_FRONT_VALUE(n)          (((n) > 0) ? (n) : TDM_NOT_DEFINED_VALUE)
140
141 #define TDM_TIME(sec, usec)   ((double)(sec) + ((double)(usec)) / 1000000.0)
142 #define TDM_TIME_SEC(time)    ((unsigned int)(time))
143 #define TDM_TIME_USEC(time)   (unsigned int)(((time) - (unsigned int)(time)) * 1000000.0)
144
145 #define C(b, m)             (((b) >> (m)) & 0xFF)
146 #define B(c, s)             ((((unsigned int)(c)) & 0xff) << (s))
147 #define FOURCC(a, b, c, d)  (B(d, 24) | B(c, 16) | B(b, 8) | B(a, 0))
148 #define FOURCC_STR(id)      C(id, 0), C(id, 8), C(id, 16), C(id, 24)
149 #define FOURCC_ID(str)      FOURCC(((char*)str)[0], ((char*)str)[1], ((char*)str)[2], ((char*)str)[3])
150 #define IS_RGB(f)           ((f) == TBM_FORMAT_XRGB8888 || (f) == TBM_FORMAT_ARGB8888)
151
152 /* don't using !,$,# */
153 #define TDM_DELIM           "@^&*+-|,:~"
154 #define TDM_ALIGN(a, b)     (((a) + ((b) - 1)) & ~((b) - 1))
155 #define TDM_SWAP(a, b)      ({ int t; t = a; a = b; b = t; })
156 #define TDM_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
157
158 struct tdm_type_name {
159         int type;
160         const char *name;
161 };
162
163 #define TDM_TYPE_NAME_FN(res) \
164 static inline const char * tdm_##res##_str(int type)    \
165 {                       \
166         unsigned int i;                                 \
167         for (i = 0; i < TDM_ARRAY_SIZE(tdm_##res##_names); i++) { \
168                 if (tdm_##res##_names[i].type == type)  \
169                         return tdm_##res##_names[i].name;       \
170         }                                               \
171         return "(invalid)";                             \
172 }
173
174 static struct tdm_type_name tdm_dpms_names[] = {
175         { TDM_OUTPUT_DPMS_ON, "on" },
176         { TDM_OUTPUT_DPMS_STANDBY, "standby" },
177         { TDM_OUTPUT_DPMS_SUSPEND, "suspend" },
178         { TDM_OUTPUT_DPMS_OFF, "off" },
179 };
180 TDM_TYPE_NAME_FN(dpms)
181
182 static struct tdm_type_name tdm_status_names[] = {
183         { TDM_OUTPUT_CONN_STATUS_DISCONNECTED, "disconnected" },
184         { TDM_OUTPUT_CONN_STATUS_CONNECTED, "connected" },
185         { TDM_OUTPUT_CONN_STATUS_MODE_SETTED, "mode_setted" },
186 };
187 TDM_TYPE_NAME_FN(status)
188
189 static struct tdm_type_name tdm_conn_names[] = {
190         { TDM_OUTPUT_TYPE_Unknown, "Unknown" },
191         { TDM_OUTPUT_TYPE_VGA, "VGA" },
192         { TDM_OUTPUT_TYPE_DVII, "DVII" },
193         { TDM_OUTPUT_TYPE_DVID, "DVID" },
194         { TDM_OUTPUT_TYPE_DVIA, "DVIA" },
195         { TDM_OUTPUT_TYPE_Composite, "Composite" },
196         { TDM_OUTPUT_TYPE_SVIDEO, "SVIDEO" },
197         { TDM_OUTPUT_TYPE_LVDS, "LVDS" },
198         { TDM_OUTPUT_TYPE_Component, "Component" },
199         { TDM_OUTPUT_TYPE_9PinDIN, "9PinDIN" },
200         { TDM_OUTPUT_TYPE_DisplayPort, "DisplayPort" },
201         { TDM_OUTPUT_TYPE_HDMIA, "HDMIA" },
202         { TDM_OUTPUT_TYPE_HDMIB, "HDMIB" },
203         { TDM_OUTPUT_TYPE_TV, "TV" },
204         { TDM_OUTPUT_TYPE_eDP, "eDP" },
205         { TDM_OUTPUT_TYPE_VIRTUAL, "VIRTUAL" },
206         { TDM_OUTPUT_TYPE_DSI, "DSI" },
207 };
208 TDM_TYPE_NAME_FN(conn)
209
210 static struct tdm_type_name tdm_transform_names[] = {
211         { TDM_TRANSFORM_NORMAL, "none" },
212         { TDM_TRANSFORM_90, "90" },
213         { TDM_TRANSFORM_180, "180" },
214         { TDM_TRANSFORM_270, "270" },
215         { TDM_TRANSFORM_FLIPPED, "flipped" },
216         { TDM_TRANSFORM_FLIPPED_90, "90,flipped" },
217         { TDM_TRANSFORM_FLIPPED_180, "180,flipped" },
218         { TDM_TRANSFORM_FLIPPED_270, "270,flipped" },
219 };
220 TDM_TYPE_NAME_FN(transform)
221
222 static struct tdm_type_name tdm_value_type_names[] = {
223         { TDM_VALUE_TYPE_UNKNOWN, "unknown" },
224         { TDM_VALUE_TYPE_PTR, "ptr" },
225         { TDM_VALUE_TYPE_INT32, "int32" },
226         { TDM_VALUE_TYPE_UINT32, "uint32" },
227         { TDM_VALUE_TYPE_INT64, "int64" },
228         { TDM_VALUE_TYPE_UINT64, "uint64" },
229 };
230 TDM_TYPE_NAME_FN(value_type)
231
232 #define TDM_BIT_NAME_FB(res)                                    \
233 static inline const char * tdm_##res##_str(int type, char **reply, int *len)    \
234 {                       \
235         unsigned int i;                                         \
236         const char *sep = "";                                   \
237         if (type == 0) {        \
238                 TDM_SNPRINTF(*reply, len, "none");      \
239                 return NULL;    \
240         }       \
241         for (i = 0; i < TDM_ARRAY_SIZE(tdm_##res##_names); i++) {               \
242                 if (type & (1 << i)) {                          \
243                         TDM_SNPRINTF(*reply, len, "%s%s", sep, tdm_##res##_names[i]);   \
244                         sep = ",";                              \
245                 }                                               \
246         }                                                       \
247         return NULL;                                            \
248 }
249
250 static const char *tdm_mode_type_names[] = {
251         "builtin",
252         "clock_c",
253         "crtc_c",
254         "preferred",
255         "default",
256         "userdef",
257         "driver",
258 };
259 TDM_BIT_NAME_FB(mode_type)
260
261 static const char *tdm_mode_flag_names[] = {
262         "phsync",
263         "nhsync",
264         "pvsync",
265         "nvsync",
266         "interlace",
267         "dblscan",
268         "csync",
269         "pcsync",
270         "ncsync",
271         "hskew",
272         "bcast",
273         "pixmux",
274         "dblclk",
275         "clkdiv2"
276 };
277 TDM_BIT_NAME_FB(mode_flag)
278
279 static const char *tdm_layer_caps_names[] = {
280         "cursor",
281         "primary",
282         "overlay",
283         "",
284         "graphic",
285         "video",
286         "",
287         "",
288         "scale",
289         "transform",
290         "scanout",
291         "reserved",
292         "no_crop",
293 };
294 TDM_BIT_NAME_FB(layer_caps)
295
296 static const char *tdm_pp_caps_names[] = {
297         "sync",
298         "async",
299         "scale",
300         "transform",
301 };
302 TDM_BIT_NAME_FB(pp_caps)
303
304 static const char *tdm_capture_caps_names[] = {
305         "output",
306         "layer",
307         "scale",
308         "transform",
309 };
310 TDM_BIT_NAME_FB(capture_caps)
311
312 static inline char*
313 strtostr(char *buf, int len, char *str, char *delim)
314 {
315         char *end;
316         end = strpbrk(str, delim);
317         if (end)
318                 len = ((end - str + 1) < len) ? (end - str + 1) : len;
319         else {
320                 int l = strlen(str);
321                 len = ((l + 1) < len) ? (l + 1) : len;
322         }
323         snprintf(buf, len, "%s", str);
324         return str + len - 1;
325 }
326
327 #ifdef __cplusplus
328 }
329 #endif
330
331 #endif /* _TDM_MACRO_H_ */