Initialize Tizen 2.3
[framework/web/wrt-installer.git] / src_wearable / jobs / widget_uninstall / task_smack.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_smack.cpp
18  * @author  Piotr Kozbial (p.kozbial@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for installer task smack
21  */
22
23 #include <widget_uninstall/task_smack.h>
24 #include <widget_uninstall/job_widget_uninstall.h>
25 #include <widget_uninstall/uninstaller_context.h>
26 #include <dpl/optional_typedefs.h>
27 #include <installer_log.h>
28 #include <privilege-control.h>
29
30 namespace Jobs {
31 namespace WidgetUninstall {
32 TaskSmack::TaskSmack(UninstallerContext& context) :
33     DPL::TaskDecl<TaskSmack>(this),
34     m_context(context)
35 {
36     AddStep(&TaskSmack::StartStep);
37     AddStep(&TaskSmack::Step);
38     AddStep(&TaskSmack::EndStep);
39 }
40
41 void TaskSmack::Step()
42 {
43     _D("------------------------> SMACK: Jobs::WidgetUninstall::TaskSmack::Step()");
44
45     if (PC_OPERATION_SUCCESS != perm_begin()) {
46         _E("failure in smack transaction begin");
47         return;
48     }
49
50     const char* pkgId = m_context.tzPkgid.c_str();
51     if (PC_OPERATION_SUCCESS != perm_app_revoke_permissions(pkgId)) {
52         _E("failure in revoking smack permissions");
53     }
54
55     if (PC_OPERATION_SUCCESS != perm_app_uninstall(pkgId)) {
56         _E("failure in removing smack rules file");
57     }
58
59     if (PC_OPERATION_SUCCESS != perm_end()) {
60         _E("failure in smack transaction end");
61         return;
62     }
63 }
64
65 void TaskSmack::StartStep()
66 {
67     LOGD("--------- <TaskSmack> : START ----------");
68 }
69
70 void TaskSmack::EndStep()
71 {
72     m_context.job->UpdateProgress(
73         UninstallerContext::UNINSTALL_SMACK_DISABLE,
74         "Widget SMACK Disabled");
75
76     LOGD("--------- <TaskSmack> : END ----------");
77 }
78 } //namespace WidgetUninstall
79 } //namespace Jobs