Add app-control-operation on splash screen
[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
1519                 return -1;
1520 }
1521
1522 API int pkgmgrinfo_appinfo_get_component(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_component *component)
1523 {
1524         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1525         int comp;
1526
1527         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1528         retvm_if(component == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1529
1530         if (info->app_info == NULL)
1531                 return PMINFO_R_ERROR;
1532
1533         comp = __appcomponent_convert(info->app_info->component);
1534         if (comp < 0)
1535                 return PMINFO_R_ERROR;
1536
1537         *component = comp;
1538
1539         return PMINFO_R_OK;
1540 }
1541
1542 API int pkgmgrinfo_appinfo_get_apptype(pkgmgrinfo_appinfo_h handle, char **app_type)
1543 {
1544         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1545
1546         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1547         retvm_if(app_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1548
1549         if (info->app_info == NULL || info->app_info->type == NULL)
1550                 return PMINFO_R_ERROR;
1551         *app_type = (char *)info->app_info->type;
1552
1553         return PMINFO_R_OK;
1554 }
1555
1556 API int pkgmgrinfo_appinfo_get_operation(pkgmgrinfo_appcontrol_h  handle,
1557                                         int *operation_count, char ***operation)
1558 {
1559         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1560         retvm_if(operation == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1561         retvm_if(operation_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1562         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1563         *operation_count = data->operation_count;
1564         *operation = data->operation;
1565         return PMINFO_R_OK;
1566 }
1567
1568 API int pkgmgrinfo_appinfo_get_uri(pkgmgrinfo_appcontrol_h  handle,
1569                                         int *uri_count, char ***uri)
1570 {
1571         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1572         retvm_if(uri == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1573         retvm_if(uri_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1574         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1575         *uri_count = data->uri_count;
1576         *uri = data->uri;
1577         return PMINFO_R_OK;
1578 }
1579
1580 API int pkgmgrinfo_appinfo_get_mime(pkgmgrinfo_appcontrol_h  handle,
1581                                         int *mime_count, char ***mime)
1582 {
1583         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1584         retvm_if(mime == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1585         retvm_if(mime_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1586         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1587         *mime_count = data->mime_count;
1588         *mime = data->mime;
1589         return PMINFO_R_OK;
1590 }
1591
1592 API int pkgmgrinfo_appinfo_get_subapp(pkgmgrinfo_appcontrol_h  handle,
1593                                         int *subapp_count, char ***subapp)
1594 {
1595         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1596         retvm_if(subapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1597         retvm_if(subapp_count == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1598         pkgmgrinfo_appcontrol_x *data = (pkgmgrinfo_appcontrol_x *)handle;
1599         *subapp_count = data->subapp_count;
1600         *subapp = data->subapp;
1601         return PMINFO_R_OK;
1602 }
1603
1604 API int pkgmgrinfo_appinfo_get_setting_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1605 {
1606         char *val;
1607         icon_x *ptr;
1608         GList *tmp;
1609         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1610
1611         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1612         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1613
1614         if (info->app_info == NULL)
1615                 return PMINFO_R_ERROR;
1616
1617         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1618                 ptr = (icon_x *)tmp->data;
1619                 if (ptr == NULL || ptr->section == NULL)
1620                         continue;
1621
1622                 val = (char *)ptr->section;
1623                 if (val && strcmp(val, "setting") == 0) {
1624                         *icon = (char *)ptr->text;
1625                         return PMINFO_R_OK;
1626                 }
1627         }
1628
1629         return PMINFO_R_ERROR;
1630 }
1631
1632
1633 API int pkgmgrinfo_appinfo_get_notification_icon(pkgmgrinfo_appinfo_h handle, char **icon)
1634 {
1635         char *val;
1636         icon_x *ptr;
1637         GList *tmp;
1638         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1639
1640         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1641         retvm_if(icon == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1642
1643         if (info->app_info == NULL)
1644                 return PMINFO_R_ERROR;
1645
1646         for (tmp = info->app_info->icon; tmp; tmp = tmp->next) {
1647                 ptr = (icon_x *)tmp->data;
1648                 if (ptr == NULL || ptr->section == NULL)
1649                         continue;
1650
1651                 val = (char *)ptr->section;
1652                 if (val && strcmp(val, "notification") == 0){
1653                         *icon = (char *)ptr->text;
1654                         return PMINFO_R_OK;
1655                 }
1656         }
1657
1658         return PMINFO_R_ERROR;
1659 }
1660
1661 API int pkgmgrinfo_appinfo_get_recent_image_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_recentimage *type)
1662 {
1663         char *val;
1664         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1665
1666         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1667         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1668
1669         if (info->app_info == NULL || info->app_info->recentimage == NULL)
1670                 return PMINFO_R_ERROR;
1671
1672         val = (char *)info->app_info->recentimage;
1673         if (strcasecmp(val, "capture") == 0)
1674                 *type = PMINFO_RECENTIMAGE_USE_CAPTURE;
1675         else if (strcasecmp(val, "icon") == 0)
1676                 *type = PMINFO_RECENTIMAGE_USE_ICON;
1677         else
1678                 *type = PMINFO_RECENTIMAGE_USE_NOTHING;
1679
1680         return PMINFO_R_OK;
1681 }
1682
1683 API int pkgmgrinfo_appinfo_get_preview_image(pkgmgrinfo_appinfo_h handle, char **preview_img)
1684 {
1685         char *val;
1686         image_x *ptr;
1687         GList *tmp;
1688         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1689
1690         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1691         retvm_if(preview_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1692
1693         if (info->app_info == NULL)
1694                 return PMINFO_R_ERROR;
1695
1696         for (tmp = info->app_info->image; tmp; tmp = tmp->next) {
1697                 ptr = (image_x *)tmp->data;
1698                 if (ptr == NULL || ptr->section == NULL)
1699                         continue;
1700
1701                 val = (char *)ptr->section;
1702                 if (val && strcmp(val, "preview") == 0) {
1703                         *preview_img = (char *)ptr->text;
1704                         return PMINFO_R_OK;
1705                 }
1706         }
1707
1708         return PMINFO_R_ERROR;
1709 }
1710
1711 API int pkgmgrinfo_appinfo_get_permission_type(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_permission_type *permission)
1712 {
1713         const char *val;
1714         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1715
1716         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1717         retvm_if(permission == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1718
1719         val = info->app_info->permission_type;
1720         if (val == NULL)
1721                 return PMINFO_R_ERROR;
1722
1723         if (strcmp(val, "signature") == 0)
1724                 *permission = PMINFO_PERMISSION_SIGNATURE;
1725         else if (strcmp(val, "privilege") == 0)
1726                 *permission = PMINFO_PERMISSION_PRIVILEGE;
1727         else
1728                 *permission = PMINFO_PERMISSION_NORMAL;
1729
1730         return PMINFO_R_OK;
1731 }
1732
1733 API int pkgmgrinfo_appinfo_get_component_type(pkgmgrinfo_appinfo_h handle, char **component_type)
1734 {
1735         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1736
1737         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1738         retvm_if(component_type == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1739
1740         if (info->app_info == NULL || info->app_info->component_type == NULL)
1741                 return PMINFO_R_ERROR;
1742
1743         *component_type = (char *)info->app_info->component_type;
1744
1745         return PMINFO_R_OK;
1746 }
1747
1748 API int pkgmgrinfo_appinfo_get_hwacceleration(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_hwacceleration *hwacceleration)
1749 {
1750         char *val;
1751         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1752
1753         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1754         retvm_if(hwacceleration == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1755
1756         if (info->app_info == NULL || info->app_info->hwacceleration == NULL)
1757                 return PMINFO_R_ERROR;
1758
1759         val = (char *)info->app_info->hwacceleration;
1760         if (strcasecmp(val, "not-use-GL") == 0)
1761                 *hwacceleration = PMINFO_HWACCELERATION_NOT_USE_GL;
1762         else if (strcasecmp(val, "use-GL") == 0)
1763                 *hwacceleration = PMINFO_HWACCELERATION_USE_GL;
1764         else
1765                 *hwacceleration = PMINFO_HWACCELERATION_USE_SYSTEM_SETTING;
1766
1767         return PMINFO_R_OK;
1768 }
1769
1770 API int pkgmgrinfo_appinfo_get_screenreader(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_app_screenreader *screenreader)
1771 {
1772         char *val;
1773         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1774
1775         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1776         retvm_if(screenreader == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1777
1778         if (info->app_info == NULL || info->app_info->screenreader == NULL)
1779                 return PMINFO_R_ERROR;
1780
1781         val = (char *)info->app_info->screenreader;
1782         if (strcasecmp(val, "screenreader-off") == 0)
1783                 *screenreader = PMINFO_SCREENREADER_OFF;
1784         else if (strcasecmp(val, "screenreader-on") == 0)
1785                 *screenreader = PMINFO_SCREENREADER_ON;
1786         else
1787                 *screenreader = PMINFO_SCREENREADER_USE_SYSTEM_SETTING;
1788
1789         return PMINFO_R_OK;
1790 }
1791
1792 API int pkgmgrinfo_appinfo_get_effectimage(pkgmgrinfo_appinfo_h handle, char **portrait_img, char **landscape_img)
1793 {
1794         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1795
1796         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1797         retvm_if(portrait_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1798         retvm_if(landscape_img == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1799
1800         if (info->app_info == NULL || (info->app_info->portraitimg == NULL
1801                         && info->app_info->landscapeimg == NULL))
1802                 return PMINFO_R_ERROR;
1803
1804         *portrait_img = (char *)info->app_info->portraitimg;
1805         *landscape_img = (char *)info->app_info->landscapeimg;
1806
1807         return PMINFO_R_OK;
1808 }
1809
1810 API int pkgmgrinfo_appinfo_get_effectimage_type(pkgmgrinfo_appinfo_h handle, char **effectimage_type)
1811 {
1812         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1813
1814         if (handle == NULL || effectimage_type == NULL) {
1815                 LOGE("invalid parameter");
1816                 return PMINFO_R_EINVAL;
1817         }
1818
1819         if (info->app_info == NULL || info->app_info->effectimage_type == NULL)
1820                 return PMINFO_R_ERROR;
1821
1822         *effectimage_type = (char *)info->app_info->effectimage_type;
1823
1824         return PMINFO_R_OK;
1825 }
1826
1827 API int pkgmgrinfo_appinfo_get_submode_mainid(pkgmgrinfo_appinfo_h  handle, char **submode_mainid)
1828 {
1829         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1830
1831         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1832         retvm_if(submode_mainid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
1833
1834         if (info->app_info == NULL || info->app_info->submode_mainid == NULL)
1835                 return PMINFO_R_ERROR;
1836
1837         *submode_mainid = (char *)info->app_info->submode_mainid;
1838
1839         return PMINFO_R_OK;
1840 }
1841
1842 API int pkgmgrinfo_appinfo_get_installed_storage_location(pkgmgrinfo_appinfo_h handle, pkgmgrinfo_installed_storage *storage)
1843 {
1844         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1845         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1846
1847         if (info->app_info && info->app_info->installed_storage){
1848                  if (strcmp(info->app_info->installed_storage,"installed_internal") == 0)
1849                         *storage = PMINFO_INTERNAL_STORAGE;
1850                  else if (strcmp(info->app_info->installed_storage,"installed_external") == 0)
1851                          *storage = PMINFO_EXTERNAL_STORAGE;
1852                  else
1853                          return PMINFO_R_ERROR;
1854         }else
1855                 return PMINFO_R_ERROR;
1856
1857         return PMINFO_R_OK;
1858 }
1859
1860 API int pkgmgrinfo_appinfo_get_launch_mode(pkgmgrinfo_appinfo_h handle, char **mode)
1861 {
1862         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1863
1864         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
1865         retvm_if(mode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1866
1867         if (info->app_info->launch_mode == NULL)
1868                 return PMINFO_R_ERROR;
1869
1870         *mode = (char *)(info->app_info->launch_mode);
1871
1872         return PMINFO_R_OK;
1873 }
1874
1875 API int pkgmgrinfo_appinfo_get_alias_appid(pkgmgrinfo_appinfo_h handle, char **alias_appid)
1876 {
1877         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1878
1879         if (handle == NULL || alias_appid == NULL) {
1880                 LOGE("invalid parameter");
1881                 return PMINFO_R_EINVAL;
1882         }
1883
1884         if (info->app_info == NULL || info->app_info->alias_appid == NULL)
1885                 return PMINFO_R_ERROR;
1886
1887         *alias_appid = (char *)info->app_info->alias_appid;
1888
1889         return PMINFO_R_OK;
1890 }
1891
1892 API int pkgmgrinfo_appinfo_get_effective_appid(pkgmgrinfo_appinfo_h handle, char **effective_appid)
1893 {
1894         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
1895
1896         if (handle == NULL || effective_appid == NULL) {
1897                 LOGE("invalid parameter");
1898                 return PMINFO_R_EINVAL;
1899         }
1900
1901         if (info->app_info == NULL || info->app_info->effective_appid == NULL)
1902                 return PMINFO_R_ERROR;
1903
1904         *effective_appid = (char *)info->app_info->effective_appid;
1905
1906         return PMINFO_R_OK;
1907 }
1908
1909 API int pkgmgrinfo_appinfo_usr_get_datacontrol_info(const char *providerid, const char *type, uid_t uid, char **appid, char **access)
1910 {
1911         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
1912         retvm_if(type == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
1913         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1914         retvm_if(access == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1915
1916         int ret = PMINFO_R_OK;
1917         char *query = NULL;
1918         sqlite3_stmt *stmt = NULL;
1919
1920         /*open db*/
1921         ret = __open_manifest_db(uid, true);
1922         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
1923
1924         /*Start constructing query*/
1925         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q and type=%Q", providerid, type);
1926
1927         /*prepare query*/
1928         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
1929         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
1930
1931         /*step query*/
1932         ret = sqlite3_step(stmt);
1933         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
1934
1935         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
1936         *access = strdup((char *)sqlite3_column_text(stmt, 2));
1937
1938         ret = PMINFO_R_OK;
1939
1940 catch:
1941         sqlite3_free(query);
1942         sqlite3_finalize(stmt);
1943         __close_manifest_db();
1944         return ret;
1945 }
1946
1947 API int pkgmgrinfo_appinfo_get_datacontrol_info(const char *providerid, const char *type, char **appid, char **access)
1948 {
1949         return pkgmgrinfo_appinfo_usr_get_datacontrol_info(providerid, type, GLOBAL_USER, appid, access);
1950 }
1951
1952 API int pkgmgrinfo_appinfo_usr_get_datacontrol_appid(const char *providerid, uid_t uid, char **appid)
1953 {
1954         retvm_if(providerid == NULL, PMINFO_R_EINVAL, "Argument supplied is NULL\n");
1955         retvm_if(appid == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
1956
1957         int ret = PMINFO_R_OK;
1958         char *query = NULL;
1959         sqlite3_stmt *stmt = NULL;
1960
1961         /*open db*/
1962         ret = __open_manifest_db(uid, true);
1963         retvm_if(ret != SQLITE_OK, ret = PMINFO_R_ERROR, "connect db [%s] failed!", MANIFEST_DB);
1964
1965         /*Start constructing query*/
1966         query = sqlite3_mprintf("select * from package_app_data_control where providerid=%Q", providerid);
1967
1968         /*prepare query*/
1969         ret = sqlite3_prepare_v2(GET_DB(manifest_db), query, strlen(query), &stmt, NULL);
1970         tryvm_if(ret != PMINFO_R_OK, ret = PMINFO_R_ERROR, "sqlite3_prepare_v2 failed[%s]\n", query);
1971
1972         /*step query*/
1973         ret = sqlite3_step(stmt);
1974         tryvm_if((ret != SQLITE_ROW) || (ret == SQLITE_DONE), ret = PMINFO_R_ERROR, "No records found");
1975
1976         *appid = strdup((char *)sqlite3_column_text(stmt, 0));
1977
1978         ret = PMINFO_R_OK;
1979
1980 catch:
1981         sqlite3_free(query);
1982         sqlite3_finalize(stmt);
1983         __close_manifest_db();
1984         return ret;
1985 }
1986
1987 API int pkgmgrinfo_appinfo_get_datacontrol_appid(const char *providerid, char **appid)
1988 {
1989         return pkgmgrinfo_appinfo_usr_get_datacontrol_appid(providerid, GLOBAL_USER, appid);
1990 }
1991
1992 API int pkgmgrinfo_appinfo_foreach_permission(pkgmgrinfo_appinfo_h handle,
1993                         pkgmgrinfo_app_permission_list_cb permission_func, void *user_data)
1994 {
1995         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
1996         retvm_if(permission_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
1997         int ret = -1;
1998         permission_x *ptr;
1999         GList *tmp;
2000         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2001
2002         if (info->app_info == NULL)
2003                 return PMINFO_R_ERROR;
2004
2005         for (tmp = info->app_info->permission; tmp; tmp = tmp->next) {
2006                 ptr = (permission_x *)tmp->data;
2007                 if (ptr == NULL)
2008                         continue;
2009                 if (ptr->value) {
2010                         ret = permission_func(ptr->value, user_data);
2011                         if (ret < 0)
2012                                 break;
2013                 }
2014         }
2015         return PMINFO_R_OK;
2016 }
2017
2018 API int pkgmgrinfo_appinfo_foreach_category(pkgmgrinfo_appinfo_h handle,
2019                         pkgmgrinfo_app_category_list_cb category_func, void *user_data)
2020 {
2021         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2022         retvm_if(category_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2023         int ret = -1;
2024         const char *category;
2025         GList *tmp;
2026         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2027
2028         if (info->app_info == NULL)
2029                 return PMINFO_R_ERROR;
2030
2031         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2032                 category = (const char *)tmp->data;
2033                 if (category) {
2034                         ret = category_func(category, user_data);
2035                         if (ret < 0)
2036                                 break;
2037                 }
2038         }
2039         return PMINFO_R_OK;
2040 }
2041
2042 API int pkgmgrinfo_appinfo_foreach_metadata(pkgmgrinfo_appinfo_h handle,
2043                         pkgmgrinfo_app_metadata_list_cb metadata_func, void *user_data)
2044 {
2045         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2046         retvm_if(metadata_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2047         int ret = -1;
2048         metadata_x *ptr;
2049         GList *tmp;
2050         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2051
2052         if (info->app_info == NULL)
2053                 return PMINFO_R_ERROR;
2054
2055         for (tmp = info->app_info->metadata; tmp; tmp = tmp->next) {
2056                 ptr = (metadata_x *)tmp->data;
2057                 if (ptr == NULL)
2058                         continue;
2059                 if (ptr->key) {
2060                         ret = metadata_func(ptr->key, ptr->value, user_data);
2061                         if (ret < 0)
2062                                 break;
2063                 }
2064         }
2065         return PMINFO_R_OK;
2066 }
2067
2068 API int pkgmgrinfo_appinfo_foreach_appcontrol(pkgmgrinfo_appinfo_h handle,
2069                         pkgmgrinfo_app_control_list_cb appcontrol_func, void *user_data)
2070 {
2071         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2072         retvm_if(appcontrol_func == NULL, PMINFO_R_EINVAL, "Callback function is NULL");
2073         int ret;
2074         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2075         appcontrol_x *appcontrol;
2076         GList *tmp;
2077
2078         if (info->app_info == NULL)
2079                 return PMINFO_R_ERROR;
2080
2081         for (tmp = info->app_info->appcontrol; tmp; tmp = tmp->next) {
2082                 appcontrol = (appcontrol_x *)tmp->data;
2083                 if (appcontrol == NULL)
2084                         continue;
2085                 ret = appcontrol_func(appcontrol->operation, appcontrol->uri, appcontrol->mime, user_data);
2086                 if (ret < 0)
2087                         break;
2088         }
2089
2090         return PMINFO_R_OK;
2091 }
2092
2093 API int pkgmgrinfo_appinfo_foreach_background_category(
2094                 pkgmgrinfo_appinfo_h handle,
2095                 pkgmgrinfo_app_background_category_list_cb category_func,
2096                 void *user_data)
2097 {
2098         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2099         GList *tmp;
2100         char *category;
2101
2102         if (handle == NULL || category_func == NULL || info->app_info == NULL) {
2103                 LOGE("invalid parameter");
2104                 return PMINFO_R_EINVAL;
2105         }
2106
2107         for (tmp = info->app_info->background_category; tmp; tmp = tmp->next) {
2108                 category = (char *)tmp->data;
2109                 if (category == NULL)
2110                         continue;
2111
2112                 if (category_func(category, user_data) < 0)
2113                         break;
2114         }
2115
2116         return PMINFO_R_OK;
2117 }
2118
2119 API int pkgmgrinfo_appinfo_foreach_splash_screen(pkgmgrinfo_appinfo_h handle,
2120                 pkgmgrinfo_app_splash_screen_list_cb splash_screen_func,
2121                 void *user_data)
2122 {
2123         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2124         splashscreen_x *splashscreen;
2125         GList *tmp;
2126         int ret;
2127
2128         if (info == NULL || info->app_info == NULL
2129                         || splash_screen_func == NULL) {
2130                 LOGE("invalid parameter");
2131                 return PMINFO_R_EINVAL;
2132         }
2133
2134         for (tmp = info->app_info->splashscreens; tmp; tmp = tmp->next) {
2135                 splashscreen = (splashscreen_x *)tmp->data;
2136                 if (splashscreen == NULL)
2137                         continue;
2138                 ret = splash_screen_func(splashscreen->src,
2139                                 splashscreen->type,
2140                                 splashscreen->orientation,
2141                                 splashscreen->indicatordisplay,
2142                                 splashscreen->operation,
2143                                 user_data);
2144                 if (ret < 0)
2145                         break;
2146         }
2147
2148         return PMINFO_R_OK;
2149 }
2150
2151 API int pkgmgrinfo_appinfo_is_nodisplay(pkgmgrinfo_appinfo_h handle, bool *nodisplay)
2152 {
2153         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2154         retvm_if(nodisplay == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2155         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2156
2157         if (info->app_info == NULL || info->app_info->nodisplay == NULL)
2158                 return PMINFO_R_ERROR;
2159
2160         *nodisplay = _get_bool_value(info->app_info->nodisplay);
2161
2162         return PMINFO_R_OK;
2163 }
2164
2165 API int pkgmgrinfo_appinfo_is_multiple(pkgmgrinfo_appinfo_h handle, bool *multiple)
2166 {
2167         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2168         retvm_if(multiple == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2169         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2170
2171         if (info->app_info == NULL || info->app_info->multiple == NULL)
2172                 return PMINFO_R_ERROR;
2173
2174         *multiple = _get_bool_value(info->app_info->multiple);
2175
2176         return PMINFO_R_OK;
2177 }
2178
2179 API int pkgmgrinfo_appinfo_is_indicator_display_allowed(pkgmgrinfo_appinfo_h handle, bool *indicator_disp)
2180 {
2181         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2182         retvm_if(indicator_disp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2183         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2184
2185         if (info->app_info == NULL || info->app_info->indicatordisplay == NULL)
2186                 return PMINFO_R_ERROR;
2187
2188         *indicator_disp = _get_bool_value(info->app_info->indicatordisplay);
2189
2190         return PMINFO_R_OK;
2191 }
2192
2193 API int pkgmgrinfo_appinfo_is_taskmanage(pkgmgrinfo_appinfo_h  handle, bool *taskmanage)
2194 {
2195         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2196         retvm_if(taskmanage == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2197         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2198
2199         if (info->app_info == NULL || info->app_info->taskmanage == NULL)
2200                 return PMINFO_R_ERROR;
2201
2202         *taskmanage = _get_bool_value(info->app_info->taskmanage);
2203
2204         return PMINFO_R_OK;
2205 }
2206
2207 API int pkgmgrinfo_appinfo_is_enabled(pkgmgrinfo_appinfo_h  handle, bool *enabled)
2208 {
2209         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2210         retvm_if(enabled == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2211         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2212
2213         if (info->app_info == NULL || info->app_info->enabled == NULL)
2214                 return PMINFO_R_ERROR;
2215
2216         *enabled = _get_bool_value(info->app_info->enabled);
2217
2218         return PMINFO_R_OK;
2219 }
2220
2221 API int pkgmgrinfo_appinfo_is_onboot(pkgmgrinfo_appinfo_h  handle, bool *onboot)
2222 {
2223         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2224         retvm_if(onboot == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2225         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2226
2227         if (info->app_info == NULL || info->app_info->onboot == NULL)
2228                 return PMINFO_R_ERROR;
2229
2230         *onboot = _get_bool_value(info->app_info->onboot);
2231
2232         return PMINFO_R_OK;
2233 }
2234
2235 API int pkgmgrinfo_appinfo_is_autorestart(pkgmgrinfo_appinfo_h  handle, bool *autorestart)
2236 {
2237         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2238         retvm_if(autorestart == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2239         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2240
2241         if (info->app_info == NULL || info->app_info->autorestart == NULL)
2242                 return PMINFO_R_ERROR;
2243
2244         *autorestart = _get_bool_value(info->app_info->autorestart);
2245
2246         return PMINFO_R_OK;
2247 }
2248
2249 API int pkgmgrinfo_appinfo_is_mainapp(pkgmgrinfo_appinfo_h  handle, bool *mainapp)
2250 {
2251         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2252         retvm_if(mainapp == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL");
2253         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2254
2255         if (info->app_info == NULL || info->app_info->mainapp == NULL)
2256                 return PMINFO_R_ERROR;
2257
2258         *mainapp = _get_bool_value(info->app_info->mainapp);
2259
2260         return PMINFO_R_OK;
2261 }
2262
2263 API int pkgmgrinfo_appinfo_is_preload(pkgmgrinfo_appinfo_h handle, bool *preload)
2264 {
2265         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2266         retvm_if(preload == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2267         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2268
2269         if (info->app_info == NULL || info->app_info->preload == NULL)
2270                 return PMINFO_R_ERROR;
2271
2272         *preload = _get_bool_value(info->app_info->preload);
2273
2274         return PMINFO_R_OK;
2275 }
2276
2277 API int pkgmgrinfo_appinfo_is_submode(pkgmgrinfo_appinfo_h handle, bool *submode)
2278 {
2279         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2280         retvm_if(submode == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2281         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2282
2283         if (info->app_info == NULL || info->app_info->submode == NULL)
2284                 return PMINFO_R_ERROR;
2285
2286         *submode = _get_bool_value(info->app_info->submode);
2287
2288         return PMINFO_R_OK;
2289 }
2290
2291 API int pkgmgrinfo_appinfo_is_process_pool(pkgmgrinfo_appinfo_h handle, bool *process_pool)
2292 {
2293         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2294
2295         if (handle == NULL || process_pool == NULL) {
2296                 LOGE("invalid parameter");
2297                 return PMINFO_R_EINVAL;
2298         }
2299
2300         if (info->app_info == NULL)
2301                 return PMINFO_R_ERROR;
2302
2303         *process_pool = _get_bool_value(info->app_info->process_pool);
2304
2305         return PMINFO_R_OK;
2306 }
2307
2308 API int pkgmgrinfo_appinfo_is_category_exist(pkgmgrinfo_appinfo_h handle, const char *category, bool *exist)
2309 {
2310         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2311         retvm_if(category == NULL, PMINFO_R_EINVAL, "category is NULL");
2312         retvm_if(exist == NULL, PMINFO_R_EINVAL, "exist is NULL");
2313
2314         const char *val;
2315         GList *tmp;
2316         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2317
2318         if (info->app_info == NULL)
2319                 return PMINFO_R_ERROR;
2320
2321         *exist = 0;
2322         for (tmp = info->app_info->category; tmp; tmp = tmp->next) {
2323                 val = (const char *)tmp->data;
2324                 if (val == NULL)
2325                         continue;
2326                 if (strcasecmp(val, category) == 0) {
2327                         *exist = 1;
2328                         break;
2329                 }
2330         }
2331
2332         return PMINFO_R_OK;
2333 }
2334
2335 API int pkgmgrinfo_appinfo_is_ui_gadget(pkgmgrinfo_appinfo_h handle,
2336                 bool *ui_gadget)
2337 {
2338         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2339
2340         if (info == NULL || info->app_info == NULL || ui_gadget == NULL) {
2341                 _LOGE("invalid parameter");
2342                 return PMINFO_R_EINVAL;
2343         }
2344
2345         *ui_gadget = _get_bool_value(info->app_info->ui_gadget);
2346
2347         return PMINFO_R_OK;
2348 }
2349
2350 API int pkgmgrinfo_appinfo_is_support_disable(pkgmgrinfo_appinfo_h handle,
2351                 bool *support_disable)
2352 {
2353         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2354
2355         if (info == NULL || info->app_info == NULL || support_disable == NULL) {
2356                 _LOGE("invalid parameter");
2357                 return PMINFO_R_EINVAL;
2358         }
2359
2360         *support_disable = _get_bool_value(info->app_info->support_disable);
2361
2362         return PMINFO_R_OK;
2363 }
2364
2365 API int pkgmgrinfo_appinfo_destroy_appinfo(pkgmgrinfo_appinfo_h handle)
2366 {
2367         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL");
2368         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2369         __cleanup_appinfo(info);
2370         return PMINFO_R_OK;
2371 }
2372
2373 API int pkgmgrinfo_appinfo_filter_create(pkgmgrinfo_appinfo_filter_h *handle)
2374 {
2375         return (pkgmgrinfo_pkginfo_filter_create(handle));
2376 }
2377
2378 API int pkgmgrinfo_appinfo_filter_destroy(pkgmgrinfo_appinfo_filter_h handle)
2379 {
2380         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2381 }
2382
2383 static gint __compare_func(gconstpointer data1, gconstpointer data2)
2384 {
2385         pkgmgrinfo_node_x *node1 = (pkgmgrinfo_node_x*)data1;
2386         pkgmgrinfo_node_x *node2 = (pkgmgrinfo_node_x*)data2;
2387         if (node1->prop == node2->prop)
2388                 return 0;
2389         else if (node1->prop > node2->prop)
2390                 return 1;
2391         else
2392                 return -1;
2393 }
2394
2395 API int pkgmgrinfo_appinfo_filter_add_int(pkgmgrinfo_appinfo_filter_h handle,
2396                                 const char *property, const int value)
2397 {
2398         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2399         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2400         char buf[PKG_VALUE_STRING_LEN_MAX] = {'\0'};
2401         char *val = NULL;
2402         GSList *link = NULL;
2403         int prop = -1;
2404         prop = _pminfo_appinfo_convert_to_prop_int(property);
2405         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_INT ||
2406                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_INT) {
2407                 _LOGE("Invalid Integer Property\n");
2408                 return PMINFO_R_EINVAL;
2409         }
2410         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2411         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2412         if (node == NULL) {
2413                 _LOGE("Out of Memory!!!\n");
2414                 return PMINFO_R_ERROR;
2415         }
2416         snprintf(buf, PKG_VALUE_STRING_LEN_MAX - 1, "%d", value);
2417         val = strndup(buf, PKG_VALUE_STRING_LEN_MAX - 1);
2418         if (val == NULL) {
2419                 _LOGE("Out of Memory\n");
2420                 free(node);
2421                 node = NULL;
2422                 return PMINFO_R_ERROR;
2423         }
2424         node->prop = prop;
2425         node->value = val;
2426         /*If API is called multiple times for same property, we should override the previous values.
2427         Last value set will be used for filtering.*/
2428         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2429         if (link)
2430                 filter->list = g_slist_delete_link(filter->list, link);
2431         filter->list = g_slist_append(filter->list, (gpointer)node);
2432         return PMINFO_R_OK;
2433
2434 }
2435
2436 API int pkgmgrinfo_appinfo_filter_add_bool(pkgmgrinfo_appinfo_filter_h handle,
2437                                 const char *property, const bool value)
2438 {
2439         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2440         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2441         char *val = NULL;
2442         GSList *link = NULL;
2443         int prop = -1;
2444         prop = _pminfo_appinfo_convert_to_prop_bool(property);
2445         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_BOOL ||
2446                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_BOOL) {
2447                 _LOGE("Invalid Boolean Property\n");
2448                 return PMINFO_R_EINVAL;
2449         }
2450         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2451         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2452         if (node == NULL) {
2453                 _LOGE("Out of Memory!!!\n");
2454                 return PMINFO_R_ERROR;
2455         }
2456         if (value)
2457                 val = strndup("('true','True')", 15);
2458         else
2459                 val = strndup("('false','False')", 17);
2460         if (val == NULL) {
2461                 _LOGE("Out of Memory\n");
2462                 free(node);
2463                 node = NULL;
2464                 return PMINFO_R_ERROR;
2465         }
2466         node->prop = prop;
2467         node->value = val;
2468         /*If API is called multiple times for same property, we should override the previous values.
2469         Last value set will be used for filtering.*/
2470         link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2471         if (link)
2472                 filter->list = g_slist_delete_link(filter->list, link);
2473         filter->list = g_slist_append(filter->list, (gpointer)node);
2474         return PMINFO_R_OK;
2475
2476 }
2477
2478 API int pkgmgrinfo_appinfo_filter_add_string(pkgmgrinfo_appinfo_filter_h handle,
2479                                 const char *property, const char *value)
2480 {
2481         retvm_if(handle == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2482         retvm_if(property == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2483         retvm_if(value == NULL, PMINFO_R_EINVAL, "Filter handle input parameter is NULL\n");
2484         char *val = NULL;
2485         pkgmgrinfo_node_x *ptr = NULL;
2486         char prev[PKG_STRING_LEN_MAX] = {'\0'};
2487         char temp[PKG_STRING_LEN_MAX] = {'\0'};
2488         GSList *link = NULL;
2489         int prop = -1;
2490         prop = _pminfo_appinfo_convert_to_prop_str(property);
2491         if (prop < E_PMINFO_APPINFO_PROP_APP_MIN_STR ||
2492                 prop > E_PMINFO_APPINFO_PROP_APP_MAX_STR) {
2493                 _LOGE("Invalid String Property\n");
2494                 return PMINFO_R_EINVAL;
2495         }
2496         pkgmgrinfo_filter_x *filter = (pkgmgrinfo_filter_x*)handle;
2497         pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x*)calloc(1, sizeof(pkgmgrinfo_node_x));
2498         if (node == NULL) {
2499                 _LOGE("Out of Memory!!!\n");
2500                 return PMINFO_R_ERROR;
2501         }
2502         node->prop = prop;
2503         switch (prop) {
2504         case E_PMINFO_APPINFO_PROP_APP_COMPONENT:
2505                 if (strcmp(value, PMINFO_APPINFO_UI_APP) == 0)
2506                         val = strndup("uiapp", PKG_STRING_LEN_MAX - 1);
2507                 else
2508                         val = strndup("svcapp", PKG_STRING_LEN_MAX - 1);
2509                 node->value = val;
2510                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2511                 if (link)
2512                         filter->list = g_slist_delete_link(filter->list, link);
2513                 filter->list = g_slist_append(filter->list, (gpointer)node);
2514                 break;
2515         case E_PMINFO_APPINFO_PROP_APP_CATEGORY:
2516         case E_PMINFO_APPINFO_PROP_APP_OPERATION:
2517         case E_PMINFO_APPINFO_PROP_APP_URI:
2518         case E_PMINFO_APPINFO_PROP_APP_MIME:
2519                 val = (char *)calloc(1, PKG_STRING_LEN_MAX);
2520                 if (val == NULL) {
2521                         _LOGE("Out of Memory\n");
2522                         free(node);
2523                         node = NULL;
2524                         return PMINFO_R_ERROR;
2525                 }
2526                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2527                 if (link) {
2528                         ptr = (pkgmgrinfo_node_x *)link->data;
2529                         strncpy(prev, ptr->value, PKG_STRING_LEN_MAX - 1);
2530                         _LOGE("Previous value is %s\n", prev);
2531                         filter->list = g_slist_delete_link(filter->list, link);
2532                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "%s , '%s'", prev, value);
2533                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
2534                         _LOGE("New value is %s\n", val);
2535                         node->value = val;
2536                         filter->list = g_slist_append(filter->list, (gpointer)node);
2537                         memset(temp, '\0', PKG_STRING_LEN_MAX);
2538                 } else {
2539                         snprintf(temp, PKG_STRING_LEN_MAX - 1, "'%s'", value);
2540                         strncpy(val, temp, PKG_STRING_LEN_MAX - 1);
2541                         _LOGE("First value is %s\n", val);
2542                         node->value = val;
2543                         filter->list = g_slist_append(filter->list, (gpointer)node);
2544                         memset(temp, '\0', PKG_STRING_LEN_MAX);
2545                 }
2546                 break;
2547         default:
2548                 node->value = strndup(value, PKG_STRING_LEN_MAX - 1);
2549                 link = g_slist_find_custom(filter->list, (gconstpointer)node, __compare_func);
2550                 if (link)
2551                         filter->list = g_slist_delete_link(filter->list, link);
2552                 filter->list = g_slist_append(filter->list, (gpointer)node);
2553                 break;
2554         }
2555         return PMINFO_R_OK;
2556 }
2557
2558 API int pkgmgrinfo_appinfo_usr_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count, uid_t uid)
2559 {
2560         int ret;
2561         GList *list = NULL;
2562
2563         if (handle == NULL || count == NULL) {
2564                 _LOGE("invalid parameter");
2565                 return PMINFO_R_EINVAL;
2566         }
2567
2568         ret = _appinfo_get_filtered_list(handle, uid, &list);
2569         if (ret != PMINFO_R_OK)
2570                 return PMINFO_R_ERROR;
2571
2572         *count = g_list_length(list);
2573
2574         g_list_free_full(list, free);
2575
2576         return PMINFO_R_OK;
2577 }
2578
2579 API int pkgmgrinfo_appinfo_filter_count(pkgmgrinfo_appinfo_filter_h handle, int *count)
2580 {
2581         return pkgmgrinfo_appinfo_usr_filter_count(handle, count, GLOBAL_USER);
2582 }
2583
2584 API int pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(
2585                 pkgmgrinfo_appinfo_filter_h handle,
2586                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
2587 {
2588         if (handle == NULL || app_cb == NULL) {
2589                 LOGE("invalid parameter");
2590                 return PMINFO_R_EINVAL;
2591         }
2592
2593         return _appinfo_get_filtered_foreach_appinfo(uid, handle, app_cb,
2594                         user_data);
2595 }
2596
2597 API int pkgmgrinfo_appinfo_filter_foreach_appinfo(pkgmgrinfo_appinfo_filter_h handle,
2598                                 pkgmgrinfo_app_list_cb app_cb, void * user_data)
2599 {
2600         return pkgmgrinfo_appinfo_usr_filter_foreach_appinfo(handle, app_cb, user_data, GLOBAL_USER);
2601 }
2602
2603 API int pkgmgrinfo_appinfo_metadata_filter_create(pkgmgrinfo_appinfo_metadata_filter_h *handle)
2604 {
2605         return (pkgmgrinfo_pkginfo_filter_create(handle));
2606 }
2607
2608 API int pkgmgrinfo_appinfo_metadata_filter_destroy(pkgmgrinfo_appinfo_metadata_filter_h handle)
2609 {
2610         return (pkgmgrinfo_pkginfo_filter_destroy(handle));
2611 }
2612
2613 API int pkgmgrinfo_appinfo_metadata_filter_add(
2614                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2615                 const char *key, const char *value)
2616 {
2617         int ret;
2618
2619         ret = pkgmgrinfo_appinfo_filter_add_string(handle,
2620                         PMINFO_APPINFO_PROP_APP_METADATA_KEY, key);
2621         if (ret != PMINFO_R_OK)
2622                 return ret;
2623
2624         /* value can be NULL.
2625          * In that case all apps with specified key should be displayed
2626          */
2627         if (value) {
2628                 ret = pkgmgrinfo_appinfo_filter_add_string(handle,
2629                                 PMINFO_APPINFO_PROP_APP_METADATA_VALUE, value);
2630                 if (ret != PMINFO_R_OK)
2631                         return ret;
2632         }
2633
2634         return PMINFO_R_OK;
2635 }
2636
2637 API int pkgmgrinfo_appinfo_usr_metadata_filter_foreach(
2638                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2639                 pkgmgrinfo_app_list_cb app_cb, void *user_data, uid_t uid)
2640 {
2641         if (handle == NULL || app_cb == NULL) {
2642                 LOGE("invalid parameter");
2643                 return PMINFO_R_EINVAL;
2644         }
2645
2646         return _appinfo_get_filtered_foreach_appinfo(uid, handle, app_cb,
2647                         user_data);
2648 }
2649
2650 API int pkgmgrinfo_appinfo_metadata_filter_foreach(
2651                 pkgmgrinfo_appinfo_metadata_filter_h handle,
2652                 pkgmgrinfo_app_list_cb app_cb, void *user_data)
2653 {
2654         return pkgmgrinfo_appinfo_usr_metadata_filter_foreach(handle, app_cb,
2655                         user_data, GLOBAL_USER);
2656 }
2657
2658 API int pkgmgrinfo_appinfo_is_guestmode_visibility(pkgmgrinfo_appinfo_h handle, bool *status)
2659 {
2660         const char *val;
2661         pkgmgr_appinfo_x *info = (pkgmgr_appinfo_x *)handle;
2662
2663         retvm_if(handle == NULL, PMINFO_R_EINVAL, "appinfo handle is NULL\n");
2664         retvm_if(status == NULL, PMINFO_R_EINVAL, "Argument supplied to hold return value is NULL\n");
2665
2666         val = info->app_info->guestmode_visibility;
2667         *status = _get_bool_value(val);
2668         return PMINFO_R_OK;
2669 }