[Release] wrt-installer_0.1.114
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / task_db_update.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    task_db_update.cpp
18  * @author  Lukasz Wrzosek(l.wrzosek@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for uninstaller task database updating
21  */
22
23 #include <web_provider_livebox_info.h>
24 #include <widget_uninstall/task_db_update.h>
25 #include <widget_uninstall/job_widget_uninstall.h>
26 #include <widget_uninstall/widget_uninstall_errors.h>
27 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
28 #include <ace_api_install.h>
29 #include <dpl/assert.h>
30 #include <ace-common/ace_api_common.h>
31
32 using namespace WrtDB;
33
34 namespace Jobs {
35 namespace WidgetUninstall {
36 TaskDbUpdate::TaskDbUpdate(UninstallerContext& context) :
37     DPL::TaskDecl<TaskDbUpdate>(this),
38     m_context(context)
39 {
40     AddStep(&TaskDbUpdate::StartStep);
41     AddStep(&TaskDbUpdate::StepDbUpdate);
42     AddStep(&TaskDbUpdate::StepLiveboxDBDelete);
43     AddStep(&TaskDbUpdate::EndStep);
44 }
45
46 TaskDbUpdate::~TaskDbUpdate()
47 {}
48
49 void TaskDbUpdate::StepDbUpdate()
50 {
51     Try
52     {
53         //TODO: widget handle should not be used any more
54         ace_unregister_widget(static_cast<ace_widget_handle_t>(
55                                   WidgetDAOReadOnly::getHandle(DPL::
56                                                                    FromUTF8String(
57                                                                    m_context.
58                                                                        tzAppid))));
59         WidgetDAO::unregisterWidget(DPL::FromUTF8String(m_context.tzAppid));
60
61         LogDebug("Unregistered widget successfully!");
62     }
63     Catch(DPL::DB::SqlConnection::Exception::Base)
64     {
65         LogError("Failed to handle StepDbUpdate!");
66         ReThrowMsg(Exceptions::DatabaseFailure,
67                    "Failed to handle StepDbUpdate!");
68     }
69 }
70
71 void TaskDbUpdate::StepLiveboxDBDelete()
72 {
73     int ret =
74         web_provider_livebox_delete_by_app_id(m_context.tzAppid.c_str());
75
76     if (ret < 0) {
77         LogDebug("failed to delete box info");
78     } else {
79         LogDebug("delete box info: " << m_context.tzAppid);
80     }
81 }
82
83 void TaskDbUpdate::StartStep()
84 {
85     LogDebug("--------- <TaskDbUpdate> : START ----------");
86 }
87
88 void TaskDbUpdate::EndStep()
89 {
90     m_context.job->UpdateProgress(
91         UninstallerContext::UNINSTALL_DB_UPDATE,
92         "Widget DB Update Finished");
93
94     LogDebug("--------- <TaskDbUpdate> : END ----------");
95 }
96 } //namespace WidgetUninstall
97 } //namespace Jobs