parameter binding will not work when filter is null
[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, "
557                 "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->component_type);
656                 _save_column_str(stmt, idx++, &info->package);
657                 info->for_all_users =
658                         strdup((uid != GLOBAL_USER) ? "false" : "true");
659
660                 if (db_uid == GLOBAL_USER)
661                         __get_splash_screen_display(db, info->appid, db_uid,
662                                         &info->splash_screen_display);
663
664                 info->background_category = __get_background_category(
665                                 bg_category_str);
666                 free(bg_category_str);
667
668                 if (flag & PMINFO_APPINFO_GET_LABEL) {
669                         if (_appinfo_get_label(db, info->appid, locale,
670                                                 &info->label)) {
671                                 ret = PMINFO_R_ERROR;
672                                 goto catch;
673                         }
674                 }
675
676                 if (flag & PMINFO_APPINFO_GET_ICON) {
677                         if (_appinfo_get_icon(db, info->appid, locale,
678                                                 &info->icon)) {
679                                 ret = PMINFO_R_ERROR;
680                                 goto catch;
681                         }
682                 }
683
684                 if (flag & PMINFO_APPINFO_GET_CATEGORY) {
685                         if (_appinfo_get_category(db, info->appid,
686                                                 &info->category)) {
687                                 ret = PMINFO_R_ERROR;
688                                 goto catch;
689                         }
690                 }
691
692                 if (flag & PMINFO_APPINFO_GET_APP_CONTROL) {
693                         if (_appinfo_get_app_control(db, info->appid,
694                                                 &info->appcontrol)) {
695                                 ret = PMINFO_R_ERROR;
696                                 goto catch;
697                         }
698                 }
699
700                 if (flag & PMINFO_APPINFO_GET_DATA_CONTROL) {
701                         if (_appinfo_get_data_control(db, info->appid,
702                                                 &info->datacontrol)) {
703                                 ret = PMINFO_R_ERROR;
704                                 goto catch;
705                         }
706                 }
707
708                 if (flag & PMINFO_APPINFO_GET_METADATA) {
709                         if (_appinfo_get_metadata(db, info->appid,
710                                                 &info->metadata)) {
711                                 ret = PMINFO_R_ERROR;
712                                 goto catch;
713                         }
714                 }
715
716                 if (flag & PMINFO_APPINFO_GET_SPLASH_SCREEN) {
717                         if (_appinfo_get_splashscreens(db, info->appid,
718                                                 &info->splashscreens)) {
719                                 ret = PMINFO_R_ERROR;
720                                 goto catch;
721                         }
722                 }
723
724                 g_hash_table_insert(applications, (gpointer)info->appid,
725                                 (gpointer)info);
726         }
727
728         ret = PMINFO_R_OK;
729
730 catch:
731         if (constraint)
732                 free(constraint);
733
734         if (ret != PMINFO_R_OK && info != NULL)
735                 pkgmgrinfo_basic_free_application(info);
736
737         g_list_free_full(bind_params, free);
738         sqlite3_close_v2(db);
739         sqlite3_finalize(stmt);
740
741         return ret;
742 }
743
744 API int pkgmgrinfo_appinfo_get_usr_disabled_appinfo(const char *appid, uid_t uid,
745                 pkgmgrinfo_appinfo_h *handle)
746 {
747         int ret;
748         char *locale;
749         GHashTable *list;
750         pkgmgrinfo_appinfo_filter_h filter;
751         pkgmgr_appinfo_x *info;
752
753         if (appid == NULL || handle == NULL) {
754                 LOGE("invalid parameter");
755                 return PMINFO_R_EINVAL;
756         }
757
758         locale = _get_system_locale();
759         if (locale == NULL)
760                 return PMINFO_R_ERROR;
761
762         ret = pkgmgrinfo_appinfo_filter_create(&filter);
763         if (ret != PMINFO_R_OK) {
764                 free(locale);
765                 return ret;
766         }
767
768         ret = pkgmgrinfo_appinfo_filter_add_string(filter,
769                         PMINFO_APPINFO_PROP_APP_ID, appid);
770         if (ret != PMINFO_R_OK) {
771                 pkgmgrinfo_appinfo_filter_destroy(filter);
772                 free(locale);
773                 return PMINFO_R_ERROR;
774         }
775
776         ret = pkgmgrinfo_appinfo_filter_add_bool(filter,
777                         PMINFO_APPINFO_PROP_APP_DISABLE, true);
778         if (ret != PMINFO_R_OK) {
779                 pkgmgrinfo_appinfo_filter_destroy(filter);
780                 free(locale);
781                 return PMINFO_R_ERROR;
782         }
783
784         list = g_hash_table_new(g_str_hash, g_str_equal);
785         if (list == NULL) {
786                 pkgmgrinfo_appinfo_filter_destroy(filter);
787                 free(locale);
788                 return PMINFO_R_ERROR;
789         }
790
791         ret = _appinfo_get_applications(uid, uid, locale, filter,
792                         PMINFO_APPINFO_GET_ALL, list);
793         if (!g_hash_table_size(list) && uid != GLOBAL_USER)
794                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
795                                 filter, PMINFO_APPINFO_GET_ALL, list);
796
797         pkgmgrinfo_appinfo_filter_destroy(filter);
798         if (ret != PMINFO_R_OK) {
799                 g_hash_table_destroy(list);
800                 free(locale);
801                 return ret;
802         }
803
804         if (!g_hash_table_size(list)) {
805                 _LOGI("Appinfo for [%s] is not existed for user [%d]",
806                                 appid, uid);
807                 g_hash_table_destroy(list);
808                 free(locale);
809                 return PMINFO_R_ENOENT;
810         }
811
812         info = calloc(1, sizeof(pkgmgr_appinfo_x));
813         if (info == NULL) {
814                 _LOGE("out of memory");
815                 free(locale);
816                 return PMINFO_R_ERROR;
817         }
818
819         info->app_info = (application_x *)g_hash_table_lookup(list, appid);
820         info->locale = locale;
821         info->package = strdup(info->app_info->package);
822
823         /* just free list only */
824         g_hash_table_destroy(list);
825
826         *handle = info;
827
828         return ret;
829 }
830
831 API int pkgmgrinfo_appinfo_get_disabled_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle)
832 {
833         return pkgmgrinfo_appinfo_get_usr_disabled_appinfo(appid, _getuid(), handle);
834 }
835
836 API int pkgmgrinfo_appinfo_get_usr_appinfo(const char *appid, uid_t uid,
837                 pkgmgrinfo_appinfo_h *handle)
838 {
839         int ret;
840         char *locale;
841         GHashTable *list;
842         pkgmgrinfo_appinfo_filter_h filter;
843         pkgmgr_appinfo_x *info;
844
845         if (appid == NULL || handle == NULL) {
846                 LOGE("invalid parameter");
847                 return PMINFO_R_EINVAL;
848         }
849
850         locale = _get_system_locale();
851         if (locale == NULL)
852                 return PMINFO_R_ERROR;
853
854         ret = pkgmgrinfo_appinfo_filter_create(&filter);
855         if (ret != PMINFO_R_OK) {
856                 free(locale);
857                 return ret;
858         }
859
860         ret = pkgmgrinfo_appinfo_filter_add_string(filter,
861                         PMINFO_APPINFO_PROP_APP_ID, appid);
862         if (ret != PMINFO_R_OK) {
863                 pkgmgrinfo_appinfo_filter_destroy(filter);
864                 free(locale);
865                 return PMINFO_R_ERROR;
866         }
867
868         ret = pkgmgrinfo_appinfo_filter_add_bool(filter,
869                         PMINFO_APPINFO_PROP_APP_DISABLE, false);
870         if (ret != PMINFO_R_OK) {
871                 pkgmgrinfo_appinfo_filter_destroy(filter);
872                 free(locale);
873                 return PMINFO_R_ERROR;
874         }
875
876         list = g_hash_table_new(g_str_hash, g_str_equal);
877         if (list == NULL) {
878                 pkgmgrinfo_appinfo_filter_destroy(filter);
879                 free(locale);
880                 return PMINFO_R_ERROR;
881         }
882
883         ret = _appinfo_get_applications(uid, uid, locale, filter,
884                         PMINFO_APPINFO_GET_ALL, list);
885         if (!g_hash_table_size(list) && uid != GLOBAL_USER)
886                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
887                                 filter, PMINFO_APPINFO_GET_ALL, list);
888
889         pkgmgrinfo_appinfo_filter_destroy(filter);
890         if (ret != PMINFO_R_OK) {
891                 g_hash_table_destroy(list);
892                 free(locale);
893                 return ret;
894         }
895
896         if (!g_hash_table_size(list)) {
897                 _LOGI("Appinfo for [%s] is not existed for user [%d]", appid, uid);
898                 g_hash_table_destroy(list);
899                 free(locale);
900                 return PMINFO_R_ENOENT;
901         }
902
903         info = calloc(1, sizeof(pkgmgr_appinfo_x));
904         if (info == NULL) {
905                 _LOGE("out of memory");
906                 free(locale);
907                 return PMINFO_R_ERROR;
908         }
909
910         info->app_info = (application_x *)g_hash_table_lookup(list, appid);
911         info->locale = locale;
912         info->package = strdup(info->app_info->package);
913
914         /* just free list only */
915         g_hash_table_destroy(list);
916
917         *handle = info;
918
919         return ret;
920 }
921
922 API int pkgmgrinfo_appinfo_get_appinfo(const char *appid, pkgmgrinfo_appinfo_h *handle)
923 {
924         return pkgmgrinfo_appinfo_get_usr_appinfo(appid, _getuid(), handle);
925 }
926
927 static gpointer __copy_str(gconstpointer src, gpointer data)
928 {
929         const char *tmp = (const char *)src;
930         char *buffer;
931
932         buffer = strdup(tmp);
933         if (buffer == NULL) {
934                 LOGE("memory alloc failed");
935                 *(int *)data = -1;
936                 return NULL;
937         }
938
939         return buffer;
940 }
941
942 static gpointer __copy_label(gconstpointer src, gpointer data)
943 {
944         label_x *tmp = (label_x *)src;
945         label_x *label;
946
947         label = calloc(1, sizeof(label_x));
948         if (label == NULL) {
949                 LOGE("memory alloc failed");
950                 *(int *)data = -1;
951                 return NULL;
952         }
953
954         if (tmp->name)
955                 label->name = strdup(tmp->name);
956         if (tmp->text)
957                 label->text = strdup(tmp->text);
958         if (tmp->lang)
959                 label->lang = strdup(tmp->lang);
960
961         return label;
962 }
963
964 static gpointer __copy_icon(gconstpointer src, gpointer data)
965 {
966         icon_x *tmp = (icon_x *)src;
967         icon_x *icon;
968
969         icon = calloc(1, sizeof(icon_x));
970         if (icon== NULL) {
971                 LOGE("memory alloc failed");
972                 *(int *)data = -1;
973                 return NULL;
974         }
975
976         if (tmp->text)
977                 icon->text = strdup(tmp->text);
978         if (tmp->lang)
979                 icon->lang = strdup(tmp->lang);
980         if (tmp->section)
981                 icon->section = strdup(tmp->section);
982         if (tmp->size)
983                 icon->size = strdup(tmp->size);
984         if (tmp->resolution)
985                 icon->resolution = strdup(tmp->resolution);
986
987         return icon;
988 }
989
990 static gpointer __copy_metadata(gconstpointer src, gpointer data)
991 {
992         metadata_x *tmp = (metadata_x *)src;
993         metadata_x *metadata;
994
995         metadata = calloc(1, sizeof(metadata_x));
996         if (metadata == NULL) {
997                 LOGE("memory alloc failed");
998                 *(int *)data = -1;
999                 return NULL;
1000         }
1001
1002         if (tmp->key)
1003                 metadata->key = strdup(tmp->key);
1004         if (tmp->value)
1005                 metadata->value = strdup(tmp->value);
1006
1007         return metadata;
1008 }
1009
1010 static gpointer __copy_datacontrol(gconstpointer src, gpointer data)
1011 {
1012         datacontrol_x *tmp = (datacontrol_x *)src;
1013         datacontrol_x *datacontrol;
1014
1015         datacontrol = calloc(1, sizeof(datacontrol_x));
1016         if (datacontrol == NULL) {
1017                 LOGE("memory alloc failed");
1018                 *(int *)data = -1;
1019                 return NULL;
1020         }
1021
1022         if (tmp->providerid)
1023                 datacontrol->providerid = strdup(tmp->providerid);
1024         if (tmp->access)
1025                 datacontrol->access = strdup(tmp->access);
1026         if (tmp->type)
1027                 datacontrol->type = strdup(tmp->type);
1028
1029         return datacontrol;
1030 }
1031
1032 static gpointer __copy_appcontrol(gconstpointer src, gpointer data)
1033 {
1034         appcontrol_x *tmp = (appcontrol_x *)src;
1035         appcontrol_x *appcontrol;
1036
1037         appcontrol = calloc(1, sizeof(appcontrol_x));
1038         if (appcontrol ==NULL) {
1039                 LOGE("memory alloc failed");
1040                 *(int *)data = -1;
1041                 return NULL;
1042         }
1043
1044         if (tmp->operation)
1045                 appcontrol->operation = strdup(tmp->operation);
1046         if (tmp->uri)
1047                 appcontrol->uri = strdup(tmp->uri);
1048         if (tmp->mime)
1049                 appcontrol->mime = strdup(tmp->mime);
1050
1051         return appcontrol;
1052 }
1053
1054 static gpointer __copy_splashscreens(gconstpointer src, gpointer data)
1055 {
1056         splashscreen_x *tmp = (splashscreen_x *)src;
1057         splashscreen_x *splashscreen;
1058
1059         splashscreen = (splashscreen_x *)calloc(1, sizeof(splashscreen_x));
1060         if (splashscreen == NULL) {
1061                 LOGE("memory alloc failed");
1062                 *(int *)data = -1;
1063                 return NULL;
1064         }
1065
1066         if (tmp->src)
1067                 splashscreen->src = strdup(tmp->src);
1068         if (tmp->type)
1069                 splashscreen->type = strdup(tmp->type);
1070         if (tmp->orientation)
1071                 splashscreen->orientation = strdup(tmp->orientation);
1072         if (tmp->indicatordisplay)
1073                 splashscreen->indicatordisplay = strdup(tmp->indicatordisplay);
1074         if (tmp->operation)
1075                 splashscreen->operation = strdup(tmp->operation);
1076         if (tmp->color_depth)
1077                 splashscreen->color_depth = strdup(tmp->color_depth);
1078
1079         return splashscreen;
1080 }
1081
1082 static int _appinfo_copy_appinfo(application_x **application, application_x *data)
1083 {
1084         application_x *app_info;
1085         int ret;
1086
1087         app_info = calloc(1, sizeof(application_x));
1088         if (app_info == NULL) {
1089                 LOGE("memory alloc failed");
1090                 return PMINFO_R_ERROR;
1091         }
1092
1093         if (data->appid != NULL)
1094                 app_info->appid = strdup(data->appid);
1095         if (data->exec != NULL)
1096                 app_info->exec = strdup(data->exec);
1097         if (data->nodisplay != NULL)
1098                 app_info->nodisplay = strdup(data->nodisplay);
1099         if (data->multiple != NULL)
1100                 app_info->multiple = strdup(data->multiple);
1101         if (data->taskmanage != NULL)
1102                 app_info->taskmanage = strdup(data->taskmanage);
1103         if (data->enabled != NULL)
1104                 app_info->enabled = strdup(data->enabled);
1105         if (data->type != NULL)
1106                 app_info->type = strdup(data->type);
1107         if (data->categories != NULL)
1108                 app_info->categories = strdup(data->categories);
1109         if (data->hwacceleration != NULL)
1110                 app_info->hwacceleration = strdup(data->hwacceleration);
1111         if (data->screenreader != NULL)
1112                 app_info->screenreader = strdup(data->screenreader);
1113         if (data->mainapp != NULL)
1114                 app_info->mainapp = strdup(data->mainapp);
1115         if (data->package != NULL)
1116                 app_info->package = strdup(data->package);
1117         if (data->recentimage != NULL)
1118                 app_info->recentimage = strdup(data->recentimage);
1119         if (data->launchcondition != NULL)
1120                 app_info->launchcondition = strdup(data->launchcondition);
1121         if (data->indicatordisplay != NULL)
1122                 app_info->indicatordisplay = strdup(data->indicatordisplay);
1123         if (data->portraitimg != NULL)
1124                 app_info->portraitimg = strdup(data->portraitimg);
1125         if (data->landscapeimg != NULL)
1126                 app_info->landscapeimg = strdup(data->landscapeimg);
1127         if (data->guestmode_visibility != NULL)
1128                 app_info->guestmode_visibility = strdup(data->guestmode_visibility);
1129         if (data->component != NULL)
1130                 app_info->component = strdup(data->component);
1131         if (data->permission_type != NULL)
1132                 app_info->permission_type = strdup(data->permission_type);
1133         if (data->component_type != NULL)
1134                 app_info->component_type = strdup(data->component_type);
1135         if (data->preload != NULL)
1136                 app_info->preload = strdup(data->preload);
1137         if (data->submode != NULL)
1138                 app_info->submode = strdup(data->submode);
1139         if (data->submode_mainid != NULL)
1140                 app_info->submode_mainid = strdup(data->submode_mainid);
1141         if (data->process_pool != NULL)
1142                 app_info->process_pool = strdup(data->process_pool);
1143         if (data->installed_storage != NULL)
1144                 app_info->installed_storage = strdup(data->installed_storage);
1145         if (data->autorestart != NULL)
1146                 app_info->autorestart = strdup(data->autorestart);
1147         if (data->onboot != NULL)
1148                 app_info->onboot = strdup(data->onboot);
1149         if (data->support_disable != NULL)
1150                 app_info->support_disable = strdup(data->support_disable);
1151         if (data->ui_gadget != NULL)
1152                 app_info->ui_gadget = strdup(data->ui_gadget);
1153         if (data->launch_mode != NULL)
1154                 app_info->launch_mode = strdup(data->launch_mode);
1155         if (data->package_type != NULL)
1156                 app_info->package_type = strdup(data->package_type);
1157         if (data->effective_appid != NULL)
1158                 app_info->effective_appid = strdup(data->effective_appid);
1159         if (data->splash_screen_display != NULL)
1160                 app_info->splash_screen_display = strdup(data->splash_screen_display);
1161
1162         /* GList */
1163         ret = 0;
1164         app_info->label = g_list_copy_deep(data->label, __copy_label, &ret);
1165         if (ret < 0) {
1166                 LOGE("memory alloc failed");
1167                 pkgmgrinfo_basic_free_application(app_info);
1168                 return PMINFO_R_ERROR;
1169         }
1170
1171         ret = 0;
1172         app_info->icon = g_list_copy_deep(data->icon, __copy_icon, &ret);
1173         if (ret < 0) {
1174                 LOGE("memory alloc failed");
1175                 pkgmgrinfo_basic_free_application(app_info);
1176                 return PMINFO_R_ERROR;
1177         }
1178
1179         ret = 0;
1180         app_info->category = g_list_copy_deep(data->category, __copy_str, &ret);
1181         if (ret < 0) {
1182                 LOGE("memory alloc failed");
1183                 pkgmgrinfo_basic_free_application(app_info);
1184                 return PMINFO_R_ERROR;
1185         }
1186
1187         ret = 0;
1188         app_info->metadata = g_list_copy_deep(data->metadata, __copy_metadata, &ret);
1189         if (ret < 0) {
1190                 LOGE("memory alloc failed");
1191                 pkgmgrinfo_basic_free_application(app_info);
1192                 return PMINFO_R_ERROR;
1193         }
1194
1195         ret = 0;
1196         app_info->datacontrol = g_list_copy_deep(data->datacontrol, __copy_datacontrol, &ret);
1197         if (ret < 0) {
1198                 LOGE("memory alloc failed");
1199                 pkgmgrinfo_basic_free_application(app_info);
1200                 return PMINFO_R_ERROR;
1201         }
1202
1203         ret = 0;
1204         app_info->appcontrol = g_list_copy_deep(data->appcontrol, __copy_appcontrol, &ret);
1205         if (ret < 0) {
1206                 LOGE("memory alloc failed");
1207                 pkgmgrinfo_basic_free_application(app_info);
1208                 return PMINFO_R_ERROR;
1209         }
1210
1211         ret = 0;
1212         app_info->background_category = g_list_copy_deep(data->background_category, __copy_str, &ret);
1213         if (ret < 0) {
1214                 LOGE("memory alloc failed");
1215                 pkgmgrinfo_basic_free_application(app_info);
1216                 return PMINFO_R_ERROR;
1217         }
1218
1219         ret = 0;
1220         app_info->splashscreens = g_list_copy_deep(data->splashscreens, __copy_splashscreens, &ret);
1221         if (ret < 0) {
1222                 LOGE("memory alloc failed");
1223                 pkgmgrinfo_basic_free_application(app_info);
1224                 return PMINFO_R_ERROR;
1225         }
1226
1227         *application = app_info;
1228
1229         return PMINFO_R_OK;
1230 }
1231
1232 API int pkgmgrinfo_appinfo_clone_appinfo(pkgmgrinfo_appinfo_h handle,
1233                 pkgmgrinfo_appinfo_h *clone)
1234 {
1235         pkgmgr_appinfo_x *info;
1236         pkgmgr_appinfo_x *temp = (pkgmgr_appinfo_x *)handle;
1237
1238         if (handle == NULL)
1239                 return PMINFO_R_EINVAL;
1240
1241         info = calloc(1, sizeof(pkgmgr_appinfo_x));
1242         if (info == NULL) {
1243                 LOGE("memory alloc failed");
1244                 return PMINFO_R_ERROR;
1245         }
1246
1247         if (temp->package != NULL)
1248                 info->package = strdup(temp->package);
1249         if (temp->locale != NULL)
1250                 info->locale = strdup(temp->locale);
1251
1252         info->app_component = temp->app_component;
1253
1254         if (_appinfo_copy_appinfo(&info->app_info, temp->app_info) < 0) {
1255                 LOGE("appinfo copy failed");
1256                 if (info->package)
1257                         free((void *)info->package);
1258                 if (info->locale)
1259                         free(info->locale);
1260                 free(info);
1261                 return PMINFO_R_ERROR;
1262         }
1263
1264         *clone = info;
1265
1266         return PMINFO_R_OK;
1267 }
1268
1269 static int _appinfo_get_filtered_foreach_appinfo(uid_t uid,
1270                 pkgmgrinfo_filter_x *filter, int flag, pkgmgrinfo_app_list_cb app_list_cb,
1271                 void *user_data)
1272 {
1273         int ret;
1274         char *locale;
1275         application_x *app;
1276         pkgmgr_appinfo_x info;
1277         GHashTable *list;
1278         GHashTableIter iter;
1279         gpointer value;
1280
1281         locale = _get_system_locale();
1282         if (locale == NULL)
1283                 return PMINFO_R_ERROR;
1284
1285         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
1286                         __free_applications);
1287         if (list == NULL) {
1288                 free(locale);
1289                 return PMINFO_R_ERROR;
1290         }
1291
1292         ret = _appinfo_get_applications(uid, uid, locale, filter, flag, list);
1293         if (ret == PMINFO_R_OK && uid != GLOBAL_USER)
1294                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
1295                                 filter, flag, list);
1296
1297         if (ret != PMINFO_R_OK) {
1298                 g_hash_table_destroy(list);
1299                 free(locale);
1300                 return ret;
1301         }
1302
1303         g_hash_table_iter_init(&iter, list);
1304         while (g_hash_table_iter_next(&iter, NULL, &value)) {
1305                 app = (application_x *)value;
1306                 info.app_info = app;
1307                 info.locale = locale;
1308                 info.package = app->package;
1309                 if (app_list_cb(&info, user_data) < 0)
1310                         break;
1311         }
1312         g_hash_table_destroy(list);
1313         free(locale);
1314
1315         return PMINFO_R_OK;
1316 }
1317
1318 static const char *__appcomponent_str(pkgmgrinfo_app_component comp);
1319
1320 API int pkgmgrinfo_appinfo_get_usr_list(pkgmgrinfo_pkginfo_h handle,
1321                 pkgmgrinfo_app_component component,
1322                 pkgmgrinfo_app_list_cb app_func, void *user_data, uid_t uid)
1323 {
1324         int ret;
1325         pkgmgrinfo_appinfo_filter_h filter;
1326         char *pkgid;
1327         const char *comp_str = NULL;
1328
1329         if (handle == NULL || app_func == NULL) {
1330                 LOGE("invalid parameter");
1331                 return PMINFO_R_EINVAL;
1332         }
1333
1334         if (pkgmgrinfo_pkginfo_get_pkgid(handle, &pkgid)) {
1335                 LOGE("invalid parameter");
1336                 return PMINFO_R_EINVAL;
1337         }
1338
1339         if (pkgmgrinfo_appinfo_filter_create(&filter))
1340                 return PMINFO_R_ERROR;
1341
1342         if (pkgmgrinfo_appinfo_filter_add_string(filter,
1343                                 PMINFO_APPINFO_PROP_APP_PACKAGE, pkgid)) {
1344                 pkgmgrinfo_appinfo_filter_destroy(filter);
1345                 return PMINFO_R_ERROR;
1346         }
1347
1348         if (uid == GLOBAL_USER) {
1349                 if (pkgmgrinfo_appinfo_filter_add_int(filter,
1350                                         PMINFO_APPINFO_PROP_APP_DISABLE_FOR_USER,
1351                                         (int)getuid())) {
1352                         pkgmgrinfo_appinfo_filter_destroy(filter);
1353                         return PMINFO_R_ERROR;
1354                 }
1355         }
1356
1357         comp_str = __appcomponent_str(component);
1358
1359         if (comp_str) {
1360                 if (pkgmgrinfo_appinfo_filter_add_string(filter,
1361                                         PMINFO_APPINFO_PROP_APP_COMPONENT,
1362                                         comp_str)) {
1363                         pkgmgrinfo_appinfo_filter_destroy(filter);
1364                         return PMINFO_R_ERROR;
1365                 }
1366         }
1367
1368         ret = _appinfo_get_filtered_foreach_appinfo(uid, filter,
1369                         PMINFO_APPINFO_GET_ALL, app_func, user_data);
1370
1371         pkgmgrinfo_appinfo_filter_destroy(filter);
1372
1373         return ret;
1374 }
1375
1376 API int pkgmgrinfo_appinfo_get_list(pkgmgrinfo_pkginfo_h handle,
1377                 pkgmgrinfo_app_component component,
1378                 pkgmgrinfo_app_list_cb app_func, void *user_data)
1379 {
1380         return pkgmgrinfo_appinfo_get_usr_list(handle, component, app_func, user_data, _getuid());
1381 }
1382
1383 API int pkgmgrinfo_appinfo_get_usr_installed_list_full(
1384                 pkgmgrinfo_app_list_cb app_func, uid_t uid, int flag,
1385                 void *user_data)
1386 {
1387         int ret;
1388         pkgmgrinfo_appinfo_filter_h filter;
1389
1390         if (app_func == NULL) {
1391                 LOGE("invalid parameter");
1392                 return PMINFO_R_EINVAL;
1393         }
1394
1395         if (pkgmgrinfo_appinfo_filter_create(&filter)) {
1396                 return PMINFO_R_ERROR;
1397         }
1398
1399         if (pkgmgrinfo_appinfo_filter_add_bool(filter,
1400                                 PMINFO_APPINFO_PROP_APP_DISABLE, false)) {
1401                 pkgmgrinfo_appinfo_filter_destroy(filter);
1402                 return PMINFO_R_ERROR;
1403         }
1404
1405         if (uid == GLOBAL_USER) {
1406                 if (pkgmgrinfo_appinfo_filter_add_int(filter,
1407                                         PMINFO_APPINFO_PROP_APP_DISABLE_FOR_USER,
1408                                         (int)getuid())) {
1409                         pkgmgrinfo_appinfo_filter_destroy(filter);
1410                         return PMINFO_R_ERROR;
1411                 }
1412         }
1413
1414         ret = _appinfo_get_filtered_foreach_appinfo(uid, filter, flag, app_func,
1415                         user_data);
1416
1417         pkgmgrinfo_appinfo_filter_destroy(filter);
1418
1419         return ret;
1420 }
1421
1422 API int pkgmgrinfo_appinfo_get_installed_list_full(
1423                 pkgmgrinfo_app_list_cb app_func, int flag, void *user_data)
1424 {
1425         return pkgmgrinfo_appinfo_get_usr_installed_list_full(app_func,
1426                         _getuid(), flag, user_data);
1427 }
1428
1429 API int pkgmgrinfo_appinfo_get_usr_install_list(pkgmgrinfo_app_list_cb app_func,
1430                 uid_t uid, void *user_data)
1431 {
1432         return pkgmgrinfo_appinfo_get_usr_installed_list_full(app_func,
1433                         uid, PMINFO_APPINFO_GET_ALL, user_data);
1434 }
1435
1436 API int pkgmgrinfo_appinfo_get_install_list(pkgmgrinfo_app_list_cb app_func,
1437                 void *user_data)
1438 {
1439         return pkgmgrinfo_appinfo_get_usr_installed_list_full(app_func,
1440                         _getuid(), PMINFO_APPINFO_GET_ALL, user_data);
1441 }
1442
1443 API int pkgmgrinfo_appinfo_get_usr_installed_list(
1444                 pkgmgrinfo_app_list_cb app_func, uid_t uid, void *user_data)
1445 {
1446         if (app_func == NULL) {
1447                 LOGE("invalid parameter");
1448                 return PMINFO_R_EINVAL;
1449         }
1450
1451         return _appinfo_get_filtered_foreach_appinfo(uid, NULL,
1452                         PMINFO_APPINFO_GET_ALL, app_func, user_data);
1453 }
1454
1455 API int pkgmgrinfo_appinfo_get_installed_list(pkgmgrinfo_app_list_cb app_func,
1456                 void *user_data)
1457 {
1458         return pkgmgrinfo_appinfo_get_usr_installed_list(app_func, _getuid(),
1459                         user_data);
1460 }
1461
1462 API int pkgmgrinfo_appinfo_get_appid(pkgmgrinfo_appinfo_h handle, char **appid)
1463 {
1464         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1465
1466         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1467         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1468
1469         if (info->app_info == NULL || info->app_info->appid == NULL)
1470                 return PMINFO_R_ERROR;
1471         *appid = (char *)info->app_info->appid;
1472
1473         return PMINFO_R_OK;
1474 }
1475
1476 API int pkgmgrinfo_appinfo_get_pkgname(pkgmgrinfo_appinfo_h handle, char **pkg_name)
1477 {
1478         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1479
1480         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1481         retvm_if(pkg_name == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1482
1483         if (info->package == NULL)
1484                 return PMINFO_R_ERROR;
1485
1486         *pkg_name = (char *)info->package;
1487
1488         return PMINFO_R_OK;
1489 }
1490
1491 API int pkgmgrinfo_appinfo_get_pkgid(pkgmgrinfo_appinfo_h handle, char **pkgid)
1492 {
1493         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1494
1495         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1496         retvm_if(pkgid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1497
1498         if (info->package == NULL)
1499                 return PMINFO_R_ERROR;
1500
1501         *pkgid = (char *)info->package;
1502
1503         return PMINFO_R_OK;
1504 }
1505
1506 API int pkgmgrinfo_appinfo_get_pkgtype(pkgmgrinfo_appinfo_h  handle, char **pkgtype)
1507 {
1508         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1509         retvm_if(pkgtype == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1510         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1511
1512         *pkgtype = (char *)info->app_info->package_type;
1513
1514         return PMINFO_R_OK;
1515 }
1516
1517 API int pkgmgrinfo_appinfo_get_exec(pkgmgrinfo_appinfo_h handle, char **exec)
1518 {
1519         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1520
1521         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1522         retvm_if(exec == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1523
1524         if (info->app_info == NULL || info->app_info->exec == NULL)
1525                 return PMINFO_R_ERROR;
1526         *exec = (char *)info->app_info->exec;
1527
1528         return PMINFO_R_OK;
1529 }
1530
1531
1532 API int pkgmgrinfo_appinfo_get_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1533 {
1534         const char *locale;
1535         icon_x *ptr;
1536         GList *tmp;
1537         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1538
1539         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1540         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1541
1542         locale = info->locale;
1543         retvm_if(locale == NULL, PMINFO_R_ERROR, "manifest locale is NULL");
1544
1545         if (info->app_info == NULL)
1546                 return PMINFO_R_ERROR;
1547
1548         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1549                 ptr = (icon_x *)tmp->data;
1550                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1551                                 !strcasecmp(ptr->text, "") ||
1552                                 strcmp(ptr->lang, locale))
1553                         continue;
1554                 *icon = (char *)ptr->text;
1555                 return PMINFO_R_OK;
1556         }
1557
1558         locale = DEFAULT_LOCALE;
1559         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1560                 ptr = (icon_x *)tmp->data;
1561                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1562                                 strcmp(ptr->lang, locale))
1563                         continue;
1564                 *icon = (char *)ptr->text;
1565                 return PMINFO_R_OK;
1566         }
1567
1568         return PMINFO_R_ERROR;
1569 }
1570
1571
1572 API int pkgmgrinfo_appinfo_get_label(pkgmgrinfo_appinfo_h handle, char **label)
1573 {
1574         const char *locale;
1575         label_x *ptr;
1576         GList *tmp;
1577         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1578
1579         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1580         retvm_if(label == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1581
1582         locale = info->locale;
1583         retvm_if(locale == NULL, PMINFO_R_ERROR, "manifest locale is NULL");
1584
1585         if (info->app_info == NULL)
1586                 return PMINFO_R_ERROR;
1587
1588         for (tmp = info->app_info->label; tmp; tmp = tmp->next) {
1589                 ptr = (label_x *)tmp->data;
1590                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1591                                 strcmp(ptr->lang, locale))
1592                         continue;
1593                 *label = (char *)ptr->text;
1594                 return PMINFO_R_OK;
1595         }
1596
1597         locale = DEFAULT_LOCALE;
1598         for (tmp = info->app_info->label; tmp; tmp = tmp->next) {
1599                 ptr = (label_x *)tmp->data;
1600                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1601                                 strcmp(ptr->lang, locale))
1602                         continue;
1603                 *label = (char *)ptr->text;
1604                 return PMINFO_R_OK;
1605         }
1606
1607         return PMINFO_R_ERROR;
1608 }
1609
1610 static char *_get_localed_label(const char *appid, const char *locale, uid_t uid)
1611 {
1612         char *result = NULL;
1613         char *query = NULL;
1614         sqlite3_stmt *stmt = NULL;
1615         sqlite3 *db = NULL;
1616         char *val;
1617         const char *manifest_db;
1618
1619         manifest_db = getUserPkgParserDBPathUID(uid);
1620         if (manifest_db == NULL) {
1621                 _LOGE("Failed to get manifest db path");
1622                 goto err;
1623         }
1624
1625         if (sqlite3_open_v2(manifest_db, &db, SQLITE_OPEN_READONLY, NULL) != SQLITE_OK) {
1626                 _LOGE("DB open fail\n");
1627                 goto err;
1628         }
1629
1630         query = sqlite3_mprintf("select app_label from package_app_localized_info where app_id=%Q and app_locale=%Q", appid, locale);
1631         if (query == NULL) {
1632                 _LOGE("Out of memory");
1633                 goto err;
1634         }
1635
1636         if (sqlite3_prepare_v2(db, query, -1, &stmt, NULL) != SQLITE_OK) {
1637                 _LOGE("prepare_v2 fail\n");
1638                 goto err;
1639         }
1640
1641         if (sqlite3_step(stmt) == SQLITE_ROW) {
1642                 val = (char *)sqlite3_column_text(stmt, 0);
1643                 if (val != NULL)
1644                         result = strdup(val);
1645         }
1646
1647 err:
1648         sqlite3_finalize(stmt);
1649         sqlite3_free(query);
1650         sqlite3_close(db);
1651
1652         return result;
1653 }
1654
1655 API int pkgmgrinfo_appinfo_usr_get_localed_label(const char *appid, const char *locale, uid_t uid, char **label)
1656 {
1657         char *val;
1658
1659         retvm_if(appid == NULL || locale == NULL || label == NULL, PMINFO_R_EINVAL, "Argument is NULL");
1660
1661         val = _get_localed_label(appid, locale, uid);
1662         if (val == NULL)
1663                 val = _get_localed_label(appid, DEFAULT_LOCALE, uid);
1664
1665         if (val == NULL)
1666                 return PMINFO_R_ERROR;
1667
1668         *label = val;
1669
1670         return PMINFO_R_OK;
1671 }
1672
1673 API int pkgmgrinfo_appinfo_get_localed_label(const char *appid, const char *locale, char **label)
1674 {
1675         return pkgmgrinfo_appinfo_usr_get_localed_label(appid, locale, _getuid(), label);
1676 }
1677
1678 API int pkgmgrinfo_appinfo_get_metadata_value(pkgmgrinfo_appinfo_h handle, const char *metadata_key, char **metadata_value)
1679 {
1680         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1681         retvm_if(metadata_key == NULL, PMINFO_R_EINVAL, "metadata_key is NULL");
1682         retvm_if(metadata_value == NULL, PMINFO_R_EINVAL, "metadata_value is NULL");
1683
1684         GList *list_md = NULL;
1685         metadata_x *metadata = NULL;
1686         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1687
1688         list_md = info->app_info->metadata;
1689
1690         for (; list_md; list_md = list_md->next) {
1691                 metadata = (metadata_x *)list_md->data;
1692                 if (metadata && metadata->key) {
1693                         if (strcasecmp(metadata->key, metadata_key) == 0) {
1694                                 *metadata_value = (char*)metadata->value;
1695                                 return PMINFO_R_OK;
1696                         }
1697                 }
1698         }
1699
1700         return PMINFO_R_EINVAL;
1701 }
1702
1703 static pkgmgrinfo_app_component __appcomponent_convert(const char *comp)
1704 {
1705         if (strcasecmp(comp, "uiapp") == 0)
1706                 return PMINFO_UI_APP;
1707         else if (strcasecmp(comp, "svcapp") == 0)
1708                 return PMINFO_SVC_APP;
1709         else if (strcasecmp(comp, "widgetapp") == 0)
1710                 return PMINFO_WIDGET_APP;
1711         else if (strcasecmp(comp, "watchapp") == 0)
1712                 return PMINFO_WATCH_APP;
1713         else
1714                 return -1;
1715 }
1716
1717 static const char *__appcomponent_str(pkgmgrinfo_app_component comp)
1718 {
1719         switch (comp) {
1720         case PMINFO_UI_APP:
1721                 return "uiapp";
1722         case PMINFO_SVC_APP:
1723                 return "svcapp";
1724         case PMINFO_WIDGET_APP:
1725                 return "widgetapp";
1726         case PMINFO_WATCH_APP:
1727                 return "watchapp";
1728         default:
1729                 return NULL;
1730         }
1731 }
1732
1733 API int pkgmgrinfo_appinfo_get_component(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_component *component)
1734 {
1735         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1736         int comp;
1737
1738         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1739         retvm_if(component == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1740
1741         if (info->app_info == NULL)
1742                 return PMINFO_R_ERROR;
1743
1744         comp = __appcomponent_convert(info->app_info->component);
1745         if (comp < 0)
1746                 return PMINFO_R_ERROR;
1747
1748         *component = comp;
1749
1750         return PMINFO_R_OK;
1751 }
1752
1753 API int pkgmgrinfo_appinfo_get_apptype(pkgmgrinfo_appinfo_h handle, char **app_type)
1754 {
1755         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1756
1757         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1758         retvm_if(app_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1759
1760         if (info->app_info == NULL || info->app_info->type == NULL)
1761                 return PMINFO_R_ERROR;
1762         *app_type = (char *)info->app_info->type;
1763
1764         return PMINFO_R_OK;
1765 }
1766
1767 API int pkgmgrinfo_appinfo_get_operation(pkgmgrinfo_appcontrol_h  handle,
1768                                         int *operation_count, char ***operation)
1769 {
1770         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1771         retvm_if(operation == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1772         retvm_if(operation_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1773         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1774         *operation_count = data->operation_count;
1775         *operation = data->operation;
1776         return PMINFO_R_OK;
1777 }
1778
1779 API int pkgmgrinfo_appinfo_get_uri(pkgmgrinfo_appcontrol_h  handle,
1780                                         int *uri_count, char ***uri)
1781 {
1782         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1783         retvm_if(uri == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1784         retvm_if(uri_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1785         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1786         *uri_count = data->uri_count;
1787         *uri = data->uri;
1788         return PMINFO_R_OK;
1789 }
1790
1791 API int pkgmgrinfo_appinfo_get_mime(pkgmgrinfo_appcontrol_h  handle,
1792                                         int *mime_count, char ***mime)
1793 {
1794         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1795         retvm_if(mime == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1796         retvm_if(mime_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1797         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1798         *mime_count = data->mime_count;
1799         *mime = data->mime;
1800         return PMINFO_R_OK;
1801 }
1802
1803 API int pkgmgrinfo_appinfo_get_subapp(pkgmgrinfo_appcontrol_h  handle,
1804                                         int *subapp_count, char ***subapp)
1805 {
1806         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1807         retvm_if(subapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1808         retvm_if(subapp_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1809         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1810         *subapp_count = data->subapp_count;
1811         *subapp = data->subapp;
1812         return PMINFO_R_OK;
1813 }
1814
1815 API int pkgmgrinfo_appinfo_get_setting_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1816 {
1817         char *val;
1818         icon_x *ptr;
1819         GList *tmp;
1820         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1821
1822         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1823         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1824
1825         if (info->app_info == NULL)
1826                 return PMINFO_R_ERROR;
1827
1828         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1829                 ptr = (icon_x *)tmp->data;
1830                 if (ptr == NULL || ptr->section == NULL)
1831                         continue;
1832
1833                 val = (char *)ptr->section;
1834                 if (val && strcmp(val, "setting") == 0) {
1835                         *icon = (char *)ptr->text;
1836                         return PMINFO_R_OK;
1837                 }
1838         }
1839
1840         return PMINFO_R_ERROR;
1841 }
1842
1843
1844 API int pkgmgrinfo_appinfo_get_notification_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1845 {
1846         char *val;
1847         icon_x *ptr;
1848         GList *tmp;
1849         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1850
1851         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1852         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1853
1854         if (info->app_info == NULL)
1855                 return PMINFO_R_ERROR;
1856
1857         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1858                 ptr = (icon_x *)tmp->data;
1859                 if (ptr == NULL || ptr->section == NULL)
1860                         continue;
1861
1862                 val = (char *)ptr->section;
1863                 if (val && strcmp(val, "notification") == 0){
1864                         *icon = (char *)ptr->text;
1865                         return PMINFO_R_OK;
1866                 }
1867         }
1868
1869         return PMINFO_R_ERROR;
1870 }
1871
1872 API int pkgmgrinfo_appinfo_get_recent_image_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_recentimage *type)
1873 {
1874         char *val;
1875         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1876
1877         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1878         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1879
1880         if (info->app_info == NULL || info->app_info->recentimage == NULL)
1881                 return PMINFO_R_ERROR;
1882
1883         val = (char *)info->app_info->recentimage;
1884         if (strcasecmp(val, "capture") == 0)
1885                 *type = PMINFO_RECENTIMAGE_USE_CAPTURE;
1886         else if (strcasecmp(val, "icon") == 0)
1887                 *type = PMINFO_RECENTIMAGE_USE_ICON;
1888         else
1889                 *type = PMINFO_RECENTIMAGE_USE_NOTHING;
1890
1891         return PMINFO_R_OK;
1892 }
1893
1894 API int pkgmgrinfo_appinfo_get_preview_image(pkgmgrinfo_appinfo_h handle, char **preview_img)
1895 {
1896         char *val;
1897         image_x *ptr;
1898         GList *tmp;
1899         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1900
1901         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1902         retvm_if(preview_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1903
1904         if (info->app_info == NULL)
1905                 return PMINFO_R_ERROR;
1906
1907         for (tmp = info->app_info->image; tmp; tmp = tmp->next) {
1908                 ptr = (image_x *)tmp->data;
1909                 if (ptr == NULL || ptr->section == NULL)
1910                         continue;
1911
1912                 val = (char *)ptr->section;
1913                 if (val && strcmp(val, "preview") == 0) {
1914                         *preview_img = (char *)ptr->text;
1915                         return PMINFO_R_OK;
1916                 }
1917         }
1918
1919         return PMINFO_R_ERROR;
1920 }
1921
1922 API int pkgmgrinfo_appinfo_get_permission_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_permission_type *permission)
1923 {
1924         const char *val;
1925         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1926
1927         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1928         retvm_if(permission == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1929
1930         val = info->app_info->permission_type;
1931         if (val == NULL)
1932                 return PMINFO_R_ERROR;
1933
1934         if (strcmp(val, "signature") == 0)
1935                 *permission = PMINFO_PERMISSION_SIGNATURE;
1936         else if (strcmp(val, "privilege") == 0)
1937                 *permission = PMINFO_PERMISSION_PRIVILEGE;
1938         else
1939                 *permission = PMINFO_PERMISSION_NORMAL;
1940
1941         return PMINFO_R_OK;
1942 }
1943
1944 API int pkgmgrinfo_appinfo_get_component_type(pkgmgrinfo_appinfo_h handle, char **component_type)
1945 {
1946         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1947
1948         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1949         retvm_if(component_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1950
1951         if (info->app_info == NULL || info->app_info->component_type == NULL)
1952                 return PMINFO_R_ERROR;
1953
1954         *component_type = (char *)info->app_info->component_type;
1955
1956         return PMINFO_R_OK;
1957 }
1958
1959 API int pkgmgrinfo_appinfo_get_hwacceleration(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_hwacceleration *hwacceleration)
1960 {
1961         char *val;
1962         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1963
1964         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1965         retvm_if(hwacceleration == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1966
1967         if (info->app_info == NULL || info->app_info->hwacceleration == NULL)
1968                 return PMINFO_R_ERROR;
1969
1970         val = (char *)info->app_info->hwacceleration;
1971         if (strcasecmp(val, "off") == 0)
1972                 *hwacceleration = PMINFO_HWACCELERATION_OFF;
1973         else if (strcasecmp(val, "on") == 0)
1974                 *hwacceleration = PMINFO_HWACCELERATION_ON;
1975         else
1976                 *hwacceleration = PMINFO_HWACCELERATION_DEFAULT;
1977
1978         return PMINFO_R_OK;
1979 }
1980
1981 API int pkgmgrinfo_appinfo_get_screenreader(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_screenreader *screenreader)
1982 {
1983         char *val;
1984         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1985
1986         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1987         retvm_if(screenreader == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1988
1989         if (info->app_info == NULL || info->app_info->screenreader == NULL)
1990                 return PMINFO_R_ERROR;
1991
1992         val = (char *)info->app_info->screenreader;
1993         if (strcasecmp(val, "screenreader-off") == 0)
1994                 *screenreader = PMINFO_SCREENREADER_OFF;
1995         else if (strcasecmp(val, "screenreader-on") == 0)
1996                 *screenreader = PMINFO_SCREENREADER_ON;
1997         else
1998                 *screenreader = PMINFO_SCREENREADER_USE_SYSTEM_SETTING;
1999
2000         return PMINFO_R_OK;
2001 }
2002
2003 API int pkgmgrinfo_appinfo_get_effectimage(pkgmgrinfo_appinfo_h handle, char **portrait_img, char **landscape_img)
2004 {
2005         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2006
2007         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2008         retvm_if(portrait_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2009         retvm_if(landscape_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2010
2011         if (info->app_info == NULL || (info->app_info->portraitimg == NULL
2012                         && info->app_info->landscapeimg == NULL))
2013                 return PMINFO_R_ERROR;
2014
2015         *portrait_img = (char *)info->app_info->portraitimg;
2016         *landscape_img = (char *)info->app_info->landscapeimg;
2017
2018         return PMINFO_R_OK;
2019 }
2020
2021 API int pkgmgrinfo_appinfo_get_effectimage_type(pkgmgrinfo_appinfo_h handle, char **effectimage_type)
2022 {
2023         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2024
2025         if (handle == NULL || effectimage_type == NULL) {
2026                 LOGE("invalid parameter");
2027                 return PMINFO_R_EINVAL;
2028         }
2029
2030         if (info->app_info == NULL || info->app_info->effectimage_type == NULL)
2031                 return PMINFO_R_ERROR;
2032
2033         *effectimage_type = (char *)info->app_info->effectimage_type;
2034
2035         return PMINFO_R_OK;
2036 }
2037
2038 API int pkgmgrinfo_appinfo_get_submode_mainid(pkgmgrinfo_appinfo_h  handle, char **submode_mainid)
2039 {
2040         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2041
2042         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2043         retvm_if(submode_mainid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2044
2045         if (info->app_info == NULL || info->app_info->submode_mainid == NULL)
2046                 return PMINFO_R_ERROR;
2047
2048         *submode_mainid = (char *)info->app_info->submode_mainid;
2049
2050         return PMINFO_R_OK;
2051 }
2052
2053 API int pkgmgrinfo_appinfo_get_installed_storage_location(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_installed_storage *storage)
2054 {
2055         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2056         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2057
2058         if (info->app_info && info->app_info->installed_storage){
2059                  if (strcmp(info->app_info->installed_storage,"installed_internal") == 0)
2060                         *storage = PMINFO_INTERNAL_STORAGE;
2061                  else if (strcmp(info->app_info->installed_storage,"installed_external") == 0)
2062                          *storage = PMINFO_EXTERNAL_STORAGE;
2063                  else
2064                          return PMINFO_R_ERROR;
2065         }else
2066                 return PMINFO_R_ERROR;
2067
2068         return PMINFO_R_OK;
2069 }
2070
2071 API int pkgmgrinfo_appinfo_get_launch_mode(pkgmgrinfo_appinfo_h handle, char **mode)
2072 {
2073         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2074
2075         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2076         retvm_if(mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2077
2078         if (info->app_info->launch_mode == NULL)
2079                 return PMINFO_R_ERROR;
2080
2081         *mode = (char *)(info->app_info->launch_mode);
2082
2083         return PMINFO_R_OK;
2084 }
2085
2086 API int pkgmgrinfo_appinfo_get_alias_appid(pkgmgrinfo_appinfo_h handle, char **alias_appid)
2087 {
2088         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2089
2090         if (handle == NULL || alias_appid == NULL) {
2091                 LOGE("invalid parameter");
2092                 return PMINFO_R_EINVAL;
2093         }
2094
2095         if (info->app_info == NULL || info->app_info->alias_appid == NULL)
2096                 return PMINFO_R_ERROR;
2097
2098         *alias_appid = (char *)info->app_info->alias_appid;
2099
2100         return PMINFO_R_OK;
2101 }
2102
2103 API int pkgmgrinfo_appinfo_get_effective_appid(pkgmgrinfo_appinfo_h handle, char **effective_appid)
2104 {
2105         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2106
2107         if (handle == NULL || effective_appid == NULL) {
2108                 LOGE("invalid parameter");
2109                 return PMINFO_R_EINVAL;
2110         }
2111
2112         if (info->app_info == NULL || info->app_info->effective_appid == NULL)
2113                 return PMINFO_R_ERROR;
2114
2115         *effective_appid = (char *)info->app_info->effective_appid;
2116
2117         return PMINFO_R_OK;
2118 }
2119
2120 API int pkgmgrinfo_appinfo_get_tep_name(pkgmgrinfo_appinfo_h handle, char **tep_name)
2121 {
2122         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2123
2124         if (handle == NULL || tep_name == NULL) {
2125                 LOGE("invalid parameter");
2126                 return PMINFO_R_EINVAL;
2127         }
2128
2129         if (info->app_info == NULL || info->app_info->tep_name == NULL)
2130                 return PMINFO_R_ERROR;
2131
2132         *tep_name = (char *)info->app_info->tep_name;
2133
2134         return PMINFO_R_OK;
2135 }
2136
2137 API int pkgmgrinfo_appinfo_get_zip_mount_file(pkgmgrinfo_appinfo_h handle, char **zip_mount_file)
2138 {
2139         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2140
2141         if (handle == NULL || zip_mount_file == NULL) {
2142                 LOGE("invalid parameter");
2143                 return PMINFO_R_EINVAL;
2144         }
2145
2146         *zip_mount_file = (char *)info->app_info->zip_mount_file;
2147
2148         return PMINFO_R_OK;
2149 }
2150
2151 API int pkgmgrinfo_appinfo_get_root_path(pkgmgrinfo_appinfo_h handle, char **root_path)
2152 {
2153         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2154
2155         if (handle == NULL || root_path == NULL) {
2156                 LOGE("invalid parameter");
2157                 return PMINFO_R_EINVAL;
2158         }
2159
2160         if (info->app_info == NULL || info->app_info->root_path == NULL)
2161                 return PMINFO_R_ERROR;
2162
2163         *root_path = (char *)info->app_info->root_path;
2164
2165         return PMINFO_R_OK;
2166 }
2167
2168 API int pkgmgrinfo_appinfo_get_api_version(pkgmgrinfo_appinfo_h handle, char **api_version)
2169 {
2170         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2171
2172         if (handle == NULL || api_version == NULL) {
2173                 LOGE("invalid parameter");
2174                 return PMINFO_R_EINVAL;
2175         }
2176
2177         if (info->app_info == NULL || info->app_info->api_version == NULL)
2178                 return PMINFO_R_ERROR;
2179
2180         *api_version = (char *)info->app_info->api_version;
2181
2182         return PMINFO_R_OK;
2183 }
2184
2185 API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid, const char *type, uid_t uid, char **appid, char **access)
2186 {
2187         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2188         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2189         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2190         retvm_if(access == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2191
2192         int ret = PMINFO_R_OK;
2193         char *query = NULL;
2194         sqlite3_stmt *stmt = NULL;
2195
2196         /*open db*/
2197         ret = __open_manifest_db(uid, true);
2198         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2199
2200         /*Start constructing query*/
2201         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q and type=%Q", providerid, type);
2202
2203         /*prepare query*/
2204         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2205         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2206
2207         /*step query*/
2208         ret = sqlite3_step(stmt);
2209         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2210
2211         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2212         *access = strdup((char *)sqlite3_column_text(stmt, 2));
2213
2214         ret = PMINFO_R_OK;
2215
2216 catch:
2217         sqlite3_free(query);
2218         sqlite3_finalize(stmt);
2219         __close_manifest_db();
2220         return ret;
2221 }
2222
2223 API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid, const char *type, char **appid, char **access)
2224 {
2225         return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid, type, _getuid(), appid, access);
2226 }
2227
2228 API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid, uid_t uid, char **appid)
2229 {
2230         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2231         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2232
2233         int ret = PMINFO_R_OK;
2234         char *query = NULL;
2235         sqlite3_stmt *stmt = NULL;
2236
2237         /*open db*/
2238         ret = __open_manifest_db(uid, true);
2239         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2240
2241         /*Start constructing query*/
2242         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q", providerid);
2243
2244         /*prepare query*/
2245         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2246         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2247
2248         /*step query*/
2249         ret = sqlite3_step(stmt);
2250         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2251
2252         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2253
2254         ret = PMINFO_R_OK;
2255
2256 catch:
2257         sqlite3_free(query);
2258         sqlite3_finalize(stmt);
2259         __close_manifest_db();
2260         return ret;
2261 }
2262
2263 API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid)
2264 {
2265         return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, _getuid(), appid);
2266 }
2267
2268 API int pkgmgrinfo_appinfo_foreach_permission(pkgmgrinfo_appinfo_h handle,
2269                         pkgmgrinfo_app_permission_list_cb permission_func, void *user_data)
2270 {
2271         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2272         retvm_if(permission_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2273         int ret = -1;
2274         permission_x *ptr;
2275         GList *tmp;
2276         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2277
2278         if (info->app_info == NULL)
2279                 return PMINFO_R_ERROR;
2280
2281         for (tmp = info->app_info->permission; tmp; tmp = tmp->next) {
2282                 ptr = (permission_x *)tmp->data;
2283                 if (ptr == NULL)
2284                         continue;
2285                 if (ptr->value) {
2286                         ret = permission_func(ptr->value, user_data);
2287                         if (ret < 0)
2288                                 break;
2289                 }
2290         }
2291         return PMINFO_R_OK;
2292 }
2293
2294 API int pkgmgrinfo_appinfo_foreach_category(pkgmgrinfo_appinfo_h handle,
2295                         pkgmgrinfo_app_category_list_cb category_func, void *user_data)
2296 {
2297         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2298         retvm_if(category_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2299         int ret = -1;
2300         const char *category;
2301         GList *tmp;
2302         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2303
2304         if (info->app_info == NULL)
2305                 return PMINFO_R_ERROR;
2306
2307         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2308                 category = (const char *)tmp->data;
2309                 if (category) {
2310                         ret = category_func(category, user_data);
2311                         if (ret < 0)
2312                                 break;
2313                 }
2314         }
2315         return PMINFO_R_OK;
2316 }
2317
2318 API int pkgmgrinfo_appinfo_foreach_metadata(pkgmgrinfo_appinfo_h handle,
2319                         pkgmgrinfo_app_metadata_list_cb metadata_func, void *user_data)
2320 {
2321         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2322         retvm_if(metadata_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2323         int ret = -1;
2324         metadata_x *ptr;
2325         GList *tmp;
2326         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2327
2328         if (info->app_info == NULL)
2329                 return PMINFO_R_ERROR;
2330
2331         for (tmp = info->app_info->metadata; tmp; tmp = tmp->next) {
2332                 ptr = (metadata_x *)tmp->data;
2333                 if (ptr == NULL)
2334                         continue;
2335                 if (ptr->key) {
2336                         ret = metadata_func(ptr->key, ptr->value, user_data);
2337                         if (ret < 0)
2338                                 break;
2339                 }
2340         }
2341         return PMINFO_R_OK;
2342 }
2343
2344 API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle,
2345                         pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data)
2346 {
2347         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2348         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2349         int ret;
2350         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2351         appcontrol_x *appcontrol;
2352         GList *tmp;
2353
2354         if (info->app_info == NULL)
2355                 return PMINFO_R_ERROR;
2356
2357         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
2358                 appcontrol = (appcontrol_x *)tmp->data;
2359                 if (appcontrol == NULL)
2360                         continue;
2361                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data);
2362                 if (ret < 0)
2363                         break;
2364         }
2365
2366         return PMINFO_R_OK;
2367 }
2368
2369 API int pkgmgrinfo_appinfo_foreach_background_category(
2370                 pkgmgrinfo_appinfo_h handle,
2371                 pkgmgrinfo_app_background_category_list_cb category_func,
2372                 void *user_data)
2373 {
2374         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2375         GList *tmp;
2376         char *category;
2377
2378         if (handle == NULL || category_func == NULL || info->app_info == NULL) {
2379                 LOGE("invalid parameter");
2380                 return PMINFO_R_EINVAL;
2381         }
2382
2383         for (tmp = info->app_info->background_category; tmp; tmp = tmp->next) {
2384                 category = (char *)tmp->data;
2385                 if (category == NULL)
2386                         continue;
2387
2388                 if (category_func(category, user_data) < 0)
2389                         break;
2390         }
2391
2392         return PMINFO_R_OK;
2393 }
2394
2395 API int pkgmgrinfo_appinfo_foreach_splash_screen(pkgmgrinfo_appinfo_h handle,
2396                 pkgmgrinfo_app_splash_screen_list_cb splash_screen_func,
2397                 void *user_data)
2398 {
2399         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2400         splashscreen_x *splashscreen;
2401         GList *tmp;
2402         int ret;
2403
2404         if (info == NULL || info->app_info == NULL
2405                         || splash_screen_func == NULL) {
2406                 LOGE("invalid parameter");
2407                 return PMINFO_R_EINVAL;
2408         }
2409
2410         for (tmp = info->app_info->splashscreens; tmp; tmp = tmp->next) {
2411                 splashscreen = (splashscreen_x *)tmp->data;
2412                 if (splashscreen == NULL)
2413                         continue;
2414                 ret = splash_screen_func(splashscreen->src,
2415                                 splashscreen->type,
2416                                 splashscreen->orientation,
2417                                 splashscreen->indicatordisplay,
2418                                 splashscreen->operation,
2419                                 splashscreen->color_depth,
2420                                 user_data);
2421                 if (ret < 0)
2422                         break;
2423         }
2424
2425         return PMINFO_R_OK;
2426 }
2427
2428 API int pkgmgrinfo_appinfo_is_nodisplay(pkgmgrinfo_appinfo_h handle, bool *nodisplay)
2429 {
2430         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2431         retvm_if(nodisplay == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2432         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2433
2434         if (info->app_info == NULL || info->app_info->nodisplay == NULL)
2435                 return PMINFO_R_ERROR;
2436
2437         *nodisplay = _get_bool_value(info->app_info->nodisplay);
2438
2439         return PMINFO_R_OK;
2440 }
2441
2442 API int pkgmgrinfo_appinfo_is_multiple(pkgmgrinfo_appinfo_h handle, bool *multiple)
2443 {
2444         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2445         retvm_if(multiple == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2446         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2447
2448         if (info->app_info == NULL || info->app_info->multiple == NULL)
2449                 return PMINFO_R_ERROR;
2450
2451         *multiple = _get_bool_value(info->app_info->multiple);
2452
2453         return PMINFO_R_OK;
2454 }
2455
2456 API int pkgmgrinfo_appinfo_is_indicator_display_allowed(pkgmgrinfo_appinfo_h handle, bool *indicator_disp)
2457 {
2458         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2459         retvm_if(indicator_disp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2460         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2461
2462         if (info->app_info == NULL || info->app_info->indicatordisplay == NULL)
2463                 return PMINFO_R_ERROR;
2464
2465         *indicator_disp = _get_bool_value(info->app_info->indicatordisplay);
2466
2467         return PMINFO_R_OK;
2468 }
2469
2470 API int pkgmgrinfo_appinfo_is_taskmanage(pkgmgrinfo_appinfo_h  handle, bool *taskmanage)
2471 {
2472         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2473         retvm_if(taskmanage == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2474         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2475
2476         if (info->app_info == NULL || info->app_info->taskmanage == NULL)
2477                 return PMINFO_R_ERROR;
2478
2479         *taskmanage = _get_bool_value(info->app_info->taskmanage);
2480
2481         return PMINFO_R_OK;
2482 }
2483
2484 API int pkgmgrinfo_appinfo_is_enabled(pkgmgrinfo_appinfo_h  handle, bool *enabled)
2485 {
2486         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2487         retvm_if(enabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2488         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2489
2490         if (info->app_info == NULL || info->app_info->enabled == NULL)
2491                 return PMINFO_R_ERROR;
2492
2493         *enabled = _get_bool_value(info->app_info->enabled);
2494
2495         return PMINFO_R_OK;
2496 }
2497
2498 API int pkgmgrinfo_appinfo_is_onboot(pkgmgrinfo_appinfo_h  handle, bool *onboot)
2499 {
2500         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2501         retvm_if(onboot == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2502         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2503
2504         if (info->app_info == NULL || info->app_info->onboot == NULL)
2505                 return PMINFO_R_ERROR;
2506
2507         *onboot = _get_bool_value(info->app_info->onboot);
2508
2509         return PMINFO_R_OK;
2510 }
2511
2512 API int pkgmgrinfo_appinfo_is_autorestart(pkgmgrinfo_appinfo_h  handle, bool *autorestart)
2513 {
2514         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2515         retvm_if(autorestart == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2516         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2517
2518         if (info->app_info == NULL || info->app_info->autorestart == NULL)
2519                 return PMINFO_R_ERROR;
2520
2521         *autorestart = _get_bool_value(info->app_info->autorestart);
2522
2523         return PMINFO_R_OK;
2524 }
2525
2526 API int pkgmgrinfo_appinfo_is_mainapp(pkgmgrinfo_appinfo_h  handle, bool *mainapp)
2527 {
2528         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2529         retvm_if(mainapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2530         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2531
2532         if (info->app_info == NULL || info->app_info->mainapp == NULL)
2533                 return PMINFO_R_ERROR;
2534
2535         *mainapp = _get_bool_value(info->app_info->mainapp);
2536
2537         return PMINFO_R_OK;
2538 }
2539
2540 API int pkgmgrinfo_appinfo_is_preload(pkgmgrinfo_appinfo_h handle, bool *preload)
2541 {
2542         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2543         retvm_if(preload == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2544         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2545
2546         if (info->app_info == NULL || info->app_info->preload == NULL)
2547                 return PMINFO_R_ERROR;
2548
2549         *preload = _get_bool_value(info->app_info->preload);
2550
2551         return PMINFO_R_OK;
2552 }
2553
2554 API int pkgmgrinfo_appinfo_is_submode(pkgmgrinfo_appinfo_h handle, bool *submode)
2555 {
2556         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2557         retvm_if(submode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2558         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2559
2560         if (info->app_info == NULL || info->app_info->submode == NULL)
2561                 return PMINFO_R_ERROR;
2562
2563         *submode = _get_bool_value(info->app_info->submode);
2564
2565         return PMINFO_R_OK;
2566 }
2567
2568 API int pkgmgrinfo_appinfo_is_process_pool(pkgmgrinfo_appinfo_h handle, bool *process_pool)
2569 {
2570         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2571
2572         if (handle == NULL || process_pool == NULL) {
2573                 LOGE("invalid parameter");
2574                 return PMINFO_R_EINVAL;
2575         }
2576
2577         if (info->app_info == NULL)
2578                 return PMINFO_R_ERROR;
2579
2580         *process_pool = _get_bool_value(info->app_info->process_pool);
2581
2582         return PMINFO_R_OK;
2583 }
2584
2585 API int pkgmgrinfo_appinfo_is_category_exist(pkgmgrinfo_appinfo_h handle, const char *category, bool *exist)
2586 {
2587         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2588         retvm_if(category == NULL, PMINFO_R_EINVAL, "category is NULL");
2589         retvm_if(exist == NULL, PMINFO_R_EINVAL, "exist is NULL");
2590
2591         const char *val;
2592         GList *tmp;
2593         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2594
2595         if (info->app_info == NULL)
2596                 return PMINFO_R_ERROR;
2597
2598         *exist = 0;
2599         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2600                 val = (const char *)tmp->data;
2601                 if (val == NULL)
2602                         continue;
2603                 if (strcasecmp(val, category) == 0) {
2604                         *exist = 1;
2605                         break;
2606                 }
2607         }
2608
2609         return PMINFO_R_OK;
2610 }
2611
2612 API int pkgmgrinfo_appinfo_is_ui_gadget(pkgmgrinfo_appinfo_h handle,
2613                 bool *ui_gadget)
2614 {
2615         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2616
2617         if (info == NULL || info->app_info == NULL || ui_gadget == NULL) {
2618                 _LOGE("invalid parameter");
2619                 return PMINFO_R_EINVAL;
2620         }
2621
2622         *ui_gadget = _get_bool_value(info->app_info->ui_gadget);
2623
2624         return PMINFO_R_OK;
2625 }
2626
2627 API int pkgmgrinfo_appinfo_is_support_disable(pkgmgrinfo_appinfo_h handle,
2628                 bool *support_disable)
2629 {
2630         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2631
2632         if (info == NULL || info->app_info == NULL || support_disable == NULL) {
2633                 _LOGE("invalid parameter");
2634                 return PMINFO_R_EINVAL;
2635         }
2636
2637         *support_disable = _get_bool_value(info->app_info->support_disable);
2638
2639         return PMINFO_R_OK;
2640 }
2641
2642 API int pkgmgrinfo_appinfo_is_disabled(pkgmgrinfo_appinfo_h handle, bool *disabled)
2643 {
2644         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2645         retvm_if(disabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2646         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2647
2648         if (info->app_info == NULL || info->app_info->is_disabled == NULL)
2649                 return PMINFO_R_ERROR;
2650
2651         *disabled = _get_bool_value(info->app_info->is_disabled);
2652
2653         return PMINFO_R_OK;
2654 }
2655
2656 API int pkgmgrinfo_appinfo_is_global(pkgmgrinfo_appinfo_h handle, bool *global)
2657 {
2658         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2659
2660         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2661         retvm_if(global == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2662
2663         if (info->app_info == NULL || info->app_info->for_all_users == NULL)
2664                 return PMINFO_R_ERROR;
2665
2666         *global = _get_bool_value(info->app_info->for_all_users);
2667
2668         return PMINFO_R_OK;
2669 }
2670
2671 API int pkgmgrinfo_appinfo_get_splash_screen_display(pkgmgrinfo_appinfo_h handle, bool *splash_screen_display)
2672 {
2673         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2674
2675         if (info == NULL || splash_screen_display == NULL) {
2676                 _LOGE("Invalid parameter");
2677                 return PMINFO_R_EINVAL;
2678         }
2679
2680         if (info->app_info == NULL || info->app_info->splash_screen_display == NULL)
2681                 return PMINFO_R_ERROR;
2682
2683         *splash_screen_display = _get_bool_value(info->app_info->splash_screen_display);
2684
2685         return PMINFO_R_OK;
2686 }
2687
2688 API int pkgmgrinfo_appinfo_destroy_appinfo(pkgmgrinfo_appinfo_h handle)
2689 {
2690         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2691         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2692         __cleanup_appinfo(info);
2693         return PMINFO_R_OK;
2694 }
2695
2696 API int pkgmgrinfo_appinfo_filter_create(pkgmgrinfo_appinfo_filter_h *handle)
2697 {
2698         return (pkgmgrinfo_pkginfo_filter_create(handle));
2699 }
2700
2701 API int pkgmgrinfo_appinfo_filter_destroy(pkgmgrinfo_appinfo_filter_h handle)
2702 {
2703         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2704 }
2705
2706 static gint __compare_func(gconstpointer data1, gconstpointer data2)
2707 {
2708         pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x*)data1;
2709         pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x*)data2;
2710         if (node1->prop == node2->prop)
2711                 return 0;
2712         else if (node1->prop > node2->prop)
2713                 return 1;
2714         else
2715                 return -1;
2716 }
2717
2718 API int pkgmgrinfo_appinfo_filter_add_int(pkgmgrinfo_appinfo_filter_h handle,
2719                                 const char *property, const int value)
2720 {
2721         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2722         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2723         char buf[PKG_VALUE_STRING_LEN_MAX] = {'\0'};
2724         char *val = NULL;
2725         GSList *link = NULL;
2726         int prop = -1;
2727         prop = _pminfo_appinfo_convert_to_prop_int(property);
2728         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_INT ||
2729                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_INT) {
2730                 _LOGE("Invalid Integer Property\n");
2731                 return PMINFO_R_EINVAL;
2732         }
2733         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2734         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2735         if (node == NULL) {
2736                 _LOGE("Out of Memory!!!\n");
2737                 return PMINFO_R_ERROR;
2738         }
2739         snprintf(buf, PKG_VALUE_STRING_LEN_MAX - 1, "%d", value);
2740         val = strndup(buf, PKG_VALUE_STRING_LEN_MAX - 1);
2741         if (val == NULL) {
2742                 _LOGE("Out of Memory\n");
2743                 free(node);
2744                 node = NULL;
2745                 return PMINFO_R_ERROR;
2746         }
2747         node->prop = prop;
2748         node->value = val;
2749         /*If API is called multiple times for same property, we should override the previous values.
2750         Last value set will be used for filtering.*/
2751         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2752         if (link)
2753                 filter->list = g_slist_delete_link(filter->list, link);
2754         filter->list = g_slist_append(filter->list, (gpointer)node);
2755         return PMINFO_R_OK;
2756
2757 }
2758
2759 API int pkgmgrinfo_appinfo_filter_add_bool(pkgmgrinfo_appinfo_filter_h handle,
2760                                 const char *property, const bool value)
2761 {
2762         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2763         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2764         char *val = NULL;
2765         GSList *link = NULL;
2766         int prop = -1;
2767         prop = _pminfo_appinfo_convert_to_prop_bool(property);
2768         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_BOOL ||
2769                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_BOOL) {
2770                 _LOGE("Invalid Boolean Property\n");
2771                 return PMINFO_R_EINVAL;
2772         }
2773         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2774         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2775         if (node == NULL) {
2776                 _LOGE("Out of Memory!!!\n");
2777                 return PMINFO_R_ERROR;
2778         }
2779         if (value)
2780                 val = strndup("true", 4);
2781         else
2782                 val = strndup("false", 5);
2783         if (val == NULL) {
2784                 _LOGE("Out of Memory\n");
2785                 free(node);
2786                 node = NULL;
2787                 return PMINFO_R_ERROR;
2788         }
2789         node->prop = prop;
2790         node->value = val;
2791         /*If API is called multiple times for same property, we should override the previous values.
2792         Last value set will be used for filtering.*/
2793         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2794         if (link)
2795                 filter->list = g_slist_delete_link(filter->list, link);
2796         filter->list = g_slist_append(filter->list, (gpointer)node);
2797         return PMINFO_R_OK;
2798
2799 }
2800
2801 API int pkgmgrinfo_appinfo_filter_add_string(pkgmgrinfo_appinfo_filter_h handle,
2802                                 const char *property, const char *value)
2803 {
2804         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2805         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2806         retvm_if(value == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2807         char *val = NULL;
2808         pkgmgrinfo_node_x *ptr = NULL;
2809         char prev[PKG_STRING_LEN_MAX] = {'\0'};
2810         char temp[PKG_STRING_LEN_MAX] = {'\0'};
2811         GSList *link = NULL;
2812         int prop = -1;
2813         prop = _pminfo_appinfo_convert_to_prop_str(property);
2814         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_STR ||
2815                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_STR) {
2816                 _LOGE("Invalid String Property\n");
2817                 return PMINFO_R_EINVAL;
2818         }
2819         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2820         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2821         if (node == NULL) {
2822                 _LOGE("Out of Memory!!!\n");
2823                 return PMINFO_R_ERROR;
2824         }
2825         node->prop = prop;
2826         switch (prop) {
2827         case E_PMINFO_APPINFO_PROP_APP_COMPONENT:
2828                 node->value = strdup(value);
2829                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2830                 if (link)
2831                         filter->list = g_slist_delete_link(filter->list, link);
2832                 filter->list = g_slist_append(filter->list, (gpointer)node);
2833                 break;
2834         case E_PMINFO_APPINFO_PROP_APP_CATEGORY:
2835                 val = (char *)calloc(1, PKG_STRING_LEN_MAX);
2836                 if (val == NULL) {
2837                         _LOGE("Out of Memory\n");
2838                         free(node);
2839                         node = NULL;
2840                         return PMINFO_R_ERROR;
2841                 }
2842                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2843                 if (link) {
2844                         ptr = (pkgmgrinfo_node_x *)link->data;
2845                         strncpy(prev, ptr->value, PKG_STRING_LEN_MAX - 1);
2846                         _LOGI("Previous value is %s\n", prev);
2847                         filter->list = g_slist_delete_link(filter->list, link);
2848                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s,%s", prev, value);
2849                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
2850                         _LOGI("New value is %s\n", val);
2851                         node->value = val;
2852                         filter->list = g_slist_append(filter->list, (gpointer)node);
2853                         memset(temp, '\0', PKG_STRING_LEN_MAX);
2854                 } else {
2855                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s", value);
2856                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
2857                         _LOGI("First value is %s\n", val);
2858                         node->value = val;
2859                         filter->list = g_slist_append(filter->list, (gpointer)node);
2860                         memset(temp, '\0', PKG_STRING_LEN_MAX);
2861                 }
2862                 break;
2863         default:
2864                 node->value = strndup(value, PKG_STRING_LEN_MAX - 1);
2865                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2866                 if (link)
2867                         filter->list = g_slist_delete_link(filter->list, link);
2868                 filter->list = g_slist_append(filter->list, (gpointer)node);
2869                 break;
2870         }
2871         return PMINFO_R_OK;
2872 }
2873
2874 API int pkgmgrinfo_appinfo_usr_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count, uid_t uid)
2875 {
2876         int ret;
2877         char *locale;
2878         GHashTable *list;
2879
2880         if (handle == NULL || count == NULL) {
2881                 _LOGE("invalid parameter");
2882                 return PMINFO_R_EINVAL;
2883         }
2884
2885         locale = _get_system_locale();
2886         if (locale == NULL)
2887                 return PMINFO_R_ERROR;
2888
2889         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
2890                         __free_applications);
2891         if (list == NULL) {
2892                 free(locale);
2893                 return PMINFO_R_ERROR;
2894         }
2895
2896         ret = _appinfo_get_applications(uid, uid, locale, handle, 0, list);
2897         if (ret == PMINFO_R_OK && uid != GLOBAL_USER)
2898                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
2899                                 handle, 0, list);
2900
2901         if (ret != PMINFO_R_OK) {
2902                 g_hash_table_destroy(list);
2903                 free(locale);
2904                 return PMINFO_R_ERROR;
2905         }
2906
2907         *count = g_hash_table_size(list);
2908         g_hash_table_destroy(list);
2909         free(locale);
2910
2911         return PMINFO_R_OK;
2912 }
2913
2914 API int pkgmgrinfo_appinfo_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count)
2915 {
2916         return pkgmgrinfo_appinfo_usr_filter_count(handle, count, _getuid());
2917 }
2918
2919 API int pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(
2920                 pkgmgrinfo_appinfo_filter_h handle,
2921                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
2922 {
2923         if (handle == NULL || app_cb == NULL) {
2924                 LOGE("invalid parameter");
2925                 return PMINFO_R_EINVAL;
2926         }
2927
2928         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
2929                         user_data);
2930 }
2931
2932 API int pkgmgrinfo_appinfo_filter_foreach_appinfo(pkgmgrinfo_appinfo_filter_h handle,
2933                                 pkgmgrinfo_app_list_cb app_cb, void * user_data)
2934 {
2935         return pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(handle, app_cb, user_data, _getuid());
2936 }
2937
2938 API int pkgmgrinfo_appinfo_metadata_filter_create(pkgmgrinfo_appinfo_metadata_filter_h *handle)
2939 {
2940         return (pkgmgrinfo_pkginfo_filter_create(handle));
2941 }
2942
2943 API int pkgmgrinfo_appinfo_metadata_filter_destroy(pkgmgrinfo_appinfo_metadata_filter_h handle)
2944 {
2945         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2946 }
2947
2948 API int pkgmgrinfo_appinfo_metadata_filter_add(
2949                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2950                 const char *key, const char *value)
2951 {
2952         int ret;
2953
2954         ret = pkgmgrinfo_appinfo_filter_add_string(handle,
2955                         PMINFO_APPINFO_PROP_APP_METADATA_KEY, key);
2956         if (ret != PMINFO_R_OK)
2957                 return ret;
2958
2959         /* value can be NULL.
2960          * In that case all apps with specified key should be displayed
2961          */
2962         if (value) {
2963                 ret = pkgmgrinfo_appinfo_filter_add_string(handle,
2964                                 PMINFO_APPINFO_PROP_APP_METADATA_VALUE, value);
2965                 if (ret != PMINFO_R_OK)
2966                         return ret;
2967         }
2968
2969         return PMINFO_R_OK;
2970 }
2971
2972 API int pkgmgrinfo_appinfo_usr_metadata_filter_foreach(
2973                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2974                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
2975 {
2976         if (handle == NULL || app_cb == NULL) {
2977                 LOGE("invalid parameter");
2978                 return PMINFO_R_EINVAL;
2979         }
2980
2981         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
2982                         user_data);
2983 }
2984
2985 API int pkgmgrinfo_appinfo_metadata_filter_foreach(
2986                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2987                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
2988 {
2989         return pkgmgrinfo_appinfo_usr_metadata_filter_foreach(handle, app_cb,
2990                         user_data, _getuid());
2991 }
2992
2993 API int pkgmgrinfo_appinfo_is_guestmode_visibility(pkgmgrinfo_appinfo_h handle, bool *status)
2994 {
2995         const char *val;
2996         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2997
2998         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2999         retvm_if(status == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3000
3001         val = info->app_info->guestmode_visibility;
3002         *status = _get_bool_value(val);
3003         return PMINFO_R_OK;
3004 }