PUI: fix pui_ani_control, pui_ani_status_update and so on
[platform/core/uifw/libpui.git] / src / PUI.c
index dbb9a2d..d6ebd31 100644 (file)
--- a/src/PUI.c
+++ b/src/PUI.c
@@ -1,3 +1,28 @@
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
 #include "PUI_internal.h"
 #include "PUI_backend.h"
 #include "PUI.h"
@@ -19,8 +44,6 @@ int PUI_EVENT_ANI_STOPPED = 0;
 int PUI_EVENT_ANI_PAUSED = 0;
 int PUI_EVENT_ANI_READY_TO_START = 0;
 int PUI_EVENT_ANI_READY_TO_RESUME = 0;
-int PUI_EVENT_ANI_FRAME_DONE = 0;
-int PUI_EVENT_ANI_BUFFER_RELEASED = 0;
 
 pui_error_string
 pui_error_to_string(pui_error e)
@@ -73,7 +96,7 @@ pui_create(Ecore_Wl2_Window *win)
                return NULL;
        }
 
-       handle = (pui_h)calloc(1, sizeof(pui_h));
+       handle = (pui_h)calloc(1, sizeof(pui));
 
        if (!handle)
                return NULL;
@@ -83,6 +106,7 @@ pui_create(Ecore_Wl2_Window *win)
        handle->visibility = 0;
        handle->wl_tbm_client = wl_tbm_client;
        handle->ani_handles = NULL;
+       handle->current_ani_h = NULL;
        handle->backend_module_data = pui_module->backend_module_data;
 
        handle->tbm_queue = wayland_tbm_client_create_surface_queue(handle->wl_tbm_client,
@@ -229,9 +253,27 @@ _pui_unload_backend_module(void)
 }
 
 static void
+_pui_load_backend_collect_animations(void)
+{
+       pui_int_error ret;
+
+       if (!pui_module || !pui_module->backend_module_data) {
+               pui_err("pui module data is not loaded\n");
+               return;
+       }
+
+       ret = pui_module->backend_module_data->create_ani_collection();
+       if (ret != PUI_INT_ERROR_NONE) {
+               pui_err("Failed to collect animations data (%s)\n",
+                       pui_error_to_string(ret));
+       }
+}
+
+static void
 _pui_load(void)
 {
        _pui_load_backend_module();
+       _pui_load_backend_collect_animations();
 }
 
 static void
@@ -248,8 +290,6 @@ _pui_event_init(void)
        PUI_EVENT_ANI_PAUSED = ecore_event_type_new();
        PUI_EVENT_ANI_READY_TO_START = ecore_event_type_new();
        PUI_EVENT_ANI_READY_TO_RESUME = ecore_event_type_new();
-       PUI_EVENT_ANI_FRAME_DONE = ecore_event_type_new();
-       PUI_EVENT_ANI_BUFFER_RELEASED = ecore_event_type_new();
 }
 
 static void
@@ -259,17 +299,13 @@ _pui_event_shutdown(void)
                                        PUI_EVENT_ANI_STOPPED,
                                        PUI_EVENT_ANI_PAUSED,
                                        PUI_EVENT_ANI_READY_TO_START,
-                                       PUI_EVENT_ANI_READY_TO_RESUME,
-                                       PUI_EVENT_ANI_FRAME_DONE,
-                                       PUI_EVENT_ANI_BUFFER_RELEASED);
+                                       PUI_EVENT_ANI_READY_TO_RESUME);
 
        PUI_EVENT_ANI_STARTED = -1;
        PUI_EVENT_ANI_STOPPED = -1;
        PUI_EVENT_ANI_PAUSED = -1;
        PUI_EVENT_ANI_READY_TO_START = -1;
        PUI_EVENT_ANI_READY_TO_RESUME = -1;
-       PUI_EVENT_ANI_FRAME_DONE = -1;
-       PUI_EVENT_ANI_BUFFER_RELEASED = -1;
 }
 
 int