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