e07bf52665c722bc2a284c2b3158363f23e6b8d4
[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
1543         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1544         retvm_if(label == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1545
1546         if (info->app_info == NULL || info->app_info->label == NULL)
1547                 return PMINFO_R_ERROR;
1548
1549         ptr = (label_x *)info->app_info->label->data;
1550         if (ptr == NULL)
1551                 return PMINFO_R_ERROR;
1552
1553         if (ptr->text == NULL)
1554                 return PMINFO_R_ERROR;
1555         else
1556                 *label = ptr->text;
1557
1558         return PMINFO_R_OK;
1559 }
1560
1561 static char *_get_localed_label(const char *appid, const char *locale, uid_t uid)
1562 {
1563         char *result = NULL;
1564         char *query = NULL;
1565         sqlite3_stmt *stmt = NULL;
1566         sqlite3 *db = NULL;
1567         char *val;
1568         char *parser_db;
1569
1570         parser_db = getUserPkgParserDBPathUID(uid);
1571         if (parser_db == NULL) {
1572                 _LOGE("Failed to get parser db path");
1573                 goto err;
1574         }
1575
1576         if (__open_db(parser_db, &db, SQLITE_OPEN_READONLY) != SQLITE_OK) {
1577                 _LOGE("DB open fail\n");
1578                 free(parser_db);
1579                 goto err;
1580         }
1581         free(parser_db);
1582
1583         query = sqlite3_mprintf("select app_label from package_app_localized_info where app_id=%Q and app_locale=%Q", appid, locale);
1584         if (query == NULL) {
1585                 _LOGE("Out of memory");
1586                 goto err;
1587         }
1588
1589         if (sqlite3_prepare_v2(db, query, -1, &stmt, NULL) != SQLITE_OK) {
1590                 _LOGE("prepare_v2 fail\n");
1591                 goto err;
1592         }
1593
1594         if (sqlite3_step(stmt) == SQLITE_ROW) {
1595                 val = (char *)sqlite3_column_text(stmt, 0);
1596                 if (val != NULL)
1597                         result = strdup(val);
1598         }
1599
1600 err:
1601         sqlite3_finalize(stmt);
1602         sqlite3_free(query);
1603         sqlite3_close(db);
1604
1605         return result;
1606 }
1607
1608 API int pkgmgrinfo_appinfo_usr_get_localed_label(const char *appid, const char *locale, uid_t uid, char **label)
1609 {
1610         char *val;
1611
1612         retvm_if(appid == NULL || locale == NULL || label == NULL, PMINFO_R_EINVAL, "Argument is NULL");
1613
1614         val = _get_localed_label(appid, locale, uid);
1615         if (val == NULL)
1616                 val = _get_localed_label(appid, DEFAULT_LOCALE, uid);
1617
1618         if (val == NULL) {
1619                 val = _get_localed_label(appid, locale, GLOBAL_USER);
1620                 if (val == NULL)
1621                         val = _get_localed_label(appid, DEFAULT_LOCALE, GLOBAL_USER);
1622         }
1623
1624         if (val == NULL)
1625                 return PMINFO_R_ERROR;
1626
1627         *label = val;
1628
1629         return PMINFO_R_OK;
1630 }
1631
1632 API int pkgmgrinfo_appinfo_get_localed_label(const char *appid, const char *locale, char **label)
1633 {
1634         return pkgmgrinfo_appinfo_usr_get_localed_label(appid, locale, _getuid(), label);
1635 }
1636
1637 API int pkgmgrinfo_appinfo_get_metadata_value(pkgmgrinfo_appinfo_h handle, const char *metadata_key, char **metadata_value)
1638 {
1639         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1640         retvm_if(metadata_key == NULL, PMINFO_R_EINVAL, "metadata_key is NULL");
1641         retvm_if(metadata_value == NULL, PMINFO_R_EINVAL, "metadata_value is NULL");
1642
1643         GList *list_md = NULL;
1644         metadata_x *metadata = NULL;
1645         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1646
1647         list_md = info->app_info->metadata;
1648
1649         for (; list_md; list_md = list_md->next) {
1650                 metadata = (metadata_x *)list_md->data;
1651                 if (metadata && metadata->key) {
1652                         if (strcasecmp(metadata->key, metadata_key) == 0) {
1653                                 if (metadata->value == NULL)
1654                                         *metadata_value = "";
1655                                 else
1656                                         *metadata_value = (char *)metadata->value;
1657                                 return PMINFO_R_OK;
1658                         }
1659                 }
1660         }
1661
1662         return PMINFO_R_EINVAL;
1663 }
1664
1665 static pkgmgrinfo_app_component __appcomponent_convert(const char *comp)
1666 {
1667         if (strcasecmp(comp, "uiapp") == 0)
1668                 return PMINFO_UI_APP;
1669         else if (strcasecmp(comp, "svcapp") == 0)
1670                 return PMINFO_SVC_APP;
1671         else if (strcasecmp(comp, "widgetapp") == 0)
1672                 return PMINFO_WIDGET_APP;
1673         else if (strcasecmp(comp, "watchapp") == 0)
1674                 return PMINFO_WATCH_APP;
1675         else
1676                 return -1;
1677 }
1678
1679 static const char *__appcomponent_str(pkgmgrinfo_app_component comp)
1680 {
1681         switch (comp) {
1682         case PMINFO_UI_APP:
1683                 return "uiapp";
1684         case PMINFO_SVC_APP:
1685                 return "svcapp";
1686         case PMINFO_WIDGET_APP:
1687                 return "widgetapp";
1688         case PMINFO_WATCH_APP:
1689                 return "watchapp";
1690         default:
1691                 return NULL;
1692         }
1693 }
1694
1695 API int pkgmgrinfo_appinfo_get_component(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_component *component)
1696 {
1697         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1698         int comp;
1699
1700         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1701         retvm_if(component == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1702
1703         if (info->app_info == NULL)
1704                 return PMINFO_R_ERROR;
1705
1706         comp = __appcomponent_convert(info->app_info->component);
1707         if (comp < 0)
1708                 return PMINFO_R_ERROR;
1709
1710         *component = comp;
1711
1712         return PMINFO_R_OK;
1713 }
1714
1715 API int pkgmgrinfo_appinfo_get_apptype(pkgmgrinfo_appinfo_h handle, char **app_type)
1716 {
1717         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1718
1719         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1720         retvm_if(app_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1721
1722         if (info->app_info == NULL || info->app_info->type == NULL)
1723                 return PMINFO_R_ERROR;
1724         *app_type = (char *)info->app_info->type;
1725
1726         return PMINFO_R_OK;
1727 }
1728
1729 API int pkgmgrinfo_appinfo_get_operation(pkgmgrinfo_appcontrol_h  handle,
1730                                         int *operation_count, char ***operation)
1731 {
1732         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1733         retvm_if(operation == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1734         retvm_if(operation_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1735         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1736         *operation_count = data->operation_count;
1737         *operation = data->operation;
1738         return PMINFO_R_OK;
1739 }
1740
1741 API int pkgmgrinfo_appinfo_get_uri(pkgmgrinfo_appcontrol_h  handle,
1742                                         int *uri_count, char ***uri)
1743 {
1744         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1745         retvm_if(uri == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1746         retvm_if(uri_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1747         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1748         *uri_count = data->uri_count;
1749         *uri = data->uri;
1750         return PMINFO_R_OK;
1751 }
1752
1753 API int pkgmgrinfo_appinfo_get_mime(pkgmgrinfo_appcontrol_h  handle,
1754                                         int *mime_count, char ***mime)
1755 {
1756         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1757         retvm_if(mime == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1758         retvm_if(mime_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1759         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1760         *mime_count = data->mime_count;
1761         *mime = data->mime;
1762         return PMINFO_R_OK;
1763 }
1764
1765 API int pkgmgrinfo_appinfo_get_subapp(pkgmgrinfo_appcontrol_h  handle,
1766                                         int *subapp_count, char ***subapp)
1767 {
1768         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1769         retvm_if(subapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1770         retvm_if(subapp_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1771         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1772         *subapp_count = data->subapp_count;
1773         *subapp = data->subapp;
1774         return PMINFO_R_OK;
1775 }
1776
1777 API int pkgmgrinfo_appinfo_get_setting_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1778 {
1779         char *val;
1780         icon_x *ptr;
1781         GList *tmp;
1782         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1783
1784         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1785         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1786
1787         if (info->app_info == NULL)
1788                 return PMINFO_R_ERROR;
1789
1790         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1791                 ptr = (icon_x *)tmp->data;
1792                 if (ptr == NULL || ptr->section == NULL)
1793                         continue;
1794
1795                 val = (char *)ptr->section;
1796                 if (val && strcmp(val, "setting") == 0) {
1797                         *icon = (char *)ptr->text;
1798                         return PMINFO_R_OK;
1799                 }
1800         }
1801
1802         return PMINFO_R_ERROR;
1803 }
1804
1805
1806 API int pkgmgrinfo_appinfo_get_notification_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1807 {
1808         char *val;
1809         icon_x *ptr;
1810         GList *tmp;
1811         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1812
1813         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1814         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1815
1816         if (info->app_info == NULL)
1817                 return PMINFO_R_ERROR;
1818
1819         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1820                 ptr = (icon_x *)tmp->data;
1821                 if (ptr == NULL || ptr->section == NULL)
1822                         continue;
1823
1824                 val = (char *)ptr->section;
1825                 if (val && strcmp(val, "notification") == 0) {
1826                         *icon = (char *)ptr->text;
1827                         return PMINFO_R_OK;
1828                 }
1829         }
1830
1831         return PMINFO_R_ERROR;
1832 }
1833
1834 API int pkgmgrinfo_appinfo_get_recent_image_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_recentimage *type)
1835 {
1836         char *val;
1837         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1838
1839         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1840         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1841
1842         if (info->app_info == NULL || info->app_info->recentimage == NULL)
1843                 return PMINFO_R_ERROR;
1844
1845         val = (char *)info->app_info->recentimage;
1846         if (strcasecmp(val, "capture") == 0)
1847                 *type = PMINFO_RECENTIMAGE_USE_CAPTURE;
1848         else if (strcasecmp(val, "icon") == 0)
1849                 *type = PMINFO_RECENTIMAGE_USE_ICON;
1850         else
1851                 *type = PMINFO_RECENTIMAGE_USE_NOTHING;
1852
1853         return PMINFO_R_OK;
1854 }
1855
1856 API int pkgmgrinfo_appinfo_get_preview_image(pkgmgrinfo_appinfo_h handle, char **preview_img)
1857 {
1858         char *val;
1859         image_x *ptr;
1860         GList *tmp;
1861         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1862
1863         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1864         retvm_if(preview_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1865
1866         if (info->app_info == NULL)
1867                 return PMINFO_R_ERROR;
1868
1869         for (tmp = info->app_info->image; tmp; tmp = tmp->next) {
1870                 ptr = (image_x *)tmp->data;
1871                 if (ptr == NULL || ptr->section == NULL)
1872                         continue;
1873
1874                 val = (char *)ptr->section;
1875                 if (val && strcmp(val, "preview") == 0) {
1876                         *preview_img = (char *)ptr->text;
1877                         return PMINFO_R_OK;
1878                 }
1879         }
1880
1881         return PMINFO_R_ERROR;
1882 }
1883
1884 API int pkgmgrinfo_appinfo_get_permission_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_permission_type *permission)
1885 {
1886         const char *val;
1887         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1888
1889         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1890         retvm_if(permission == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1891
1892         val = info->app_info->permission_type;
1893         if (val == NULL)
1894                 return PMINFO_R_ERROR;
1895
1896         if (strcmp(val, "signature") == 0)
1897                 *permission = PMINFO_PERMISSION_SIGNATURE;
1898         else if (strcmp(val, "privilege") == 0)
1899                 *permission = PMINFO_PERMISSION_PRIVILEGE;
1900         else
1901                 *permission = PMINFO_PERMISSION_NORMAL;
1902
1903         return PMINFO_R_OK;
1904 }
1905
1906 API int pkgmgrinfo_appinfo_get_component_type(pkgmgrinfo_appinfo_h handle, char **component_type)
1907 {
1908         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1909
1910         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1911         retvm_if(component_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1912
1913         if (info->app_info == NULL || info->app_info->component_type == NULL)
1914                 return PMINFO_R_ERROR;
1915
1916         *component_type = (char *)info->app_info->component_type;
1917
1918         return PMINFO_R_OK;
1919 }
1920
1921 API int pkgmgrinfo_appinfo_get_hwacceleration(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_hwacceleration *hwacceleration)
1922 {
1923         char *val;
1924         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1925
1926         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1927         retvm_if(hwacceleration == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1928
1929         if (info->app_info == NULL || info->app_info->hwacceleration == NULL)
1930                 return PMINFO_R_ERROR;
1931
1932         val = (char *)info->app_info->hwacceleration;
1933         if (strcasecmp(val, "off") == 0)
1934                 *hwacceleration = PMINFO_HWACCELERATION_OFF;
1935         else if (strcasecmp(val, "on") == 0)
1936                 *hwacceleration = PMINFO_HWACCELERATION_ON;
1937         else
1938                 *hwacceleration = PMINFO_HWACCELERATION_DEFAULT;
1939
1940         return PMINFO_R_OK;
1941 }
1942
1943 API int pkgmgrinfo_appinfo_get_screenreader(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_screenreader *screenreader)
1944 {
1945         char *val;
1946         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1947
1948         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1949         retvm_if(screenreader == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1950
1951         if (info->app_info == NULL || info->app_info->screenreader == NULL)
1952                 return PMINFO_R_ERROR;
1953
1954         val = (char *)info->app_info->screenreader;
1955         if (strcasecmp(val, "screenreader-off") == 0)
1956                 *screenreader = PMINFO_SCREENREADER_OFF;
1957         else if (strcasecmp(val, "screenreader-on") == 0)
1958                 *screenreader = PMINFO_SCREENREADER_ON;
1959         else
1960                 *screenreader = PMINFO_SCREENREADER_USE_SYSTEM_SETTING;
1961
1962         return PMINFO_R_OK;
1963 }
1964
1965 API int pkgmgrinfo_appinfo_get_effectimage(pkgmgrinfo_appinfo_h handle, char **portrait_img, char **landscape_img)
1966 {
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(portrait_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1971         retvm_if(landscape_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1972
1973         if (info->app_info == NULL)
1974                 return PMINFO_R_ERROR;
1975
1976         if (info->app_info->portraitimg == NULL)
1977                 *portrait_img = "";
1978         else
1979                 *portrait_img = (char *)info->app_info->portraitimg;
1980
1981         if (info->app_info->landscapeimg == NULL)
1982                 *landscape_img = "";
1983         else
1984                 *landscape_img = (char *)info->app_info->landscapeimg;
1985
1986         return PMINFO_R_OK;
1987 }
1988
1989 API int pkgmgrinfo_appinfo_get_effectimage_type(pkgmgrinfo_appinfo_h handle, char **effectimage_type)
1990 {
1991         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1992
1993         if (handle == NULL || effectimage_type == NULL) {
1994                 LOGE("invalid parameter");
1995                 return PMINFO_R_EINVAL;
1996         }
1997
1998         if (info->app_info == NULL || info->app_info->effectimage_type == NULL)
1999                 return PMINFO_R_ERROR;
2000
2001         *effectimage_type = (char *)info->app_info->effectimage_type;
2002
2003         return PMINFO_R_OK;
2004 }
2005
2006 API int pkgmgrinfo_appinfo_get_submode_mainid(pkgmgrinfo_appinfo_h  handle, char **submode_mainid)
2007 {
2008         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2009
2010         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2011         retvm_if(submode_mainid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2012
2013         if (info->app_info == NULL)
2014                 return PMINFO_R_ERROR;
2015
2016         if (info->app_info->submode_mainid == NULL)
2017                 *submode_mainid = "";
2018         else
2019                 *submode_mainid = (char *)info->app_info->submode_mainid;
2020
2021         return PMINFO_R_OK;
2022 }
2023
2024 API int pkgmgrinfo_appinfo_get_installed_storage_location(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_installed_storage *storage)
2025 {
2026         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2027         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2028
2029         if (info->app_info && info->app_info->installed_storage) {
2030                  if (strcmp(info->app_info->installed_storage, "installed_internal") == 0)
2031                         *storage = PMINFO_INTERNAL_STORAGE;
2032                  else if (strcmp(info->app_info->installed_storage, "installed_external") == 0)
2033                          *storage = PMINFO_EXTERNAL_STORAGE;
2034                  else
2035                          return PMINFO_R_ERROR;
2036         } else {
2037                 return PMINFO_R_ERROR;
2038         }
2039
2040         return PMINFO_R_OK;
2041 }
2042
2043 API int pkgmgrinfo_appinfo_get_launch_mode(pkgmgrinfo_appinfo_h handle, char **mode)
2044 {
2045         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2046
2047         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2048         retvm_if(mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2049
2050         if (info->app_info->launch_mode == NULL)
2051                 return PMINFO_R_ERROR;
2052
2053         *mode = (char *)(info->app_info->launch_mode);
2054
2055         return PMINFO_R_OK;
2056 }
2057
2058 API int pkgmgrinfo_appinfo_get_alias_appid(pkgmgrinfo_appinfo_h handle, char **alias_appid)
2059 {
2060         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2061
2062         if (handle == NULL || alias_appid == NULL) {
2063                 LOGE("invalid parameter");
2064                 return PMINFO_R_EINVAL;
2065         }
2066
2067         if (info->app_info == NULL || info->app_info->alias_appid == NULL)
2068                 return PMINFO_R_ERROR;
2069
2070         *alias_appid = (char *)info->app_info->alias_appid;
2071
2072         return PMINFO_R_OK;
2073 }
2074
2075 API int pkgmgrinfo_appinfo_get_effective_appid(pkgmgrinfo_appinfo_h handle, char **effective_appid)
2076 {
2077         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2078
2079         if (handle == NULL || effective_appid == NULL) {
2080                 LOGE("invalid parameter");
2081                 return PMINFO_R_EINVAL;
2082         }
2083
2084         if (info->app_info == NULL)
2085                 return PMINFO_R_ERROR;
2086
2087         if (info->app_info->effective_appid == NULL)
2088                 *effective_appid = "";
2089         else
2090                 *effective_appid = (char *)info->app_info->effective_appid;
2091
2092         return PMINFO_R_OK;
2093 }
2094
2095 API int pkgmgrinfo_appinfo_get_tep_name(pkgmgrinfo_appinfo_h handle, char **tep_name)
2096 {
2097         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2098
2099         if (handle == NULL || tep_name == NULL) {
2100                 LOGE("invalid parameter");
2101                 return PMINFO_R_EINVAL;
2102         }
2103
2104         if (info->app_info == NULL)
2105                 return PMINFO_R_ERROR;
2106
2107         if (info->app_info->tep_name == NULL)
2108                 *tep_name = "";
2109         else
2110                 *tep_name = (char *)info->app_info->tep_name;
2111
2112         return PMINFO_R_OK;
2113 }
2114
2115 API int pkgmgrinfo_appinfo_get_zip_mount_file(pkgmgrinfo_appinfo_h handle, char **zip_mount_file)
2116 {
2117         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2118
2119         if (handle == NULL || zip_mount_file == NULL) {
2120                 LOGE("invalid parameter");
2121                 return PMINFO_R_EINVAL;
2122         }
2123
2124         if (info->app_info == NULL)
2125                 return PMINFO_R_ERROR;
2126
2127         if (info->app_info->zip_mount_file == NULL)
2128                 *zip_mount_file = "";
2129         else
2130                 *zip_mount_file = (char *)info->app_info->zip_mount_file;
2131
2132         return PMINFO_R_OK;
2133 }
2134
2135 API int pkgmgrinfo_appinfo_get_root_path(pkgmgrinfo_appinfo_h handle, char **root_path)
2136 {
2137         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2138
2139         if (handle == NULL || root_path == NULL) {
2140                 LOGE("invalid parameter");
2141                 return PMINFO_R_EINVAL;
2142         }
2143
2144         if (info->app_info == NULL || info->app_info->root_path == NULL)
2145                 return PMINFO_R_ERROR;
2146
2147         *root_path = (char *)info->app_info->root_path;
2148
2149         return PMINFO_R_OK;
2150 }
2151
2152 API int pkgmgrinfo_appinfo_get_api_version(pkgmgrinfo_appinfo_h handle, char **api_version)
2153 {
2154         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2155
2156         if (handle == NULL || api_version == NULL) {
2157                 LOGE("invalid parameter");
2158                 return PMINFO_R_EINVAL;
2159         }
2160
2161         if (info->app_info == NULL || info->app_info->api_version == NULL)
2162                 return PMINFO_R_ERROR;
2163
2164         *api_version = (char *)info->app_info->api_version;
2165
2166         return PMINFO_R_OK;
2167 }
2168
2169 API int pkgmgrinfo_appinfo_get_installed_time(pkgmgrinfo_appinfo_h handle, int *installed_time)
2170 {
2171         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2172
2173         if (handle == NULL || installed_time == NULL) {
2174                 LOGE("invalid parameter");
2175                 return PMINFO_R_EINVAL;
2176         }
2177
2178         if (info->app_info == NULL || info->app_info->package_installed_time == NULL)
2179                 return PMINFO_R_ERROR;
2180
2181         *installed_time = atoi(info->app_info->package_installed_time);
2182
2183         return PMINFO_R_OK;
2184 }
2185
2186 API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid,
2187                 const char *type, uid_t uid, char **appid, char **access)
2188 {
2189         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2190         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2191         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2192         retvm_if(access == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2193
2194         int ret = PMINFO_R_OK;
2195         char *query = NULL;
2196         sqlite3_stmt *stmt = NULL;
2197
2198         /*open db*/
2199         ret = __open_manifest_db(uid, true);
2200         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2201
2202         /*Start constructing query*/
2203         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q and type=%Q", providerid, type);
2204         tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory");
2205
2206         /*prepare query*/
2207         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2208         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2209
2210         /*step query*/
2211         ret = sqlite3_step(stmt);
2212         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2213
2214         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2215         *access = strdup((char *)sqlite3_column_text(stmt, 2));
2216
2217         ret = PMINFO_R_OK;
2218
2219 catch:
2220         sqlite3_free(query);
2221         sqlite3_finalize(stmt);
2222         __close_manifest_db();
2223         return ret;
2224 }
2225
2226 API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid,
2227                 const char *type, char **appid, char **access)
2228 {
2229         return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid,
2230                         type, _getuid(), appid, access);
2231 }
2232
2233 API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid, uid_t uid, char **appid)
2234 {
2235         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2236         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2237
2238         int ret = PMINFO_R_OK;
2239         char *query = NULL;
2240         sqlite3_stmt *stmt = NULL;
2241
2242         /*open db*/
2243         ret = __open_manifest_db(uid, true);
2244         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2245
2246         /*Start constructing query*/
2247         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q", providerid);
2248         tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory");
2249
2250         /*prepare query*/
2251         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2252         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2253
2254         /*step query*/
2255         ret = sqlite3_step(stmt);
2256         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2257
2258         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2259
2260         ret = PMINFO_R_OK;
2261
2262 catch:
2263         sqlite3_free(query);
2264         sqlite3_finalize(stmt);
2265         __close_manifest_db();
2266         return ret;
2267 }
2268
2269 API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid)
2270 {
2271         return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, _getuid(), appid);
2272 }
2273
2274 API int pkgmgrinfo_appinfo_usr_get_datacontrol_trusted_info(const char *providerid,
2275                 const char *type, uid_t uid, char **appid, bool *is_trusted)
2276 {
2277         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2278         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2279
2280         int ret = PMINFO_R_OK;
2281         char *query = NULL;
2282         sqlite3_stmt *stmt = NULL;
2283
2284         /*open db*/
2285         ret = __open_manifest_db(uid, true);
2286         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2287
2288         /*Start constructing query*/
2289         query = sqlite3_mprintf("SELECT app_id, trusted FROM package_app_data_control WHERE providerid=%Q AND type=%Q", providerid, type);
2290         tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory");
2291
2292         /*prepare query*/
2293         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2294         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2295
2296         /*step query*/
2297         ret = sqlite3_step(stmt);
2298         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2299
2300         _save_column_str(stmt, 0, appid);
2301         *is_trusted = _get_bool_value((char *)sqlite3_column_text(stmt, 1));
2302
2303         ret = PMINFO_R_OK;
2304
2305 catch:
2306         sqlite3_free(query);
2307         sqlite3_finalize(stmt);
2308         __close_manifest_db();
2309         return ret;
2310 }
2311
2312 API int pkgmgrinfo_appinfo_get_datacontrol_trsuted_info(const char *providerid,
2313                 const char *type, char **appid, bool *is_trusted)
2314 {
2315         return pkgmgrinfo_appinfo_usr_get_datacontrol_trusted_info(providerid,
2316                         type, _getuid(), appid, is_trusted);
2317 }
2318
2319 API int pkgmgrinfo_appinfo_usr_foreach_datacontrol_privileges(const char *providerid, const char *type,
2320                 pkgmgrinfo_pkg_privilege_list_cb privilege_func, void *user_data, uid_t uid)
2321 {
2322         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2323         retvm_if(privilege_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2324
2325         int ret = PMINFO_R_OK;
2326         char *query = NULL;
2327         sqlite3_stmt *stmt = NULL;
2328
2329         /*open db*/
2330         ret = __open_manifest_db(uid, true);
2331         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2332
2333         /*Start constructing query*/
2334         query = sqlite3_mprintf("SELECT privilege FROM package_app_data_control_privilege "
2335                         "WHERE providerid=%Q AND type=%Q", providerid, type);
2336         tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory");
2337
2338         /*prepare query*/
2339         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2340         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2341
2342         while (sqlite3_step(stmt) == SQLITE_ROW) {
2343                 char *privilege;
2344                 privilege = (char *)sqlite3_column_text(stmt, 0);
2345                 ret = privilege_func(privilege, user_data);
2346                 if (ret < 0)
2347                         break;
2348         }
2349
2350         ret = PMINFO_R_OK;
2351
2352 catch:
2353         sqlite3_free(query);
2354         sqlite3_finalize(stmt);
2355         __close_manifest_db();
2356         return ret;
2357 }
2358
2359 API int pkgmgrinfo_appinfo_foreach_datacontrol_privileges(const char *providerid, const char *type,
2360                 pkgmgrinfo_pkg_privilege_list_cb privilege_func, void *user_data)
2361 {
2362         return pkgmgrinfo_appinfo_usr_foreach_datacontrol_privileges(providerid, type, privilege_func,
2363                         user_data, _getuid());
2364 }
2365
2366 API int pkgmgrinfo_appinfo_get_support_mode(pkgmgrinfo_appinfo_h  handle, int *support_mode)
2367 {
2368         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2369         retvm_if(support_mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2370
2371         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2372         if (info->app_info->support_mode)
2373                 *support_mode = atoi(info->app_info->support_mode);
2374         else
2375                 *support_mode = 0;
2376
2377         return PMINFO_R_OK;
2378 }
2379
2380 API int pkgmgrinfo_appinfo_foreach_permission(pkgmgrinfo_appinfo_h handle,
2381                         pkgmgrinfo_app_permission_list_cb permission_func, void *user_data)
2382 {
2383         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2384         retvm_if(permission_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2385         int ret = -1;
2386         permission_x *ptr;
2387         GList *tmp;
2388         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2389
2390         if (info->app_info == NULL)
2391                 return PMINFO_R_ERROR;
2392
2393         for (tmp = info->app_info->permission; tmp; tmp = tmp->next) {
2394                 ptr = (permission_x *)tmp->data;
2395                 if (ptr == NULL)
2396                         continue;
2397                 if (ptr->value) {
2398                         ret = permission_func(ptr->value, user_data);
2399                         if (ret < 0)
2400                                 break;
2401                 }
2402         }
2403         return PMINFO_R_OK;
2404 }
2405
2406 API int pkgmgrinfo_appinfo_foreach_category(pkgmgrinfo_appinfo_h handle,
2407                         pkgmgrinfo_app_category_list_cb category_func, void *user_data)
2408 {
2409         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2410         retvm_if(category_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2411         int ret = -1;
2412         const char *category;
2413         GList *tmp;
2414         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2415
2416         if (info->app_info == NULL)
2417                 return PMINFO_R_ERROR;
2418
2419         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2420                 category = (const char *)tmp->data;
2421                 if (category) {
2422                         ret = category_func(category, user_data);
2423                         if (ret < 0)
2424                                 break;
2425                 }
2426         }
2427         return PMINFO_R_OK;
2428 }
2429
2430 API int pkgmgrinfo_appinfo_foreach_metadata(pkgmgrinfo_appinfo_h handle,
2431                         pkgmgrinfo_app_metadata_list_cb metadata_func, void *user_data)
2432 {
2433         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2434         retvm_if(metadata_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2435         int ret = -1;
2436         metadata_x *ptr;
2437         GList *tmp;
2438         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2439
2440         if (info->app_info == NULL)
2441                 return PMINFO_R_ERROR;
2442
2443         for (tmp = info->app_info->metadata; tmp; tmp = tmp->next) {
2444                 ptr = (metadata_x *)tmp->data;
2445                 if (ptr == NULL)
2446                         continue;
2447                 if (ptr->key) {
2448                         ret = metadata_func(ptr->key, ptr->value ? ptr->value : "", user_data);
2449                         if (ret < 0)
2450                                 break;
2451                 }
2452         }
2453         return PMINFO_R_OK;
2454 }
2455
2456 API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle,
2457                         pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data)
2458 {
2459         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2460         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2461         int ret;
2462         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2463         appcontrol_x *appcontrol;
2464         GList *tmp;
2465
2466         if (info->app_info == NULL)
2467                 return PMINFO_R_ERROR;
2468
2469         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
2470                 appcontrol = (appcontrol_x *)tmp->data;
2471                 if (appcontrol == NULL)
2472                         continue;
2473                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data);
2474                 if (ret < 0)
2475                         break;
2476         }
2477
2478         return PMINFO_R_OK;
2479 }
2480
2481 API int pkgmgrinfo_appinfo_foreach_background_category(
2482                 pkgmgrinfo_appinfo_h handle,
2483                 pkgmgrinfo_app_background_category_list_cb category_func,
2484                 void *user_data)
2485 {
2486         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2487         GList *tmp;
2488         char *category;
2489
2490         if (handle == NULL || category_func == NULL || info->app_info == NULL) {
2491                 LOGE("invalid parameter");
2492                 return PMINFO_R_EINVAL;
2493         }
2494
2495         for (tmp = info->app_info->background_category; tmp; tmp = tmp->next) {
2496                 category = (char *)tmp->data;
2497                 if (category == NULL)
2498                         continue;
2499
2500                 if (category_func(category, user_data) < 0)
2501                         break;
2502         }
2503
2504         return PMINFO_R_OK;
2505 }
2506
2507 API int pkgmgrinfo_appinfo_foreach_splash_screen(pkgmgrinfo_appinfo_h handle,
2508                 pkgmgrinfo_app_splash_screen_list_cb splash_screen_func,
2509                 void *user_data)
2510 {
2511         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2512         splashscreen_x *splashscreen;
2513         GList *tmp;
2514         int ret;
2515
2516         if (info == NULL || info->app_info == NULL
2517                         || splash_screen_func == NULL) {
2518                 LOGE("invalid parameter");
2519                 return PMINFO_R_EINVAL;
2520         }
2521
2522         for (tmp = info->app_info->splashscreens; tmp; tmp = tmp->next) {
2523                 splashscreen = (splashscreen_x *)tmp->data;
2524                 if (splashscreen == NULL)
2525                         continue;
2526                 ret = splash_screen_func(splashscreen->src,
2527                                 splashscreen->type,
2528                                 splashscreen->orientation,
2529                                 splashscreen->indicatordisplay,
2530                                 splashscreen->operation,
2531                                 splashscreen->color_depth,
2532                                 user_data);
2533                 if (ret < 0)
2534                         break;
2535         }
2536
2537         return PMINFO_R_OK;
2538 }
2539
2540 API int pkgmgrinfo_appinfo_is_nodisplay(pkgmgrinfo_appinfo_h handle, bool *nodisplay)
2541 {
2542         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2543         retvm_if(nodisplay == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2544         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2545
2546         if (info->app_info == NULL || info->app_info->nodisplay == NULL)
2547                 return PMINFO_R_ERROR;
2548
2549         *nodisplay = _get_bool_value(info->app_info->nodisplay);
2550
2551         return PMINFO_R_OK;
2552 }
2553
2554 API int pkgmgrinfo_appinfo_is_multiple(pkgmgrinfo_appinfo_h handle, bool *multiple)
2555 {
2556         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2557         retvm_if(multiple == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2558         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2559
2560         if (info->app_info == NULL || info->app_info->multiple == NULL)
2561                 return PMINFO_R_ERROR;
2562
2563         *multiple = _get_bool_value(info->app_info->multiple);
2564
2565         return PMINFO_R_OK;
2566 }
2567
2568 API int pkgmgrinfo_appinfo_is_indicator_display_allowed(pkgmgrinfo_appinfo_h handle, bool *indicator_disp)
2569 {
2570         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2571         retvm_if(indicator_disp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2572         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2573
2574         if (info->app_info == NULL || info->app_info->indicatordisplay == NULL)
2575                 return PMINFO_R_ERROR;
2576
2577         *indicator_disp = _get_bool_value(info->app_info->indicatordisplay);
2578
2579         return PMINFO_R_OK;
2580 }
2581
2582 API int pkgmgrinfo_appinfo_is_taskmanage(pkgmgrinfo_appinfo_h  handle, bool *taskmanage)
2583 {
2584         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2585         retvm_if(taskmanage == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2586         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2587
2588         if (info->app_info == NULL || info->app_info->taskmanage == NULL)
2589                 return PMINFO_R_ERROR;
2590
2591         *taskmanage = _get_bool_value(info->app_info->taskmanage);
2592
2593         return PMINFO_R_OK;
2594 }
2595
2596 API int pkgmgrinfo_appinfo_is_enabled(pkgmgrinfo_appinfo_h  handle, bool *enabled)
2597 {
2598         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2599         retvm_if(enabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2600         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2601
2602         if (info->app_info == NULL || info->app_info->is_disabled == NULL)
2603                 return PMINFO_R_ERROR;
2604
2605         *enabled = !_get_bool_value(info->app_info->is_disabled);
2606
2607         return PMINFO_R_OK;
2608 }
2609
2610 API int pkgmgrinfo_appinfo_is_onboot(pkgmgrinfo_appinfo_h  handle, bool *onboot)
2611 {
2612         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2613         retvm_if(onboot == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2614         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2615
2616         if (info->app_info == NULL || info->app_info->onboot == NULL)
2617                 return PMINFO_R_ERROR;
2618
2619         *onboot = _get_bool_value(info->app_info->onboot);
2620
2621         return PMINFO_R_OK;
2622 }
2623
2624 API int pkgmgrinfo_appinfo_is_autorestart(pkgmgrinfo_appinfo_h  handle, bool *autorestart)
2625 {
2626         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2627         retvm_if(autorestart == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2628         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2629
2630         if (info->app_info == NULL || info->app_info->autorestart == NULL)
2631                 return PMINFO_R_ERROR;
2632
2633         *autorestart = _get_bool_value(info->app_info->autorestart);
2634
2635         return PMINFO_R_OK;
2636 }
2637
2638 API int pkgmgrinfo_appinfo_is_mainapp(pkgmgrinfo_appinfo_h  handle, bool *mainapp)
2639 {
2640         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2641         retvm_if(mainapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2642         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2643
2644         if (info->app_info == NULL || info->app_info->mainapp == NULL)
2645                 return PMINFO_R_ERROR;
2646
2647         *mainapp = _get_bool_value(info->app_info->mainapp);
2648
2649         return PMINFO_R_OK;
2650 }
2651
2652 API int pkgmgrinfo_appinfo_is_preload(pkgmgrinfo_appinfo_h handle, bool *preload)
2653 {
2654         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2655         retvm_if(preload == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2656         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2657
2658         if (info->app_info == NULL || info->app_info->preload == NULL)
2659                 return PMINFO_R_ERROR;
2660
2661         *preload = _get_bool_value(info->app_info->preload);
2662
2663         return PMINFO_R_OK;
2664 }
2665
2666 API int pkgmgrinfo_appinfo_is_submode(pkgmgrinfo_appinfo_h handle, bool *submode)
2667 {
2668         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2669         retvm_if(submode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2670         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2671
2672         if (info->app_info == NULL || info->app_info->submode == NULL)
2673                 return PMINFO_R_ERROR;
2674
2675         *submode = _get_bool_value(info->app_info->submode);
2676
2677         return PMINFO_R_OK;
2678 }
2679
2680 API int pkgmgrinfo_appinfo_is_process_pool(pkgmgrinfo_appinfo_h handle, bool *process_pool)
2681 {
2682         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2683
2684         if (handle == NULL || process_pool == NULL) {
2685                 LOGE("invalid parameter");
2686                 return PMINFO_R_EINVAL;
2687         }
2688
2689         if (info->app_info == NULL)
2690                 return PMINFO_R_ERROR;
2691
2692         *process_pool = _get_bool_value(info->app_info->process_pool);
2693
2694         return PMINFO_R_OK;
2695 }
2696
2697 API int pkgmgrinfo_appinfo_is_category_exist(pkgmgrinfo_appinfo_h handle, const char *category, bool *exist)
2698 {
2699         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2700         retvm_if(category == NULL, PMINFO_R_EINVAL, "category is NULL");
2701         retvm_if(exist == NULL, PMINFO_R_EINVAL, "exist is NULL");
2702
2703         const char *val;
2704         GList *tmp;
2705         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2706
2707         if (info->app_info == NULL)
2708                 return PMINFO_R_ERROR;
2709
2710         *exist = 0;
2711         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2712                 val = (const char *)tmp->data;
2713                 if (val == NULL)
2714                         continue;
2715                 if (strcasecmp(val, category) == 0) {
2716                         *exist = 1;
2717                         break;
2718                 }
2719         }
2720
2721         return PMINFO_R_OK;
2722 }
2723
2724 API int pkgmgrinfo_appinfo_is_ui_gadget(pkgmgrinfo_appinfo_h handle,
2725                 bool *ui_gadget)
2726 {
2727         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2728
2729         if (info == NULL || info->app_info == NULL || ui_gadget == NULL) {
2730                 _LOGE("invalid parameter");
2731                 return PMINFO_R_EINVAL;
2732         }
2733         if (info->app_info->ui_gadget == NULL)
2734                 info->app_info->ui_gadget = strdup("false");
2735
2736         *ui_gadget = _get_bool_value(info->app_info->ui_gadget);
2737
2738         return PMINFO_R_OK;
2739 }
2740
2741 API int pkgmgrinfo_appinfo_is_support_disable(pkgmgrinfo_appinfo_h handle,
2742                 bool *support_disable)
2743 {
2744         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2745
2746         if (info == NULL || info->app_info == NULL || support_disable == NULL) {
2747                 _LOGE("invalid parameter");
2748                 return PMINFO_R_EINVAL;
2749         }
2750
2751         *support_disable = _get_bool_value(info->app_info->support_disable);
2752
2753         return PMINFO_R_OK;
2754 }
2755
2756 API int pkgmgrinfo_appinfo_is_removable(pkgmgrinfo_appinfo_h handle,
2757                 bool *removable)
2758 {
2759         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2760
2761         if (info == NULL || info->app_info == NULL || removable == NULL) {
2762                 _LOGE("invalid parameter");
2763                 return PMINFO_R_EINVAL;
2764         }
2765
2766         *removable = _get_bool_value(info->app_info->removable);
2767
2768         return PMINFO_R_OK;
2769 }
2770
2771 API int pkgmgrinfo_appinfo_is_system(pkgmgrinfo_appinfo_h handle, bool *system)
2772 {
2773         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2774
2775         if (info == NULL || info->app_info == NULL || system == NULL) {
2776                 _LOGE("invalid parameter");
2777                 return PMINFO_R_EINVAL;
2778         }
2779
2780         *system = _get_bool_value(info->app_info->package_system);
2781
2782         return PMINFO_R_OK;
2783 }
2784
2785 API int pkgmgrinfo_appinfo_is_disabled(pkgmgrinfo_appinfo_h handle, bool *disabled)
2786 {
2787         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2788         retvm_if(disabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2789         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2790
2791         if (info->app_info == NULL || info->app_info->is_disabled == NULL)
2792                 return PMINFO_R_ERROR;
2793
2794         *disabled = _get_bool_value(info->app_info->is_disabled);
2795
2796         return PMINFO_R_OK;
2797 }
2798
2799 API int pkgmgrinfo_appinfo_is_global(pkgmgrinfo_appinfo_h handle, bool *global)
2800 {
2801         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2802
2803         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2804         retvm_if(global == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2805
2806         if (info->app_info == NULL || info->app_info->for_all_users == NULL)
2807                 return PMINFO_R_ERROR;
2808
2809         *global = _get_bool_value(info->app_info->for_all_users);
2810
2811         return PMINFO_R_OK;
2812 }
2813
2814 API int pkgmgrinfo_appinfo_get_splash_screen_display(pkgmgrinfo_appinfo_h handle, bool *splash_screen_display)
2815 {
2816         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2817
2818         if (info == NULL || splash_screen_display == NULL) {
2819                 _LOGE("Invalid parameter");
2820                 return PMINFO_R_EINVAL;
2821         }
2822
2823         if (info->app_info == NULL || info->app_info->splash_screen_display == NULL)
2824                 return PMINFO_R_ERROR;
2825
2826         *splash_screen_display = _get_bool_value(info->app_info->splash_screen_display);
2827
2828         return PMINFO_R_OK;
2829 }
2830
2831 API int pkgmgrinfo_appinfo_get_setup_appid(pkgmgrinfo_appinfo_h handle, char **setup_appid)
2832 {
2833         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2834
2835         if (info == NULL || setup_appid == NULL) {
2836                 _LOGE("Invalid parameter");
2837                 return PMINFO_R_EINVAL;
2838         }
2839
2840         if (info->app_info == NULL || info->app_info->setup_appid == NULL)
2841                 return PMINFO_R_ERROR;
2842
2843         *setup_appid = info->app_info->setup_appid;
2844         return PMINFO_R_OK;
2845 }
2846
2847 API int pkgmgrinfo_appinfo_is_support_ambient(pkgmgrinfo_appinfo_h handle,
2848                 bool *support_ambient)
2849 {
2850         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2851
2852         if (info == NULL || support_ambient == NULL) {
2853                 _LOGE("Invalid parameter");
2854                 return PMINFO_R_EINVAL;
2855         }
2856
2857         if (info->app_info == NULL || info->app_info->support_ambient == NULL)
2858                 return PMINFO_R_ERROR;
2859
2860         *support_ambient = _get_bool_value(info->app_info->support_ambient);
2861
2862         return PMINFO_R_OK;
2863 }
2864
2865 API int pkgmgrinfo_appinfo_destroy_appinfo(pkgmgrinfo_appinfo_h handle)
2866 {
2867         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2868         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2869         __cleanup_appinfo(info);
2870         return PMINFO_R_OK;
2871 }
2872
2873 API int pkgmgrinfo_appinfo_filter_create(pkgmgrinfo_appinfo_filter_h *handle)
2874 {
2875         return (pkgmgrinfo_pkginfo_filter_create(handle));
2876 }
2877
2878 API int pkgmgrinfo_appinfo_filter_destroy(pkgmgrinfo_appinfo_filter_h handle)
2879 {
2880         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2881 }
2882
2883 static gint __compare_func(gconstpointer data1, gconstpointer data2)
2884 {
2885         pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x *)data1;
2886         pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x *)data2;
2887         if (node1->prop == node2->prop)
2888                 return 0;
2889         else if (node1->prop > node2->prop)
2890                 return 1;
2891         else
2892                 return -1;
2893 }
2894
2895 API int pkgmgrinfo_appinfo_filter_add_int(pkgmgrinfo_appinfo_filter_h handle,
2896                                 const char *property, const int value)
2897 {
2898         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2899         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2900         char buf[PKG_VALUE_STRING_LEN_MAX] = {'\0'};
2901         char *val = NULL;
2902         GSList *link = NULL;
2903         int prop = -1;
2904         prop = _pminfo_appinfo_convert_to_prop_int(property);
2905         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_INT ||
2906                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_INT) {
2907                 _LOGE("Invalid Integer Property\n");
2908                 return PMINFO_R_EINVAL;
2909         }
2910         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
2911         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x));
2912         if (node == NULL) {
2913                 _LOGE("Out of Memory!!!\n");
2914                 return PMINFO_R_ERROR;
2915         }
2916         snprintf(buf, PKG_VALUE_STRING_LEN_MAX - 1, "%d", value);
2917         val = strndup(buf, PKG_VALUE_STRING_LEN_MAX - 1);
2918         if (val == NULL) {
2919                 _LOGE("Out of Memory\n");
2920                 free(node);
2921                 node = NULL;
2922                 return PMINFO_R_ERROR;
2923         }
2924         node->prop = prop;
2925         node->value = val;
2926         /*If API is called multiple times for same property, we should override the previous values.
2927         Last value set will be used for filtering.*/
2928         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2929         if (link)
2930                 filter->list = g_slist_delete_link(filter->list, link);
2931         filter->list = g_slist_append(filter->list, (gpointer)node);
2932         return PMINFO_R_OK;
2933
2934 }
2935
2936 API int pkgmgrinfo_appinfo_filter_add_bool(pkgmgrinfo_appinfo_filter_h handle,
2937                                 const char *property, const bool value)
2938 {
2939         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2940         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2941         char *val = NULL;
2942         GSList *link = NULL;
2943         int prop = -1;
2944         prop = _pminfo_appinfo_convert_to_prop_bool(property);
2945         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_BOOL ||
2946                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_BOOL) {
2947                 _LOGE("Invalid Boolean Property\n");
2948                 return PMINFO_R_EINVAL;
2949         }
2950         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
2951         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x));
2952         if (node == NULL) {
2953                 _LOGE("Out of Memory!!!\n");
2954                 return PMINFO_R_ERROR;
2955         }
2956         if (value)
2957                 val = strndup("true", 4);
2958         else
2959                 val = strndup("false", 5);
2960         if (val == NULL) {
2961                 _LOGE("Out of Memory\n");
2962                 free(node);
2963                 node = NULL;
2964                 return PMINFO_R_ERROR;
2965         }
2966         node->prop = prop;
2967         node->value = val;
2968         /*If API is called multiple times for same property, we should override the previous values.
2969         Last value set will be used for filtering.*/
2970         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2971         if (link)
2972                 filter->list = g_slist_delete_link(filter->list, link);
2973         filter->list = g_slist_append(filter->list, (gpointer)node);
2974         return PMINFO_R_OK;
2975
2976 }
2977
2978 API int pkgmgrinfo_appinfo_filter_add_string(pkgmgrinfo_appinfo_filter_h handle,
2979                                 const char *property, const char *value)
2980 {
2981         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2982         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2983         retvm_if(value == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2984         char *val = NULL;
2985         pkgmgrinfo_node_x *ptr = NULL;
2986         char prev[PKG_STRING_LEN_MAX] = {'\0'};
2987         char temp[PKG_STRING_LEN_MAX] = {'\0'};
2988         GSList *link = NULL;
2989         int prop = -1;
2990         prop = _pminfo_appinfo_convert_to_prop_str(property);
2991         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_STR ||
2992                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_STR) {
2993                 _LOGE("Invalid String Property\n");
2994                 return PMINFO_R_EINVAL;
2995         }
2996         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
2997         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)calloc(1, sizeof(pkgmgrinfo_node_x));
2998         if (node == NULL) {
2999                 _LOGE("Out of Memory!!!\n");
3000                 return PMINFO_R_ERROR;
3001         }
3002         node->prop = prop;
3003         switch (prop) {
3004         case E_PMINFO_APPINFO_PROP_APP_COMPONENT:
3005                 node->value = strdup(value);
3006                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3007                 if (link)
3008                         filter->list = g_slist_delete_link(filter->list, link);
3009                 filter->list = g_slist_append(filter->list, (gpointer)node);
3010                 break;
3011         case E_PMINFO_APPINFO_PROP_APP_CATEGORY:
3012                 val = (char *)calloc(1, PKG_STRING_LEN_MAX);
3013                 if (val == NULL) {
3014                         _LOGE("Out of Memory\n");
3015                         free(node);
3016                         node = NULL;
3017                         return PMINFO_R_ERROR;
3018                 }
3019                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3020                 if (link) {
3021                         ptr = (pkgmgrinfo_node_x *)link->data;
3022                         strncpy(prev, ptr->value, PKG_STRING_LEN_MAX - 1);
3023                         _LOGI("Previous value is %s\n", prev);
3024                         filter->list = g_slist_delete_link(filter->list, link);
3025                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s,%s", prev, value);
3026                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
3027                         _LOGI("New value is %s\n", val);
3028                         node->value = val;
3029                         filter->list = g_slist_append(filter->list, (gpointer)node);
3030                         memset(temp, '\0', PKG_STRING_LEN_MAX);
3031                 } else {
3032                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s", value);
3033                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
3034                         _LOGI("First value is %s\n", val);
3035                         node->value = val;
3036                         filter->list = g_slist_append(filter->list, (gpointer)node);
3037                         memset(temp, '\0', PKG_STRING_LEN_MAX);
3038                 }
3039                 break;
3040         default:
3041                 node->value = strndup(value, PKG_STRING_LEN_MAX - 1);
3042                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
3043                 if (link)
3044                         filter->list = g_slist_delete_link(filter->list, link);
3045                 filter->list = g_slist_append(filter->list, (gpointer)node);
3046                 break;
3047         }
3048         return PMINFO_R_OK;
3049 }
3050
3051 API int pkgmgrinfo_appinfo_usr_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count, uid_t uid)
3052 {
3053         int ret;
3054         char *locale;
3055         GHashTable *list;
3056
3057         if (handle == NULL || count == NULL) {
3058                 _LOGE("invalid parameter");
3059                 return PMINFO_R_EINVAL;
3060         }
3061
3062         locale = _get_system_locale();
3063         if (locale == NULL)
3064                 return PMINFO_R_ERROR;
3065
3066         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
3067                         __free_applications);
3068         if (list == NULL) {
3069                 free(locale);
3070                 return PMINFO_R_ERROR;
3071         }
3072
3073         ret = _appinfo_get_applications(uid, uid, locale, handle, 0, list);
3074         if (ret == PMINFO_R_OK && uid != GLOBAL_USER)
3075                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
3076                                 handle, 0, list);
3077
3078         if (ret != PMINFO_R_OK) {
3079                 g_hash_table_destroy(list);
3080                 free(locale);
3081                 return PMINFO_R_ERROR;
3082         }
3083
3084         *count = g_hash_table_size(list);
3085         g_hash_table_destroy(list);
3086         free(locale);
3087
3088         return PMINFO_R_OK;
3089 }
3090
3091 API int pkgmgrinfo_appinfo_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count)
3092 {
3093         return pkgmgrinfo_appinfo_usr_filter_count(handle, count, _getuid());
3094 }
3095
3096 API int pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(
3097                 pkgmgrinfo_appinfo_filter_h handle,
3098                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
3099 {
3100         if (handle == NULL || app_cb == NULL) {
3101                 LOGE("invalid parameter");
3102                 return PMINFO_R_EINVAL;
3103         }
3104
3105         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
3106                         user_data);
3107 }
3108
3109 API int pkgmgrinfo_appinfo_filter_foreach_appinfo(pkgmgrinfo_appinfo_filter_h handle,
3110                                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
3111 {
3112         return pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(handle, app_cb, user_data, _getuid());
3113 }
3114
3115 API int pkgmgrinfo_appinfo_metadata_filter_create(pkgmgrinfo_appinfo_metadata_filter_h *handle)
3116 {
3117         return (pkgmgrinfo_pkginfo_filter_create(handle));
3118 }
3119
3120 API int pkgmgrinfo_appinfo_metadata_filter_destroy(pkgmgrinfo_appinfo_metadata_filter_h handle)
3121 {
3122         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
3123 }
3124
3125 API int pkgmgrinfo_appinfo_metadata_filter_add(
3126                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3127                 const char *key, const char *value)
3128 {
3129         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x *)handle;
3130         pkgmgrinfo_metadata_node_x *node;
3131
3132         /* value can be NULL.
3133          * In that case all apps with specified key should be displayed
3134          */
3135         if (key == NULL) {
3136                 LOGE("invalid parameter");
3137                 return PMINFO_R_EINVAL;
3138         }
3139
3140         node = calloc(1, sizeof(pkgmgrinfo_metadata_node_x));
3141         if (node == NULL) {
3142                 LOGE("out of memory");
3143                 return PMINFO_R_ERROR;
3144         }
3145
3146         node->key = strdup(key);
3147         if (value && strlen(value))
3148                 node->value = strdup(value);
3149
3150         filter->list_metadata = g_slist_append(filter->list_metadata,
3151                         (gpointer)node);
3152
3153         return PMINFO_R_OK;
3154 }
3155
3156 API int pkgmgrinfo_appinfo_usr_metadata_filter_foreach(
3157                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3158                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
3159 {
3160         if (handle == NULL || app_cb == NULL) {
3161                 LOGE("invalid parameter");
3162                 return PMINFO_R_EINVAL;
3163         }
3164
3165         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
3166                         user_data);
3167 }
3168
3169 API int pkgmgrinfo_appinfo_metadata_filter_foreach(
3170                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3171                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
3172 {
3173         return pkgmgrinfo_appinfo_usr_metadata_filter_foreach(handle, app_cb,
3174                         user_data, _getuid());
3175 }
3176
3177 API int pkgmgrinfo_appinfo_is_guestmode_visibility(pkgmgrinfo_appinfo_h handle, bool *status)
3178 {
3179         const char *val;
3180         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3181
3182         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
3183         retvm_if(status == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3184
3185         val = info->app_info->guestmode_visibility;
3186         *status = _get_bool_value(val);
3187         return PMINFO_R_OK;
3188 }