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