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