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