Align callback function prototype to Tizen Framework ones 33/27633/1 accepted/tizen_3.0.2014.q3_common accepted/tizen_3.0.m14.3_ivi tizen_3.0.2014.q3_common tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.m14.3_ivi tizen_3.0_ivi accepted/tizen/common/20140917.103355 accepted/tizen/ivi/20140925.212649 submit/tizen_common/20140916.181156 submit/tizen_common/20140916.203010 submit/tizen_ivi/20140919.000000 submit/tizen_ivi/20140924.000000 submit/tizen_ivi/20140924.063121 submit/tizen_ivi/20140924.150732 submit/tizen_mobile/20141120.000000 tizen_3.0.2014.q3_common_release tizen_3.0.m14.3_ivi_release tizen_3.0_ivi_release
authorBaptiste DURAND <baptiste.durand@open.eurogiciel.org>
Wed, 10 Sep 2014 12:57:07 +0000 (14:57 +0200)
committerBaptiste DURAND <baptiste.durand@open.eurogiciel.org>
Tue, 16 Sep 2014 17:57:00 +0000 (19:57 +0200)
Remove deprecated API
Signed-off-by: Baptiste DURAND <baptiste.durand@open.eurogiciel.org>
Change-Id: I6c4c2c8efbf3f4cdfb900a382802852511084043

include/app_manager.h
include/app_manager_deprecated.h [deleted file]
src/app_info.c
src/app_manager_deprecated.c [deleted file]

index b2a2e37..1343a04 100755 (executable)
@@ -23,7 +23,6 @@
 #include <app_context.h>
 #include <app_info.h>
 
