change sscanf to strtol for getting fd
[platform/core/uifw/libtdm.git] / src / tdm_private.h
index 5749782..2a92f24 100644 (file)
@@ -54,6 +54,7 @@
 #include <sys/types.h>
 #include <math.h>
 
+#include <wayland-server-protocol.h>
 #include <tbm_bufmgr.h>
 #include <tbm_surface_queue.h>
 
@@ -80,6 +81,7 @@ enum {
        TDM_DEBUG_THREAD    = (1 << 2),
        TDM_DEBUG_SERVER    = (1 << 3),
        TDM_DEBUG_VBLANK    = (1 << 4),
+       TDM_DEBUG_COMMIT    = (1 << 5),
 };
 
 extern int tdm_debug_module;
@@ -111,6 +113,12 @@ enum {
 
 #define TDM_DUMP_DIR    "/tmp"
 
+typedef enum {
+       TDM_COMMIT_TYPE_NONE,
+       TDM_COMMIT_TYPE_OUTPUT,
+       TDM_COMMIT_TYPE_LAYER,
+} tdm_commit_type;
+
 typedef struct _tdm_private_display tdm_private_display;
 typedef struct _tdm_private_output tdm_private_output;
 typedef struct _tdm_private_layer tdm_private_layer;
@@ -120,8 +128,10 @@ typedef struct _tdm_private_loop tdm_private_loop;
 typedef struct _tdm_private_server tdm_private_server;
 typedef struct _tdm_private_thread tdm_private_thread;
 typedef struct _tdm_private_vblank_handler tdm_private_vblank_handler;
-typedef struct _tdm_private_commit_handler tdm_private_commit_handler;
+typedef struct _tdm_private_output_commit_handler tdm_private_output_commit_handler;
+typedef struct _tdm_private_layer_commit_handler tdm_private_layer_commit_handler;
 typedef struct _tdm_private_change_handler tdm_private_change_handler;
+typedef struct _tdm_private_layer_buffer tdm_private_layer_buffer;
 
 struct _tdm_private_display {
        pthread_mutex_t lock;
@@ -161,6 +171,12 @@ struct _tdm_private_display {
 
        /* output order */
        tdm_output **outputs;
+
+       /* calling a output commit per a vblank */
+       int commit_per_vblank;
+       tdm_commit_type commit_type;
+
+       int print_fps;
 };
 
 struct _tdm_private_output {
@@ -186,7 +202,13 @@ struct _tdm_private_output {
        struct list_head layer_list;
        struct list_head capture_list;
        struct list_head vblank_handler_list;
-       struct list_head commit_handler_list;
+       struct list_head output_commit_handler_list;
+
+       /* for layer commit */
+       struct list_head layer_commit_handler_list;
+       struct list_head pending_commit_handler_list;
+       tdm_vblank *vblank;
+       int layer_waiting_vblank;
 
        /* seperate list for multi-thread*/
        struct list_head change_handler_list_main;
@@ -209,14 +231,22 @@ struct _tdm_private_layer {
        tdm_caps_layer caps;
        tdm_layer *layer_backend;
 
-       tbm_surface_h pending_buffer;
-       tbm_surface_h waiting_buffer;
-       tbm_surface_h showing_buffer;
+       /* When a buffer is set to a layer, it will be stored to waiting_buffer.
+        * And when a layer is committed, it will be moved to committed_buffer.
+        * Finally when a commit handler is called, it will be moved to showing_buffer.
+        */
+       tdm_private_layer_buffer *waiting_buffer;
+       tdm_private_layer_buffer *committed_buffer;   /* for output_commit */
+       tdm_private_layer_buffer *showing_buffer;
        tbm_surface_queue_h buffer_queue;
 
        struct list_head capture_list;
 
        unsigned int usable;
+       unsigned int committing;
+
+       double fps_stamp;
+       unsigned int fps_count;
 };
 
 struct _tdm_private_pp {
@@ -298,13 +328,15 @@ struct _tdm_private_vblank_handler {
        struct list_head link;
 
        tdm_private_output *private_output;
+       int interval;
+       int sync;
        tdm_output_vblank_handler func;
        void *user_data;
 
        pid_t owner_tid;
 };
 
-struct _tdm_private_commit_handler {
+struct _tdm_private_output_commit_handler {
        struct list_head link;
 
        tdm_private_output *private_output;
@@ -314,6 +346,16 @@ struct _tdm_private_commit_handler {
        pid_t owner_tid;
 };
 
+struct _tdm_private_layer_commit_handler {
+       struct list_head link;
+
+       tdm_private_layer *private_layer;
+       tdm_layer_commit_handler func;
+       void *user_data;
+
+       tdm_private_layer_buffer *committed_buffer;   /* for layer_commit */
+};
+
 struct _tdm_private_change_handler {
        struct list_head link;
 
@@ -324,6 +366,11 @@ struct _tdm_private_change_handler {
        pid_t owner_tid;
 };
 
+struct _tdm_private_layer_buffer {
+       tbm_surface_h buffer;
+       struct list_head link;
+};
+
 typedef struct _tdm_buffer_info {
        tbm_surface_h buffer;
 
@@ -372,6 +419,24 @@ tdm_output_cb_status(tdm_output *output_backend, tdm_output_conn_status status,
 void
 tdm_output_cb_dpms(tdm_output *output_backend, tdm_output_dpms dpms,
                                   void *user_data);
+tdm_error
+tdm_output_wait_vblank_add_front(tdm_output *output, int interval, int sync,
+                                                                tdm_output_vblank_handler func, void *user_data);
+tdm_error
+tdm_output_commit_internal(tdm_output *output, int sync, tdm_output_commit_handler func, void *user_data);
+tdm_error
+tdm_output_get_dpms_internal(tdm_output *output, tdm_output_dpms *dpms_value);
+
+void
+tdm_output_remove_vblank_handler_internal(tdm_output *output, tdm_output_vblank_handler func, void *user_data);
+void
+tdm_output_remove_commit_handler_internal(tdm_output *output, tdm_output_commit_handler func, void *user_data);
+void
+tdm_layer_remove_commit_handler_internal(tdm_layer *layer, tdm_layer_commit_handler func, void *user_data);
+
+void
+tdm_layer_committed(tdm_private_layer *private_layer, tdm_private_layer_buffer **committed_buffer);
+
 void
 tdm_pp_cb_done(tdm_pp *pp_backend, tbm_surface_h src, tbm_surface_h dst,
                           void *user_data);
@@ -380,6 +445,14 @@ tdm_capture_cb_done(tdm_capture *capture_backend, tbm_surface_h buffer,
                                        void *user_data);
 tdm_error
 tdm_vblank_cb_vblank_SW(tdm_vblank *vblank, double vblank_stamp);
+tdm_error
+tdm_vblank_set_add_front(tdm_vblank *vblank, unsigned int add_front);
+tdm_error
+tdm_vblank_set_resource(tdm_vblank *vblank, struct wl_resource *resource);
+tdm_error
+tdm_vblank_set_client_vblank_fps(unsigned int pid, const char *name, unsigned int fps);
+void
+tdm_vblank_get_vblank_list_information(tdm_display *dpy, char *reply, int *len);
 
 void
 tdm_output_call_change_handler_internal(tdm_private_output *private_output,
@@ -524,6 +597,10 @@ tdm_helper_get_time(void);
 
 extern pthread_mutex_t tdm_mutex_check_lock;
 extern int tdm_mutex_locked;
+extern const char *tdm_mutex_lock_func;
+extern int tdm_mutex_lock_line;
+extern const char *tdm_mutex_unlock_func;
+extern int tdm_mutex_unlock_line;
 extern int tdm_dump_enable;
 extern char *tdm_debug_dump_dir;
 
@@ -533,6 +610,10 @@ extern char *tdm_debug_dump_dir;
                        TDM_INFO("mutex unlock"); \
                pthread_mutex_lock(&tdm_mutex_check_lock); \
                tdm_mutex_locked = 0; \
+               tdm_mutex_lock_func = NULL; \
+               tdm_mutex_lock_line = 0; \
+               tdm_mutex_unlock_func = __FUNCTION__; \
+               tdm_mutex_unlock_line = __LINE__; \
                pthread_mutex_unlock(&tdm_mutex_check_lock); \
                pthread_mutex_unlock(l); \
        } while (0)
@@ -552,6 +633,10 @@ extern char *tdm_debug_dump_dir;
                else { \
                        pthread_mutex_lock(&tdm_mutex_check_lock); \
                        tdm_mutex_locked = 1; \
+                       tdm_mutex_lock_func = __FUNCTION__; \
+                       tdm_mutex_lock_line = __LINE__; \
+                       tdm_mutex_unlock_func = NULL; \
+                       tdm_mutex_unlock_line = 0; \
                        pthread_mutex_unlock(&tdm_mutex_check_lock); \
                } \
        } while (0)
@@ -563,6 +648,10 @@ extern char *tdm_debug_dump_dir;
                pthread_mutex_lock(l); \
                pthread_mutex_lock(&tdm_mutex_check_lock); \
                tdm_mutex_locked = 1; \
+               tdm_mutex_lock_func = __FUNCTION__; \
+               tdm_mutex_lock_line = __LINE__; \
+               tdm_mutex_unlock_func = NULL; \
+               tdm_mutex_unlock_line = 0; \
                pthread_mutex_unlock(&tdm_mutex_check_lock); \
        } while (0)
 #endif //TDM_CONFIG_MUTEX_TIMEOUT
@@ -593,6 +682,10 @@ tdm_error
 tdm_display_enable_path(const char *path);
 tdm_error
 tdm_display_enable_ttrace_vblank(tdm_display *dpy, tdm_output *output, int enable);
+tdm_error
+tdm_display_enable_commit_per_vblank(tdm_private_display *private_display, int enable);
+tdm_error
+tdm_display_enable_fps(tdm_private_display *private_display, int enable);
 
 void
 tdm_monitor_server_command(tdm_display *dpy, const char *options, char *reply, int *len);