Source code formating unification
[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 <dpl/string.h>
30
31 namespace SecurityOriginDB {
32 enum Feature
33 {
34     FEATURE_START = 0,
35     FEATURE_GEOLOCATION = 0,
36     FEATURE_WEB_NOTIFICATION,
37     FEATURE_WEB_DATABASE,
38     FEATURE_FILE_SYSTEM_ACCESS,
39     FEATURE_END = FEATURE_FILE_SYSTEM_ACCESS
40 };
41
42 enum Result
43 {
44     RESULT_UNKNOWN = 0,
45     RESULT_ALLOW_ONCE,
46     RESULT_DENY_ONCE,
47     RESULT_ALLOW_ALWAYS,
48     RESULT_DENY_ALWAYS
49 };
50
51 struct Origin
52 {
53     DPL::String scheme;
54     DPL::String host;
55     unsigned int port;
56
57     Origin(const DPL::String& Scheme,
58            const DPL::String& Host,
59            const unsigned int Port) :
60         scheme(Scheme),
61         host(Host),
62         port(Port)
63     {}
64
65     bool operator== (const Origin& other) const
66     {
67         return (!DPL::StringCompare(scheme, other.scheme) &&
68                 !DPL::StringCompare(host, other.host) &&
69                 port == other.port);
70     }
71
72     bool operator!= (const Origin& other) const
73     {
74         return !(*this == other);
75     }
76 };
77
78 struct SecurityOriginData
79 {
80     Feature feature;
81     Origin origin;
82
83     SecurityOriginData(const Feature features, const Origin& ori) :
84         feature(features),
85         origin(ori)
86     {}
87
88     bool operator== (const SecurityOriginData& other) const
89     {
90         return !(origin == other.origin) &&
91                !(feature == other.feature);
92     }
93
94     bool operator!= (const SecurityOriginData& other) const
95     {
96         return !(*this == other);
97     }
98 };
99
100 typedef std::shared_ptr<SecurityOriginData> SecurityOriginDataPtr;
101 typedef std::list<SecurityOriginDataPtr> SecurityOriginDataList;
102 } // namespace SecurityOriginDB
103
104 #endif // _SECURITY_ORIGIN_DAO_TYPES_H_