add tdm-dbg and td-test-server for debugging
[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_ERR("'%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
132 #define C(b, m)             (((b) >> (m)) & 0xFF)
133 #define B(c, s)             ((((unsigned int)(c)) & 0xff) << (s))
134 #define FOURCC(a, b, c, d)  (B(d, 24) | B(c, 16) | B(b, 8) | B(a, 0))
135 #define FOURCC_STR(id)      C(id, 0), C(id, 8), C(id, 16), C(id, 24)
136 #define FOURCC_ID(str)      FOURCC(((char*)str)[0], ((char*)str)[1], ((char*)str)[2], ((char*)str)[3])
137 #define IS_RGB(f)           ((f) == TBM_FORMAT_XRGB8888 || (f) == TBM_FORMAT_ARGB8888)
138
139 /* don't using !,$,# */
140 #define TDM_DELIM           "@^&*+-|,:~"
141 #define TDM_ALIGN(a, b)     (((a) + ((b) - 1)) & ~((b) - 1))
142
143 #define TDM_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
144
145 struct tdm_type_name {
146         int type;
147         const char *name;
148 };
149
150 #define TDM_TYPE_NAME_FN(res) \
151 static inline const char * tdm_##res##_str(int type)    \
152 {                       \
153         unsigned int i;                                 \
154         for (i = 0; i < TDM_ARRAY_SIZE(tdm_##res##_names); i++) { \
155                 if (tdm_##res##_names[i].type == type)  \
156                         return tdm_##res##_names[i].name;       \
157         }                                               \
158         return "(invalid)";                             \
159 }
160
161 static struct tdm_type_name tdm_dpms_names[] = {
162         { TDM_OUTPUT_DPMS_ON, "on" },
163         { TDM_OUTPUT_DPMS_STANDBY, "standby" },
164         { TDM_OUTPUT_DPMS_SUSPEND, "suspend" },
165         { TDM_OUTPUT_DPMS_OFF, "off" },
166 };
167 TDM_TYPE_NAME_FN(dpms)
168
169 static struct tdm_type_name tdm_status_names[] = {
170         { TDM_OUTPUT_CONN_STATUS_DISCONNECTED, "disconnected" },
171         { TDM_OUTPUT_CONN_STATUS_CONNECTED, "connected" },
172         { TDM_OUTPUT_CONN_STATUS_MODE_SETTED, "mode_setted" },
173 };
174 TDM_TYPE_NAME_FN(status)
175
176 static struct tdm_type_name tdm_conn_names[] = {
177         { TDM_OUTPUT_TYPE_Unknown, "Unknown" },
178         { TDM_OUTPUT_TYPE_VGA, "VGA" },
179         { TDM_OUTPUT_TYPE_DVII, "DVII" },
180         { TDM_OUTPUT_TYPE_DVID, "DVID" },
181         { TDM_OUTPUT_TYPE_DVIA, "DVIA" },
182         { TDM_OUTPUT_TYPE_Composite, "Composite" },
183         { TDM_OUTPUT_TYPE_SVIDEO, "SVIDEO" },
184         { TDM_OUTPUT_TYPE_LVDS, "LVDS" },
185         { TDM_OUTPUT_TYPE_Component, "Component" },
186         { TDM_OUTPUT_TYPE_9PinDIN, "9PinDIN" },
187         { TDM_OUTPUT_TYPE_DisplayPort, "DisplayPort" },
188         { TDM_OUTPUT_TYPE_HDMIA, "HDMIA" },
189         { TDM_OUTPUT_TYPE_HDMIB, "HDMIB" },
190         { TDM_OUTPUT_TYPE_TV, "TV" },
191         { TDM_OUTPUT_TYPE_eDP, "eDP" },
192         { TDM_OUTPUT_TYPE_VIRTUAL, "VIRTUAL" },
193         { TDM_OUTPUT_TYPE_DSI, "DSI" },
194 };
195 TDM_TYPE_NAME_FN(conn)
196
197
198 #define TDM_BIT_NAME_FB(res)                                    \
199 static inline const char * tdm_##res##_str(int type, char **reply, int *len)    \
200 {                       \
201         unsigned int i;                                         \
202         const char *sep = "";                                   \
203         for (i = 0; i < TDM_ARRAY_SIZE(tdm_##res##_names); i++) {               \
204                 if (type & (1 << i)) {                          \
205                         TDM_SNPRINTF(*reply, len, "%s%s", sep, tdm_##res##_names[i]);   \
206                         sep = ",";                              \
207                 }                                               \
208         }                                                       \
209         return NULL;                                            \
210 }
211
212 static const char *tdm_mode_type_names[] = {
213         "builtin",
214         "clock_c",
215         "crtc_c",
216         "preferred",
217         "default",
218         "userdef",
219         "driver",
220 };
221 TDM_BIT_NAME_FB(mode_type)
222
223 static const char *tdm_mode_flag_names[] = {
224         "phsync",
225         "nhsync",
226         "pvsync",
227         "nvsync",
228         "interlace",
229         "dblscan",
230         "csync",
231         "pcsync",
232         "ncsync",
233         "hskew",
234         "bcast",
235         "pixmux",
236         "dblclk",
237         "clkdiv2"
238 };
239 TDM_BIT_NAME_FB(mode_flag)
240
241 static const char *tdm_layer_caps_names[] = {
242         "cursor",
243         "primary",
244         "overlay",
245         "",
246         "graphic",
247         "video",
248         "",
249         "",
250         "scale",
251         "transform",
252         "scanout",
253         "reserved",
254         "no_crop",
255 };
256 TDM_BIT_NAME_FB(layer_caps)
257
258 static const char *tdm_pp_caps_names[] = {
259         "sync",
260         "async",
261         "scale",
262         "transform",
263 };
264 TDM_BIT_NAME_FB(pp_caps)
265
266 static const char *tdm_capture_caps_names[] = {
267         "output",
268         "layer",
269         "scale",
270         "transform",
271 };
272 TDM_BIT_NAME_FB(capture_caps)
273
274 static inline char*
275 strtostr(char *buf, int len, char *str, char *delim)
276 {
277         char *end;
278         end = strpbrk(str, delim);
279         if (end)
280                 len = ((end - str + 1) < len) ? (end - str + 1) : len;
281         else {
282                 int l = strlen(str);
283                 len = ((l + 1) < len) ? (l + 1) : len;
284         }
285         snprintf(buf, len, "%s", str);
286         return str + len - 1;
287 }
288
289 #ifdef __cplusplus
290 }
291 #endif
292
293 #endif /* _TDM_MACRO_H_ */