Update wrt-commons_0.2.53
[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     static bool GetDeveloperMode();
62
63     static bool GetSecureByDefault();
64
65     static bool getComplianceMode();
66
67     static std::string getComplianceFakeImei();
68
69     static std::string getComplianceFakeMeid();
70
71     static WidgetAccessInfoList GetWhiteURIList();
72
73     static bool GetCookieSharingMode();
74
75     enum NetworkAccessMode
76     {
77         NEVER_CONNECT,
78         ALWAYS_ASK,
79         CONNECT_AUTOMATICALLY
80     };
81
82     /**
83      * This method returns network access mode for home network.
84      *
85      * @return Access mode for home network.
86      */
87     static NetworkAccessMode GetHomeNetworkDataUsage();
88
89     /**
90      * This method returns network access mode while roaming is enabled.
91      *
92      * @return Access mode for home network.
93      */
94     static NetworkAccessMode GetRoamingDataUsage();
95
96     static DPL::String GetUserAgentValue(const DPL::String &key);
97
98     /**
99      * This method returns set of device capabilities used by apifeature.
100      */
101     static DeviceCapabilitySet GetDeviceCapability(
102             const DPL::String &apifeature);
103
104   protected:
105     GlobalDAOReadOnly()
106     {
107     }
108 };
109
110 } // namespace WrtDB
111
112 #endif // WRT_SRC_CONFIGURATION_GLOBAL_DAO_READ_ONLY_H_