[Release] wrt-installer_0.1.114
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / task_remove_custom_handlers.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_remove_custom_handlers.cpp
18  * @author  Przemyslaw Ciezkowski (p.ciezkowski@samsung.com)
19  * @version 1.0
20  * @brief   File for uninstaller - remove custom handlers
21  */
22
23 #include <widget_uninstall/task_remove_custom_handlers.h>
24 #include <widget_uninstall/uninstaller_context.h>
25 #include <dpl/log/log.h>
26 #include <dpl/optional_typedefs.h>
27 #include <appsvc.h>
28 #include <wrt-commons/custom-handler-dao-ro/CustomHandlerDatabase.h>
29 #include <wrt-commons/custom-handler-dao-rw/custom_handler_dao.h>
30
31 namespace Jobs {
32 namespace WidgetUninstall {
33 TaskRemoveCustomHandlers::TaskRemoveCustomHandlers(UninstallerContext& context)
34     :
35     DPL::TaskDecl<TaskRemoveCustomHandlers>(this),
36     m_context(context)
37 {
38     AddStep(&TaskRemoveCustomHandlers::StartStep);
39     AddStep(&TaskRemoveCustomHandlers::Step);
40     AddStep(&TaskRemoveCustomHandlers::EndStep);
41 }
42
43 void TaskRemoveCustomHandlers::Step()
44 {
45     LogDebug("Removing widget from appsvc");
46     int result = appsvc_unset_defapp(m_context.tzAppid.c_str());
47     LogDebug("Result: " << result);
48
49     CustomHandlerDB::Interface::attachDatabaseRW();
50     CustomHandlerDB::CustomHandlerDAO handlersDao(
51         DPL::FromASCIIString(m_context.tzAppid));
52     handlersDao.removeWidgetProtocolHandlers();
53     handlersDao.removeWidgetContentHandlers();
54     CustomHandlerDB::Interface::detachDatabase();
55 }
56
57 void TaskRemoveCustomHandlers::StartStep()
58 {
59     LogDebug("--------- <TaskRemoveCustomHandlers> : START ----------");
60 }
61
62 void TaskRemoveCustomHandlers::EndStep()
63 {
64     LogDebug("--------- <TaskRemoveCustomHandlers> : END ----------");
65 }
66 } //namespace WidgetUninstall
67 } //namespace Jobs