Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_wearable / 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 #include <dpl/wrt-dao-ro/widget_dao_types.h>
32
33 namespace SecurityOriginDB {
34 enum Result
35 {
36     RESULT_UNKNOWN = 0,
37     RESULT_ALLOW_ONCE,
38     RESULT_DENY_ONCE,
39     RESULT_ALLOW_ALWAYS,
40     RESULT_DENY_ALWAYS
41 };
42
43 struct Origin
44 {
45     DPL::String scheme;
46     DPL::String host;
47     unsigned int port;
48
49     Origin(const DPL::String& Scheme,
50            const DPL::String& Host,
51            const unsigned int Port) :
52         scheme(Scheme),
53         host(Host),
54         port(Port)
55     {}
56
57     bool operator== (const Origin& other) const
58     {
59         return (!DPL::StringCompare(scheme, other.scheme) &&
60                 !DPL::StringCompare(host, other.host) &&
61                 port == other.port);
62     }
63
64     bool operator!= (const Origin& other) const
65     {
66         return !(*this == other);
67     }
68 };
69
70 struct SecurityOriginData
71 {
72     WrtDB::Feature feature;
73     Origin origin;
74
75     SecurityOriginData(const WrtDB::Feature features, const Origin& ori) :
76         feature(features),
77         origin(ori)
78     {}
79
80     bool operator== (const SecurityOriginData& other) const
81     {
82         return (origin == other.origin) &&
83                (feature == other.feature);
84     }
85
86     bool operator!= (const SecurityOriginData& other) const
87     {
88         return !(*this == other);
89     }
90 };
91
92 typedef std::shared_ptr<SecurityOriginData> SecurityOriginDataPtr;
93 typedef std::list<SecurityOriginDataPtr> SecurityOriginDataList;
94 } // namespace SecurityOriginDB
95
96 #endif // _SECURITY_ORIGIN_DAO_TYPES_H_