tbm_module: make tbm_module_bufmgr_import_key
[platform/core/uifw/libtbm.git] / src / tbm_bo.c
index cc7413d..0f4210f 100644 (file)
@@ -840,11 +840,8 @@ done:
 tbm_bo
 tbm_bo_import(tbm_bufmgr bufmgr, unsigned int key)
 {
-       tbm_bo bo;
-       tbm_bo bo2 = NULL;
-       void *bo_priv;
+       tbm_bo bo, bo2 = NULL;
        tbm_error_e error;
-       tbm_backend_bo_data *bo_data;
        int flags;
 
        _tbm_bufmgr_mutex_lock();
@@ -852,26 +849,6 @@ tbm_bo_import(tbm_bufmgr bufmgr, unsigned int key)
 
        TBM_BO_RETURN_VAL_IF_FAIL(TBM_BUFMGR_IS_VALID(bufmgr), NULL);
 
-       if (!bufmgr->use_hal_tbm) {
-               if (bufmgr->backend_module_data) {
-                       if (!bufmgr->bufmgr_func->bufmgr_import_key) {
-                               /* LCOV_EXCL_START */
-                               _tbm_bufmgr_mutex_unlock();
-                               _tbm_set_last_result(TBM_ERROR_NOT_SUPPORTED);
-                               return NULL;
-                               /* LCOV_EXCL_STOP */
-                       }
-               } else {
-                       if (!bufmgr->backend->bo_import) {
-                               /* LCOV_EXCL_START */
-                               _tbm_bufmgr_mutex_unlock();
-                               _tbm_set_last_result(TBM_ERROR_NOT_SUPPORTED);
-                               return NULL;
-                               /* LCOV_EXCL_STOP */
-                       }
-               }
-       }
-
        _tbm_util_check_bo_cnt(bufmgr);
 
        bo = calloc(1, sizeof(struct _tbm_bo));
@@ -884,77 +861,27 @@ tbm_bo_import(tbm_bufmgr bufmgr, unsigned int key)
                /* LCOV_EXCL_STOP */
        }
 
-       if (bufmgr->use_hal_tbm) {
-               bo_data = (tbm_backend_bo_data *)hal_tbm_bufmgr_import_key(bufmgr->hal_bufmgr, key, (hal_tbm_error *)&error);
+       bo->bo_data = tbm_module_bufmgr_bo_import_key(bufmgr->module, bo, key, &error);
+       if (!bo->bo_data) {
                /* LCOV_EXCL_START */
-               if (!bo_data) {
-                       TBM_ERR("error: fail to import of tbm_bo by key(%d). error(%d)\n", key, error);
-                       _tbm_set_last_result(error);
-                       goto import_fail;
-               }
+               TBM_ERR("tbm_module_bufmgr_bo_import_key failed. tbm_key:%d", key);
+               _tbm_set_last_result(error);
+               _tbm_bufmgr_mutex_unlock();
+               return NULL;
                /* LCOV_EXCL_STOP */
-               if (!LIST_IS_EMPTY(&bufmgr->bo_list)) {
-                       LIST_FOR_EACH_ENTRY(bo2, &bufmgr->bo_list, item_link) {
-                               if (bo2->bo_data == bo_data) {
-                                       TBM_TRACE_BO("find bo(%p) ref(%d) key(%d) flag(%s) in list\n",
-                                                       bo2, bo2->ref_cnt, key,
-                                                       _tbm_flag_to_str(bo2->flags));
-                                       bo2->ref_cnt++;
-                                       free(bo);
-                                       _tbm_bufmgr_mutex_unlock();
-                                       return bo2;
-                               }
-                       }
-               }
-               bo->bo_data = bo_data;
-       } else if (bufmgr->backend_module_data) {
-               bo_data = bufmgr->bufmgr_func->bufmgr_import_key(bufmgr->bufmgr_data, key, &error);
-               if (!bo_data) {
-                       /* LCOV_EXCL_START */
-                       TBM_ERR("error: fail to import of tbm_bo by key(%d). error(%d)\n", key, error);
-                       _tbm_set_last_result(error);
-                       goto import_fail;
-                       /* LCOV_EXCL_STOP */
-               }
-
-               if (!LIST_IS_EMPTY(&bufmgr->bo_list)) {
-                       LIST_FOR_EACH_ENTRY(bo2, &bufmgr->bo_list, item_link) {
-                               if (bo2->bo_data == bo_data) {
-                                       TBM_TRACE_BO("find bo(%p) ref(%d) key(%d) flag(%s) in list\n",
-                                                       bo2, bo2->ref_cnt, key,
-                                                       _tbm_flag_to_str(bo2->flags));
-                                       bo2->ref_cnt++;
-                                       free(bo);
-                                       _tbm_bufmgr_mutex_unlock();
-                                       return bo2;
-                               }
-                       }
-               }
-               bo->bo_data = bo_data;
-       } else {
-               bo_priv = bufmgr->backend->bo_import(bo, key);
-               if (!bo_priv) {
-                       /* LCOV_EXCL_START */
-                       TBM_ERR("error: fail to import of tbm_bo by key(%d)\n", key);
-                       _tbm_set_last_result(TBM_ERROR_INVALID_OPERATION);
-                       goto import_fail;
-                       /* LCOV_EXCL_STOP */
-               }
+       }
 
-               if (!LIST_IS_EMPTY(&bufmgr->bo_list)) {
-                       LIST_FOR_EACH_ENTRY(bo2, &bufmgr->bo_list, item_link) {
-                               if (bo2->priv == bo_priv) {
-                                       TBM_TRACE_BO("find bo(%p) ref(%d) key(%d) flag(%s) in list\n",
-                                                       bo2, bo2->ref_cnt, key,
-                                                       _tbm_flag_to_str(bo2->flags));
-                                       bo2->ref_cnt++;
-                                       free(bo);
-                                       _tbm_bufmgr_mutex_unlock();
-                                       return bo2;
-                               }
+       if (!LIST_IS_EMPTY(&bufmgr->bo_list)) {
+               LIST_FOR_EACH_ENTRY(bo2, &bufmgr->bo_list, item_link) {
+                       if (bo2->bo_data == bo->bo_data) {
+                               TBM_TRACE_BO("find bo(%p) ref(%d) key(%d) flag(%s) in list",
+                                               bo2, bo2->ref_cnt, key, _tbm_flag_to_str(bo2->flags));
+                               bo2->ref_cnt++;
+                               free(bo);
+                               _tbm_bufmgr_mutex_unlock();
+                               return bo2;
                        }
                }
-               bo->priv = bo_priv;
        }
 
        if (bufmgr->use_hal_tbm) {
@@ -986,11 +913,6 @@ tbm_bo_import(tbm_bufmgr bufmgr, unsigned int key)
        _tbm_bufmgr_mutex_unlock();
 
        return bo;
-
-import_fail:
-       free(bo);
-       _tbm_bufmgr_mutex_unlock();
-       return NULL;
 }
 
 tbm_bo