blob: a05dd52727562166c46915753cae0f0b37b9e277 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev2fa59392016-07-29 17:24:23 -07003 * Copyright (c) 2013-2016 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
22#include "certificate-container.hpp"
23#include "pib-impl.hpp"
24
25namespace ndn {
26namespace security {
27
28CertificateContainer::const_iterator::const_iterator(std::set<Name>::const_iterator it,
29 shared_ptr<PibImpl> impl)
30 : m_it(it)
31 , m_impl(impl)
32{
33}
34
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070035v1::IdentityCertificate
Yingdi Yub8f8b342015-04-27 11:06:42 -070036CertificateContainer::const_iterator::operator*()
37{
38 return m_impl->getCertificate(*m_it);
39}
40
41CertificateContainer::const_iterator&
42CertificateContainer::const_iterator::operator++()
43{
44 ++m_it;
45 return *this;
46}
47
48CertificateContainer::const_iterator
49CertificateContainer::const_iterator::operator++(int)
50{
51 const_iterator it(m_it, m_impl);
52 ++m_it;
53 return it;
54}
55
56bool
57CertificateContainer::const_iterator::operator==(const const_iterator& other)
58{
59 return (m_impl == other.m_impl && m_it == other.m_it);
60}
61
62bool
63CertificateContainer::const_iterator::operator!=(const const_iterator& other)
64{
65 return !(*this == other);
66}
67
68CertificateContainer::CertificateContainer()
69{
70}
71
72CertificateContainer::CertificateContainer(std::set<Name>&& certNames,
73 shared_ptr<PibImpl> impl)
74 : m_certNames(certNames)
75 , m_impl(impl)
76{
77}
78
79CertificateContainer::const_iterator
80CertificateContainer::begin() const
81{
82 return const_iterator(m_certNames.begin(), m_impl);
83}
84
85CertificateContainer::const_iterator
86CertificateContainer::end() const
87{
88 return const_iterator(m_certNames.end(), m_impl);
89}
90
91CertificateContainer::const_iterator
92CertificateContainer::find(const Name& certName) const
93{
94 return const_iterator(m_certNames.find(certName), m_impl);
95}
96
97size_t
98CertificateContainer::size() const
99{
100 return m_certNames.size();
101}
102
103} // namespace security
104} // namespace ndn