tizen beta release
[framework/web/wrt-installer.git] / src / security / ace_settings_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  * @file        ace_settings_logic.h
18  * @author      Jaroslaw Osmanski (j.osmanski@samsung.com)
19  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
20  * @version     1.0
21  * @brief       This is a header of server of ACE user preferences
22  */
23 #ifndef WRT_SRC_ACCESS_CONTROL_IPC_SETTINGS_ACE_SETTINGS_LOGIC_H_
24 #define WRT_SRC_ACCESS_CONTROL_IPC_SETTINGS_ACE_SETTINGS_LOGIC_H_
25
26 #include <dpl/shared_ptr.h>
27 #include <i_ace_settings_server.h>
28 #include <i_ace_settings_client.h>
29 #include <string>
30
31 #include <dpl/ace-dao-ro/wrt_db_types.h>
32
33 class PolicyEnforcementPoint;
34
35 class AceSettingsLogic
36 {
37   public:
38     void setWidgetPreference(const std::string &resource,
39             WidgetHandle handler,
40             const AceDB::PreferenceTypes &preference);
41
42     void setResourcePreference(const std::string &resource,
43             const AceDB::PreferenceTypes &preference);
44
45     AceSettings::WidgetsPreferences getWidgetsPreferences() const;
46
47     AceSettings::ResourcesPreferences getResourcesPreferences() const;
48
49     bool getWidgetsSecure() const;
50
51     void setWidgetsSecure(bool widgetSecure);
52
53     void resetWidgetsPreferences();
54     void resetResourcesPreferences();
55
56   private:
57     AceSettingsLogic(PolicyEnforcementPoint *policyEnforcementPoint);
58
59     friend class SecurityLogic;
60     friend class PolicyEnforcementPoint;
61
62     // PEP
63     PolicyEnforcementPoint *m_policyEnforcementPoint;
64
65     // Ace settings server (may be null)
66     DPL::SharedPtr<IAceSettingsServer> m_server;
67 };
68
69 #endif // WRT_SRC_ACCESS_CONTROL_IPC_SETTINGS_ACE_SETTINGS_LOGIC_H_