merge with master
[platform/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 typedef std::list<DPL::String> WidgetPackageList;
37 typedef std::set<DPL::String> DeviceCapabilitySet;
38
39 //#ifdef USE_BROWSER_SETTING
40 //typedef DPL::DB::ORM::wrt::UserAgents::key_value::ColumnType UserAgent;
41 //#endif //USE_BROWSER_SETTING
42
43 class GlobalDAOReadOnly
44 {
45   public:
46     /**
47      * GlobalDAOReadOnly Exception classes
48      */
49     class Exception
50     {
51       public:
52         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
53         DECLARE_EXCEPTION_TYPE(Base, DatabaseError)
54     };
55
56   public:
57
58     static bool IsValidSubTag(const DPL::String& tag, int type);
59
60     static bool GetDeveloperMode();
61
62     static bool GetSecureByDefault();
63
64     static bool getComplianceMode();
65
66     static std::string getComplianceFakeImei();
67
68     static std::string getComplianceFakeMeid();
69
70     static WidgetAccessInfoList GetWhiteURIList();
71
72     static bool GetCookieSharingMode();
73
74     enum NetworkAccessMode
75     {
76         NEVER_CONNECT,
77         ALWAYS_ASK,
78         CONNECT_AUTOMATICALLY
79     };
80
81     /**
82      * This method returns network access mode for home network.
83      *
84      * @return Access mode for home network.
85      */
86     static NetworkAccessMode GetHomeNetworkDataUsage();
87
88     /**
89      * This method returns network access mode while roaming is enabled.
90      *
91      * @return Access mode for home network.
92      */
93     static NetworkAccessMode GetRoamingDataUsage();
94
95     static DPL::String GetUserAgentValue(const DPL::String &key);
96
97     /**
98      * This method returns set of device capabilities used by apifeature.
99      */
100     static DeviceCapabilitySet GetDeviceCapability(
101         const DPL::String &apifeature);
102
103   protected:
104     GlobalDAOReadOnly()
105     {}
106 };
107 } // namespace WrtDB
108
109 #endif // WRT_SRC_CONFIGURATION_GLOBAL_DAO_READ_ONLY_H_