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