Clean up header files about wrt
[platform/core/security/cert-svc.git] / src / vcore / CertStoreType.cpp
1 /*
2  * Copyright (c) 2016 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  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
18  * @file        CertStoreType.cpp
19  * @version     1.0
20  * @brief       Identification of certificate domain. Certificate domains
21  *              were defined in WAC 1.0 documentation.
22  */
23 #include <vcore/CertStoreType.h>
24
25 namespace ValidationCore {
26 namespace CertStoreId {
27
28 Set::Set()
29         : m_certificateStorage(0)
30 {}
31
32 Set::~Set()
33 {
34 }
35
36 void Set::add(Type second)
37 {
38         m_certificateStorage |= second;
39 }
40
41 bool Set::contains(Type second) const
42 {
43         return static_cast<bool>(m_certificateStorage & second);
44 }
45
46 bool Set::isContainsVis() const
47 {
48         Type visType = VIS_PUBLIC;
49         visType |= VIS_PARTNER;
50         visType |= VIS_PLATFORM;
51         visType &= m_certificateStorage;
52
53         if (visType == 0)
54                 return false;
55
56         return true;
57 }
58
59 bool Set::isEmpty() const
60 {
61         return m_certificateStorage == 0;
62 }
63
64 std::string Set::typeToString() const
65 {
66         std::string ret;
67
68         if (m_certificateStorage & TIZEN_DEVELOPER)
69                 ret += "TIZEN_DEVELOPER ";
70
71         if (m_certificateStorage & TIZEN_TEST)
72                 ret += "TIZEN_TEST ";
73
74         if (m_certificateStorage & TIZEN_VERIFY)
75                 ret += "TIZEN_VERIFY ";
76
77         if (m_certificateStorage & TIZEN_STORE)
78                 ret += "TIZEN_STORE ";
79
80         if (m_certificateStorage & TIZEN_REVOKED)
81                 ret += "TIZEN_REVOKED ";
82
83         if (m_certificateStorage & VIS_PUBLIC)
84                 ret += "VIS_PUBLIC ";
85
86         if (m_certificateStorage & VIS_PARTNER)
87                 ret += "VIS_PARTNER ";
88
89         if (m_certificateStorage & VIS_PLATFORM)
90                 ret += "VIS_PLATFORM ";
91
92         return ret;
93 }
94
95 } // namespace CertStoreId
96 } // namespace ValidationCore