tizen 2.4 release
[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/optional_typedefs.h>
26 #include <appsvc.h>
27 #include <wrt-commons/custom-handler-dao-ro/CustomHandlerDatabase.h>
28 #include <wrt-commons/custom-handler-dao-rw/custom_handler_dao.h>
29 #include <dpl/log/secure_log.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     CustomHandlerDB::Interface::attachDatabaseRW();
46     FOREACH(it, m_context.tzAppIdList){
47         _D("Removing widget from appsvc");
48         int result = appsvc_unset_defapp(DPL::ToUTF8String(*it).c_str());
49         _D("Result: %d", result);
50
51         CustomHandlerDB::CustomHandlerDAO handlersDao(*it);
52         handlersDao.removeWidgetProtocolHandlers();
53         handlersDao.removeWidgetContentHandlers();
54     }
55     CustomHandlerDB::Interface::detachDatabase();
56 }
57
58 void TaskRemoveCustomHandlers::StartStep()
59 {
60     LOGI("--------- <TaskRemoveCustomHandlers> : START ----------");
61 }
62
63 void TaskRemoveCustomHandlers::EndStep()
64 {
65     LOGI("--------- <TaskRemoveCustomHandlers> : END ----------");
66 }
67 } //namespace WidgetUninstall
68 } //namespace Jobs