bcb068147fe11a180165c1f112b201cd1036982c
[framework/web/wrt-commons.git] / modules / security_origin_dao / include / wrt-commons / security-origin-dao / security_origin_dao_types.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  *
18  * @file    security_origin_dao_types.h
19  * @author  Jihoon Chung (jihoon.chung@samsung.com)
20  * @version 1.0
21  * @brief This file contains the declaration of
22  *           common data types for security origin database.
23  */
24 #ifndef _SECURITY_ORIGIN_DAO_TYPES_H_
25 #define _SECURITY_ORIGIN_DAO_TYPES_H_
26
27 #include <list>
28 #include <memory>
29 #include <map>
30 #include <dpl/string.h>
31
32 namespace SecurityOriginDB {
33 enum Feature
34 {
35     FEATURE_START = 0,
36     FEATURE_GEOLOCATION = 0,
37     FEATURE_WEB_NOTIFICATION,
38     FEATURE_END = FEATURE_WEB_NOTIFICATION
39 };
40
41 enum Result
42 {
43     RESULT_UNKNOWN = 0,
44     RESULT_ALLOW_ONCE,
45     RESULT_DENY_ONCE,
46     RESULT_ALLOW_ALWAYS,
47     RESULT_DENY_ALWAYS
48 };
49
50 extern const std::map<std::string, Feature> g_W3CPrivilegeTextMap;
51
52 struct Origin
53 {
54     DPL::String scheme;
55     DPL::String host;
56     unsigned int port;
57
58     Origin(const DPL::String& Scheme,
59            const DPL::String& Host,
60            const unsigned int Port) :
61         scheme(Scheme),
62         host(Host),
63         port(Port)
64     {}
65
66     bool operator== (const Origin& other) const
67     {
68         return (!DPL::StringCompare(scheme, other.scheme) &&
69                 !DPL::StringCompare(host, other.host) &&
70                 port == other.port);
71     }
72
73     bool operator!= (const Origin& other) const
74     {
75         return !(*this == other);
76     }
77 };
78
79 struct SecurityOriginData
80 {
81     Feature feature;
82     Origin origin;
83
84     SecurityOriginData(const Feature features, const Origin& ori) :
85         feature(features),
86         origin(ori)
87     {}
88
89     bool operator== (const SecurityOriginData& other) const
90     {
91         return !(origin == other.origin) &&
92                !(feature == other.feature);
93     }
94
95     bool operator!= (const SecurityOriginData& other) const
96     {
97         return !(*this == other);
98     }
99 };
100
101 typedef std::shared_ptr<SecurityOriginData> SecurityOriginDataPtr;
102 typedef std::list<SecurityOriginDataPtr> SecurityOriginDataList;
103 } // namespace SecurityOriginDB
104
105 #endif // _SECURITY_ORIGIN_DAO_TYPES_H_