[Release] wrt-installer_0.0.90
[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     DPL::TaskDecl<TaskRemoveCustomHandlers>(this),
35     m_context(context)
36 {
37     AddStep(&TaskRemoveCustomHandlers::Step);
38 }
39
40 void TaskRemoveCustomHandlers::Step()
41 {
42     LogDebug("Removing widget from appsvc");
43     int result = appsvc_unset_defapp(m_context.pkgname.c_str());
44     LogDebug("Result: " << result);
45
46     CustomHandlerDB::Interface::attachDatabaseRW();
47     CustomHandlerDB::CustomHandlerDAO handlersDao(
48             DPL::FromASCIIString(m_context.pkgname));
49     handlersDao.removeWidgetProtocolHandlers();
50     handlersDao.removeWidgetContentHandlers();
51     CustomHandlerDB::Interface::detachDatabase();
52 }
53
54 } //namespace WidgetUninstall
55 } //namespace Jobs