Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2013-2015 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 | |
| 22 | #include "pib.hpp" |
| 23 | #include "pib-impl.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace security { |
| 27 | |
| 28 | Pib::Pib(const std::string scheme, const std::string& location, shared_ptr<PibImpl> impl) |
| 29 | : m_scheme(scheme) |
| 30 | , m_location(location) |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 31 | , m_hasDefaultIdentity(false) |
| 32 | , m_needRefreshIdentities(true) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 33 | , m_impl(impl) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | Pib::~Pib() |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | std::string |
| 42 | Pib::getPibLocator() const |
| 43 | { |
| 44 | return m_scheme + ":" + m_location; |
| 45 | } |
| 46 | |
| 47 | void |
| 48 | Pib::setTpmLocator(const std::string& tpmLocator) |
| 49 | { |
| 50 | m_impl->setTpmLocator(tpmLocator); |
| 51 | } |
| 52 | |
| 53 | std::string |
| 54 | Pib::getTpmLocator() const |
| 55 | { |
| 56 | return m_impl->getTpmLocator(); |
| 57 | } |
| 58 | |
| 59 | Identity |
| 60 | Pib::addIdentity(const Name& identity) |
| 61 | { |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 62 | if (!m_needRefreshIdentities && m_identities.find(identity) == m_identities.end()) { |
| 63 | // if we have already loaded all the identities, but the new identity is not one of them |
| 64 | // the IdentityContainer should be refreshed |
| 65 | m_needRefreshIdentities = true; |
| 66 | } |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 67 | return Identity(identity, m_impl, true); |
| 68 | } |
| 69 | |
| 70 | void |
| 71 | Pib::removeIdentity(const Name& identity) |
| 72 | { |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 73 | if (m_hasDefaultIdentity && m_defaultIdentity.getName() == identity) |
| 74 | m_hasDefaultIdentity = false; |
| 75 | |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 76 | m_impl->removeIdentity(identity); |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 77 | m_needRefreshIdentities = true; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | Identity |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 81 | Pib::getIdentity(const Name& identity) const |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 82 | { |
| 83 | return Identity(identity, m_impl, false); |
| 84 | } |
| 85 | |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 86 | const IdentityContainer& |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 87 | Pib::getIdentities() const |
| 88 | { |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 89 | if (m_needRefreshIdentities) { |
Alexander Afanasyev | 66ca203 | 2015-12-04 13:17:02 -0800 | [diff] [blame] | 90 | m_identities = IdentityContainer(m_impl->getIdentities(), m_impl); |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 91 | m_needRefreshIdentities = false; |
| 92 | } |
| 93 | |
| 94 | return m_identities; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 97 | Identity& |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 98 | Pib::setDefaultIdentity(const Name& identityName) |
| 99 | { |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 100 | m_defaultIdentity = addIdentity(identityName); |
| 101 | m_hasDefaultIdentity = true; |
| 102 | |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 103 | m_impl->setDefaultIdentity(identityName); |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 104 | return m_defaultIdentity; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 107 | Identity& |
| 108 | Pib::getDefaultIdentity() const |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 109 | { |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 110 | if (!m_hasDefaultIdentity) { |
Alexander Afanasyev | 66ca203 | 2015-12-04 13:17:02 -0800 | [diff] [blame] | 111 | m_defaultIdentity = Identity(m_impl->getDefaultIdentity(), m_impl, false); |
Yingdi Yu | c820989 | 2015-06-19 17:47:56 -0700 | [diff] [blame] | 112 | m_hasDefaultIdentity = true; |
| 113 | } |
| 114 | |
| 115 | return m_defaultIdentity; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | |
| 119 | } // namespace security |
| 120 | } // namespace ndn |