Rename invalid WRT_SMACK_LABEL macro to WRT_SMACK_ENABLED
[platform/framework/web/wrt-installer.git] / src / jobs / widget_install / task_smack.h
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.h
18  * @author  Piotr Kozbial (p.kozbial@samsung.com)
19  * @version 1.0
20  * @brief   Header file for installer task smack
21  */
22 #ifndef INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_SMACK_H
23 #define INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_SMACK_H
24
25 #include <dpl/task.h>
26 #include <dpl/event/inter_context_delegate.h>
27
28 #ifdef WRT_SMACK_ENABLED
29 #include <security-manager.h>
30 #endif
31
32 class InstallerContext;
33
34 namespace Jobs {
35 namespace WidgetInstall {
36 class TaskSmack :
37     public DPL::TaskDecl<TaskSmack>,
38     public DPL::Event::ICDelegateSupport<TaskSmack>
39 {
40   private:
41     InstallerContext& m_context;
42
43 #ifdef WRT_SMACK_ENABLED
44     app_inst_req* m_p_req;
45 #endif
46
47     void StepSetInstall();
48     void StepSmackAddUsers();
49     void StepSmackFolderLabeling();
50     void StepSmackPrivilege();
51     void StepInstall();
52     void StepRevokeForUpdate();
53     void StepAbortSmack();
54
55     bool setLabelForSharedDir();
56
57     void StartStep();
58     void EndStep();
59
60   public:
61     TaskSmack(InstallerContext& context);
62 };
63 } //namespace WidgetInstall
64 } //namespace Jobs
65
66 #endif /* INSTALLER_CORE_JOS_WIDGET_INSTALL_TASK_SMACK_H */