tizen beta release
[framework/web/wrt-installer.git] / src / security / security_logic.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  * This class simply redirects the access requests to access control engine.
18  * The aim is to hide access control engine specific details from WRT modules.
19  * It also implements WRT_INTERFACE.h interfaces, so that ACE could access
20  * WRT specific and other information during the decision making.
21  *
22  * @file    security_logic.h
23  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
24  * @author  Ming Jin(ming79.jin@samsung.com)
25  * @author  Piotr Kozbial (p.kozbial@samsung.com)
26  * @version 1.0
27  * @brief   Header file for security logic
28  */
29 #ifndef SECURITY_LOGIC_H
30 #define SECURITY_LOGIC_H
31
32 #include <dpl/ace/Request.h>
33 #include <dpl/ace/PolicyResult.h>
34 #include <dpl/ace/AbstractPolicyEnforcementPoint.h>
35 #include <dpl/ace/Preference.h>
36 #include <i_ace_settings_client.h>
37 #include <dpl/ace/PolicyEnforcementPoint.h>
38
39 //#include "ace_settings_logic.h"
40
41 /* SecurityLogic
42  * May only be created and used by SecurityController.
43  * There may be only one instance.
44  */
45 class SecurityLogic {
46   public:
47     SecurityLogic() {}
48     ~SecurityLogic() {}
49     // initialize/terminate
50     /** */
51     void initialize();
52     /** */
53     void terminate();
54     // access control checkpoints
55     /** */
56     void authorizeWidgetInstall(
57         Request *,
58         AbstractPolicyEnforcementPoint::ResponseReceiver);
59     /** */
60     PolicyResult checkFunctionCall(Request*);
61     // access control user settings
62     /** */
63 //    void setWidgetPreference(
64 //        std::string devCap,
65 //        WidgetHandle widgetHandle,
66 //        AceDB::PreferenceTypes preference);
67 //    /** */
68 //    void setResourcePreference(
69 //        std::string devCap,
70 //        AceDB::PreferenceTypes preference);
71     /** */
72 //    AceSettings::WidgetsPreferences getWidgetsPreferences();
73     /** */
74 //    AceSettings::ResourcesPreferences getResourcesPreferences();
75     /** */
76 //    void resetWidgetsPreferences();
77     /** */
78 //    void resetResourcesPreferences();
79   private:
80     PolicyEnforcementPoint m_policyEnforcementPoint;
81 //    AceSettingsLogic m_aceSettingsLogic;
82 };
83
84 #endif // SECURITY_CONTROLLER_H