75d0fc898bc701c84cb8f22b38be3a906d0412a7
[framework/web/wrt-installer.git] / src / jobs / widget_install / 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_install/task_smack.h>
24 #include <widget_install/widget_install_context.h>
25 #include <widget_install/widget_install_errors.h>
26 #include <widget_install/job_widget_install.h>
27 #include <dpl/foreach.h>
28 #ifdef WRT_SMACK_ENABLED
29 #include <privilege-control.h>
30 #endif
31
32 #include <sstream>
33
34 namespace Jobs {
35 namespace WidgetInstall {
36 TaskSmack::TaskSmack(InstallerContext& context) :
37     DPL::TaskDecl<TaskSmack>(this),
38     m_context(context)
39 {
40     AddStep(&TaskSmack::Step);
41 }
42
43 void TaskSmack::Step()
44 {
45     LogInfo("----------------> SMACK: Jobs::WidgetInstall::TaskSmack::Step()");
46 #ifdef WRT_SMACK_ENABLED
47     std::stringstream devcaps;
48     FOREACH(it, m_context.staticPermittedDevCaps) {
49         if (it->second) {
50             std::string utf8 = DPL::ToUTF8String(it->first);
51             if (it != m_context.staticPermittedDevCaps.begin()) {
52                 devcaps << ",";
53             }
54             devcaps << utf8;
55         }
56     }
57     TizenAppId tzAppid = m_context.widgetConfig.tzAppid;
58     int result = handle_access_control_conf_forWAC(
59             DPL::ToUTF8String(tzAppid).c_str(),
60             devcaps.str().c_str(),
61             OPERATION_INSTALL);
62     Assert(result == PC_OPERATION_SUCCESS && "access control setup failed");
63     m_context.job->UpdateProgress(
64         UninstallerContext::INSTALL_SMACK_ENABLE,
65         "Widget SMACK Enabled");
66 #endif
67 }
68
69 } //namespace WidgetInstall
70 } //namespace Jobs