NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
certificate-container.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2021 Regents of the University of California.
4  *
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 
25 
26 namespace ndn {
27 namespace security {
28 namespace pib {
29 
30 NDN_CXX_ASSERT_FORWARD_ITERATOR(CertificateContainer::const_iterator);
31 
33  : m_container(nullptr)
34 {
35 }
36 
37 CertificateContainer::const_iterator::const_iterator(std::set<Name>::const_iterator it,
38  const CertificateContainer& container)
39  : m_it(it)
40  , m_container(&container)
41 {
42 }
43 
44 Certificate
46 {
47  BOOST_ASSERT(m_container != nullptr);
48  return m_container->get(*m_it);
49 }
50 
53 {
54  ++m_it;
55  return *this;
56 }
57 
60 {
61  BOOST_ASSERT(m_container != nullptr);
62  const_iterator it(m_it, *m_container);
63  ++m_it;
64  return it;
65 }
66 
67 bool
69 {
70  bool isThisEnd = m_container == nullptr || m_it == m_container->m_certNames.end();
71  bool isOtherEnd = other.m_container == nullptr || other.m_it == other.m_container->m_certNames.end();
72  return ((isThisEnd || isOtherEnd) ?
73  (isThisEnd == isOtherEnd) :
74  m_container->m_pib == other.m_container->m_pib && m_it == other.m_it);
75 }
76 
77 bool
79 {
80  return !(*this == other);
81 }
82 
83 CertificateContainer::CertificateContainer(const Name& keyName, shared_ptr<PibImpl> pibImpl)
84  : m_keyName(keyName)
85  , m_pib(std::move(pibImpl))
86 {
87  BOOST_ASSERT(m_pib != nullptr);
88  m_certNames = m_pib->getCertificatesOfKey(keyName);
89 }
90 
93 {
94  return {m_certNames.begin(), *this};
95 }
96 
99 {
100  return {};
101 }
102 
104 CertificateContainer::find(const Name& certName) const
105 {
106  return {m_certNames.find(certName), *this};
107 }
108 
109 size_t
111 {
112  return m_certNames.size();
113 }
114 
115 void
116 CertificateContainer::add(const Certificate& certificate)
117 {
118  if (m_keyName != certificate.getKeyName())
119  NDN_THROW(std::invalid_argument("Certificate name `" + certificate.getKeyName().toUri() + "` "
120  "does not match key name"));
121 
122  const Name& certName = certificate.getName();
123  m_certNames.insert(certName);
124  m_certs[certName] = certificate;
125  m_pib->addCertificate(certificate);
126 }
127 
128 void
130 {
131  if (!Certificate::isValidName(certName) || extractKeyNameFromCertName(certName) != m_keyName) {
132  NDN_THROW(std::invalid_argument("Certificate name `" + certName.toUri() + "` "
133  "is invalid or does not match key name"));
134  }
135 
136  m_certNames.erase(certName);
137  m_certs.erase(certName);
138  m_pib->removeCertificate(certName);
139 }
140 
141 Certificate
142 CertificateContainer::get(const Name& certName) const
143 {
144  auto it = m_certs.find(certName);
145 
146  if (it != m_certs.end())
147  return it->second;
148 
149  if (!Certificate::isValidName(certName) || extractKeyNameFromCertName(certName) != m_keyName) {
150  NDN_THROW(std::invalid_argument("Certificate name `" + certName.toUri() + "` "
151  "is invalid or does not match key name"));
152  }
153 
154  m_certs[certName] = m_pib->getCertificate(certName);
155  return m_certs[certName];
156 }
157 
158 bool
160 {
161  return m_certNames == m_pib->getCertificatesOfKey(m_keyName);
162 }
163 
164 } // namespace pib
165 } // namespace security
166 } // namespace ndn
Copyright (c) 2011-2015 Regents of the University of California.
void remove(const Name &certName)
Remove a certificate with certName from the container.
NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE shared_ptr< PibImpl > pibImpl
Name extractKeyNameFromCertName(const Name &certName)
Extract key name from the certificate name certName.
bool isConsistent() const
Check if the container is consistent with the backend storage.
NDN_CXX_ASSERT_FORWARD_ITERATOR(CertificateContainer::const_iterator)
#define NDN_THROW(e)
Definition: exception.hpp:61
Container of certificates of a key.
Certificate get(const Name &certName) const
Get a certificate with certName from the container.
void add(const Certificate &certificate)
Add certificate into the container.
Represents an absolute name.
Definition: name.hpp:41
void toUri(std::ostream &os, name::UriFormat format=name::UriFormat::DEFAULT) const
Write URI representation of the name to the output stream.
Definition: name.cpp:349
const_iterator find(const Name &certName) const