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