4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
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>
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
26 #include <sys/types.h>
31 #include "pkgmgr-info.h"
32 #include "pkgmgr_parser_internal.h"
33 #include "pkgmgr_parser_db.h"
35 #define PKGMGR_PARSER_DB_FILE "/opt/dbspace/.pkgmgr_parser.db"
36 #define PKGMGR_CERT_DB_FILE "/opt/dbspace/.pkgmgr_cert.db"
37 #define MAX_QUERY_LEN 4096
38 sqlite3 *pkgmgr_parser_db;
39 sqlite3 *pkgmgr_cert_db;
40 GList *pkglocale = NULL;
41 GList *applocale = NULL;
42 GList *appicon = NULL;
43 GList *appimage = NULL;
46 #define QUERY_CREATE_TABLE_PACKAGE_INFO "create table if not exists package_info " \
47 "(package text primary key not null, " \
48 "package_type text DEFAULT 'rpm', " \
49 "package_version text, " \
50 "install_location text, " \
51 "package_size text, " \
52 "package_removable text DEFAULT 'true', " \
53 "package_preload text DEFAULT 'false', " \
54 "package_readonly text DEFAULT 'false', " \
55 "package_update text DEFAULT 'false', " \
56 "package_appsetting text DEFAULT 'false', " \
57 "package_nodisplay text DEFAULT 'false', " \
58 "author_name text, " \
59 "author_email text, " \
61 "installed_time text," \
62 "installed_storage text," \
63 "storeclient_id text," \
68 #define QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO "create table if not exists package_localized_info " \
69 "(package text not null, " \
70 "package_locale text DEFAULT 'No Locale', " \
71 "package_label text, " \
72 "package_icon text, " \
73 "package_description text, " \
74 "package_license text, " \
76 "PRIMARY KEY(package, package_locale), " \
77 "FOREIGN KEY(package) " \
78 "REFERENCES package_info(package) " \
81 #define QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO "create table if not exists package_privilege_info " \
82 "(package text not null, " \
83 "privilege text not null, " \
84 "PRIMARY KEY(package, privilege) " \
85 "FOREIGN KEY(package) " \
86 "REFERENCES package_info(package) " \
89 #define QUERY_CREATE_TABLE_PACKAGE_APP_INFO "create table if not exists package_app_info " \
90 "(app_id text primary key not null, " \
91 "app_component text, " \
93 "app_nodisplay text DEFAULT 'false', " \
95 "app_onboot text DEFAULT 'false', " \
96 "app_multiple text DEFAULT 'false', " \
97 "app_autorestart text DEFAULT 'false', " \
98 "app_taskmanage text DEFAULT 'false', " \
99 "app_enabled text DEFAULT 'true', " \
100 "app_hwacceleration text DEFAULT 'use-system-setting', " \
101 "app_mainapp text, " \
102 "app_recentimage text, " \
103 "app_launchcondition text, " \
104 "app_indicatordisplay text DEFAULT 'true', " \
105 "app_portraitimg text, " \
106 "app_landscapeimg text, " \
107 "app_guestmodevisibility text DEFAULT 'true', " \
108 "app_permissiontype text DEFAULT 'normal', " \
109 "package text not null, " \
110 "FOREIGN KEY(package) " \
111 "REFERENCES package_info(package) " \
114 #define QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO "create table if not exists package_app_localized_info " \
115 "(app_id text not null, " \
116 "app_locale text DEFAULT 'No Locale', " \
119 "PRIMARY KEY(app_id,app_locale) " \
120 "FOREIGN KEY(app_id) " \
121 "REFERENCES package_app_info(app_id) " \
124 #define QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO "create table if not exists package_app_icon_section_info " \
125 "(app_id text not null, " \
127 "app_icon_section text, " \
128 "app_icon_resolution text, " \
129 "PRIMARY KEY(app_id,app_icon_section,app_icon_resolution) " \
130 "FOREIGN KEY(app_id) " \
131 "REFERENCES package_app_info(app_id) " \
134 #define QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO "create table if not exists package_app_image_info " \
135 "(app_id text not null, " \
136 "app_locale text DEFAULT 'No Locale', " \
137 "app_image_section text, " \
139 "PRIMARY KEY(app_id,app_image_section) " \
140 "FOREIGN KEY(app_id) " \
141 "REFERENCES package_app_info(app_id) " \
144 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL "create table if not exists package_app_app_control " \
145 "(app_id text not null, " \
146 "operation text not null, " \
147 "uri_scheme text, " \
149 "subapp_name text, " \
150 "PRIMARY KEY(app_id,operation,uri_scheme,mime_type,subapp_name) " \
151 "FOREIGN KEY(app_id) " \
152 "REFERENCES package_app_info(app_id) " \
155 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_SVC "create table if not exists package_app_app_svc " \
156 "(app_id text not null, " \
157 "operation text not null, " \
158 "uri_scheme text, " \
160 "subapp_name text, " \
161 "PRIMARY KEY(app_id,operation,uri_scheme,mime_type,subapp_name) " \
162 "FOREIGN KEY(app_id) " \
163 "REFERENCES package_app_info(app_id) " \
166 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY "create table if not exists package_app_app_category " \
167 "(app_id text not null, " \
168 "category text not null, " \
169 "PRIMARY KEY(app_id,category) " \
170 "FOREIGN KEY(app_id) " \
171 "REFERENCES package_app_info(app_id) " \
174 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA "create table if not exists package_app_app_metadata " \
175 "(app_id text not null, " \
176 "md_key text not null, " \
177 "md_value text not null, " \
178 "PRIMARY KEY(app_id, md_key, md_value) " \
179 "FOREIGN KEY(app_id) " \
180 "REFERENCES package_app_info(app_id) " \
183 #define QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION "create table if not exists package_app_app_permission " \
184 "(app_id text not null, " \
185 "pm_type text not null, " \
186 "pm_value text not null, " \
187 "PRIMARY KEY(app_id, pm_type, pm_value) " \
188 "FOREIGN KEY(app_id) " \
189 "REFERENCES package_app_info(app_id) " \
192 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED "create table if not exists package_app_share_allowed " \
193 "(app_id text not null, " \
194 "data_share_path text not null, " \
195 "data_share_allowed text not null, " \
196 "PRIMARY KEY(app_id,data_share_path,data_share_allowed) " \
197 "FOREIGN KEY(app_id) " \
198 "REFERENCES package_app_info(app_id) " \
201 #define QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST "create table if not exists package_app_share_request " \
202 "(app_id text not null, " \
203 "data_share_request text not null, " \
204 "PRIMARY KEY(app_id,data_share_request) " \
205 "FOREIGN KEY(app_id) " \
206 "REFERENCES package_app_info(app_id) " \
209 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO "create table if not exists package_cert_index_info " \
210 "(cert_info text not null, " \
211 "cert_id integer, " \
212 "cert_ref_count integer, " \
213 "PRIMARY KEY(cert_id)) "
215 #define QUERY_CREATE_TABLE_PACKAGE_CERT_INFO "create table if not exists package_cert_info " \
216 "(package text not null, " \
217 "author_root_cert integer, " \
218 "author_im_cert integer, " \
219 "author_signer_cert integer, " \
220 "dist_root_cert integer, " \
221 "dist_im_cert integer, " \
222 "dist_signer_cert integer, " \
223 "dist2_root_cert integer, " \
224 "dist2_im_cert integer, " \
225 "dist2_signer_cert integer, " \
226 "PRIMARY KEY(package)) "
228 static int __insert_uiapplication_info(manifest_x *mfx);
229 static int __insert_serviceapplication_info(manifest_x *mfx);
230 static int __insert_uiapplication_appsvc_info(manifest_x *mfx);
231 static int __insert_serviceapplication_appsvc_info(manifest_x *mfx);
232 static int __insert_uiapplication_appcategory_info(manifest_x *mfx);
233 static int __insert_serviceapplication_appcategory_info(manifest_x *mfx);
234 static int __insert_uiapplication_appcontrol_info(manifest_x *mfx);
235 static int __insert_serviceapplication_appmetadata_info(manifest_x *mfx);
236 static int __insert_uiapplication_appmetadata_info(manifest_x *mfx);
237 static int __insert_serviceapplication_appcontrol_info(manifest_x *mfx);
238 static int __insert_uiapplication_share_allowed_info(manifest_x *mfx);
239 static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx);
240 static int __insert_uiapplication_share_request_info(manifest_x *mfx);
241 static int __insert_serviceapplication_share_request_info(manifest_x *mfx);
242 static void __insert_serviceapplication_locale_info(gpointer data, gpointer userdata);
243 static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata);
244 static void __insert_pkglocale_info(gpointer data, gpointer userdata);
245 static int __insert_manifest_info_in_db(manifest_x *mfx);
246 static int __delete_manifest_info_from_db(manifest_x *mfx);
247 static int __delete_appinfo_from_db(char *db_table, const char *appid);
248 static int __initialize_db(sqlite3 *db_handle, const char *db_query);
249 static int __exec_query(char *query);
250 static void __extract_data(gpointer data, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath,
251 char **label, char **license, char **icon, char **description, char **author);
252 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata);
253 static void __trimfunc1(gpointer data, gpointer userdata);
254 static void __trimfunc2(gpointer data, gpointer userdata);
255 static GList *__create_locale_list(GList *locale, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath);
256 static void __preserve_guestmode_visibility_value(manifest_x *mfx);
257 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname);
258 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path);
260 static int __pkgmgr_parser_create_db(sqlite3 **db_handle, const char *db_path)
264 if (access(db_path, F_OK) == 0) {
266 db_util_open(db_path, &handle,
267 DB_UTIL_REGISTER_HOOK_METHOD);
268 if (ret != SQLITE_OK) {
269 DBG("connect db [%s] failed!\n",
276 DBG("%s DB does not exists. Create one!!\n", db_path);
279 db_util_open(db_path, &handle,
280 DB_UTIL_REGISTER_HOOK_METHOD);
282 if (ret != SQLITE_OK) {
283 DBG("connect db [%s] failed!\n", db_path);
290 static int __guestmode_visibility_cb(void *data, int ncols, char **coltxt, char **colname)
292 manifest_x *mfx = (manifest_x *)data;
296 uiapplication_x *uiapp = NULL;
297 for(i = 0; i < ncols; i++)
299 uiapp = mfx->uiapplication;
300 if (strcmp(colname[i], "app_id") == 0) {
302 appid = strdup(coltxt[i]);
303 } else if (strcmp(colname[i], "app_guestmodevisibility") == 0) {
305 status = strdup(coltxt[i]);
309 DBG("app id is NULL\n");
312 /*update guest mode visibility*/
313 for (; uiapp != NULL; uiapp = uiapp->next) {
314 if (strcmp(uiapp->appid, appid) == 0) {
315 free((void *)uiapp->guestmode_visibility);
316 uiapp->guestmode_visibility = strdup(status);
332 static void __preserve_guestmode_visibility_value(manifest_x *mfx)
334 char *error_message = NULL;
335 char query[MAX_QUERY_LEN] = {'\0'};
336 snprintf(query, MAX_QUERY_LEN - 1, "select app_id, app_guestmodevisibility from package_app_info where package='%s'", mfx->package);
338 sqlite3_exec(pkgmgr_parser_db, query,
339 __guestmode_visibility_cb, (void *)mfx, &error_message)) {
340 DBG("Don't execute query = %s error message = %s\n",
341 query, error_message);
342 sqlite3_free(error_message);
347 static int __initialize_db(sqlite3 *db_handle, const char *db_query)
349 char *error_message = NULL;
351 sqlite3_exec(db_handle, db_query,
352 NULL, NULL, &error_message)) {
353 DBG("Don't execute query = %s error message = %s\n",
354 db_query, error_message);
355 sqlite3_free(error_message);
358 sqlite3_free(error_message);
362 static int __exec_query(char *query)
364 char *error_message = NULL;
366 sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
367 DBG("Don't execute query = %s error message = %s\n", query,
369 sqlite3_free(error_message);
372 sqlite3_free(error_message);
376 static int __exec_query_no_msg(char *query)
378 char *error_message = NULL;
380 sqlite3_exec(pkgmgr_parser_db, query, NULL, NULL, &error_message)) {
381 sqlite3_free(error_message);
384 sqlite3_free(error_message);
388 static GList *__create_locale_list(GList *locale, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath)
394 locale = g_list_insert_sorted_with_data(locale, (gpointer)lbl->lang, __comparefunc, NULL);
400 locale = g_list_insert_sorted_with_data(locale, (gpointer)lcn->lang, __comparefunc, NULL);
406 locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->lang, __comparefunc, NULL);
412 locale = g_list_insert_sorted_with_data(locale, (gpointer)dcn->lang, __comparefunc, NULL);
418 locale = g_list_insert_sorted_with_data(locale, (gpointer)ath->lang, __comparefunc, NULL);
425 static GList *__create_icon_list(GList *locale, icon_x *icn)
430 locale = g_list_insert_sorted_with_data(locale, (gpointer)icn->section, __comparefunc, NULL);
436 static GList *__create_image_list(GList *locale, image_x *image)
441 locale = g_list_insert_sorted_with_data(locale, (gpointer)image->section, __comparefunc, NULL);
447 static void __printfunc(gpointer data, gpointer userdata)
449 DBG("%s ", (char*)data);
452 static void __trimfunc1(gpointer data, gpointer userdata)
455 if (strcmp((char *)data, prev) == 0) {
456 pkglocale = g_list_remove(pkglocale, data);
464 static void __trimfunc2(gpointer data, gpointer userdata)
467 if (strcmp((char *)data, prev) == 0) {
468 applocale = g_list_remove(applocale, data);
476 static void __trimfunc3(gpointer data, gpointer userdata)
479 if (strcmp((char *)data, prev) == 0) {
480 appicon = g_list_remove(appicon, data);
488 static void __trimfunc4(gpointer data, gpointer userdata)
491 if (strcmp((char *)data, prev) == 0) {
492 appimage = g_list_remove(appimage, data);
500 static gint __comparefunc(gconstpointer a, gconstpointer b, gpointer userdata)
502 if (a == NULL || b == NULL)
504 if (strcmp((char*)a, (char*)b) == 0)
506 if (strcmp((char*)a, (char*)b) < 0)
508 if (strcmp((char*)a, (char*)b) > 0)
513 static void __extract_data(gpointer data, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath,
514 char **label, char **license, char **icon, char **description, char **author)
519 if (strcmp(lbl->lang, (char *)data) == 0) {
520 *label = (char*)lbl->text;
529 if (strcmp(lcn->lang, (char *)data) == 0) {
530 *license = (char*)lcn->text;
539 if (strcmp(icn->lang, (char *)data) == 0) {
540 *icon = (char*)icn->text;
549 if (strcmp(dcn->lang, (char *)data) == 0) {
550 *description = (char*)dcn->text;
559 if (strcmp(ath->lang, (char *)data) == 0) {
560 *author = (char*)ath->text;
569 static void __extract_icon_data(gpointer data, icon_x *icn, char **icon, char **resolution)
574 if (strcmp(icn->section, (char *)data) == 0) {
575 *icon = (char*)icn->text;
576 *resolution = (char*)icn->resolution;
584 static void __extract_image_data(gpointer data, image_x*image, char **lang, char **img)
588 if (image->section) {
589 if (strcmp(image->section, (char *)data) == 0) {
590 *lang = (char*)image->lang;
591 *img = (char*)image->text;
599 static void __insert_pkglocale_info(gpointer data, gpointer userdata)
604 char *description = NULL;
605 char *license = NULL;
607 char query[MAX_QUERY_LEN] = {'\0'};
609 manifest_x *mfx = (manifest_x *)userdata;
610 label_x *lbl = mfx->label;
611 license_x *lcn = mfx->license;
612 icon_x *icn = mfx->icon;
613 description_x *dcn = mfx->description;
614 author_x *ath = mfx->author;
616 __extract_data(data, lbl, lcn, icn, dcn, ath, &label, &license, &icon, &description, &author);
617 if (!label && !description && !icon && !license && !author)
619 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
620 "package_label, package_icon, package_description, package_license, package_author) values " \
621 "('%q', '%q', '%q', '%q', '%q', '%q', '%q')", mfx->package, (char*)data,
622 label, icon, description, license, author);
623 ret = __exec_query(query);
625 DBG("Package Localized Info DB Insert failed\n");
628 static void __insert_uiapplication_locale_info(gpointer data, gpointer userdata)
633 char query[MAX_QUERY_LEN] = {'\0'};
635 manifest_x *mfx = (manifest_x *)userdata;
636 uiapplication_x *up = (uiapplication_x*)userdata;
637 label_x *lbl = up->label;
638 icon_x *icn = up->icon;
640 __extract_data(data, lbl, NULL, icn, NULL, NULL, &label, NULL, &icon, NULL, NULL);
643 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_localized_info(app_id, app_locale, " \
644 "app_label, app_icon) values " \
645 "('%q', '%q', '%q', '%q')", up->appid, (char*)data,
647 ret = __exec_query(query);
649 DBG("Package UiApp Localized Info DB Insert failed\n");
651 /*insert ui app locale info to pkg locale to get mainapp data */
652 if (strcasecmp(up->mainapp, "true")==0) {
653 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_localized_info(package, package_locale, " \
654 "package_label, package_icon, package_description, package_license, package_author) values " \
655 "('%q', '%q', '%q', '%q', '%q', '%q', '%q')", mfx->package, (char*)data,
656 label, icon, NULL, NULL, NULL);
657 ret = __exec_query_no_msg(query);
659 DBG("Package locale info inserted before.\n");
663 static void __insert_uiapplication_icon_section_info(gpointer data, gpointer userdata)
667 char *resolution = NULL;
668 char query[MAX_QUERY_LEN] = {'\0'};
670 uiapplication_x *up = (uiapplication_x*)userdata;
671 icon_x *icn = up->icon;
673 __extract_icon_data(data, icn, &icon, &resolution);
674 if (!icon && !resolution)
676 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_icon_section_info(app_id, " \
677 "app_icon, app_icon_section, app_icon_resolution) values " \
678 "('%q', '%q', '%q', '%q')", up->appid,
679 icon, (char*)data, resolution);
681 ret = __exec_query(query);
683 DBG("Package UiApp Localized Info DB Insert failed\n");
687 static void __insert_uiapplication_image_info(gpointer data, gpointer userdata)
692 char query[MAX_QUERY_LEN] = {'\0'};
694 uiapplication_x *up = (uiapplication_x*)userdata;
695 image_x *image = up->image;
697 __extract_image_data(data, image, &lang, &img);
700 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_image_info(app_id, app_locale, " \
701 "app_image_section, app_image) values " \
702 "('%q', '%q', '%q', '%q')", up->appid, lang, (char*)data, img);
704 ret = __exec_query(query);
706 DBG("Package UiApp image Info DB Insert failed\n");
711 static void __insert_serviceapplication_locale_info(gpointer data, gpointer userdata)
716 char query[MAX_QUERY_LEN] = {'\0'};
718 serviceapplication_x *sp = (serviceapplication_x*)userdata;
719 label_x *lbl = sp->label;
720 icon_x *icn = sp->icon;
722 __extract_data(data, lbl, NULL, icn, NULL, NULL, &label, NULL, &icon, NULL, NULL);
725 sqlite3_snprintf(MAX_QUERY_LEN, query, "insert into package_app_localized_info(app_id, app_locale, " \
726 "app_label, app_icon) values " \
727 "('%q', '%q', '%q', '%q')", sp->appid, (char*)data,
729 ret = __exec_query(query);
731 DBG("Package ServiceApp Localized Info DB Insert failed\n");
734 static int __insert_ui_mainapp_info(manifest_x *mfx)
736 uiapplication_x *up = mfx->uiapplication;
738 char query[MAX_QUERY_LEN] = {'\0'};
741 snprintf(query, MAX_QUERY_LEN,
742 "update package_app_info set app_mainapp='%s' where app_id='%s'", up->mainapp, up->appid);
744 ret = __exec_query(query);
746 DBG("Package UiApp Info DB Insert Failed\n");
749 if (strcasecmp(up->mainapp, "True")==0)
750 mfx->mainapp_id = strdup(up->appid);
753 memset(query, '\0', MAX_QUERY_LEN);
756 if (mfx->mainapp_id == NULL){
757 if (mfx->uiapplication
758 && mfx->uiapplication->appid) {
759 snprintf(query, MAX_QUERY_LEN,
760 "update package_app_info set app_mainapp='true' where app_id='%s'", mfx->uiapplication->appid);
761 } else if (mfx->serviceapplication
762 && mfx->serviceapplication->appid) {
763 snprintf(query, MAX_QUERY_LEN,
764 "update package_app_info set app_mainapp='true' where app_id='%s'", mfx->serviceapplication->appid);
766 DBG("Not valid appid\n");
770 ret = __exec_query(query);
772 DBG("Package UiApp Info DB Insert Failed\n");
775 if (mfx->uiapplication && mfx->uiapplication->appid)
776 mfx->mainapp_id = strdup(mfx->uiapplication->appid);
777 else if (mfx->serviceapplication && mfx->serviceapplication->appid)
778 mfx->mainapp_id = strdup(mfx->serviceapplication->appid);
782 memset(query, '\0', MAX_QUERY_LEN);
783 snprintf(query, MAX_QUERY_LEN,
784 "update package_info set mainapp_id='%s' where package='%s'", mfx->mainapp_id, mfx->package);
785 ret = __exec_query(query);
787 DBG("Package Info DB update Failed\n");
793 /* _PRODUCT_LAUNCHING_ENHANCED_
794 * up->indicatordisplay, up->portraitimg, up->landscapeimg, up->guestmode_appstatus
796 static int __insert_uiapplication_info(manifest_x *mfx)
798 uiapplication_x *up = mfx->uiapplication;
800 char query[MAX_QUERY_LEN] = {'\0'};
803 snprintf(query, MAX_QUERY_LEN,
804 "insert into package_app_info(app_id, app_component, app_exec, app_nodisplay, app_type, app_onboot, " \
805 "app_multiple, app_autorestart, app_taskmanage, app_enabled, app_hwacceleration, app_mainapp , app_recentimage, " \
806 "app_launchcondition, app_indicatordisplay, app_portraitimg, app_landscapeimg, app_guestmodevisibility, app_permissiontype, package) " \
807 "values('%s', '%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
808 up->appid, "uiapp", up->exec, up->nodisplay, up->type, "\0", up->multiple,
809 "\0", up->taskmanage, up->enabled, up->hwacceleration,up->mainapp, up->recentimage,
810 up->launchcondition, up->indicatordisplay, up->portraitimg, up->landscapeimg, up->guestmode_visibility, up->permission_type, mfx->package);
811 ret = __exec_query(query);
813 DBG("Package UiApp Info DB Insert Failed\n");
817 memset(query, '\0', MAX_QUERY_LEN);
822 static int __insert_uiapplication_appcategory_info(manifest_x *mfx)
824 uiapplication_x *up = mfx->uiapplication;
825 category_x *ct = NULL;
827 char query[MAX_QUERY_LEN] = {'\0'};
833 snprintf(query, MAX_QUERY_LEN,
834 "insert into package_app_app_category(app_id, category) " \
835 "values('%s','%s')",\
836 up->appid, ct->name);
837 ret = __exec_query(query);
839 DBG("Package UiApp Category Info DB Insert Failed\n");
843 memset(query, '\0', MAX_QUERY_LEN);
850 static int __insert_uiapplication_appmetadata_info(manifest_x *mfx)
852 uiapplication_x *up = mfx->uiapplication;
853 metadata_x *md = NULL;
855 char query[MAX_QUERY_LEN] = {'\0'};
862 snprintf(query, MAX_QUERY_LEN,
863 "insert into package_app_app_metadata(app_id, md_key, md_value) " \
864 "values('%s','%s', '%s')",\
865 up->appid, md->key, md->value);
866 ret = __exec_query(query);
868 DBG("Package UiApp Metadata Info DB Insert Failed\n");
873 memset(query, '\0', MAX_QUERY_LEN);
880 static int __insert_uiapplication_apppermission_info(manifest_x *mfx)
882 uiapplication_x *up = mfx->uiapplication;
883 permission_x *pm = NULL;
885 char query[MAX_QUERY_LEN] = {'\0'};
891 snprintf(query, MAX_QUERY_LEN,
892 "insert into package_app_app_permission(app_id, pm_type, pm_value) " \
893 "values('%s','%s', '%s')",\
894 up->appid, pm->type, pm->value);
895 ret = __exec_query(query);
897 DBG("Package UiApp permission Info DB Insert Failed\n");
901 memset(query, '\0', MAX_QUERY_LEN);
908 static int __insert_uiapplication_appcontrol_info(manifest_x *mfx)
910 uiapplication_x *up = mfx->uiapplication;
911 appcontrol_x *acontrol = NULL;
912 operation_x *op = NULL;
915 subapp_x *sub = NULL;
917 char query[MAX_QUERY_LEN] = {'\0'};
918 const char *operation = NULL;
919 const char *mime = NULL;
920 const char *uri = NULL;
921 const char *subapp = NULL;
924 acontrol = up->appcontrol;
925 while(acontrol != NULL)
927 op = acontrol->operation;
931 operation = op->name;
938 sub = acontrol->subapp;
948 snprintf(query, MAX_QUERY_LEN,
949 "insert into package_app_app_control(app_id, operation, uri_scheme, mime_type, subapp_name) " \
950 "values('%s', '%s', '%s', '%s', '%s')",\
951 up->appid, operation, uri, mime, subapp);
953 ret = __exec_query(query);
955 DBG("Package UiApp AppSvc DB Insert Failed\n");
958 memset(query, '\0', MAX_QUERY_LEN);
975 acontrol = acontrol->next;
982 static int __insert_uiapplication_appsvc_info(manifest_x *mfx)
984 uiapplication_x *up = mfx->uiapplication;
985 appsvc_x *asvc = NULL;
986 operation_x *op = NULL;
989 subapp_x *sub = NULL;
991 char query[MAX_QUERY_LEN] = {'\0'};
992 const char *operation = NULL;
993 const char *mime = NULL;
994 const char *uri = NULL;
995 const char *subapp = NULL;
1001 op = asvc->operation;
1005 operation = op->name;
1022 snprintf(query, MAX_QUERY_LEN,
1023 "insert into package_app_app_svc(app_id, operation, uri_scheme, mime_type, subapp_name) " \
1024 "values('%s', '%s', '%s', '%s', '%s')",\
1025 up->appid, operation, uri, mime, subapp);
1027 ret = __exec_query(query);
1029 DBG("Package UiApp AppSvc DB Insert Failed\n");
1032 memset(query, '\0', MAX_QUERY_LEN);
1036 } while(ui != NULL);
1040 }while(sub != NULL);
1056 static int __insert_uiapplication_share_request_info(manifest_x *mfx)
1058 uiapplication_x *up = mfx->uiapplication;
1059 datashare_x *ds = NULL;
1060 request_x *rq = NULL;
1062 char query[MAX_QUERY_LEN] = {'\0'};
1071 snprintf(query, MAX_QUERY_LEN,
1072 "insert into package_app_share_request(app_id, data_share_request) " \
1073 "values('%s', '%s')",\
1074 up->appid, rq->text);
1075 ret = __exec_query(query);
1077 DBG("Package UiApp Share Request DB Insert Failed\n");
1080 memset(query, '\0', MAX_QUERY_LEN);
1090 static int __insert_uiapplication_share_allowed_info(manifest_x *mfx)
1092 uiapplication_x *up = mfx->uiapplication;
1093 datashare_x *ds = NULL;
1094 define_x *df = NULL;
1095 allowed_x *al = NULL;
1097 char query[MAX_QUERY_LEN] = {'\0'};
1109 snprintf(query, MAX_QUERY_LEN,
1110 "insert into package_app_share_allowed(app_id, data_share_path, data_share_allowed) " \
1111 "values('%s', '%s', '%s')",\
1112 up->appid, df->path, al->text);
1113 ret = __exec_query(query);
1115 DBG("Package UiApp Share Allowed DB Insert Failed\n");
1118 memset(query, '\0', MAX_QUERY_LEN);
1130 static int __insert_serviceapplication_info(manifest_x *mfx)
1132 serviceapplication_x *sp = mfx->serviceapplication;
1134 char query[MAX_QUERY_LEN] = {'\0'};
1137 snprintf(query, MAX_QUERY_LEN,
1138 "insert into package_app_info(app_id, app_component, app_exec, app_type, app_onboot, " \
1139 "app_multiple, app_autorestart, app_enabled, app_permissiontype, package) " \
1140 "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
1141 sp->appid, "svcapp", sp->exec, sp->type, sp->onboot, "\0",
1142 sp->autorestart, sp->enabled, sp->permission_type, mfx->package);
1143 ret = __exec_query(query);
1145 DBG("Package ServiceApp Info DB Insert Failed\n");
1149 memset(query, '\0', MAX_QUERY_LEN);
1154 static int __insert_serviceapplication_appcategory_info(manifest_x *mfx)
1156 serviceapplication_x *sp = mfx->serviceapplication;
1157 category_x *ct = NULL;
1159 char query[MAX_QUERY_LEN] = {'\0'};
1165 snprintf(query, MAX_QUERY_LEN,
1166 "insert into package_app_app_category(app_id, category) " \
1167 "values('%s','%s')",\
1168 sp->appid, ct->name);
1169 ret = __exec_query(query);
1171 DBG("Package ServiceApp Category Info DB Insert Failed\n");
1175 memset(query, '\0', MAX_QUERY_LEN);
1182 static int __insert_serviceapplication_appmetadata_info(manifest_x *mfx)
1184 serviceapplication_x *sp = mfx->serviceapplication;
1185 metadata_x *md = NULL;
1187 char query[MAX_QUERY_LEN] = {'\0'};
1194 snprintf(query, MAX_QUERY_LEN,
1195 "insert into package_app_app_metadata(app_id, md_key, md_value) " \
1196 "values('%s','%s', '%s')",\
1197 sp->appid, md->key, md->value);
1198 ret = __exec_query(query);
1200 DBG("Package ServiceApp Metadata Info DB Insert Failed\n");
1205 memset(query, '\0', MAX_QUERY_LEN);
1212 static int __insert_serviceapplication_apppermission_info(manifest_x *mfx)
1214 serviceapplication_x *sp = mfx->serviceapplication;
1215 permission_x *pm = NULL;
1217 char query[MAX_QUERY_LEN] = {'\0'};
1220 pm = sp->permission;
1223 snprintf(query, MAX_QUERY_LEN,
1224 "insert into package_app_app_permission(app_id, pm_type, pm_value) " \
1225 "values('%s','%s', '%s')",\
1226 sp->appid, pm->type, pm->value);
1227 ret = __exec_query(query);
1229 DBG("Package ServiceApp permission Info DB Insert Failed\n");
1233 memset(query, '\0', MAX_QUERY_LEN);
1240 static int __insert_serviceapplication_appcontrol_info(manifest_x *mfx)
1242 serviceapplication_x *sp = mfx->serviceapplication;
1243 appcontrol_x *acontrol = NULL;
1245 char query[MAX_QUERY_LEN] = {'\0'};
1246 operation_x *op = NULL;
1249 subapp_x *sub = NULL;
1250 const char *operation = NULL;
1251 const char *mime = NULL;
1252 const char *uri = NULL;
1253 const char *subapp = NULL;
1256 acontrol = sp->appcontrol;
1257 while(acontrol != NULL)
1259 op = acontrol->operation;
1263 operation = op->name;
1264 mi = acontrol->mime;
1269 sub = acontrol->subapp;
1279 snprintf(query, MAX_QUERY_LEN,
1280 "insert into package_app_app_control(app_id, operation, uri_scheme, mime_type,subapp_name) " \
1281 "values('%s', '%s', '%s', '%s', '%s')",\
1282 sp->appid, operation, uri, mime, subapp);
1283 ret = __exec_query(query);
1285 DBG("Package UiApp AppSvc DB Insert Failed\n");
1288 memset(query, '\0', MAX_QUERY_LEN);
1292 } while(ui != NULL);
1296 }while(sub != NULL);
1305 acontrol = acontrol->next;
1312 static int __insert_serviceapplication_appsvc_info(manifest_x *mfx)
1314 serviceapplication_x *sp = mfx->serviceapplication;
1315 appsvc_x *asvc = NULL;
1317 char query[MAX_QUERY_LEN] = {'\0'};
1318 operation_x *op = NULL;
1321 subapp_x *sub = NULL;
1322 const char *operation = NULL;
1323 const char *mime = NULL;
1324 const char *uri = NULL;
1325 const char *subapp = NULL;
1331 op = asvc->operation;
1335 operation = op->name;
1351 snprintf(query, MAX_QUERY_LEN,
1352 "insert into package_app_app_svc(app_id, operation, uri_scheme, mime_type, subapp_name) " \
1353 "values('%s', '%s', '%s', '%s', '%s')",\
1354 sp->appid, operation, uri, mime, subapp);
1355 ret = __exec_query(query);
1357 DBG("Package UiApp AppSvc DB Insert Failed\n");
1360 memset(query, '\0', MAX_QUERY_LEN);
1364 } while(ui != NULL);
1368 }while(sub != NULL);
1386 static int __insert_serviceapplication_share_request_info(manifest_x *mfx)
1388 serviceapplication_x *sp = mfx->serviceapplication;
1389 datashare_x *ds = NULL;
1390 request_x *rq = NULL;
1392 char query[MAX_QUERY_LEN] = {'\0'};
1401 snprintf(query, MAX_QUERY_LEN,
1402 "insert into package_app_share_request(app_id, data_share_request) " \
1403 "values('%s', '%s')",\
1404 sp->appid, rq->text);
1405 ret = __exec_query(query);
1407 DBG("Package ServiceApp Share Request DB Insert Failed\n");
1410 memset(query, '\0', MAX_QUERY_LEN);
1422 static int __insert_serviceapplication_share_allowed_info(manifest_x *mfx)
1424 serviceapplication_x *sp = mfx->serviceapplication;
1425 datashare_x *ds = NULL;
1426 define_x *df = NULL;
1427 allowed_x *al = NULL;
1429 char query[MAX_QUERY_LEN] = {'\0'};
1441 snprintf(query, MAX_QUERY_LEN,
1442 "insert into package_app_share_allowed(app_id, data_share_path, data_share_allowed) " \
1443 "values('%s', '%s', '%s')",\
1444 sp->appid, df->path, al->text);
1445 ret = __exec_query(query);
1447 DBG("Package App Share Allowed DB Insert Failed\n");
1450 memset(query, '\0', MAX_QUERY_LEN);
1462 static int __insert_manifest_info_in_db(manifest_x *mfx)
1464 label_x *lbl = mfx->label;
1465 license_x *lcn = mfx->license;
1466 icon_x *icn = mfx->icon;
1467 description_x *dcn = mfx->description;
1468 author_x *ath = mfx->author;
1469 uiapplication_x *up = mfx->uiapplication;
1470 uiapplication_x *up_icn = mfx->uiapplication;
1471 uiapplication_x *up_image = mfx->uiapplication;
1472 serviceapplication_x *sp = mfx->serviceapplication;
1473 privileges_x *pvs = NULL;
1474 privilege_x *pv = NULL;
1475 char query[MAX_QUERY_LEN] = { '\0' };
1476 char root[MAX_QUERY_LEN] = { '\0' };
1480 const char *auth_name = NULL;
1481 const char *auth_email = NULL;
1482 const char *auth_href = NULL;
1485 auth_name = ath->text;
1487 auth_email = ath->email;
1489 auth_href = ath->href;
1492 /*Insert in the package_info DB*/
1494 type = strdup(mfx->type);
1496 type = strdup("rpm");
1497 /*Insert in the package_info DB*/
1499 path = strdup(mfx->root_path);
1501 if (strcmp(type,"rpm")==0)
1502 snprintf(root, MAX_QUERY_LEN - 1, "/usr/apps/%s", mfx->package);
1504 snprintf(root, MAX_QUERY_LEN - 1, "/opt/usr/apps/%s", mfx->package);
1506 path = strdup(root);
1508 snprintf(query, MAX_QUERY_LEN,
1509 "insert into package_info(package, package_type, package_version, install_location, package_size, " \
1510 "package_removable, package_preload, package_readonly, package_update, package_appsetting, package_nodisplay, author_name, author_email, author_href, installed_time, installed_storage, storeclient_id, mainapp_id, package_url, root_path) " \
1511 "values('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",\
1512 mfx->package, type, mfx->version, mfx->installlocation, mfx->package_size, mfx->removable, mfx->preload,
1513 mfx->readonly, mfx->update, mfx->appsetting, mfx->nodisplay_setting, auth_name, auth_email, auth_href, mfx->installed_time, mfx->installed_storage, mfx->storeclient_id, mfx->mainapp_id, mfx->package_url, path);
1514 ret = __exec_query(query);
1516 DBG("Package Info DB Insert Failed\n");
1536 /*Insert in the package_privilege_info DB*/
1537 pvs = mfx->privileges;
1538 while (pvs != NULL) {
1539 pv = pvs->privilege;
1540 while (pv != NULL) {
1541 memset(query, '\0', MAX_QUERY_LEN);
1542 snprintf(query, MAX_QUERY_LEN,
1543 "insert into package_privilege_info(package, privilege) " \
1544 "values('%s','%s')",\
1545 mfx->package, pv->text);
1546 ret = __exec_query(query);
1548 DBG("Package Privilege Info DB Insert Failed\n");
1556 ret = __insert_ui_mainapp_info(mfx);
1560 /*Insert the package locale and app locale info */
1561 pkglocale = __create_locale_list(pkglocale, lbl, lcn, icn, dcn, ath);
1562 g_list_foreach(pkglocale, __trimfunc1, NULL);
1567 applocale = __create_locale_list(applocale, up->label, NULL, up->icon, NULL, NULL);
1572 applocale = __create_locale_list(applocale, sp->label, NULL, sp->icon, NULL, NULL);
1575 g_list_foreach(applocale, __trimfunc2, NULL);
1578 /*Insert the app icon info */
1579 while(up_icn != NULL)
1581 appicon = __create_icon_list(appicon, up_icn->icon);
1582 up_icn = up_icn->next;
1584 g_list_foreach(appicon, __trimfunc3, NULL);
1587 /*Insert the image info */
1588 while(up_image != NULL)
1590 appimage = __create_image_list(appimage, up_image->image);
1591 up_image = up_image->next;
1593 g_list_foreach(appimage, __trimfunc4, NULL);
1596 /*g_list_foreach(pkglocale, __printfunc, NULL);*/
1598 /*g_list_foreach(applocale, __printfunc, NULL);*/
1600 /*package locale info*/
1601 g_list_foreach(pkglocale, __insert_pkglocale_info, (gpointer)mfx);
1602 /*native app locale info*/
1603 up = mfx->uiapplication;
1606 g_list_foreach(applocale, __insert_uiapplication_locale_info, (gpointer)up);
1609 /*agent app locale info*/
1610 sp = mfx->serviceapplication;
1613 g_list_foreach(applocale, __insert_serviceapplication_locale_info, (gpointer)sp);
1617 /*app icon locale info*/
1618 up_icn = mfx->uiapplication;
1619 while(up_icn != NULL)
1621 g_list_foreach(appicon, __insert_uiapplication_icon_section_info, (gpointer)up_icn);
1622 up_icn = up_icn->next;
1626 up_image = mfx->uiapplication;
1627 while(up_image != NULL)
1629 g_list_foreach(appimage, __insert_uiapplication_image_info, (gpointer)up_image);
1630 up_image = up_image->next;
1633 g_list_free(pkglocale);
1635 g_list_free(applocale);
1637 g_list_free(appicon);
1639 g_list_free(appimage);
1643 /*Insert in the package_app_info DB*/
1644 ret = __insert_uiapplication_info(mfx);
1647 ret = __insert_serviceapplication_info(mfx);
1651 /*Insert in the package_app_app_control DB*/
1652 ret = __insert_uiapplication_appcontrol_info(mfx);
1655 ret = __insert_serviceapplication_appcontrol_info(mfx);
1659 /*Insert in the package_app_app_category DB*/
1660 ret = __insert_uiapplication_appcategory_info(mfx);
1663 ret = __insert_serviceapplication_appcategory_info(mfx);
1667 /*Insert in the package_app_app_metadata DB*/
1668 ret = __insert_uiapplication_appmetadata_info(mfx);
1671 ret = __insert_serviceapplication_appmetadata_info(mfx);
1675 /*Insert in the package_app_app_permission DB*/
1676 ret = __insert_uiapplication_apppermission_info(mfx);
1679 ret = __insert_serviceapplication_apppermission_info(mfx);
1683 /*Insert in the package_app_app_svc DB*/
1684 ret = __insert_uiapplication_appsvc_info(mfx);
1687 ret = __insert_serviceapplication_appsvc_info(mfx);
1691 /*Insert in the package_app_share_allowed DB*/
1692 ret = __insert_uiapplication_share_allowed_info(mfx);
1695 ret = __insert_serviceapplication_share_allowed_info(mfx);
1699 /*Insert in the package_app_share_request DB*/
1700 ret = __insert_uiapplication_share_request_info(mfx);
1703 ret = __insert_serviceapplication_share_request_info(mfx);
1711 static int __delete_appinfo_from_db(char *db_table, const char *appid)
1713 char query[MAX_QUERY_LEN] = { '\0' };
1715 memset(query, '\0', MAX_QUERY_LEN);
1716 snprintf(query, MAX_QUERY_LEN,
1717 "delete from %s where app_id='%s'", db_table, appid);
1718 ret = __exec_query(query);
1720 DBG("DB Deletion from table (%s) Failed\n", db_table);
1726 static int __delete_manifest_info_from_db(manifest_x *mfx)
1728 char query[MAX_QUERY_LEN] = { '\0' };
1730 uiapplication_x *up = mfx->uiapplication;
1731 serviceapplication_x *sp = mfx->serviceapplication;
1732 /*Delete from cert table*/
1733 ret = pkgmgrinfo_delete_certinfo(mfx->package);
1735 DBG("Cert Info DB Delete Failed\n");
1739 /*Delete from Package Info DB*/
1740 snprintf(query, MAX_QUERY_LEN,
1741 "delete from package_info where package='%s'", mfx->package);
1742 ret = __exec_query(query);
1744 DBG("Package Info DB Delete Failed\n");
1747 memset(query, '\0', MAX_QUERY_LEN);
1749 /*Delete from Package Localized Info*/
1750 snprintf(query, MAX_QUERY_LEN,
1751 "delete from package_localized_info where package='%s'", mfx->package);
1752 ret = __exec_query(query);
1754 DBG("Package Localized Info DB Delete Failed\n");
1758 /*Delete from Package Privilege Info*/
1759 snprintf(query, MAX_QUERY_LEN,
1760 "delete from package_privilege_info where package='%s'", mfx->package);
1761 ret = __exec_query(query);
1763 DBG("Package Privilege Info DB Delete Failed\n");
1767 while (up != NULL) {
1768 ret = __delete_appinfo_from_db("package_app_info", up->appid);
1771 ret = __delete_appinfo_from_db("package_app_localized_info", up->appid);
1774 ret = __delete_appinfo_from_db("package_app_icon_section_info", up->appid);
1777 ret = __delete_appinfo_from_db("package_app_image_info", up->appid);
1780 ret = __delete_appinfo_from_db("package_app_app_svc", up->appid);
1783 ret = __delete_appinfo_from_db("package_app_app_control", up->appid);
1786 ret = __delete_appinfo_from_db("package_app_app_category", up->appid);
1789 ret = __delete_appinfo_from_db("package_app_app_metadata", up->appid);
1792 ret = __delete_appinfo_from_db("package_app_app_permission", up->appid);
1795 ret = __delete_appinfo_from_db("package_app_share_allowed", up->appid);
1798 ret = __delete_appinfo_from_db("package_app_share_request", up->appid);
1804 while (sp != NULL) {
1805 ret = __delete_appinfo_from_db("package_app_info", sp->appid);
1808 ret = __delete_appinfo_from_db("package_app_localized_info", sp->appid);
1811 ret = __delete_appinfo_from_db("package_app_icon_section_info", sp->appid);
1814 ret = __delete_appinfo_from_db("package_app_image_info", sp->appid);
1817 ret = __delete_appinfo_from_db("package_app_app_svc", sp->appid);
1820 ret = __delete_appinfo_from_db("package_app_app_control", sp->appid);
1823 ret = __delete_appinfo_from_db("package_app_app_category", sp->appid);
1826 ret = __delete_appinfo_from_db("package_app_app_metadata", sp->appid);
1829 ret = __delete_appinfo_from_db("package_app_app_permission", sp->appid);
1832 ret = __delete_appinfo_from_db("package_app_share_allowed", sp->appid);
1835 ret = __delete_appinfo_from_db("package_app_share_request", sp->appid);
1844 int pkgmgr_parser_initialize_db()
1848 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_INFO);
1850 DBG("package info DB initialization failed\n");
1853 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_LOCALIZED_INFO);
1855 DBG("package localized info DB initialization failed\n");
1858 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_PRIVILEGE_INFO);
1860 DBG("package app app privilege DB initialization failed\n");
1863 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_INFO);
1865 DBG("package app info DB initialization failed\n");
1868 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_LOCALIZED_INFO);
1870 DBG("package app localized info DB initialization failed\n");
1873 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_ICON_SECTION_INFO);
1875 DBG("package app icon localized info DB initialization failed\n");
1878 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_IMAGE_INFO);
1880 DBG("package app image info DB initialization failed\n");
1883 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CONTROL);
1885 DBG("package app app control DB initialization failed\n");
1888 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_CATEGORY);
1890 DBG("package app app category DB initialization failed\n");
1893 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_METADATA);
1895 DBG("package app app category DB initialization failed\n");
1898 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_PERMISSION);
1900 DBG("package app app permission DB initialization failed\n");
1903 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_APP_SVC);
1905 DBG("package app app svc DB initialization failed\n");
1908 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_ALLOWED);
1910 DBG("package app share allowed DB initialization failed\n");
1913 ret = __initialize_db(pkgmgr_parser_db, QUERY_CREATE_TABLE_PACKAGE_APP_SHARE_REQUEST);
1915 DBG("package app share request DB initialization failed\n");
1919 ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INFO);
1921 DBG("package cert info DB initialization failed\n");
1924 ret = __initialize_db(pkgmgr_cert_db, QUERY_CREATE_TABLE_PACKAGE_CERT_INDEX_INFO);
1926 DBG("package cert index info DB initialization failed\n");
1932 int pkgmgr_parser_check_and_create_db()
1936 ret = __pkgmgr_parser_create_db(&pkgmgr_parser_db, PKGMGR_PARSER_DB_FILE);
1938 DBG("Manifest DB creation Failed\n");
1942 ret = __pkgmgr_parser_create_db(&pkgmgr_cert_db, PKGMGR_CERT_DB_FILE);
1944 DBG("Cert DB creation Failed\n");
1950 API int pkgmgr_parser_insert_manifest_info_in_db(manifest_x *mfx)
1953 DBG("manifest pointer is NULL\n");
1957 ret = pkgmgr_parser_check_and_create_db();
1959 DBG("Failed to open DB\n");
1962 ret = pkgmgr_parser_initialize_db();
1965 /*Begin transaction*/
1966 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
1967 if (ret != SQLITE_OK) {
1968 DBG("Failed to begin transaction\n");
1972 DBG("Transaction Begin\n");
1973 ret = __insert_manifest_info_in_db(mfx);
1975 DBG("Insert into DB failed. Rollback now\n");
1976 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1979 /*Commit transaction*/
1980 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
1981 if (ret != SQLITE_OK) {
1982 DBG("Failed to commit transaction. Rollback now\n");
1983 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
1987 DBG("Transaction Commit and End\n");
1989 sqlite3_close(pkgmgr_parser_db);
1990 sqlite3_close(pkgmgr_cert_db);
1994 API int pkgmgr_parser_update_manifest_info_in_db(manifest_x *mfx)
1997 DBG("manifest pointer is NULL\n");
2001 ret = pkgmgr_parser_check_and_create_db();
2003 DBG("Failed to open DB\n");
2006 ret = pkgmgr_parser_initialize_db();
2009 /*Preserve guest mode visibility*/
2010 __preserve_guestmode_visibility_value( mfx);
2011 /*Begin transaction*/
2012 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2013 if (ret != SQLITE_OK) {
2014 DBG("Failed to begin transaction\n");
2018 DBG("Transaction Begin\n");
2019 ret = __delete_manifest_info_from_db(mfx);
2021 DBG("Delete from DB failed. Rollback now\n");
2022 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2025 ret = __insert_manifest_info_in_db(mfx);
2027 DBG("Insert into DB failed. Rollback now\n");
2028 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2032 /*Commit transaction*/
2033 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2034 if (ret != SQLITE_OK) {
2035 DBG("Failed to commit transaction. Rollback now\n");
2036 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2040 DBG("Transaction Commit and End\n");
2042 sqlite3_close(pkgmgr_parser_db);
2043 sqlite3_close(pkgmgr_cert_db);
2047 API int pkgmgr_parser_delete_manifest_info_from_db(manifest_x *mfx)
2050 DBG("manifest pointer is NULL\n");
2054 ret = pkgmgr_parser_check_and_create_db();
2056 DBG("Failed to open DB\n");
2059 /*Begin transaction*/
2060 ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
2061 if (ret != SQLITE_OK) {
2062 DBG("Failed to begin transaction\n");
2066 DBG("Transaction Begin\n");
2067 ret = __delete_manifest_info_from_db(mfx);
2069 DBG("Delete from DB failed. Rollback now\n");
2070 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2073 /*Commit transaction*/
2074 ret = sqlite3_exec(pkgmgr_parser_db, "COMMIT", NULL, NULL, NULL);
2075 if (ret != SQLITE_OK) {
2076 DBG("Failed to commit transaction, Rollback now\n");
2077 sqlite3_exec(pkgmgr_parser_db, "ROLLBACK", NULL, NULL, NULL);
2081 DBG("Transaction Commit and End\n");
2082 sqlite3_close(pkgmgr_parser_db);
2084 sqlite3_close(pkgmgr_parser_db);
2085 sqlite3_close(pkgmgr_cert_db);