50516c5f00a961d10fe4d438237c0a24ca8422f0
[framework/web/wrt-commons.git] / modules / widget_dao / include / dpl / wrt-dao-ro / global_dao_read_only.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    global_dao_read_only.h
18  * @author  Pawel Sikorski (p.sikorski@samsung.com)
19  * @version 1.0
20  * @brief   This file contains the declaration of global dao
21  */
22
23 #ifndef WRT_SRC_CONFIGURATION_GLOBAL_DAO_READ_ONLY_H_
24 #define WRT_SRC_CONFIGURATION_GLOBAL_DAO_READ_ONLY_H_
25
26 #include <list>
27 #include <set>
28 #include <string>
29
30 #include <dpl/string.h>
31 #include <dpl/exception.h>
32
33 #include <dpl/wrt-dao-ro/common_dao_types.h>
34
35 namespace WrtDB {
36
37 typedef std::list<DPL::String> WidgetPackageList;
38 typedef std::set<DPL::String> DeviceCapabilitySet;
39
40 //#ifdef USE_BROWSER_SETTING
41 //typedef DPL::DB::ORM::wrt::UserAgents::key_value::ColumnType UserAgent;
42 //#endif //USE_BROWSER_SETTING
43
44 class GlobalDAOReadOnly
45 {
46   public:
47     /**
48      * GlobalDAOReadOnly Exception classes
49      */
50     class Exception
51     {
52       public:
53         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
54         DECLARE_EXCEPTION_TYPE(Base, DatabaseError)
55     };
56
57   public:
58
59     static bool IsValidSubTag(const DPL::String& tag, int type);
60
61     /**
62      * Retrieve list of deffered widget packages to be installed
63      *
64      * @return Widget package list
65      */
66     static WidgetPackageList GetDefferedWidgetPackageInstallationList();
67
68     static bool GetDeveloperMode();
69
70     static bool GetSecureByDefault();
71
72     static bool getComplianceMode();
73
74     static std::string getComplianceFakeImei();
75
76     static std::string getComplianceFakeMeid();
77
78     static WidgetAccessInfoList GetWhiteURIList();
79
80     enum NetworkAccessMode
81     {
82         NEVER_CONNECT,
83         ALWAYS_ASK,
84         CONNECT_AUTOMATICALLY
85     };
86
87     /**
88      * This method returns network access mode for home network.
89      *
90      * @return Access mode for home network.
91      */
92     static NetworkAccessMode GetHomeNetworkDataUsage();
93
94     /**
95      * This method returns network access mode while roaming is enabled.
96      *
97      * @return Access mode for home network.
98      */
99     static NetworkAccessMode GetRoamingDataUsage();
100
101     static DPL::String GetUserAgentValue(const DPL::String &key);
102
103     /**
104      * This method returns set of device capabilities used by apifeature.
105      */
106     static DeviceCapabilitySet GetDeviceCapability(
107             const DPL::String &apifeature);
108
109   protected:
110     GlobalDAOReadOnly()
111     {
112     }
113 };
114
115 } // namespace WrtDB
116
117 #endif // WRT_SRC_CONFIGURATION_GLOBAL_DAO_READ_ONLY_H_