for consistent result of memtadata value (NULL -> empty)
[platform/core/appfw/pkgmgr-info.git] / src / pkgmgrinfo_appinfo.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdbool.h>
4 #include <string.h>
5 #include <ctype.h>
6 #include <unistd.h>
7 #include <sys/types.h>
8 #include <dlfcn.h>
9
10 #include <sqlite3.h>
11 #include <glib.h>
12
13 #include "pkgmgr-info.h"
14 #include "pkgmgrinfo_debug.h"
15 #include "pkgmgrinfo_private.h"
16 #include "pkgmgr_parser.h"
17
18 static bool _get_bool_value(const char *str)
19 {
20         if (str && !strcmp(str, "true"))
21                 return true;
22         else
23                 return false;
24 }
25
26 static void __cleanup_appinfo(pkgmgr_appinfo_x *data)
27 {
28         pkgmgr_appinfo_x *info = data;
29
30         if (info != NULL) {
31                 if (info->package)
32                         free((void *)info->package);
33                 if (info->locale)
34                         free((void *)info->locale);
35
36                 pkgmgrinfo_basic_free_application(info->app_info);
37                 free((void *)info);
38         }
39         return;
40 }
41
42 static const char join_localized_info[] =
43         " LEFT OUTER JOIN package_app_localized_info"
44         "  ON ai.app_id=package_app_localized_info.app_id"
45         "  AND package_app_localized_info.app_locale=?";
46 static const char join_category[] =
47         " LEFT OUTER JOIN package_app_app_category"
48         " ON ai.app_id=package_app_app_category.app_id";
49 static const char join_app_control[] =
50         " LEFT OUTER JOIN package_app_app_control"
51         "  ON ai.app_id=package_app_app_control.app_id";
52 static const char join_metadata[] =
53         " LEFT OUTER JOIN package_app_app_metadata"
54         "  ON ai.app_id=package_app_app_metadata.app_id ";
55
56 static int _get_filtered_query(pkgmgrinfo_filter_x *filter,
57         const char *locale, char **query, GList **bind_params)
58 {
59         int joined = 0;
60         size_t len = 0;
61         char *condition = NULL;
62         char buf[MAX_QUERY_LEN] = { '\0' };
63         char tmp_query[MAX_QUERY_LEN] = { '\0' };
64         GSList *list;
65
66         if (filter == NULL)
67                 return PMINFO_R_OK;
68
69         len += strlen(" WHERE 1=1");
70         strncat(buf, " WHERE 1=1", MAX_QUERY_LEN - len - 1);
71         for (list = filter->list; list; list = list->next) {
72                 joined |= __get_filter_condition(list->data, &condition, bind_params);
73                 if (condition == NULL)
74                         continue;
75
76                 len += strlen(" AND ");
77                 strncat(buf, " AND ", MAX_QUERY_LEN - len - 1);
78
79                 len += strlen(condition);
80                 strncat(buf, condition, sizeof(buf) - len - 1);
81                 free(condition);
82                 condition = NULL;
83         }
84
85         if (joined & E_PMINFO_APPINFO_JOIN_LOCALIZED_INFO) {
86                 strncat(tmp_query, join_localized_info, MAX_QUERY_LEN - len - 1);
87                 len += strlen(join_localized_info);
88                 *bind_params = g_list_append(*bind_params, strdup(locale));
89         }
90         if (joined & E_PMINFO_APPINFO_JOIN_CATEGORY) {
91                 strncat(tmp_query, join_category, MAX_QUERY_LEN - len - 1);
92                 len += strlen(join_category);
93         }
94         if (joined & E_PMINFO_APPINFO_JOIN_APP_CONTROL) {
95                 strncat(tmp_query, join_app_control, MAX_QUERY_LEN - len - 1);
96                 len += strlen(join_app_control);
97         }
98         if (joined & E_PMINFO_APPINFO_JOIN_METADATA) {
99                 strncat(tmp_query, join_metadata, MAX_QUERY_LEN - len - 1);
100                 len += strlen(join_metadata);
101         }
102         strncat(tmp_query, buf, MAX_QUERY_LEN - len - 1);
103
104         *query = strdup(tmp_query);
105         if (*query == NULL)
106                 return PMINFO_R_ERROR;
107
108         return PMINFO_R_OK;
109 }
110
111 static int _appinfo_get_label(sqlite3 *db, const char *appid,
112                 const char *locale, GList **label)
113 {
114         static const char query_raw[] =
115                 "SELECT app_label, app_locale "
116                 "FROM package_app_localized_info "
117                 "WHERE app_id=%Q AND app_locale IN (%Q, %Q)";
118         int ret;
119         char *query;
120         sqlite3_stmt *stmt;
121         int idx;
122         label_x *info;
123
124         query = sqlite3_mprintf(query_raw, appid, locale, DEFAULT_LOCALE);
125         if (query == NULL) {
126                 LOGE("out of memory");
127                 return PMINFO_R_ERROR;
128         }
129
130         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
131         sqlite3_free(query);
132         if (ret != SQLITE_OK) {
133                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
134                 return PMINFO_R_ERROR;
135         }
136
137         while (sqlite3_step(stmt) == SQLITE_ROW) {
138                 info = calloc(1, sizeof(label_x));
139                 if (info == NULL) {
140                         LOGE("out of memory");
141                         sqlite3_finalize(stmt);
142                         return PMINFO_R_ERROR;
143                 }
144                 idx = 0;
145                 _save_column_str(stmt, idx++, &info->text);
146                 _save_column_str(stmt, idx++, &info->lang);
147                 *label = g_list_append(*label, info);
148         }
149
150         sqlite3_finalize(stmt);
151
152         return PMINFO_R_OK;
153 }
154
155 static int _appinfo_get_icon(sqlite3 *db, const char *appid, const char *locale,
156                 GList **icon)
157 {
158         static const char query_raw[] =
159                 "SELECT app_icon, app_locale "
160                 "FROM package_app_localized_info "
161                 "WHERE app_id=%Q AND app_locale IN (%Q, %Q)";
162         int ret;
163         char *query;
164         sqlite3_stmt *stmt;
165         int idx;
166         icon_x *info;
167
168         query = sqlite3_mprintf(query_raw, appid, locale, DEFAULT_LOCALE);
169         if (query == NULL) {
170                 LOGE("out of memory");
171                 return PMINFO_R_ERROR;
172         }
173
174         ret = sqlite3_prepare_v2(db, query, strlen(query),
175                         &stmt, NULL);
176         sqlite3_free(query);
177         if (ret != SQLITE_OK) {
178                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
179                 return PMINFO_R_ERROR;
180         }
181
182         while (sqlite3_step(stmt) == SQLITE_ROW) {
183                 info = calloc(1, sizeof(icon_x));
184                 if (info == NULL) {
185                         LOGE("out of memory");
186                         sqlite3_finalize(stmt);
187                         return PMINFO_R_ERROR;
188                 }
189                 idx = 0;
190                 _save_column_str(stmt, idx++, &info->text);
191                 _save_column_str(stmt, idx++, &info->lang);
192                 *icon = g_list_append(*icon, info);
193         }
194
195         sqlite3_finalize(stmt);
196
197         return PMINFO_R_OK;
198 }
199
200 static int _appinfo_get_category(sqlite3 *db, const char *appid,
201                 GList **category)
202 {
203         static const char query_raw[] =
204                 "SELECT category FROM package_app_app_category WHERE app_id=%Q";
205         int ret;
206         char *query;
207         sqlite3_stmt *stmt;
208         char *val;
209
210         query = sqlite3_mprintf(query_raw, appid);
211         if (query == NULL) {
212                 LOGE("out of memory");
213                 return PMINFO_R_ERROR;
214         }
215
216         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
217         sqlite3_free(query);
218         if (ret != SQLITE_OK) {
219                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
220                 return PMINFO_R_ERROR;
221         }
222
223         while (sqlite3_step(stmt) == SQLITE_ROW) {
224                 val = NULL;
225                 _save_column_str(stmt, 0, &val);
226                 if (val)
227                         *category = g_list_append(*category, (gpointer)val);
228         }
229
230         sqlite3_finalize(stmt);
231
232         return PMINFO_R_OK;
233 }
234
235 static void __parse_appcontrol(GList **appcontrol, char *appcontrol_str)
236 {
237         char *dup;
238         char *token;
239         char *ptr = NULL;
240         appcontrol_x *ac;
241
242         if (appcontrol_str == NULL)
243                 return;
244
245         dup = strdup(appcontrol_str);
246         do {
247                 ac = calloc(1, sizeof(appcontrol_x));
248                 if (ac == NULL) {
249                         _LOGE("out of memory");
250                         break;
251                 }
252                 token = strtok_r(dup, "|", &ptr);
253                 if (token && strcmp(token, "NULL"))
254                         ac->operation = strdup(token);
255                 token = strtok_r(NULL, "|", &ptr);
256                 if (token && strcmp(token, "NULL"))
257                         ac->uri = strdup(token);
258                 token = strtok_r(NULL, "|", &ptr);
259                 if (token && strcmp(token, "NULL"))
260                         ac->mime = strdup(token);
261                 *appcontrol = g_list_append(*appcontrol, ac);
262         } while ((token = strtok_r(NULL, ";", &ptr)));
263
264         free(dup);
265 }
266
267 static int _appinfo_get_app_control(sqlite3 *db, const char *appid,
268                 GList **appcontrol)
269 {
270         static const char query_raw[] =
271                 "SELECT app_control FROM package_app_app_control "
272                 "WHERE app_id=%Q";
273         int ret;
274         char *query;
275         sqlite3_stmt *stmt;
276         char *str;
277
278         query = sqlite3_mprintf(query_raw, appid);
279         if (query == NULL) {
280                 LOGE("out of memory");
281                 return PMINFO_R_ERROR;
282         }
283
284         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
285         sqlite3_free(query);
286         if (ret != SQLITE_OK) {
287                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
288                 return PMINFO_R_ERROR;
289         }
290
291         while (sqlite3_step(stmt) == SQLITE_ROW) {
292                 str = NULL;
293                 _save_column_str(stmt, 0, &str);
294                 /* TODO: revise */
295                 __parse_appcontrol(appcontrol, str);
296                 free(str);
297         }
298
299         sqlite3_finalize(stmt);
300
301         return PMINFO_R_OK;
302 }
303
304 static int _appinfo_get_data_control(sqlite3 *db, const char *appid,
305                 GList **datacontrol)
306 {
307         static const char query_raw[] =
308                 "SELECT providerid, access, type "
309                 "FROM package_app_data_control WHERE app_id=%Q";
310         int ret;
311         char *query;
312         sqlite3_stmt *stmt;
313         int idx;
314         datacontrol_x *info;
315
316         query = sqlite3_mprintf(query_raw, appid);
317         if (query == NULL) {
318                 LOGE("out of memory");
319                 return PMINFO_R_ERROR;
320         }
321
322         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
323         sqlite3_free(query);
324         if (ret != SQLITE_OK) {
325                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
326                 return PMINFO_R_ERROR;
327         }
328
329         while (sqlite3_step(stmt) == SQLITE_ROW) {
330                 info = calloc(1, sizeof(datacontrol_x));
331                 if (info == NULL) {
332                         LOGE("out of memory");
333                         sqlite3_finalize(stmt);
334                         return PMINFO_R_ERROR;
335                 }
336                 idx = 0;
337                 _save_column_str(stmt, idx++, &info->providerid);
338                 _save_column_str(stmt, idx++, &info->access);
339                 _save_column_str(stmt, idx++, &info->type);
340                 *datacontrol = g_list_append(*datacontrol, info);
341         }
342
343         sqlite3_finalize(stmt);
344
345         return PMINFO_R_OK;
346 }
347
348 static int _appinfo_get_metadata(sqlite3 *db, const char *appid,
349                 GList **metadata)
350 {
351         static const char query_raw[] =
352                 "SELECT md_key, md_value "
353                 "FROM package_app_app_metadata WHERE app_id=%Q";
354         int ret;
355         char *query;
356         sqlite3_stmt *stmt;
357         int idx;
358         metadata_x *info;
359
360         query = sqlite3_mprintf(query_raw, appid);
361         if (query == NULL) {
362                 LOGE("out of memory");
363                 return PMINFO_R_ERROR;
364         }
365
366         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
367         sqlite3_free(query);
368         if (ret != SQLITE_OK) {
369                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
370                 return PMINFO_R_ERROR;
371         }
372
373         while (sqlite3_step(stmt) == SQLITE_ROW) {
374                 info = calloc(1, sizeof(metadata_x));
375                 if (info == NULL) {
376                         LOGE("out of memory");
377                         sqlite3_finalize(stmt);
378                         return PMINFO_R_ERROR;
379                 }
380                 idx = 0;
381                 _save_column_str(stmt, idx++, &info->key);
382                 _save_column_str(stmt, idx++, &info->value);
383                 *metadata = g_list_append(*metadata, info);
384         }
385
386         sqlite3_finalize(stmt);
387
388         return PMINFO_R_OK;
389
390 }
391
392 static int _appinfo_get_splashscreens(sqlite3 *db, const char *appid,
393                 GList **splashscreens)
394 {
395         static const char query_raw[] =
396                 "SELECT src, type, orientation, indicatordisplay, operation, color_depth "
397                 "FROM package_app_splash_screen WHERE app_id=%Q";
398         int ret;
399         char *query;
400         sqlite3_stmt *stmt;
401         int idx;
402         splashscreen_x *info;
403
404         query = sqlite3_mprintf(query_raw, appid);
405         if (query == NULL) {
406                 LOGE("out of memory");
407                 return PMINFO_R_ERROR;
408         }
409
410         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
411         sqlite3_free(query);
412         if (ret != SQLITE_OK) {
413                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
414                 return PMINFO_R_ERROR;
415         }
416
417         while (sqlite3_step(stmt) == SQLITE_ROW) {
418                 info = calloc(1, sizeof(splashscreen_x));
419                 if (info == NULL) {
420                         LOGE("out of memory");
421                         sqlite3_finalize(stmt);
422                         return PMINFO_R_ERROR;
423                 }
424                 idx = 0;
425                 _save_column_str(stmt, idx++, &info->src);
426                 _save_column_str(stmt, idx++, &info->type);
427                 _save_column_str(stmt, idx++, &info->orientation);
428                 _save_column_str(stmt, idx++, &info->indicatordisplay);
429                 _save_column_str(stmt, idx++, &info->operation);
430                 _save_column_str(stmt, idx++, &info->color_depth);
431                 *splashscreens = g_list_append(*splashscreens, info);
432         }
433
434         sqlite3_finalize(stmt);
435
436         return PMINFO_R_OK;
437 }
438
439 static GList *__get_background_category(const char *value)
440 {
441         GList *category_list = NULL;
442         int convert_value = 0;
443         if (!value || strlen(value) == 0)
444                 return NULL;
445
446         convert_value = atoi(value);
447         if (convert_value < 0)
448                 return NULL;
449
450         if (convert_value & APP_BG_CATEGORY_USER_DISABLE_TRUE_VAL)
451                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_USER_DISABLE_TRUE_STR));
452         else
453                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_USER_DISABLE_FALSE_STR));
454
455         if (convert_value & APP_BG_CATEGORY_MEDIA_VAL)
456                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_MEDIA_STR));
457
458         if (convert_value & APP_BG_CATEGORY_DOWNLOAD_VAL)
459                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_DOWNLOAD_STR));
460
461         if (convert_value & APP_BG_CATEGORY_BGNETWORK_VAL)
462                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_BGNETWORK_STR));
463
464         if (convert_value & APP_BG_CATEGORY_LOCATION_VAL)
465                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_LOCATION_STR));
466
467         if (convert_value & APP_BG_CATEGORY_SENSOR_VAL)
468                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_SENSOR_STR));
469
470         if (convert_value & APP_BG_CATEGORY_IOTCOMM_VAL)
471                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_IOTCOMM_STR));
472
473         if (convert_value & APP_BG_CATEGORY_SYSTEM_VAL)
474                 category_list = g_list_append(category_list, strdup(APP_BG_CATEGORY_SYSTEM));
475
476         return category_list;
477
478 }
479
480 static void __get_splash_screen_display(sqlite3 *db, const char *appid, uid_t uid, char **value)
481 {
482         static const char query_raw[] =
483                 "SELECT is_splash_screen_enabled FROM package_app_info_for_uid "
484                 "WHERE app_id='%s' AND uid='%d'";
485         int ret;
486         char *query;
487         sqlite3_stmt *stmt;
488
489         query = sqlite3_mprintf(query_raw, appid, uid);
490         if (query == NULL) {
491                 LOGE("out of memory");
492                 return;
493         }
494
495         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
496         sqlite3_free(query);
497         if (ret != SQLITE_OK) {
498                 LOGE("sqlite3_prepare_v2() failed: %s", sqlite3_errmsg(db));
499                 return;
500         }
501
502         while (sqlite3_step(stmt) == SQLITE_ROW) {
503                 if (*value)
504                         free(*value);
505                 _save_column_str(stmt, 0, value);
506         }
507
508         sqlite3_finalize(stmt);
509 }
510
511 static void __free_applications(gpointer data)
512 {
513         pkgmgrinfo_basic_free_application((application_x *)data);
514 }
515
516 static int __bind_params(sqlite3_stmt *stmt, GList *params)
517 {
518         GList *tmp_list = NULL;
519         int idx = 0;
520         int ret;
521
522         if (stmt == NULL || params == NULL)
523                 return PMINFO_R_EINVAL;
524
525         tmp_list = params;
526         while (tmp_list) {
527                 ret = sqlite3_bind_text(stmt, ++idx, (char *)tmp_list->data, -1, SQLITE_STATIC);
528                 if (ret != SQLITE_OK)
529                         return PMINFO_R_ERROR;
530                 tmp_list = tmp_list->next;
531         }
532
533         return PMINFO_R_OK;
534 }
535
536 static int _appinfo_get_applications(uid_t db_uid, uid_t uid,
537                 const char *locale, pkgmgrinfo_filter_x *filter, int flag,
538                 GHashTable *applications)
539 {
540         static const char query_raw[] =
541                 "SELECT DISTINCT ai.app_id, ai.app_component, ai.app_exec, "
542                 "ai.app_nodisplay, ai.app_type, ai.app_onboot, "
543                 "ai.app_multiple, ai.app_autorestart, ai.app_taskmanage, "
544                 "ai.app_enabled, ai.app_hwacceleration, ai.app_screenreader, "
545                 "ai.app_mainapp, ai.app_recentimage, ai.app_launchcondition, "
546                 "ai.app_indicatordisplay, ai.app_portraitimg, "
547                 "ai.app_landscapeimg, ai.app_guestmodevisibility, "
548                 "ai.app_permissiontype, ai.app_preload, ai.app_submode, "
549                 "ai.app_submode_mainid, ai.app_launch_mode, ai.app_ui_gadget, "
550                 "ai.app_support_disable, ai.app_process_pool, "
551                 "ai.app_installed_storage, ai.app_background_category, "
552                 "ai.app_package_type, ai.app_root_path, ai.app_api_version, "
553                 "ai.app_effective_appid, ai.app_disable, "
554                 "ai.app_splash_screen_display, ai.app_tep_name, "
555                 "ai.app_zip_mount_file, ai.component_type, ai.package "
556                 "FROM package_app_info as ai";
557         int ret = PMINFO_R_ERROR;
558         int idx;
559         const char *dbpath;
560         char *bg_category_str = NULL;
561         char *constraint = NULL;
562         char query[MAX_QUERY_LEN] = { '\0' };
563         application_x *info = NULL;
564         GList *bind_params = NULL;
565         sqlite3 *db = NULL;
566         sqlite3_stmt *stmt = NULL;
567
568         dbpath = getUserPkgParserDBPathUID(db_uid);
569         if (dbpath == NULL)
570                 return PMINFO_R_ERROR;
571
572         ret = sqlite3_open_v2(dbpath, &db, SQLITE_OPEN_READONLY, NULL);
573         if (ret != SQLITE_OK) {
574                 _LOGE("failed to open db: %d", ret);
575                 return PMINFO_R_ERROR;
576         }
577
578         ret = _get_filtered_query(filter, locale, &constraint, &bind_params);
579         if (ret != PMINFO_R_OK) {
580                 LOGE("Failed to get WHERE clause");
581                 goto catch;
582         }
583
584         if (constraint)
585                 snprintf(query, MAX_QUERY_LEN - 1, "%s%s", query_raw, constraint);
586         else
587                 snprintf(query, MAX_QUERY_LEN - 1, "%s", query_raw);
588
589         ret = sqlite3_prepare_v2(db, query, strlen(query), &stmt, NULL);
590         if (ret != SQLITE_OK) {
591                 LOGE("prepare failed: %s", sqlite3_errmsg(db));
592                 ret = PMINFO_R_ERROR;
593                 goto catch;
594         }
595
596         if (g_list_length(bind_params) != 0) {
597                 ret = __bind_params(stmt, bind_params);
598                 if (ret != SQLITE_OK) {
599                         LOGE("Failed to bind parameters");
600                         goto catch;
601                 }
602         }
603
604         while (sqlite3_step(stmt) == SQLITE_ROW) {
605                 info = calloc(1, sizeof(application_x));
606                 if (info == NULL) {
607                         LOGE("out of memory");
608                         ret = PMINFO_R_ERROR;
609                         goto catch;
610                 }
611                 idx = 0;
612                 _save_column_str(stmt, idx++, &info->appid);
613                 if (g_hash_table_contains(applications,
614                                         (gconstpointer)info->appid)) {
615                         free(info->appid);
616                         free(info);
617                         continue;
618                 }
619                 _save_column_str(stmt, idx++, &info->component);
620                 _save_column_str(stmt, idx++, &info->exec);
621                 _save_column_str(stmt, idx++, &info->nodisplay);
622                 _save_column_str(stmt, idx++, &info->type);
623                 _save_column_str(stmt, idx++, &info->onboot);
624                 _save_column_str(stmt, idx++, &info->multiple);
625                 _save_column_str(stmt, idx++, &info->autorestart);
626                 _save_column_str(stmt, idx++, &info->taskmanage);
627                 _save_column_str(stmt, idx++, &info->enabled);
628                 _save_column_str(stmt, idx++, &info->hwacceleration);
629                 _save_column_str(stmt, idx++, &info->screenreader);
630                 _save_column_str(stmt, idx++, &info->mainapp);
631                 _save_column_str(stmt, idx++, &info->recentimage);
632                 _save_column_str(stmt, idx++, &info->launchcondition);
633                 _save_column_str(stmt, idx++, &info->indicatordisplay);
634                 _save_column_str(stmt, idx++, &info->portraitimg);
635                 _save_column_str(stmt, idx++, &info->landscapeimg);
636                 _save_column_str(stmt, idx++, &info->guestmode_visibility);
637                 _save_column_str(stmt, idx++, &info->permission_type);
638                 _save_column_str(stmt, idx++, &info->preload);
639                 _save_column_str(stmt, idx++, &info->submode);
640                 _save_column_str(stmt, idx++, &info->submode_mainid);
641                 _save_column_str(stmt, idx++, &info->launch_mode);
642                 _save_column_str(stmt, idx++, &info->ui_gadget);
643                 _save_column_str(stmt, idx++, &info->support_disable);
644                 _save_column_str(stmt, idx++, &info->process_pool);
645                 _save_column_str(stmt, idx++, &info->installed_storage);
646                 _save_column_str(stmt, idx++, &bg_category_str);
647                 _save_column_str(stmt, idx++, &info->package_type);
648                 _save_column_str(stmt, idx++, &info->root_path);
649                 _save_column_str(stmt, idx++, &info->api_version);
650                 _save_column_str(stmt, idx++, &info->effective_appid);
651                 _save_column_str(stmt, idx++, &info->is_disabled);
652                 _save_column_str(stmt, idx++, &info->splash_screen_display);
653                 _save_column_str(stmt, idx++, &info->tep_name);
654                 _save_column_str(stmt, idx++, &info->zip_mount_file);
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         if (info->app_info->icon == NULL) {
1549                 *icon = "";
1550                 return PMINFO_R_OK;
1551         }
1552
1553         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1554                 ptr = (icon_x *)tmp->data;
1555                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1556                                 !strcasecmp(ptr->text, "") ||
1557                                 strcmp(ptr->lang, locale))
1558                         continue;
1559                 *icon = (char *)ptr->text;
1560                 return PMINFO_R_OK;
1561         }
1562
1563         locale = DEFAULT_LOCALE;
1564         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1565                 ptr = (icon_x *)tmp->data;
1566                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1567                                 strcmp(ptr->lang, locale))
1568                         continue;
1569                 *icon = (char *)ptr->text;
1570                 return PMINFO_R_OK;
1571         }
1572
1573         return PMINFO_R_ERROR;
1574 }
1575
1576
1577 API int pkgmgrinfo_appinfo_get_label(pkgmgrinfo_appinfo_h handle, char **label)
1578 {
1579         const char *locale;
1580         label_x *ptr;
1581         GList *tmp;
1582         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1583
1584         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1585         retvm_if(label == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1586
1587         locale = info->locale;
1588         retvm_if(locale == NULL, PMINFO_R_ERROR, "manifest locale is NULL");
1589
1590         if (info->app_info == NULL)
1591                 return PMINFO_R_ERROR;
1592
1593         for (tmp = info->app_info->label; tmp; tmp = tmp->next) {
1594                 ptr = (label_x *)tmp->data;
1595                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1596                                 strcmp(ptr->lang, locale))
1597                         continue;
1598                 *label = (char *)ptr->text;
1599                 return PMINFO_R_OK;
1600         }
1601
1602         locale = DEFAULT_LOCALE;
1603         for (tmp = info->app_info->label; tmp; tmp = tmp->next) {
1604                 ptr = (label_x *)tmp->data;
1605                 if (ptr == NULL || ptr->text == NULL || ptr->lang == NULL ||
1606                                 strcmp(ptr->lang, locale))
1607                         continue;
1608                 *label = (char *)ptr->text;
1609                 return PMINFO_R_OK;
1610         }
1611
1612         return PMINFO_R_ERROR;
1613 }
1614
1615 static char *_get_localed_label(const char *appid, const char *locale, uid_t uid)
1616 {
1617         char *result = NULL;
1618         char *query = NULL;
1619         sqlite3_stmt *stmt = NULL;
1620         sqlite3 *db = NULL;
1621         char *val;
1622         const char *manifest_db;
1623
1624         manifest_db = getUserPkgParserDBPathUID(uid);
1625         if (manifest_db == NULL) {
1626                 _LOGE("Failed to get manifest db path");
1627                 goto err;
1628         }
1629
1630         if (sqlite3_open_v2(manifest_db, &db, SQLITE_OPEN_READONLY, NULL) != SQLITE_OK) {
1631                 _LOGE("DB open fail\n");
1632                 goto err;
1633         }
1634
1635         query = sqlite3_mprintf("select app_label from package_app_localized_info where app_id=%Q and app_locale=%Q", appid, locale);
1636         if (query == NULL) {
1637                 _LOGE("Out of memory");
1638                 goto err;
1639         }
1640
1641         if (sqlite3_prepare_v2(db, query, -1, &stmt, NULL) != SQLITE_OK) {
1642                 _LOGE("prepare_v2 fail\n");
1643                 goto err;
1644         }
1645
1646         if (sqlite3_step(stmt) == SQLITE_ROW) {
1647                 val = (char *)sqlite3_column_text(stmt, 0);
1648                 if (val != NULL)
1649                         result = strdup(val);
1650         }
1651
1652 err:
1653         sqlite3_finalize(stmt);
1654         sqlite3_free(query);
1655         sqlite3_close(db);
1656
1657         return result;
1658 }
1659
1660 API int pkgmgrinfo_appinfo_usr_get_localed_label(const char *appid, const char *locale, uid_t uid, char **label)
1661 {
1662         char *val;
1663
1664         retvm_if(appid == NULL || locale == NULL || label == NULL, PMINFO_R_EINVAL, "Argument is NULL");
1665
1666         val = _get_localed_label(appid, locale, uid);
1667         if (val == NULL)
1668                 val = _get_localed_label(appid, DEFAULT_LOCALE, uid);
1669
1670         if (val == NULL)
1671                 return PMINFO_R_ERROR;
1672
1673         *label = val;
1674
1675         return PMINFO_R_OK;
1676 }
1677
1678 API int pkgmgrinfo_appinfo_get_localed_label(const char *appid, const char *locale, char **label)
1679 {
1680         return pkgmgrinfo_appinfo_usr_get_localed_label(appid, locale, _getuid(), label);
1681 }
1682
1683 API int pkgmgrinfo_appinfo_get_metadata_value(pkgmgrinfo_appinfo_h handle, const char *metadata_key, char **metadata_value)
1684 {
1685         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1686         retvm_if(metadata_key == NULL, PMINFO_R_EINVAL, "metadata_key is NULL");
1687         retvm_if(metadata_value == NULL, PMINFO_R_EINVAL, "metadata_value is NULL");
1688
1689         GList *list_md = NULL;
1690         metadata_x *metadata = NULL;
1691         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1692
1693         list_md = info->app_info->metadata;
1694
1695         for (; list_md; list_md = list_md->next) {
1696                 metadata = (metadata_x *)list_md->data;
1697                 if (metadata && metadata->key) {
1698                         if (strcasecmp(metadata->key, metadata_key) == 0) {
1699                                 if (metadata->value == NULL)
1700                                         metadata->value = strdup("");
1701                                 *metadata_value = (char*)metadata->value;
1702                                 return PMINFO_R_OK;
1703                         }
1704                 }
1705         }
1706
1707         return PMINFO_R_EINVAL;
1708 }
1709
1710 static pkgmgrinfo_app_component __appcomponent_convert(const char *comp)
1711 {
1712         if (strcasecmp(comp, "uiapp") == 0)
1713                 return PMINFO_UI_APP;
1714         else if (strcasecmp(comp, "svcapp") == 0)
1715                 return PMINFO_SVC_APP;
1716         else if (strcasecmp(comp, "widgetapp") == 0)
1717                 return PMINFO_WIDGET_APP;
1718         else if (strcasecmp(comp, "watchapp") == 0)
1719                 return PMINFO_WATCH_APP;
1720         else
1721                 return -1;
1722 }
1723
1724 static const char *__appcomponent_str(pkgmgrinfo_app_component comp)
1725 {
1726         switch (comp) {
1727         case PMINFO_UI_APP:
1728                 return "uiapp";
1729         case PMINFO_SVC_APP:
1730                 return "svcapp";
1731         case PMINFO_WIDGET_APP:
1732                 return "widgetapp";
1733         case PMINFO_WATCH_APP:
1734                 return "watchapp";
1735         default:
1736                 return NULL;
1737         }
1738 }
1739
1740 API int pkgmgrinfo_appinfo_get_component(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_component *component)
1741 {
1742         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1743         int comp;
1744
1745         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1746         retvm_if(component == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1747
1748         if (info->app_info == NULL)
1749                 return PMINFO_R_ERROR;
1750
1751         comp = __appcomponent_convert(info->app_info->component);
1752         if (comp < 0)
1753                 return PMINFO_R_ERROR;
1754
1755         *component = comp;
1756
1757         return PMINFO_R_OK;
1758 }
1759
1760 API int pkgmgrinfo_appinfo_get_apptype(pkgmgrinfo_appinfo_h handle, char **app_type)
1761 {
1762         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1763
1764         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1765         retvm_if(app_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1766
1767         if (info->app_info == NULL || info->app_info->type == NULL)
1768                 return PMINFO_R_ERROR;
1769         *app_type = (char *)info->app_info->type;
1770
1771         return PMINFO_R_OK;
1772 }
1773
1774 API int pkgmgrinfo_appinfo_get_operation(pkgmgrinfo_appcontrol_h  handle,
1775                                         int *operation_count, char ***operation)
1776 {
1777         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1778         retvm_if(operation == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1779         retvm_if(operation_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1780         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1781         *operation_count = data->operation_count;
1782         *operation = data->operation;
1783         return PMINFO_R_OK;
1784 }
1785
1786 API int pkgmgrinfo_appinfo_get_uri(pkgmgrinfo_appcontrol_h  handle,
1787                                         int *uri_count, char ***uri)
1788 {
1789         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1790         retvm_if(uri == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1791         retvm_if(uri_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1792         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1793         *uri_count = data->uri_count;
1794         *uri = data->uri;
1795         return PMINFO_R_OK;
1796 }
1797
1798 API int pkgmgrinfo_appinfo_get_mime(pkgmgrinfo_appcontrol_h  handle,
1799                                         int *mime_count, char ***mime)
1800 {
1801         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1802         retvm_if(mime == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1803         retvm_if(mime_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1804         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1805         *mime_count = data->mime_count;
1806         *mime = data->mime;
1807         return PMINFO_R_OK;
1808 }
1809
1810 API int pkgmgrinfo_appinfo_get_subapp(pkgmgrinfo_appcontrol_h  handle,
1811                                         int *subapp_count, char ***subapp)
1812 {
1813         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1814         retvm_if(subapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1815         retvm_if(subapp_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1816         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1817         *subapp_count = data->subapp_count;
1818         *subapp = data->subapp;
1819         return PMINFO_R_OK;
1820 }
1821
1822 API int pkgmgrinfo_appinfo_get_setting_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1823 {
1824         char *val;
1825         icon_x *ptr;
1826         GList *tmp;
1827         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1828
1829         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1830         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1831
1832         if (info->app_info == NULL)
1833                 return PMINFO_R_ERROR;
1834
1835         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1836                 ptr = (icon_x *)tmp->data;
1837                 if (ptr == NULL || ptr->section == NULL)
1838                         continue;
1839
1840                 val = (char *)ptr->section;
1841                 if (val && strcmp(val, "setting") == 0) {
1842                         *icon = (char *)ptr->text;
1843                         return PMINFO_R_OK;
1844                 }
1845         }
1846
1847         return PMINFO_R_ERROR;
1848 }
1849
1850
1851 API int pkgmgrinfo_appinfo_get_notification_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1852 {
1853         char *val;
1854         icon_x *ptr;
1855         GList *tmp;
1856         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1857
1858         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1859         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1860
1861         if (info->app_info == NULL)
1862                 return PMINFO_R_ERROR;
1863
1864         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1865                 ptr = (icon_x *)tmp->data;
1866                 if (ptr == NULL || ptr->section == NULL)
1867                         continue;
1868
1869                 val = (char *)ptr->section;
1870                 if (val && strcmp(val, "notification") == 0){
1871                         *icon = (char *)ptr->text;
1872                         return PMINFO_R_OK;
1873                 }
1874         }
1875
1876         return PMINFO_R_ERROR;
1877 }
1878
1879 API int pkgmgrinfo_appinfo_get_recent_image_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_recentimage *type)
1880 {
1881         char *val;
1882         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1883
1884         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1885         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1886
1887         if (info->app_info == NULL || info->app_info->recentimage == NULL)
1888                 return PMINFO_R_ERROR;
1889
1890         val = (char *)info->app_info->recentimage;
1891         if (strcasecmp(val, "capture") == 0)
1892                 *type = PMINFO_RECENTIMAGE_USE_CAPTURE;
1893         else if (strcasecmp(val, "icon") == 0)
1894                 *type = PMINFO_RECENTIMAGE_USE_ICON;
1895         else
1896                 *type = PMINFO_RECENTIMAGE_USE_NOTHING;
1897
1898         return PMINFO_R_OK;
1899 }
1900
1901 API int pkgmgrinfo_appinfo_get_preview_image(pkgmgrinfo_appinfo_h handle, char **preview_img)
1902 {
1903         char *val;
1904         image_x *ptr;
1905         GList *tmp;
1906         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1907
1908         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1909         retvm_if(preview_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1910
1911         if (info->app_info == NULL)
1912                 return PMINFO_R_ERROR;
1913
1914         for (tmp = info->app_info->image; tmp; tmp = tmp->next) {
1915                 ptr = (image_x *)tmp->data;
1916                 if (ptr == NULL || ptr->section == NULL)
1917                         continue;
1918
1919                 val = (char *)ptr->section;
1920                 if (val && strcmp(val, "preview") == 0) {
1921                         *preview_img = (char *)ptr->text;
1922                         return PMINFO_R_OK;
1923                 }
1924         }
1925
1926         return PMINFO_R_ERROR;
1927 }
1928
1929 API int pkgmgrinfo_appinfo_get_permission_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_permission_type *permission)
1930 {
1931         const char *val;
1932         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1933
1934         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1935         retvm_if(permission == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1936
1937         val = info->app_info->permission_type;
1938         if (val == NULL)
1939                 return PMINFO_R_ERROR;
1940
1941         if (strcmp(val, "signature") == 0)
1942                 *permission = PMINFO_PERMISSION_SIGNATURE;
1943         else if (strcmp(val, "privilege") == 0)
1944                 *permission = PMINFO_PERMISSION_PRIVILEGE;
1945         else
1946                 *permission = PMINFO_PERMISSION_NORMAL;
1947
1948         return PMINFO_R_OK;
1949 }
1950
1951 API int pkgmgrinfo_appinfo_get_component_type(pkgmgrinfo_appinfo_h handle, char **component_type)
1952 {
1953         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1954
1955         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1956         retvm_if(component_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1957
1958         if (info->app_info == NULL || info->app_info->component_type == NULL)
1959                 return PMINFO_R_ERROR;
1960
1961         *component_type = (char *)info->app_info->component_type;
1962
1963         return PMINFO_R_OK;
1964 }
1965
1966 API int pkgmgrinfo_appinfo_get_hwacceleration(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_hwacceleration *hwacceleration)
1967 {
1968         char *val;
1969         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1970
1971         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1972         retvm_if(hwacceleration == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1973
1974         if (info->app_info == NULL || info->app_info->hwacceleration == NULL)
1975                 return PMINFO_R_ERROR;
1976
1977         val = (char *)info->app_info->hwacceleration;
1978         if (strcasecmp(val, "off") == 0)
1979                 *hwacceleration = PMINFO_HWACCELERATION_OFF;
1980         else if (strcasecmp(val, "on") == 0)
1981                 *hwacceleration = PMINFO_HWACCELERATION_ON;
1982         else
1983                 *hwacceleration = PMINFO_HWACCELERATION_DEFAULT;
1984
1985         return PMINFO_R_OK;
1986 }
1987
1988 API int pkgmgrinfo_appinfo_get_screenreader(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_screenreader *screenreader)
1989 {
1990         char *val;
1991         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1992
1993         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1994         retvm_if(screenreader == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1995
1996         if (info->app_info == NULL || info->app_info->screenreader == NULL)
1997                 return PMINFO_R_ERROR;
1998
1999         val = (char *)info->app_info->screenreader;
2000         if (strcasecmp(val, "screenreader-off") == 0)
2001                 *screenreader = PMINFO_SCREENREADER_OFF;
2002         else if (strcasecmp(val, "screenreader-on") == 0)
2003                 *screenreader = PMINFO_SCREENREADER_ON;
2004         else
2005                 *screenreader = PMINFO_SCREENREADER_USE_SYSTEM_SETTING;
2006
2007         return PMINFO_R_OK;
2008 }
2009
2010 API int pkgmgrinfo_appinfo_get_effectimage(pkgmgrinfo_appinfo_h handle, char **portrait_img, char **landscape_img)
2011 {
2012         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2013
2014         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2015         retvm_if(portrait_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2016         retvm_if(landscape_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2017
2018         if (info->app_info == NULL)
2019                 return PMINFO_R_ERROR;
2020         if (info->app_info->portraitimg == NULL)
2021                 info->app_info->portraitimg = strdup("");
2022         if (info->app_info->landscapeimg== NULL)
2023                 info->app_info->landscapeimg = strdup("");
2024
2025         *portrait_img = (char *)info->app_info->portraitimg;
2026         *landscape_img = (char *)info->app_info->landscapeimg;
2027
2028         return PMINFO_R_OK;
2029 }
2030
2031 API int pkgmgrinfo_appinfo_get_effectimage_type(pkgmgrinfo_appinfo_h handle, char **effectimage_type)
2032 {
2033         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2034
2035         if (handle == NULL || effectimage_type == NULL) {
2036                 LOGE("invalid parameter");
2037                 return PMINFO_R_EINVAL;
2038         }
2039
2040         if (info->app_info == NULL || info->app_info->effectimage_type == NULL)
2041                 return PMINFO_R_ERROR;
2042
2043         *effectimage_type = (char *)info->app_info->effectimage_type;
2044
2045         return PMINFO_R_OK;
2046 }
2047
2048 API int pkgmgrinfo_appinfo_get_submode_mainid(pkgmgrinfo_appinfo_h  handle, char **submode_mainid)
2049 {
2050         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2051
2052         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2053         retvm_if(submode_mainid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2054
2055         if (info->app_info == NULL)
2056                 return PMINFO_R_ERROR;
2057         if (info->app_info->submode_mainid == NULL)
2058                 info->app_info->submode_mainid = strdup("");
2059
2060         *submode_mainid = (char *)info->app_info->submode_mainid;
2061
2062         return PMINFO_R_OK;
2063 }
2064
2065 API int pkgmgrinfo_appinfo_get_installed_storage_location(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_installed_storage *storage)
2066 {
2067         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2068         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2069
2070         if (info->app_info && info->app_info->installed_storage){
2071                  if (strcmp(info->app_info->installed_storage,"installed_internal") == 0)
2072                         *storage = PMINFO_INTERNAL_STORAGE;
2073                  else if (strcmp(info->app_info->installed_storage,"installed_external") == 0)
2074                          *storage = PMINFO_EXTERNAL_STORAGE;
2075                  else
2076                          return PMINFO_R_ERROR;
2077         }else
2078                 return PMINFO_R_ERROR;
2079
2080         return PMINFO_R_OK;
2081 }
2082
2083 API int pkgmgrinfo_appinfo_get_launch_mode(pkgmgrinfo_appinfo_h handle, char **mode)
2084 {
2085         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2086
2087         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2088         retvm_if(mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2089
2090         if (info->app_info->launch_mode == NULL)
2091                 return PMINFO_R_ERROR;
2092
2093         *mode = (char *)(info->app_info->launch_mode);
2094
2095         return PMINFO_R_OK;
2096 }
2097
2098 API int pkgmgrinfo_appinfo_get_alias_appid(pkgmgrinfo_appinfo_h handle, char **alias_appid)
2099 {
2100         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2101
2102         if (handle == NULL || alias_appid == NULL) {
2103                 LOGE("invalid parameter");
2104                 return PMINFO_R_EINVAL;
2105         }
2106
2107         if (info->app_info == NULL || info->app_info->alias_appid == NULL)
2108                 return PMINFO_R_ERROR;
2109
2110         *alias_appid = (char *)info->app_info->alias_appid;
2111
2112         return PMINFO_R_OK;
2113 }
2114
2115 API int pkgmgrinfo_appinfo_get_effective_appid(pkgmgrinfo_appinfo_h handle, char **effective_appid)
2116 {
2117         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2118
2119         if (handle == NULL || effective_appid == NULL) {
2120                 LOGE("invalid parameter");
2121                 return PMINFO_R_EINVAL;
2122         }
2123
2124         if (info->app_info == NULL)
2125                 return PMINFO_R_ERROR;
2126         if (info->app_info->effective_appid == NULL)
2127                 info->app_info->effective_appid = strdup("");
2128
2129         *effective_appid = (char *)info->app_info->effective_appid;
2130
2131         return PMINFO_R_OK;
2132 }
2133
2134 API int pkgmgrinfo_appinfo_get_tep_name(pkgmgrinfo_appinfo_h handle, char **tep_name)
2135 {
2136         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2137
2138         if (handle == NULL || tep_name == NULL) {
2139                 LOGE("invalid parameter");
2140                 return PMINFO_R_EINVAL;
2141         }
2142
2143         if (info->app_info == NULL)
2144                 return PMINFO_R_ERROR;
2145         if (info->app_info->tep_name == NULL)
2146                 info->app_info->tep_name = strdup("");
2147
2148         *tep_name = (char *)info->app_info->tep_name;
2149
2150         return PMINFO_R_OK;
2151 }
2152
2153 API int pkgmgrinfo_appinfo_get_zip_mount_file(pkgmgrinfo_appinfo_h handle, char **zip_mount_file)
2154 {
2155         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2156
2157         if (handle == NULL || zip_mount_file == NULL) {
2158                 LOGE("invalid parameter");
2159                 return PMINFO_R_EINVAL;
2160         }
2161
2162         if (info->app_info == NULL)
2163                 return PMINFO_R_ERROR;
2164         if (info->app_info->zip_mount_file == NULL)
2165                 info->app_info->zip_mount_file = strdup("");
2166
2167         *zip_mount_file = (char *)info->app_info->zip_mount_file;
2168
2169         return PMINFO_R_OK;
2170 }
2171
2172 API int pkgmgrinfo_appinfo_get_root_path(pkgmgrinfo_appinfo_h handle, char **root_path)
2173 {
2174         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2175
2176         if (handle == NULL || root_path == NULL) {
2177                 LOGE("invalid parameter");
2178                 return PMINFO_R_EINVAL;
2179         }
2180
2181         if (info->app_info == NULL || info->app_info->root_path == NULL)
2182                 return PMINFO_R_ERROR;
2183
2184         *root_path = (char *)info->app_info->root_path;
2185
2186         return PMINFO_R_OK;
2187 }
2188
2189 API int pkgmgrinfo_appinfo_get_api_version(pkgmgrinfo_appinfo_h handle, char **api_version)
2190 {
2191         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2192
2193         if (handle == NULL || api_version == NULL) {
2194                 LOGE("invalid parameter");
2195                 return PMINFO_R_EINVAL;
2196         }
2197
2198         if (info->app_info == NULL || info->app_info->api_version == NULL)
2199                 return PMINFO_R_ERROR;
2200
2201         *api_version = (char *)info->app_info->api_version;
2202
2203         return PMINFO_R_OK;
2204 }
2205
2206 API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid, const char *type, uid_t uid, char **appid, char **access)
2207 {
2208         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2209         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2210         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2211         retvm_if(access == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2212
2213         int ret = PMINFO_R_OK;
2214         char *query = NULL;
2215         sqlite3_stmt *stmt = NULL;
2216
2217         /*open db*/
2218         ret = __open_manifest_db(uid, true);
2219         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2220
2221         /*Start constructing query*/
2222         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q and type=%Q", providerid, type);
2223         tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory");
2224
2225         /*prepare query*/
2226         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2227         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2228
2229         /*step query*/
2230         ret = sqlite3_step(stmt);
2231         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2232
2233         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2234         *access = strdup((char *)sqlite3_column_text(stmt, 2));
2235
2236         ret = PMINFO_R_OK;
2237
2238 catch:
2239         sqlite3_free(query);
2240         sqlite3_finalize(stmt);
2241         __close_manifest_db();
2242         return ret;
2243 }
2244
2245 API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid, const char *type, char **appid, char **access)
2246 {
2247         return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid, type, _getuid(), appid, access);
2248 }
2249
2250 API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid, uid_t uid, char **appid)
2251 {
2252         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
2253         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2254
2255         int ret = PMINFO_R_OK;
2256         char *query = NULL;
2257         sqlite3_stmt *stmt = NULL;
2258
2259         /*open db*/
2260         ret = __open_manifest_db(uid, true);
2261         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
2262
2263         /*Start constructing query*/
2264         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q", providerid);
2265         tryvm_if(query == NULL, ret = PMINFO_R_ERROR, "Out of memory");
2266
2267         /*prepare query*/
2268         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
2269         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
2270
2271         /*step query*/
2272         ret = sqlite3_step(stmt);
2273         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
2274
2275         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
2276
2277         ret = PMINFO_R_OK;
2278
2279 catch:
2280         sqlite3_free(query);
2281         sqlite3_finalize(stmt);
2282         __close_manifest_db();
2283         return ret;
2284 }
2285
2286 API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid)
2287 {
2288         return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, _getuid(), appid);
2289 }
2290
2291 API int pkgmgrinfo_appinfo_foreach_permission(pkgmgrinfo_appinfo_h handle,
2292                         pkgmgrinfo_app_permission_list_cb permission_func, void *user_data)
2293 {
2294         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2295         retvm_if(permission_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2296         int ret = -1;
2297         permission_x *ptr;
2298         GList *tmp;
2299         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2300
2301         if (info->app_info == NULL)
2302                 return PMINFO_R_ERROR;
2303
2304         for (tmp = info->app_info->permission; tmp; tmp = tmp->next) {
2305                 ptr = (permission_x *)tmp->data;
2306                 if (ptr == NULL)
2307                         continue;
2308                 if (ptr->value) {
2309                         ret = permission_func(ptr->value, user_data);
2310                         if (ret < 0)
2311                                 break;
2312                 }
2313         }
2314         return PMINFO_R_OK;
2315 }
2316
2317 API int pkgmgrinfo_appinfo_foreach_category(pkgmgrinfo_appinfo_h handle,
2318                         pkgmgrinfo_app_category_list_cb category_func, void *user_data)
2319 {
2320         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2321         retvm_if(category_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2322         int ret = -1;
2323         const char *category;
2324         GList *tmp;
2325         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2326
2327         if (info->app_info == NULL)
2328                 return PMINFO_R_ERROR;
2329
2330         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2331                 category = (const char *)tmp->data;
2332                 if (category) {
2333                         ret = category_func(category, user_data);
2334                         if (ret < 0)
2335                                 break;
2336                 }
2337         }
2338         return PMINFO_R_OK;
2339 }
2340
2341 API int pkgmgrinfo_appinfo_foreach_metadata(pkgmgrinfo_appinfo_h handle,
2342                         pkgmgrinfo_app_metadata_list_cb metadata_func, void *user_data)
2343 {
2344         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2345         retvm_if(metadata_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2346         int ret = -1;
2347         metadata_x *ptr;
2348         GList *tmp;
2349         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2350
2351         if (info->app_info == NULL)
2352                 return PMINFO_R_ERROR;
2353
2354         for (tmp = info->app_info->metadata; tmp; tmp = tmp->next) {
2355                 ptr = (metadata_x *)tmp->data;
2356                 if (ptr == NULL)
2357                         continue;
2358                 if (ptr->key) {
2359                         if (ptr->value == NULL)
2360                                 ptr->value = strdup("");
2361                         ret = metadata_func(ptr->key, ptr->value, user_data);
2362                         if (ret < 0)
2363                                 break;
2364                 }
2365         }
2366         return PMINFO_R_OK;
2367 }
2368
2369 API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle,
2370                         pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data)
2371 {
2372         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2373         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2374         int ret;
2375         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2376         appcontrol_x *appcontrol;
2377         GList *tmp;
2378
2379         if (info->app_info == NULL)
2380                 return PMINFO_R_ERROR;
2381
2382         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
2383                 appcontrol = (appcontrol_x *)tmp->data;
2384                 if (appcontrol == NULL)
2385                         continue;
2386                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data);
2387                 if (ret < 0)
2388                         break;
2389         }
2390
2391         return PMINFO_R_OK;
2392 }
2393
2394 API int pkgmgrinfo_appinfo_foreach_background_category(
2395                 pkgmgrinfo_appinfo_h handle,
2396                 pkgmgrinfo_app_background_category_list_cb category_func,
2397                 void *user_data)
2398 {
2399         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2400         GList *tmp;
2401         char *category;
2402
2403         if (handle == NULL || category_func == NULL || info->app_info == NULL) {
2404                 LOGE("invalid parameter");
2405                 return PMINFO_R_EINVAL;
2406         }
2407
2408         for (tmp = info->app_info->background_category; tmp; tmp = tmp->next) {
2409                 category = (char *)tmp->data;
2410                 if (category == NULL)
2411                         continue;
2412
2413                 if (category_func(category, user_data) < 0)
2414                         break;
2415         }
2416
2417         return PMINFO_R_OK;
2418 }
2419
2420 API int pkgmgrinfo_appinfo_foreach_splash_screen(pkgmgrinfo_appinfo_h handle,
2421                 pkgmgrinfo_app_splash_screen_list_cb splash_screen_func,
2422                 void *user_data)
2423 {
2424         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2425         splashscreen_x *splashscreen;
2426         GList *tmp;
2427         int ret;
2428
2429         if (info == NULL || info->app_info == NULL
2430                         || splash_screen_func == NULL) {
2431                 LOGE("invalid parameter");
2432                 return PMINFO_R_EINVAL;
2433         }
2434
2435         for (tmp = info->app_info->splashscreens; tmp; tmp = tmp->next) {
2436                 splashscreen = (splashscreen_x *)tmp->data;
2437                 if (splashscreen == NULL)
2438                         continue;
2439                 ret = splash_screen_func(splashscreen->src,
2440                                 splashscreen->type,
2441                                 splashscreen->orientation,
2442                                 splashscreen->indicatordisplay,
2443                                 splashscreen->operation,
2444                                 splashscreen->color_depth,
2445                                 user_data);
2446                 if (ret < 0)
2447                         break;
2448         }
2449
2450         return PMINFO_R_OK;
2451 }
2452
2453 API int pkgmgrinfo_appinfo_is_nodisplay(pkgmgrinfo_appinfo_h handle, bool *nodisplay)
2454 {
2455         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2456         retvm_if(nodisplay == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2457         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2458
2459         if (info->app_info == NULL || info->app_info->nodisplay == NULL)
2460                 return PMINFO_R_ERROR;
2461
2462         *nodisplay = _get_bool_value(info->app_info->nodisplay);
2463
2464         return PMINFO_R_OK;
2465 }
2466
2467 API int pkgmgrinfo_appinfo_is_multiple(pkgmgrinfo_appinfo_h handle, bool *multiple)
2468 {
2469         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2470         retvm_if(multiple == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2471         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2472
2473         if (info->app_info == NULL || info->app_info->multiple == NULL)
2474                 return PMINFO_R_ERROR;
2475
2476         *multiple = _get_bool_value(info->app_info->multiple);
2477
2478         return PMINFO_R_OK;
2479 }
2480
2481 API int pkgmgrinfo_appinfo_is_indicator_display_allowed(pkgmgrinfo_appinfo_h handle, bool *indicator_disp)
2482 {
2483         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2484         retvm_if(indicator_disp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2485         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2486
2487         if (info->app_info == NULL || info->app_info->indicatordisplay == NULL)
2488                 return PMINFO_R_ERROR;
2489
2490         *indicator_disp = _get_bool_value(info->app_info->indicatordisplay);
2491
2492         return PMINFO_R_OK;
2493 }
2494
2495 API int pkgmgrinfo_appinfo_is_taskmanage(pkgmgrinfo_appinfo_h  handle, bool *taskmanage)
2496 {
2497         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2498         retvm_if(taskmanage == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2499         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2500
2501         if (info->app_info == NULL || info->app_info->taskmanage == NULL)
2502                 return PMINFO_R_ERROR;
2503
2504         *taskmanage = _get_bool_value(info->app_info->taskmanage);
2505
2506         return PMINFO_R_OK;
2507 }
2508
2509 API int pkgmgrinfo_appinfo_is_enabled(pkgmgrinfo_appinfo_h  handle, bool *enabled)
2510 {
2511         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2512         retvm_if(enabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2513         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2514
2515         if (info->app_info == NULL || info->app_info->enabled == NULL)
2516                 return PMINFO_R_ERROR;
2517
2518         *enabled = _get_bool_value(info->app_info->enabled);
2519
2520         return PMINFO_R_OK;
2521 }
2522
2523 API int pkgmgrinfo_appinfo_is_onboot(pkgmgrinfo_appinfo_h  handle, bool *onboot)
2524 {
2525         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2526         retvm_if(onboot == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2527         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2528
2529         if (info->app_info == NULL || info->app_info->onboot == NULL)
2530                 return PMINFO_R_ERROR;
2531
2532         *onboot = _get_bool_value(info->app_info->onboot);
2533
2534         return PMINFO_R_OK;
2535 }
2536
2537 API int pkgmgrinfo_appinfo_is_autorestart(pkgmgrinfo_appinfo_h  handle, bool *autorestart)
2538 {
2539         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2540         retvm_if(autorestart == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2541         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2542
2543         if (info->app_info == NULL || info->app_info->autorestart == NULL)
2544                 return PMINFO_R_ERROR;
2545
2546         *autorestart = _get_bool_value(info->app_info->autorestart);
2547
2548         return PMINFO_R_OK;
2549 }
2550
2551 API int pkgmgrinfo_appinfo_is_mainapp(pkgmgrinfo_appinfo_h  handle, bool *mainapp)
2552 {
2553         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2554         retvm_if(mainapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2555         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2556
2557         if (info->app_info == NULL || info->app_info->mainapp == NULL)
2558                 return PMINFO_R_ERROR;
2559
2560         *mainapp = _get_bool_value(info->app_info->mainapp);
2561
2562         return PMINFO_R_OK;
2563 }
2564
2565 API int pkgmgrinfo_appinfo_is_preload(pkgmgrinfo_appinfo_h handle, bool *preload)
2566 {
2567         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2568         retvm_if(preload == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2569         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2570
2571         if (info->app_info == NULL || info->app_info->preload == NULL)
2572                 return PMINFO_R_ERROR;
2573
2574         *preload = _get_bool_value(info->app_info->preload);
2575
2576         return PMINFO_R_OK;
2577 }
2578
2579 API int pkgmgrinfo_appinfo_is_submode(pkgmgrinfo_appinfo_h handle, bool *submode)
2580 {
2581         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2582         retvm_if(submode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2583         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2584
2585         if (info->app_info == NULL || info->app_info->submode == NULL)
2586                 return PMINFO_R_ERROR;
2587
2588         *submode = _get_bool_value(info->app_info->submode);
2589
2590         return PMINFO_R_OK;
2591 }
2592
2593 API int pkgmgrinfo_appinfo_is_process_pool(pkgmgrinfo_appinfo_h handle, bool *process_pool)
2594 {
2595         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2596
2597         if (handle == NULL || process_pool == NULL) {
2598                 LOGE("invalid parameter");
2599                 return PMINFO_R_EINVAL;
2600         }
2601
2602         if (info->app_info == NULL)
2603                 return PMINFO_R_ERROR;
2604
2605         *process_pool = _get_bool_value(info->app_info->process_pool);
2606
2607         return PMINFO_R_OK;
2608 }
2609
2610 API int pkgmgrinfo_appinfo_is_category_exist(pkgmgrinfo_appinfo_h handle, const char *category, bool *exist)
2611 {
2612         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2613         retvm_if(category == NULL, PMINFO_R_EINVAL, "category is NULL");
2614         retvm_if(exist == NULL, PMINFO_R_EINVAL, "exist is NULL");
2615
2616         const char *val;
2617         GList *tmp;
2618         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2619
2620         if (info->app_info == NULL)
2621                 return PMINFO_R_ERROR;
2622
2623         *exist = 0;
2624         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2625                 val = (const char *)tmp->data;
2626                 if (val == NULL)
2627                         continue;
2628                 if (strcasecmp(val, category) == 0) {
2629                         *exist = 1;
2630                         break;
2631                 }
2632         }
2633
2634         return PMINFO_R_OK;
2635 }
2636
2637 API int pkgmgrinfo_appinfo_is_ui_gadget(pkgmgrinfo_appinfo_h handle,
2638                 bool *ui_gadget)
2639 {
2640         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2641
2642         if (info == NULL || info->app_info == NULL || ui_gadget == NULL) {
2643                 _LOGE("invalid parameter");
2644                 return PMINFO_R_EINVAL;
2645         }
2646         if (info->app_info->ui_gadget == NULL)
2647                 info->app_info->ui_gadget = strdup("false");
2648
2649         *ui_gadget = _get_bool_value(info->app_info->ui_gadget);
2650
2651         return PMINFO_R_OK;
2652 }
2653
2654 API int pkgmgrinfo_appinfo_is_support_disable(pkgmgrinfo_appinfo_h handle,
2655                 bool *support_disable)
2656 {
2657         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2658
2659         if (info == NULL || info->app_info == NULL || support_disable == NULL) {
2660                 _LOGE("invalid parameter");
2661                 return PMINFO_R_EINVAL;
2662         }
2663
2664         *support_disable = _get_bool_value(info->app_info->support_disable);
2665
2666         return PMINFO_R_OK;
2667 }
2668
2669 API int pkgmgrinfo_appinfo_is_disabled(pkgmgrinfo_appinfo_h handle, bool *disabled)
2670 {
2671         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2672         retvm_if(disabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2673         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2674
2675         if (info->app_info == NULL || info->app_info->is_disabled == NULL)
2676                 return PMINFO_R_ERROR;
2677
2678         *disabled = _get_bool_value(info->app_info->is_disabled);
2679
2680         return PMINFO_R_OK;
2681 }
2682
2683 API int pkgmgrinfo_appinfo_is_global(pkgmgrinfo_appinfo_h handle, bool *global)
2684 {
2685         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2686
2687         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2688         retvm_if(global == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2689
2690         if (info->app_info == NULL || info->app_info->for_all_users == NULL)
2691                 return PMINFO_R_ERROR;
2692
2693         *global = _get_bool_value(info->app_info->for_all_users);
2694
2695         return PMINFO_R_OK;
2696 }
2697
2698 API int pkgmgrinfo_appinfo_get_splash_screen_display(pkgmgrinfo_appinfo_h handle, bool *splash_screen_display)
2699 {
2700         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2701
2702         if (info == NULL || splash_screen_display == NULL) {
2703                 _LOGE("Invalid parameter");
2704                 return PMINFO_R_EINVAL;
2705         }
2706
2707         if (info->app_info == NULL || info->app_info->splash_screen_display == NULL)
2708                 return PMINFO_R_ERROR;
2709
2710         *splash_screen_display = _get_bool_value(info->app_info->splash_screen_display);
2711
2712         return PMINFO_R_OK;
2713 }
2714
2715 API int pkgmgrinfo_appinfo_destroy_appinfo(pkgmgrinfo_appinfo_h handle)
2716 {
2717         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2718         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2719         __cleanup_appinfo(info);
2720         return PMINFO_R_OK;
2721 }
2722
2723 API int pkgmgrinfo_appinfo_filter_create(pkgmgrinfo_appinfo_filter_h *handle)
2724 {
2725         return (pkgmgrinfo_pkginfo_filter_create(handle));
2726 }
2727
2728 API int pkgmgrinfo_appinfo_filter_destroy(pkgmgrinfo_appinfo_filter_h handle)
2729 {
2730         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2731 }
2732
2733 static gint __compare_func(gconstpointer data1, gconstpointer data2)
2734 {
2735         pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x*)data1;
2736         pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x*)data2;
2737         if (node1->prop == node2->prop)
2738                 return 0;
2739         else if (node1->prop > node2->prop)
2740                 return 1;
2741         else
2742                 return -1;
2743 }
2744
2745 API int pkgmgrinfo_appinfo_filter_add_int(pkgmgrinfo_appinfo_filter_h handle,
2746                                 const char *property, const int value)
2747 {
2748         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2749         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2750         char buf[PKG_VALUE_STRING_LEN_MAX] = {'\0'};
2751         char *val = NULL;
2752         GSList *link = NULL;
2753         int prop = -1;
2754         prop = _pminfo_appinfo_convert_to_prop_int(property);
2755         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_INT ||
2756                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_INT) {
2757                 _LOGE("Invalid Integer Property\n");
2758                 return PMINFO_R_EINVAL;
2759         }
2760         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2761         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2762         if (node == NULL) {
2763                 _LOGE("Out of Memory!!!\n");
2764                 return PMINFO_R_ERROR;
2765         }
2766         snprintf(buf, PKG_VALUE_STRING_LEN_MAX - 1, "%d", value);
2767         val = strndup(buf, PKG_VALUE_STRING_LEN_MAX - 1);
2768         if (val == NULL) {
2769                 _LOGE("Out of Memory\n");
2770                 free(node);
2771                 node = NULL;
2772                 return PMINFO_R_ERROR;
2773         }
2774         node->prop = prop;
2775         node->value = val;
2776         /*If API is called multiple times for same property, we should override the previous values.
2777         Last value set will be used for filtering.*/
2778         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2779         if (link)
2780                 filter->list = g_slist_delete_link(filter->list, link);
2781         filter->list = g_slist_append(filter->list, (gpointer)node);
2782         return PMINFO_R_OK;
2783
2784 }
2785
2786 API int pkgmgrinfo_appinfo_filter_add_bool(pkgmgrinfo_appinfo_filter_h handle,
2787                                 const char *property, const bool value)
2788 {
2789         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2790         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2791         char *val = NULL;
2792         GSList *link = NULL;
2793         int prop = -1;
2794         prop = _pminfo_appinfo_convert_to_prop_bool(property);
2795         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_BOOL ||
2796                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_BOOL) {
2797                 _LOGE("Invalid Boolean Property\n");
2798                 return PMINFO_R_EINVAL;
2799         }
2800         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2801         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2802         if (node == NULL) {
2803                 _LOGE("Out of Memory!!!\n");
2804                 return PMINFO_R_ERROR;
2805         }
2806         if (value)
2807                 val = strndup("true", 4);
2808         else
2809                 val = strndup("false", 5);
2810         if (val == NULL) {
2811                 _LOGE("Out of Memory\n");
2812                 free(node);
2813                 node = NULL;
2814                 return PMINFO_R_ERROR;
2815         }
2816         node->prop = prop;
2817         node->value = val;
2818         /*If API is called multiple times for same property, we should override the previous values.
2819         Last value set will be used for filtering.*/
2820         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2821         if (link)
2822                 filter->list = g_slist_delete_link(filter->list, link);
2823         filter->list = g_slist_append(filter->list, (gpointer)node);
2824         return PMINFO_R_OK;
2825
2826 }
2827
2828 API int pkgmgrinfo_appinfo_filter_add_string(pkgmgrinfo_appinfo_filter_h handle,
2829                                 const char *property, const char *value)
2830 {
2831         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2832         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2833         retvm_if(value == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2834         char *val = NULL;
2835         pkgmgrinfo_node_x *ptr = NULL;
2836         char prev[PKG_STRING_LEN_MAX] = {'\0'};
2837         char temp[PKG_STRING_LEN_MAX] = {'\0'};
2838         GSList *link = NULL;
2839         int prop = -1;
2840         prop = _pminfo_appinfo_convert_to_prop_str(property);
2841         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_STR ||
2842                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_STR) {
2843                 _LOGE("Invalid String Property\n");
2844                 return PMINFO_R_EINVAL;
2845         }
2846         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2847         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2848         if (node == NULL) {
2849                 _LOGE("Out of Memory!!!\n");
2850                 return PMINFO_R_ERROR;
2851         }
2852         node->prop = prop;
2853         switch (prop) {
2854         case E_PMINFO_APPINFO_PROP_APP_COMPONENT:
2855                 node->value = strdup(value);
2856                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2857                 if (link)
2858                         filter->list = g_slist_delete_link(filter->list, link);
2859                 filter->list = g_slist_append(filter->list, (gpointer)node);
2860                 break;
2861         case E_PMINFO_APPINFO_PROP_APP_CATEGORY:
2862                 val = (char *)calloc(1, PKG_STRING_LEN_MAX);
2863                 if (val == NULL) {
2864                         _LOGE("Out of Memory\n");
2865                         free(node);
2866                         node = NULL;
2867                         return PMINFO_R_ERROR;
2868                 }
2869                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2870                 if (link) {
2871                         ptr = (pkgmgrinfo_node_x *)link->data;
2872                         strncpy(prev, ptr->value, PKG_STRING_LEN_MAX - 1);
2873                         _LOGI("Previous value is %s\n", prev);
2874                         filter->list = g_slist_delete_link(filter->list, link);
2875                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s,%s", prev, value);
2876                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
2877                         _LOGI("New value is %s\n", val);
2878                         node->value = val;
2879                         filter->list = g_slist_append(filter->list, (gpointer)node);
2880                         memset(temp, '\0', PKG_STRING_LEN_MAX);
2881                 } else {
2882                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s", value);
2883                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
2884                         _LOGI("First value is %s\n", val);
2885                         node->value = val;
2886                         filter->list = g_slist_append(filter->list, (gpointer)node);
2887                         memset(temp, '\0', PKG_STRING_LEN_MAX);
2888                 }
2889                 break;
2890         default:
2891                 node->value = strndup(value, PKG_STRING_LEN_MAX - 1);
2892                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2893                 if (link)
2894                         filter->list = g_slist_delete_link(filter->list, link);
2895                 filter->list = g_slist_append(filter->list, (gpointer)node);
2896                 break;
2897         }
2898         return PMINFO_R_OK;
2899 }
2900
2901 API int pkgmgrinfo_appinfo_usr_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count, uid_t uid)
2902 {
2903         int ret;
2904         char *locale;
2905         GHashTable *list;
2906
2907         if (handle == NULL || count == NULL) {
2908                 _LOGE("invalid parameter");
2909                 return PMINFO_R_EINVAL;
2910         }
2911
2912         locale = _get_system_locale();
2913         if (locale == NULL)
2914                 return PMINFO_R_ERROR;
2915
2916         list = g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
2917                         __free_applications);
2918         if (list == NULL) {
2919                 free(locale);
2920                 return PMINFO_R_ERROR;
2921         }
2922
2923         ret = _appinfo_get_applications(uid, uid, locale, handle, 0, list);
2924         if (ret == PMINFO_R_OK && uid != GLOBAL_USER)
2925                 ret = _appinfo_get_applications(GLOBAL_USER, uid, locale,
2926                                 handle, 0, list);
2927
2928         if (ret != PMINFO_R_OK) {
2929                 g_hash_table_destroy(list);
2930                 free(locale);
2931                 return PMINFO_R_ERROR;
2932         }
2933
2934         *count = g_hash_table_size(list);
2935         g_hash_table_destroy(list);
2936         free(locale);
2937
2938         return PMINFO_R_OK;
2939 }
2940
2941 API int pkgmgrinfo_appinfo_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count)
2942 {
2943         return pkgmgrinfo_appinfo_usr_filter_count(handle, count, _getuid());
2944 }
2945
2946 API int pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(
2947                 pkgmgrinfo_appinfo_filter_h handle,
2948                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
2949 {
2950         if (handle == NULL || app_cb == NULL) {
2951                 LOGE("invalid parameter");
2952                 return PMINFO_R_EINVAL;
2953         }
2954
2955         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
2956                         user_data);
2957 }
2958
2959 API int pkgmgrinfo_appinfo_filter_foreach_appinfo(pkgmgrinfo_appinfo_filter_h handle,
2960                                 pkgmgrinfo_app_list_cb app_cb, void * user_data)
2961 {
2962         return pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(handle, app_cb, user_data, _getuid());
2963 }
2964
2965 API int pkgmgrinfo_appinfo_metadata_filter_create(pkgmgrinfo_appinfo_metadata_filter_h *handle)
2966 {
2967         return (pkgmgrinfo_pkginfo_filter_create(handle));
2968 }
2969
2970 API int pkgmgrinfo_appinfo_metadata_filter_destroy(pkgmgrinfo_appinfo_metadata_filter_h handle)
2971 {
2972         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2973 }
2974
2975 API int pkgmgrinfo_appinfo_metadata_filter_add(
2976                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2977                 const char *key, const char *value)
2978 {
2979         int ret;
2980
2981         ret = pkgmgrinfo_appinfo_filter_add_string(handle,
2982                         PMINFO_APPINFO_PROP_APP_METADATA_KEY, key);
2983         if (ret != PMINFO_R_OK)
2984                 return ret;
2985
2986         /* value can be NULL.
2987          * In that case all apps with specified key should be displayed
2988          */
2989         if (value) {
2990                 ret = pkgmgrinfo_appinfo_filter_add_string(handle,
2991                                 PMINFO_APPINFO_PROP_APP_METADATA_VALUE, value);
2992                 if (ret != PMINFO_R_OK)
2993                         return ret;
2994         }
2995
2996         return PMINFO_R_OK;
2997 }
2998
2999 API int pkgmgrinfo_appinfo_usr_metadata_filter_foreach(
3000                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3001                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
3002 {
3003         if (handle == NULL || app_cb == NULL) {
3004                 LOGE("invalid parameter");
3005                 return PMINFO_R_EINVAL;
3006         }
3007
3008         return _appinfo_get_filtered_foreach_appinfo(uid, handle, PMINFO_APPINFO_GET_ALL, app_cb,
3009                         user_data);
3010 }
3011
3012 API int pkgmgrinfo_appinfo_metadata_filter_foreach(
3013                 pkgmgrinfo_appinfo_metadata_filter_h handle,
3014                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
3015 {
3016         return pkgmgrinfo_appinfo_usr_metadata_filter_foreach(handle, app_cb,
3017                         user_data, _getuid());
3018 }
3019
3020 API int pkgmgrinfo_appinfo_is_guestmode_visibility(pkgmgrinfo_appinfo_h handle, bool *status)
3021 {
3022         const char *val;
3023         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
3024
3025         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
3026         retvm_if(status == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
3027
3028         val = info->app_info->guestmode_visibility;
3029         *status = _get_bool_value(val);
3030         return PMINFO_R_OK;
3031 }