blob: 53b6da3211dec0723e9c5ea9c8a4830bb7789dd7 [file] [log] [blame]
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -08001/* -*- 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.
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -08004 *
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 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
22 */
23
24#include "certificate-cache-ttl.hpp"
25
26namespace ndn {
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070027namespace security {
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080028
29CertificateCacheTtl::CertificateCacheTtl(boost::asio::io_service& io,
30 const time::seconds& defaultTtl/* = time::seconds(3600)*/)
31 : m_defaultTtl(defaultTtl)
Alexander Afanasyev9ae6a082015-08-19 23:05:27 -070032 , m_scheduler(io)
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080033{
34}
35
36CertificateCacheTtl::~CertificateCacheTtl()
37{
38}
39
40void
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070041CertificateCacheTtl::insertCertificate(shared_ptr<const v1::IdentityCertificate> certificate)
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080042{
Alexander Afanasyev9ae6a082015-08-19 23:05:27 -070043 m_scheduler.scheduleEvent(time::seconds(0), [this, certificate] { this->insert(certificate); });
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080044}
45
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070046shared_ptr<const v1::IdentityCertificate>
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080047CertificateCacheTtl::getCertificate(const Name& certificateName)
48{
49 Cache::iterator it = m_cache.find(certificateName);
50 if (it != m_cache.end())
51 return it->second.first;
52 else
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070053 return shared_ptr<v1::IdentityCertificate>();
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080054}
55
56void
57CertificateCacheTtl::reset()
58{
Alexander Afanasyev9ae6a082015-08-19 23:05:27 -070059 m_scheduler.scheduleEvent(time::seconds(0), [this] { this->removeAll(); });
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080060}
61
62size_t
63CertificateCacheTtl::getSize()
64{
65 return m_cache.size();
66}
67
68void
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070069CertificateCacheTtl::insert(shared_ptr<const v1::IdentityCertificate> certificate)
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080070{
71 time::milliseconds expire = (certificate->getFreshnessPeriod() >= time::seconds::zero() ?
72 certificate->getFreshnessPeriod() : m_defaultTtl);
73
74 Name index = certificate->getName().getPrefix(-1);
75
76 Cache::iterator it = m_cache.find(index);
77 if (it != m_cache.end())
78 m_scheduler.cancelEvent(it->second.second);
79
80 EventId eventId = m_scheduler.scheduleEvent(expire,
81 bind(&CertificateCacheTtl::remove,
82 this, certificate->getName()));
83
84 m_cache[index] = std::make_pair(certificate, eventId);
85}
86
87void
88CertificateCacheTtl::remove(const Name& certificateName)
89{
90 Name name = certificateName.getPrefix(-1);
91 Cache::iterator it = m_cache.find(name);
92 if (it != m_cache.end())
93 m_cache.erase(it);
94}
95
96void
97CertificateCacheTtl::removeAll()
98{
99 for(Cache::iterator it = m_cache.begin(); it != m_cache.end(); it++)
100 m_scheduler.cancelEvent(it->second.second);
101
102 m_cache.clear();
103}
104
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700105} // namespace security
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -0800106} // namespace ndn