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