Fix get app control info query
[platform/core/appfw/pkgmgr-info.git] / src / pkgmgrinfo_appinfo.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdbool.h>
4 #include <string.h>
5 #include <ctype.h>
6 #include <unistd.h>
7 #include <sys/types.h>
8 #include <dlfcn.h>
9
10 #include <sqlite3.h>
11 #include <glib.h>
12
13 #include "pkgmgr-info.h"
14 #include "pkgmgrinfo_debug.h"
15 #include "pkgmgrinfo_private.h"
16 #include "pkgmgr_parser.h"
17
18 static bool _get_bool_value(const char *str)
19 {
20         if (str && !strcmp(str, "true"))
21                 return true;
22         else
23                 return false;
24 }
25
26 static void __cleanup_appinfo(pkgmgr_appinfo_x *data)
27 {
28         pkgmgr_appinfo_x *info = data;
29
30         if (info != NULL) {
31                 if (info->package)
32                         free((void *)info->package);
33                 if (info->locale)
34                         free((void *)info->locale);
35
36                 pkgmgrinfo_basic_free_application(info->app_info);
37                 free((void *)info);
38         }
39         return;
40 }
41
42 static const char join_localized_info[] =
43         " LEFT OUTER JOIN package_app_localized_info"
44         "  ON ai.app_id=package_app_localized_info.app_id"
45         "  AND package_app_localized_info.app_locale=?";
46 static const char join_category[] =
47         " LEFT OUTER JOIN package_app_app_category"
48         " ON ai.app_id=package_app_app_category.app_id";
49 static const char join_app_control[] =
50         " LEFT OUTER JOIN package_app_app_control"
51         "  ON ai.app_id=package_app_app_control.app_id";
52 static const char join_metadata[] =
53         " LEFT OUTER JOIN package_app_app_metadata"
54         "  ON ai.app_id=package_app_app_metadata.app_id ";
55 static const char join_privilege[] =
56         " LEFT OUTER JOIN package_privilege_info"
57         " ON ai.package=package_privilege_info.package ";
58
59 static int _get_filtered_query(pkgmgrinfo_filter_x *filter,
60         const char *locale, uid_t uid, char **query, GList **bind_params)
61 {
62         int joined = 0;
63         char *condition = NULL;
64         char buf[MAX_QUERY_LEN] = { '\0' };
65         char tmp_query[MAX_QUERY_LEN] = { '\0' };
66         GSList *list;
67
68         if (!filter)
69                 return PMINFO_R_OK;
70         strncat(buf, " WHERE 1=1", sizeof(buf) - strlen(buf) - 1);
71
72         for (list = filter->list; list; list = list->next) {
73                 joined |= __get_filter_condition(list->data, uid, &condition, bind_params);
74                 if (condition == NULL)
75                         continue;
76
77                 strncat(buf, " AND ", sizeof(buf) - strlen(buf) - 1);
78
79                 strncat(buf, condition, sizeof(buf) - strlen(buf) - 1);
80                 free(condition);
81                 condition = NULL;
82         }
83
84         if (filter->list_metadata)
85                 strncat(buf, " AND (", sizeof(buf) - strlen(buf) - 1);
86         for (list = filter->list_metadata; list; list = list->next) {
87                 joined |= __get_metadata_filter_condition(list->data,
88                                 &condition, bind_params);
89                 if (condition == NULL)
90                         continue;
91                 strncat(buf, condition, sizeof(buf) - strlen(buf) - 1);
92                 free(condition);
93                 condition = NULL;
94
95                 strncat(buf, " OR ", sizeof(buf) - strlen(buf) - 1);
96         }
97         if (filter->list_metadata)
98                 strncat(buf, "1=0)", sizeof(buf) - strlen(buf) - 1);
99
100         if (joined & E_PMINFO_APPINFO_JOIN_LOCALIZED_INFO) {
101                 strncat(tmp_query, join_localized_info, sizeof(tmp_query) - strlen(tmp_query) - 1);
102                 *bind_params = g_list_append(*bind_params, strdup(locale));
103         }
104         if (joined & E_PMINFO_APPINFO_JOIN_CATEGORY)
105                 strncat(tmp_query, join_category, sizeof(tmp_query) - strlen(tmp_query) - 1);
106         if (joined & E_PMINFO_APPINFO_JOIN_APP_CONTROL)
107                 strncat(tmp_query, join_app_control, sizeof(tmp_query) - strlen(tmp_query) - 1);
108         if (joined & E_PMINFO_APPINFO_JOIN_METADATA)
109                 strncat(tmp_query, join_metadata, sizeof(tmp_query) - strlen(tmp_query) - 1);
110         if (joined & E_PMINFO_APPINFO_JOIN_PRIVILEGE)
111                 strncat(tmp_query, join_privilege, sizeof(tmp_query) - strlen(tmp_query) - 1);
112
113         strncat(tmp_query, buf, sizeof(tmp_query) - strlen(tmp_query) - 1);
114
115         *query = strdup(tmp_query);
116         if (*query == NULL)
117                 return PMINFO_R_ERROR;
118
119         return PMINFO_R_OK;
120 }
121
122 static int _appinfo_get_category(sqlite3 *db, const char *appid,
123                 GList **category)
124 {
125         static const char query_raw[] =
126                 "SELECT category FROM package_app_app_category WHERE app_id=%Q";
127         int ret;
128         char *query;
129         sqlite3_stmt *stmt;
130         char *val;
131
132         query = sqlite3_mprintf(query_raw, appid);
133         if (query == NULL) {
134                 LOGE("out of memory");
135                 return PMINFO_R_ERROR;
136         }
137
138         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
139         sqlite3_free(query);
140         if (ret != SQLITE_OK) {
141                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
142                 return PMINFO_R_ERROR;
143         }
144
145         while (sqlite3_step(stmt) == SQLITE_ROW) {
146                 val = NULL;
147                 _save_column_str(stmt, 0, &val);
148                 if (val)
149                         *category = g_list_append(*category, (gpointer)val);
150         }
151
152         sqlite3_finalize(stmt);
153
154         return PMINFO_R_OK;
155 }
156
157 static void __parse_appcontrol(GList **appcontrol, char *appcontrol_str,
158                 char *visibility, char *id)
159 {
160         char *dup;
161         char *token;
162         char *ptr = NULL;
163         appcontrol_x *ac;
164
165         if (appcontrol_str == NULL)
166                 return;
167
168         dup = strdup(appcontrol_str);
169         if (dup == NULL) {
170                 _LOGE("out of memory");
171                 return;
172         }
173
174         do {
175                 ac = calloc(1, sizeof(appcontrol_x));
176                 if (ac == NULL) {
177                         _LOGE("out of memory");
178                         break;
179                 }
180                 token = strtok_r(dup, "|", &ptr);
181                 if (token && strcmp(token, "NULL"))
182                         ac->operation = strdup(token);
183                 token = strtok_r(NULL, "|", &ptr);
184                 if (token && strcmp(token, "NULL"))
185                         ac->uri = strdup(token);
186                 token = strtok_r(NULL, "|", &ptr);
187                 if (token && strcmp(token, "NULL"))
188                         ac->mime = strdup(token);
189                 ac->visibility = strdup(visibility);
190                 ac->id = strdup(id);
191                 *appcontrol = g_list_append(*appcontrol, ac);
192         } while ((token = strtok_r(NULL, ";", &ptr)));
193
194         free(dup);
195 }
196
197 static int _appinfo_get_app_control(sqlite3 *db, const char *appid,
198                 GList **appcontrol)
199 {
200         static const char query_raw[] =
201                 "SELECT app_control, visibility, app_control_id "
202                 "FROM package_app_app_control WHERE app_id=%Q";
203         int ret;
204         int idx;
205         char *query;
206         sqlite3_stmt *stmt;
207         char *str;
208         char *visibility;
209         char *id;
210
211         query = sqlite3_mprintf(query_raw, appid);
212         if (query == NULL) {
213                 LOGE("out of memory");
214                 return PMINFO_R_ERROR;
215         }
216
217         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
218         sqlite3_free(query);
219         if (ret != SQLITE_OK) {
220                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
221                 return PMINFO_R_ERROR;
222         }
223
224         while (sqlite3_step(stmt) == SQLITE_ROW) {
225                 str = NULL;
226                 visibility = NULL;
227                 id = NULL;
228                 idx = 0;
229                 _save_column_str(stmt, idx++, &str);
230                 _save_column_str(stmt, idx++, &visibility);
231                 _save_column_str(stmt, idx++, &id);
232                 /* TODO: revise */
233                 __parse_appcontrol(appcontrol, str, visibility, id);
234                 free(str);
235                 free(visibility);
236                 free(id);
237         }
238
239         sqlite3_finalize(stmt);
240
241         return PMINFO_R_OK;
242 }
243
244 static int _appinfo_get_metadata(sqlite3 *db, const char *appid,
245                 GList **metadata)
246 {
247         static const char query_raw[] =
248                 "SELECT md_key, md_value "
249                 "FROM package_app_app_metadata WHERE app_id=%Q";
250         int ret;
251         char *query;
252         sqlite3_stmt *stmt;
253         int idx;
254         metadata_x *info;
255
256         query = sqlite3_mprintf(query_raw, appid);
257         if (query == NULL) {
258                 LOGE("out of memory");
259                 return PMINFO_R_ERROR;
260         }
261
262         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
263         sqlite3_free(query);
264         if (ret != SQLITE_OK) {
265                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
266                 return PMINFO_R_ERROR;
267         }
268
269         while (sqlite3_step(stmt) == SQLITE_ROW) {
270                 info = calloc(1, sizeof(metadata_x));
271                 if (info == NULL) {
272                         LOGE("out of memory");
273                         sqlite3_finalize(stmt);
274                         return PMINFO_R_ERROR;
275                 }
276                 idx = 0;
277                 _save_column_str(stmt, idx++, &info->key);
278                 _save_column_str(stmt, idx++, &info->value);
279                 *metadata = g_list_append(*metadata, info);
280         }
281
282         sqlite3_finalize(stmt);
283
284         return PMINFO_R_OK;
285
286 }
287
288 static int _appinfo_get_splashscreens(sqlite3 *db, const char *appid,
289                 GList **splashscreens)
290 {
291         static const char query_raw[] =
292                 "SELECT src, type, orientation, indicatordisplay, operation, color_depth "
293                 "FROM package_app_splash_screen WHERE app_id=%Q";
294         int ret;
295         char *query;
296         sqlite3_stmt *stmt;
297         int idx;
298         splashscreen_x *info;
299
300         query = sqlite3_mprintf(query_raw, appid);
301         if (query == NULL) {
302                 LOGE("out of memory");
303                 return PMINFO_R_ERROR;
304         }
305
306         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
307         sqlite3_free(query);
308         if (ret != SQLITE_OK) {
309                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
310                 return PMINFO_R_ERROR;
311         }
312
313         while (sqlite3_step(stmt) == SQLITE_ROW) {
314                 info = calloc(1, sizeof(splashscreen_x));
315                 if (info == NULL) {
316                         LOGE("out of memory");
317                         sqlite3_finalize(stmt);
318                         return PMINFO_R_ERROR;
319                 }
320                 idx = 0;
321                 _save_column_str(stmt, idx++, &info->src);
322                 _save_column_str(stmt, idx++, &info->type);
323                 _save_column_str(stmt, idx++, &info->orientation);
324                 _save_column_str(stmt, idx++, &info->indicatordisplay);
325                 _save_column_str(stmt, idx++, &info->operation);
326                 _save_column_str(stmt, idx++, &info->color_depth);
327                 *splashscreens = g_list_append(*splashscreens, info);
328         }
329
330         sqlite3_finalize(stmt);
331
332         return PMINFO_R_OK;
333 }
334
335 static GList *__get_background_category(const char *value)
336 {
337         GList *category_list = NULL;
338         int convert_value = 0;
339         if (!value || strlen(value) == 0)
340                 return NULL;
341
342         convert_value = atoi(value);
343         if (convert_value < 0)
344                 return NULL;
345
346         if (convert_value & APP_BG_CATEGORY_USER_DISABLE_TRUE_VAL)
347                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_USER_DISABLE_TRUE_STR));
348         else
349                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_USER_DISABLE_FALSE_STR));
350
351         if (convert_value & APP_BG_CATEGORY_MEDIA_VAL)
352                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_MEDIA_STR));
353
354         if (convert_value & APP_BG_CATEGORY_DOWNLOAD_VAL)
355                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_DOWNLOAD_STR));
356
357         if (convert_value & APP_BG_CATEGORY_BGNETWORK_VAL)
358                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_BGNETWORK_STR));
359
360         if (convert_value & APP_BG_CATEGORY_LOCATION_VAL)
361                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_LOCATION_STR));
362
363         if (convert_value & APP_BG_CATEGORY_SENSOR_VAL)
364                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_SENSOR_STR));
365
366         if (convert_value & APP_BG_CATEGORY_IOTCOMM_VAL)
367                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_IOTCOMM_STR));
368
369         if (convert_value & APP_BG_CATEGORY_SYSTEM_VAL)
370                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_SYSTEM));
371
372         return category_list;
373
374 }
375
376 static void __free_applications(gpointer data)
377 {
378         pkgmgrinfo_basic_free_application((application_x *)data);
379 }
380
381 static gint __disable_chk_func(gconstpointer data1, gconstpointer data2)
382 {
383         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)data1;
384         pkgmgrinfo_appinfo_disable_type value = GPOINTER_TO_INT(data2);
385
386         if (value == E_APPINFO_DISABLE_TYPE_PKG)
387                 return (node->prop == E_PMINFO_APPINFO_PROP_PKG_DISABLE)
388                                 ? 0 : 1;
389         else
390                 return (node->prop == E_PMINFO_APPINFO_PROP_APP_DISABLE)
391                                 ? 0 : 1;
392 }
393
394 static bool __check_disable_filter_exist(pkgmgrinfo_filter_x *filter,
395                 pkgmgrinfo_appinfo_disable_type type)
396 {
397         GSList *link;
398
399         if (filter == NULL)
400                 return false;
401
402         link = g_slist_find_custom(filter->list, GINT_TO_POINTER(type), __disable_chk_func);
403         if (link)
404                 return true;
405
406         return false;
407 }
408
409 static int __bind_params(sqlite3_stmt *stmt, GList *params)
410 {
411         GList *tmp_list = NULL;
412         int idx = 0;
413         int ret;
414
415         if (stmt == NULL || params == NULL)
416                 return PMINFO_R_EINVAL;
417
418         tmp_list = params;
419         while (tmp_list) {
420                 ret = sqlite3_bind_text(stmt, ++idx, (char *)tmp_list->data, -1, SQLITE_STATIC);
421                 if (ret != SQLITE_OK)
422                         return PMINFO_R_ERROR;
423                 tmp_list = tmp_list->next;
424         }
425
426         return PMINFO_R_OK;
427 }
428
429 static bool __check_app_storage_status(pkgmgrinfo_filter_x *tmp_filter)
430 {
431         GSList *tmp_list = NULL;
432         pkgmgrinfo_node_x *tmp_node = NULL;
433         int property = -1;
434
435         if (tmp_filter == NULL)
436                 return true;
437
438         property = _pminfo_appinfo_convert_to_prop_bool(PMINFO_APPINFO_PROP_APP_CHECK_STORAGE);
439         for (tmp_list = tmp_filter->list; tmp_list != NULL;
440                         tmp_list = g_slist_next(tmp_list)) {
441                 tmp_node = (pkgmgrinfo_node_x *)tmp_list->data;
442                 if (property == tmp_node->prop) {
443                         if (strcmp(tmp_node->value, "true") == 0)
444                                 return true;
445                         else
446                                 return false;
447                 }
448         }
449
450         return true;
451 }
452
453 static int _appinfo_get_applications(uid_t db_uid, uid_t uid,
454                 const char *locale, pkgmgrinfo_filter_x *filter, int flag,
455                 GHashTable *applications)
456 {
457         static const char query_raw[] =
458                 "SELECT DISTINCT ai.app_id, ai.app_installed_storage, "
459                 "ai.app_external_path";
460         static const char query_basic[] =
461                 ", ai.app_component, ai.app_exec, "
462                 "ai.app_nodisplay, ai.app_type, ai.app_onboot, "
463                 "ai.app_multiple, ai.app_autorestart, ai.app_taskmanage, "
464                 "ai.app_hwacceleration, ai.app_screenreader, "
465                 "ai.app_mainapp, ai.app_recentimage, ai.app_launchcondition, "
466                 "ai.app_indicatordisplay, ai.app_portraitimg, "
467                 "ai.app_landscapeimg, ai.app_guestmodevisibility, "
468                 "ai.app_permissiontype, ai.app_preload, ai.app_submode, "
469                 "ai.app_submode_mainid, ai.app_launch_mode, ai.app_ui_gadget, "
470                 "ai.app_support_disable, ai.app_process_pool, "
471                 "ai.app_background_category, ai.app_package_type, "
472                 "ai.app_root_path, ai.app_api_version, ai.app_effective_appid, "
473                 "ai.app_disable, ai.app_splash_screen_display, ai.app_tep_name, "
474                 "ai.app_zip_mount_file, ai.component_type, ai.package, "
475                 "ai.app_package_system, ai.app_removable, "
476                 "ai.app_package_installed_time, ai.app_support_mode, "
477                 "ai.app_support_ambient, ai.app_setup_appid";
478         static const char query_uid_info[] =
479                 ", ui.is_disabled, ui.is_splash_screen_enabled";
480         static const char query_label[] =
481                 ", COALESCE("
482                 "(SELECT app_label FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale=?), "
483                 "(SELECT app_label FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale='No Locale'))";
484         static const char query_icon[] =
485                 ", COALESCE("
486                 "(SELECT app_icon FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale=?), "
487                 "(SELECT app_icon FROM package_app_localized_info WHERE ai.app_id=app_id AND app_locale='No Locale'))";
488         static const char query_from_clause[] = " FROM package_app_info as ai";
489         static const char query_uid_info_clause[] =
490                 " LEFT OUTER JOIN package_app_info_for_uid AS ui "
491                 "ON (ai.app_id=ui.app_id AND ui.uid=?)";
492         int ret = PMINFO_R_ERROR;
493         int idx;
494         char *dbpath;
495         char *bg_category_str = NULL;
496         char *constraint = NULL;
497         char *tmp_record = NULL;
498         char query[MAX_QUERY_LEN] = { '\0' };
499         char buf[BUFSIZE] = { '\0' };
500         application_x *info = NULL;
501         GList *bind_params = NULL;
502         sqlite3 *db = NULL;
503         sqlite3_stmt *stmt = NULL;
504         bool is_check_storage = true;
505         const uid_t global_user_uid = GLOBAL_USER;
506
507         dbpath = getUserPkgParserDBPathUID(db_uid);
508         if (dbpath == NULL)
509                 return PMINFO_R_ERROR;
510
511         ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY);
512         if (ret != SQLITE_OK) {
513                 _LOGE("failed to open db(%s): %d", dbpath, ret);
514                 free(dbpath);
515                 return PMINFO_R_ERROR;
516         }
517         free(dbpath);
518
519         snprintf(query, MAX_QUERY_LEN - 1, "%s", query_raw);
520
521         if (flag & PMINFO_APPINFO_GET_BASICINFO) {
522                 strncat(query, query_basic, sizeof(query) - strlen(query) - 1);
523                 strncat(query, query_uid_info, sizeof(query) - strlen(query) - 1);
524         }
525         if (flag & PMINFO_APPINFO_GET_LABEL) {
526                 strncat(query, query_label, sizeof(query) - strlen(query) - 1);
527                 bind_params = g_list_append(bind_params, strdup(locale));
528         }
529         if (flag & PMINFO_APPINFO_GET_ICON) {
530                 strncat(query, query_icon, sizeof(query) - strlen(query) - 1);
531                 bind_params = g_list_append(bind_params, strdup(locale));
532         }
533
534         snprintf(buf, MAX_QUERY_LEN - 1, "%d", uid);
535         bind_params = g_list_append(bind_params, strdup(buf));
536
537         is_check_storage = __check_app_storage_status(filter);
538
539         ret = _get_filtered_query(filter, locale, uid, &constraint, &bind_params);
540         if (ret != PMINFO_R_OK) {
541                 LOGE("Failed to get WHERE clause");
542                 goto catch;
543         }
544         strncat(query, query_from_clause, sizeof(query) - strlen(query) - 1);
545
546         strncat(query, query_uid_info_clause, sizeof(query) - strlen(query) - 1);
547
548         if (constraint)
549                 strncat(query, constraint, sizeof(query) - strlen(query) - 1);
550
551         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
552         if (ret != SQLITE_OK) {
553                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
554                 ret = PMINFO_R_ERROR;
555                 goto catch;
556         }
557
558         if (g_list_length(bind_params) != 0) {
559                 ret = __bind_params(stmt, bind_params);
560                 if (ret != SQLITE_OK) {
561                         LOGE("Failed to bind parameters");
562                         goto catch;
563                 }
564         }
565
566         while (sqlite3_step(stmt) == SQLITE_ROW) {
567                 info = calloc(1, sizeof(application_x));
568                 if (info == NULL) {
569                         LOGE("out of memory");
570                         ret = PMINFO_R_ERROR;
571                         goto catch;
572                 }
573                 idx = 0;
574                 _save_column_str(stmt, idx++, &info->appid);
575                 _save_column_str(stmt, idx++, &info->installed_storage);
576                 _save_column_str(stmt, idx++ , &info->external_path);
577
578                 if (flag & PMINFO_APPINFO_GET_BASICINFO) {
579                         _save_column_str(stmt, idx++, &info->component);
580                         _save_column_str(stmt, idx++, &info->exec);
581                         _save_column_str(stmt, idx++, &info->nodisplay);
582                         _save_column_str(stmt, idx++, &info->type);
583                         _save_column_str(stmt, idx++, &info->onboot);
584                         _save_column_str(stmt, idx++, &info->multiple);
585                         _save_column_str(stmt, idx++, &info->autorestart);
586                         _save_column_str(stmt, idx++, &info->taskmanage);
587                         _save_column_str(stmt, idx++, &info->hwacceleration);
588                         _save_column_str(stmt, idx++, &info->screenreader);
589                         _save_column_str(stmt, idx++, &info->mainapp);
590                         _save_column_str(stmt, idx++, &info->recentimage);
591                         _save_column_str(stmt, idx++, &info->launchcondition);
592                         _save_column_str(stmt, idx++, &info->indicatordisplay);
593                         _save_column_str(stmt, idx++, &info->portraitimg);
594                         _save_column_str(stmt, idx++, &info->landscapeimg);
595                         _save_column_str(stmt, idx++, &info->guestmode_visibility);
596                         _save_column_str(stmt, idx++, &info->permission_type);
597                         _save_column_str(stmt, idx++, &info->preload);
598                         _save_column_str(stmt, idx++, &info->submode);
599                         _save_column_str(stmt, idx++, &info->submode_mainid);
600                         _save_column_str(stmt, idx++, &info->launch_mode);
601                         _save_column_str(stmt, idx++, &info->ui_gadget);
602                         _save_column_str(stmt, idx++, &info->support_disable);
603                         _save_column_str(stmt, idx++, &info->process_pool);
604                         _save_column_str(stmt, idx++, &bg_category_str);
605                         _save_column_str(stmt, idx++, &info->package_type);
606                         _save_column_str(stmt, idx++, &info->root_path);
607                         _save_column_str(stmt, idx++, &info->api_version);
608                         _save_column_str(stmt, idx++, &info->effective_appid);
609                         _save_column_str(stmt, idx++, &info->is_disabled);
610                         _save_column_str(stmt, idx++, &info->splash_screen_display);
611                         _save_column_str(stmt, idx++, &info->tep_name);
612                         _save_column_str(stmt, idx++, &info->zip_mount_file);
613                         _save_column_str(stmt, idx++, &info->component_type);
614                         _save_column_str(stmt, idx++, &info->package);
615                         _save_column_str(stmt, idx++, &info->package_system);
616                         _save_column_str(stmt, idx++, &info->removable);
617                         _save_column_str(stmt, idx++, &info->package_installed_time);
618                         _save_column_str(stmt, idx++, &info->support_mode);
619                         _save_column_str(stmt, idx++, &info->support_ambient);
620                         _save_column_str(stmt, idx++, &info->setup_appid);
621                         info->background_category = __get_background_category(
622                                         bg_category_str);
623                         free(bg_category_str);
624                 }
625
626                 info->for_all_users =
627                         strdup((db_uid != global_user_uid) ? "false" : "true");
628
629                 if (db_uid != global_user_uid) {
630                         idx = idx + 2;
631                 } else {
632                         tmp_record = NULL;
633                         _save_column_str(stmt, idx++, &tmp_record);
634                         if (tmp_record != NULL) {
635                                 if (strcasecmp(info->is_disabled, "false") == 0 &&
636                                                 strcasecmp(tmp_record, "false") == 0) {
637                                         free(info->is_disabled);
638                                         info->is_disabled = tmp_record;
639                                 } else {
640                                         free(tmp_record);
641                                 }
642                         }
643                         tmp_record = NULL;
644                         _save_column_str(stmt, idx++, &tmp_record);
645                         if (tmp_record != NULL) {
646                                 if (strcasecmp(info->splash_screen_display, "false") == 0 &&
647                                                 strcasecmp(tmp_record, "false") == 0) {
648                                         free(info->splash_screen_display);
649                                         info->splash_screen_display = tmp_record;
650                                 } else {
651                                         free(tmp_record);
652                                 }
653                         }
654                 }
655
656                 if (flag & PMINFO_APPINFO_GET_LABEL) {
657                         tmp_record = NULL;
658                         _save_column_str(stmt, idx++, &tmp_record);
659                         if (_add_label_info_into_list(locale, tmp_record, &info->label)) {
660                                 ret = PMINFO_R_ERROR;
661                                 goto catch;
662                         }
663                 }
664
665                 if (flag & PMINFO_APPINFO_GET_ICON) {
666                         tmp_record = NULL;
667                         _save_column_str(stmt, idx++, &tmp_record);
668                         if (_add_icon_info_into_list(locale, tmp_record, &info->icon)) {
669                                 ret = PMINFO_R_ERROR;
670                                 goto catch;
671                         }
672                 }
673
674                 if (flag & PMINFO_APPINFO_GET_CATEGORY) {
675                         if (_appinfo_get_category(db, info->appid,
676                                                 &info->category)) {
677                                 ret = PMINFO_R_ERROR;
678                                 goto catch;
679                         }
680                 }
681
682                 if (flag & PMINFO_APPINFO_GET_APP_CONTROL) {
683                         if (_appinfo_get_app_control(db, info->appid,
684                                                 &info->appcontrol)) {
685                                 ret = PMINFO_R_ERROR;
686                                 goto catch;
687                         }
688                 }
689
690                 if (flag & PMINFO_APPINFO_GET_METADATA) {
691                         if (_appinfo_get_metadata(db, info->appid,
692                                                 &info->metadata)) {
693                                 ret = PMINFO_R_ERROR;
694                                 goto catch;
695                         }
696                 }
697
698                 if (flag & PMINFO_APPINFO_GET_SPLASH_SCREEN) {
699                         if (_appinfo_get_splashscreens(db, info->appid,
700                                                 &info->splashscreens)) {
701                                 ret = PMINFO_R_ERROR;
702                                 goto catch;
703                         }
704                 }
705
706                 if (is_check_storage &&
707                                 __appinfo_check_installed_storage(info) != PMINFO_R_OK) {
708                         ret = PMINFO_R_ERROR;
709                         pkgmgrinfo_basic_free_application(info);
710                         info = NULL;
711                         continue;
712                 }
713
714                 g_hash_table_insert(applications, (gpointer)info->appid,
715                                 (gpointer)info);
716         }
717
718         ret = PMINFO_R_OK;
719
720 catch:
721         sqlite3_finalize(stmt);
722         sqlite3_close_v2(db);
723
724         if (constraint)
725                 free(constraint);
726
727         if (ret != PMINFO_R_OK && info != NULL)
728                 pkgmgrinfo_basic_free_application(info);
729
730         g_list_free_full(bind_params, free);
731
732         return ret;
733 }
734
735 static int _pkgmgrinfo_get_appinfo(const char *appid, uid_t uid,
736         pkgmgrinfo_appinfo_filter_h filter, pkgmgrinfo_appinfo_h *handle)
737 {
738         int ret;
739         char *locale;
740         GHashTable *list;
741         pkgmgr_appinfo_x *info;
742
743         if (appid == NULL || filter == NULL || handle == NULL) {
744                         LOGE("invalid parameter");
745                         return PMINFO_R_EINVAL;
746         }
747
748         locale = _get_system_locale();
749         if (locale == NULL)
750                 return PMINFO_R_ERROR;
751
752         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
753                         __free_applications);
754         if (list == NULL) {
755                 free(locale);
756                 return PMINFO_R_ERROR;
757         }
758
759         ret = _appinfo_get_applications(uid, uid, locale, filter,
760                         PMINFO_APPINFO_GET_ALL, list);
761         if (!g_hash_table_size(list) && uid != GLOBAL_USER)
762                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale, filter,
763                                 PMINFO_APPINFO_GET_ALL, list);
764
765         if (ret != PMINFO_R_OK) {
766                 g_hash_table_destroy(list);
767                 free(locale);
768                 return ret;
769         }
770
771         if (!g_hash_table_size(list)) {
772                 _LOGD("appinfo for [%s] is not existed for user [%d]",
773                                 appid, uid);
774                 g_hash_table_destroy(list);
775                 free(locale);
776                 return PMINFO_R_ENOENT;
777         }
778
779         info = calloc(1, sizeof(pkgmgr_appinfo_x));
780         if (info == NULL) {
781                 _LOGE("out of memory");
782                 g_hash_table_destroy(list);
783                 free(locale);
784                 return PMINFO_R_ERROR;
785         }
786
787         info->app_info = (application_x *)g_hash_table_lookup(list, appid);
788         info->locale = locale;
789         info->package = strdup(info->app_info->package);
790
791         /* just free list only */
792         g_hash_table_steal(list, (gconstpointer)appid);
793         g_hash_table_destroy(list);
794
795         *handle = info;
796
797         return ret;
798 }
799
800 API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid,
801                 pkgmgrinfo_appinfo_h *handle)
802 {
803         int ret;
804         pkgmgrinfo_appinfo_filter_h filter;
805
806         if (appid == NULL || handle == NULL) {
807                 LOGE("invalid parameter");
808                 return PMINFO_R_EINVAL;
809         }
810
811         ret = pkgmgrinfo_appinfo_filter_create(&filter);
812         if (ret != PMINFO_R_OK)
813                 return ret;
814
815         ret = pkgmgrinfo_appinfo_filter_add_string(filter,
816                         PMINFO_APPINFO_PROP_APP_ID, appid);
817         if (ret != PMINFO_R_OK) {
818                 pkgmgrinfo_appinfo_filter_destroy(filter);
819                 return PMINFO_R_ERROR;
820         }
821
822         ret = pkgmgrinfo_appinfo_filter_add_bool(filter,
823                         PMINFO_APPINFO_PROP_APP_DISABLE, true);
824         if (ret != PMINFO_R_OK) {
825                 pkgmgrinfo_appinfo_filter_destroy(filter);
826                 return PMINFO_R_ERROR;
827         }
828
829         ret = _pkgmgrinfo_get_appinfo(appid, uid, filter, handle);
830         pkgmgrinfo_appinfo_filter_destroy(filter);
831
832         return ret;
833 }
834
835 API int pkgmgrinfo_appinfo_get_disabled_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle)
836 {
837         return pkgmgrinfo_appinfo_get_usr_disabled_appinfo(appid, _getuid(), handle);
838 }
839
840 API int pkgmgrinfo_appinfo_get_usr_appinfo(const char *appid, uid_t uid,
841                 pkgmgrinfo_appinfo_h *handle)
842 {
843         int ret;
844         pkgmgrinfo_appinfo_filter_h filter;
845
846         if (appid == NULL || handle == NULL) {
847                 LOGE("invalid parameter");
848                 return PMINFO_R_EINVAL;
849         }
850
851         ret = pkgmgrinfo_appinfo_filter_create(&filter);
852         if (ret != PMINFO_R_OK)
853                 return ret;
854
855         ret = pkgmgrinfo_appinfo_filter_add_string(filter,
856                         PMINFO_APPINFO_PROP_APP_ID, appid);
857         if (ret != PMINFO_R_OK) {
858                 pkgmgrinfo_appinfo_filter_destroy(filter);
859                 return PMINFO_R_ERROR;
860         }
861
862         ret = pkgmgrinfo_appinfo_filter_add_bool(filter,
863                         PMINFO_APPINFO_PROP_APP_DISABLE, false);
864         if (ret != PMINFO_R_OK) {
865                 pkgmgrinfo_appinfo_filter_destroy(filter);
866                 return PMINFO_R_ERROR;
867         }
868
869         ret = pkgmgrinfo_appinfo_filter_add_bool(filter,
870                         PMINFO_APPINFO_PROP_PKG_DISABLE, false);
871         if (ret != PMINFO_R_OK) {
872                 pkgmgrinfo_appinfo_filter_destroy(filter);
873                 return PMINFO_R_ERROR;
874         }
875
876         ret = _pkgmgrinfo_get_appinfo(appid, uid, filter, handle);
877         pkgmgrinfo_appinfo_filter_destroy(filter);
878         return ret;
879 }
880
881 API int pkgmgrinfo_appinfo_get_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle)
882 {
883         return pkgmgrinfo_appinfo_get_usr_appinfo(appid, _getuid(), handle);
884 }
885
886 API int pkgmgrinfo_appinfo_get_usr_all_appinfo(const char *appid, uid_t uid,
887                 pkgmgrinfo_appinfo_h *handle)
888 {
889         int ret;
890         pkgmgrinfo_appinfo_filter_h filter;
891
892         if (appid == NULL || handle == NULL) {
893                 LOGE("invalid parameter");
894                 return PMINFO_R_EINVAL;
895         }
896
897         ret = pkgmgrinfo_appinfo_filter_create(&filter);
898         if (ret != PMINFO_R_OK)
899                 return ret;
900
901         ret = pkgmgrinfo_appinfo_filter_add_string(filter,
902                         PMINFO_APPINFO_PROP_APP_ID, appid);
903         if (ret != PMINFO_R_OK) {
904                 pkgmgrinfo_appinfo_filter_destroy(filter);
905                 return PMINFO_R_ERROR;
906         }
907
908         ret = pkgmgrinfo_appinfo_filter_add_bool(filter,
909                         PMINFO_APPINFO_PROP_APP_CHECK_STORAGE, false);
910         if (ret != PMINFO_R_OK) {
911                 pkgmgrinfo_appinfo_filter_destroy(filter);
912                 return PMINFO_R_ERROR;
913         }
914
915         ret = _pkgmgrinfo_get_appinfo(appid, uid, filter, handle);
916         pkgmgrinfo_appinfo_filter_destroy(filter);
917
918         return ret;
919 }
920
921 API int pkgmgrinfo_appinfo_get_all_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle)
922 {
923         return pkgmgrinfo_appinfo_get_usr_all_appinfo(appid, _getuid(), handle);
924 }
925
926 static gpointer __copy_str(gconstpointer src, gpointer data)
927 {
928         const char *tmp = (const char *)src;
929         char *buffer;
930
931         buffer = strdup(tmp);
932         if (buffer == NULL) {
933                 LOGE("memory alloc failed");
934                 *(int *)data = -1;
935                 return NULL;
936         }
937
938         return buffer;
939 }
940
941 static gpointer __copy_label(gconstpointer src, gpointer data)
942 {
943         label_x *tmp = (label_x *)src;
944         label_x *label;
945
946         label = calloc(1, sizeof(label_x));
947         if (label == NULL) {
948                 LOGE("memory alloc failed");
949                 *(int *)data = -1;
950                 return NULL;
951         }
952
953         if (tmp->name)
954                 label->name = strdup(tmp->name);
955         if (tmp->text)
956                 label->text = strdup(tmp->text);
957         if (tmp->lang)
958                 label->lang = strdup(tmp->lang);
959
960         return label;
961 }
962
963 static gpointer __copy_icon(gconstpointer src, gpointer data)
964 {
965         icon_x *tmp = (icon_x *)src;
966         icon_x *icon;
967
968         icon = calloc(1, sizeof(icon_x));
969         if (icon == NULL) {
970                 LOGE("memory alloc failed");
971                 *(int *)data = -1;
972                 return NULL;
973         }
974
975         if (tmp->text)
976                 icon->text = strdup(tmp->text);
977         if (tmp->lang)
978                 icon->lang = strdup(tmp->lang);
979         if (tmp->section)
980                 icon->section = strdup(tmp->section);
981         if (tmp->size)
982                 icon->size = strdup(tmp->size);
983         if (tmp->resolution)
984                 icon->resolution = strdup(tmp->resolution);
985
986         return icon;
987 }
988
989 static gpointer __copy_metadata(gconstpointer src, gpointer data)
990 {
991         metadata_x *tmp = (metadata_x *)src;
992         metadata_x *metadata;
993
994         metadata = calloc(1, sizeof(metadata_x));
995         if (metadata == NULL) {
996                 LOGE("memory alloc failed");
997                 *(int *)data = -1;
998                 return NULL;
999         }
1000
1001         if (tmp->key)
1002                 metadata->key = strdup(tmp->key);
1003         if (tmp->value)
1004                 metadata->value = strdup(tmp->value);
1005
1006         return metadata;
1007 }
1008
1009 static gpointer __copy_datacontrol(gconstpointer src, gpointer data)
1010 {
1011         datacontrol_x *tmp = (datacontrol_x *)src;
1012         datacontrol_x *datacontrol;
1013
1014         datacontrol = calloc(1, sizeof(datacontrol_x));
1015         if (datacontrol == NULL) {
1016                 LOGE("memory alloc failed");
1017                 *(int *)data = -1;
1018                 return NULL;
1019         }
1020
1021         if (tmp->providerid)
1022                 datacontrol->providerid = strdup(tmp->providerid);
1023         if (tmp->access)
1024                 datacontrol->access = strdup(tmp->access);
1025         if (tmp->type)
1026                 datacontrol->type = strdup(tmp->type);
1027         if (tmp->trusted)
1028                 datacontrol->trusted = strdup(tmp->trusted);
1029
1030         return datacontrol;
1031 }
1032
1033 static gpointer __copy_appcontrol(gconstpointer src, gpointer data)
1034 {
1035         appcontrol_x *tmp = (appcontrol_x *)src;
1036         appcontrol_x *appcontrol;
1037
1038         appcontrol = calloc(1, sizeof(appcontrol_x));
1039         if (appcontrol == NULL) {
1040                 LOGE("memory alloc failed");
1041                 *(int *)data = -1;
1042                 return NULL;
1043         }
1044
1045         if (tmp->operation)
1046                 appcontrol->operation = strdup(tmp->operation);
1047         if (tmp->uri)
1048                 appcontrol->uri = strdup(tmp->uri);
1049         if (tmp->mime)
1050                 appcontrol->mime = strdup(tmp->mime);
1051
1052         return appcontrol;
1053 }
1054
1055 static gpointer __copy_splashscreens(gconstpointer src, gpointer data)
1056 {
1057         splashscreen_x *tmp = (splashscreen_x *)src;
1058         splashscreen_x *splashscreen;
1059
1060         splashscreen = (splashscreen_x *)calloc(1, sizeof(splashscreen_x));
1061         if (splashscreen == NULL) {
1062                 LOGE("memory alloc failed");
1063                 *(int *)data = -1;
1064                 return NULL;
1065         }
1066
1067         if (tmp->src)
1068                 splashscreen->src = strdup(tmp->src);
1069         if (tmp->type)
1070                 splashscreen->type = strdup(tmp->type);
1071         if (tmp->orientation)
1072                 splashscreen->orientation = strdup(tmp->orientation);
1073         if (tmp->indicatordisplay)
1074                 splashscreen->indicatordisplay = strdup(tmp->indicatordisplay);
1075         if (tmp->operation)
1076                 splashscreen->operation = strdup(tmp->operation);
1077         if (tmp->color_depth)
1078                 splashscreen->color_depth = strdup(tmp->color_depth);
1079
1080         return splashscreen;
1081 }
1082
1083 static int _appinfo_copy_appinfo(application_x **application, application_x *data)
1084 {
1085         application_x *app_info;
1086         int ret;
1087
1088         app_info = calloc(1, sizeof(application_x));
1089         if (app_info == NULL) {
1090                 LOGE("memory alloc failed");
1091                 return PMINFO_R_ERROR;
1092         }
1093
1094         if (data->appid != NULL)
1095                 app_info->appid = strdup(data->appid);
1096         if (data->exec != NULL)
1097                 app_info->exec = strdup(data->exec);
1098         if (data->nodisplay != NULL)
1099                 app_info->nodisplay = strdup(data->nodisplay);
1100         if (data->multiple != NULL)
1101                 app_info->multiple = strdup(data->multiple);
1102         if (data->taskmanage != NULL)
1103                 app_info->taskmanage = strdup(data->taskmanage);
1104         if (data->type != NULL)
1105                 app_info->type = strdup(data->type);
1106         if (data->categories != NULL)
1107                 app_info->categories = strdup(data->categories);
1108         if (data->hwacceleration != NULL)
1109                 app_info->hwacceleration = strdup(data->hwacceleration);
1110         if (data->screenreader != NULL)
1111                 app_info->screenreader = strdup(data->screenreader);
1112         if (data->mainapp != NULL)
1113                 app_info->mainapp = strdup(data->mainapp);
1114         if (data->package != NULL)
1115                 app_info->package = strdup(data->package);
1116         if (data->recentimage != NULL)
1117                 app_info->recentimage = strdup(data->recentimage);
1118         if (data->launchcondition != NULL)
1119                 app_info->launchcondition = strdup(data->launchcondition);
1120         if (data->indicatordisplay != NULL)
1121                 app_info->indicatordisplay = strdup(data->indicatordisplay);
1122         if (data->portraitimg != NULL)
1123                 app_info->portraitimg = strdup(data->portraitimg);
1124         if (data->landscapeimg != NULL)
1125                 app_info->landscapeimg = strdup(data->landscapeimg);
1126         if (data->guestmode_visibility != NULL)
1127                 app_info->guestmode_visibility = strdup(data->guestmode_visibility);
1128         if (data->component != NULL)
1129                 app_info->component = strdup(data->component);
1130         if (data->permission_type != NULL)
1131                 app_info->permission_type = strdup(data->permission_type);
1132         if (data->component_type != NULL)
1133                 app_info->component_type = strdup(data->component_type);
1134         if (data->preload != NULL)
1135                 app_info->preload = strdup(data->preload);
1136         if (data->submode != NULL)
1137                 app_info->submode = strdup(data->submode);
1138         if (data->submode_mainid != NULL)
1139                 app_info->submode_mainid = strdup(data->submode_mainid);
1140         if (data->process_pool != NULL)
1141                 app_info->process_pool = strdup(data->process_pool);
1142         if (data->installed_storage != NULL)
1143                 app_info->installed_storage = strdup(data->installed_storage);
1144         if (data->autorestart != NULL)
1145                 app_info->autorestart = strdup(data->autorestart);
1146         if (data->onboot != NULL)
1147                 app_info->onboot = strdup(data->onboot);
1148         if (data->support_disable != NULL)
1149                 app_info->support_disable = strdup(data->support_disable);
1150         if (data->ui_gadget != NULL)
1151                 app_info->ui_gadget = strdup(data->ui_gadget);
1152         if (data->launch_mode != NULL)
1153                 app_info->launch_mode = strdup(data->launch_mode);
1154         if (data->package_type != NULL)
1155                 app_info->package_type = strdup(data->package_type);
1156         if (data->effective_appid != NULL)
1157                 app_info->effective_appid = strdup(data->effective_appid);
1158         if (data->splash_screen_display != NULL)
1159                 app_info->splash_screen_display = strdup(data->splash_screen_display);
1160
1161         /* GList */
1162         ret = 0;
1163         app_info->label = g_list_copy_deep(data->label, __copy_label, &ret);
1164         if (ret < 0) {
1165                 LOGE("memory alloc failed");
1166                 pkgmgrinfo_basic_free_application(app_info);
1167                 return PMINFO_R_ERROR;
1168         }
1169
1170         ret = 0;
1171         app_info->icon = g_list_copy_deep(data->icon, __copy_icon, &ret);
1172         if (ret < 0) {
1173                 LOGE("memory alloc failed");
1174                 pkgmgrinfo_basic_free_application(app_info);
1175                 return PMINFO_R_ERROR;
1176         }
1177
1178         ret = 0;
1179         app_info->category = g_list_copy_deep(data->category, __copy_str, &ret);
1180         if (ret < 0) {
1181                 LOGE("memory alloc failed");
1182                 pkgmgrinfo_basic_free_application(app_info);
1183                 return PMINFO_R_ERROR;
1184         }
1185
1186         ret = 0;
1187         app_info->metadata = g_list_copy_deep(data->metadata, __copy_metadata, &ret);
1188         if (ret < 0) {
1189                 LOGE("memory alloc failed");
1190                 pkgmgrinfo_basic_free_application(app_info);
1191                 return PMINFO_R_ERROR;
1192         }
1193
1194         ret = 0;
1195         app_info->datacontrol = g_list_copy_deep(data->datacontrol, __copy_datacontrol, &ret);
1196         if (ret < 0) {
1197                 LOGE("memory alloc failed");
1198                 pkgmgrinfo_basic_free_application(app_info);
1199                 return PMINFO_R_ERROR;
1200         }
1201
1202         ret = 0;
1203         app_info->appcontrol = g_list_copy_deep(data->appcontrol, __copy_appcontrol, &ret);
1204         if (ret < 0) {
1205                 LOGE("memory alloc failed");
1206                 pkgmgrinfo_basic_free_application(app_info);
1207                 return PMINFO_R_ERROR;
1208         }
1209
1210         ret = 0;
1211         app_info->background_category = g_list_copy_deep(data->background_category, __copy_str, &ret);
1212         if (ret < 0) {
1213                 LOGE("memory alloc failed");
1214                 pkgmgrinfo_basic_free_application(app_info);
1215                 return PMINFO_R_ERROR;
1216         }
1217
1218         ret = 0;
1219         app_info->splashscreens = g_list_copy_deep(data->splashscreens, __copy_splashscreens, &ret);
1220         if (ret < 0) {
1221                 LOGE("memory alloc failed");
1222                 pkgmgrinfo_basic_free_application(app_info);
1223                 return PMINFO_R_ERROR;
1224         }
1225
1226         *application = app_info;
1227
1228         return PMINFO_R_OK;
1229 }
1230
1231 API int pkgmgrinfo_appinfo_clone_appinfo(pkgmgrinfo_appinfo_h handle,
1232                 pkgmgrinfo_appinfo_h *clone)
1233 {
1234         pkgmgr_appinfo_x *info;
1235         pkgmgr_appinfo_x *temp = (pkgmgr_appinfo_x *)handle;
1236
1237         if (handle == NULL)
1238                 return PMINFO_R_EINVAL;
1239
1240         info = calloc(1, sizeof(pkgmgr_appinfo_x));
1241         if (info == NULL) {
1242                 LOGE("memory alloc failed");
1243                 return PMINFO_R_ERROR;
1244         }
1245
1246         if (temp->package != NULL)
1247                 info->package = strdup(temp->package);
1248         if (temp->locale != NULL)
1249                 info->locale = strdup(temp->locale);
1250
1251         info->app_component = temp->app_component;
1252
1253         if (_appinfo_copy_appinfo(&info->app_info, temp->app_info) < 0) {
1254                 LOGE("appinfo copy failed");
1255                 if (info->package)
1256                         free((void *)info->package);
1257                 if (info->locale)
1258                         free(info->locale);
1259                 free(info);
1260                 return PMINFO_R_ERROR;
1261         }
1262
1263         *clone = info;
1264
1265         return PMINFO_R_OK;
1266 }
1267
1268 static int _appinfo_get_filtered_foreach_appinfo(uid_t uid,
1269                 pkgmgrinfo_filter_x *filter, int flag, pkgmgrinfo_app_list_cb app_list_cb,
1270                 void *user_data)
1271 {
1272         int ret;
1273         char *locale;
1274         application_x *app;
1275         pkgmgr_appinfo_x info;
1276         GHashTable *list;
1277         GHashTableIter iter;
1278         gpointer value;
1279
1280         locale = _get_system_locale();
1281         if (locale == NULL)
1282                 return PMINFO_R_ERROR;
1283
1284         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
1285                         __free_applications);
1286         if (list == NULL) {
1287                 free(locale);
1288                 return PMINFO_R_ERROR;
1289         }
1290
1291         ret = _appinfo_get_applications(uid, uid, locale, filter,
1292                         flag | PMINFO_APPINFO_GET_BASICINFO, list);
1293         if (ret == PMINFO_R_OK && uid != GLOBAL_USER)
1294                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
1295                                 filter, flag | PMINFO_APPINFO_GET_BASICINFO, list);
1296
1297         if (ret != PMINFO_R_OK) {
1298                 g_hash_table_destroy(list);
1299                 free(locale);
1300                 return ret;
1301         }
1302
1303         g_hash_table_iter_init(&iter, list);
1304         while (g_hash_table_iter_next(&iter, NULL, &value)) {
1305                 app = (application_x *)value;
1306                 info.app_info = app;
1307                 info.locale = locale;
1308                 info.package = app->package;
1309                 if (app_list_cb(&info, user_data) < 0)
1310                         break;
1311         }
1312         g_hash_table_destroy(list);
1313         free(locale);
1314
1315         return PMINFO_R_OK;
1316 }
1317
1318 static const char *__appcomponent_str(pkgmgrinfo_app_component comp);
1319
1320 API int pkgmgrinfo_appinfo_get_usr_list(pkgmgrinfo_pkginfo_h handle,
1321                 pkgmgrinfo_app_component component,
1322                 pkgmgrinfo_app_list_cb app_func, void *user_data, uid_t uid)
1323 {
1324         int ret;
1325         pkgmgrinfo_appinfo_filter_h filter;
1326         char *pkgid;
1327         const char *comp_str = NULL;
1328
1329         if (handle == NULL || app_func == NULL) {
1330                 LOGE("invalid parameter");
1331                 return PMINFO_R_EINVAL;
1332         }
1333
1334         if (pkgmgrinfo_pkginfo_get_pkgid(handle, &pkgid)) {
1335                 LOGE("invalid parameter");
1336                 return PMINFO_R_EINVAL;
1337         }
1338
1339         if (pkgmgrinfo_appinfo_filter_create(&filter))
1340                 return PMINFO_R_ERROR;
1341
1342         if (pkgmgrinfo_appinfo_filter_add_string(filter,
1343                                 PMINFO_APPINFO_PROP_APP_PACKAGE, pkgid)) {
1344                 pkgmgrinfo_appinfo_filter_destroy(filter);
1345                 return PMINFO_R_ERROR;
1346         }
1347
1348         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1349                         PMINFO_APPINFO_PROP_APP_DISABLE, false)) {
1350                 pkgmgrinfo_appinfo_filter_destroy(filter);
1351                 return PMINFO_R_ERROR;
1352         }
1353
1354         comp_str = __appcomponent_str(component);
1355
1356         if (comp_str) {
1357                 if (pkgmgrinfo_appinfo_filter_add_string(filter,
1358                                         PMINFO_APPINFO_PROP_APP_COMPONENT,
1359                                         comp_str)) {
1360                         pkgmgrinfo_appinfo_filter_destroy(filter);
1361                         return PMINFO_R_ERROR;
1362                 }
1363         }
1364
1365         ret = _appinfo_get_filtered_foreach_appinfo(uid, filter,
1366                         PMINFO_APPINFO_GET_ALL, app_func, user_data);
1367
1368         pkgmgrinfo_appinfo_filter_destroy(filter);
1369
1370         return ret;
1371 }
1372
1373 API int pkgmgrinfo_appinfo_get_list(pkgmgrinfo_pkginfo_h handle,
1374                 pkgmgrinfo_app_component component,
1375                 pkgmgrinfo_app_list_cb app_func, void *user_data)
1376 {
1377         return pkgmgrinfo_appinfo_get_usr_list(handle, component, app_func, user_data, _getuid());
1378 }
1379
1380 API int pkgmgrinfo_appinfo_get_usr_installed_list_full(
1381                 pkgmgrinfo_app_list_cb app_func, uid_t uid, int flag,
1382                 void *user_data)
1383 {
1384         int ret;
1385         pkgmgrinfo_appinfo_filter_h filter;
1386
1387         if (app_func == NULL) {
1388                 LOGE("invalid parameter");
1389                 return PMINFO_R_EINVAL;
1390         }
1391
1392         if (pkgmgrinfo_appinfo_filter_create(&filter))
1393                 return PMINFO_R_ERROR;
1394
1395         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1396                         PMINFO_APPINFO_PROP_APP_DISABLE, false)) {
1397                 pkgmgrinfo_appinfo_filter_destroy(filter);
1398                 return PMINFO_R_ERROR;
1399         }
1400
1401         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1402                         PMINFO_APPINFO_PROP_PKG_DISABLE, false)) {
1403                 pkgmgrinfo_appinfo_filter_destroy(filter);
1404                 return PMINFO_R_ERROR;
1405         }
1406
1407         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1408                         PMINFO_APPINFO_PROP_APP_CHECK_STORAGE, false)) {
1409                 pkgmgrinfo_appinfo_filter_destroy(filter);
1410                 return PMINFO_R_ERROR;
1411         }
1412
1413         ret = _appinfo_get_filtered_foreach_appinfo(uid, filter, flag, app_func,
1414                         user_data);
1415
1416         pkgmgrinfo_appinfo_filter_destroy(filter);
1417
1418         return ret;
1419 }
1420
1421 API int pkgmgrinfo_appinfo_get_installed_list_full(
1422                 pkgmgrinfo_app_list_cb app_func, int flag, void *user_data)
1423 {
1424         return pkgmgrinfo_appinfo_get_usr_installed_list_full(app_func,
1425                         _getuid(), flag, user_data);
1426 }
1427
1428 API int pkgmgrinfo_appinfo_get_usr_installed_list(
1429                 pkgmgrinfo_app_list_cb app_func, uid_t uid, void *user_data)
1430 {
1431         int ret;
1432         pkgmgrinfo_appinfo_filter_h filter;
1433
1434         if (app_func == NULL) {
1435                 LOGE("invalid parameter");
1436                 return PMINFO_R_EINVAL;
1437         }
1438
1439         /* create an empty filter */
1440         ret = pkgmgrinfo_appinfo_filter_create(&filter);
1441         if (ret != PMINFO_R_OK)
1442                 return ret;
1443
1444         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1445                         PMINFO_APPINFO_PROP_APP_DISABLE, false)) {
1446                 pkgmgrinfo_appinfo_filter_destroy(filter);
1447                 return PMINFO_R_ERROR;
1448         }
1449
1450         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1451                         PMINFO_APPINFO_PROP_PKG_DISABLE, false)) {
1452                 pkgmgrinfo_appinfo_filter_destroy(filter);
1453                 return PMINFO_R_ERROR;
1454         }
1455
1456         ret = _appinfo_get_filtered_foreach_appinfo(uid, filter,
1457                         PMINFO_APPINFO_GET_ALL, app_func, user_data);
1458
1459         pkgmgrinfo_appinfo_filter_destroy(filter);
1460
1461         return ret;
1462 }
1463
1464 API int pkgmgrinfo_appinfo_get_installed_list(pkgmgrinfo_app_list_cb app_func,
1465                 void *user_data)
1466 {
1467         return pkgmgrinfo_appinfo_get_usr_installed_list(app_func, _getuid(),
1468                         user_data);
1469 }
1470
1471 API int pkgmgrinfo_appinfo_get_appid(pkgmgrinfo_appinfo_h handle, char **appid)
1472 {
1473         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1474
1475         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1476         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1477
1478         if (info->app_info == NULL || info->app_info->appid == NULL)
1479                 return PMINFO_R_ERROR;
1480         *appid = (char *)info->app_info->appid;
1481
1482         return PMINFO_R_OK;
1483 }
1484
1485 API int pkgmgrinfo_appinfo_get_pkgname(pkgmgrinfo_appinfo_h handle, char **pkg_name)
1486 {
1487         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1488
1489         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1490         retvm_if(pkg_name == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1491
1492         if (info->package == NULL)
1493                 return PMINFO_R_ERROR;
1494
1495         *pkg_name = (char *)info->package;
1496
1497         return PMINFO_R_OK;
1498 }
1499
1500 API int pkgmgrinfo_appinfo_get_pkgid(pkgmgrinfo_appinfo_h handle, char **pkgid)
1501 {
1502         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1503
1504         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1505         retvm_if(pkgid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1506
1507         if (info->package == NULL)
1508                 return PMINFO_R_ERROR;
1509
1510         *pkgid = (char *)info->package;
1511
1512         return PMINFO_R_OK;
1513 }
1514
1515 API int pkgmgrinfo_appinfo_get_pkgtype(pkgmgrinfo_appinfo_h  handle, char **pkgtype)
1516 {
1517         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1518         retvm_if(pkgtype == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1519         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1520
1521         *pkgtype = (char *)info->app_info->package_type;
1522
1523         return PMINFO_R_OK;
1524 }
1525
1526 API int pkgmgrinfo_appinfo_get_exec(pkgmgrinfo_appinfo_h handle, char **exec)
1527 {
1528         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1529
1530         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1531         retvm_if(exec == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1532
1533         if (info->app_info == NULL || info->app_info->exec == NULL)
1534                 return PMINFO_R_ERROR;
1535         *exec = (char *)info->app_info->exec;
1536
1537         return PMINFO_R_OK;
1538 }
1539
1540
1541 API int pkgmgrinfo_appinfo_get_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1542 {
1543         icon_x *ptr;
1544         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1545
1546         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1547         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1548
1549         if (info->app_info == NULL)
1550                 return PMINFO_R_ERROR;
1551
1552         if (info->app_info->icon == NULL) {
1553                 *icon = "";
1554                 return PMINFO_R_OK;
1555         }
1556
1557         ptr = (icon_x *)info->app_info->icon->data;
1558         if (ptr == NULL)
1559                 return PMINFO_R_ERROR;
1560
1561         if (ptr->text == NULL)
1562                 return PMINFO_R_ERROR;
1563                 else
1564                         *icon = ptr->text;
1565
1566         return PMINFO_R_OK;
1567 }
1568
1569
1570 API int pkgmgrinfo_appinfo_get_label(pkgmgrinfo_appinfo_h handle, char **label)
1571 {
1572         label_x *ptr;
1573         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1574         char *lbl = NULL;
1575         const char *locale;
1576         GList *tmp;
1577
1578         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1579         retvm_if(label == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1580
1581         if (info->app_info == NULL)
1582                 return PMINFO_R_ERROR;
1583
1584         locale = info->locale;
1585         if (locale == NULL)
1586                 locale = DEFAULT_LOCALE;
1587
1588         for (tmp = info->app_info->label; tmp; tmp = tmp->next) {
1589                 ptr = (label_x *)tmp->data;
1590                 if (ptr == NULL || strcmp(locale, ptr->lang) != 0)
1591                         continue;
1592                 lbl = ptr->text;
1593                 break;
1594         }
1595
1596         if (lbl != NULL) {
1597                 *label = lbl;
1598                 return PMINFO_R_OK;
1599         }
1600
1601         for (tmp = info->app_info->label; tmp; tmp = tmp->next) {
1602                 ptr = (label_x *)tmp->data;
1603                 if (ptr == NULL || strcmp(DEFAULT_LOCALE, ptr->lang) != 0)
1604                         continue;
1605                 lbl = ptr->text;
1606                 break;
1607         }
1608
1609         *label = lbl ? lbl : "";
1610
1611         return PMINFO_R_OK;
1612 }
1613
1614 static char *_get_localed_label(const char *appid, const char *locale, uid_t uid)
1615 {
1616         char *result = NULL;
1617         char *query = NULL;
1618         sqlite3_stmt *stmt = NULL;
1619         sqlite3 *db = NULL;
1620         char *val;
1621         char *parser_db;
1622
1623         parser_db = getUserPkgParserDBPathUID(uid);
1624         if (parser_db == NULL) {
1625                 _LOGE("Failed to get parser db path");
1626                 goto err;
1627         }
1628
1629         if (__open_db(parser_db, &db, SQLITE_OPEN_READONLY) != SQLITE_OK) {
1630                 _LOGE("DB open fail\n");
1631                 free(parser_db);
1632                 goto err;
1633         }
1634         free(parser_db);
1635
1636         query = sqlite3_mprintf("select app_label from package_app_localized_info where app_id=%Q and app_locale=%Q", appid, locale);
1637         if (query == NULL) {
1638                 _LOGE("Out of memory");
1639                 goto err;
1640         }
1641
1642         if (sqlite3_prepare_v2(db, query, -1, &stmt, NULL) != SQLITE_OK) {
1643                 _LOGE("prepare_v2 fail\n");
1644                 goto err;
1645         }
1646
1647         if (sqlite3_step(stmt) == SQLITE_ROW) {
1648                 val = (char *)sqlite3_column_text(stmt, 0);
1649                 if (val != NULL)
1650                         result = strdup(val);
1651         }
1652
1653 err:
1654         sqlite3_finalize(stmt);
1655         sqlite3_free(query);
1656         sqlite3_close(db);
1657
1658         return result;
1659 }
1660
1661 API int pkgmgrinfo_appinfo_usr_get_localed_label(const char *appid, const char *locale, uid_t uid, char **label)
1662 {
1663         char *val;
1664
1665         retvm_if(appid == NULL || locale == NULL || label == NULL, PMINFO_R_EINVAL, "Argument is NULL");
1666
1667         val = _get_localed_label(appid, locale, uid);
1668         if (val == NULL)
1669                 val = _get_localed_label(appid, DEFAULT_LOCALE, uid);
1670
1671         if (val == NULL) {
1672                 val = _get_localed_label(appid, locale, GLOBAL_USER);
1673                 if (val == NULL)
1674                         val = _get_localed_label(appid, DEFAULT_LOCALE, GLOBAL_USER);
1675         }
1676
1677         if (val == NULL)
1678                 return PMINFO_R_ERROR;
1679
1680         *label = val;
1681
1682         return PMINFO_R_OK;
1683 }
1684
1685 API int pkgmgrinfo_appinfo_get_localed_label(const char *appid, const char *locale, char **label)
1686 {
1687         return pkgmgrinfo_appinfo_usr_get_localed_label(appid, locale, _getuid(), label);
1688 }
1689
1690 API int pkgmgrinfo_appinfo_get_metadata_value(pkgmgrinfo_appinfo_h handle, const char *metadata_key, char **metadata_value)
1691 {
1692         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1693         retvm_if(metadata_key == NULL, PMINFO_R_EINVAL, "metadata_key is NULL");
1694         retvm_if(metadata_value == NULL, PMINFO_R_EINVAL, "metadata_value is NULL");
1695
1696         GList *list_md = NULL;
1697         metadata_x *metadata = NULL;
1698         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1699
1700         list_md = info->app_info->metadata;
1701
1702         for (; list_md; list_md = list_md->next) {
1703                 metadata = (metadata_x *)list_md->data;
1704                 if (metadata && metadata->key) {
1705                         if (strcasecmp(metadata->key, metadata_key) == 0) {
1706                                 if (metadata->value == NULL)
1707                                         *metadata_value = "";
1708                                 else
1709                                         *metadata_value = (char *)metadata->value;
1710                                 return PMINFO_R_OK;
1711                         }
1712                 }
1713         }
1714
1715         return PMINFO_R_EINVAL;
1716 }
1717
1718 static pkgmgrinfo_app_component __appcomponent_convert(const char *comp)
1719 {
1720         if (strcasecmp(comp, "uiapp") == 0)
1721                 return PMINFO_UI_APP;
1722         else if (strcasecmp(comp, "svcapp") == 0)
1723                 return PMINFO_SVC_APP;
1724         else if (strcasecmp(comp, "widgetapp") == 0)
1725                 return PMINFO_WIDGET_APP;
1726         else if (strcasecmp(comp, "watchapp") == 0)
1727                 return PMINFO_WATCH_APP;
1728         else
1729                 return -1;
1730 }
1731
1732 static const char *__appcomponent_str(pkgmgrinfo_app_component comp)
1733 {
1734         switch (comp) {
1735         case PMINFO_UI_APP:
1736                 return "uiapp";
1737         case PMINFO_SVC_APP:
1738                 return "svcapp";
1739         case PMINFO_WIDGET_APP:
1740                 return "widgetapp";
1741         case PMINFO_WATCH_APP:
1742                 return "watchapp";
1743         default:
1744                 return NULL;
1745         }
1746 }
1747
1748 API int pkgmgrinfo_appinfo_get_component(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_component *component)
1749 {
1750         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1751         int comp;
1752
1753         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1754         retvm_if(component == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1755
1756         if (info->app_info == NULL)
1757                 return PMINFO_R_ERROR;
1758
1759         comp = __appcomponent_convert(info->app_info->component);
1760         if (comp < 0)
1761                 return PMINFO_R_ERROR;
1762
1763         *component = comp;
1764
1765         return PMINFO_R_OK;
1766 }
1767
1768 API int pkgmgrinfo_appinfo_get_apptype(pkgmgrinfo_appinfo_h handle, char **app_type)
1769 {
1770         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1771
1772         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1773         retvm_if(app_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1774
1775         if (info->app_info == NULL || info->app_info->type == NULL)
1776                 return PMINFO_R_ERROR;
1777         *app_type = (char *)info->app_info->type;
1778
1779         return PMINFO_R_OK;
1780 }
1781
1782 API int pkgmgrinfo_appinfo_get_operation(pkgmgrinfo_appcontrol_h  handle,
1783                                         int *operation_count, char ***operation)
1784 {
1785         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1786         retvm_if(operation == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1787         retvm_if(operation_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1788         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1789         *operation_count = data->operation_count;
1790         *operation = data->operation;
1791         return PMINFO_R_OK;
1792 }
1793
1794 API int pkgmgrinfo_appinfo_get_uri(pkgmgrinfo_appcontrol_h  handle,
1795                                         int *uri_count, char ***uri)
1796 {
1797         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1798         retvm_if(uri == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1799         retvm_if(uri_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1800         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1801         *uri_count = data->uri_count;
1802         *uri = data->uri;
1803         return PMINFO_R_OK;
1804 }
1805
1806 API int pkgmgrinfo_appinfo_get_mime(pkgmgrinfo_appcontrol_h  handle,
1807                                         int *mime_count, char ***mime)
1808 {
1809         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1810         retvm_if(mime == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1811         retvm_if(mime_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1812         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1813         *mime_count = data->mime_count;
1814         *mime = data->mime;
1815         return PMINFO_R_OK;
1816 }
1817
1818 API int pkgmgrinfo_appinfo_get_subapp(pkgmgrinfo_appcontrol_h  handle,
1819                                         int *subapp_count, char ***subapp)
1820 {
1821         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1822         retvm_if(subapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1823         retvm_if(subapp_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1824         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1825         *subapp_count = data->subapp_count;
1826         *subapp = data->subapp;
1827         return PMINFO_R_OK;
1828 }
1829
1830 API int pkgmgrinfo_appinfo_get_notification_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1831 {
1832         char *val;
1833         icon_x *ptr;
1834         GList *tmp;
1835         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1836
1837         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1838         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1839
1840         if (info->app_info == NULL)
1841                 return PMINFO_R_ERROR;
1842
1843         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1844                 ptr = (icon_x *)tmp->data;
1845                 if (ptr == NULL || ptr->section == NULL)
1846                         continue;
1847
1848                 val = (char *)ptr->section;
1849                 if (val && strcmp(val, "notification") == 0) {
1850                         *icon = (char *)ptr->text;
1851                         return PMINFO_R_OK;
1852                 }
1853         }
1854
1855         return PMINFO_R_ERROR;
1856 }
1857
1858 API int pkgmgrinfo_appinfo_get_recent_image_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_recentimage *type)
1859 {
1860         char *val;
1861         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1862
1863         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1864         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1865
1866         if (info->app_info == NULL || info->app_info->recentimage == NULL)
1867                 return PMINFO_R_ERROR;
1868
1869         val = (char *)info->app_info->recentimage;
1870         if (strcasecmp(val, "capture") == 0)
1871                 *type = PMINFO_RECENTIMAGE_USE_CAPTURE;
1872         else if (strcasecmp(val, "icon") == 0)
1873                 *type = PMINFO_RECENTIMAGE_USE_ICON;
1874         else
1875                 *type = PMINFO_RECENTIMAGE_USE_NOTHING;
1876
1877         return PMINFO_R_OK;
1878 }
1879
1880 API int pkgmgrinfo_appinfo_get_preview_image(pkgmgrinfo_appinfo_h handle, char **preview_img)
1881 {
1882         char *val;
1883         image_x *ptr;
1884         GList *tmp;
1885         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1886
1887         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1888         retvm_if(preview_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1889
1890         if (info->app_info == NULL)
1891                 return PMINFO_R_ERROR;
1892
1893         for (tmp = info->app_info->image; tmp; tmp = tmp->next) {
1894                 ptr = (image_x *)tmp->data;
1895                 if (ptr == NULL || ptr->section == NULL)
1896                         continue;
1897
1898                 val = (char *)ptr->section;
1899                 if (val && strcmp(val, "preview") == 0) {
1900                         *preview_img = (char *)ptr->text;
1901                         return PMINFO_R_OK;
1902                 }
1903         }
1904
1905         return PMINFO_R_ERROR;
1906 }
1907
1908 API int pkgmgrinfo_appinfo_get_permission_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_permission_type *permission)
1909 {
1910         const char *val;
1911         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1912
1913         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1914         retvm_if(permission == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1915
1916         val = info->app_info->permission_type;
1917         if (val == NULL)
1918                 return PMINFO_R_ERROR;
1919
1920         if (strcmp(val, "signature") == 0)
1921                 *permission = PMINFO_PERMISSION_SIGNATURE;
1922         else if (strcmp(val, "privilege") == 0)
1923                 *permission = PMINFO_PERMISSION_PRIVILEGE;
1924         else
1925                 *permission = PMINFO_PERMISSION_NORMAL;
1926
1927         return PMINFO_R_OK;
1928 }
1929
1930 API int pkgmgrinfo_appinfo_get_component_type(pkgmgrinfo_appinfo_h handle, char **component_type)
1931 {
1932         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1933
1934         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1935         retvm_if(component_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1936
1937         if (info->app_info == NULL || info->app_info->component_type == NULL)
1938                 return PMINFO_R_ERROR;
1939
1940         *component_type = (char *)info->app_info->component_type;
1941
1942         return PMINFO_R_OK;
1943 }
1944
1945 API int pkgmgrinfo_appinfo_get_hwacceleration(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_hwacceleration *hwacceleration)
1946 {
1947         char *val;
1948         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1949
1950         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1951         retvm_if(hwacceleration == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1952
1953         if (info->app_info == NULL || info->app_info->hwacceleration == NULL)
1954                 return PMINFO_R_ERROR;
1955
1956         val = (char *)info->app_info->hwacceleration;
1957         if (strcasecmp(val, "off") == 0)
1958                 *hwacceleration = PMINFO_HWACCELERATION_OFF;
1959         else if (strcasecmp(val, "on") == 0)
1960                 *hwacceleration = PMINFO_HWACCELERATION_ON;
1961         else
1962                 *hwacceleration = PMINFO_HWACCELERATION_DEFAULT;
1963
1964         return PMINFO_R_OK;
1965 }
1966
1967 API int pkgmgrinfo_appinfo_get_screenreader(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_screenreader *screenreader)
1968 {
1969         char *val;
1970         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1971
1972         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1973         retvm_if(screenreader == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1974
1975         if (info->app_info == NULL || info->app_info->screenreader == NULL)
1976                 return PMINFO_R_ERROR;
1977
1978         val = (char *)info->app_info->screenreader;
1979         if (strcasecmp(val, "screenreader-off") == 0)
1980                 *screenreader = PMINFO_SCREENREADER_OFF;
1981         else if (strcasecmp(val, "screenreader-on") == 0)
1982                 *screenreader = PMINFO_SCREENREADER_ON;
1983         else
1984                 *screenreader = PMINFO_SCREENREADER_USE_SYSTEM_SETTING;
1985
1986         return PMINFO_R_OK;
1987 }
1988
1989 API int pkgmgrinfo_appinfo_get_effectimage(pkgmgrinfo_appinfo_h handle, char **portrait_img, char **landscape_img)
1990 {
1991         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1992
1993         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1994         retvm_if(portrait_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1995         retvm_if(landscape_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1996
1997         if (info->app_info == NULL)
1998                 return PMINFO_R_ERROR;
1999
2000         if (info->app_info->portraitimg == NULL)
2001                 *portrait_img = "";
2002         else
2003                 *portrait_img = (char *)info->app_info->portraitimg;
2004
2005         if (info->app_info->landscapeimg == NULL)
2006                 *landscape_img = "";
2007         else
2008                 *landscape_img = (char *)info->app_info->landscapeimg;
2009
2010         return PMINFO_R_OK;
2011 }
2012
2013 API int pkgmgrinfo_appinfo_get_effectimage_type(pkgmgrinfo_appinfo_h handle, char **effectimage_type)
2014 {
2015         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2016
2017         if (handle == NULL || effectimage_type == NULL) {
2018                 LOGE("invalid parameter");
2019                 return PMINFO_R_EINVAL;
2020         }
2021
2022         if (info->app_info == NULL || info->app_info->effectimage_type == NULL)
2023                 return PMINFO_R_ERROR;
2024
2025         *effectimage_type = (char *)info->app_info->effectimage_type;
2026
2027         return PMINFO_R_OK;
2028 }
2029
2030 API int pkgmgrinfo_appinfo_get_submode_mainid(pkgmgrinfo_appinfo_h  handle, char **submode_mainid)
2031 {
2032         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2033
2034         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2035         retvm_if(submode_mainid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2036
2037         if (info->app_info == NULL)
2038                 return PMINFO_R_ERROR;
2039
2040         if (info->app_info->submode_mainid == NULL)
2041                 *submode_mainid = "";
2042         else
2043                 *submode_mainid = (char *)info->app_info->submode_mainid;
2044
2045         return PMINFO_R_OK;
2046 }
2047
2048 API int pkgmgrinfo_appinfo_get_installed_storage_location(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_installed_storage *storage)
2049 {
2050         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2051         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2052
2053         if (info->app_info && info->app_info->installed_storage) {
2054                  if (strcmp(info->app_info->installed_storage, "installed_internal") == 0)
2055                         *storage = PMINFO_INTERNAL_STORAGE;
2056                  else if (strcmp(info->app_info->installed_storage, "installed_external") == 0)
2057                          *storage = PMINFO_EXTERNAL_STORAGE;
2058                  else
2059                          return PMINFO_R_ERROR;
2060         } else {
2061                 return PMINFO_R_ERROR;
2062         }
2063
2064         return PMINFO_R_OK;
2065 }
2066
2067 API int pkgmgrinfo_appinfo_get_launch_mode(pkgmgrinfo_appinfo_h handle, char **mode)
2068 {
2069         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2070
2071         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2072         retvm_if(mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2073
2074         if (info->app_info->launch_mode == NULL)
2075                 return PMINFO_R_ERROR;
2076
2077         *mode = (char *)(info->app_info->launch_mode);
2078
2079         return PMINFO_R_OK;
2080 }
2081
2082 API int pkgmgrinfo_appinfo_get_alias_appid(pkgmgrinfo_appinfo_h handle, char **alias_appid)
2083 {
2084         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2085
2086         if (handle == NULL || alias_appid == NULL) {
2087                 LOGE("invalid parameter");
2088                 return PMINFO_R_EINVAL;
2089         }
2090
2091         if (info->app_info == NULL || info->app_info->alias_appid == NULL)
2092                 return PMINFO_R_ERROR;
2093
2094         *alias_appid = (char *)info->app_info->alias_appid;
2095
2096         return PMINFO_R_OK;
2097 }
2098
2099 API int pkgmgrinfo_appinfo_get_effective_appid(pkgmgrinfo_appinfo_h handle, char **effective_appid)
2100 {
2101         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2102
2103         if (handle == NULL || effective_appid == NULL) {
2104                 LOGE("invalid parameter");
2105                 return PMINFO_R_EINVAL;
2106         }
2107
2108         if (info->app_info == NULL)
2109                 return PMINFO_R_ERROR;
2110
2111         if (info->app_info->effective_appid == NULL)
2112                 *effective_appid = "";
2113         else
2114                 *effective_appid = (char *)info->app_info->effective_appid;
2115
2116         return PMINFO_R_OK;
2117 }
2118
2119 API int pkgmgrinfo_appinfo_get_tep_name(pkgmgrinfo_appinfo_h handle, char **tep_name)
2120 {
2121         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2122
2123         if (handle == NULL || tep_name == NULL) {
2124                 LOGE("invalid parameter");
2125                 return PMINFO_R_EINVAL;
2126         }
2127
2128         if (info->app_info == NULL)
2129                 return PMINFO_R_ERROR;
2130
2131         if (info->app_info->tep_name == NULL)
2132                 *tep_name = "";
2133         else
2134                 *tep_name = (char *)info->app_info->tep_name;
2135
2136         return PMINFO_R_OK;
2137 }
2138
2139 API int pkgmgrinfo_appinfo_get_zip_mount_file(pkgmgrinfo_appinfo_h handle, char **zip_mount_file)
2140 {
2141         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2142
2143         if (handle == NULL || zip_mount_file == NULL) {
2144                 LOGE("invalid parameter");
2145                 return PMINFO_R_EINVAL;
2146         }
2147
2148         if (info->app_info == NULL)
2149                 return PMINFO_R_ERROR;
2150
2151         if (info->app_info->zip_mount_file == NULL)
2152                 *zip_mount_file = "";
2153         else
2154                 *zip_mount_file = (char *)info->app_info->zip_mount_file;
2155
2156         return PMINFO_R_OK;
2157 }
2158
2159 API int pkgmgrinfo_appinfo_get_root_path(pkgmgrinfo_appinfo_h handle, char **root_path)
2160 {
2161         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2162
2163         if (handle == NULL || root_path == NULL) {
2164                 LOGE("invalid parameter");
2165                 return PMINFO_R_EINVAL;
2166         }
2167
2168         if (info->app_info == NULL || info->app_info->root_path == NULL)
2169                 return PMINFO_R_ERROR;
2170
2171         *root_path = (char *)info->app_info->root_path;
2172
2173         return PMINFO_R_OK;
2174 }
2175
2176 API int pkgmgrinfo_appinfo_get_api_version(pkgmgrinfo_appinfo_h handle, char **api_version)
2177 {
2178         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2179
2180         if (handle == NULL || api_version == NULL) {
2181                 LOGE("invalid parameter");
2182                 return PMINFO_R_EINVAL;
2183         }
2184
2185         if (info->app_info == NULL || info->app_info->api_version == NULL)
2186                 return PMINFO_R_ERROR;
2187
2188         *api_version = (char *)info->app_info->api_version;
2189
2190         return PMINFO_R_OK;
2191 }
2192
2193 API int pkgmgrinfo_appinfo_get_installed_time(pkgmgrinfo_appinfo_h handle, int *installed_time)
2194 {
2195         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2196
2197         if (handle == NULL || installed_time == NULL) {
2198                 LOGE("invalid parameter");
2199                 return PMINFO_R_EINVAL;
2200         }
2201
2202         if (info->app_info == NULL || info->app_info->package_installed_time == NULL)
2203                 return PMINFO_R_ERROR;
2204
2205         *installed_time = atoi(info->app_info->package_installed_time);
2206
2207         return PMINFO_R_OK;
2208 }
2209
2210 static int _appinfo_get_datacontrol_info(sqlite3 *db, const char *providerid,
2211                 const char *type, char **appid, char **access)
2212 {
2213         static const char query[] =
2214                 "SELECT app_id, access FROM package_app_data_control "
2215                 "WHERE providerid=? AND type=?";
2216         int ret;
2217         sqlite3_stmt *stmt;
2218
2219         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
2220         if (ret != SQLITE_OK) {
2221                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
2222                 return PMINFO_R_ERROR;
2223         }
2224
2225         ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC);
2226         if (ret != SQLITE_OK) {
2227                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2228                 sqlite3_finalize(stmt);
2229                 return PMINFO_R_ERROR;
2230         }
2231
2232         ret = sqlite3_bind_text(stmt, 2, type, -1, SQLITE_STATIC);
2233         if (ret != SQLITE_OK) {
2234                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2235                 sqlite3_finalize(stmt);
2236                 return PMINFO_R_ERROR;
2237         }
2238
2239         ret = sqlite3_step(stmt);
2240         if (ret != SQLITE_ROW) {
2241                 sqlite3_finalize(stmt);
2242                 if (ret == SQLITE_DONE) {
2243                         return PMINFO_R_ENOENT;
2244                 } else {
2245                         LOGE("step error: %s", sqlite3_errmsg(db));
2246                         return PMINFO_R_ERROR;
2247                 }
2248         }
2249
2250         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2251         if (*appid == NULL) {
2252                 LOGE("out of memory");
2253                 sqlite3_finalize(stmt);
2254                 return PMINFO_R_ERROR;
2255         }
2256         *access = strdup((char *)sqlite3_column_text(stmt, 1));
2257         if (*access == NULL) {
2258                 LOGE("out of memory");
2259                 free(*appid);
2260                 sqlite3_finalize(stmt);
2261                 return PMINFO_R_ERROR;
2262         }
2263
2264         sqlite3_finalize(stmt);
2265
2266         return PMINFO_R_OK;
2267 }
2268
2269 static int _pkgmgrinfo_appinfo_get_datacontrol_info(uid_t uid,
2270                 const char *providerid, const char *type,
2271                 char **appid, char **access)
2272 {
2273         int ret;
2274         char *dbpath;
2275         sqlite3 *db;
2276
2277         dbpath = getUserPkgParserDBPathUID(GLOBAL_USER);
2278         if (dbpath == NULL)
2279                 return PMINFO_R_ERROR;
2280
2281         ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY);
2282         free(dbpath);
2283         if (ret != SQLITE_OK) {
2284                 LOGE("open db failed: %s", sqlite3_errmsg(db));
2285                 return PMINFO_R_ERROR;
2286         }
2287
2288         ret = _appinfo_get_datacontrol_info(db, providerid, type, appid,
2289                         access);
2290         sqlite3_close_v2(db);
2291
2292         return ret;
2293 }
2294
2295 API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid,
2296                 const char *type, uid_t uid, char **appid, char **access)
2297 {
2298         int ret;
2299
2300         if (providerid == NULL || type == NULL || appid == NULL ||
2301                         access == NULL) {
2302                 LOGE("invalid parameter");
2303                 return PMINFO_R_EINVAL;
2304         }
2305
2306         ret = _pkgmgrinfo_appinfo_get_datacontrol_info(GLOBAL_USER, providerid,
2307                         type, appid, access);
2308         if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER)
2309                 ret = _pkgmgrinfo_appinfo_get_datacontrol_info(uid, providerid,
2310                                 type, appid, access);
2311
2312         /* FIXME: It should return PMINFO_R_ENOENT but to keep previous
2313          * implementation, return PMINFO_R_ERROR. This should be
2314          * modified later...
2315          */
2316         if (ret == PMINFO_R_ENOENT) {
2317                 LOGE("no datacontrol info of %s", providerid);
2318                 ret = PMINFO_R_ERROR;
2319         }
2320
2321         return ret;
2322 }
2323
2324 API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid,
2325                 const char *type, char **appid, char **access)
2326 {
2327         return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid,
2328                         type, _getuid(), appid, access);
2329 }
2330
2331 static int _appinfo_get_datacontrol_appid(sqlite3 *db, const char *providerid,
2332                 char **appid)
2333 {
2334         static const char query[] =
2335                 "SELECT app_id FROM package_app_data_control "
2336                 "WHERE providerid=?";
2337         int ret;
2338         sqlite3_stmt *stmt;
2339
2340         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
2341         if (ret != SQLITE_OK) {
2342                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
2343                 return PMINFO_R_ERROR;
2344         }
2345
2346         ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC);
2347         if (ret != SQLITE_OK) {
2348                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2349                 sqlite3_finalize(stmt);
2350                 return PMINFO_R_ERROR;
2351         }
2352
2353         ret = sqlite3_step(stmt);
2354         if (ret != SQLITE_ROW) {
2355                 sqlite3_finalize(stmt);
2356                 if (ret == SQLITE_DONE) {
2357                         return PMINFO_R_ENOENT;
2358                 } else {
2359                         LOGE("step error: %s", sqlite3_errmsg(db));
2360                         return PMINFO_R_ERROR;
2361                 }
2362         }
2363
2364         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2365
2366         sqlite3_finalize(stmt);
2367
2368         if (*appid == NULL) {
2369                 LOGE("out of memory");
2370                 return PMINFO_R_ERROR;
2371         }
2372
2373         return PMINFO_R_OK;
2374 }
2375
2376 static int _pkgmgrinfo_appinfo_get_datacontrol_appid(uid_t uid,
2377                 const char *providerid, char **appid)
2378 {
2379         int ret;
2380         char *dbpath;
2381         sqlite3 *db;
2382
2383         dbpath = getUserPkgParserDBPathUID(GLOBAL_USER);
2384         if (dbpath == NULL)
2385                 return PMINFO_R_ERROR;
2386
2387         ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY);
2388         free(dbpath);
2389         if (ret != SQLITE_OK) {
2390                 LOGE("open db failed: %s", sqlite3_errmsg(db));
2391                 return PMINFO_R_ERROR;
2392         }
2393
2394         ret = _appinfo_get_datacontrol_appid(db, providerid, appid);
2395         sqlite3_close_v2(db);
2396
2397         return ret;
2398 }
2399
2400 API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid,
2401                 uid_t uid, char **appid)
2402 {
2403         int ret;
2404
2405         if (providerid == NULL || appid == NULL) {
2406                 LOGE("invalid parameter");
2407                 return PMINFO_R_EINVAL;
2408         }
2409
2410         ret = _pkgmgrinfo_appinfo_get_datacontrol_appid(GLOBAL_USER, providerid,
2411                         appid);
2412         if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER)
2413                 ret = _pkgmgrinfo_appinfo_get_datacontrol_appid(uid, providerid,
2414                                 appid);
2415
2416         /* FIXME: It should return PMINFO_R_ENOENT but to keep previous
2417          * implementation, return PMINFO_R_ERROR. This should be
2418          * modified later...
2419          */
2420         if (ret == PMINFO_R_ENOENT) {
2421                 LOGE("no datacontrol appid of %s", providerid);
2422                 ret = PMINFO_R_ERROR;
2423         }
2424
2425         return ret;
2426 }
2427
2428 API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid)
2429 {
2430         return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, _getuid(), appid);
2431 }
2432
2433 static int _appinfo_get_datacontrol_trusted_info(sqlite3 *db,
2434                 const char *providerid, const char *type, char **appid,
2435                 bool *is_trusted)
2436 {
2437         static const char query[] =
2438                 "SELECT app_id, trusted FROM package_app_data_control "
2439                 "WHERE providerid=? AND type=?";
2440         int ret;
2441         sqlite3_stmt *stmt;
2442
2443         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
2444         if (ret != SQLITE_OK) {
2445                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
2446                 return PMINFO_R_ERROR;
2447         }
2448
2449         ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC);
2450         if (ret != SQLITE_OK) {
2451                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2452                 sqlite3_finalize(stmt);
2453                 return PMINFO_R_ERROR;
2454         }
2455
2456         ret = sqlite3_bind_text(stmt, 2, type, -1, SQLITE_STATIC);
2457         if (ret != SQLITE_OK) {
2458                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2459                 sqlite3_finalize(stmt);
2460                 return PMINFO_R_ERROR;
2461         }
2462
2463         ret = sqlite3_step(stmt);
2464         if (ret != SQLITE_ROW) {
2465                 sqlite3_finalize(stmt);
2466                 if (ret == SQLITE_DONE) {
2467                         return PMINFO_R_ENOENT;
2468                 } else {
2469                         LOGE("step error: %s", sqlite3_errmsg(db));
2470                         return PMINFO_R_ERROR;
2471                 }
2472         }
2473
2474         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2475         *is_trusted = _get_bool_value((char *)sqlite3_column_text(stmt, 1));
2476
2477         sqlite3_finalize(stmt);
2478
2479         if (*appid == NULL) {
2480                 LOGE("out of memory");
2481                 return PMINFO_R_ERROR;
2482         }
2483
2484         return PMINFO_R_OK;
2485 }
2486
2487 static int _pkgmgrinfo_appinfo_get_datacontrol_trusted_info(uid_t uid,
2488                 const char *providerid, const char *type, char **appid,
2489                 bool *is_trusted)
2490 {
2491         int ret;
2492         char *dbpath;
2493         sqlite3 *db;
2494
2495         dbpath = getUserPkgParserDBPathUID(GLOBAL_USER);
2496         if (dbpath == NULL)
2497                 return PMINFO_R_ERROR;
2498
2499         ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY);
2500         free(dbpath);
2501         if (ret != SQLITE_OK) {
2502                 LOGE("open db failed: %s", sqlite3_errmsg(db));
2503                 return PMINFO_R_ERROR;
2504         }
2505
2506         ret = _appinfo_get_datacontrol_trusted_info(db, providerid, type, appid,
2507                         is_trusted);
2508         sqlite3_close_v2(db);
2509
2510         return ret;
2511 }
2512
2513 API int pkgmgrinfo_appinfo_usr_get_datacontrol_trusted_info(
2514                 const char *providerid, const char *type, uid_t uid,
2515                 char **appid, bool *is_trusted)
2516 {
2517         int ret;
2518
2519         if (providerid == NULL || type == NULL || appid == NULL ||
2520                         is_trusted == NULL) {
2521                 LOGE("invalid parameter");
2522                 return PMINFO_R_EINVAL;
2523         }
2524
2525         ret = _pkgmgrinfo_appinfo_get_datacontrol_trusted_info(GLOBAL_USER,
2526                         providerid, type, appid, is_trusted);
2527         if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER)
2528                 ret = _pkgmgrinfo_appinfo_get_datacontrol_trusted_info(uid,
2529                                 providerid, type, appid, is_trusted);
2530
2531         /* FIXME: It should return PMINFO_R_ENOENT but to keep previous
2532          * implementation, return PMINFO_R_ERROR. This should be
2533          * modified later...
2534          */
2535         if (ret == PMINFO_R_ENOENT) {
2536                 LOGE("no datacontrol trusted info of %s", providerid);
2537                 ret = PMINFO_R_ERROR;
2538         }
2539
2540         return ret;
2541 }
2542
2543 API int pkgmgrinfo_appinfo_get_datacontrol_trsuted_info(const char *providerid,
2544                 const char *type, char **appid, bool *is_trusted)
2545 {
2546         return pkgmgrinfo_appinfo_usr_get_datacontrol_trusted_info(providerid,
2547                         type, _getuid(), appid, is_trusted);
2548 }
2549
2550 static int _appinfo_foreach_datacontrol_privileges(sqlite3 *db,
2551                 const char *providerid, const char *type,
2552                 pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data)
2553 {
2554         static const char query[] =
2555                 "SELECT privilege FROM package_app_data_control_privilege "
2556                 "WHERE providerid=? AND type=?";
2557         int ret;
2558         sqlite3_stmt *stmt;
2559         int count = 0;
2560
2561         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
2562         if (ret != SQLITE_OK) {
2563                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
2564                 return PMINFO_R_ERROR;
2565         }
2566
2567         ret = sqlite3_bind_text(stmt, 1, providerid, -1, SQLITE_STATIC);
2568         if (ret != SQLITE_OK) {
2569                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2570                 sqlite3_finalize(stmt);
2571                 return PMINFO_R_ERROR;
2572         }
2573
2574         ret = sqlite3_bind_text(stmt, 2, type, -1, SQLITE_STATIC);
2575         if (ret != SQLITE_OK) {
2576                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2577                 sqlite3_finalize(stmt);
2578                 return PMINFO_R_ERROR;
2579         }
2580
2581         while (sqlite3_step(stmt) == SQLITE_ROW) {
2582                 count++;
2583                 ret = callback((const char *)sqlite3_column_text(stmt, 0),
2584                                 user_data);
2585                 if (ret < 0)
2586                         break;
2587         }
2588
2589         sqlite3_finalize(stmt);
2590
2591         return count ? PMINFO_R_OK : PMINFO_R_ENOENT;
2592 }
2593
2594 static int _pkgmgrinfo_appinfo_foreach_datacontrol_privileges(uid_t uid,
2595                 const char *providerid, const char *type,
2596                 pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data)
2597 {
2598         int ret;
2599         char *dbpath;
2600         sqlite3 *db;
2601
2602         dbpath = getUserPkgParserDBPathUID(GLOBAL_USER);
2603         if (dbpath == NULL)
2604                 return PMINFO_R_ERROR;
2605
2606         ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY);
2607         free(dbpath);
2608         if (ret != SQLITE_OK) {
2609                 LOGE("open db failed: %s", sqlite3_errmsg(db));
2610                 return PMINFO_R_ERROR;
2611         }
2612
2613         ret = _appinfo_foreach_datacontrol_privileges(db, providerid, type,
2614                         callback, user_data);
2615         sqlite3_close_v2(db);
2616
2617         return ret;
2618 }
2619
2620 API int pkgmgrinfo_appinfo_usr_foreach_datacontrol_privileges(
2621                 const char *providerid, const char *type,
2622                 pkgmgrinfo_pkg_privilege_list_cb privilege_func,
2623                 void *user_data, uid_t uid)
2624 {
2625         int ret;
2626
2627         if (providerid == NULL || type == NULL || privilege_func == NULL) {
2628                 LOGE("invalid parameter");
2629                 return PMINFO_R_EINVAL;
2630         }
2631
2632         ret = _pkgmgrinfo_appinfo_foreach_datacontrol_privileges(GLOBAL_USER,
2633                         providerid, type, privilege_func, user_data);
2634         if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER)
2635                 ret = _pkgmgrinfo_appinfo_foreach_datacontrol_privileges(uid,
2636                                 providerid, type, privilege_func, user_data);
2637
2638         if (ret == PMINFO_R_ENOENT)
2639                 ret = PMINFO_R_OK;
2640
2641         return ret;
2642 }
2643
2644 API int pkgmgrinfo_appinfo_foreach_datacontrol_privileges(
2645                 const char *providerid, const char *type,
2646                 pkgmgrinfo_pkg_privilege_list_cb privilege_func,
2647                 void *user_data)
2648 {
2649         return pkgmgrinfo_appinfo_usr_foreach_datacontrol_privileges(
2650                         providerid, type, privilege_func, user_data, _getuid());
2651 }
2652
2653 API int pkgmgrinfo_appinfo_get_support_mode(pkgmgrinfo_appinfo_h  handle, int *support_mode)
2654 {
2655         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2656         retvm_if(support_mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2657
2658         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2659         if (info->app_info->support_mode)
2660                 *support_mode = atoi(info->app_info->support_mode);
2661         else
2662                 *support_mode = 0;
2663
2664         return PMINFO_R_OK;
2665 }
2666
2667 API int pkgmgrinfo_appinfo_foreach_category(pkgmgrinfo_appinfo_h handle,
2668                         pkgmgrinfo_app_category_list_cb category_func, void *user_data)
2669 {
2670         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2671         retvm_if(category_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2672         int ret = -1;
2673         const char *category;
2674         GList *tmp;
2675         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2676
2677         if (info->app_info == NULL)
2678                 return PMINFO_R_ERROR;
2679
2680         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2681                 category = (const char *)tmp->data;
2682                 if (category) {
2683                         ret = category_func(category, user_data);
2684                         if (ret < 0)
2685                                 break;
2686                 }
2687         }
2688         return PMINFO_R_OK;
2689 }
2690
2691 API int pkgmgrinfo_appinfo_foreach_metadata(pkgmgrinfo_appinfo_h handle,
2692                         pkgmgrinfo_app_metadata_list_cb metadata_func, void *user_data)
2693 {
2694         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2695         retvm_if(metadata_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2696         int ret = -1;
2697         metadata_x *ptr;
2698         GList *tmp;
2699         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2700
2701         if (info->app_info == NULL)
2702                 return PMINFO_R_ERROR;
2703
2704         for (tmp = info->app_info->metadata; tmp; tmp = tmp->next) {
2705                 ptr = (metadata_x *)tmp->data;
2706                 if (ptr == NULL)
2707                         continue;
2708                 if (ptr->key) {
2709                         ret = metadata_func(ptr->key, ptr->value ? ptr->value : "", user_data);
2710                         if (ret < 0)
2711                                 break;
2712                 }
2713         }
2714         return PMINFO_R_OK;
2715 }
2716
2717 static int _appinfo_foreach_appcontrol_privileges(sqlite3 *db,
2718                 const char *appid, const char *operation,
2719                 pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data)
2720 {
2721         static const char query[] =
2722                 "SELECT app_control, privilege FROM package_app_app_control_privilege "
2723                 "WHERE app_id=?";
2724         int ret;
2725         sqlite3_stmt *stmt;
2726         const char *app_control;
2727         char *dup_app_control;
2728         char *token;
2729         char *saveptr = NULL;
2730         const char *privilege;
2731         int count = 0;
2732
2733         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
2734         if (ret != SQLITE_OK) {
2735                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
2736                 return PMINFO_R_ERROR;
2737         }
2738
2739         ret = sqlite3_bind_text(stmt, 1, appid, -1, SQLITE_STATIC);
2740         if (ret != SQLITE_OK) {
2741                 LOGE("bind failed: %s", sqlite3_errmsg(db));
2742                 sqlite3_finalize(stmt);
2743                 return PMINFO_R_ERROR;
2744         }
2745
2746         while (sqlite3_step(stmt) == SQLITE_ROW) {
2747                 app_control = (const char *)sqlite3_column_text(stmt, 0);
2748                 if (!app_control)
2749                         continue;
2750
2751                 dup_app_control = strdup(app_control);
2752                 if (!dup_app_control)
2753                         continue;
2754
2755                 token = strtok_r(dup_app_control, "|", &saveptr);
2756                 if (token && !strcmp(token, operation)) {
2757                         count++;
2758                         privilege = (const char *)sqlite3_column_text(stmt, 1);
2759                         ret = callback(privilege, user_data);
2760                         if (ret < 0) {
2761                                 free(dup_app_control);
2762                                 break;
2763                         }
2764                 }
2765                 free(dup_app_control);
2766         }
2767
2768         sqlite3_finalize(stmt);
2769
2770         return count ? PMINFO_R_OK : PMINFO_R_ENOENT;
2771 }
2772
2773 static int _pkgmgrinfo_appinfo_foreach_appcontrol_privileges(uid_t uid,
2774                 const char *appid, const char *operation,
2775                 pkgmgrinfo_pkg_privilege_list_cb callback, void *user_data)
2776 {
2777         int ret;
2778         char *dbpath;
2779         sqlite3 *db;
2780
2781         dbpath = getUserPkgParserDBPathUID(uid);
2782         if (dbpath == NULL)
2783                 return PMINFO_R_ERROR;
2784
2785         ret = __open_db(dbpath, &db, SQLITE_OPEN_READONLY);
2786         free(dbpath);
2787         if (ret != SQLITE_OK) {
2788                 LOGE("open db failed: %s", sqlite3_errmsg(db));
2789                 return PMINFO_R_ERROR;
2790         }
2791
2792         ret = _appinfo_foreach_appcontrol_privileges(db, appid, operation,
2793                         callback, user_data);
2794         sqlite3_close_v2(db);
2795
2796         return ret;
2797 }
2798
2799 API int pkgmgrinfo_appinfo_usr_foreach_appcontrol_privileges(const char *appid,
2800                 const char *operation,
2801                 pkgmgrinfo_pkg_privilege_list_cb privilege_func,
2802                 void *user_data, uid_t uid)
2803 {
2804         int ret;
2805
2806         if (appid == NULL || operation == NULL || privilege_func == NULL) {
2807                 LOGE("invalid parameter");
2808                 return PMINFO_R_EINVAL;
2809         }
2810
2811         ret = _pkgmgrinfo_appinfo_foreach_appcontrol_privileges(GLOBAL_USER,
2812                         appid, operation, privilege_func, user_data);
2813         if (ret == PMINFO_R_ENOENT && uid != GLOBAL_USER)
2814                 ret = _pkgmgrinfo_appinfo_foreach_appcontrol_privileges(uid,
2815                                 appid, operation, privilege_func, user_data);
2816
2817         if (ret == PMINFO_R_ENOENT)
2818                 ret = PMINFO_R_OK;
2819
2820         return ret;
2821 }
2822
2823 API int pkgmgrinfo_appinfo_foreach_appcontrol_privileges(const char *appid,
2824                 const char *operation,
2825                 pkgmgrinfo_pkg_privilege_list_cb privilege_func,
2826                 void *user_data)
2827 {
2828         return pkgmgrinfo_appinfo_usr_foreach_appcontrol_privileges(appid,
2829                         operation, privilege_func, user_data, _getuid());
2830 }
2831
2832 API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle,
2833                         pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data)
2834 {
2835         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2836         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2837         int ret;
2838         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2839         appcontrol_x *appcontrol;
2840         GList *tmp;
2841
2842         if (info->app_info == NULL)
2843                 return PMINFO_R_ERROR;
2844
2845         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
2846                 appcontrol = (appcontrol_x *)tmp->data;
2847                 if (appcontrol == NULL || !strcasecmp(appcontrol->visibility, "remote-only"))
2848                         continue;
2849                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data);
2850                 if (ret < 0)
2851                         break;
2852         }
2853
2854         return PMINFO_R_OK;
2855 }
2856
2857 API int pkgmgrinfo_appinfo_foreach_remote_appcontrol(pkgmgrinfo_appinfo_h handle,
2858                         pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data)
2859 {
2860         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2861         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2862         int ret;
2863         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2864         appcontrol_x *appcontrol;
2865         GList *tmp;
2866
2867         if (info->app_info == NULL)
2868                 return PMINFO_R_ERROR;
2869
2870         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
2871                 appcontrol = (appcontrol_x *)tmp->data;
2872                 if (appcontrol == NULL || !strcasecmp(appcontrol->visibility, "local-only"))
2873                         continue;
2874                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data);
2875                 if (ret < 0)
2876                         break;
2877         }
2878
2879         return PMINFO_R_OK;
2880 }
2881
2882 API int pkgmgrinfo_appinfo_foreach_background_category(
2883                 pkgmgrinfo_appinfo_h handle,
2884                 pkgmgrinfo_app_background_category_list_cb category_func,
2885                 void *user_data)
2886 {
2887         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2888         GList *tmp;
2889         char *category;
2890
2891         if (handle == NULL || category_func == NULL || info->app_info == NULL) {
2892                 LOGE("invalid parameter");
2893                 return PMINFO_R_EINVAL;
2894         }
2895
2896         for (tmp = info->app_info->background_category; tmp; tmp = tmp->next) {
2897                 category = (char *)tmp->data;
2898                 if (category == NULL)
2899                         continue;
2900
2901                 if (category_func(category, user_data) < 0)
2902                         break;
2903         }
2904
2905         return PMINFO_R_OK;
2906 }
2907
2908 API int pkgmgrinfo_appinfo_foreach_splash_screen(pkgmgrinfo_appinfo_h handle,
2909                 pkgmgrinfo_app_splash_screen_list_cb splash_screen_func,
2910                 void *user_data)
2911 {
2912         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2913         splashscreen_x *splashscreen;
2914         GList *tmp;
2915         int ret;
2916
2917         if (info == NULL || info->app_info == NULL
2918                         || splash_screen_func == NULL) {
2919                 LOGE("invalid parameter");
2920                 return PMINFO_R_EINVAL;
2921         }
2922
2923         for (tmp = info->app_info->splashscreens; tmp; tmp = tmp->next) {
2924                 splashscreen = (splashscreen_x *)tmp->data;
2925                 if (splashscreen == NULL)
2926                         continue;
2927                 ret = splash_screen_func(splashscreen->src,
2928                                 splashscreen->type,
2929                                 splashscreen->orientation,
2930                                 splashscreen->indicatordisplay,
2931                                 splashscreen->operation,
2932                                 splashscreen->color_depth,
2933                                 user_data);
2934                 if (ret < 0)
2935                         break;
2936         }
2937
2938         return PMINFO_R_OK;
2939 }
2940
2941 API int pkgmgrinfo_appinfo_is_nodisplay(pkgmgrinfo_appinfo_h handle, bool *nodisplay)
2942 {
2943         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2944         retvm_if(nodisplay == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2945         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2946
2947         if (info->app_info == NULL || info->app_info->nodisplay == NULL)
2948                 return PMINFO_R_ERROR;
2949
2950         *nodisplay = _get_bool_value(info->app_info->nodisplay);
2951
2952         return PMINFO_R_OK;
2953 }
2954
2955 API int pkgmgrinfo_appinfo_is_multiple(pkgmgrinfo_appinfo_h handle, bool *multiple)
2956 {
2957         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2958         retvm_if(multiple == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2959         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2960
2961         if (info->app_info == NULL || info->app_info->multiple == NULL)
2962                 return PMINFO_R_ERROR;
2963
2964         *multiple = _get_bool_value(info->app_info->multiple);
2965
2966         return PMINFO_R_OK;
2967 }
2968
2969 API int pkgmgrinfo_appinfo_is_indicator_display_allowed(pkgmgrinfo_appinfo_h handle, bool *indicator_disp)
2970 {
2971         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2972         retvm_if(indicator_disp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2973         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2974
2975         if (info->app_info == NULL || info->app_info->indicatordisplay == NULL)
2976                 return PMINFO_R_ERROR;
2977
2978         *indicator_disp = _get_bool_value(info->app_info->indicatordisplay);
2979
2980         return PMINFO_R_OK;
2981 }
2982
2983 API int pkgmgrinfo_appinfo_is_taskmanage(pkgmgrinfo_appinfo_h  handle, bool *taskmanage)
2984 {
2985         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2986         retvm_if(taskmanage == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2987         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2988
2989         if (info->app_info == NULL || info->app_info->taskmanage == NULL)
2990                 return PMINFO_R_ERROR;
2991
2992         *taskmanage = _get_bool_value(info->app_info->taskmanage);
2993
2994         return PMINFO_R_OK;
2995 }
2996
2997 API int pkgmgrinfo_appinfo_is_enabled(pkgmgrinfo_appinfo_h  handle, bool *enabled)
2998 {
2999         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3000         retvm_if(enabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
3001         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3002
3003         if (info->app_info == NULL || info->app_info->is_disabled == NULL)
3004                 return PMINFO_R_ERROR;
3005
3006         *enabled = !_get_bool_value(info->app_info->is_disabled);
3007
3008         return PMINFO_R_OK;
3009 }
3010
3011 API int pkgmgrinfo_appinfo_is_onboot(pkgmgrinfo_appinfo_h  handle, bool *onboot)
3012 {
3013         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3014         retvm_if(onboot == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
3015         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3016
3017         if (info->app_info == NULL || info->app_info->onboot == NULL)
3018                 return PMINFO_R_ERROR;
3019
3020         *onboot = _get_bool_value(info->app_info->onboot);
3021
3022         return PMINFO_R_OK;
3023 }
3024
3025 API int pkgmgrinfo_appinfo_is_autorestart(pkgmgrinfo_appinfo_h  handle, bool *autorestart)
3026 {
3027         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3028         retvm_if(autorestart == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
3029         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3030
3031         if (info->app_info == NULL || info->app_info->autorestart == NULL)
3032                 return PMINFO_R_ERROR;
3033
3034         *autorestart = _get_bool_value(info->app_info->autorestart);
3035
3036         return PMINFO_R_OK;
3037 }
3038
3039 API int pkgmgrinfo_appinfo_is_mainapp(pkgmgrinfo_appinfo_h  handle, bool *mainapp)
3040 {
3041         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3042         retvm_if(mainapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
3043         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3044
3045         if (info->app_info == NULL || info->app_info->mainapp == NULL)
3046                 return PMINFO_R_ERROR;
3047
3048         *mainapp = _get_bool_value(info->app_info->mainapp);
3049
3050         return PMINFO_R_OK;
3051 }
3052
3053 API int pkgmgrinfo_appinfo_is_preload(pkgmgrinfo_appinfo_h handle, bool *preload)
3054 {
3055         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
3056         retvm_if(preload == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3057         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3058
3059         if (info->app_info == NULL || info->app_info->preload == NULL)
3060                 return PMINFO_R_ERROR;
3061
3062         *preload = _get_bool_value(info->app_info->preload);
3063
3064         return PMINFO_R_OK;
3065 }
3066
3067 API int pkgmgrinfo_appinfo_is_submode(pkgmgrinfo_appinfo_h handle, bool *submode)
3068 {
3069         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
3070         retvm_if(submode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3071         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3072
3073         if (info->app_info == NULL || info->app_info->submode == NULL)
3074                 return PMINFO_R_ERROR;
3075
3076         *submode = _get_bool_value(info->app_info->submode);
3077
3078         return PMINFO_R_OK;
3079 }
3080
3081 API int pkgmgrinfo_appinfo_is_process_pool(pkgmgrinfo_appinfo_h handle, bool *process_pool)
3082 {
3083         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3084
3085         if (handle == NULL || process_pool == NULL) {
3086                 LOGE("invalid parameter");
3087                 return PMINFO_R_EINVAL;
3088         }
3089
3090         if (info->app_info == NULL)
3091                 return PMINFO_R_ERROR;
3092
3093         *process_pool = _get_bool_value(info->app_info->process_pool);
3094
3095         return PMINFO_R_OK;
3096 }
3097
3098 API int pkgmgrinfo_appinfo_is_category_exist(pkgmgrinfo_appinfo_h handle, const char *category, bool *exist)
3099 {
3100         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3101         retvm_if(category == NULL, PMINFO_R_EINVAL, "category is NULL");
3102         retvm_if(exist == NULL, PMINFO_R_EINVAL, "exist is NULL");
3103
3104         const char *val;
3105         GList *tmp;
3106         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3107
3108         if (info->app_info == NULL)
3109                 return PMINFO_R_ERROR;
3110
3111         *exist = 0;
3112         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
3113                 val = (const char *)tmp->data;
3114                 if (val == NULL)
3115                         continue;
3116                 if (strcasecmp(val, category) == 0) {
3117                         *exist = 1;
3118                         break;
3119                 }
3120         }
3121
3122         return PMINFO_R_OK;
3123 }
3124
3125 API int pkgmgrinfo_appinfo_is_ui_gadget(pkgmgrinfo_appinfo_h handle,
3126                 bool *ui_gadget)
3127 {
3128         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3129
3130         if (info == NULL || info->app_info == NULL || ui_gadget == NULL) {
3131                 _LOGE("invalid parameter");
3132                 return PMINFO_R_EINVAL;
3133         }
3134         if (info->app_info->ui_gadget == NULL)
3135                 info->app_info->ui_gadget = strdup("false");
3136
3137         *ui_gadget = _get_bool_value(info->app_info->ui_gadget);
3138
3139         return PMINFO_R_OK;
3140 }
3141
3142 API int pkgmgrinfo_appinfo_is_support_disable(pkgmgrinfo_appinfo_h handle,
3143                 bool *support_disable)
3144 {
3145         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3146
3147         if (info == NULL || info->app_info == NULL || support_disable == NULL) {
3148                 _LOGE("invalid parameter");
3149                 return PMINFO_R_EINVAL;
3150         }
3151
3152         *support_disable = _get_bool_value(info->app_info->support_disable);
3153
3154         return PMINFO_R_OK;
3155 }
3156
3157 API int pkgmgrinfo_appinfo_is_removable(pkgmgrinfo_appinfo_h handle,
3158                 bool *removable)
3159 {
3160         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3161
3162         if (info == NULL || info->app_info == NULL || removable == NULL) {
3163                 _LOGE("invalid parameter");
3164                 return PMINFO_R_EINVAL;
3165         }
3166
3167         *removable = _get_bool_value(info->app_info->removable);
3168
3169         return PMINFO_R_OK;
3170 }
3171
3172 API int pkgmgrinfo_appinfo_is_system(pkgmgrinfo_appinfo_h handle, bool *system)
3173 {
3174         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3175
3176         if (info == NULL || info->app_info == NULL || system == NULL) {
3177                 _LOGE("invalid parameter");
3178                 return PMINFO_R_EINVAL;
3179         }
3180
3181         *system = _get_bool_value(info->app_info->package_system);
3182
3183         return PMINFO_R_OK;
3184 }
3185
3186 API int pkgmgrinfo_appinfo_is_disabled(pkgmgrinfo_appinfo_h handle, bool *disabled)
3187 {
3188         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3189         retvm_if(disabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
3190         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3191
3192         if (info->app_info == NULL || info->app_info->is_disabled == NULL)
3193                 return PMINFO_R_ERROR;
3194
3195         *disabled = _get_bool_value(info->app_info->is_disabled);
3196
3197         return PMINFO_R_OK;
3198 }
3199
3200 API int pkgmgrinfo_appinfo_is_global(pkgmgrinfo_appinfo_h handle, bool *global)
3201 {
3202         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3203
3204         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
3205         retvm_if(global == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3206
3207         if (info->app_info == NULL || info->app_info->for_all_users == NULL)
3208                 return PMINFO_R_ERROR;
3209
3210         *global = _get_bool_value(info->app_info->for_all_users);
3211
3212         return PMINFO_R_OK;
3213 }
3214
3215 API int pkgmgrinfo_appinfo_get_splash_screen_display(pkgmgrinfo_appinfo_h handle, bool *splash_screen_display)
3216 {
3217         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3218
3219         if (info == NULL || splash_screen_display == NULL) {
3220                 _LOGE("Invalid parameter");
3221                 return PMINFO_R_EINVAL;
3222         }
3223
3224         if (info->app_info == NULL || info->app_info->splash_screen_display == NULL)
3225                 return PMINFO_R_ERROR;
3226
3227         *splash_screen_display = _get_bool_value(info->app_info->splash_screen_display);
3228
3229         return PMINFO_R_OK;
3230 }
3231
3232 API int pkgmgrinfo_appinfo_get_setup_appid(pkgmgrinfo_appinfo_h handle, char **setup_appid)
3233 {
3234         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3235
3236         if (info == NULL || setup_appid == NULL) {
3237                 _LOGE("Invalid parameter");
3238                 return PMINFO_R_EINVAL;
3239         }
3240
3241         if (info->app_info == NULL || info->app_info->setup_appid == NULL)
3242                 return PMINFO_R_ERROR;
3243
3244         *setup_appid = info->app_info->setup_appid;
3245         return PMINFO_R_OK;
3246 }
3247
3248 API int pkgmgrinfo_appinfo_is_support_ambient(pkgmgrinfo_appinfo_h handle,
3249                 bool *support_ambient)
3250 {
3251         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3252
3253         if (info == NULL || support_ambient == NULL) {
3254                 _LOGE("Invalid parameter");
3255                 return PMINFO_R_EINVAL;
3256         }
3257
3258         if (info->app_info == NULL || info->app_info->support_ambient == NULL)
3259                 return PMINFO_R_ERROR;
3260
3261         *support_ambient = _get_bool_value(info->app_info->support_ambient);
3262
3263         return PMINFO_R_OK;
3264 }
3265
3266 API int pkgmgrinfo_appinfo_destroy_appinfo(pkgmgrinfo_appinfo_h handle)
3267 {
3268         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3269         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3270         __cleanup_appinfo(info);
3271         return PMINFO_R_OK;
3272 }
3273
3274 API int pkgmgrinfo_appinfo_filter_create(pkgmgrinfo_appinfo_filter_h *handle)
3275 {
3276         return (pkgmgrinfo_pkginfo_filter_create(handle));
3277 }
3278
3279 API int pkgmgrinfo_appinfo_filter_destroy(pkgmgrinfo_appinfo_filter_h handle)
3280 {
3281         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
3282 }
3283
3284 static gint __compare_func(gconstpointer data1, gconstpointer data2)
3285 {
3286         pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x *)data1;
3287         pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x *)data2;
3288         if (node1->prop == node2->prop)
3289                 return 0;
3290         else if (node1->prop > node2->prop)
3291                 return 1;
3292         else
3293                 return -1;
3294 }
3295
3296 API int pkgmgrinfo_appinfo_filter_add_int(pkgmgrinfo_appinfo_filter_h handle,
3297                                 const char *property, const int value)
3298 {
3299         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3300         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3301         char buf[PKG_VALUE_STRING_LEN_MAX] = {'\0'};
3302         char *val = NULL;
3303         GSList *link = NULL;
3304         int prop = -1;
3305         prop = _pminfo_appinfo_convert_to_prop_int(property);
3306         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_INT ||
3307                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_INT) {
3308                 _LOGE("Invalid Integer Property\n");
3309                 return PMINFO_R_EINVAL;
3310         }
3311         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
3312         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x));
3313         if (node == NULL) {
3314                 _LOGE("Out of Memory!!!\n");
3315                 return PMINFO_R_ERROR;
3316         }
3317         snprintf(buf, PKG_VALUE_STRING_LEN_MAX - 1, "%d", value);
3318         val = strndup(buf, PKG_VALUE_STRING_LEN_MAX - 1);
3319         if (val == NULL) {
3320                 _LOGE("Out of Memory\n");
3321                 free(node);
3322                 node = NULL;
3323                 return PMINFO_R_ERROR;
3324         }
3325         node->prop = prop;
3326         node->value = val;
3327         /*If API is called multiple times for same property, we should override the previous values.
3328         Last value set will be used for filtering.*/
3329         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3330         if (link)
3331                 filter->list = g_slist_delete_link(filter->list, link);
3332         filter->list = g_slist_append(filter->list, (gpointer)node);
3333         return PMINFO_R_OK;
3334
3335 }
3336
3337 API int pkgmgrinfo_appinfo_filter_add_bool(pkgmgrinfo_appinfo_filter_h handle,
3338                                 const char *property, const bool value)
3339 {
3340         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3341         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3342         char *val = NULL;
3343         GSList *link = NULL;
3344         int prop = -1;
3345         prop = _pminfo_appinfo_convert_to_prop_bool(property);
3346         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_BOOL ||
3347                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_BOOL) {
3348                 _LOGE("Invalid Boolean Property\n");
3349                 return PMINFO_R_EINVAL;
3350         }
3351         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
3352         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x));
3353         if (node == NULL) {
3354                 _LOGE("Out of Memory!!!\n");
3355                 return PMINFO_R_ERROR;
3356         }
3357         if (value)
3358                 val = strndup("true", 4);
3359         else
3360                 val = strndup("false", 5);
3361         if (val == NULL) {
3362                 _LOGE("Out of Memory\n");
3363                 free(node);
3364                 node = NULL;
3365                 return PMINFO_R_ERROR;
3366         }
3367         node->prop = prop;
3368         node->value = val;
3369         /*If API is called multiple times for same property, we should override the previous values.
3370         Last value set will be used for filtering.*/
3371         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3372         if (link)
3373                 filter->list = g_slist_delete_link(filter->list, link);
3374         filter->list = g_slist_append(filter->list, (gpointer)node);
3375         return PMINFO_R_OK;
3376
3377 }
3378
3379 API int pkgmgrinfo_appinfo_filter_add_string(pkgmgrinfo_appinfo_filter_h handle,
3380                                 const char *property, const char *value)
3381 {
3382         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3383         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3384         retvm_if(value == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
3385         char *val = NULL;
3386         pkgmgrinfo_node_x *ptr = NULL;
3387         char prev[PKG_STRING_LEN_MAX] = {'\0'};
3388         char temp[PKG_STRING_LEN_MAX] = {'\0'};
3389         GSList *link = NULL;
3390         int prop = -1;
3391         prop = _pminfo_appinfo_convert_to_prop_str(property);
3392         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_STR ||
3393                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_STR) {
3394                 _LOGE("Invalid String Property\n");
3395                 return PMINFO_R_EINVAL;
3396         }
3397         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
3398         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x));
3399         if (node == NULL) {
3400                 _LOGE("Out of Memory!!!\n");
3401                 return PMINFO_R_ERROR;
3402         }
3403         node->prop = prop;
3404         switch (prop) {
3405         case E_PMINFO_APPINFO_PROP_APP_COMPONENT:
3406                 node->value = strdup(value);
3407                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3408                 if (link)
3409                         filter->list = g_slist_delete_link(filter->list, link);
3410                 filter->list = g_slist_append(filter->list, (gpointer)node);
3411                 break;
3412         case E_PMINFO_APPINFO_PROP_APP_CATEGORY:
3413                 val = (char *)calloc(1, PKG_STRING_LEN_MAX);
3414                 if (val == NULL) {
3415                         _LOGE("Out of Memory\n");
3416                         free(node);
3417                         node = NULL;
3418                         return PMINFO_R_ERROR;
3419                 }
3420                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3421                 if (link) {
3422                         ptr = (pkgmgrinfo_node_x *)link->data;
3423                         strncpy(prev, ptr->value, PKG_STRING_LEN_MAX - 1);
3424                         _LOGI("Previous value is %s\n", prev);
3425                         filter->list = g_slist_delete_link(filter->list, link);
3426                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s,%s", prev, value);
3427                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
3428                         _LOGI("New value is %s\n", val);
3429                         node->value = val;
3430                         filter->list = g_slist_append(filter->list, (gpointer)node);
3431                         memset(temp, '\0', PKG_STRING_LEN_MAX);
3432                 } else {
3433                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s", value);
3434                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
3435                         _LOGI("First value is %s\n", val);
3436                         node->value = val;
3437                         filter->list = g_slist_append(filter->list, (gpointer)node);
3438                         memset(temp, '\0', PKG_STRING_LEN_MAX);
3439                 }
3440                 break;
3441         default:
3442                 node->value = strndup(value, PKG_STRING_LEN_MAX - 1);
3443                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3444                 if (link)
3445                         filter->list = g_slist_delete_link(filter->list, link);
3446                 filter->list = g_slist_append(filter->list, (gpointer)node);
3447                 break;
3448         }
3449         return PMINFO_R_OK;
3450 }
3451
3452 API int pkgmgrinfo_appinfo_usr_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count, uid_t uid)
3453 {
3454         int ret;
3455         char *locale;
3456         GHashTable *list;
3457
3458         if (handle == NULL || count == NULL) {
3459                 _LOGE("invalid parameter");
3460                 return PMINFO_R_EINVAL;
3461         }
3462
3463         locale = _get_system_locale();
3464         if (locale == NULL)
3465                 return PMINFO_R_ERROR;
3466
3467         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
3468                         __free_applications);
3469         if (list == NULL) {
3470                 free(locale);
3471                 return PMINFO_R_ERROR;
3472         }
3473
3474         if (__check_disable_filter_exist(
3475                         handle, E_APPINFO_DISABLE_TYPE_APP) == false) {
3476                 if (pkgmgrinfo_appinfo_filter_add_bool(handle,
3477                                 PMINFO_APPINFO_PROP_APP_DISABLE, false)) {
3478                         g_hash_table_destroy(list);
3479                         free(locale);
3480                         return PMINFO_R_ERROR;
3481                 }
3482         }
3483
3484         if (__check_disable_filter_exist(
3485                         handle, E_APPINFO_DISABLE_TYPE_PKG) == false) {
3486                 if (pkgmgrinfo_appinfo_filter_add_bool(handle,
3487                                 PMINFO_APPINFO_PROP_PKG_DISABLE, false)) {
3488                         g_hash_table_destroy(list);
3489                         free(locale);
3490                         return PMINFO_R_ERROR;
3491                 }
3492         }
3493
3494         ret = _appinfo_get_applications(uid, uid, locale, handle, 0, list);
3495         if (ret == PMINFO_R_OK && uid != GLOBAL_USER)
3496                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
3497                                 handle, 0, list);
3498
3499         if (ret != PMINFO_R_OK) {
3500                 g_hash_table_destroy(list);
3501                 free(locale);
3502                 return PMINFO_R_ERROR;
3503         }
3504
3505         *count = g_hash_table_size(list);
3506         g_hash_table_destroy(list);
3507         free(locale);
3508
3509         return PMINFO_R_OK;
3510 }
3511
3512 API int pkgmgrinfo_appinfo_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count)
3513 {
3514         return pkgmgrinfo_appinfo_usr_filter_count(handle, count, _getuid());
3515 }
3516
3517 API int pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(
3518                 pkgmgrinfo_appinfo_filter_h handle,
3519                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
3520 {
3521         if (handle == NULL || app_cb == NULL) {
3522                 LOGE("invalid parameter");
3523                 return PMINFO_R_EINVAL;
3524         }
3525
3526         if (__check_disable_filter_exist(
3527                         handle, E_APPINFO_DISABLE_TYPE_APP) == false) {
3528                 if (pkgmgrinfo_appinfo_filter_add_bool(handle,
3529                                 PMINFO_APPINFO_PROP_APP_DISABLE, false))
3530                         return PMINFO_R_ERROR;
3531         }
3532
3533         if (__check_disable_filter_exist(
3534                         handle, E_APPINFO_DISABLE_TYPE_PKG) == false) {
3535                 if (pkgmgrinfo_appinfo_filter_add_bool(handle,
3536                                 PMINFO_APPINFO_PROP_PKG_DISABLE, false))
3537                         return PMINFO_R_ERROR;
3538         }
3539
3540         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
3541                         user_data);
3542 }
3543
3544 API int pkgmgrinfo_appinfo_filter_foreach_appinfo(pkgmgrinfo_appinfo_filter_h handle,
3545                                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
3546 {
3547         return pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(handle, app_cb, user_data, _getuid());
3548 }
3549
3550 API int pkgmgrinfo_appinfo_metadata_filter_create(pkgmgrinfo_appinfo_metadata_filter_h *handle)
3551 {
3552         return (pkgmgrinfo_pkginfo_filter_create(handle));
3553 }
3554
3555 API int pkgmgrinfo_appinfo_metadata_filter_destroy(pkgmgrinfo_appinfo_metadata_filter_h handle)
3556 {
3557         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
3558 }
3559
3560 API int pkgmgrinfo_appinfo_metadata_filter_add(
3561                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3562                 const char *key, const char *value)
3563 {
3564         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
3565         pkgmgrinfo_metadata_node_x *node;
3566
3567         /* value can be NULL.
3568          * In that case all apps with specified key should be displayed
3569          */
3570         if (key == NULL) {
3571                 LOGE("invalid parameter");
3572                 return PMINFO_R_EINVAL;
3573         }
3574
3575         node = calloc(1, sizeof(pkgmgrinfo_metadata_node_x));
3576         if (node == NULL) {
3577                 LOGE("out of memory");
3578                 return PMINFO_R_ERROR;
3579         }
3580
3581         node->key = strdup(key);
3582         if (value && strlen(value))
3583                 node->value = strdup(value);
3584
3585         filter->list_metadata = g_slist_append(filter->list_metadata,
3586                         (gpointer)node);
3587
3588         return PMINFO_R_OK;
3589 }
3590
3591 API int pkgmgrinfo_appinfo_usr_metadata_filter_foreach(
3592                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3593                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
3594 {
3595         if (handle == NULL || app_cb == NULL) {
3596                 LOGE("invalid parameter");
3597                 return PMINFO_R_EINVAL;
3598         }
3599
3600         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
3601         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
3602                         PMINFO_APPINFO_PROP_APP_DISABLE, false))
3603                 return PMINFO_R_ERROR;
3604
3605         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
3606                         PMINFO_APPINFO_PROP_PKG_DISABLE, false))
3607                 return PMINFO_R_ERROR;
3608
3609         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
3610                         user_data);
3611 }
3612
3613 API int pkgmgrinfo_appinfo_metadata_filter_foreach(
3614                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3615                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
3616 {
3617         return pkgmgrinfo_appinfo_usr_metadata_filter_foreach(handle, app_cb,
3618                         user_data, _getuid());
3619 }
3620
3621 API int pkgmgrinfo_appinfo_is_guestmode_visibility(pkgmgrinfo_appinfo_h handle, bool *status)
3622 {
3623         const char *val;
3624         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3625
3626         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
3627         retvm_if(status == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3628
3629         val = info->app_info->guestmode_visibility;
3630         *status = _get_bool_value(val);
3631         return PMINFO_R_OK;
3632 }
3633
3634 API int pkgmgrinfo_appinfo_foreach_appcontrol_v2(pkgmgrinfo_appinfo_h handle,
3635                 pkgmgrinfo_app_control_list_cb_v2 appcontrol_func,
3636                 void *user_data)
3637 {
3638         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3639         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
3640         int ret;
3641         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3642         appcontrol_x *appcontrol;
3643         GList *tmp;
3644
3645         if (info->app_info == NULL)
3646                 return PMINFO_R_ERROR;
3647
3648         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
3649                 appcontrol = (appcontrol_x *)tmp->data;
3650                 if (appcontrol == NULL ||
3651                                 !strcasecmp(appcontrol->visibility, "remote-only"))
3652                         continue;
3653                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri,
3654                                 appcontrol->mime, appcontrol->id, user_data);
3655                 if (ret < 0)
3656                         break;
3657         }
3658
3659         return PMINFO_R_OK;
3660 }
3661
3662 API int pkgmgrinfo_appinfo_foreach_remote_appcontrol_v2(
3663                 pkgmgrinfo_appinfo_h handle,
3664                 pkgmgrinfo_app_control_list_cb_v2 appcontrol_func,
3665                 void *user_data)
3666 {
3667         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
3668         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
3669         int ret;
3670         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3671         appcontrol_x *appcontrol;
3672         GList *tmp;
3673
3674         if (info->app_info == NULL)
3675                 return PMINFO_R_ERROR;
3676
3677         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
3678                 appcontrol = (appcontrol_x *)tmp->data;
3679                 if (appcontrol == NULL ||
3680                                 !strcasecmp(appcontrol->visibility, "local-only"))
3681                         continue;
3682                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri,
3683                                 appcontrol->mime, appcontrol->id, user_data);
3684                 if (ret < 0)
3685                         break;
3686         }
3687
3688         return PMINFO_R_OK;
3689 }