eliminate race condition
[platform/core/uifw/libtdm.git] / src / tdm_private.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_PRIVATE_H_
37 #define _TDM_PRIVATE_H_
38
39 #include <stdio.h>
40 #include <string.h>
41 #include <stdlib.h>
42 #include <pthread.h>
43 #include <errno.h>
44 #include <unistd.h>
45 #include <limits.h>
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <fcntl.h>
49 #include <dlfcn.h>
50 #include <dirent.h>
51
52 #include "tdm_backend.h"
53 #include "tdm_log.h"
54 #include "tdm_list.h"
55
56 #ifdef __cplusplus
57 extern "C" {
58 #endif
59
60 #undef EXTERN
61 #undef DEPRECATED
62 #undef INTERN
63
64 #if defined(__GNUC__) && __GNUC__ >= 4
65 #define EXTERN __attribute__ ((visibility("default")))
66 #else
67 #define EXTERN
68 #endif
69
70 #if defined(__GNUC__) && __GNUC__ >= 4
71 #define INTERN __attribute__ ((visibility("hidden")))
72 #else
73 #define INTERN
74 #endif
75
76 #if defined(__GNUC__) && __GNUC__ >= 4
77 #define DEPRECATED __attribute__ ((deprecated))
78 #else
79 #define DEPRECATED
80 #endif
81
82 /* check condition */
83 #define TDM_RETURN_IF_FAIL(cond) {\
84     if (!(cond)) {\
85         TDM_ERR ("'%s' failed", #cond);\
86         return;\
87     }\
88 }
89 #define TDM_RETURN_VAL_IF_FAIL(cond, val) {\
90     if (!(cond)) {\
91         TDM_ERR ("'%s' failed", #cond);\
92         return val;\
93     }\
94 }
95 #define TDM_RETURN_VAL_IF_FAIL_WITH_ERROR(cond, error_v, val) {\
96     if (!(cond)) {\
97         TDM_ERR ("'%s' failed", #cond);\
98         ret = error_v;\
99         if (error) *error = ret;\
100         return val;\
101     }\
102 }
103
104 #define TDM_WARNING_IF_FAIL(cond)  {\
105     if (!(cond))\
106         TDM_ERR ("'%s' failed", #cond);\
107 }
108 #define TDM_GOTO_IF_FAIL(cond, dst) {\
109     if (!(cond)) {\
110         TDM_ERR ("'%s' failed", #cond);\
111         goto dst;\
112     }\
113 }
114
115 #define TDM_NEVER_GET_HERE() TDM_ERR("** NEVER GET HERE **")
116
117 #define TDM_SNPRINTF(p, len, fmt, ARG...)  \
118     do { \
119         if (p && len && *len > 0) \
120         { \
121             int s = snprintf(p, *len, fmt, ##ARG); \
122             p += s; \
123             *len -= s; \
124         } \
125     } while (0)
126
127 #define C(b,m)              (((b) >> (m)) & 0xFF)
128 #define B(c,s)              ((((unsigned int)(c)) & 0xff) << (s))
129 #define FOURCC(a,b,c,d)     (B(d,24) | B(c,16) | B(b,8) | B(a,0))
130 #define FOURCC_STR(id)      C(id,0), C(id,8), C(id,16), C(id,24)
131 #define FOURCC_ID(str)      FOURCC(((char*)str)[0],((char*)str)[1],((char*)str)[2],((char*)str)[3])
132
133 typedef enum
134 {
135     TDM_CAPTURE_TARGET_OUTPUT,
136     TDM_CAPTURE_TARGET_LAYER,
137 } tdm_capture_target;
138
139 typedef struct _tdm_private_display tdm_private_display;
140 typedef struct _tdm_private_output tdm_private_output;
141 typedef struct _tdm_private_layer tdm_private_layer;
142 typedef struct _tdm_private_pp tdm_private_pp;
143 typedef struct _tdm_private_capture tdm_private_capture;
144 typedef struct _tdm_private_vblank_handler tdm_private_vblank_handler;
145 typedef struct _tdm_private_commit_handler tdm_private_commit_handler;
146
147 struct _tdm_private_display
148 {
149     pthread_mutex_t lock;
150     unsigned int init_count;
151
152     /* backend module info */
153     void *module;
154     tdm_backend_module *module_data;
155     tdm_backend_data *bdata;
156
157     /* backend function */
158     tdm_display_capability capabilities;
159     tdm_func_display func_display;
160     tdm_func_pp func_pp;
161     tdm_func_capture func_capture;
162
163     /* backend capability */
164     tdm_caps_display caps_display;
165     tdm_caps_pp caps_pp;
166     tdm_caps_capture caps_capture;
167
168     /* output, pp list */
169     struct list_head output_list;
170     struct list_head pp_list;
171
172     void **outputs_ptr;
173 };
174
175 struct _tdm_private_output
176 {
177     struct list_head link;
178
179     tdm_func_display *func_display;
180     tdm_private_display *private_display;
181
182     tdm_caps_output caps;
183     tdm_output *output;
184
185     unsigned int pipe;
186
187     int regist_vblank_cb;
188     int regist_commit_cb;
189
190     struct list_head layer_list;
191     struct list_head capture_list;
192     struct list_head vblank_handler_list;
193     struct list_head commit_handler_list;
194
195     void **layers_ptr;
196 };
197
198 struct _tdm_private_layer
199 {
200     struct list_head link;
201
202     tdm_func_display *func_display;
203     tdm_private_display *private_display;
204     tdm_private_output *private_output;
205
206     tdm_caps_layer caps;
207     tdm_layer *layer;
208
209     tdm_buffer *current_buffer;
210
211     struct list_head capture_list;
212
213     unsigned int usable;
214 };
215
216 struct _tdm_private_pp
217 {
218     struct list_head link;
219
220     tdm_func_pp *func_pp;
221     tdm_private_display *private_display;
222
223     tdm_pp *pp;
224 };
225
226 struct _tdm_private_capture
227 {
228     struct list_head link;
229
230     tdm_capture_target target;
231
232     tdm_func_capture *func_capture;
233     tdm_private_display *private_display;
234     tdm_private_output *private_output;
235     tdm_private_layer *private_layer;
236
237     tdm_capture *capture;
238 };
239
240 struct _tdm_private_vblank_handler
241 {
242     struct list_head link;
243
244     tdm_private_output *private_output;
245     tdm_output_vblank_handler func;
246     void *user_data;
247 };
248
249 struct _tdm_private_commit_handler
250 {
251     struct list_head link;
252
253     tdm_private_output *private_output;
254     tdm_output_commit_handler func;
255     void *user_data;
256 };
257
258 tdm_buffer*   tdm_buffer_ref_backend(tdm_buffer *buffer);
259 void          tdm_buffer_unref_backend(tdm_buffer *buffer);
260 tbm_surface_h tdm_buffer_get_surface(tdm_buffer *buffer);
261 tdm_buffer*   tdm_buffer_get(tbm_surface_h buffer);
262
263 tdm_private_pp* tdm_pp_create_internal(tdm_private_display *private_display, tdm_error *error);
264 void tdm_pp_destroy_internal(tdm_private_pp *private_pp);
265
266 tdm_private_capture* tdm_capture_create_output_internal(tdm_private_output *private_output, tdm_error *error);
267 tdm_private_capture* tdm_capture_create_layer_internal(tdm_private_layer *private_layer, tdm_error *error);
268 void tdm_capture_destroy_internal(tdm_private_capture *private_capture);
269
270 #ifdef __cplusplus
271 }
272 #endif
273
274 #endif /* _TDM_PRIVATE_H_ */