-#include <app_manager_deprecated.h>
 
 #ifdef __cplusplus
 extern "C" {
diff --git a/include/app_manager_deprecated.h b/include/app_manager_deprecated.h
deleted file mode 100755 (executable)
index 4d3f25c..0000000
+++ /dev/null
@@ -1,189 +0,0 @@
-/*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the License);
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License. 
- */
-
-#ifndef __TIZEN_APPFW_APP_MANAGER_DEPRECATED_H
-#define __TIZEN_APPFW_APP_MANAGER_DEPRECATED_H
-
-#include <tizen.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-/**
- * @addtogroup CAPI_APPLICATION_MANAGER_MODULE
- * @{
- */
-
-/**
- * @brief Enumerations of event type for the list of the installed applications.
- */
-typedef enum
-{
-       APP_MANAGER_EVENT_INSTALLED = 40,       /**< Install event */
-       APP_MANAGER_EVENT_UNINSTALLED = 41,             /**< Uninstall event */
-       APP_MANAGER_EVENT_UPDATED = 42,         /**< Update event */
-} app_manger_event_type_e;
-
-/**
- * @internal
- * @remark This callback is @b deprecated. Use app_manager_app_context_cb() instead.
- * @brief Called to get the package name once for each running application.
- * @param[in] package The package name of each running application
- * @param[in] user_data The user data passed from the foreach function
- * @return @c true to continue with the next iteration of the loop, \n @c false to break out of the loop.
- * @pre        app_manager_foreach_app_running() will invoke this callback.
- * @see app_manager_foreach_app_running()
- */
-typedef bool (*app_manager_app_running_cb) (const char *package, void *user_data);
-
-/**
- * @brief Called to get the package name once for each installed application.
- *
- * @param[in] package The package name of each installed application
- * @param[in] user_data The user data passed from the foreach function
- * @return @c true to continue with the next iteration of the loop, \n @c false to break out of the loop.
- * @pre        app_manager_foreach_app_installed() will invoke this callback.
- * @see app_manager_foreach_app_installed()
- */
-typedef bool (*app_manager_app_installed_cb) (const char *package, void *user_data);
-
-/**
- * @brief  Called when the list of the installed applications changes.
- *
- * @param[in] event_type The type of applist modification event
- * @param[in] package The package name of application installed or uninstalled
- * @param[in] user_data The user data passed from the callback registration function
- * @pre        An application registers this callback using app_manager_set_app_list_changed_cb() 
- *     to detect change of list of the installed applications.
- * @see app_manager_set_app_list_changed_cb()
- * @see app_manager_unset_app_list_changed_cb()
- */
-typedef void(*app_manager_app_list_changed_cb) (app_manger_event_type_e event_type, const char *package, void *user_data);
-
-/**
- * @internal
- * @remark This function is @b deprecated. Use app_manager_foreach_app_context() instead.
- * @brief Retrieves the package names of all running applications 
- * by invoking the callback once for each running application to get their package names.
- *
- * @param [in] callback The callback function to invoke
- * @param [in] user_data The user data to be passed to the callback function
- * @return 0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE Successful
- * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @post       This function invokes app_manager_app_running_cb() repeatedly for each running application.
- * @see        app_manager_app_running_cb()
- */
-int app_manager_foreach_app_running(app_manager_app_running_cb callback, void *user_data);
-
-/**
- * @brief Retrieves the package names of all installed applications 
- * by invoking the callback once for each installed application to get their package names.
- *
- * @param [in] callback The callback function to invoke
- * @param [in] user_data The user data to be passed to the callback function
- * @return 0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE Successful
- * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory
- * @post       This function invokes app_manager_app_installed_cb() repeatedly for each installed application.
- * @see        app_manager_app_installed_cb()
- */
-int app_manager_foreach_app_installed(app_manager_app_installed_cb callback, void *user_data);
-
-/**
- * @brief Gets the application name with the given package name.
- *
- * @remarks @a name must be released with free() by you.
- * @param [in] package The package name of the application
- * @param [out] name   The application name
- * @return 0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE Successful
- * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_INVALID_PACKAGE Package name is invalid, Can not find the package
- * @retval #APP_MANAGER_ERROR_DB_FAILED Database error occurred
- * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory
- */
-int app_manager_get_app_name(const char *package, char **name);
-
-/**
- * @brief Gets the application icon path with the given package name.
- *
- * @remarks @a icon_path must be released with free() by you.
- * @param [in] package The package name of the application
- * @param [out] icon_path The icon path to represent the application
- * @return 0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE Successful
- * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_INVALID_PACKAGE Package name is invalid, Can not find the package
- * @retval #APP_MANAGER_ERROR_DB_FAILED Database error occurred
- * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory
- */
-int app_manager_get_app_icon_path(const char *package, char **icon_path);
-
-/**
- * @brief Gets the application version with the given package name.
- *
- * @remarks @a version must be released with free() by you.
- * @param [in] package The package name of the application
- * @param [out] version The version of the application
- * @return 0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE Successful
- * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_INVALID_PACKAGE Package name is invalid, Can not find the package
- * @retval #APP_MANAGER_ERROR_DB_FAILED Database error occurred
- * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory
- */
-int app_manager_get_app_version(const char *package, char **version);
-
-/**
- * @brief   Registers a callback function to be invoked when the list of the installed applications changes.
- *
- * @param[in] callback The callback function to register
- * @param[in] user_data The user data to be passed to the callback function
- * @return  0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE On Successful
- * @retval #APP_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #APP_MANAGER_ERROR_OUT_OF_MEMORY Out of memory
- * @post       It will invoke app_manager_app_list_changed_cb() when the list of installed application changes.
- * @see app_manager_unset_app_list_changed_cb()
- * @see app_manager_app_list_changed_cb()
- */
-int app_manager_set_app_list_changed_cb(app_manager_app_list_changed_cb callback, void *user_data);
-
-/**
- * @brief   Unregisters the callback function.
- *
- * @return 0 on success, otherwise a negative error value.
- * @retval #APP_MANAGER_ERROR_NONE Successful
- * @see app_manager_set_app_list_changed_cb()
- * @see app_manager_app_list_changed_cb()
- */
-int app_manager_unset_app_list_changed_cb(void);
-
-/**
- * @}
- */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __TIZEN_APPFW_APP_MANAGER_DEPRECATED_H */
-
index a2a5047..8807857 100755 (executable)
@@ -51,7 +51,7 @@ static pkgmgr_client *package_event_listener = NULL;
 static app_manager_app_info_event_cb app_info_event_cb = NULL;
 static void *app_info_event_cb_data = NULL;
 
-static ail_cb_ret_e app_info_foreach_app_info_cb(const ail_appinfo_h ail_app_info, void *cb_data)
+static ail_cb_ret_e app_info_foreach_app_info_cb(const ail_appinfo_h ail_app_info, void *cb_data,uid_t uid)
 {
        foreach_context_s *foreach_context = cb_data;
        app_info_h app_info = NULL;
@@ -94,7 +94,7 @@ int app_info_foreach_app_info(app_manager_app_info_cb callback, void *user_data)
                return app_manager_error(APP_MANAGER_ERROR_INVALID_PARAMETER, __FUNCTION__, NULL);
        }
 
-       ail_filter_list_appinfo_foreach(NULL, app_info_foreach_app_info_cb, &foreach_context);
+       ail_filter_list_usr_appinfo_foreach(NULL, app_info_foreach_app_info_cb, &foreach_context,getuid());
 
        return APP_MANAGER_ERROR_NONE;
 }
diff --git a/src/app_manager_deprecated.c b/src/app_manager_deprecated.c
deleted file mode 100755 (executable)
index b13551e..0000000
+++ /dev/null
@@ -1,366 +0,0 @@
-/*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the License);
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License. 
- */
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include <aul.h>
-#include <aul_service.h>
-#include <vconf.h>
-#include <ail.h>
-#include <package-manager.h>
-#include <dlog.h>
-
-#include <app_manager.h>
-#include <app_manager_private.h>
-
-#ifdef LOG_TAG
-#undef LOG_TAG
-#endif
-
-#define LOG_TAG "CAPI_APPFW_APP_MANAGER"
-
-typedef struct {
-       app_manager_app_running_cb cb;
-       void *user_data;
-       bool foreach_break;
-} running_apps_foreach_cb_context;
-
-typedef struct {
-       app_manager_app_installed_cb cb;
-       void *user_data;
-} installed_apps_foreach_cb_context;
-
-static pkgmgr_client *package_manager = NULL;
-static app_manager_app_list_changed_cb app_list_changed_cb = NULL;
-static void *app_list_changed_cb_data = NULL;
-
-static int foreach_running_app_cb_broker(const aul_app_info * appcore_app_info, void *appcore_user_data)
-{
-       ail_appinfo_h handle;
-       ail_error_e ret;
-       bool task_manage = false;
-       running_apps_foreach_cb_context *foreach_cb_context = NULL;
-
-       if (appcore_app_info == NULL || appcore_user_data == NULL) 
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x) : invalid callback context", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return 0;
-       }
-
-       ret = ail_get_appinfo(appcore_app_info->pkg_name, &handle);
-       if (ret != AIL_ERROR_OK)
-       {
-               LOGE("[%s] DB_FAILED(0x%08x) : failed to get the app-info", __FUNCTION__, APP_MANAGER_ERROR_DB_FAILED);
-               return 0;
-       }
-
-       // do not call callback function when X-SLP-TaskManage is set to false
-       ret = ail_appinfo_get_bool(handle, AIL_PROP_X_SLP_TASKMANAGE_BOOL, &task_manage);
-
-       ail_destroy_appinfo(handle);
-
-       if (ret != AIL_ERROR_OK || task_manage == false)
-       {
-               return 0;
-       }
-
-       foreach_cb_context = (running_apps_foreach_cb_context *)appcore_user_data;
-
-       if (foreach_cb_context->cb != NULL && foreach_cb_context->foreach_break == false)
-       {
-               if (foreach_cb_context->cb(appcore_app_info->pkg_name, foreach_cb_context->user_data) == false)
-               {
-                       foreach_cb_context->foreach_break = true;
-               }
-       }
-
-       return 0;
-}
-
-static ail_cb_ret_e foreach_installed_app_cb_broker(const ail_appinfo_h appinfo, void *ail_user_data)
-{
-       installed_apps_foreach_cb_context *foreach_cb_context = NULL;
-       char *package;
-
-       if (appinfo == NULL || ail_user_data == NULL)
-       {
-               return AIL_CB_RET_CANCEL;
-       }
-
-       foreach_cb_context = (installed_apps_foreach_cb_context *)ail_user_data;
-
-       ail_appinfo_get_str(appinfo, AIL_PROP_PACKAGE_STR, &package);
-
-       if (foreach_cb_context->cb(package, foreach_cb_context->user_data)  == false)
-       {
-               return AIL_CB_RET_CANCEL;
-       }
-       
-       return AIL_CB_RET_CONTINUE;
-
-}
-
-
-static int app_manager_ail_error_handler(ail_error_e ail_error, const char *func)
-{
-       int error_code;
-       char *error_msg;
-
-       switch(ail_error)
-       {
-               case AIL_ERROR_FAIL:
-                       error_code = APP_MANAGER_ERROR_INVALID_PARAMETER;
-                       error_msg = "INVALID_PARAMETER";
-                       break;
-
-               case AIL_ERROR_DB_FAILED:
-                       error_code = APP_MANAGER_ERROR_DB_FAILED;
-                       error_msg = "DB_FAILED";
-                       break;
-
-               case AIL_ERROR_OUT_OF_MEMORY:
-                       error_code = APP_MANAGER_ERROR_OUT_OF_MEMORY;
-                       error_msg = "OUT_OF_MEMORY";
-                       break;
-
-               case AIL_ERROR_INVALID_PARAMETER:
-                       error_code = APP_MANAGER_ERROR_INVALID_PARAMETER;
-                       error_msg = "INVALID_PARAMETER";
-                       break;
-               
-               case AIL_ERROR_OK:
-                       error_code = APP_MANAGER_ERROR_NONE;
-                       break;
-                       
-               default:
-                       error_code = APP_MANAGER_ERROR_INVALID_PARAMETER;
-                       error_msg = "INVALID_PARAMETER";
-       }
-
-       if (error_code != APP_MANAGER_ERROR_NONE)
-       {
-               LOGE("[%s] %s(0x%08x)", func, error_msg, error_code);
-       }
-
-       return error_code;
-}
-
-
-int app_manager_foreach_app_running(app_manager_app_running_cb callback, void *user_data)
-{
-       running_apps_foreach_cb_context foreach_cb_context = {
-               .cb = callback,
-               .user_data = user_data,
-               .foreach_break = false
-       };
-
-       if (callback == NULL)
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x) : invalid callback", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-
-       aul_app_get_running_app_info(foreach_running_app_cb_broker, &foreach_cb_context);
-
-       return APP_MANAGER_ERROR_NONE;
-}
-
- int app_manager_foreach_app_installed(app_manager_app_installed_cb callback, void *user_data)
-{
-       ail_filter_h filter;
-       ail_error_e ret;
-
-       if (callback == NULL)
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x) : invalid callback", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-
-       ret = ail_filter_new(&filter);
-       if (ret != AIL_ERROR_OK)
-       {
-               return app_manager_ail_error_handler(ret, __FUNCTION__);
-       }
-
-       installed_apps_foreach_cb_context foreach_cb_context = {
-               .cb = callback,
-               .user_data = user_data,
-       };
-
-       ail_filter_list_appinfo_foreach(filter, foreach_installed_app_cb_broker, &foreach_cb_context);
-
-       ail_filter_destroy(filter);
-       
-       return APP_MANAGER_ERROR_NONE;
-}
-
-static int app_manager_get_appinfo(const char *package, const char *property, char **value)
-{
-       ail_error_e ail_error;
-       ail_appinfo_h appinfo;
-       char *appinfo_value;
-       char *appinfo_value_dup;
-
-       ail_error = ail_get_appinfo(package, &appinfo);
-       if (ail_error != AIL_ERROR_OK)
-       {
-               return app_manager_ail_error_handler(ail_error, __FUNCTION__);
-       }
-
-       ail_error = ail_appinfo_get_str(appinfo, property, &appinfo_value);
-       if (ail_error != AIL_ERROR_OK)
-       {
-               ail_destroy_appinfo(appinfo);
-               return app_manager_ail_error_handler(ail_error, __FUNCTION__);
-       }
-
-       appinfo_value_dup = strdup(appinfo_value);
-
-       ail_destroy_appinfo(appinfo);
-
-       if (appinfo_value_dup == NULL)
-       {
-               LOGE("[%s] OUT_OF_MEMORY(0x%08x)", __FUNCTION__, APP_MANAGER_ERROR_OUT_OF_MEMORY);
-               return APP_MANAGER_ERROR_OUT_OF_MEMORY;
-       }
-
-       *value = appinfo_value_dup;
-       
-       return APP_MANAGER_ERROR_NONE;
-}
-
-int app_manager_get_app_name(const char *package, char** name)
-{
-       if (package == NULL)
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x) : invalid package", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-
-       return app_manager_get_appinfo(package, AIL_PROP_NAME_STR, name);
-}
-int app_manager_get_app_icon_path(const char *package, char** icon_path)
-{
-       if (package == NULL)
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x) : invalid package", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-
-       return app_manager_get_appinfo(package, AIL_PROP_ICON_STR, icon_path);
-}
-
-int app_manager_get_app_version(const char *package, char** version)
-{
-       if (package == NULL)
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x) : invalid package", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-
-       return app_manager_get_appinfo(package, AIL_PROP_VERSION_STR, version);
-}
-
-static app_manger_event_type_e app_manager_app_list_pkgmgr_event(const char *value)
-{
-       if (!strcasecmp(value, "install"))
-       {
-               return APP_MANAGER_EVENT_INSTALLED;
-       }
-       else if (!strcasecmp(value, "uninstall"))
-       {
-               return APP_MANAGER_EVENT_UNINSTALLED;   
-       }
-       else if (!strcasecmp(value, "update"))
-       {
-               return APP_MANAGER_EVENT_UPDATED;               
-       }
-       else
-       {
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-}
-
-static int app_manager_app_list_changed_cb_broker(int id, const char *type, const char *package, const char *key, const char *val, const void *msg, void *data)
-{
-       static int event_id = -1;
-       static app_manger_event_type_e event_type;
-
-       if (!strcasecmp(key, "start"))
-       {
-               event_id = id;
-               event_type = app_manager_app_list_pkgmgr_event(val);
-       }
-       else if (!strcasecmp(key, "end") && !strcasecmp(val, "ok") && id == event_id)
-       {
-               if (app_list_changed_cb != NULL && event_type >= 0)
-               {
-                       app_list_changed_cb(event_type, package, app_list_changed_cb_data);
-               }
-
-               event_id = -1;
-               event_type = -1;
-       }
-
-       return APP_MANAGER_ERROR_NONE;
-}
-
-int app_manager_set_app_list_changed_cb(app_manager_app_list_changed_cb callback, void* user_data)
-{
-       if (callback == NULL) 
-       {
-               LOGE("[%s] INVALID_PARAMETER(0x%08x)", __FUNCTION__, APP_MANAGER_ERROR_INVALID_PARAMETER);
-               return APP_MANAGER_ERROR_INVALID_PARAMETER;
-       }
-
-       if (app_list_changed_cb == NULL)
-       {
-               package_manager = pkgmgr_client_new(PC_LISTENING);
-
-               if (package_manager == NULL)
-               {
-                       LOGE("[%s] OUT_OF_MEMORY(0x%08x)", __FUNCTION__, APP_MANAGER_ERROR_OUT_OF_MEMORY);
-                       return APP_MANAGER_ERROR_OUT_OF_MEMORY;
-               }
-
-               pkgmgr_client_listen_status(package_manager, app_manager_app_list_changed_cb_broker, NULL);
-       }
-
-       app_list_changed_cb = callback;
-       app_list_changed_cb_data = user_data;
-
-       return APP_MANAGER_ERROR_NONE;
-}
-
-int app_manager_unset_app_list_changed_cb()
-{      
-       if (app_list_changed_cb != NULL)
-       {
-               pkgmgr_client_free(package_manager);
-               package_manager = NULL;
-       }
-
-       app_list_changed_cb = NULL;
-       app_list_changed_cb_data = NULL;
-
-       return APP_MANAGER_ERROR_NONE;
-}
-