tizen beta release
[framework/web/wrt-installer.git] / src / 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/uninstaller_context.h>
25 #include <dpl/optional_typedefs.h>
26 #ifdef WRT_SMACK_ENABLED
27 #include <privilege-control.h>
28 #endif
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::Step);
37 }
38
39 void TaskSmack::Step()
40 {
41     LogInfo("------------------------> SMACK: Jobs::WidgetUninstall::TaskSmack::Step()");
42 #ifdef WRT_SMACK_ENABLED
43     try {
44       WrtDB::WidgetDAOReadOnly dao(m_context.widgetHandle);
45       DPL::OptionalString pkgName = dao.getPkgname();
46       Assert(!pkgName.IsNull() && "widget doesn't have a pkg name");
47       const char *devCap = "";
48       int result = handle_access_control_conf_forWAC(
49                        DPL::ToUTF8String(*pkgName).c_str(),
50                        NULL,
51                        OPERATION_UNINSTALL);
52       Assert(result==PC_OPERATION_SUCCESS && "access control setup failed");
53     } catch (WrtDB::WidgetDAOReadOnly::Exception) {
54       Assert(false && "can't access widget data");
55     }
56 #endif
57 }
58
59 } //namespace WidgetUninstall
60 } //namespace Jobs