X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fpkgmgrinfo_appinfo.c;h=232d75ef84d4eb11c44868e514851e3cf854e05f;hb=41cce529439cf79037137b28afce5aafaf4241f5;hp=c231d287356f9576c5c7f63ff8ee735842edf087;hpb=d2ca83c464a13259ed7850f6b0080146d454a596;p=platform%2Fcore%2Fappfw%2Fpkgmgr-info.git diff --git a/src/pkgmgrinfo_appinfo.c b/src/pkgmgrinfo_appinfo.c index c231d28..232d75e 100644 --- a/src/pkgmgrinfo_appinfo.c +++ b/src/pkgmgrinfo_appinfo.c @@ -52,63 +52,65 @@ static const char join_app_control[] = static const char join_metadata[] = " LEFT OUTER JOIN package_app_app_metadata" " ON ai.app_id=package_app_app_metadata.app_id "; +static const char join_privilege[] = + " LEFT OUTER JOIN package_privilege_info" + " ON ai.package=package_privilege_info.package "; static int _get_filtered_query(pkgmgrinfo_filter_x *filter, - const char *locale, char **query, GList **bind_params) + const char *locale, uid_t uid, char **query, GList **bind_params) { int joined = 0; - size_t len = 0; char *condition = NULL; char buf[MAX_QUERY_LEN] = { '\0' }; char tmp_query[MAX_QUERY_LEN] = { '\0' }; - static const char query_pkg_disable[] = " AND ai.package IN " - "(SELECT package FROM package_info WHERE package_disable='false')"; GSList *list; - len += strlen(" WHERE 1=1"); - strncat(buf, " WHERE 1=1", MAX_QUERY_LEN - len - 1); - - if (filter == NULL) { - strncat(buf, query_pkg_disable, MAX_QUERY_LEN - len - 1); - *query = strdup(buf); + if (!filter) return PMINFO_R_OK; - } + strncat(buf, " WHERE 1=1", sizeof(buf) - strlen(buf) - 1); for (list = filter->list; list; list = list->next) { - joined |= __get_filter_condition(list->data, &condition, bind_params); + joined |= __get_filter_condition(list->data, uid, &condition, bind_params); if (condition == NULL) continue; - len += strlen(" AND "); - strncat(buf, " AND ", MAX_QUERY_LEN - len - 1); + strncat(buf, " AND ", sizeof(buf) - strlen(buf) - 1); - len += strlen(condition); - strncat(buf, condition, sizeof(buf) - len - 1); + strncat(buf, condition, sizeof(buf) - strlen(buf) - 1); free(condition); condition = NULL; } + if (filter->list_metadata) + strncat(buf, " AND (", sizeof(buf) - strlen(buf) - 1); + for (list = filter->list_metadata; list; list = list->next) { + joined |= __get_metadata_filter_condition(list->data, + &condition, bind_params); + if (condition == NULL) + continue; + strncat(buf, condition, sizeof(buf) - strlen(buf) - 1); + free(condition); + condition = NULL; + + strncat(buf, " OR ", sizeof(buf) - strlen(buf) - 1); + } + if (filter->list_metadata) + strncat(buf, "1=0)", sizeof(buf) - strlen(buf) - 1); + if (joined & E_PMINFO_APPINFO_JOIN_LOCALIZED_INFO) { - strncat(tmp_query, join_localized_info, MAX_QUERY_LEN - len - 1); - len += strlen(join_localized_info); + strncat(tmp_query, join_localized_info, sizeof(tmp_query) - strlen(tmp_query) - 1); *bind_params = g_list_append(*bind_params, strdup(locale)); } - if (joined & E_PMINFO_APPINFO_JOIN_CATEGORY) { - strncat(tmp_query, join_category, MAX_QUERY_LEN - len - 1); - len += strlen(join_category); - } - if (joined & E_PMINFO_APPINFO_JOIN_APP_CONTROL) { - strncat(tmp_query, join_app_control, MAX_QUERY_LEN - len - 1); - len += strlen(join_app_control); - } - if (joined & E_PMINFO_APPINFO_JOIN_METADATA) { - strncat(tmp_query, join_metadata, MAX_QUERY_LEN - len - 1); - len += strlen(join_metadata); - } - strncat(tmp_query, buf, MAX_QUERY_LEN - len - 1); + if (joined & E_PMINFO_APPINFO_JOIN_CATEGORY) + strncat(tmp_query, join_category, sizeof(tmp_query) - strlen(tmp_query) - 1); + if (joined & E_PMINFO_APPINFO_JOIN_APP_CONTROL) + strncat(tmp_query, join_app_control, sizeof(tmp_query) - strlen(tmp_query) - 1); + if (joined & E_PMINFO_APPINFO_JOIN_METADATA) + strncat(tmp_query, join_metadata, sizeof(tmp_query) - strlen(tmp_query) - 1); + if (joined & E_PMINFO_APPINFO_JOIN_PRIVILEGE) + strncat(tmp_query, join_privilege, sizeof(tmp_query) - strlen(tmp_query) - 1); - len += strlen(buf); - strncat(tmp_query, query_pkg_disable, MAX_QUERY_LEN - len - 1); + strncat(tmp_query, buf, sizeof(tmp_query) - strlen(tmp_query) - 1); *query = strdup(tmp_query); if (*query == NULL) @@ -152,7 +154,8 @@ static int _appinfo_get_category(sqlite3 *db, const char *appid, return PMINFO_R_OK; } -static void __parse_appcontrol(GList **appcontrol, char *appcontrol_str) +static void __parse_appcontrol(GList **appcontrol, char *appcontrol_str, + char *visibility) { char *dup; char *token; @@ -163,6 +166,11 @@ static void __parse_appcontrol(GList **appcontrol, char *appcontrol_str) return; dup = strdup(appcontrol_str); + if (dup == NULL) { + _LOGE("out of memory"); + return; + } + do { ac = calloc(1, sizeof(appcontrol_x)); if (ac == NULL) { @@ -178,6 +186,7 @@ static void __parse_appcontrol(GList **appcontrol, char *appcontrol_str) token = strtok_r(NULL, "|", &ptr); if (token && strcmp(token, "NULL")) ac->mime = strdup(token); + ac->visibility = strdup(visibility); *appcontrol = g_list_append(*appcontrol, ac); } while ((token = strtok_r(NULL, ";", &ptr))); @@ -188,12 +197,13 @@ static int _appinfo_get_app_control(sqlite3 *db, const char *appid, GList **appcontrol) { static const char query_raw[] = - "SELECT app_control FROM package_app_app_control " + "SELECT app_control, visibility FROM package_app_app_control " "WHERE app_id=%Q"; int ret; char *query; sqlite3_stmt *stmt; char *str; + char *visibility; query = sqlite3_mprintf(query_raw, appid); if (query == NULL) { @@ -210,54 +220,13 @@ static int _appinfo_get_app_control(sqlite3 *db, const char *appid, while (sqlite3_step(stmt) == SQLITE_ROW) { str = NULL; + visibility = NULL; _save_column_str(stmt, 0, &str); + _save_column_str(stmt, 0, &visibility); /* TODO: revise */ - __parse_appcontrol(appcontrol, str); + __parse_appcontrol(appcontrol, str, visibility); free(str); - } - - sqlite3_finalize(stmt); - - return PMINFO_R_OK; -} - -static int _appinfo_get_data_control(sqlite3 *db, const char *appid, - GList **datacontrol) -{ - static const char query_raw[] = - "SELECT providerid, access, type " - "FROM package_app_data_control WHERE app_id=%Q"; - int ret; - char *query; - sqlite3_stmt *stmt; - int idx; - datacontrol_x *info; - - query = sqlite3_mprintf(query_raw, appid); - if (query == NULL) { - LOGE("out of memory"); - return PMINFO_R_ERROR; - } - - ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); - sqlite3_free(query); - if (ret != SQLITE_OK) { - LOGE("prepare failed: %s", sqlite3_errmsg(db)); - return PMINFO_R_ERROR; - } - - while (sqlite3_step(stmt) == SQLITE_ROW) { - info = calloc(1, sizeof(datacontrol_x)); - if (info == NULL) { - LOGE("out of memory"); - sqlite3_finalize(stmt); - return PMINFO_R_ERROR; - } - idx = 0; - _save_column_str(stmt, idx++, &info->providerid); - _save_column_str(stmt, idx++, &info->access); - _save_column_str(stmt, idx++, &info->type); - *datacontrol = g_list_append(*datacontrol, info); + free(visibility); } sqlite3_finalize(stmt); @@ -397,40 +366,37 @@ static GList *__get_background_category(const char *value) } -static void __get_splash_screen_display(sqlite3 *db, const char *appid, uid_t uid, char **value) +static void __free_applications(gpointer data) { - static const char query_raw[] = - "SELECT is_splash_screen_enabled FROM package_app_info_for_uid " - "WHERE app_id='%s' AND uid='%d'"; - int ret; - char *query; - sqlite3_stmt *stmt; - - query = sqlite3_mprintf(query_raw, appid, uid); - if (query == NULL) { - LOGE("out of memory"); - return; - } - - ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); - sqlite3_free(query); - if (ret != SQLITE_OK) { - LOGE("sqlite3_prepare_v2() failed: %s", sqlite3_errmsg(db)); - return; - } + pkgmgrinfo_basic_free_application((application_x *)data); +} - while (sqlite3_step(stmt) == SQLITE_ROW) { - if (*value) - free(*value); - _save_column_str(stmt, 0, value); - } +static gint __disable_chk_func(gconstpointer data1, gconstpointer data2) +{ + pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)data1; + pkgmgrinfo_appinfo_disable_type value = GPOINTER_TO_INT(data2); - sqlite3_finalize(stmt); + if (value == E_APPINFO_DISABLE_TYPE_PKG) + return (node->prop == E_PMINFO_APPINFO_PROP_PKG_DISABLE) + ? 0 : 1; + else + return (node->prop == E_PMINFO_APPINFO_PROP_APP_DISABLE) + ? 0 : 1; } -static void __free_applications(gpointer data) +static bool __check_disable_filter_exist(pkgmgrinfo_filter_x *filter, + pkgmgrinfo_appinfo_disable_type type) { - pkgmgrinfo_basic_free_application((application_x *)data); + GSList *link; + + if (filter == NULL) + return false; + + link = g_slist_find_custom(filter->list, GINT_TO_POINTER(type), __disable_chk_func); + if (link) + return true; + + return false; } static int __bind_params(sqlite3_stmt *stmt, GList *params) @@ -453,27 +419,57 @@ static int __bind_params(sqlite3_stmt *stmt, GList *params) return PMINFO_R_OK; } +static bool __check_app_storage_status(pkgmgrinfo_filter_x *tmp_filter) +{ + GSList *tmp_list = NULL; + pkgmgrinfo_node_x *tmp_node = NULL; + int property = -1; + + if (tmp_filter == NULL) + return true; + + property = _pminfo_appinfo_convert_to_prop_bool(PMINFO_APPINFO_PROP_APP_CHECK_STORAGE); + for (tmp_list = tmp_filter->list; tmp_list != NULL; + tmp_list = g_slist_next(tmp_list)) { + tmp_node = (pkgmgrinfo_node_x *)tmp_list->data; + if (property == tmp_node->prop) { + if (strcmp(tmp_node->value, "true") == 0) + return true; + else + return false; + } + } + + return true; +} + static int _appinfo_get_applications(uid_t db_uid, uid_t uid, const char *locale, pkgmgrinfo_filter_x *filter, int flag, GHashTable *applications) { static const char query_raw[] = - "SELECT DISTINCT ai.app_id, ai.app_component, ai.app_exec, " + "SELECT DISTINCT ai.app_id, ai.app_installed_storage, " + "ai.app_external_path"; + static const char query_basic[] = + ", ai.app_component, ai.app_exec, " "ai.app_nodisplay, ai.app_type, ai.app_onboot, " "ai.app_multiple, ai.app_autorestart, ai.app_taskmanage, " - "ai.app_enabled, ai.app_hwacceleration, ai.app_screenreader, " + "ai.app_hwacceleration, ai.app_screenreader, " "ai.app_mainapp, ai.app_recentimage, ai.app_launchcondition, " "ai.app_indicatordisplay, ai.app_portraitimg, " "ai.app_landscapeimg, ai.app_guestmodevisibility, " "ai.app_permissiontype, ai.app_preload, ai.app_submode, " "ai.app_submode_mainid, ai.app_launch_mode, ai.app_ui_gadget, " "ai.app_support_disable, ai.app_process_pool, " - "ai.app_installed_storage, ai.app_background_category, " - "ai.app_package_type, ai.app_root_path, ai.app_api_version, " - "ai.app_effective_appid, ai.app_disable, " - "ai.app_splash_screen_display, ai.app_tep_name, " + "ai.app_background_category, ai.app_package_type, " + "ai.app_root_path, ai.app_api_version, ai.app_effective_appid, " + "ai.app_disable, ai.app_splash_screen_display, ai.app_tep_name, " "ai.app_zip_mount_file, ai.component_type, ai.package, " - "ai.app_external_path"; + "ai.app_package_system, ai.app_removable, " + "ai.app_package_installed_time, ai.app_support_mode, " + "ai.app_support_ambient, ai.app_setup_appid"; + static const char query_uid_info[] = + ", ui.is_disabled, ui.is_splash_screen_enabled"; static const char query_label[] = ", COALESCE(" "(SELECT app_label FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale=?), " @@ -483,54 +479,67 @@ static int _appinfo_get_applications(uid_t db_uid, uid_t uid, "(SELECT app_icon FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale=?), " "(SELECT app_icon FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale='No Locale'))"; static const char query_from_clause[] = " FROM package_app_info as ai"; + static const char query_uid_info_clause[] = + " LEFT OUTER JOIN package_app_info_for_uid AS ui " + "ON (ai.app_id=ui.app_id AND ui.uid=?)"; int ret = PMINFO_R_ERROR; int idx; - int len = 0; char *dbpath; char *bg_category_str = NULL; char *constraint = NULL; char *tmp_record = NULL; char query[MAX_QUERY_LEN] = { '\0' }; + char buf[BUFSIZE] = { '\0' }; application_x *info = NULL; GList *bind_params = NULL; sqlite3 *db = NULL; sqlite3_stmt *stmt = NULL; + bool is_check_storage = true; + const uid_t global_user_uid = GLOBAL_USER; dbpath = getUserPkgParserDBPathUID(db_uid); if (dbpath == NULL) return PMINFO_R_ERROR; - ret = sqlite3_open_v2(dbpath, &db, SQLITE_OPEN_READONLY, NULL); + ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY); if (ret != SQLITE_OK) { - _LOGE("failed to open db: %d", ret); + _LOGE("failed to open db(%s): %d", dbpath, ret); free(dbpath); return PMINFO_R_ERROR; } free(dbpath); - len = strlen(query_raw); snprintf(query, MAX_QUERY_LEN - 1, "%s", query_raw); + + if (flag & PMINFO_APPINFO_GET_BASICINFO) { + strncat(query, query_basic, sizeof(query) - strlen(query) - 1); + strncat(query, query_uid_info, sizeof(query) - strlen(query) - 1); + } if (flag & PMINFO_APPINFO_GET_LABEL) { - strncat(query, query_label, MAX_QUERY_LEN - len - 1); - len += strlen(query_label); + strncat(query, query_label, sizeof(query) - strlen(query) - 1); bind_params = g_list_append(bind_params, strdup(locale)); } if (flag & PMINFO_APPINFO_GET_ICON) { - strncat(query, query_icon, MAX_QUERY_LEN - len - 1); - len += strlen(query_icon); + strncat(query, query_icon, sizeof(query) - strlen(query) - 1); bind_params = g_list_append(bind_params, strdup(locale)); } - ret = _get_filtered_query(filter, locale, &constraint, &bind_params); + snprintf(buf, MAX_QUERY_LEN - 1, "%d", uid); + bind_params = g_list_append(bind_params, strdup(buf)); + + is_check_storage = __check_app_storage_status(filter); + + ret = _get_filtered_query(filter, locale, uid, &constraint, &bind_params); if (ret != PMINFO_R_OK) { LOGE("Failed to get WHERE clause"); goto catch; } - strncat(query, query_from_clause, MAX_QUERY_LEN - len - 1); - len += strlen(query_from_clause); + strncat(query, query_from_clause, sizeof(query) - strlen(query) - 1); + + strncat(query, query_uid_info_clause, sizeof(query) - strlen(query) - 1); if (constraint) - strncat(query, constraint, MAX_QUERY_LEN - len - 1); + strncat(query, constraint, sizeof(query) - strlen(query) - 1); ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); if (ret != SQLITE_OK) { @@ -556,61 +565,86 @@ static int _appinfo_get_applications(uid_t db_uid, uid_t uid, } idx = 0; _save_column_str(stmt, idx++, &info->appid); - if (g_hash_table_contains(applications, - (gconstpointer)info->appid)) { - free(info->appid); - free(info); - continue; - } - _save_column_str(stmt, idx++, &info->component); - _save_column_str(stmt, idx++, &info->exec); - _save_column_str(stmt, idx++, &info->nodisplay); - _save_column_str(stmt, idx++, &info->type); - _save_column_str(stmt, idx++, &info->onboot); - _save_column_str(stmt, idx++, &info->multiple); - _save_column_str(stmt, idx++, &info->autorestart); - _save_column_str(stmt, idx++, &info->taskmanage); - _save_column_str(stmt, idx++, &info->enabled); - _save_column_str(stmt, idx++, &info->hwacceleration); - _save_column_str(stmt, idx++, &info->screenreader); - _save_column_str(stmt, idx++, &info->mainapp); - _save_column_str(stmt, idx++, &info->recentimage); - _save_column_str(stmt, idx++, &info->launchcondition); - _save_column_str(stmt, idx++, &info->indicatordisplay); - _save_column_str(stmt, idx++, &info->portraitimg); - _save_column_str(stmt, idx++, &info->landscapeimg); - _save_column_str(stmt, idx++, &info->guestmode_visibility); - _save_column_str(stmt, idx++, &info->permission_type); - _save_column_str(stmt, idx++, &info->preload); - _save_column_str(stmt, idx++, &info->submode); - _save_column_str(stmt, idx++, &info->submode_mainid); - _save_column_str(stmt, idx++, &info->launch_mode); - _save_column_str(stmt, idx++, &info->ui_gadget); - _save_column_str(stmt, idx++, &info->support_disable); - _save_column_str(stmt, idx++, &info->process_pool); _save_column_str(stmt, idx++, &info->installed_storage); - _save_column_str(stmt, idx++, &bg_category_str); - _save_column_str(stmt, idx++, &info->package_type); - _save_column_str(stmt, idx++, &info->root_path); - _save_column_str(stmt, idx++, &info->api_version); - _save_column_str(stmt, idx++, &info->effective_appid); - _save_column_str(stmt, idx++, &info->is_disabled); - _save_column_str(stmt, idx++, &info->splash_screen_display); - _save_column_str(stmt, idx++, &info->tep_name); - _save_column_str(stmt, idx++, &info->zip_mount_file); - _save_column_str(stmt, idx++, &info->component_type); - _save_column_str(stmt, idx++, &info->package); - _save_column_str(stmt, idx++, &info->external_path); - info->for_all_users = - strdup((uid != GLOBAL_USER) ? "false" : "true"); + _save_column_str(stmt, idx++ , &info->external_path); + + if (flag & PMINFO_APPINFO_GET_BASICINFO) { + _save_column_str(stmt, idx++, &info->component); + _save_column_str(stmt, idx++, &info->exec); + _save_column_str(stmt, idx++, &info->nodisplay); + _save_column_str(stmt, idx++, &info->type); + _save_column_str(stmt, idx++, &info->onboot); + _save_column_str(stmt, idx++, &info->multiple); + _save_column_str(stmt, idx++, &info->autorestart); + _save_column_str(stmt, idx++, &info->taskmanage); + _save_column_str(stmt, idx++, &info->hwacceleration); + _save_column_str(stmt, idx++, &info->screenreader); + _save_column_str(stmt, idx++, &info->mainapp); + _save_column_str(stmt, idx++, &info->recentimage); + _save_column_str(stmt, idx++, &info->launchcondition); + _save_column_str(stmt, idx++, &info->indicatordisplay); + _save_column_str(stmt, idx++, &info->portraitimg); + _save_column_str(stmt, idx++, &info->landscapeimg); + _save_column_str(stmt, idx++, &info->guestmode_visibility); + _save_column_str(stmt, idx++, &info->permission_type); + _save_column_str(stmt, idx++, &info->preload); + _save_column_str(stmt, idx++, &info->submode); + _save_column_str(stmt, idx++, &info->submode_mainid); + _save_column_str(stmt, idx++, &info->launch_mode); + _save_column_str(stmt, idx++, &info->ui_gadget); + _save_column_str(stmt, idx++, &info->support_disable); + _save_column_str(stmt, idx++, &info->process_pool); + _save_column_str(stmt, idx++, &bg_category_str); + _save_column_str(stmt, idx++, &info->package_type); + _save_column_str(stmt, idx++, &info->root_path); + _save_column_str(stmt, idx++, &info->api_version); + _save_column_str(stmt, idx++, &info->effective_appid); + _save_column_str(stmt, idx++, &info->is_disabled); + _save_column_str(stmt, idx++, &info->splash_screen_display); + _save_column_str(stmt, idx++, &info->tep_name); + _save_column_str(stmt, idx++, &info->zip_mount_file); + _save_column_str(stmt, idx++, &info->component_type); + _save_column_str(stmt, idx++, &info->package); + _save_column_str(stmt, idx++, &info->package_system); + _save_column_str(stmt, idx++, &info->removable); + _save_column_str(stmt, idx++, &info->package_installed_time); + _save_column_str(stmt, idx++, &info->support_mode); + _save_column_str(stmt, idx++, &info->support_ambient); + _save_column_str(stmt, idx++, &info->setup_appid); + info->background_category = __get_background_category( + bg_category_str); + free(bg_category_str); + } - if (db_uid == GLOBAL_USER) - __get_splash_screen_display(db, info->appid, db_uid, - &info->splash_screen_display); + info->for_all_users = + strdup((db_uid != global_user_uid) ? "false" : "true"); - info->background_category = __get_background_category( - bg_category_str); - free(bg_category_str); + if (db_uid != global_user_uid) { + idx = idx + 2; + } else { + tmp_record = NULL; + _save_column_str(stmt, idx++, &tmp_record); + if (tmp_record != NULL) { + if (strcasecmp(info->is_disabled, "false") == 0 && + strcasecmp(tmp_record, "false") == 0) { + free(info->is_disabled); + info->is_disabled = tmp_record; + } else { + free(tmp_record); + } + } + tmp_record = NULL; + _save_column_str(stmt, idx++, &tmp_record); + if (tmp_record != NULL) { + if (strcasecmp(info->splash_screen_display, "false") == 0 && + strcasecmp(tmp_record, "false") == 0) { + free(info->splash_screen_display); + info->splash_screen_display = tmp_record; + } else { + free(tmp_record); + } + } + } if (flag & PMINFO_APPINFO_GET_LABEL) { tmp_record = NULL; @@ -646,14 +680,6 @@ static int _appinfo_get_applications(uid_t db_uid, uid_t uid, } } - if (flag & PMINFO_APPINFO_GET_DATA_CONTROL) { - if (_appinfo_get_data_control(db, info->appid, - &info->datacontrol)) { - ret = PMINFO_R_ERROR; - goto catch; - } - } - if (flag & PMINFO_APPINFO_GET_METADATA) { if (_appinfo_get_metadata(db, info->appid, &info->metadata)) { @@ -670,7 +696,8 @@ static int _appinfo_get_applications(uid_t db_uid, uid_t uid, } } - if (__appinfo_check_installed_storage(info) != PMINFO_R_OK) { + if (is_check_storage && + __appinfo_check_installed_storage(info) != PMINFO_R_OK) { ret = PMINFO_R_ERROR; pkgmgrinfo_basic_free_application(info); info = NULL; @@ -684,6 +711,9 @@ static int _appinfo_get_applications(uid_t db_uid, uid_t uid, ret = PMINFO_R_OK; catch: + sqlite3_finalize(stmt); + sqlite3_close_v2(db); + if (constraint) free(constraint); @@ -691,55 +721,30 @@ catch: pkgmgrinfo_basic_free_application(info); g_list_free_full(bind_params, free); - sqlite3_close_v2(db); - sqlite3_finalize(stmt); return ret; } -API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid, - pkgmgrinfo_appinfo_h *handle) +static int _pkgmgrinfo_get_appinfo(const char *appid, uid_t uid, + pkgmgrinfo_appinfo_filter_h filter, pkgmgrinfo_appinfo_h *handle) { int ret; char *locale; GHashTable *list; - pkgmgrinfo_appinfo_filter_h filter; pkgmgr_appinfo_x *info; - if (appid == NULL || handle == NULL) { - LOGE("invalid parameter"); - return PMINFO_R_EINVAL; + if (appid == NULL || filter == NULL || handle == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; } locale = _get_system_locale(); if (locale == NULL) return PMINFO_R_ERROR; - ret = pkgmgrinfo_appinfo_filter_create(&filter); - if (ret != PMINFO_R_OK) { - free(locale); - return ret; - } - - ret = pkgmgrinfo_appinfo_filter_add_string(filter, - PMINFO_APPINFO_PROP_APP_ID, appid); - if (ret != PMINFO_R_OK) { - pkgmgrinfo_appinfo_filter_destroy(filter); - free(locale); - return PMINFO_R_ERROR; - } - - ret = pkgmgrinfo_appinfo_filter_add_bool(filter, - PMINFO_APPINFO_PROP_APP_DISABLE, true); - if (ret != PMINFO_R_OK) { - pkgmgrinfo_appinfo_filter_destroy(filter); - free(locale); - return PMINFO_R_ERROR; - } - - list = g_hash_table_new(g_str_hash, g_str_equal); + list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, + __free_applications); if (list == NULL) { - pkgmgrinfo_appinfo_filter_destroy(filter); free(locale); return PMINFO_R_ERROR; } @@ -747,10 +752,9 @@ API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid ret = _appinfo_get_applications(uid, uid, locale, filter, PMINFO_APPINFO_GET_ALL, list); if (!g_hash_table_size(list) && uid != GLOBAL_USER) - ret = _appinfo_get_applications(GLOBAL_USER, uid, locale, - filter, PMINFO_APPINFO_GET_ALL, list); + ret = _appinfo_get_applications(GLOBAL_USER, uid, locale, filter, + PMINFO_APPINFO_GET_ALL, list); - pkgmgrinfo_appinfo_filter_destroy(filter); if (ret != PMINFO_R_OK) { g_hash_table_destroy(list); free(locale); @@ -758,7 +762,7 @@ API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid } if (!g_hash_table_size(list)) { - _LOGI("Appinfo for [%s] is not existed for user [%d]", + _LOGD("appinfo for [%s] is not existed for user [%d]", appid, uid); g_hash_table_destroy(list); free(locale); @@ -768,6 +772,7 @@ API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid info = calloc(1, sizeof(pkgmgr_appinfo_x)); if (info == NULL) { _LOGE("out of memory"); + g_hash_table_destroy(list); free(locale); return PMINFO_R_ERROR; } @@ -777,6 +782,7 @@ API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid info->package = strdup(info->app_info->package); /* just free list only */ + g_hash_table_steal(list, (gconstpointer)appid); g_hash_table_destroy(list); *handle = info; @@ -784,6 +790,41 @@ API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid return ret; } +API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid, + pkgmgrinfo_appinfo_h *handle) +{ + int ret; + pkgmgrinfo_appinfo_filter_h filter; + + if (appid == NULL || handle == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + ret = pkgmgrinfo_appinfo_filter_create(&filter); + if (ret != PMINFO_R_OK) + return ret; + + ret = pkgmgrinfo_appinfo_filter_add_string(filter, + PMINFO_APPINFO_PROP_APP_ID, appid); + if (ret != PMINFO_R_OK) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; + } + + ret = pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_APP_DISABLE, true); + if (ret != PMINFO_R_OK) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; + } + + ret = _pkgmgrinfo_get_appinfo(appid, uid, filter, handle); + pkgmgrinfo_appinfo_filter_destroy(filter); + + return ret; +} + API int pkgmgrinfo_appinfo_get_disabled_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle) { return pkgmgrinfo_appinfo_get_usr_disabled_appinfo(appid, _getuid(), handle); @@ -793,31 +834,21 @@ API int pkgmgrinfo_appinfo_get_usr_appinfo(const char *appid, uid_t uid, pkgmgrinfo_appinfo_h *handle) { int ret; - char *locale; - GHashTable *list; pkgmgrinfo_appinfo_filter_h filter; - pkgmgr_appinfo_x *info; if (appid == NULL || handle == NULL) { LOGE("invalid parameter"); return PMINFO_R_EINVAL; } - locale = _get_system_locale(); - if (locale == NULL) - return PMINFO_R_ERROR; - ret = pkgmgrinfo_appinfo_filter_create(&filter); - if (ret != PMINFO_R_OK) { - free(locale); + if (ret != PMINFO_R_OK) return ret; - } ret = pkgmgrinfo_appinfo_filter_add_string(filter, PMINFO_APPINFO_PROP_APP_ID, appid); if (ret != PMINFO_R_OK) { pkgmgrinfo_appinfo_filter_destroy(filter); - free(locale); return PMINFO_R_ERROR; } @@ -825,59 +856,64 @@ API int pkgmgrinfo_appinfo_get_usr_appinfo(const char *appid, uid_t uid, PMINFO_APPINFO_PROP_APP_DISABLE, false); if (ret != PMINFO_R_OK) { pkgmgrinfo_appinfo_filter_destroy(filter); - free(locale); return PMINFO_R_ERROR; } - list = g_hash_table_new(g_str_hash, g_str_equal); - if (list == NULL) { + ret = pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_PKG_DISABLE, false); + if (ret != PMINFO_R_OK) { pkgmgrinfo_appinfo_filter_destroy(filter); - free(locale); return PMINFO_R_ERROR; } - ret = _appinfo_get_applications(uid, uid, locale, filter, - PMINFO_APPINFO_GET_ALL, list); - if (!g_hash_table_size(list) && uid != GLOBAL_USER) - ret = _appinfo_get_applications(GLOBAL_USER, uid, locale, - filter, PMINFO_APPINFO_GET_ALL, list); - + ret = _pkgmgrinfo_get_appinfo(appid, uid, filter, handle); pkgmgrinfo_appinfo_filter_destroy(filter); - if (ret != PMINFO_R_OK) { - g_hash_table_destroy(list); - free(locale); - return ret; - } + return ret; +} - if (!g_hash_table_size(list)) { - _LOGI("Appinfo for [%s] is not existed for user [%d]", appid, uid); - g_hash_table_destroy(list); - free(locale); - return PMINFO_R_ENOENT; +API int pkgmgrinfo_appinfo_get_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle) +{ + return pkgmgrinfo_appinfo_get_usr_appinfo(appid, _getuid(), handle); +} + +API int pkgmgrinfo_appinfo_get_usr_all_appinfo(const char *appid, uid_t uid, + pkgmgrinfo_appinfo_h *handle) +{ + int ret; + pkgmgrinfo_appinfo_filter_h filter; + + if (appid == NULL || handle == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; } - info = calloc(1, sizeof(pkgmgr_appinfo_x)); - if (info == NULL) { - _LOGE("out of memory"); - free(locale); + ret = pkgmgrinfo_appinfo_filter_create(&filter); + if (ret != PMINFO_R_OK) + return ret; + + ret = pkgmgrinfo_appinfo_filter_add_string(filter, + PMINFO_APPINFO_PROP_APP_ID, appid); + if (ret != PMINFO_R_OK) { + pkgmgrinfo_appinfo_filter_destroy(filter); return PMINFO_R_ERROR; } - info->app_info = (application_x *)g_hash_table_lookup(list, appid); - info->locale = locale; - info->package = strdup(info->app_info->package); - - /* just free list only */ - g_hash_table_destroy(list); + ret = pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_APP_CHECK_STORAGE, false); + if (ret != PMINFO_R_OK) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; + } - *handle = info; + ret = _pkgmgrinfo_get_appinfo(appid, uid, filter, handle); + pkgmgrinfo_appinfo_filter_destroy(filter); return ret; } -API int pkgmgrinfo_appinfo_get_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle) +API int pkgmgrinfo_appinfo_get_all_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle) { - return pkgmgrinfo_appinfo_get_usr_appinfo(appid, _getuid(), handle); + return pkgmgrinfo_appinfo_get_usr_all_appinfo(appid, _getuid(), handle); } static gpointer __copy_str(gconstpointer src, gpointer data) @@ -981,6 +1017,8 @@ static gpointer __copy_datacontrol(gconstpointer src, gpointer data) datacontrol->access = strdup(tmp->access); if (tmp->type) datacontrol->type = strdup(tmp->type); + if (tmp->trusted) + datacontrol->trusted = strdup(tmp->trusted); return datacontrol; } @@ -1056,8 +1094,6 @@ static int _appinfo_copy_appinfo(application_x **application, application_x *dat app_info->multiple = strdup(data->multiple); if (data->taskmanage != NULL) app_info->taskmanage = strdup(data->taskmanage); - if (data->enabled != NULL) - app_info->enabled = strdup(data->enabled); if (data->type != NULL) app_info->type = strdup(data->type); if (data->categories != NULL) @@ -1245,10 +1281,11 @@ static int _appinfo_get_filtered_foreach_appinfo(uid_t uid, return PMINFO_R_ERROR; } - ret = _appinfo_get_applications(uid, uid, locale, filter, flag, list); + ret = _appinfo_get_applications(uid, uid, locale, filter, + flag | PMINFO_APPINFO_GET_BASICINFO, list); if (ret == PMINFO_R_OK && uid != GLOBAL_USER) ret = _appinfo_get_applications(GLOBAL_USER, uid, locale, - filter, flag, list); + filter, flag | PMINFO_APPINFO_GET_BASICINFO, list); if (ret != PMINFO_R_OK) { g_hash_table_destroy(list); @@ -1301,13 +1338,10 @@ API int pkgmgrinfo_appinfo_get_usr_list(pkgmgrinfo_pkginfo_h handle, return PMINFO_R_ERROR; } - if (uid == GLOBAL_USER) { - if (pkgmgrinfo_appinfo_filter_add_int(filter, - PMINFO_APPINFO_PROP_APP_DISABLE_FOR_USER, - (int)getuid())) { - pkgmgrinfo_appinfo_filter_destroy(filter); - return PMINFO_R_ERROR; - } + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_APP_DISABLE, false)) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; } comp_str = __appcomponent_str(component); @@ -1352,18 +1386,21 @@ API int pkgmgrinfo_appinfo_get_usr_installed_list_full( return PMINFO_R_ERROR; if (pkgmgrinfo_appinfo_filter_add_bool(filter, - PMINFO_APPINFO_PROP_APP_DISABLE, false)) { + PMINFO_APPINFO_PROP_APP_DISABLE, false)) { pkgmgrinfo_appinfo_filter_destroy(filter); return PMINFO_R_ERROR; } - if (uid == GLOBAL_USER) { - if (pkgmgrinfo_appinfo_filter_add_int(filter, - PMINFO_APPINFO_PROP_APP_DISABLE_FOR_USER, - (int)getuid())) { - pkgmgrinfo_appinfo_filter_destroy(filter); - return PMINFO_R_ERROR; - } + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_PKG_DISABLE, false)) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; + } + + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_APP_CHECK_STORAGE, false)) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; } ret = _appinfo_get_filtered_foreach_appinfo(uid, filter, flag, app_func, @@ -1381,30 +1418,40 @@ API int pkgmgrinfo_appinfo_get_installed_list_full( _getuid(), flag, user_data); } -API int pkgmgrinfo_appinfo_get_usr_install_list(pkgmgrinfo_app_list_cb app_func, - uid_t uid, void *user_data) -{ - return pkgmgrinfo_appinfo_get_usr_installed_list_full(app_func, - uid, PMINFO_APPINFO_GET_ALL, user_data); -} - -API int pkgmgrinfo_appinfo_get_install_list(pkgmgrinfo_app_list_cb app_func, - void *user_data) -{ - return pkgmgrinfo_appinfo_get_usr_installed_list_full(app_func, - _getuid(), PMINFO_APPINFO_GET_ALL, user_data); -} - API int pkgmgrinfo_appinfo_get_usr_installed_list( pkgmgrinfo_app_list_cb app_func, uid_t uid, void *user_data) { + int ret; + pkgmgrinfo_appinfo_filter_h filter; + if (app_func == NULL) { LOGE("invalid parameter"); return PMINFO_R_EINVAL; } - return _appinfo_get_filtered_foreach_appinfo(uid, NULL, + /* create an empty filter */ + ret = pkgmgrinfo_appinfo_filter_create(&filter); + if (ret != PMINFO_R_OK) + return ret; + + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_APP_DISABLE, false)) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; + } + + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_PKG_DISABLE, false)) { + pkgmgrinfo_appinfo_filter_destroy(filter); + return PMINFO_R_ERROR; + } + + ret = _appinfo_get_filtered_foreach_appinfo(uid, filter, PMINFO_APPINFO_GET_ALL, app_func, user_data); + + pkgmgrinfo_appinfo_filter_destroy(filter); + + return ret; } API int pkgmgrinfo_appinfo_get_installed_list(pkgmgrinfo_app_list_cb app_func, @@ -1517,21 +1564,42 @@ API int pkgmgrinfo_appinfo_get_label(pkgmgrinfo_appinfo_h handle, char **label) { label_x *ptr; pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + char *lbl = NULL; + const char *locale; + GList *tmp; retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL"); retvm_if(label == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL"); - if (info->app_info == NULL || info->app_info->label == NULL) + if (info->app_info == NULL) return PMINFO_R_ERROR; - ptr = (label_x *)info->app_info->label->data; - if (ptr == NULL) - return PMINFO_R_ERROR; + locale = info->locale; + if (locale == NULL) + locale = DEFAULT_LOCALE; + + for (tmp = info->app_info->label; tmp; tmp = tmp->next) { + ptr = (label_x *)tmp->data; + if (ptr == NULL || strcmp(locale, ptr->lang) != 0) + continue; + lbl = ptr->text; + break; + } + + if (lbl != NULL) { + *label = lbl; + return PMINFO_R_OK; + } + + for (tmp = info->app_info->label; tmp; tmp = tmp->next) { + ptr = (label_x *)tmp->data; + if (ptr == NULL || strcmp(DEFAULT_LOCALE, ptr->lang) != 0) + continue; + lbl = ptr->text; + break; + } - if (ptr->text == NULL) - return PMINFO_R_ERROR; - else - *label = ptr->text; + *label = lbl ? lbl : ""; return PMINFO_R_OK; } @@ -1551,7 +1619,7 @@ static char *_get_localed_label(const char *appid, const char *locale, uid_t uid goto err; } - if (sqlite3_open_v2(parser_db, &db, SQLITE_OPEN_READONLY, NULL) != SQLITE_OK) { + if (__open_db(parser_db, &db, SQLITE_OPEN_READONLY) != SQLITE_OK) { _LOGE("DB open fail\n"); free(parser_db); goto err; @@ -1593,6 +1661,12 @@ API int pkgmgrinfo_appinfo_usr_get_localed_label(const char *appid, const char * if (val == NULL) val = _get_localed_label(appid, DEFAULT_LOCALE, uid); + if (val == NULL) { + val = _get_localed_label(appid, locale, GLOBAL_USER); + if (val == NULL) + val = _get_localed_label(appid, DEFAULT_LOCALE, GLOBAL_USER); + } + if (val == NULL) return PMINFO_R_ERROR; @@ -1625,7 +1699,7 @@ API int pkgmgrinfo_appinfo_get_metadata_value(pkgmgrinfo_appinfo_h handle, const if (metadata->value == NULL) *metadata_value = ""; else - *metadata_value = (char*)metadata->value; + *metadata_value = (char *)metadata->value; return PMINFO_R_OK; } } @@ -1746,35 +1820,6 @@ API int pkgmgrinfo_appinfo_get_subapp(pkgmgrinfo_appcontrol_h handle, return PMINFO_R_OK; } -API int pkgmgrinfo_appinfo_get_setting_icon(pkgmgrinfo_appinfo_h handle, char **icon) -{ - char *val; - icon_x *ptr; - GList *tmp; - pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; - - retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n"); - retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n"); - - if (info->app_info == NULL) - return PMINFO_R_ERROR; - - for (tmp = info->app_info->icon; tmp; tmp = tmp->next) { - ptr = (icon_x *)tmp->data; - if (ptr == NULL || ptr->section == NULL) - continue; - - val = (char *)ptr->section; - if (val && strcmp(val, "setting") == 0) { - *icon = (char *)ptr->text; - return PMINFO_R_OK; - } - } - - return PMINFO_R_ERROR; -} - - API int pkgmgrinfo_appinfo_get_notification_icon(pkgmgrinfo_appinfo_h handle, char **icon) { char *val; @@ -2118,134 +2163,497 @@ API int pkgmgrinfo_appinfo_get_root_path(pkgmgrinfo_appinfo_h handle, char **roo *root_path = (char *)info->app_info->root_path; - return PMINFO_R_OK; + return PMINFO_R_OK; +} + +API int pkgmgrinfo_appinfo_get_api_version(pkgmgrinfo_appinfo_h handle, char **api_version) +{ + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + + if (handle == NULL || api_version == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + if (info->app_info == NULL || info->app_info->api_version == NULL) + return PMINFO_R_ERROR; + + *api_version = (char *)info->app_info->api_version; + + return PMINFO_R_OK; +} + +API int pkgmgrinfo_appinfo_get_installed_time(pkgmgrinfo_appinfo_h handle, int *installed_time) +{ + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + + if (handle == NULL || installed_time == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + if (info->app_info == NULL || info->app_info->package_installed_time == NULL) + return PMINFO_R_ERROR; + + *installed_time = atoi(info->app_info->package_installed_time); + + return PMINFO_R_OK; +} + +static int _appinfo_get_datacontrol_info(sqlite3 *db, const char *providerid, + const char *type, char **appid, char **access) +{ + static const char query[] = + "SELECT app_id, access FROM package_app_data_control " + "WHERE providerid=? AND type=?"; + int ret; + sqlite3_stmt *stmt; + + ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); + if (ret != SQLITE_OK) { + LOGE("prepare failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + ret = sqlite3_bind_text(stmt, 2, type, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + ret = sqlite3_step(stmt); + if (ret != SQLITE_ROW) { + sqlite3_finalize(stmt); + if (ret == SQLITE_DONE) { + return PMINFO_R_ENOENT; + } else { + LOGE("step error: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + } + + *appid = strdup((char *)sqlite3_column_text(stmt, 0)); + if (*appid == NULL) { + LOGE("out of memory"); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + *access = strdup((char *)sqlite3_column_text(stmt, 1)); + if (*access == NULL) { + LOGE("out of memory"); + free(*appid); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + sqlite3_finalize(stmt); + + return PMINFO_R_OK; +} + +static int _pkgmgrinfo_appinfo_get_datacontrol_info(uid_t uid, + const char *providerid, const char *type, + char **appid, char **access) +{ + int ret; + char *dbpath; + sqlite3 *db; + + dbpath = getUserPkgParserDBPathUID(GLOBAL_USER); + if (dbpath == NULL) + return PMINFO_R_ERROR; + + ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY); + free(dbpath); + if (ret != SQLITE_OK) { + LOGE("open db failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = _appinfo_get_datacontrol_info(db, providerid, type, appid, + access); + sqlite3_close_v2(db); + + return ret; +} + +API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid, + const char *type, uid_t uid, char **appid, char **access) +{ + int ret; + + if (providerid == NULL || type == NULL || appid == NULL || + access == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + ret = _pkgmgrinfo_appinfo_get_datacontrol_info(GLOBAL_USER, providerid, + type, appid, access); + if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER) + ret = _pkgmgrinfo_appinfo_get_datacontrol_info(uid, providerid, + type, appid, access); + + /* FIXME: It should return PMINFO_R_ENOENT but to keep previous + * implementation, return PMINFO_R_ERROR. This should be + * modified later... + */ + if (ret == PMINFO_R_ENOENT) { + LOGE("no datacontrol info of %s", providerid); + ret = PMINFO_R_ERROR; + } + + return ret; +} + +API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid, + const char *type, char **appid, char **access) +{ + return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid, + type, _getuid(), appid, access); +} + +static int _appinfo_get_datacontrol_appid(sqlite3 *db, const char *providerid, + char **appid) +{ + static const char query[] = + "SELECT app_id FROM package_app_data_control " + "WHERE providerid=?"; + int ret; + sqlite3_stmt *stmt; + + ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); + if (ret != SQLITE_OK) { + LOGE("prepare failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + ret = sqlite3_step(stmt); + if (ret != SQLITE_ROW) { + sqlite3_finalize(stmt); + if (ret == SQLITE_DONE) { + return PMINFO_R_ENOENT; + } else { + LOGE("step error: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + } + + *appid = strdup((char *)sqlite3_column_text(stmt, 0)); + + sqlite3_finalize(stmt); + + if (*appid == NULL) { + LOGE("out of memory"); + return PMINFO_R_ERROR; + } + + return PMINFO_R_OK; +} + +static int _pkgmgrinfo_appinfo_get_datacontrol_appid(uid_t uid, + const char *providerid, char **appid) +{ + int ret; + char *dbpath; + sqlite3 *db; + + dbpath = getUserPkgParserDBPathUID(GLOBAL_USER); + if (dbpath == NULL) + return PMINFO_R_ERROR; + + ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY); + free(dbpath); + if (ret != SQLITE_OK) { + LOGE("open db failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = _appinfo_get_datacontrol_appid(db, providerid, appid); + sqlite3_close_v2(db); + + return ret; +} + +API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid, + uid_t uid, char **appid) +{ + int ret; + + if (providerid == NULL || appid == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + ret = _pkgmgrinfo_appinfo_get_datacontrol_appid(GLOBAL_USER, providerid, + appid); + if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER) + ret = _pkgmgrinfo_appinfo_get_datacontrol_appid(uid, providerid, + appid); + + /* FIXME: It should return PMINFO_R_ENOENT but to keep previous + * implementation, return PMINFO_R_ERROR. This should be + * modified later... + */ + if (ret == PMINFO_R_ENOENT) { + LOGE("no datacontrol appid of %s", providerid); + ret = PMINFO_R_ERROR; + } + + return ret; +} + +API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid) +{ + return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, _getuid(), appid); +} + +static int _appinfo_get_datacontrol_trusted_info(sqlite3 *db, + const char *providerid, const char *type, char **appid, + bool *is_trusted) +{ + static const char query[] = + "SELECT app_id, trusted FROM package_app_data_control " + "WHERE providerid=? AND type=?"; + int ret; + sqlite3_stmt *stmt; + + ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); + if (ret != SQLITE_OK) { + LOGE("prepare failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + ret = sqlite3_bind_text(stmt, 2, type, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + ret = sqlite3_step(stmt); + if (ret != SQLITE_ROW) { + sqlite3_finalize(stmt); + if (ret == SQLITE_DONE) { + return PMINFO_R_ENOENT; + } else { + LOGE("step error: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + } + + *appid = strdup((char *)sqlite3_column_text(stmt, 0)); + *is_trusted = _get_bool_value((char *)sqlite3_column_text(stmt, 1)); + + sqlite3_finalize(stmt); + + if (*appid == NULL) { + LOGE("out of memory"); + return PMINFO_R_ERROR; + } + + return PMINFO_R_OK; +} + +static int _pkgmgrinfo_appinfo_get_datacontrol_trusted_info(uid_t uid, + const char *providerid, const char *type, char **appid, + bool *is_trusted) +{ + int ret; + char *dbpath; + sqlite3 *db; + + dbpath = getUserPkgParserDBPathUID(GLOBAL_USER); + if (dbpath == NULL) + return PMINFO_R_ERROR; + + ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY); + free(dbpath); + if (ret != SQLITE_OK) { + LOGE("open db failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = _appinfo_get_datacontrol_trusted_info(db, providerid, type, appid, + is_trusted); + sqlite3_close_v2(db); + + return ret; } -API int pkgmgrinfo_appinfo_get_api_version(pkgmgrinfo_appinfo_h handle, char **api_version) +API int pkgmgrinfo_appinfo_usr_get_datacontrol_trusted_info( + const char *providerid, const char *type, uid_t uid, + char **appid, bool *is_trusted) { - pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + int ret; - if (handle == NULL || api_version == NULL) { + if (providerid == NULL || type == NULL || appid == NULL || + is_trusted == NULL) { LOGE("invalid parameter"); return PMINFO_R_EINVAL; } - if (info->app_info == NULL || info->app_info->api_version == NULL) - return PMINFO_R_ERROR; + ret = _pkgmgrinfo_appinfo_get_datacontrol_trusted_info(GLOBAL_USER, + providerid, type, appid, is_trusted); + if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER) + ret = _pkgmgrinfo_appinfo_get_datacontrol_trusted_info(uid, + providerid, type, appid, is_trusted); - *api_version = (char *)info->app_info->api_version; + /* FIXME: It should return PMINFO_R_ENOENT but to keep previous + * implementation, return PMINFO_R_ERROR. This should be + * modified later... + */ + if (ret == PMINFO_R_ENOENT) { + LOGE("no datacontrol trusted info of %s", providerid); + ret = PMINFO_R_ERROR; + } - return PMINFO_R_OK; + return ret; } -API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid, const char *type, uid_t uid, char **appid, char **access) +API int pkgmgrinfo_appinfo_get_datacontrol_trsuted_info(const char *providerid, + const char *type, char **appid, bool *is_trusted) { - retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n"); - retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n"); - retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n"); - retvm_if(access == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n"); - - int ret = PMINFO_R_OK; - char *query = NULL; - sqlite3_stmt *stmt = NULL; - - /*open db*/ - ret = __open_manifest_db(uid, true); - retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB); + return pkgmgrinfo_appinfo_usr_get_datacontrol_trusted_info(providerid, + type, _getuid(), appid, is_trusted); +} - /*Start constructing query*/ - query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q and type=%Q", providerid, type); - tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory"); +static int _appinfo_foreach_datacontrol_privileges(sqlite3 *db, + const char *providerid, const char *type, + pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data) +{ + static const char query[] = + "SELECT privilege FROM package_app_data_control_privilege " + "WHERE providerid=? AND type=?"; + int ret; + sqlite3_stmt *stmt; + int count = 0; - /*prepare query*/ - ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL); - tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query); + ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); + if (ret != SQLITE_OK) { + LOGE("prepare failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } - /*step query*/ - ret = sqlite3_step(stmt); - tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found"); + ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } - *appid = strdup((char *)sqlite3_column_text(stmt, 0)); - *access = strdup((char *)sqlite3_column_text(stmt, 2)); + ret = sqlite3_bind_text(stmt, 2, type, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } - ret = PMINFO_R_OK; + while (sqlite3_step(stmt) == SQLITE_ROW) { + count++; + ret = callback((const char *)sqlite3_column_text(stmt, 0), + user_data); + if (ret < 0) + break; + } -catch: - sqlite3_free(query); sqlite3_finalize(stmt); - __close_manifest_db(); - return ret; -} -API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid, const char *type, char **appid, char **access) -{ - return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid, type, _getuid(), appid, access); + return count ? PMINFO_R_OK : PMINFO_R_ENOENT; } -API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid, uid_t uid, char **appid) +static int _pkgmgrinfo_appinfo_foreach_datacontrol_privileges(uid_t uid, + const char *providerid, const char *type, + pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data) { - retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n"); - retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n"); + int ret; + char *dbpath; + sqlite3 *db; - int ret = PMINFO_R_OK; - char *query = NULL; - sqlite3_stmt *stmt = NULL; + dbpath = getUserPkgParserDBPathUID(GLOBAL_USER); + if (dbpath == NULL) + return PMINFO_R_ERROR; - /*open db*/ - ret = __open_manifest_db(uid, true); - retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB); + ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY); + free(dbpath); + if (ret != SQLITE_OK) { + LOGE("open db failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } - /*Start constructing query*/ - query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q", providerid); - tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory"); + ret = _appinfo_foreach_datacontrol_privileges(db, providerid, type, + callback, user_data); + sqlite3_close_v2(db); - /*prepare query*/ - ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL); - tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query); + return ret; +} - /*step query*/ - ret = sqlite3_step(stmt); - tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found"); +API int pkgmgrinfo_appinfo_usr_foreach_datacontrol_privileges( + const char *providerid, const char *type, + pkgmgrinfo_pkg_privilege_list_cb privilege_func, + void *user_data, uid_t uid) +{ + int ret; - *appid = strdup((char *)sqlite3_column_text(stmt, 0)); + if (providerid == NULL || type == NULL || privilege_func == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } - ret = PMINFO_R_OK; + ret = _pkgmgrinfo_appinfo_foreach_datacontrol_privileges(GLOBAL_USER, + providerid, type, privilege_func, user_data); + if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER) + ret = _pkgmgrinfo_appinfo_foreach_datacontrol_privileges(uid, + providerid, type, privilege_func, user_data); + + if (ret == PMINFO_R_ENOENT) + ret = PMINFO_R_OK; -catch: - sqlite3_free(query); - sqlite3_finalize(stmt); - __close_manifest_db(); return ret; } -API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid) +API int pkgmgrinfo_appinfo_foreach_datacontrol_privileges( + const char *providerid, const char *type, + pkgmgrinfo_pkg_privilege_list_cb privilege_func, + void *user_data) { - return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, _getuid(), appid); + return pkgmgrinfo_appinfo_usr_foreach_datacontrol_privileges( + providerid, type, privilege_func, user_data, _getuid()); } -API int pkgmgrinfo_appinfo_foreach_permission(pkgmgrinfo_appinfo_h handle, - pkgmgrinfo_app_permission_list_cb permission_func, void *user_data) +API int pkgmgrinfo_appinfo_get_support_mode(pkgmgrinfo_appinfo_h handle, int *support_mode) { retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL"); - retvm_if(permission_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL"); - int ret = -1; - permission_x *ptr; - GList *tmp; - pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + retvm_if(support_mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL"); - if (info->app_info == NULL) - return PMINFO_R_ERROR; + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + if (info->app_info->support_mode) + *support_mode = atoi(info->app_info->support_mode); + else + *support_mode = 0; - for (tmp = info->app_info->permission; tmp; tmp = tmp->next) { - ptr = (permission_x *)tmp->data; - if (ptr == NULL) - continue; - if (ptr->value) { - ret = permission_func(ptr->value, user_data); - if (ret < 0) - break; - } - } return PMINFO_R_OK; } @@ -2299,6 +2707,121 @@ API int pkgmgrinfo_appinfo_foreach_metadata(pkgmgrinfo_appinfo_h handle, return PMINFO_R_OK; } +static int _appinfo_foreach_appcontrol_privileges(sqlite3 *db, + const char *appid, const char *operation, + pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data) +{ + static const char query[] = + "SELECT app_control, privilege FROM package_app_app_control_privilege " + "WHERE app_id=?"; + int ret; + sqlite3_stmt *stmt; + const char *app_control; + char *dup_app_control; + char *token; + char *saveptr = NULL; + const char *privilege; + int count = 0; + + ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL); + if (ret != SQLITE_OK) { + LOGE("prepare failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = sqlite3_bind_text(stmt, 1, appid, -1, SQLITE_STATIC); + if (ret != SQLITE_OK) { + LOGE("bind failed: %s", sqlite3_errmsg(db)); + sqlite3_finalize(stmt); + return PMINFO_R_ERROR; + } + + while (sqlite3_step(stmt) == SQLITE_ROW) { + app_control = (const char *)sqlite3_column_text(stmt, 0); + if (!app_control) + continue; + + dup_app_control = strdup(app_control); + if (!dup_app_control) + continue; + + token = strtok_r(dup_app_control, "|", &saveptr); + if (token && !strcmp(token, operation)) { + count++; + privilege = (const char *)sqlite3_column_text(stmt, 1); + ret = callback(privilege, user_data); + if (ret < 0) { + free(dup_app_control); + break; + } + } + free(dup_app_control); + } + + sqlite3_finalize(stmt); + + return count ? PMINFO_R_OK : PMINFO_R_ENOENT; +} + +static int _pkgmgrinfo_appinfo_foreach_appcontrol_privileges(uid_t uid, + const char *appid, const char *operation, + pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data) +{ + int ret; + char *dbpath; + sqlite3 *db; + + dbpath = getUserPkgParserDBPathUID(uid); + if (dbpath == NULL) + return PMINFO_R_ERROR; + + ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY); + free(dbpath); + if (ret != SQLITE_OK) { + LOGE("open db failed: %s", sqlite3_errmsg(db)); + return PMINFO_R_ERROR; + } + + ret = _appinfo_foreach_appcontrol_privileges(db, appid, operation, + callback, user_data); + sqlite3_close_v2(db); + + return ret; +} + +API int pkgmgrinfo_appinfo_usr_foreach_appcontrol_privileges(const char *appid, + const char *operation, + pkgmgrinfo_pkg_privilege_list_cb privilege_func, + void *user_data, uid_t uid) +{ + int ret; + + if (appid == NULL || operation == NULL || privilege_func == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + ret = _pkgmgrinfo_appinfo_foreach_appcontrol_privileges(GLOBAL_USER, + appid, operation, privilege_func, user_data); + if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER) + ret = _pkgmgrinfo_appinfo_foreach_appcontrol_privileges(uid, + appid, operation, privilege_func, user_data); + + if (ret == PMINFO_R_ENOENT) + ret = PMINFO_R_OK; + + return ret; +} + +API int pkgmgrinfo_appinfo_foreach_appcontrol_privileges(const char *appid, + const char *operation, + pkgmgrinfo_pkg_privilege_list_cb privilege_func, + void *user_data) +{ + return pkgmgrinfo_appinfo_usr_foreach_appcontrol_privileges(appid, + operation, privilege_func, user_data, _getuid()); +} + API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data) { @@ -2314,7 +2837,32 @@ API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle, for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) { appcontrol = (appcontrol_x *)tmp->data; - if (appcontrol == NULL) + if (appcontrol == NULL || !strcasecmp(appcontrol->visibility, "remote-only")) + continue; + ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data); + if (ret < 0) + break; + } + + return PMINFO_R_OK; +} + +API int pkgmgrinfo_appinfo_foreach_remote_appcontrol(pkgmgrinfo_appinfo_h handle, + pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data) +{ + retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL"); + retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL"); + int ret; + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + appcontrol_x *appcontrol; + GList *tmp; + + if (info->app_info == NULL) + return PMINFO_R_ERROR; + + for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) { + appcontrol = (appcontrol_x *)tmp->data; + if (appcontrol == NULL || !strcasecmp(appcontrol->visibility, "local-only")) continue; ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data); if (ret < 0) @@ -2445,10 +2993,10 @@ API int pkgmgrinfo_appinfo_is_enabled(pkgmgrinfo_appinfo_h handle, bool *enable retvm_if(enabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL"); pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; - if (info->app_info == NULL || info->app_info->enabled == NULL) + if (info->app_info == NULL || info->app_info->is_disabled == NULL) return PMINFO_R_ERROR; - *enabled = _get_bool_value(info->app_info->enabled); + *enabled = !_get_bool_value(info->app_info->is_disabled); return PMINFO_R_OK; } @@ -2599,6 +3147,35 @@ API int pkgmgrinfo_appinfo_is_support_disable(pkgmgrinfo_appinfo_h handle, return PMINFO_R_OK; } +API int pkgmgrinfo_appinfo_is_removable(pkgmgrinfo_appinfo_h handle, + bool *removable) +{ + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + + if (info == NULL || info->app_info == NULL || removable == NULL) { + _LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + *removable = _get_bool_value(info->app_info->removable); + + return PMINFO_R_OK; +} + +API int pkgmgrinfo_appinfo_is_system(pkgmgrinfo_appinfo_h handle, bool *system) +{ + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + + if (info == NULL || info->app_info == NULL || system == NULL) { + _LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + *system = _get_bool_value(info->app_info->package_system); + + return PMINFO_R_OK; +} + API int pkgmgrinfo_appinfo_is_disabled(pkgmgrinfo_appinfo_h handle, bool *disabled) { retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL"); @@ -2645,6 +3222,40 @@ API int pkgmgrinfo_appinfo_get_splash_screen_display(pkgmgrinfo_appinfo_h handle return PMINFO_R_OK; } +API int pkgmgrinfo_appinfo_get_setup_appid(pkgmgrinfo_appinfo_h handle, char **setup_appid) +{ + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + + if (info == NULL || setup_appid == NULL) { + _LOGE("Invalid parameter"); + return PMINFO_R_EINVAL; + } + + if (info->app_info == NULL || info->app_info->setup_appid == NULL) + return PMINFO_R_ERROR; + + *setup_appid = info->app_info->setup_appid; + return PMINFO_R_OK; +} + +API int pkgmgrinfo_appinfo_is_support_ambient(pkgmgrinfo_appinfo_h handle, + bool *support_ambient) +{ + pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle; + + if (info == NULL || support_ambient == NULL) { + _LOGE("Invalid parameter"); + return PMINFO_R_EINVAL; + } + + if (info->app_info == NULL || info->app_info->support_ambient == NULL) + return PMINFO_R_ERROR; + + *support_ambient = _get_bool_value(info->app_info->support_ambient); + + return PMINFO_R_OK; +} + API int pkgmgrinfo_appinfo_destroy_appinfo(pkgmgrinfo_appinfo_h handle) { retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL"); @@ -2665,8 +3276,8 @@ API int pkgmgrinfo_appinfo_filter_destroy(pkgmgrinfo_appinfo_filter_h handle) static gint __compare_func(gconstpointer data1, gconstpointer data2) { - pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x*)data1; - pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x*)data2; + pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x *)data1; + pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x *)data2; if (node1->prop == node2->prop) return 0; else if (node1->prop > node2->prop) @@ -2690,8 +3301,8 @@ API int pkgmgrinfo_appinfo_filter_add_int(pkgmgrinfo_appinfo_filter_h handle, _LOGE("Invalid Integer Property\n"); return PMINFO_R_EINVAL; } - pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle; - pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x)); + pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle; + pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x)); if (node == NULL) { _LOGE("Out of Memory!!!\n"); return PMINFO_R_ERROR; @@ -2730,8 +3341,8 @@ API int pkgmgrinfo_appinfo_filter_add_bool(pkgmgrinfo_appinfo_filter_h handle, _LOGE("Invalid Boolean Property\n"); return PMINFO_R_EINVAL; } - pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle; - pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x)); + pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle; + pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x)); if (node == NULL) { _LOGE("Out of Memory!!!\n"); return PMINFO_R_ERROR; @@ -2776,8 +3387,8 @@ API int pkgmgrinfo_appinfo_filter_add_string(pkgmgrinfo_appinfo_filter_h handle, _LOGE("Invalid String Property\n"); return PMINFO_R_EINVAL; } - pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle; - pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x)); + pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle; + pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x)); if (node == NULL) { _LOGE("Out of Memory!!!\n"); return PMINFO_R_ERROR; @@ -2853,6 +3464,26 @@ API int pkgmgrinfo_appinfo_usr_filter_count(pkgmgrinfo_appinfo_filter_h handle, return PMINFO_R_ERROR; } + if (__check_disable_filter_exist( + handle, E_APPINFO_DISABLE_TYPE_APP) == false) { + if (pkgmgrinfo_appinfo_filter_add_bool(handle, + PMINFO_APPINFO_PROP_APP_DISABLE, false)) { + g_hash_table_destroy(list); + free(locale); + return PMINFO_R_ERROR; + } + } + + if (__check_disable_filter_exist( + handle, E_APPINFO_DISABLE_TYPE_PKG) == false) { + if (pkgmgrinfo_appinfo_filter_add_bool(handle, + PMINFO_APPINFO_PROP_PKG_DISABLE, false)) { + g_hash_table_destroy(list); + free(locale); + return PMINFO_R_ERROR; + } + } + ret = _appinfo_get_applications(uid, uid, locale, handle, 0, list); if (ret == PMINFO_R_OK && uid != GLOBAL_USER) ret = _appinfo_get_applications(GLOBAL_USER, uid, locale, @@ -2885,12 +3516,26 @@ API int pkgmgrinfo_appinfo_usr_filter_foreach_appinfo( return PMINFO_R_EINVAL; } + if (__check_disable_filter_exist( + handle, E_APPINFO_DISABLE_TYPE_APP) == false) { + if (pkgmgrinfo_appinfo_filter_add_bool(handle, + PMINFO_APPINFO_PROP_APP_DISABLE, false)) + return PMINFO_R_ERROR; + } + + if (__check_disable_filter_exist( + handle, E_APPINFO_DISABLE_TYPE_PKG) == false) { + if (pkgmgrinfo_appinfo_filter_add_bool(handle, + PMINFO_APPINFO_PROP_PKG_DISABLE, false)) + return PMINFO_R_ERROR; + } + return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb, user_data); } API int pkgmgrinfo_appinfo_filter_foreach_appinfo(pkgmgrinfo_appinfo_filter_h handle, - pkgmgrinfo_app_list_cb app_cb, void * user_data) + pkgmgrinfo_app_list_cb app_cb, void *user_data) { return pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(handle, app_cb, user_data, _getuid()); } @@ -2909,23 +3554,30 @@ API int pkgmgrinfo_appinfo_metadata_filter_add( pkgmgrinfo_appinfo_metadata_filter_h handle, const char *key, const char *value) { - int ret; - - ret = pkgmgrinfo_appinfo_filter_add_string(handle, - PMINFO_APPINFO_PROP_APP_METADATA_KEY, key); - if (ret != PMINFO_R_OK) - return ret; + pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle; + pkgmgrinfo_metadata_node_x *node; /* value can be NULL. * In that case all apps with specified key should be displayed */ - if (value) { - ret = pkgmgrinfo_appinfo_filter_add_string(handle, - PMINFO_APPINFO_PROP_APP_METADATA_VALUE, value); - if (ret != PMINFO_R_OK) - return ret; + if (key == NULL) { + LOGE("invalid parameter"); + return PMINFO_R_EINVAL; + } + + node = calloc(1, sizeof(pkgmgrinfo_metadata_node_x)); + if (node == NULL) { + LOGE("out of memory"); + return PMINFO_R_ERROR; } + node->key = strdup(key); + if (value && strlen(value)) + node->value = strdup(value); + + filter->list_metadata = g_slist_append(filter->list_metadata, + (gpointer)node); + return PMINFO_R_OK; } @@ -2938,6 +3590,15 @@ API int pkgmgrinfo_appinfo_usr_metadata_filter_foreach( return PMINFO_R_EINVAL; } + pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle; + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_APP_DISABLE, false)) + return PMINFO_R_ERROR; + + if (pkgmgrinfo_appinfo_filter_add_bool(filter, + PMINFO_APPINFO_PROP_PKG_DISABLE, false)) + return PMINFO_R_ERROR; + return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb, user_data); }