blob: cc1798a5c7652756b8d30b0967ed0076c8d75eaf [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yingdi Yu6ee2d362015-07-16 21:48:05 -07003 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yub8f8b342015-04-27 11:06:42 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
Alexander Afanasyev97709c02016-08-25 19:58:30 -070022#ifndef NDN_SECURITY_PIB_CERTIFICATE_CONTAINER_HPP
23#define NDN_SECURITY_PIB_CERTIFICATE_CONTAINER_HPP
Yingdi Yub8f8b342015-04-27 11:06:42 -070024
Davide Pesavento50f66752017-05-15 20:57:12 -040025#include "../v2/certificate.hpp"
26
Yingdi Yub8f8b342015-04-27 11:06:42 -070027#include <set>
Yingdi Yucbe72b02015-11-25 17:35:37 -080028#include <unordered_map>
Yingdi Yub8f8b342015-04-27 11:06:42 -070029
30namespace ndn {
31namespace security {
Yingdi Yu6ee2d362015-07-16 21:48:05 -070032namespace pib {
Yingdi Yub8f8b342015-04-27 11:06:42 -070033
34class PibImpl;
35
Yingdi Yucbe72b02015-11-25 17:35:37 -080036namespace detail {
37class KeyImpl;
38} // namespace detail
39
40/**
41 * @brief Container of certificates of a key
42 *
43 * The container is used to search/enumerate certificates of a key.
44 * The container can be created only by detail::KeyImpl.
45 */
46class CertificateContainer : noncopyable
Yingdi Yub8f8b342015-04-27 11:06:42 -070047{
48public:
Yingdi Yucbe72b02015-11-25 17:35:37 -080049 class const_iterator : public std::iterator<std::forward_iterator_tag, const v2::Certificate>
Yingdi Yub8f8b342015-04-27 11:06:42 -070050 {
51 public:
Yingdi Yucbe72b02015-11-25 17:35:37 -080052 const_iterator();
Yingdi Yub8f8b342015-04-27 11:06:42 -070053
Yingdi Yu6ee2d362015-07-16 21:48:05 -070054 v2::Certificate
Yingdi Yub8f8b342015-04-27 11:06:42 -070055 operator*();
56
57 const_iterator&
58 operator++();
59
60 const_iterator
61 operator++(int);
62
63 bool
Yingdi Yucbe72b02015-11-25 17:35:37 -080064 operator==(const const_iterator& other) const;
Yingdi Yub8f8b342015-04-27 11:06:42 -070065
66 bool
Yingdi Yucbe72b02015-11-25 17:35:37 -080067 operator!=(const const_iterator& other) const;
Yingdi Yub8f8b342015-04-27 11:06:42 -070068
69 private:
Yingdi Yucbe72b02015-11-25 17:35:37 -080070 const_iterator(std::set<Name>::const_iterator it, const CertificateContainer& container);
Yingdi Yub8f8b342015-04-27 11:06:42 -070071
72 private:
73 std::set<Name>::const_iterator m_it;
Yingdi Yucbe72b02015-11-25 17:35:37 -080074 const CertificateContainer* m_container;
75
76 friend class CertificateContainer;
Yingdi Yub8f8b342015-04-27 11:06:42 -070077 };
78
79 typedef const_iterator iterator;
80
81public:
Yingdi Yub8f8b342015-04-27 11:06:42 -070082 const_iterator
83 begin() const;
84
85 const_iterator
86 end() const;
87
88 const_iterator
89 find(const Name& certName) const;
90
91 size_t
92 size() const;
93
Yingdi Yucbe72b02015-11-25 17:35:37 -080094 /**
95 * @brief Add @p certificate into the container
96 * @throw std::invalid_argument the name of @p certificate does not match the key name
97 */
98 void
99 add(const v2::Certificate& certificate);
100
101 /**
102 * @brief Remove a certificate with @p certName from the container
103 * @throw std::invalid_argument @p certName does not match the key name
104 */
105 void
106 remove(const Name& certName);
107
108 /**
109 * @brief Get a certificate with @p certName from the container
110 * @throw std::invalid_argument @p certName does not match the key name
111 * @throw Pib::Error the certificate does not exist
112 */
113 v2::Certificate
114 get(const Name& certName) const;
115
116 /**
117 * @brief Check if the container is consistent with the backend storage
Yingdi Yucbe72b02015-11-25 17:35:37 -0800118 * @note this method is heavyweight and should be used in debugging mode only.
119 */
120 bool
121 isConsistent() const;
122
123NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
124 /**
125 * @brief Create certificate container for a key with @p keyName
Davide Pesavento50f66752017-05-15 20:57:12 -0400126 * @param pibImpl The PIB backend implementation.
Yingdi Yucbe72b02015-11-25 17:35:37 -0800127 */
Davide Pesavento50f66752017-05-15 20:57:12 -0400128 CertificateContainer(const Name& keyName, shared_ptr<PibImpl> pibImpl);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800129
130 const std::set<Name>&
131 getCertNames() const
132 {
133 return m_certNames;
134 }
135
136 const std::unordered_map<Name, v2::Certificate>&
137 getCache() const
138 {
139 return m_certs;
140 }
141
Yingdi Yub8f8b342015-04-27 11:06:42 -0700142private:
Yingdi Yucbe72b02015-11-25 17:35:37 -0800143 Name m_keyName;
Yingdi Yub8f8b342015-04-27 11:06:42 -0700144 std::set<Name> m_certNames;
Yingdi Yucbe72b02015-11-25 17:35:37 -0800145 /// @brief Cache of loaded certificates
146 mutable std::unordered_map<Name, v2::Certificate> m_certs;
147
Davide Pesavento50f66752017-05-15 20:57:12 -0400148 shared_ptr<PibImpl> m_pib;
Yingdi Yucbe72b02015-11-25 17:35:37 -0800149
150 friend class detail::KeyImpl;
Yingdi Yub8f8b342015-04-27 11:06:42 -0700151};
152
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700153} // namespace pib
154
155using pib::CertificateContainer;
156
Yingdi Yub8f8b342015-04-27 11:06:42 -0700157} // namespace security
158} // namespace ndn
159
Alexander Afanasyev97709c02016-08-25 19:58:30 -0700160#endif // NDN_SECURITY_PIB_CERTIFICATE_CONTAINER_HPP