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