[Release] wrt-installer_0.1.9
[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/log/log.h>
26 #include <dpl/optional_typedefs.h>
27 #ifdef WRT_SMACK_ENABLED
28 #include <privilege-control.h>
29 #endif
30
31 namespace Jobs {
32 namespace WidgetUninstall {
33 TaskSmack::TaskSmack(UninstallerContext& context) :
34     DPL::TaskDecl<TaskSmack>(this),
35     m_context(context)
36 {
37     AddStep(&TaskSmack::Step);
38 }
39
40 void TaskSmack::Step()
41 {
42     LogInfo(
43         "------------------------> SMACK: Jobs::WidgetUninstall::TaskSmack::Step()");
44 #ifdef WRT_SMACK_ENABLED
45     try {
46         WrtDB::WidgetDAOReadOnly dao(m_context.widgetConfig.tzAppid);
47         TizenAppId tzAppid = dao.getTizenAppId();
48         int result = handle_access_control_conf_forWAC(
49                 DPL::ToUTF8String(tzAppid).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
57     m_context.job->UpdateProgress(
58         UninstallerContext::INSTALL_SMACK_ENABLE,
59         "Widget SMACK Enabled");
60 #endif
61 }
62 } //namespace WidgetUninstall
63 } //namespace Jobs