Remove superfluous empty lines and align comments
[platform/core/uifw/libtbm.git] / src / tbm_bufmgr_int.h
1 /**************************************************************************
2
3 libtbm
4
5 Copyright 2012 Samsung Electronics co., Ltd. All Rights Reserved.
6
7 Contact: SooChan Lim <sc1.lim@samsung.com>, Sangjin Lee <lsj119@samsung.com>
8 Boram Park <boram1288.park@samsung.com>, Changyeon Lee <cyeon.lee@samsung.com>
9
10 Permission is hereby granted, free of charge, to any person obtaining a
11 copy of this software and associated documentation files (the
12 "Software"), to deal in the Software without restriction, including
13 without limitation the rights to use, copy, modify, merge, publish,
14 distribute, sub license, and/or sell copies of the Software, and to
15 permit persons to whom the Software is furnished to do so, subject to
16 the following conditions:
17
18 The above copyright notice and this permission notice (including the
19 next paragraph) shall be included in all copies or substantial portions
20 of the Software.
21
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
25 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
27 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
28 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
30 **************************************************************************/
31
32 #ifndef _TBM_BUFMGR_INT_H_
33 #define _TBM_BUFMGR_INT_H_
34
35 #include <sys/time.h>
36 #include <unistd.h>
37 #include <limits.h>
38 #include <stdlib.h>
39 #include <stdio.h>
40 #include <string.h>
41 #include <sys/ioctl.h>
42 #include <sys/types.h>
43 #include <sys/stat.h>
44 #include <fcntl.h>
45 #include <dlfcn.h>
46 #include <dirent.h>
47 #include <string.h>
48 #include <errno.h>
49 #include <pthread.h>
50 #include <tbm_bufmgr.h>
51 #include <tbm_surface.h>
52 #include <tbm_surface_internal.h>
53 #include <tbm_bufmgr_backend.h>
54 #include <tbm_surface_queue.h>
55
56 #define DEBUG
57 #ifdef DEBUG
58 extern int bDebug;
59
60 #define TBM_DBG(...) { if (bDebug&0x1) TBM_LOG_D(__VA_ARGS__); }
61 #define TBM_DBG_LOCK(...) { if (bDebug&0x2) TBM_LOG_D(__VA_ARGS__); }
62 #else
63 #define TBM_DBG(...)
64 #define TBM_DBG_LOCK(...)
65 #endif /* DEBUG */
66
67 #define TRACE
68 #ifdef TRACE
69 extern int bTrace;
70 #endif /* TRACE */
71
72 extern int b_dump_queue;
73
74 #ifdef HAVE_DLOG
75 #include <dlog.h>
76
77 extern int bDlog;
78
79 #ifdef LOG_TAG
80 #undef LOG_TAG
81 #endif
82
83 #define LOG_TAG "TBM"
84
85 #define TBM_LOG_D(fmt, ...) {\
86         if (bDlog) {\
87                 LOGD("[TBM:D] " fmt, ##__VA_ARGS__);\
88         } \
89         else {\
90                 fprintf(stderr, "[TBM:D(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__);\
91         } \
92 }
93
94 #define TBM_LOG_I(fmt, ...) {\
95         if (bDlog) {\
96                 LOGI("[TBM:I] " fmt, ##__VA_ARGS__);\
97         } \
98         else {\
99                 fprintf(stderr, "[TBM:I(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__);\
100         } \
101 }
102
103 #define TBM_LOG_W(fmt, ...) {\
104         if (bDlog) {\
105                 LOGW("[TBM:W] " fmt, ##__VA_ARGS__);\
106         } \
107         else {\
108                 fprintf(stderr, "[TBM:W(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__);\
109         } \
110 }
111
112 #define TBM_LOG_E(fmt, ...) {\
113         if (bDlog) {\
114                 LOGE("[TBM:E] " fmt, ##__VA_ARGS__);\
115         } \
116         else {\
117                 fprintf(stderr, "[TBM:E(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__);\
118         } \
119 }
120
121 #define TBM_DEBUG(fmt, ...) {\
122         if (bDlog) {\
123                 LOGE("[TBM_DEBUG] " fmt, ##__VA_ARGS__);\
124         } \
125         else {\
126                 fprintf(stderr, "[TBM:DEBUG(%d)] " fmt, getpid(), ##__VA_ARGS__);\
127         } \
128 }
129
130 #ifdef TRACE
131 #define TBM_TRACE(fmt, ...) {\
132         if (bDlog) {\
133                 if (bTrace&0x1) LOGE("[TBM:TRACE] " fmt, ##__VA_ARGS__);\
134         } \
135         else {\
136                 if (bTrace&0x1) fprintf(stderr, "[TBM:TRACE(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__);\
137         } \
138 }
139 #else
140 #define TBM_TRACE(fmt, ...)
141 #endif /* TRACE */
142
143 #else
144 #define TBM_LOG_D(fmt, ...)   fprintf(stderr, "[TBM:D(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__)
145 #define TBM_LOG_I(fmt, ...)   fprintf(stderr, "[TBM:I(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__)
146 #define TBM_LOG_W(fmt, ...)   fprintf(stderr, "[TBM:W(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__)
147 #define TBM_LOG_E(fmt, ...)   fprintf(stderr, "[TBM:E(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__)
148 #define TBM_DEBUG(fmt, ...)   fprintf(stderr, "[TBM:DEBUG(%d)] " fmt, getpid(), ##__VA_ARGS__)
149 #ifdef TRACE
150 #define TBM_TRACE(fmt, ...)   { if (bTrace&0x1) fprintf(stderr, "[TBM:TRACE(%d)(%s:%d)] " fmt, getpid(), __func__, __LINE__, ##__VA_ARGS__); }
151 #else
152 #define TBM_TRACE(fmt, ...)
153 #endif /* TRACE */
154 #endif /* HAVE_DLOG */
155
156 /* check condition */
157 #define TBM_RETURN_IF_FAIL(cond) {\
158         if (!(cond)) {\
159                 TBM_LOG_E("'%s' failed.\n", #cond);\
160                 return;\
161         } \
162 }
163 #define TBM_RETURN_VAL_IF_FAIL(cond, val) {\
164         if (!(cond)) {\
165                 TBM_LOG_E("'%s' failed.\n", #cond);\
166                 return val;\
167         } \
168 }
169 #define TBM_GOTO_VAL_IF_FAIL(cond, val) {\
170         if (!(cond)) {\
171                 TBM_LOG_E("'%s' failed.\n", #cond);\
172                 goto val;\
173         } \
174 }
175
176 /* check flags */
177 #define RETURN_CHECK_FLAG(cond) {\
178         if ((cond)) {\
179                 return;\
180         } \
181 }
182 #define RETURN_VAL_CHECK_FLAG(cond, val) {\
183         if ((cond)) {\
184                 return val;\
185         } \
186 }
187
188 /* check validation */
189 #define TBM_BUFMGR_IS_VALID(mgr) (mgr)
190 #define TBM_BO_IS_VALID(bo) (bo && \
191                             TBM_BUFMGR_IS_VALID(bo->bufmgr) && \
192                             bo->item_link.next && \
193                             bo->item_link.next->prev == &bo->item_link)
194 #define TBM_SURFACE_IS_VALID(surf) (surf && \
195                                    TBM_BUFMGR_IS_VALID(surf->bufmgr) && \
196                                    surf->item_link.next && \
197                                    surf->item_link.next->prev == &surf->item_link)
198
199
200 #define TBM_SNRPRINTF(p, len, count, fmt, ARG...)  \
201         do { \
202                 if (p) { \
203                         int rest = len - count; \
204                         int s = snprintf(&p[count], rest, fmt, ##ARG); \
205                         while (s >= rest) { \
206                                 len *= 2; \
207                                 p = realloc(p, len); \
208                                 rest = len - count; \
209                                 s = snprintf(&p[count], rest, fmt, ##ARG); \
210                         } \
211                         count += s; \
212                 } \
213         } while (0)
214
215 struct list_head {
216         struct list_head *prev;
217         struct list_head *next;
218 };
219
220 /**
221  * @brief tbm_bo : buffer object of Tizen Buffer Manager
222  */
223 struct _tbm_bo {
224         tbm_bufmgr bufmgr;               /* tbm buffer manager */
225         int ref_cnt;                     /* ref count of bo */
226         int flags;                       /* TBM_BO_FLAGS :bo memory type */
227         struct list_head user_data_list; /* list of the user_date in bo */
228         void *priv;                      /* bo private */
229         struct list_head item_link;      /* link of bo */
230         tbm_surface_h surface;           /* tbm_surface */
231         int lock_cnt;                    /* lock count of bo */
232         unsigned int map_cnt;            /* device map count */
233 };
234
235 /**
236  * @brief tbm_bufmgr : structure for tizen buffer manager
237  *
238  */
239 struct _tbm_bufmgr {
240         pthread_mutex_t lock;             /* mutex lock */
241         int ref_count;                    /* reference count */
242         int fd;                           /* bufmgr fd */
243         int lock_type;                    /* lock_type of bufmgr */
244         int capabilities;                 /* capabilities of bufmgr */
245         unsigned int bo_cnt;              /* number of bos */
246         struct list_head bo_list;         /* list of bos belonging to bufmgr */
247         struct list_head surf_list;       /* list of surfaces belonging to bufmgr */
248         struct list_head surf_queue_list; /* list of surface queues belonging to bufmgr */
249         struct list_head debug_key_list;  /* list of debug data key list belonging to bufmgr */
250         void *module_data;
251         tbm_bufmgr_backend backend;       /* bufmgr backend */
252 };
253
254 /**
255  * @brief tbm_surface : structure for tizen buffer surface
256  *
257  */
258 struct _tbm_surface {
259         tbm_bufmgr bufmgr;                      /* tbm buffer manager */
260
261         tbm_surface_info_s info;        /* tbm surface information */
262
263         int flags;
264
265         int num_bos;                            /* the number of buffer objects */
266
267         tbm_bo bos[4];
268
269         int num_planes;                         /* the number of buffer objects */
270
271         int planes_bo_idx[TBM_SURF_PLANE_MAX];
272
273         int refcnt;
274
275         unsigned int debug_pid;
276
277         struct list_head item_link; /* link of surface */
278
279         struct list_head user_data_list;        /* list of the user_date in surface */
280
281         struct list_head debug_data_list;       /* list of debug data */
282 };
283
284 typedef struct {
285         unsigned long key;
286         void *data;
287         tbm_data_free free_func;
288
289         /* link of user_data */
290         struct list_head item_link;
291 } tbm_user_data;
292
293 typedef struct {
294         char *key;
295         char *value;
296
297         /* link of user_data */
298         struct list_head item_link;
299 } tbm_surface_debug_data;
300
301 tbm_bufmgr _tbm_bufmgr_get_bufmgr(void);
302 int _tbm_bo_set_surface(tbm_bo bo, tbm_surface_h surface);
303 int _tbm_surface_is_valid(tbm_surface_h surface);
304
305 /* functions for mutex */
306 int tbm_surface_internal_get_info(tbm_surface_h surface, int opt,
307                                   tbm_surface_info_s *info, int map);
308 void tbm_surface_internal_unmap(tbm_surface_h surface);
309 unsigned int tbm_surface_internal_get_width(tbm_surface_h surface);
310 unsigned int tbm_surface_internal_get_height(tbm_surface_h surface);
311 tbm_format tbm_surface_internal_get_format(tbm_surface_h surface);
312 unsigned int _tbm_surface_internal_get_debug_pid(tbm_surface_h surface);
313 char *_tbm_surface_internal_format_to_str(tbm_format format);
314 char * _tbm_surface_internal_get_debug_data(tbm_surface_h surface, char *key);
315
316 tbm_user_data *user_data_lookup(struct list_head *user_data_list,
317                                 unsigned long key);
318 tbm_user_data *user_data_create(unsigned long key,
319                                 tbm_data_free data_free_func);
320 void user_data_delete(tbm_user_data *user_data);
321
322 int tbm_bufmgr_get_fd_limit(void);
323 #endif                                                  /* _TBM_BUFMGR_INT_H_ */