change functions to constructing queries from snprintf to sqlite3_snprintf
[platform/core/appfw/pkgmgr-info.git] / parser / pkgmgr_parser_db.c
1 /*
2  * pkgmgr-info
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>,
7  * Jaeho Lee <jaeho81.lee@samsung.com>, Shobhit Srivastava <shobhit.s@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22
23 #define _GNU_SOURCE
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/types.h>
28 #include <sys/smack.h>
29 #include <sys/stat.h>
30 #include <fcntl.h>
31 #include <unistd.h>
32 #include <grp.h>
33 #include <pwd.h>
34
35 #include <db-util.h>
36 #include <glib.h>
37 #include <system_info.h>
38
39 /* For multi-user support */
40 #include <tzplatform_config.h>
41
42 #include "pkgmgr-info.h"
43 #include "pkgmgrinfo_basic.h"
44 #include "pkgmgrinfo_debug.h"
45 #include "pkgmgr_parser_internal.h"
46 #include "pkgmgr_parser_db.h"
47
48 #ifdef LOG_TAG
49 #undef LOG_TAG
50 #endif
51 #define LOG_TAG "PKGMGR_PARSER"
52
53 #define PKGMGR_PARSER_DB_FILE tzplatform_mkpath(TZ_SYS_DB, ".pkgmgr_parser.db")
54 #define PKGMGR_CERT_DB_FILE tzplatform_mkpath(TZ_SYS_DB, ".pkgmgr_cert.db")
55 #define MAX_QUERY_LEN           4096
56 #define BUFSIZE 4096
57 #define OWNER_ROOT 0
58
59 #define LDPI "ldpi"
60 #define MDPI "mdpi"
61 #define HDPI "hdpi"
62 #define XHDPI "xhdpi"
63 #define XXHDPI "xxhdpi"
64
65 #define LDPI_MIN 0
66 #define LDPI_MAX 240
67 #define MDPI_MIN 241
68 #define MDPI_MAX 300
69 #define HDPI_MIN 301
70 #define HDPI_MAX 380
71 #define XHDPI_MIN 381
72 #define XHDPI_MAX 480
73 #define XXHDPI_MIN 481
74 #define XXHDPI_MAX 600
75
76 #define DB_LABEL "User::Home"
77 #define SET_SMACK_LABEL(x) \
78 do { \
79         if (smack_setlabel((x), DB_LABEL, SMACK_LABEL_ACCESS)) \
80                 _LOGE("failed chsmack -a %s %s", DB_LABEL, x); \
81         else \
82                 _LOGD("chsmack -a %s %s", DB_LABEL, x); \
83 } while (0)
84
85 sqlite3 *pkgmgr_parser_db;
86 sqlite3 *pkgmgr_cert_db;
87
88
89 #define QUERY_CREATE_TABLE_PACKAGE_INFO "CREATE TABLE IF NOT EXISTS package_info " \
90                                                 "(package TEXT PRIMARY KEY NOT NULL, " \
91                                                 "package_type TEXT DEFAULT 'tpk', " \
92                                                 "package_version TEXT, " \
93                                                 "package_api_version TEXT, " \
94                                                 "package_tep_name TEXT, " \
95                                                 "package_zip_mount_file TEXT, " \
96                                                 "install_location TEXT NOT NULL , " \
97                                                 "package_size TEXT, " \
98                                                 "package_removable TEXT NOT NULL DEFAULT 'true', " \
99                                                 "package_preload TEXT NOT NULL DEFAULT 'false', " \
100                                                 "package_readonly TEXT NOT NULL DEFAULT 'false', " \
101                                                 "package_update TEXT NOT NULL DEFAULT 'false', " \
102                                                 "package_appsetting TEXT NOT NULL DEFAULT 'false', " \
103                                                 "package_nodisplay TEXT NOT NULL DEFAULT 'false', " \
104                                                 "package_system TEXT NOT NULL DEFAULT 'false', " \
105                                                 "author_name TEXT, " \
106                                                 "author_email TEXT, " \
107                                                 "author_href TEXT," \
108                                                 "installed_time TEXT, " \
109                                                 "installed_storage TEXT, " \
110                                                 "storeclient_id TEXT, " \
111                                                 "mainapp_id TEXT, " \
112                                                 "package_url TEXT, " \
113                                                 "root_path TEXT, " \
114                                                 "csc_path TEXT, " \
115                                                 "package_support_disable TEXT NOT NULL DEFAULT 'false', " \
116                                                 "package_disable TEXT NOT NULL DEFAULT 'false')"
117
118 #define QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO "CREATE TABLE IF NOT EXISTS package_localized_info " \
119                                                 "(package TEXT NOT NULL, " \
120                                                 "package_locale TEXT NOT NULL DEFAULT 'No Locale', " \
121                                                 "package_label TEXT, " \
122                                                 "package_icon TEXT, " \
123                                                 "package_description TEXT, " \
124                                                 "package_license TEXT, " \
125                                                 "package_author TEXT, " \
126                                                 "PRIMARY KEY(package, package_locale), " \
127                                                 "FOREIGN KEY(package) " \
128                                                 "REFERENCES package_info(package) " \
129                                                 "ON DELETE CASCADE)"
130
131 #define QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO "CREATE TABLE IF NOT EXISTS package_privilege_info " \
132                                                 "(package TEXT NOT NULL, " \
133                                                 "privilege TEXT NOT NULL, " \
134                                                 "PRIMARY KEY(package, privilege) " \
135                                                 "FOREIGN KEY(package) " \
136                                                 "REFERENCES package_info(package) " \
137                                                 "ON DELETE CASCADE)"
138
139 #define QUERY_CREATE_TABLE_PACKAGE_APP_INFO "CREATE TABLE IF NOT EXISTS package_app_info " \
140                                                 "(app_id TEXT PRIMARY KEY NOT NULL, " \
141                                                 "app_component TEXT, " \
142                                                 "app_exec TEXT, " \
143                                                 "app_nodisplay TEXT NOT NULL DEFAULT 'false', " \
144                                                 "app_type TEXT, " \
145                                                 "app_onboot TEXT NOT NULL DEFAULT 'false', " \
146                                                 "app_multiple TEXT NOT NULL DEFAULT 'false', " \
147                                                 "app_autorestart TEXT NOT NULL DEFAULT 'false', " \
148                                                 "app_taskmanage TEXT NOT NULL DEFAULT 'false', " \
149                                                 "app_enabled TEXT NOT NULL DEFAULT 'true', " \
150                                                 "app_hwacceleration TEXT NOT NULL DEFAULT 'use-system-setting', " \
151                                                 "app_screenreader TEXT NOT NULL DEFAULT 'use-system-setting', " \
152                                                 "app_mainapp TEXT, " \
153                                                 "app_recentimage TEXT, " \
154                                                 "app_launchcondition TEXT, " \
155                                                 "app_indicatordisplay TEXT NOT NULL DEFAULT 'true', " \
156                                                 "app_portraitimg TEXT, " \
157                                                 "app_landscapeimg TEXT, " \
158                                                 "app_guestmodevisibility TEXT NOT NULL DEFAULT 'true', " \
159                                                 "app_permissiontype TEXT DEFAULT 'normal', " \
160                                                 "app_preload TEXT NOT NULL DEFAULT 'false', " \
161                                                 "app_submode TEXT NOT NULL DEFAULT 'false', " \
162                                                 "app_submode_mainid TEXT, " \
163                                                 "app_installed_storage TEXT, " \
164                                                 "app_process_pool TEXT NOT NULL DEFAULT 'false', " \
165                                                 "app_launch_mode TEXT NOT NULL DEFAULT 'caller', " \
166                                                 "app_ui_gadget TEXT NOT NULL DEFAULT 'false', " \
167                                                 "app_support_disable TEXT NOT NULL DEFAULT 'false', " \
168                                                 "app_disable TEXT NOT NULL DEFAULT 'false', " \
169                                                 "app_package_type TEXT DEFAULT 'tpk', " \
170                                                 "component_type TEXT, " \
171                                                 "package TEXT NOT NULL, " \
172                                                 "app_tep_name TEXT, " \
173                                                 "app_zip_mount_file TEXT, " \
174                                                 "app_background_category INTEGER DEFAULT 0, " \
175                                                 "app_root_path TEXT, " \
176                                                 "app_api_version TEXT, " \
177                                                 "app_effective_appid TEXT, " \
178                                                 "app_splash_screen_display TEXT NOT NULL DEFAULT 'true', " \
179                                                 "FOREIGN KEY(package) " \
180                                                 "REFERENCES package_info(package) " \
181                                                 "ON DELETE CASCADE)"
182
183 #define QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO "CREATE TABLE IF NOT EXISTS package_app_localized_info " \
184                                                 "(app_id TEXT NOT NULL, " \
185                                                 "app_locale TEXT NOT NULL DEFAULT 'No Locale', " \
186                                                 "app_label TEXT, " \
187                                                 "app_icon TEXT, " \
188                                                 "PRIMARY KEY(app_id,app_locale) " \
189                                                 "FOREIGN KEY(app_id) " \
190                                                 "REFERENCES package_app_info(app_id) " \
191                                                 "ON DELETE CASCADE)"
192
193 #define QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO "CREATE TABLE IF NOT EXISTS package_app_icon_section_info " \
194                                                 "(app_id TEXT NOT NULL, " \
195                                                 "app_icon TEXT, " \
196                                                 "app_icon_section TEXT NOT NULL, " \
197                                                 "app_icon_resolution TEXT NOT NULL, " \
198                                                 "PRIMARY KEY(app_id,app_icon_section,app_icon_resolution) " \
199                                                 "FOREIGN KEY(app_id) " \
200                                                 "REFERENCES package_app_info(app_id) " \
201                                                 "ON DELETE CASCADE)"
202
203 #define QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO "CREATE TABLE IF NOT EXISTS package_app_image_info " \
204                                                 "(app_id TEXT NOT NULL, " \
205                                                 "app_locale TEXT DEFAULT 'No Locale', " \
206                                                 "app_image_section TEXT NOT NULL, " \
207                                                 "app_image TEXT, " \
208                                                 "PRIMARY KEY(app_id,app_image_section) " \
209                                                 "FOREIGN KEY(app_id) " \
210                                                 "REFERENCES package_app_info(app_id) " \
211                                                 "ON DELETE CASCADE)"
212
213 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL "CREATE TABLE IF NOT EXISTS package_app_app_control " \
214                                                 "(app_id TEXT NOT NULL, " \
215                                                 "app_control TEXT NOT NULL, " \
216                                                 "PRIMARY KEY(app_id,app_control) " \
217                                                 "FOREIGN KEY(app_id) " \
218                                                 "REFERENCES package_app_info(app_id) " \
219                                                 "ON DELETE CASCADE)"
220
221 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY "CREATE TABLE IF NOT EXISTS package_app_app_category " \
222                                                 "(app_id TEXT NOT NULL, " \
223                                                 "category TEXT NOT NULL, " \
224                                                 "PRIMARY KEY(app_id,category) " \
225                                                 "FOREIGN KEY(app_id) " \
226                                                 "REFERENCES package_app_info(app_id) " \
227                                                 "ON DELETE CASCADE)"
228
229 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA "CREATE TABLE IF NOT EXISTS package_app_app_metadata " \
230                                                 "(app_id TEXT NOT NULL, " \
231                                                 "md_key TEXT NOT NULL, " \
232                                                 "md_value TEXT, " \
233                                                 "PRIMARY KEY(app_id, md_key) " \
234                                                 "FOREIGN KEY(app_id) " \
235                                                 "REFERENCES package_app_info(app_id) " \
236                                                 "ON DELETE CASCADE)"
237
238 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION "CREATE TABLE IF NOT EXISTS package_app_app_permission " \
239                                                 "(app_id TEXT NOT NULL, " \
240                                                 "pm_type TEXT NOT NULL, " \
241                                                 "pm_value TEXT NOT NULL, " \
242                                                 "PRIMARY KEY(app_id, pm_type, pm_value) " \
243                                                 "FOREIGN KEY(app_id) " \
244                                                 "REFERENCES package_app_info(app_id) " \
245                                                 "ON DELETE CASCADE)"
246
247 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED "CREATE TABLE IF NOT EXISTS package_app_share_allowed " \
248                                                 "(app_id TEXT NOT NULL, " \
249                                                 "data_share_path TEXT NOT NULL, " \
250                                                 "data_share_allowed TEXT NOT NULL, " \
251                                                 "PRIMARY KEY(app_id,data_share_path,data_share_allowed) " \
252                                                 "FOREIGN KEY(app_id) " \
253                                                 "REFERENCES package_app_info(app_id) " \
254                                                 "ON DELETE CASCADE)"
255
256 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST "CREATE TABLE IF NOT EXISTS package_app_share_request " \
257                                                 "(app_id TEXT NOT NULL, " \
258                                                 "data_share_request TEXT NOT NULL, " \
259                                                 "PRIMARY KEY(app_id,data_share_request) " \
260                                                 "FOREIGN KEY(app_id) " \
261                                                 "REFERENCES package_app_info(app_id) " \
262                                                 "ON DELETE CASCADE)"
263
264 #define QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL "CREATE TABLE IF NOT EXISTS package_app_data_control " \
265                                                 "(app_id TEXT NOT NULL, " \
266                                                 "providerid TEXT NOT NULL, " \
267                                                 "access TEXT NOT NULL, " \
268                                                 "type TEXT NOT NULL, " \
269                                                 "PRIMARY KEY(app_id, providerid, access, type) " \
270                                                 "FOREIGN KEY(app_id) " \
271                                                 "REFERENCES package_app_info(app_id) " \
272                                                 "ON DELETE CASCADE)"
273
274 #define QUERY_CREATE_TABLE_PACKAGE_APP_INFO_FOR_UID "CREATE TABLE IF NOT EXISTS package_app_info_for_uid " \
275                                                 "(app_id TEXT NOT NULL, " \
276                                                 "uid INTEGER NOT NULL, " \
277                                                 "is_disabled TEXT NOT NULL DEFAULT 'false', " \
278                                                 "is_splash_screen_enabled TEXT NOT NULL, " \
279                                                 "PRIMARY KEY(app_id, uid))"
280
281 #define QUERY_CREATE_TRIGGER_UPDATE_PACKAGE_APP_INFO_FOR_UID \
282                                                 "CREATE TRIGGER IF NOT EXISTS update_package_appinfo_for_uid "\
283                                                 "AFTER UPDATE ON package_app_info_for_uid " \
284                                                 "BEGIN" \
285                                                 " DELETE FROM package_app_info_for_uid WHERE " \
286                                                 "       is_splash_screen_enabled=" \
287                                                 "       (SELECT package_app_info.app_splash_screen_display FROM " \
288                                                 "       package_app_info, package_app_info_for_uid WHERE " \
289                                                 "       package_app_info.app_id=OLD.app_id) AND is_disabled='false';" \
290                                                 "END;"
291
292 #define QUERY_CREATE_TABLE_PACKAGE_APP_SPLASH_SCREEN \
293                                                 "CREATE TABLE IF NOT EXISTS package_app_splash_screen " \
294                                                 "(app_id TEXT NOT NULL, " \
295                                                 "src TEXT NOT NULL, " \
296                                                 "type TEXT NOT NULL, " \
297                                                 "orientation TEXT NOT NULL, " \
298                                                 "indicatordisplay TEXT, " \
299                                                 "operation TEXT, " \
300                                                 "color_depth TEXT NOT NULL DEFAULT '24', " \
301                                                 "PRIMARY KEY(app_id, orientation) " \
302                                                 "FOREIGN KEY(app_id) " \
303                                                 "REFERENCES package_app_info(app_id) " \
304                                                 "ON DELETE CASCADE)"
305
306
307 /* FIXME: duplicated at pkgmgrinfo_db.c */
308 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO \
309                                                 "CREATE TABLE IF NOT EXISTS package_cert_index_info( " \
310                                                 " cert_info TEXT UNIQUE, " \
311                                                 " cert_id INTEGER PRIMARY KEY, " \
312                                                 " cert_ref_count INTEGER NOT NULL)"
313
314 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INFO \
315                                                 "CREATE TABLE IF NOT EXISTS package_cert_info( " \
316                                                 " package TEXT PRIMARY KEY, " \
317                                                 " author_root_cert INTEGER, " \
318                                                 " author_im_cert INTEGER, " \
319                                                 " author_signer_cert INTEGER, " \
320                                                 " dist_root_cert INTEGER, " \
321                                                 " dist_im_cert INTEGER, " \
322                                                 " dist_signer_cert INTEGER, " \
323                                                 " dist2_root_cert INTEGER, " \
324                                                 " dist2_im_cert INTEGER, " \
325                                                 " dist2_signer_cert INTEGER)"
326
327 #define QUERY_CREATE_TRIGGER_DELETE_CERT_INFO \
328                                                 "CREATE TRIGGER IF NOT EXISTS delete_cert_info " \
329                                                 "AFTER DELETE ON package_cert_info " \
330                                                 "BEGIN" \
331                                                 " UPDATE package_cert_index_info SET" \
332                                                 "  cert_ref_count = cert_ref_count - 1" \
333                                                 " WHERE cert_id = OLD.author_root_cert" \
334                                                 "  OR cert_id = OLD.author_im_cert" \
335                                                 "  OR cert_id = OLD.author_signer_cert" \
336                                                 "  OR cert_id = OLD.dist_root_cert" \
337                                                 "  OR cert_id = OLD.dist_im_cert" \
338                                                 "  OR cert_id = OLD.dist_signer_cert" \
339                                                 "  OR cert_id = OLD.dist2_root_cert" \
340                                                 "  OR cert_id = OLD.dist2_im_cert" \
341                                                 "  OR cert_id = OLD.dist2_signer_cert;" \
342                                                 "END;"
343
344 #define QUERY_CREATE_TRIGGER_UPDATE_CERT_INDEX_INFO \
345                                                 "CREATE TRIGGER IF NOT EXISTS update_cert_index_info " \
346                                                 "AFTER UPDATE ON package_cert_index_info " \
347                                                 "WHEN ((SELECT cert_ref_count FROM package_cert_index_info " \
348                                                 "       WHERE cert_id = OLD.cert_id) = 0) "\
349                                                 "BEGIN" \
350                                                 " DELETE FROM package_cert_index_info WHERE cert_id = OLD.cert_id;" \
351                                                 "END;"
352
353 #define QUERY_CREATE_TRIGGER_UPDATE_CERT_INFO_FORMAT \
354                                                 "CREATE TRIGGER IF NOT EXISTS update_%s_info " \
355                                                 "AFTER UPDATE ON package_cert_info " \
356                                                 "WHEN (OLD.%s IS NOT NULL) " \
357                                                 "BEGIN" \
358                                                 " UPDATE package_cert_index_info SET" \
359                                                 "  cert_ref_count = cert_ref_count - 1" \
360                                                 " WHERE cert_id = OLD.%s;" \
361                                                 "END;"
362
363 static int __insert_application_info(manifest_x *mfx);
364 static int __insert_application_appcategory_info(manifest_x *mfx);
365 static int __insert_application_appcontrol_info(manifest_x *mfx);
366 static int __insert_application_appmetadata_info(manifest_x *mfx);
367 static int __insert_application_share_allowed_info(manifest_x *mfx);
368 static int __insert_application_share_request_info(manifest_x *mfx);
369 static int __insert_application_datacontrol_info(manifest_x *mfx);
370 static void __insert_application_locale_info(gpointer data, gpointer userdata);
371 static void __insert_pkglocale_info(gpointer data, gpointer userdata);
372 static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid);
373 static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid);
374 static int __delete_subpkg_info_from_db(char *appid);
375 static int __delete_appinfo_from_db(char *db_table, const char *appid);
376 static int __initialize_db(sqlite3 *db_handle, const char *db_query);
377 static int __exec_query(char *query);
378 static void __extract_data(gpointer data, GList *lbl, GList *lcn, GList *icn, GList *dcn, GList *ath,
379                 char **label, char **license, char **icon, char **description, char **author);
380 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata);
381 static GList *__create_locale_list(GList *locale, GList *lbl, GList *lcn, GList *icn, GList *dcn, GList *ath);
382 static void __preserve_guestmode_visibility_value(manifest_x *mfx);
383 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname);
384 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path);
385 static int __parserdb_change_perm(const char *db_file, uid_t uid);
386
387 #define REGULAR_USER 5000
388 static inline uid_t _getuid(void)
389 {
390         uid_t uid = getuid();
391
392         if (uid < REGULAR_USER)
393                 return tzplatform_getuid(TZ_SYS_GLOBALAPP_USER);
394         else
395                 return uid;
396 }
397
398 static int __delete_subpkg_list_cb(void *data, int ncols, char **coltxt, char **colname)
399 {
400         if (coltxt[0])
401                 __delete_subpkg_info_from_db(coltxt[0]);
402
403         return 0;
404 }
405
406 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path)
407 {
408         int ret = -1;
409         sqlite3 *handle;
410         char *query = NULL;
411         char *error_message = NULL;
412
413         ret = db_util_open(db_path, &handle,  DB_UTIL_REGISTER_HOOK_METHOD);
414         if (ret != SQLITE_OK) {
415                 _LOGD("connect db [%s] failed!\n", db_path);
416                 return -1;
417         }
418         *db_handle = handle;
419
420         /* add user_version for db upgrade*/
421         query = sqlite3_mprintf("PRAGMA user_version=%d", (atoi(TIZEN_MAJOR_VER) * 10000 + atoi(TIZEN_MINOR_VER) * 100 + atoi(TIZEN_PATCH_VER)));
422         if (SQLITE_OK !=
423             sqlite3_exec(handle, query, NULL, NULL, &error_message)) {
424                 _LOGE("Don't execute query = %s error message = %s\n", query,
425                        error_message);
426         }
427         sqlite3_free(error_message);
428         sqlite3_free(query);
429
430         return 0;
431 }
432
433 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname)
434 {
435         manifest_x *mfx = (manifest_x *)data;
436         int i = 0;
437         char *appid = NULL;
438         char *status = NULL;
439         application_x *app;
440         GList *tmp;
441         if (mfx->application == NULL)
442                 return -1;
443         app = (application_x *)mfx->application->data;
444         for(i = 0; i < ncols; i++)
445         {
446                 if (strcmp(colname[i], "app_id") == 0) {
447                         if (coltxt[i])
448                                 appid = strdup(coltxt[i]);
449                 } else if (strcmp(colname[i], "app_guestmodevisibility") == 0) {
450                         if (coltxt[i])
451                                 status = strdup(coltxt[i]);
452                 }
453         }
454         if (appid == NULL) {
455                 if(status != NULL)
456                         free(status);
457                 _LOGD("app id is NULL\n");
458                 return -1;
459         }
460         /*update guest mode visibility*/
461         for (tmp = mfx->application; tmp; tmp = tmp->next) {
462                 app = (application_x *)tmp->data;
463                 if (app == NULL)
464                         continue;
465                 if (strcmp(app->appid, appid) == 0) {
466                         free((void *)app->guestmode_visibility);
467                         app->guestmode_visibility = strdup(status);
468                         break;
469                 }
470         }
471         if (appid) {
472                 free(appid);
473                 appid = NULL;
474         }
475         if (status) {
476                 free(status);
477                 status = NULL;
478         }
479
480         return 0;
481 }
482
483 static void __preserve_guestmode_visibility_value(manifest_x *mfx)
484 {
485         char *error_message = NULL;
486         char query[MAX_QUERY_LEN] = {'\0'};
487         sqlite3_snprintf(MAX_QUERY_LEN, query,
488                         "SELECT app_id, app_guestmodevisibility FROM package_app_info " \
489                         "WHERE package=%Q", mfx->package);
490         if (SQLITE_OK !=
491             sqlite3_exec(pkgmgr_parser_db, query,
492                          __guestmode_visibility_cb, (void *)mfx, &error_message)) {
493                 _LOGD("Don't execute query = %s error message = %s\n",
494                        query, error_message);
495                 sqlite3_free(error_message);
496         }
497         return;
498 }
499
500 static int __initialize_db(sqlite3 *db_handle, const char *db_query)
501 {
502         char *error_message = NULL;
503         if (SQLITE_OK !=
504             sqlite3_exec(db_handle, db_query,
505                          NULL, NULL, &error_message)) {
506                 _LOGD("Don't execute query = %s error message = %s\n",
507                        db_query, error_message);
508                 sqlite3_free(error_message);
509                 return -1;
510         }
511         sqlite3_free(error_message);
512         return 0;
513 }
514
515 static int __exec_query(char *query)
516 {
517         char *error_message = NULL;
518         if (SQLITE_OK !=
519             sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
520                 _LOGE("Don't execute query = %s error message = %s\n", query,
521                        error_message);
522                 sqlite3_free(error_message);
523                 return -1;
524         }
525         sqlite3_free(error_message);
526         return 0;
527 }
528
529 static int __exec_query_no_msg(char *query)
530 {
531         char *error_message = NULL;
532         if (SQLITE_OK !=
533             sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
534                 sqlite3_free(error_message);
535                 return -1;
536         }
537         sqlite3_free(error_message);
538         return 0;
539 }
540
541 static GList *__create_locale_list(GList *locale, GList *lbls, GList *lcns, GList *icns, GList *dcns, GList *aths)
542 {
543         GList *tmp;
544         label_x *lbl;
545         license_x *lcn;
546         icon_x *icn;
547         description_x *dcn;
548         author_x *ath;
549         for (tmp = lbls; tmp; tmp = tmp->next) {
550                 lbl = (label_x *)tmp->data;
551                 if (lbl == NULL)
552                         continue;
553                 if (lbl->lang)
554                         locale = g_list_insert_sorted_with_data(locale, (gpointer)lbl->lang, __comparefunc, NULL);
555         }
556         for (tmp = lcns; tmp; tmp = tmp->next) {
557                 lcn = (license_x *)tmp->data;
558                 if (lcn == NULL)
559                         continue;
560                 if (lcn->lang)
561                         locale = g_list_insert_sorted_with_data(locale, (gpointer)lcn->lang, __comparefunc, NULL);
562         }
563         for (tmp = icns; tmp; tmp = tmp->next) {
564                 icn = (icon_x *)tmp->data;
565                 if (icn == NULL)
566                         continue;
567                 if (icn->lang)
568                         locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->lang, __comparefunc, NULL);
569         }
570         for (tmp = dcns; tmp; tmp = tmp->next) {
571                 dcn = (description_x *)tmp->data;
572                 if (dcn == NULL)
573                         continue;
574                 if (dcn->lang)
575                         locale = g_list_insert_sorted_with_data(locale, (gpointer)dcn->lang, __comparefunc, NULL);
576         }
577         for (tmp = aths; tmp; tmp = tmp->next) {
578                 ath = (author_x *)tmp->data;
579                 if (ath == NULL)
580                         continue;
581                 if (ath->lang)
582                         locale = g_list_insert_sorted_with_data(locale, (gpointer)ath->lang, __comparefunc, NULL);
583         }
584         return locale;
585
586 }
587
588 static GList *__create_icon_list(GList *appicon, GList *icns)
589 {
590         GList *tmp;
591         icon_x *icn;
592
593         for (tmp = icns; tmp; tmp = tmp->next) {
594                 icn = (icon_x *)tmp->data;
595                 if (icn == NULL)
596                         continue;
597                 if (icn->section)
598                         appicon = g_list_insert_sorted_with_data(appicon, (gpointer)icn->section, __comparefunc, NULL);
599         }
600         return appicon;
601 }
602
603 static GList *__create_image_list(GList *appimage, GList *imgs)
604 {
605         GList *tmp;
606         image_x *img;
607
608         for (tmp = imgs; tmp; tmp = tmp->next) {
609                 img = (image_x *)tmp->data;
610                 if (img == NULL)
611                         continue;
612                 if (img->section)
613                         appimage = g_list_insert_sorted_with_data(appimage, (gpointer)img->section, __comparefunc, NULL);
614         }
615         return appimage;
616 }
617
618 static void __trimfunc(GList* trim_list)
619 {
620         char *trim_data = NULL;
621         char *prev = NULL;
622
623         GList *list = NULL;
624         list = g_list_first(trim_list);
625
626         while (list) {
627                 trim_data = (char *)list->data;
628                 if (trim_data) {
629                         if (prev) {
630                                 if (strcmp(trim_data, prev) == 0) {
631                                         trim_list = g_list_remove(trim_list, trim_data);
632                                         list = g_list_first(trim_list);
633                                         prev = NULL;
634                                         continue;
635                                 } else
636                                         prev = trim_data;
637                         }
638                         else
639                                 prev = trim_data;
640                 }
641                 list = g_list_next(list);
642         }
643 }
644
645 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata)
646 {
647         if (a == NULL || b == NULL)
648                 return 0;
649         if (strcmp((char*)a, (char*)b) == 0)
650                 return 0;
651         if (strcmp((char*)a, (char*)b) < 0)
652                 return -1;
653         if (strcmp((char*)a, (char*)b) > 0)
654                 return 1;
655         return 0;
656 }
657
658 static int __check_dpi(const char *dpi_char, int dpi_int)
659 {
660         if (dpi_char == NULL)
661                 return -1;
662
663         if (strcasecmp(dpi_char, LDPI) == 0) {
664                 if (dpi_int >= LDPI_MIN && dpi_int <= LDPI_MAX)
665                         return 0;
666                 else
667                         return -1;
668         } else if (strcasecmp(dpi_char, MDPI) == 0) {
669                 if (dpi_int >= MDPI_MIN && dpi_int <= MDPI_MAX)
670                         return 0;
671                 else
672                         return -1;
673         } else if (strcasecmp(dpi_char, HDPI) == 0) {
674                 if (dpi_int >= HDPI_MIN && dpi_int <= HDPI_MAX)
675                         return 0;
676                 else
677                         return -1;
678         } else if (strcasecmp(dpi_char, XHDPI) == 0) {
679                 if (dpi_int >= XHDPI_MIN && dpi_int <= XHDPI_MAX)
680                         return 0;
681                 else
682                         return -1;
683         } else if (strcasecmp(dpi_char, XXHDPI) == 0) {
684                 if (dpi_int >= XXHDPI_MIN && dpi_int <= XXHDPI_MAX)
685                         return 0;
686                 else
687                         return -1;
688         } else
689                 return -1;
690 }
691
692 static gint __check_icon_folder(const char *orig_icon_path, char **new_icon_path)
693 {
694         char *dpi_path[2];
695         char *icon_filename = NULL;
696         char modified_iconpath[BUFSIZE] = { '\0' };
697         char icon_path[BUFSIZE] = { '\0' };
698         int i;
699         int dpi = -1;
700
701         if (orig_icon_path == NULL)
702                 return -1;
703
704         system_info_get_platform_int("http://tizen.org/feature/screen.dpi", &dpi);
705         if (!dpi)
706                 return -1;
707
708         if (dpi >= LDPI_MIN && dpi <= LDPI_MAX) {
709                 dpi_path[0] = "LDPI";
710                 dpi_path[1] = "ldpi";
711         } else if (dpi >= MDPI_MIN && dpi <= MDPI_MAX) {
712                 dpi_path[0] = "MDPI";
713                 dpi_path[1] = "mdpi";
714         } else if (dpi >= HDPI_MIN && dpi <= HDPI_MAX) {
715                 dpi_path[0] = "HDPI";
716                 dpi_path[1] = "hdpi";
717         } else if (dpi >= XHDPI_MIN && dpi <= XHDPI_MAX) {
718                 dpi_path[0] = "XHDPI";
719                 dpi_path[1] = "xhdpi";
720         } else if (dpi >= XXHDPI_MIN && dpi <= XXHDPI_MAX) {
721                 dpi_path[0] = "XXHDPI";
722                 dpi_path[1] = "xxhdpi";
723         } else {
724                 _LOGE("Unidentified dpi[%d]", dpi);
725                 return -1;
726         }
727
728         icon_filename = strrchr(orig_icon_path, '/');
729         if (icon_filename == NULL)
730                 return -1;
731
732         snprintf(icon_path, strlen(orig_icon_path) - (strlen(icon_filename) - 1), "%s", orig_icon_path);
733         for (i = 0; i < 2; i++) {
734                 snprintf(modified_iconpath, BUFSIZE - 1, "%s/%s%s", icon_path, dpi_path[i], icon_filename);
735                 if (access(modified_iconpath, F_OK) != -1) {
736                         // if exists, return modified icon path
737                         *new_icon_path = strdup(modified_iconpath);
738                         return 0;
739                 }
740         }
741
742         return -1;
743 }
744
745 static gint __compare_icon(gconstpointer a, gconstpointer b)
746 {
747         icon_x *icon = (icon_x *)a;
748
749         char *icon_folder_path = NULL;
750
751         if (icon->lang != NULL && strcasecmp(icon->lang, DEFAULT_LOCALE) != 0)
752                 return -1;
753
754         if (icon->dpi != NULL)
755                 return -1;
756
757         if (__check_icon_folder(icon->text, &icon_folder_path) == 0) {
758                 free(icon->text);
759                 icon->text = icon_folder_path;
760         }
761
762         return 0;
763 }
764
765 static gint __compare_icon_with_dpi(gconstpointer a, gconstpointer b)
766 {
767         icon_x *icon = (icon_x *)a;
768         int dpi = GPOINTER_TO_INT(b);
769
770         if (icon->lang != NULL && strcasecmp(icon->lang, DEFAULT_LOCALE) != 0)
771                 return -1;
772
773         if (icon->dpi == NULL)
774                 return -1;
775
776         if (__check_dpi(icon->dpi, dpi) == 0)
777                 return 0;
778
779         return -1;
780 }
781
782 static gint __compare_icon_with_lang(gconstpointer a, gconstpointer b)
783 {
784         icon_x *icon = (icon_x *)a;
785         char *lang = (char *)b;
786         char *icon_folder_path = NULL;
787
788         if (icon->dpi != NULL)
789                 return -1;
790
791         if (strcasecmp(icon->lang, lang) == 0) {
792                 if (strcasecmp(icon->lang, DEFAULT_LOCALE) == 0) {
793                         //icon for no locale. check existance of folder-hierachied default icons
794                         if (__check_icon_folder(icon->text, &icon_folder_path) == 0) {
795                                 free(icon->text);
796                                 icon->text = icon_folder_path;
797                         }
798                 }
799                 return 0;
800         }
801
802         return -1;
803 }
804
805 static gint __compare_icon_with_lang_dpi(gconstpointer a, gconstpointer b)
806 {
807         icon_x *icon = (icon_x *)a;
808         char *lang = (char *)b;
809         int dpi = -1;
810
811         system_info_get_platform_int("http://tizen.org/feature/screen.dpi", &dpi);
812         if (!dpi)
813                 return -1;
814
815         if (strcasecmp(icon->lang, lang) == 0 && __check_dpi(icon->dpi, dpi) == 0)
816                 return 0;
817
818         return -1;
819 }
820
821 static char *__find_icon(GList *icons, const char *lang)
822 {
823         GList *tmp;
824         icon_x *icon = NULL;
825         int dpi = 0;
826
827         // first, find icon whose locale and dpi with given lang and system's dpi has matched
828         tmp = g_list_find_custom(icons, lang, (GCompareFunc)__compare_icon_with_lang_dpi);
829         if (tmp != NULL) {
830                 icon = (icon_x *)tmp->data;
831                 return (char *)icon->text;
832         }
833
834         // if first has failed, find icon whose locale has matched
835         tmp = g_list_find_custom(icons, lang, (GCompareFunc)__compare_icon_with_lang);
836         if (tmp != NULL) {
837                 icon = (icon_x *)tmp->data;
838                 return (char *)icon->text;
839         }
840
841         // if second has failed, find icon whose dpi has matched with system's dpi
842         system_info_get_platform_int("http://tizen.org/feature/screen.dpi", &dpi);
843         if (!dpi)
844                 return NULL;
845         tmp = g_list_find_custom(icons, GINT_TO_POINTER(dpi), (GCompareFunc)__compare_icon_with_dpi);
846         if (tmp != NULL) {
847                 icon = (icon_x *)tmp->data;
848                 return (char *)icon->text;
849         }
850
851         // last, find default icon marked as "No Locale"
852         tmp = g_list_find_custom(icons, NULL, (GCompareFunc)__compare_icon);
853         if (tmp != NULL) {
854                 icon = (icon_x *)tmp->data;
855                 return (char *)icon->text;
856         }
857
858         return NULL;
859 }
860
861 static void __extract_data(gpointer data, GList *lbls, GList *lcns, GList *icns, GList *dcns, GList *aths,
862                 char **label, char **license, char **icon, char **description, char **author)
863 {
864         GList *tmp;
865         label_x *lbl;
866         license_x *lcn;
867         description_x *dcn;
868         author_x *ath;
869         for (tmp = lbls; tmp; tmp = tmp->next) {
870                 lbl = (label_x *)tmp->data;
871                 if (lbl == NULL)
872                         continue;
873                 if (lbl->lang) {
874                         if (strcmp(lbl->lang, (char *)data) == 0) {
875                                 *label = (char*)lbl->text;
876                                 break;
877                         }
878                 }
879         }
880         for (tmp = lcns; tmp; tmp = tmp->next) {
881                 lcn = (license_x *)tmp->data;
882                 if (lcn == NULL)
883                         continue;
884                 if (lcn->lang) {
885                         if (strcmp(lcn->lang, (char *)data) == 0) {
886                                 *license = (char*)lcn->text;
887                                 break;
888                         }
889                 }
890         }
891
892         *icon = __find_icon(icns, (char *)data);
893
894         for (tmp = dcns; tmp; tmp = tmp->next) {
895                 dcn = (description_x *)tmp->data;
896                 if (dcn == NULL)
897                         continue;
898                 if (dcn->lang) {
899                         if (strcmp(dcn->lang, (char *)data) == 0) {
900                                 *description = (char*)dcn->text;
901                                 break;
902                         }
903                 }
904         }
905         for (tmp = aths; tmp; tmp = tmp->next) {
906                 ath = (author_x *)tmp->data;
907                 if (ath == NULL)
908                         continue;
909                 if (ath->lang) {
910                         if (strcmp(ath->lang, (char *)data) == 0) {
911                                 *author = (char*)ath->text;
912                                 break;
913                         }
914                 }
915         }
916
917 }
918
919 static void __extract_icon_data(gpointer data, GList *icns, char **icon, char **resolution)
920 {
921         GList *tmp;
922         icon_x *icn;
923         for (tmp = icns; tmp; tmp = tmp->next) {
924                 icn = (icon_x *)tmp->data;
925                 if (icn == NULL)
926                         continue;
927                 if (icn->section) {
928                         if (strcmp(icn->section, (char *)data) == 0) {
929                                 *icon = (char*)icn->text;
930                                 *resolution = (char*)icn->resolution;
931                                 break;
932                         }
933                 }
934         }
935 }
936
937 static void __extract_image_data(gpointer data, GList *imgs, char **lang, char **image)
938 {
939         GList *tmp;
940         image_x *img;
941         for (tmp = imgs; tmp; tmp = tmp->next) {
942                 img = (image_x *)tmp->data;
943                 if (img == NULL)
944                         continue;
945                 if (img->section) {
946                         if (strcmp(img->section, (char *)data) == 0) {
947                                 *lang = (char*)img->lang;
948                                 *image = (char*)img->text;
949                                 break;
950                         }
951                 }
952         }
953 }
954
955 static void __insert_pkglocale_info(gpointer data, gpointer userdata)
956 {
957         int ret = -1;
958         char *label = NULL;
959         char *icon = NULL;
960         char *description = NULL;
961         char *license = NULL;
962         char *author = NULL;
963         char *query = NULL;
964
965         manifest_x *mfx = (manifest_x *)userdata;
966         GList *lbl = mfx->label;
967         GList *lcn = mfx->license;
968         GList *icn = mfx->icon;
969         GList *dcn = mfx->description;
970         GList *ath = mfx->author;
971
972         __extract_data(data, lbl, lcn, icn, dcn, ath, &label, &license, &icon, &description, &author);
973         if (!label && !description && !icon && !license && !author)
974                 return;
975
976         query = sqlite3_mprintf("INSERT INTO package_localized_info(package, package_locale, " \
977                 "package_label, package_icon, package_description, package_license, package_author) VALUES" \
978                 "(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
979                 mfx->package,
980                 (char*)data,
981                 label,
982                 icon,
983                 description,
984                 license,
985                 author);
986
987         ret = __exec_query(query);
988         if (ret == -1)
989                 _LOGD("Package Localized Info DB Insert failed\n");
990
991         sqlite3_free(query);
992 }
993
994 static void __insert_application_locale_info(gpointer data, gpointer userdata)
995 {
996         int ret = -1;
997         char *label = NULL;
998         char *icon = NULL;
999         char *query = NULL;
1000
1001         application_x *app = (application_x*)userdata;
1002         GList *lbl = app->label;
1003         GList *icn = app->icon;
1004
1005         __extract_data(data, lbl, NULL, icn, NULL, NULL, &label, NULL, &icon, NULL, NULL);
1006         if (!label && !icon)
1007                 return;
1008
1009         query = sqlite3_mprintf("INSERT INTO package_app_localized_info(app_id, app_locale, " \
1010                 "app_label, app_icon) VALUES" \
1011                 "(%Q, %Q, %Q, %Q)", app->appid, (char*)data,
1012                 label, icon);
1013         ret = __exec_query(query);
1014         if (ret == -1)
1015                 _LOGD("Package UiApp Localized Info DB Insert failed\n");
1016
1017         sqlite3_free(query);
1018
1019         /*insert ui app locale info to pkg locale to get mainapp data */
1020         if (strcasecmp(app->mainapp, "true")==0) {
1021                 query = sqlite3_mprintf("INSERT INTO package_localized_info(package, package_locale, " \
1022                         "package_label, package_icon, package_description, package_license, package_author) VALUES" \
1023                         "(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
1024                         app->package,
1025                         (char*)data,
1026                         label,
1027                         icon,
1028                         NULL,
1029                         NULL,
1030                         NULL);
1031
1032                 ret = __exec_query_no_msg(query);
1033                 sqlite3_free(query);
1034
1035                 if (icon != NULL) {
1036                         query = sqlite3_mprintf("UPDATE package_localized_info SET package_icon=%Q "\
1037                                 "WHERE package=%Q AND package_locale=%Q", icon, app->package, (char*)data);
1038                         ret = __exec_query_no_msg(query);
1039                         sqlite3_free(query);
1040                 }
1041         }
1042 }
1043
1044 static void __insert_application_icon_section_info(gpointer data, gpointer userdata)
1045 {
1046         int ret = -1;
1047         char *icon = NULL;
1048         char *resolution = NULL;
1049         char query[MAX_QUERY_LEN] = {'\0'};
1050
1051         application_x *app = (application_x*)userdata;
1052         GList *icn = app->icon;
1053
1054         __extract_icon_data(data, icn, &icon, &resolution);
1055         if (!icon && !resolution)
1056                 return;
1057         sqlite3_snprintf(MAX_QUERY_LEN, query, "INSERT INTO package_app_icon_section_info(app_id, " \
1058                 "app_icon, app_icon_section, app_icon_resolution) VALUES " \
1059                 "(%Q, %Q, %Q, %Q)", app->appid,
1060                 icon, (char*)data, resolution);
1061
1062         ret = __exec_query(query);
1063         if (ret == -1)
1064                 _LOGD("Package UiApp Localized Info DB Insert failed\n");
1065
1066 }
1067
1068 static void __insert_application_image_info(gpointer data, gpointer userdata)
1069 {
1070         int ret = -1;
1071         char *lang = NULL;
1072         char *img = NULL;
1073         char query[MAX_QUERY_LEN] = {'\0'};
1074
1075         application_x *app = (application_x*)userdata;
1076         GList *image = app->image;
1077
1078         __extract_image_data(data, image, &lang, &img);
1079         if (!lang && !img)
1080                 return;
1081         sqlite3_snprintf(MAX_QUERY_LEN, query,
1082                 "INSERT INTO package_app_image_info(app_id, app_locale, " \
1083                 "app_image_section, app_image) VALUES" \
1084                 "(%Q, %Q, %Q, %Q)", app->appid, lang, (char*)data, img);
1085
1086         ret = __exec_query(query);
1087         if (ret == -1)
1088                 _LOGD("Package UiApp image Info DB Insert failed\n");
1089
1090 }
1091
1092
1093 static int __insert_mainapp_info(manifest_x *mfx)
1094 {
1095         GList *tmp;
1096         application_x *app;
1097         int ret = -1;
1098         char query[MAX_QUERY_LEN] = {'\0'};
1099         for (tmp = mfx->application; tmp; tmp = tmp->next) {
1100                 app = (application_x *)tmp->data;
1101                 if (app == NULL)
1102                         continue;
1103
1104                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1105                                 "UPDATE package_app_info SET app_mainapp=%Q WHERE app_id=%Q",
1106                                 app->mainapp, app->appid);
1107                 ret = __exec_query(query);
1108                 if (ret == -1) {
1109                         _LOGD("Package App Info DB Insert Failed\n");
1110                         return -1;
1111                 }
1112                 if (strcasecmp(app->mainapp, "True")==0)
1113                         mfx->mainapp_id = strdup(app->appid);
1114         }
1115
1116         if (mfx->mainapp_id == NULL) {
1117                 if (mfx->application == NULL)
1118                         return -1;
1119                 app = (application_x *)mfx->application->data;
1120                 if (app == NULL)
1121                         return -1;
1122                 if (app->appid) {
1123                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1124                                         "UPDATE package_app_info SET app_mainapp='true' WHERE app_id=%Q",
1125                                         app->appid);
1126                 } else {
1127                         _LOGD("Not valid appid\n");
1128                         return -1;
1129                 }
1130
1131                 ret = __exec_query(query);
1132                 if (ret == -1) {
1133                         _LOGD("Package UiApp Info DB Insert Failed\n");
1134                         return -1;
1135                 }
1136
1137                 free((void *)app->mainapp);
1138                 app->mainapp= strdup("true");
1139                 mfx->mainapp_id = strdup(app->appid);
1140         }
1141
1142         memset(query, '\0', MAX_QUERY_LEN);
1143         sqlite3_snprintf(MAX_QUERY_LEN, query,
1144                         "UPDATE package_info SET mainapp_id=%Q WHERE package=%Q", mfx->mainapp_id, mfx->package);
1145         ret = __exec_query(query);
1146         if (ret == -1) {
1147                 _LOGD("Package Info DB update Failed\n");
1148                 return -1;
1149         }
1150
1151         return 0;
1152 }
1153
1154 static int __convert_background_category(GList *category_list)
1155 {
1156         int ret = 0;
1157         GList *tmp_list = category_list;
1158         char *category_data = NULL;
1159
1160         if (category_list == NULL)
1161                 return 0;
1162
1163         while (tmp_list != NULL) {
1164                 category_data = (char *)tmp_list->data;
1165                 if (strcmp(category_data, APP_BG_CATEGORY_MEDIA_STR) == 0) {
1166                         ret = ret | APP_BG_CATEGORY_MEDIA_VAL;
1167                 } else if (strcmp(category_data, APP_BG_CATEGORY_DOWNLOAD_STR) == 0) {
1168                         ret = ret | APP_BG_CATEGORY_DOWNLOAD_VAL;
1169                 } else if (strcmp(category_data, APP_BG_CATEGORY_BGNETWORK_STR) == 0) {
1170                         ret = ret | APP_BG_CATEGORY_BGNETWORK_VAL;
1171                 } else if (strcmp(category_data, APP_BG_CATEGORY_LOCATION_STR) == 0) {
1172                         ret = ret | APP_BG_CATEGORY_LOCATION_VAL;
1173                 } else if (strcmp(category_data, APP_BG_CATEGORY_SENSOR_STR) == 0) {
1174                         ret = ret | APP_BG_CATEGORY_SENSOR_VAL;
1175                 } else if (strcmp(category_data, APP_BG_CATEGORY_IOTCOMM_STR) == 0) {
1176                         ret = ret | APP_BG_CATEGORY_IOTCOMM_VAL;
1177                 } else if (strcmp(category_data, APP_BG_CATEGORY_SYSTEM) == 0) {
1178                         ret = ret | APP_BG_CATEGORY_SYSTEM_VAL;
1179                 } else {
1180                         _LOGE("Unidentified category [%s]", category_data);
1181                 }
1182                 tmp_list = g_list_next(tmp_list);
1183         }
1184
1185         return ret;
1186 }
1187
1188 static const char *__find_effective_appid(GList *metadata_list)
1189 {
1190         GList *tmp_list;
1191         metadata_x *md;
1192
1193         for (tmp_list = metadata_list; tmp_list; tmp_list = tmp_list->next) {
1194                 md = (metadata_x *)tmp_list->data;
1195                 if (md == NULL || md->key == NULL)
1196                         continue;
1197
1198                 if (strcmp(md->key, "http://tizen.org/metadata/effective-appid") == 0) {
1199                         if (md->value)
1200                                 return md->value;
1201                 }
1202         }
1203
1204         return NULL;
1205 }
1206
1207 static char *__get_bool(char *value, bool is_true)
1208 {
1209         if (value != NULL)
1210                 return value;
1211
1212         return (is_true) ? "true" : "false";
1213 }
1214
1215 /* _PRODUCT_LAUNCHING_ENHANCED_
1216 *  app->indicatordisplay, app->portraitimg, app->landscapeimg, app->guestmode_appstatus
1217 */
1218 static int __insert_application_info(manifest_x *mfx)
1219 {
1220         GList *tmp;
1221         application_x *app;
1222         int ret = -1;
1223         int background_value = 0;
1224         char query[MAX_QUERY_LEN] = {'\0'};
1225         char *type = NULL;
1226         const char *effective_appid;
1227
1228         if (mfx->type)
1229                 type = strdup(mfx->type);
1230         else
1231                 type = strdup("tpk");
1232
1233         for (tmp = mfx->application; tmp; tmp = tmp->next) {
1234                 app = (application_x *)tmp->data;
1235                 if (app == NULL)
1236                         continue;
1237
1238                 background_value = __convert_background_category(app->background_category);
1239                 if (background_value < 0) {
1240                         _LOGE("Failed to retrieve background value[%d]", background_value);
1241                         background_value = 0;
1242                 }
1243
1244                 effective_appid = __find_effective_appid(app->metadata);
1245
1246                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1247                         "INSERT INTO package_app_info(" \
1248                         "app_id, app_component, app_exec, app_nodisplay, app_type, " \
1249                         "app_onboot, app_multiple, app_autorestart, app_taskmanage, app_enabled, " \
1250                         "app_hwacceleration, app_screenreader, app_mainapp, app_recentimage, app_launchcondition, " \
1251                         "app_indicatordisplay, app_portraitimg, app_landscapeimg, app_guestmodevisibility, app_permissiontype, " \
1252                         "app_preload, app_submode, app_submode_mainid, app_installed_storage, app_process_pool, " \
1253                         "app_launch_mode, app_ui_gadget, app_support_disable, component_type, package, " \
1254                         "app_tep_name, app_zip_mount_file, app_background_category, app_package_type, app_root_path, " \
1255                         "app_api_version, app_effective_appid, app_splash_screen_display) " \
1256                         "VALUES(" \
1257                         "%Q, %Q, %Q, LOWER(%Q), %Q, " \
1258                         "LOWER(%Q), LOWER(%Q), LOWER(%Q), LOWER(%Q), LOWER(%Q), " \
1259                         "%Q, %Q, %Q, %Q, %Q, " \
1260                         "LOWER(%Q), %Q, %Q, LOWER(%Q), %Q, " \
1261                         "LOWER(%Q), LOWER(%Q), %Q, %Q, LOWER(%Q), " \
1262                         "COALESCE(%Q, 'caller'), LOWER(%Q), LOWER(%Q), %Q, %Q, " \
1263                         "%Q, %Q, %d, %Q, %Q, " \
1264                         "%Q, %Q, LOWER(%Q))", \
1265                         app->appid, app->component_type, app->exec, __get_bool(app->nodisplay, false), app->type,
1266                         __get_bool(app->onboot, false), __get_bool(app->multiple, false), __get_bool(app->autorestart, false), __get_bool(app->taskmanage, false), __get_bool(app->enabled, true),
1267                         app->hwacceleration, app->screenreader, app->mainapp, app->recentimage, app->launchcondition,
1268                         __get_bool(app->indicatordisplay, true), app->portraitimg, app->landscapeimg,
1269                         __get_bool(app->guestmode_visibility, true), app->permission_type,
1270                         __get_bool(mfx->preload, false), __get_bool(app->submode, false), app->submode_mainid, mfx->installed_storage, __get_bool(app->process_pool, false),
1271                         app->launch_mode, __get_bool(app->ui_gadget, false), __get_bool(mfx->support_disable, false), app->component_type, mfx->package,
1272                         mfx->tep_name, mfx->zip_mount_file, background_value, type, mfx->root_path, mfx->api_version,
1273                         effective_appid, __get_bool(app->splash_screen_display, false));
1274
1275                 ret = __exec_query(query);
1276                 if (ret == -1) {
1277                         _LOGD("Package UiApp Info DB Insert Failed\n");
1278                         if (type)
1279                                 free(type);
1280                         return -1;
1281                 }
1282                 memset(query, '\0', MAX_QUERY_LEN);
1283         }
1284
1285         if (type)
1286                 free(type);
1287
1288         return 0;
1289 }
1290
1291 static int __insert_application_appcategory_info(manifest_x *mfx)
1292 {
1293         GList *app_tmp;
1294         application_x *app;
1295         GList *ct_tmp;
1296         const char *ct;
1297         int ret = -1;
1298         char query[MAX_QUERY_LEN] = {'\0'};
1299         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1300                 app = (application_x *)app_tmp->data;
1301                 if (app == NULL)
1302                         continue;
1303                 for (ct_tmp = app->category; ct_tmp; ct_tmp = ct_tmp->next) {
1304                         ct = (const char *)ct_tmp->data;
1305                         if (ct == NULL)
1306                                 continue;
1307                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1308                                 "INSERT INTO package_app_app_category(app_id, category) " \
1309                                 "VALUES(%Q, %Q)",\
1310                                  app->appid, ct);
1311                         ret = __exec_query(query);
1312                         if (ret == -1) {
1313                                 _LOGD("Package UiApp Category Info DB Insert Failed\n");
1314                                 return -1;
1315                         }
1316                         memset(query, '\0', MAX_QUERY_LEN);
1317                 }
1318         }
1319         return 0;
1320 }
1321
1322 static int __insert_application_appmetadata_info(manifest_x *mfx)
1323 {
1324         GList *app_tmp;
1325         application_x *app;
1326         GList *md_tmp;
1327         metadata_x *md;
1328         int ret = -1;
1329         char query[MAX_QUERY_LEN] = {'\0'};
1330         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1331                 app = (application_x *)app_tmp->data;
1332                 if (app == NULL)
1333                         continue;
1334                 for (md_tmp = app->metadata; md_tmp; md_tmp = md_tmp->next) {
1335                         md = (metadata_x *)md_tmp->data;
1336                         if (md == NULL)
1337                                 continue;
1338                         if (md->key) {
1339                                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1340                                         "INSERT INTO package_app_app_metadata(app_id, md_key, md_value) " \
1341                                         "VALUES(%Q, %Q, %Q)",\
1342                                          app->appid, md->key, md->value ? md->value : NULL);
1343                                 ret = __exec_query(query);
1344                                 if (ret == -1) {
1345                                         _LOGD("Package UiApp Metadata Info DB Insert Failed\n");
1346                                         return -1;
1347                                 }
1348                         }
1349                         memset(query, '\0', MAX_QUERY_LEN);
1350                 }
1351         }
1352         return 0;
1353 }
1354
1355 static int __insert_application_apppermission_info(manifest_x *mfx)
1356 {
1357         GList *app_tmp;
1358         application_x *app;
1359         GList *pm_tmp;
1360         permission_x *pm;
1361         int ret = -1;
1362         char query[MAX_QUERY_LEN] = {'\0'};
1363         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1364                 app = (application_x *)app_tmp->data;
1365                 if (app == NULL)
1366                         continue;
1367                 for (pm_tmp = app->permission; pm_tmp; pm_tmp = pm_tmp->next) {
1368                         pm = (permission_x *)pm_tmp->data;
1369                         if (pm == NULL)
1370                                 continue;
1371                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1372                                 "INSERT INTO package_app_app_permission(app_id, pm_type, pm_value) " \
1373                                 "VALUES(%Q, %Q, %Q)",\
1374                                  app->appid, pm->type, pm->value);
1375                         ret = __exec_query(query);
1376                         if (ret == -1) {
1377                                 _LOGD("Package UiApp permission Info DB Insert Failed\n");
1378                                 return -1;
1379                         }
1380                         memset(query, '\0', MAX_QUERY_LEN);
1381                 }
1382         }
1383         return 0;
1384 }
1385
1386 static int __insert_application_appcontrol_info(manifest_x *mfx)
1387 {
1388         GList *app_tmp;
1389         application_x *app;
1390         GList *acontrol_tmp;
1391         appcontrol_x *acontrol;
1392         int ret = -1;
1393         char query[MAX_QUERY_LEN] = {'\0'};
1394         char buf[BUFSIZE] = {'\0'};
1395         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1396                 app = (application_x *)app_tmp->data;
1397                 if (app == NULL)
1398                         continue;
1399                 for (acontrol_tmp = app->appcontrol; acontrol_tmp; acontrol_tmp = acontrol_tmp->next) {
1400                         acontrol = (appcontrol_x *)acontrol_tmp->data;
1401                         if (acontrol == NULL)
1402                                 continue;
1403                         snprintf(buf, BUFSIZE, "%s|%s|%s",\
1404                                         acontrol->operation ? (strlen(acontrol->operation) > 0 ? acontrol->operation : "NULL") : "NULL",
1405                                         acontrol->uri ? (strlen(acontrol->uri) > 0 ? acontrol->uri : "NULL") : "NULL",
1406                                         acontrol->mime ? (strlen(acontrol->mime) > 0 ? acontrol->mime : "NULL") : "NULL");
1407                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1408                                         "INSERT INTO package_app_app_control(app_id, app_control) " \
1409                                         "VALUES(%Q, %Q)",\
1410                                         app->appid, buf);
1411                         ret = __exec_query(query);
1412                         if (ret == -1) {
1413                                 _LOGD("Package UiApp AppSvc DB Insert Failed\n");
1414                                 return -1;
1415                         }
1416                         memset(query, '\0', MAX_QUERY_LEN);
1417                 }
1418         }
1419         return 0;
1420 }
1421
1422 static int __insert_application_datacontrol_info(manifest_x *mfx)
1423 {
1424         GList *app_tmp;
1425         application_x *app;
1426         GList *dc_tmp;
1427         datacontrol_x *dc;
1428         int ret = -1;
1429         char query[MAX_QUERY_LEN] = {'\0'};
1430
1431         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1432                 app = (application_x *)app_tmp->data;
1433                 if (app == NULL)
1434                         continue;
1435                 for (dc_tmp = app->datacontrol; dc_tmp; dc_tmp = dc_tmp->next) {
1436                         dc = (datacontrol_x *)dc_tmp->data;
1437                         if (dc == NULL)
1438                                 continue;
1439                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1440                                         "INSERT INTO package_app_data_control(app_id, providerid, access, type) " \
1441                                         "VALUES(%Q, %Q, %Q, %Q)",\
1442                                         app->appid,
1443                                         dc->providerid,
1444                                         dc->access,
1445                                         dc->type);
1446
1447                         ret = __exec_query(query);
1448                         if (ret == -1) {
1449                                 _LOGD("Package UiApp Data Control DB Insert Failed\n");
1450                                 return -1;
1451                         }
1452                         memset(query, '\0', MAX_QUERY_LEN);
1453                 }
1454         }
1455         return 0;
1456 }
1457
1458 static int __insert_application_share_request_info(manifest_x *mfx)
1459 {
1460         GList *app_tmp;
1461         application_x *app;
1462         GList *ds_tmp;
1463         datashare_x *ds;
1464         GList *rq_tmp;
1465         const char *rq;
1466         int ret = -1;
1467         char query[MAX_QUERY_LEN] = {'\0'};
1468         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1469                 app = (application_x *)app_tmp->data;
1470                 if (app == NULL)
1471                         continue;
1472                 for (ds_tmp = app->datashare; ds_tmp; ds_tmp = ds_tmp->next) {
1473                         ds = (datashare_x *)ds_tmp->data;
1474                         if (ds == NULL)
1475                                 continue;
1476                         for (rq_tmp = ds->request; rq_tmp; rq_tmp = rq_tmp->next) {
1477                                 rq = (const char *)rq_tmp->data;
1478                                 if (rq == NULL)
1479                                         continue;
1480                                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1481                                                 "INSERT INTO package_app_share_request(app_id, data_share_request) " \
1482                                                 "VALUEES(%Q, %Q)",\
1483                                          app->appid, rq);
1484                                 ret = __exec_query(query);
1485                                 if (ret == -1) {
1486                                         _LOGD("Package UiApp Share Request DB Insert Failed\n");
1487                                         return -1;
1488                                 }
1489                                 memset(query, '\0', MAX_QUERY_LEN);
1490                         }
1491                 }
1492         }
1493         return 0;
1494 }
1495
1496 static int __insert_application_share_allowed_info(manifest_x *mfx)
1497 {
1498         GList *app_tmp;
1499         application_x *app;
1500         GList *ds_tmp;
1501         datashare_x *ds;
1502         GList *df_tmp;
1503         define_x *df;
1504         GList *al_tmp;
1505         const char *al;
1506         int ret = -1;
1507         char query[MAX_QUERY_LEN] = {'\0'};
1508         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1509                 app = (application_x *)app_tmp->data;
1510                 if (app == NULL)
1511                         continue;
1512                 for (ds_tmp = app->datashare; ds_tmp; ds_tmp = ds_tmp->next) {
1513                         ds = (datashare_x *)ds_tmp->data;
1514                         if (ds == NULL)
1515                                 continue;
1516                         for (df_tmp = ds->define; df_tmp; df_tmp = df_tmp->next) {
1517                                 df = (define_x *)df_tmp->data;
1518                                 if (df == NULL)
1519                                         continue;
1520                                 for (al_tmp = df->allowed; al_tmp; al_tmp = al_tmp->next) {
1521                                         al = (const char *)al_tmp->data;
1522                                         if (al == NULL)
1523                                                 continue;
1524                                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1525                                                         "INSERT INTO package_app_share_allowed(app_id, data_share_path, data_share_allowed) " \
1526                                                         "VALUES(%Q, %Q, %Q)",\
1527                                                  app->appid, df->path, al);
1528                                         ret = __exec_query(query);
1529                                         if (ret == -1) {
1530                                                 _LOGD("Package UiApp Share Allowed DB Insert Failed\n");
1531                                                 return -1;
1532                                         }
1533                                         memset(query, '\0', MAX_QUERY_LEN);
1534                                 }
1535                         }
1536                 }
1537         }
1538         return 0;
1539 }
1540
1541 static gint __compare_splashscreen_with_orientation_dpi(gconstpointer a, gconstpointer b)
1542 {
1543         splashscreen_x *ss = (splashscreen_x *)a;
1544         const char *orientation = (const char *)b;
1545         int dpi = -1;
1546
1547         if (ss->operation || ss->dpi == NULL)
1548                 return -1;
1549
1550         system_info_get_platform_int("http://tizen.org/feature/screen.dpi", &dpi);
1551         if (!dpi)
1552                 return -1;
1553
1554         if (strcasecmp(ss->orientation, orientation) == 0 && __check_dpi(ss->dpi, dpi) == 0)
1555                 return 0;
1556
1557         return -1;
1558 }
1559
1560 static gint __compare_splashscreen_with_orientation(gconstpointer a, gconstpointer b)
1561 {
1562         splashscreen_x *ss = (splashscreen_x *)a;
1563         const char *orientation = (const char *)b;
1564
1565         if (ss->operation || ss->dpi)
1566                 return -1;
1567
1568         if (strcasecmp(ss->orientation, orientation) == 0)
1569                 return 0;
1570
1571         return -1;
1572 }
1573
1574 static splashscreen_x *__find_default_splashscreen(GList *splashscreens,
1575                                         const char *orientation)
1576 {
1577         GList *tmp;
1578
1579         tmp = g_list_find_custom(splashscreens, orientation,
1580                         (GCompareFunc)__compare_splashscreen_with_orientation_dpi);
1581         if (tmp)
1582                 return (splashscreen_x *)tmp->data;
1583
1584         tmp = g_list_find_custom(splashscreens, orientation,
1585                         (GCompareFunc)__compare_splashscreen_with_orientation);
1586         if (tmp)
1587                 return (splashscreen_x *)tmp->data;
1588
1589         return NULL;
1590 }
1591
1592 static void __find_appcontrol_splashscreen_with_dpi(gpointer data, gpointer user_data)
1593 {
1594         splashscreen_x *ss = (splashscreen_x *)data;
1595         GList **list = (GList **)user_data;
1596         int dpi = -1;
1597
1598         if (ss->operation == NULL || ss->dpi == NULL)
1599                 return;
1600
1601         system_info_get_platform_int("http://tizen.org/feature/screen.dpi", &dpi);
1602         if (!dpi)
1603                 return;
1604
1605         if (__check_dpi(ss->dpi, dpi) != 0)
1606                 return;
1607
1608         *list = g_list_append(*list, ss);
1609 }
1610
1611 static void __find_appcontrol_splashscreen(gpointer data, gpointer user_data)
1612 {
1613         splashscreen_x *ss = (splashscreen_x *)data;
1614         GList **list = (GList **)user_data;
1615         splashscreen_x *ss_tmp;
1616         GList *tmp;
1617
1618         if (ss->operation == NULL || ss->dpi)
1619                 return;
1620
1621         for (tmp = *list; tmp; tmp = tmp->next) {
1622                 ss_tmp = (splashscreen_x *)tmp->data;
1623                 if (ss_tmp->operation
1624                         && strcmp(ss_tmp->operation, ss->operation) == 0
1625                         && strcmp(ss_tmp->orientation, ss->orientation) == 0)
1626                         return;
1627         }
1628
1629         *list = g_list_append(*list, ss);
1630 }
1631
1632 static GList *__find_splashscreens(GList *splashscreens)
1633 {
1634         GList *list = NULL;
1635         splashscreen_x *ss;
1636
1637         g_list_foreach(splashscreens,
1638                         __find_appcontrol_splashscreen_with_dpi, &list);
1639         g_list_foreach(splashscreens,
1640                         __find_appcontrol_splashscreen, &list);
1641
1642         ss = __find_default_splashscreen(splashscreens, "portrait");
1643         if (ss)
1644                 list = g_list_append(list, ss);
1645         ss = __find_default_splashscreen(splashscreens, "landscape");
1646         if (ss)
1647                 list = g_list_append(list, ss);
1648
1649         return list;
1650 }
1651
1652 static int __insert_application_splashscreen_info(manifest_x *mfx)
1653 {
1654         GList *app_tmp;
1655         application_x *app;
1656         GList *ss_tmp;
1657         splashscreen_x *ss;
1658         GList *tmp;
1659         int ret = -1;
1660         char query[MAX_QUERY_LEN] = {'\0'};
1661
1662         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1663                 app = (application_x *)app_tmp->data;
1664                 if (app == NULL || app->splashscreens == NULL)
1665                         continue;
1666
1667                 ss_tmp = __find_splashscreens(app->splashscreens);
1668                 if (ss_tmp == NULL)
1669                         continue;
1670
1671                 for (tmp = ss_tmp; tmp; tmp = tmp->next) {
1672                         ss = (splashscreen_x *)tmp->data;
1673                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1674                                         "INSERT INTO package_app_splash_screen" \
1675                                         "(app_id, src, type, orientation, indicatordisplay, operation, color_depth) " \
1676                                         "VALUES(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
1677                                         app->appid, ss->src, ss->type, ss->orientation,
1678                                         ss->indicatordisplay, ss->operation,
1679                                         ss->color_depth);
1680                         ret = __exec_query(query);
1681                         if (ret == -1) {
1682                                 _LOGD("Package UiApp Splash Screen DB Insert Failed");
1683                                 return -1;
1684                         }
1685                         memset(query, '\0', MAX_QUERY_LEN);
1686                 }
1687                 g_list_free(ss_tmp);
1688         }
1689         return 0;
1690 }
1691
1692 static int __insert_application_legacy_splashscreen_info(manifest_x *mfx)
1693 {
1694         GList *app_tmp;
1695         application_x *app;
1696         int ret = -1;
1697         char query[MAX_QUERY_LEN] = {'\0'};
1698         char *tmp;
1699         const char *image_type;
1700         const char *indicatordisplay;
1701         const char *orientation;
1702         const char *operation = NULL;
1703         const char *color_depth = "24"; /* default */
1704
1705         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1706                 app = (application_x *)app_tmp->data;
1707                 if (app == NULL ||
1708                         (app->portraitimg == NULL && app->landscapeimg == NULL))
1709                         continue;
1710                 image_type = "img"; /* default */
1711                 if (app->effectimage_type) {
1712                         tmp = strstr(app->effectimage_type, "edj");
1713                         if (tmp)
1714                                 image_type = "edj";
1715                 }
1716                 indicatordisplay = "true"; /* default */
1717                 if (app->indicatordisplay)
1718                         indicatordisplay = app->indicatordisplay;
1719                 if (app->portraitimg) {
1720                         orientation = "portrait";
1721                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1722                                         "INSERT INTO package_app_splash_screen" \
1723                                         "(app_id, src, type, orientation, indicatordisplay, operation, color_depth) " \
1724                                         "VALUES(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
1725                                         app->appid, app->portraitimg, image_type,
1726                                         orientation, indicatordisplay, operation,
1727                                         color_depth);
1728                         ret = __exec_query(query);
1729                         if (ret == -1) {
1730                                 _LOGD("Package UiApp Splash Screen DB Insert Failed");
1731                                 return -1;
1732                         }
1733                         memset(query, '\0', MAX_QUERY_LEN);
1734                 }
1735                 if (app->landscapeimg) {
1736                         orientation = "landscape";
1737                         sqlite3_snprintf(MAX_QUERY_LEN, query,
1738                                         "INSERT INTO package_app_splash_screen" \
1739                                         "(app_id, src, type, orientation, indicatordisplay, operation, color_depth) " \
1740                                         "VALUES(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
1741                                         app->appid, app->landscapeimg, image_type,
1742                                         orientation, indicatordisplay, operation,
1743                                         color_depth);
1744                         ret = __exec_query(query);
1745                         if (ret == -1) {
1746                                 _LOGD("Package UiApp Splash Screen DB Insert Failed");
1747                                 return -1;
1748                         }
1749                         memset(query, '\0', MAX_QUERY_LEN);
1750                 }
1751         }
1752         return 0;
1753 }
1754
1755 static int __insert_application_metadata_splashscreen_info(manifest_x *mfx)
1756 {
1757         GList *app_tmp;
1758         application_x *app;
1759         GList *md_tmp;
1760         metadata_x *md;
1761         int ret;
1762         char query[MAX_QUERY_LEN] = {'\0'};
1763         char *token;
1764         char *tmpptr = NULL;
1765         const char *operation;
1766         const char *portraitimg;
1767         const char *landscapeimg;
1768         const char *indicatordisplay;
1769         const char *orientation;
1770         const char *image_type;
1771         const char *color_depth = "24"; /* default */
1772
1773         for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
1774                 app = (application_x *)app_tmp->data;
1775                 if (app == NULL)
1776                         continue;
1777
1778                 for (md_tmp = app->metadata; md_tmp; md_tmp = md_tmp->next) {
1779                         md = (metadata_x *)md_tmp->data;
1780                         if (md == NULL || md->key == NULL || md->value == NULL)
1781                                 continue;
1782
1783                         if (strcasestr(md->key, "operation_effect=")) {
1784                                 operation = index(md->key, '=');
1785                                 if ((operation + 1) != NULL)
1786                                         operation++;
1787                                 else
1788                                         operation = NULL;
1789                         } else if (strcasestr(md->key, "launch_effect")) {
1790                                 operation = NULL;
1791                         } else {
1792                                 continue;
1793                         }
1794
1795                         portraitimg = NULL;
1796                         landscapeimg = NULL;
1797                         indicatordisplay = "true"; /* default */
1798                         token = strtok_r(md->value, "|", &tmpptr);
1799                         while (token != NULL) {
1800                                 if (strcasestr(token, "portrait-effectimage=")) {
1801                                         portraitimg = index(token, '=');
1802                                         if ((portraitimg + 1) != NULL)
1803                                                 portraitimg++;
1804                                         else
1805                                                 portraitimg = NULL;
1806                                 } else if (strcasestr(token, "landscape-effectimage=")) {
1807                                         landscapeimg = index(token, '=');
1808                                         if ((landscapeimg + 1) != NULL)
1809                                                 landscapeimg++;
1810                                         else
1811                                                 landscapeimg = NULL;
1812                                 } else if (strcasestr(token, "indicatordisplay=")) {
1813                                         indicatordisplay = index(token, '=');
1814                                         if ((indicatordisplay + 1) != NULL)
1815                                                 indicatordisplay++;
1816                                         else
1817                                                 indicatordisplay = "true";
1818                                 }
1819
1820                                 token = strtok_r(NULL, "|", &tmpptr);
1821                         }
1822
1823                         if (portraitimg) {
1824                                 orientation = "portrait";
1825                                 image_type = "img";
1826                                 if (strcasestr(portraitimg, "edj"))
1827                                         image_type = "edj";
1828                                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1829                                         "INSERT INTO package_app_splash_screen" \
1830                                         "(app_id, src, type, orientation, indicatordisplay, operation, color_depth) " \
1831                                         "VALUES(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
1832                                         app->appid, portraitimg, image_type,
1833                                         orientation, indicatordisplay, operation,
1834                                         color_depth);
1835                                 ret = __exec_query(query);
1836                                 if (ret == -1) {
1837                                         _LOGD("Package UiApp Splash Screen DB Insert Failed");
1838                                         return -1;
1839                                 }
1840                                 memset(query, '\0', MAX_QUERY_LEN);
1841                         }
1842                         if (landscapeimg) {
1843                                 orientation = "landscape";
1844                                 image_type = "img";
1845                                 if (strcasestr(landscapeimg, "edj"))
1846                                         image_type = "edj";
1847                                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1848                                         "INSERT INTO package_app_splash_screen" \
1849                                         "(app_id, src, type, orientation, indicatordisplay, operation, color_depth) " \
1850                                         "VALUES(%Q, %Q, %Q, %Q, %Q, %Q, %Q)",
1851                                         app->appid, landscapeimg, image_type,
1852                                         orientation, indicatordisplay, operation,
1853                                         color_depth);
1854                                 ret = __exec_query(query);
1855                                 if (ret == -1) {
1856                                         _LOGD("Package UiApp Splash Screen DB Insert Failed");
1857                                         return -1;
1858                                 }
1859                                 memset(query, '\0', MAX_QUERY_LEN);
1860                         }
1861                 }
1862         }
1863
1864         return 0;
1865 }
1866
1867 static int __insert_manifest_info_in_db(manifest_x *mfx, uid_t uid)
1868 {
1869         GList *tmp;
1870         application_x *app;
1871         const char *pv = NULL;
1872         char query[MAX_QUERY_LEN] = { '\0' };
1873         int ret = -1;
1874         author_x *author;
1875         const char *auth_name = NULL;
1876         const char *auth_email = NULL;
1877         const char *auth_href = NULL;
1878
1879         GList *pkglocale = NULL;
1880         GList *applocale = NULL;
1881         GList *appicon = NULL;
1882         GList *appimage = NULL;
1883
1884         if (mfx->author && mfx->author->data) {
1885                 author = (author_x *)mfx->author->data;
1886                 if (author->text)
1887                         auth_name = author->text;
1888                 if (author->email)
1889                         auth_email = author->email;
1890                 if (author->href)
1891                         auth_href = author->href;
1892         }
1893
1894         /*Insert in the package_cert_info CERT_DB*/
1895         pkgmgrinfo_instcertinfo_h cert_handle = NULL;
1896         ret = pkgmgrinfo_set_cert_value(&cert_handle, PMINFO_SET_AUTHOR_ROOT_CERT, "author root certificate");
1897         if (ret != PMINFO_R_OK) {
1898                 pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
1899                 _LOGE("Cert Info DB create handle failed\n");
1900                 return -1;
1901         }
1902         ret = pkgmgrinfo_save_certinfo(mfx->package, &cert_handle, uid);
1903         if (ret != PMINFO_R_OK) {
1904                 pkgmgrinfo_destroy_certinfo_set_handle(cert_handle);
1905                 _LOGE("Cert Info DB Insert Failed\n");
1906                 return -1;
1907         }
1908
1909         if (ret != PMINFO_R_OK) {
1910                 _LOGE("Failed to set default values");
1911                 return -1;
1912         }
1913
1914         /*Insert in the package_info DB*/
1915         sqlite3_snprintf(MAX_QUERY_LEN, query,
1916                 "INSERT INTO package_info(" \
1917                 "package, package_type, package_version, package_api_version, package_tep_name, package_zip_mount_file, " \
1918                 "install_location, package_size, package_removable, package_preload, package_readonly, " \
1919                 "package_update, package_appsetting, package_nodisplay, package_system, author_name, " \
1920                 "author_email, author_href, installed_time, installed_storage, storeclient_id, " \
1921                 "mainapp_id, package_url, root_path, csc_path, package_support_disable) " \
1922                 "VALUES(" \
1923                 "%Q, %Q, %Q, %Q, %Q, %Q, " \
1924                 "%Q, %Q, LOWER(%Q), LOWER(%Q), LOWER(%Q), " \
1925                 "LOWER(%Q), LOWER(%Q), LOWER(%Q), LOWER(%Q), %Q, " \
1926                 "%Q, %Q, %Q, %Q, %Q, " \
1927                 "%Q, %Q, %Q, %Q, LOWER(%Q))",
1928                 mfx->package, mfx->type, mfx->version, mfx->api_version, mfx->tep_name, mfx->zip_mount_file,
1929                 mfx->installlocation, mfx->package_size, __get_bool(mfx->removable, true), __get_bool(mfx->preload, false), __get_bool(mfx->readonly, false),
1930                 __get_bool(mfx->update, false), __get_bool(mfx->appsetting, false), __get_bool(mfx->nodisplay_setting, false), __get_bool(mfx->system, false), auth_name,
1931                 auth_email, auth_href, mfx->installed_time, mfx->installed_storage,
1932                 mfx->storeclient_id,
1933                 mfx->mainapp_id, mfx->package_url, mfx->root_path, mfx->csc_path, __get_bool(mfx->support_disable, false));
1934
1935         ret = __exec_query(query);
1936         if (ret == -1) {
1937                 _LOGD("Package Info DB Insert Failed\n");
1938                 return -1;
1939         }
1940
1941         /*Insert in the package_privilege_info DB*/
1942         for (tmp = mfx->privileges; tmp; tmp = tmp->next) {
1943                 pv = (const char *)tmp->data;
1944                 if (pv == NULL)
1945                         continue;
1946                 memset(query, '\0', MAX_QUERY_LEN);
1947                 sqlite3_snprintf(MAX_QUERY_LEN, query,
1948                         "INSERT INTO package_privilege_info(package, privilege) " \
1949                         "VALUES(%Q, %Q)",\
1950                          mfx->package, pv);
1951                 ret = __exec_query(query);
1952                 if (ret == -1) {
1953                         _LOGD("Package Privilege Info DB Insert Failed\n");
1954                         return -1;
1955                 }
1956         }
1957
1958         if (mfx->application != NULL) {
1959                 ret = __insert_mainapp_info(mfx);
1960                 if (ret == -1)
1961                         return -1;
1962         }
1963
1964         /*Insert the package locale*/
1965         pkglocale = __create_locale_list(pkglocale, mfx->label, mfx->license, mfx->icon, mfx->description, mfx->author);
1966         /*remove duplicated data in pkglocale*/
1967         __trimfunc(pkglocale);
1968
1969         /*Insert the app locale, icon, image info */
1970         for (tmp = mfx->application; tmp; tmp = tmp->next) {
1971                 app = (application_x *)tmp->data;
1972                 if (app == NULL)
1973                         continue;
1974                 applocale = __create_locale_list(applocale, app->label, NULL, app->icon, NULL, NULL);
1975                 appicon = __create_icon_list(appicon, app->icon);
1976                 appimage = __create_image_list(appimage, app->image);
1977         }
1978         /*remove duplicated data in applocale*/
1979         __trimfunc(applocale);
1980         __trimfunc(appicon);
1981         __trimfunc(appimage);
1982
1983         g_list_foreach(pkglocale, __insert_pkglocale_info, (gpointer)mfx);
1984
1985         /*native app locale info*/
1986         for (tmp = mfx->application; tmp; tmp = tmp->next) {
1987                 app = (application_x *)tmp->data;
1988                 if (app == NULL)
1989                         continue;
1990                 g_list_foreach(applocale, __insert_application_locale_info, (gpointer)app);
1991                 g_list_foreach(appicon, __insert_application_icon_section_info, (gpointer)app);
1992                 g_list_foreach(appimage, __insert_application_image_info, (gpointer)app);
1993         }
1994
1995         g_list_free(pkglocale);
1996         pkglocale = NULL;
1997         g_list_free(applocale);
1998         applocale = NULL;
1999         g_list_free(appicon);
2000         appicon = NULL;
2001         g_list_free(appimage);
2002         appimage = NULL;
2003
2004         /*Insert in the package_app_info DB*/
2005         ret = __insert_application_info(mfx);
2006         if (ret == -1)
2007                 return -1;
2008         /*Insert in the package_app_app_control DB*/
2009         ret = __insert_application_appcontrol_info(mfx);
2010         if (ret == -1)
2011                 return -1;
2012
2013         /*Insert in the package_app_app_category DB*/
2014         ret = __insert_application_appcategory_info(mfx);
2015         if (ret == -1)
2016                 return -1;
2017
2018         /*Insert in the package_app_app_metadata DB*/
2019         ret = __insert_application_appmetadata_info(mfx);
2020         if (ret == -1)
2021                 return -1;
2022
2023         /*Insert in the package_app_app_permission DB*/
2024         ret = __insert_application_apppermission_info(mfx);
2025         if (ret == -1)
2026                 return -1;
2027
2028         /*Insert in the package_app_share_allowed DB*/
2029         ret = __insert_application_share_allowed_info(mfx);
2030         if (ret == -1)
2031                 return -1;
2032
2033         /*Insert in the package_app_share_request DB*/
2034         ret = __insert_application_share_request_info(mfx);
2035         if (ret == -1)
2036                 return -1;
2037
2038         /*Insert in the package_app_data_control DB*/
2039         ret = __insert_application_datacontrol_info(mfx);
2040         if (ret == -1)
2041                 return -1;
2042
2043         /*Insert in the package_app_splash_screen DB (backward compatibility)*/
2044         ret = __insert_application_legacy_splashscreen_info(mfx);
2045         if (ret == -1)
2046                 return -1;
2047
2048         /*Insert in the package_app_splash_screen DB (backward compatibility)*/
2049         ret = __insert_application_metadata_splashscreen_info(mfx);
2050         if (ret == -1)
2051                 return -1;
2052
2053         /*Insert in the package_app_splash_screen DB*/
2054         ret = __insert_application_splashscreen_info(mfx);
2055         if (ret == -1)
2056                 return -1;
2057
2058         return 0;
2059
2060 }
2061
2062 static int __delete_appinfo_from_db(char *db_table, const char *appid)
2063 {
2064         char query[MAX_QUERY_LEN] = { '\0' };
2065         int ret = -1;
2066
2067         sqlite3_snprintf(MAX_QUERY_LEN, query,
2068                  "DELETE FROM %q where app_id=%Q", db_table, appid);
2069         ret = __exec_query(query);
2070         if (ret == -1) {
2071                 _LOGD("DB Deletion from table (%s) Failed\n", db_table);
2072                 return -1;
2073         }
2074         return 0;
2075 }
2076
2077 static int __delete_subpkg_info_from_db(char *appid)
2078 {
2079         int ret = -1;
2080
2081         ret = __delete_appinfo_from_db("package_app_info", appid);
2082         if (ret < 0)
2083                 return ret;
2084         ret = __delete_appinfo_from_db("package_app_localized_info", appid);
2085         if (ret < 0)
2086                 return ret;
2087         ret = __delete_appinfo_from_db("package_app_icon_section_info", appid);
2088         if (ret < 0)
2089                 return ret;
2090         ret = __delete_appinfo_from_db("package_app_image_info", appid);
2091         if (ret < 0)
2092                 return ret;
2093         ret = __delete_appinfo_from_db("package_app_app_control", appid);
2094         if (ret < 0)
2095                 return ret;
2096         ret = __delete_appinfo_from_db("package_app_app_category", appid);
2097         if (ret < 0)
2098                 return ret;
2099         ret = __delete_appinfo_from_db("package_app_app_metadata", appid);
2100         if (ret < 0)
2101                 return ret;
2102         ret = __delete_appinfo_from_db("package_app_app_permission", appid);
2103         if (ret < 0)
2104                 return ret;
2105         ret = __delete_appinfo_from_db("package_app_share_allowed", appid);
2106         if (ret < 0)
2107                 return ret;
2108         ret = __delete_appinfo_from_db("package_app_share_request", appid);
2109         if (ret < 0)
2110                 return ret;
2111         ret = __delete_appinfo_from_db("package_app_data_control", appid);
2112         if (ret < 0)
2113                 return ret;
2114         ret = __delete_appinfo_from_db("package_app_splash_screen", appid);
2115         if (ret < 0)
2116                 return ret;
2117
2118         return 0;
2119 }
2120
2121 static int __delete_subpkg_from_db(manifest_x *mfx)
2122 {
2123         char query[MAX_QUERY_LEN] = { '\0' };
2124         char *error_message = NULL;
2125
2126         sqlite3_snprintf(MAX_QUERY_LEN, query, "SELECT app_id FROM package_app_info WHERE package=%Q", mfx->package);
2127         if (SQLITE_OK !=
2128             sqlite3_exec(pkgmgr_parser_db, query, __delete_subpkg_list_cb, NULL, &error_message)) {
2129                 _LOGE("Don't execute query = %s error message = %s\n", query,
2130                        error_message);
2131                 sqlite3_free(error_message);
2132                 return -1;
2133         }
2134         sqlite3_free(error_message);
2135
2136         return 0;
2137 }
2138
2139 static int __delete_manifest_info_from_db(manifest_x *mfx, uid_t uid)
2140 {
2141         char query[MAX_QUERY_LEN] = { '\0' };
2142         int ret = -1;
2143         GList *tmp;
2144         application_x *app;
2145         /*Delete from cert table*/
2146         ret = pkgmgrinfo_delete_certinfo(mfx->package);
2147         if (ret) {
2148                 _LOGD("Cert Info  DB Delete Failed\n");
2149                 return -1;
2150         }
2151
2152         /*Delete from Package Info DB*/
2153         sqlite3_snprintf(MAX_QUERY_LEN, query,
2154                  "DELETE FROM package_info WHERE package=%Q", mfx->package);
2155         ret = __exec_query(query);
2156         if (ret == -1) {
2157                 _LOGD("Package Info DB Delete Failed\n");
2158                 return -1;
2159         }
2160         memset(query, '\0', MAX_QUERY_LEN);
2161
2162         /*Delete from Package Localized Info*/
2163         sqlite3_snprintf(MAX_QUERY_LEN, query,
2164                  "DELETE FROM package_localized_info WHERE package=%Q", mfx->package);
2165         ret = __exec_query(query);
2166         if (ret == -1) {
2167                 _LOGD("Package Localized Info DB Delete Failed\n");
2168                 return -1;
2169         }
2170
2171         /*Delete from Package Privilege Info*/
2172         sqlite3_snprintf(MAX_QUERY_LEN, query,
2173                  "DELETE FROM package_privilege_info WHERE package=%Q", mfx->package);
2174         ret = __exec_query(query);
2175         if (ret == -1) {
2176                 _LOGD("Package Privilege Info DB Delete Failed\n");
2177                 return -1;
2178         }
2179
2180         for (tmp = mfx->application; tmp; tmp = tmp->next) {
2181                 app = (application_x *)tmp->data;
2182                 if (app == NULL)
2183                         continue;
2184                 ret = __delete_appinfo_from_db("package_app_info", app->appid);
2185                 if (ret < 0)
2186                         return ret;
2187                 ret = __delete_appinfo_from_db("package_app_localized_info", app->appid);
2188                 if (ret < 0)
2189                         return ret;
2190                 ret = __delete_appinfo_from_db("package_app_icon_section_info", app->appid);
2191                 if (ret < 0)
2192                         return ret;
2193                 ret = __delete_appinfo_from_db("package_app_image_info", app->appid);
2194                 if (ret < 0)
2195                         return ret;
2196                 ret = __delete_appinfo_from_db("package_app_app_control", app->appid);
2197                 if (ret < 0)
2198                         return ret;
2199                 ret = __delete_appinfo_from_db("package_app_app_category", app->appid);
2200                 if (ret < 0)
2201                         return ret;
2202                 ret = __delete_appinfo_from_db("package_app_app_metadata", app->appid);
2203                 if (ret < 0)
2204                         return ret;
2205                 ret = __delete_appinfo_from_db("package_app_app_permission", app->appid);
2206                 if (ret < 0)
2207                         return ret;
2208                 ret = __delete_appinfo_from_db("package_app_share_allowed", app->appid);
2209                 if (ret < 0)
2210                         return ret;
2211                 ret = __delete_appinfo_from_db("package_app_share_request", app->appid);
2212                 if (ret < 0)
2213                         return ret;
2214                 ret = __delete_appinfo_from_db("package_app_data_control", app->appid);
2215                 if (ret < 0)
2216                         return ret;
2217                 ret = __delete_appinfo_from_db("package_app_splash_screen", app->appid);
2218                 if (ret < 0)
2219                         return ret;
2220         }
2221
2222         /* if main package has sub pkg, delete sub pkg data*/
2223         __delete_subpkg_from_db(mfx);
2224
2225         return 0;
2226 }
2227
2228 static int __disable_app(const char *appid)
2229 {
2230         int ret = -1;
2231         char query[MAX_QUERY_LEN] = {'\0'};
2232         sqlite3_snprintf(MAX_QUERY_LEN, query,
2233                         "UPDATE package_app_info SET app_disable='true' WHERE app_id=%Q",
2234                         appid);
2235         ret = __exec_query(query);
2236         if (ret == -1)
2237                 _LOGD("Insert global app disable failed\n");
2238
2239         return ret;
2240 }
2241
2242 static int __enable_app(const char *appid)
2243 {
2244         int ret = -1;
2245         char query[MAX_QUERY_LEN] = {'\0'};
2246         sqlite3_snprintf(MAX_QUERY_LEN, query,
2247                         "UPDATE package_app_info SET app_disable='false' WHERE app_id=%Q",
2248                         appid);
2249         ret = __exec_query(query);
2250         if (ret == -1)
2251                 _LOGD("Insert global app disable failed\n");
2252
2253         return ret;
2254 }
2255
2256 static int __check_appinfo_for_uid_table(const char *appid, uid_t uid)
2257 {
2258         int ret = -1;
2259         char query[MAX_QUERY_LEN] = { '\0', };
2260         sqlite3_stmt *stmt;
2261         const char *val = NULL;
2262
2263         if (appid == NULL)
2264                 return -1;
2265
2266         sqlite3_snprintf(MAX_QUERY_LEN, query,
2267                         "SELECT COUNT(*) FROM "
2268                         "package_app_info_for_uid WHERE app_id=%Q "
2269                         "AND uid=%d", appid, (int)uid);
2270
2271         ret = sqlite3_prepare_v2(pkgmgr_parser_db, query, strlen(query), &stmt, NULL);
2272         if (ret != SQLITE_OK) {
2273                 LOGE("prepare failed: %s", sqlite3_errmsg(pkgmgr_parser_db));
2274                 return PMINFO_R_ERROR;
2275         }
2276
2277         if (sqlite3_step(stmt) != SQLITE_ROW) {
2278                 LOGE("failed to step");
2279                 sqlite3_finalize(stmt);
2280                 return PMINFO_R_ERROR;
2281         }
2282
2283         val = (const char *)sqlite3_column_text(stmt, 0);
2284         ret = atoi(val);
2285         sqlite3_finalize(stmt);
2286
2287         return ret;
2288 }
2289
2290 static int __disable_global_app_for_user(const char *appid, uid_t uid)
2291 {
2292         int ret = -1;
2293         char query[MAX_QUERY_LEN] = { '\0', };
2294
2295         ret = __check_appinfo_for_uid_table(appid, uid);
2296         if (ret < 0) {
2297                 _LOGE("Failed to check package_app_info_for_uid with appid[%s], uid[%d]",
2298                                 appid, (int)uid);
2299                 return -1;
2300         } else if (ret == 0) {
2301                 sqlite3_snprintf(MAX_QUERY_LEN, query, "INSERT INTO "
2302                                 "package_app_info_for_uid(app_id, uid, is_disabled, is_splash_screen_enabled) "
2303                                 "VALUES(%Q, %d, 'true', "
2304                                 "(SELECT app_splash_screen_display FROM package_app_info WHERE appid='%Q'))",
2305                                 appid, (int)uid, appid);
2306         } else {
2307                 sqlite3_snprintf(MAX_QUERY_LEN, query, "UPDATE "
2308                                 "package_app_info_for_uid SET is_disabled='true' "
2309                                 "WHERE app_id=%Q AND uid=%d", appid, (int)uid);
2310         }
2311
2312         ret = __exec_query(query);
2313         if (ret == -1)
2314                 _LOGD("Add global app disable info failed\n");
2315
2316         return ret;
2317 }
2318
2319 static int __enable_global_app_for_user(const char *appid, uid_t uid)
2320 {
2321         int ret = -1;
2322         char query[MAX_QUERY_LEN] = {'\0'};
2323
2324         ret = __check_appinfo_for_uid_table(appid, uid);
2325         if (ret < 0) {
2326                 _LOGE("Failed to check package_app_info_for_uid with appid[%s], uid[%d]",
2327                                 appid, (int)uid);
2328                 return -1;
2329         } else if (ret > 0) {
2330                 sqlite3_snprintf(MAX_QUERY_LEN, query,
2331                                 "UPDATE package_app_info_for_uid SET "
2332                                 "is_disabled='false' WHERE app_id=%Q AND "
2333                                 "uid=%d", appid, (int)uid);
2334         }
2335
2336         ret = __exec_query(query);
2337         if (ret == -1)
2338                 _LOGD("Remove global app disable info failed\n");
2339
2340         return ret;
2341 }
2342
2343 static int __update_global_app_splash_screen_for_user(const char *appid,
2344                 uid_t uid, int flag)
2345 {
2346         int ret = -1;
2347         char query[MAX_QUERY_LEN] = { '\0', };
2348
2349         ret = __check_appinfo_for_uid_table(appid, uid);
2350         if (ret < 0) {
2351                 _LOGE("Failed to check package_app_info_for_uid with appid[%s], uid[%d]",
2352                                 appid, (int)uid);
2353                 return -1;
2354         } else if (ret == 0) {
2355                 sqlite3_snprintf(MAX_QUERY_LEN, query, "INSERT INTO "
2356                                 "package_app_info_for_uid(app_id, uid, is_splash_screen_enabled) "
2357                                 "VALUES(%Q, %d, %Q)", appid, (int)uid,
2358                                 flag ? "true" : "false");
2359         } else {
2360                 sqlite3_snprintf(MAX_QUERY_LEN, query,
2361                                 "UPDATE package_app_info_for_uid SET "
2362                                 "is_splash_screen_enabled=%Q WHERE app_id=%Q AND "
2363                                 "uid=%d", flag ? "true" : "false", appid, (int)uid);
2364         }
2365
2366         ret = __exec_query(query);
2367         if (ret == -1)
2368                 _LOGD("update global app splash screen info failed\n");
2369
2370         return ret;
2371 }
2372
2373 static int __disable_app_splash_screen(const char *appid)
2374 {
2375         int ret;
2376         char query[MAX_QUERY_LEN] = {'\0'};
2377
2378         sqlite3_snprintf(MAX_QUERY_LEN, query,
2379                         "UPDATE package_app_info SET app_splash_screen_display='false' WHERE app_id=%Q",
2380                         appid);
2381         ret = __exec_query(query);
2382         if (ret == -1)
2383                 _LOGD("Failed to update app_palsh_screen_display");
2384
2385         return ret;
2386 }
2387
2388 static int __enable_app_splash_screen(const char *appid)
2389 {
2390         int ret;
2391         char query[MAX_QUERY_LEN] = {'\0'};
2392
2393         sqlite3_snprintf(MAX_QUERY_LEN, query,
2394                         "UPDATE package_app_info SET app_splash_screen_display='true' WHERE app_id=%Q",
2395                         appid);
2396         ret = __exec_query(query);
2397         if (ret == -1)
2398                 _LOGD("Failed to update app_splash_screen_display");
2399
2400         return ret;
2401 }
2402
2403 API int pkgmgr_parser_initialize_db(uid_t uid)
2404 {
2405         int ret = -1;
2406         int i;
2407         char query[MAX_QUERY_LEN];
2408         static const char *columns[] = {
2409                 "author_root_cert", "author_im_cert", "author_signer_cert",
2410                 "dist_root_cert", "dist_im_cert", "dist_signer_cert",
2411                 "dist2_root_cert", "dist2_im_cert", "dist2_signer_cert",
2412                 NULL};
2413
2414         /*Manifest DB*/
2415         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_INFO);
2416         if (ret == -1) {
2417                 _LOGD("package info DB initialization failed\n");
2418                 return ret;
2419         }
2420         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO);
2421         if (ret == -1) {
2422                 _LOGD("package localized info DB initialization failed\n");
2423                 return ret;
2424         }
2425         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO);
2426         if (ret == -1) {
2427                 _LOGD("package app app privilege DB initialization failed\n");
2428                 return ret;
2429         }
2430         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_INFO);
2431         if (ret == -1) {
2432                 _LOGD("package app info DB initialization failed\n");
2433                 return ret;
2434         }
2435         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO);
2436         if (ret == -1) {
2437                 _LOGD("package app localized info DB initialization failed\n");
2438                 return ret;
2439         }
2440         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO);
2441         if (ret == -1) {
2442                 _LOGD("package app icon localized info DB initialization failed\n");
2443                 return ret;
2444         }
2445         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO);
2446         if (ret == -1) {
2447                 _LOGD("package app image info DB initialization failed\n");
2448                 return ret;
2449         }
2450         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL);
2451         if (ret == -1) {
2452                 _LOGD("package app app control DB initialization failed\n");
2453                 return ret;
2454         }
2455         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY);
2456         if (ret == -1) {
2457                 _LOGD("package app app category DB initialization failed\n");
2458                 return ret;
2459         }
2460         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA);
2461         if (ret == -1) {
2462                 _LOGD("package app app category DB initialization failed\n");
2463                 return ret;
2464         }
2465         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION);
2466         if (ret == -1) {
2467                 _LOGD("package app app permission DB initialization failed\n");
2468                 return ret;
2469         }
2470         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED);
2471         if (ret == -1) {
2472                 _LOGD("package app share allowed DB initialization failed\n");
2473                 return ret;
2474         }
2475         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST);
2476         if (ret == -1) {
2477                 _LOGD("package app share request DB initialization failed\n");
2478                 return ret;
2479         }
2480         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_DATA_CONTROL);
2481         if (ret == -1) {
2482                 _LOGD("package app data control DB initialization failed\n");
2483                 return ret;
2484         }
2485
2486         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_INFO_FOR_UID);
2487         if (ret == -1) {
2488                 _LOGD("package_app_info_for_uid for user DB initialization failed\n");
2489                 return ret;
2490         }
2491
2492         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SPLASH_SCREEN);
2493         if (ret == -1) {
2494                 _LOGD("package app splash screen DB initialization failed\n");
2495                 return ret;
2496         }
2497
2498         /* Trigger package_app_info_for_uid */
2499         ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TRIGGER_UPDATE_PACKAGE_APP_INFO_FOR_UID);
2500         if (ret == -1) {
2501                 _LOGD("package app info for uid DB initialization failed\n");
2502                 return ret;
2503         }
2504
2505         /*Cert DB*/
2506         /* TODO: refactor this code */
2507         ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INFO);
2508         if (ret == -1) {
2509                 _LOGD("package cert info DB initialization failed\n");
2510                 return ret;
2511         }
2512         ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO);
2513         if (ret == -1) {
2514                 _LOGD("package cert index info DB initialization failed\n");
2515                 return ret;
2516         }
2517         ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TRIGGER_DELETE_CERT_INFO);
2518         if (ret == -1) {
2519                 _LOGD("package cert info DB initialization failed\n");
2520                 return ret;
2521         }
2522         ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TRIGGER_UPDATE_CERT_INDEX_INFO);
2523         if (ret == -1) {
2524                 _LOGD("package cert index info DB initialization failed\n");
2525                 return ret;
2526         }
2527         for (i = 0; columns[i] != NULL; i++) {
2528                 snprintf(query, sizeof(query),
2529                                 QUERY_CREATE_TRIGGER_UPDATE_CERT_INFO_FORMAT,
2530                                 columns[i], columns[i], columns[i]);
2531                 ret = __initialize_db(pkgmgr_cert_db, query);
2532                 if (ret == -1) {
2533                         _LOGD("package cert index info DB initialization failed\n");
2534                         return ret;
2535                 }
2536         }
2537
2538         if( 0 != __parserdb_change_perm(getUserPkgCertDBPathUID(GLOBAL_USER), GLOBAL_USER)) {
2539                 _LOGD("Failed to change cert db permission\n");
2540         }
2541         if( 0 != __parserdb_change_perm(getUserPkgParserDBPathUID(uid), uid)) {
2542                 _LOGD("Failed to change parser db permission\n");
2543         }
2544
2545         return 0;
2546 }
2547
2548 static int __parserdb_change_perm(const char *db_file, uid_t uid)
2549 {
2550         char buf[BUFSIZE];
2551         char pwuid_buf[1024];
2552         char journal_file[BUFSIZE];
2553         int fd;
2554         struct stat sb;
2555         char *files[3];
2556         int ret, i;
2557         struct passwd userinfo, *result = NULL;
2558         files[0] = (char *)db_file;
2559         files[1] = journal_file;
2560         files[2] = NULL;
2561         mode_t mode;
2562
2563         if (db_file == NULL)
2564                 return -1;
2565
2566         if (getuid() != OWNER_ROOT) //At this time we should be root to apply this
2567                 return 0;
2568         snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
2569         if (uid == OWNER_ROOT)
2570                 uid = GLOBAL_USER;
2571         ret = getpwuid_r(uid, &userinfo, pwuid_buf, sizeof(pwuid_buf), &result);
2572         if (ret != 0 || result == NULL) {
2573                 _LOGE("FAIL: user %d doesn't exist", uid);
2574                 return -1;
2575         }
2576         snprintf(journal_file, sizeof(journal_file), "%s%s", db_file, "-journal");
2577
2578         for (i = 0; files[i]; i++) {
2579                 fd = open(files[i], O_RDONLY);
2580                 if (fd == -1) {
2581                         if (strerror_r(errno, buf, sizeof(buf)))
2582                                 strncpy(buf, "", BUFSIZE - 1);
2583                         _LOGD("FAIL : open %s : %s", files[i], buf);
2584                         return -1;
2585                 }
2586                 ret = fstat(fd, &sb);
2587                 if (ret == -1) {
2588                         if (strerror_r(errno, buf, sizeof(buf)))
2589                                 strncpy(buf, "", BUFSIZE - 1);
2590                         _LOGD("FAIL : fstat %s : %s", files[i], buf);
2591                         close(fd);
2592                         return -1;
2593                 }
2594                 if (S_ISLNK(sb.st_mode)) {
2595                         _LOGE("FAIL : %s is symlink!", files[i]);
2596                         close(fd);
2597                         return -1;
2598                 }
2599                 ret = fchown(fd, uid, userinfo.pw_gid);
2600                 if (ret == -1) {
2601                         if (strerror_r(errno, buf, sizeof(buf)))
2602                                 strncpy(buf, "", BUFSIZE - 1);
2603                         _LOGD("FAIL : fchown %s %d.%d : %s", files[i], uid,
2604                                         userinfo.pw_gid, buf);
2605                         close(fd);
2606                         return -1;
2607                 }
2608
2609                 mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH;
2610                 if (!strcmp(db_file, getUserPkgCertDBPathUID(GLOBAL_USER)))
2611                         mode |= S_IWOTH;
2612                 ret = fchmod(fd, mode);
2613                 if (ret == -1) {
2614                         if (strerror_r(errno, buf, sizeof(buf)))
2615                                 strncpy(buf, "", BUFSIZE - 1);
2616                         _LOGD("FAIL : fchmod %s 0664 : %s", files[i], buf);
2617                         close(fd);
2618                         return -1;
2619                 }
2620                 close(fd);
2621                 SET_SMACK_LABEL(files[i]);
2622         }
2623         return 0;
2624 }
2625
2626 API int pkgmgr_parser_create_and_initialize_db(uid_t uid)
2627 {
2628         int ret;
2629
2630         if (getuid() != OWNER_ROOT) {
2631                 _LOGE("Only root user is allowed");
2632                 return -1;
2633         }
2634
2635         if (access(getUserPkgParserDBPathUID(uid), F_OK) != -1) {
2636                 _LOGE("Manifest db for user %d is already exists", uid);
2637                 return -1;
2638         }
2639
2640         if (access(getUserPkgCertDBPathUID(uid), F_OK) != -1) {
2641                 _LOGE("Cert db for user %d is already exists", uid);
2642                 return -1;
2643         }
2644
2645         ret = pkgmgr_parser_check_and_create_db(uid);
2646         if (ret < 0)
2647                 return -1;
2648         ret = pkgmgr_parser_initialize_db(uid);
2649         if (ret < 0) {
2650                 pkgmgr_parser_close_db();
2651                 return -1;
2652         }
2653         pkgmgr_parser_close_db();
2654
2655         return 0;
2656 }
2657
2658 API int pkgmgr_parser_check_and_create_db(uid_t uid)
2659 {
2660         int ret = -1;
2661         /*Manifest DB*/
2662         ret = __pkgmgr_parser_create_db(&pkgmgr_parser_db, getUserPkgParserDBPathUID(uid));
2663         if (ret) {
2664                 _LOGD("Manifest DB creation Failed\n");
2665                 return -1;
2666         }
2667
2668         /*Cert DB*/
2669         ret = __pkgmgr_parser_create_db(&pkgmgr_cert_db, getUserPkgCertDBPathUID(GLOBAL_USER));
2670         if (ret) {
2671                 _LOGD("Cert DB creation Failed\n");
2672                 return -1;
2673         }
2674         return 0;
2675 }
2676
2677 void pkgmgr_parser_close_db(void)
2678 {
2679         sqlite3_close(pkgmgr_parser_db);
2680         sqlite3_close(pkgmgr_cert_db);
2681 }
2682
2683
2684 API int pkgmgr_parser_insert_manifest_info_in_db(manifest_x *mfx)
2685 {
2686         _LOGD("pkgmgr_parser_insert_manifest_info_in_db\n");
2687         if (mfx == NULL) {
2688                 _LOGD("manifest pointer is NULL\n");
2689                 return -1;
2690         }
2691         int ret = 0;
2692         ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
2693         if (ret == -1) {
2694                 _LOGD("Failed to open DB\n");
2695                 return ret;
2696         }
2697         ret = pkgmgr_parser_initialize_db(GLOBAL_USER);
2698         if (ret == -1)
2699                 goto err;
2700         /*Begin transaction*/
2701         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2702         if (ret != SQLITE_OK) {
2703                 _LOGD("Failed to begin transaction\n");
2704                 ret = -1;
2705                 goto err;
2706         }
2707         _LOGD("Transaction Begin\n");
2708         ret = __insert_manifest_info_in_db(mfx, GLOBAL_USER);
2709         if (ret == -1) {
2710                 _LOGD("Insert into DB failed. Rollback now\n");
2711                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2712                 goto err;
2713         }
2714         /*Commit transaction*/
2715         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2716         if (ret != SQLITE_OK) {
2717                 _LOGD("Failed to commit transaction. Rollback now\n");
2718                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2719                 ret = -1;
2720                 goto err;
2721         }
2722         _LOGD("Transaction Commit and End\n");
2723 err:
2724         pkgmgr_parser_close_db();
2725         return ret;
2726 }
2727
2728 API int pkgmgr_parser_insert_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
2729 {
2730         _LOGD("pkgmgr_parser_insert_manifest_info_in_usr_db\n");
2731         if (mfx == NULL) {
2732                 _LOGD("manifest pointer is NULL\n");
2733                 return -1;
2734         }
2735         int ret = 0;
2736         ret = pkgmgr_parser_check_and_create_db(uid);
2737         if (ret == -1) {
2738                 _LOGD("Failed to open DB\n");
2739                 return ret;
2740         }
2741         ret = pkgmgr_parser_initialize_db(uid);
2742         if (ret == -1)
2743                 goto err;
2744         /*Begin transaction*/
2745         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2746         if (ret != SQLITE_OK) {
2747                 _LOGD("Failed to begin transaction\n");
2748                 ret = -1;
2749                 goto err;
2750         }
2751         _LOGD("Transaction Begin\n");
2752         ret = __insert_manifest_info_in_db(mfx, uid);
2753         if (ret == -1) {
2754                 _LOGD("Insert into DB failed. Rollback now\n");
2755                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2756                 goto err;
2757         }
2758         /*Commit transaction*/
2759         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2760         if (ret != SQLITE_OK) {
2761                 _LOGD("Failed to commit transaction. Rollback now\n");
2762                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2763                 ret = -1;
2764                 goto err;
2765         }
2766         _LOGD("Transaction Commit and End\n");
2767 err:
2768         pkgmgr_parser_close_db();
2769         return ret;
2770 }
2771
2772 API int pkgmgr_parser_update_manifest_info_in_usr_db(manifest_x *mfx, uid_t uid)
2773 {
2774         if (mfx == NULL) {
2775                 _LOGD("manifest pointer is NULL\n");
2776                 return -1;
2777         }
2778         int ret = 0;
2779         ret = pkgmgr_parser_check_and_create_db(uid);
2780         if (ret == -1) {
2781                 _LOGD("Failed to open DB\n");
2782                 return ret;
2783         }
2784         ret = pkgmgr_parser_initialize_db(uid);
2785         if (ret == -1)
2786                 goto err;
2787         /*Preserve guest mode visibility*/
2788         __preserve_guestmode_visibility_value( mfx);
2789         /*Begin transaction*/
2790         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2791         if (ret != SQLITE_OK) {
2792                 _LOGD("Failed to begin transaction\n");
2793                 ret = -1;
2794                 goto err;
2795         }
2796         _LOGD("Transaction Begin\n");
2797         ret = __delete_manifest_info_from_db(mfx, uid);
2798         if (ret == -1) {
2799                 _LOGD("Delete from DB failed. Rollback now\n");
2800                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2801                 goto err;
2802         }
2803         ret = __insert_manifest_info_in_db(mfx, uid);
2804         if (ret == -1) {
2805                 _LOGD("Insert into DB failed. Rollback now\n");
2806                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2807                 goto err;
2808         }
2809
2810         /*Commit transaction*/
2811         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2812         if (ret != SQLITE_OK) {
2813                 _LOGD("Failed to commit transaction. Rollback now\n");
2814                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2815                 ret = -1;
2816                 goto err;
2817         }
2818         _LOGD("Transaction Commit and End\n");
2819 err:
2820         pkgmgr_parser_close_db();
2821         return ret;
2822 }
2823
2824 API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
2825 {
2826         return pkgmgr_parser_update_manifest_info_in_usr_db(mfx, _getuid());
2827 }
2828
2829 API int pkgmgr_parser_delete_manifest_info_from_usr_db(manifest_x *mfx, uid_t uid)
2830 {
2831         if (mfx == NULL) {
2832                 _LOGD("manifest pointer is NULL\n");
2833                 return -1;
2834         }
2835         int ret = 0;
2836         ret = pkgmgr_parser_check_and_create_db(uid);
2837         if (ret == -1) {
2838                 _LOGD("Failed to open DB\n");
2839                 return ret;
2840         }
2841         /*Begin transaction*/
2842         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2843         if (ret != SQLITE_OK) {
2844                 _LOGD("Failed to begin transaction\n");
2845                 ret = -1;
2846                 goto err;
2847         }
2848         _LOGD("Transaction Begin\n");
2849         ret = __delete_manifest_info_from_db(mfx, uid);
2850         if (ret == -1) {
2851                 _LOGD("Delete from DB failed. Rollback now\n");
2852                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2853                 goto err;
2854         }
2855         /*Commit transaction*/
2856         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2857         if (ret != SQLITE_OK) {
2858                 _LOGD("Failed to commit transaction, Rollback now\n");
2859                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2860                 ret = -1;
2861                 goto err;
2862         }
2863         _LOGD("Transaction Commit and End\n");
2864 err:
2865         pkgmgr_parser_close_db();
2866         return ret;
2867 }
2868
2869 API int pkgmgr_parser_delete_manifest_info_from_db(manifest_x *mfx)
2870 {
2871         return pkgmgr_parser_delete_manifest_info_from_usr_db(mfx, _getuid());
2872 }
2873
2874 API int pkgmgr_parser_update_global_app_disable_for_uid_info_in_db(const char *appid, uid_t uid, int is_disable)
2875 {
2876         int ret = -1;
2877
2878         ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
2879         if (ret == -1) {
2880                 _LOGD("Failed to open DB\n");
2881                 return ret;
2882         }
2883
2884         /*Begin transaction*/
2885         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2886         if (ret != SQLITE_OK) {
2887                 _LOGD("Failed to begin transaction\n");
2888                 ret = -1;
2889                 goto err;
2890         }
2891         _LOGD("Transaction Begin\n");
2892         if (is_disable)
2893                 ret = __disable_global_app_for_user(appid, uid);
2894         else
2895                 ret = __enable_global_app_for_user(appid, uid);
2896         if (ret == -1) {
2897                 _LOGD("__update_global_app_disable_condition_in_db failed. Rollback now\n");
2898                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2899                 goto err;
2900         }
2901         /*Commit transaction*/
2902         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2903         if (ret != SQLITE_OK) {
2904                 _LOGD("Failed to commit transaction, Rollback now\n");
2905                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2906                 ret = -1;
2907                 goto err;
2908         }
2909         _LOGD("Transaction Commit and End\n");
2910 err:
2911         pkgmgr_parser_close_db();
2912         return ret;
2913
2914 }
2915
2916 API int pkgmgr_parser_update_app_disable_info_in_db(const char *appid, int is_disable)
2917 {
2918         return pkgmgr_parser_update_app_disable_info_in_usr_db(appid, _getuid(), is_disable);
2919 }
2920
2921 API int pkgmgr_parser_update_app_disable_info_in_usr_db(const char *appid, uid_t uid, int is_disable)
2922 {
2923         int ret = -1;
2924
2925         ret = pkgmgr_parser_check_and_create_db(uid);
2926         if (ret == -1) {
2927                 _LOGD("Failed to open DB\n");
2928                 return ret;
2929         }
2930
2931         /*Begin transaction*/
2932         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2933         if (ret != SQLITE_OK) {
2934                 _LOGD("Failed to begin transaction\n");
2935                 ret = -1;
2936                 goto err;
2937         }
2938         _LOGD("Transaction Begin\n");
2939         if (is_disable)
2940                 ret = __disable_app(appid);
2941         else
2942                 ret = __enable_app(appid);
2943         if (ret == -1) {
2944                 _LOGD("__update_app_disable_condition_in_db failed. Rollback now\n");
2945                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2946                 goto err;
2947         }
2948         /*Commit transaction*/
2949         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2950         if (ret != SQLITE_OK) {
2951                 _LOGD("Failed to commit transaction, Rollback now\n");
2952                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2953                 ret = -1;
2954                 goto err;
2955         }
2956         _LOGD("Transaction Commit and End\n");
2957 err:
2958         pkgmgr_parser_close_db();
2959         return ret;
2960
2961 }
2962
2963 API int pkgmgr_parser_update_global_app_splash_screen_display_info_in_usr_db(const char *appid, uid_t uid, int flag)
2964 {
2965         int ret = -1;
2966
2967         if (appid == NULL) {
2968                 _LOGD("Invalid parameter");
2969                 return -1;
2970         }
2971
2972         ret = pkgmgr_parser_check_and_create_db(GLOBAL_USER);
2973         if (ret == -1) {
2974                 _LOGD("Failed to open DB\n");
2975                 return ret;
2976         }
2977
2978         /* Begin transaction */
2979         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2980         if (ret != SQLITE_OK) {
2981                 _LOGD("Failed to begin transaction\n");
2982                 ret = -1;
2983                 goto err;
2984         }
2985         _LOGD("Transaction Begin\n");
2986
2987         ret = __update_global_app_splash_screen_for_user(appid, uid, flag);
2988         if (ret == -1) {
2989                 _LOGD("__update_splash_screen_disable_condition_in_db failed. Rollback now\n");
2990                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2991                 goto err;
2992         }
2993         /* Commit transaction */
2994         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2995         if (ret != SQLITE_OK) {
2996                 _LOGD("Failed to commit transaction, Rollback now\n");
2997                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2998                 ret = -1;
2999                 goto err;
3000         }
3001         _LOGD("Transaction Commit and End\n");
3002 err:
3003         pkgmgr_parser_close_db();
3004         return ret;
3005 }
3006
3007 API int pkgmgr_parser_update_app_splash_screen_display_info_in_db(const char *appid, int flag)
3008 {
3009         return pkgmgr_parser_update_app_splash_screen_display_info_in_usr_db(appid, _getuid(), flag);
3010 }
3011
3012 API int pkgmgr_parser_update_app_splash_screen_display_info_in_usr_db(const char *appid, uid_t uid, int flag)
3013 {
3014         int ret;
3015
3016         if (appid == NULL) {
3017                 _LOGD("Invalid parameter");
3018                 return -1;
3019         }
3020
3021         ret = pkgmgr_parser_check_and_create_db(uid);
3022         if (ret == -1) {
3023                 _LOGD("Failed to open DB");
3024                 return -1;
3025         }
3026
3027         /* Begin transaction */
3028         ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
3029         if (ret != SQLITE_OK) {
3030                 _LOGD("Failed to begin transaction");
3031                 ret = -1;
3032                 goto err;
3033         }
3034         _LOGD("Transaction Begin");
3035
3036         if (flag)
3037                 ret = __enable_app_splash_screen(appid);
3038         else
3039                 ret = __disable_app_splash_screen(appid);
3040         if (ret == -1) {
3041                 _LOGD("__update_app_splash_screen_condition_in_db. Rollback now");
3042                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
3043                 goto err;
3044         }
3045         /* Commit transaction */
3046         ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
3047         if (ret != SQLITE_OK) {
3048                 _LOGD("Failed to commit transaction, Rollback now");
3049                 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
3050                 ret = -1;
3051                 goto err;
3052         }
3053         _LOGD("Transaction Commit and End");
3054
3055 err:
3056         pkgmgr_parser_close_db();
3057         return ret;
3058 }
3059