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