blob: 73f53d0ec1e1ce5329e8534c3d8afc6134a32dc8 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yingdi Yu6ee2d362015-07-16 21:48:05 -07003 * Copyright (c) 2013-2017 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 "pib.hpp"
23#include "pib-impl.hpp"
24
25namespace ndn {
26namespace security {
Yingdi Yu6ee2d362015-07-16 21:48:05 -070027namespace pib {
Yingdi Yub8f8b342015-04-27 11:06:42 -070028
29Pib::Pib(const std::string scheme, const std::string& location, shared_ptr<PibImpl> impl)
30 : m_scheme(scheme)
31 , m_location(location)
Yingdi Yuc8209892015-06-19 17:47:56 -070032 , m_hasDefaultIdentity(false)
33 , m_needRefreshIdentities(true)
Yingdi Yub8f8b342015-04-27 11:06:42 -070034 , m_impl(impl)
35{
36}
37
38Pib::~Pib()
39{
40}
41
42std::string
43Pib::getPibLocator() const
44{
45 return m_scheme + ":" + m_location;
46}
47
48void
49Pib::setTpmLocator(const std::string& tpmLocator)
50{
51 m_impl->setTpmLocator(tpmLocator);
52}
53
54std::string
55Pib::getTpmLocator() const
56{
57 return m_impl->getTpmLocator();
58}
59
60Identity
61Pib::addIdentity(const Name& identity)
62{
Yingdi Yuc8209892015-06-19 17:47:56 -070063 if (!m_needRefreshIdentities && m_identities.find(identity) == m_identities.end()) {
64 // if we have already loaded all the identities, but the new identity is not one of them
65 // the IdentityContainer should be refreshed
66 m_needRefreshIdentities = true;
67 }
Yingdi Yub8f8b342015-04-27 11:06:42 -070068 return Identity(identity, m_impl, true);
69}
70
71void
72Pib::removeIdentity(const Name& identity)
73{
Yingdi Yuc8209892015-06-19 17:47:56 -070074 if (m_hasDefaultIdentity && m_defaultIdentity.getName() == identity)
75 m_hasDefaultIdentity = false;
76
Yingdi Yub8f8b342015-04-27 11:06:42 -070077 m_impl->removeIdentity(identity);
Yingdi Yuc8209892015-06-19 17:47:56 -070078 m_needRefreshIdentities = true;
Yingdi Yub8f8b342015-04-27 11:06:42 -070079}
80
81Identity
Yingdi Yuc8209892015-06-19 17:47:56 -070082Pib::getIdentity(const Name& identity) const
Yingdi Yub8f8b342015-04-27 11:06:42 -070083{
84 return Identity(identity, m_impl, false);
85}
86
Yingdi Yuc8209892015-06-19 17:47:56 -070087const IdentityContainer&
Yingdi Yub8f8b342015-04-27 11:06:42 -070088Pib::getIdentities() const
89{
Yingdi Yuc8209892015-06-19 17:47:56 -070090 if (m_needRefreshIdentities) {
Alexander Afanasyev66ca2032015-12-04 13:17:02 -080091 m_identities = IdentityContainer(m_impl->getIdentities(), m_impl);
Yingdi Yuc8209892015-06-19 17:47:56 -070092 m_needRefreshIdentities = false;
93 }
94
95 return m_identities;
Yingdi Yub8f8b342015-04-27 11:06:42 -070096}
97
Yingdi Yuc8209892015-06-19 17:47:56 -070098Identity&
Yingdi Yub8f8b342015-04-27 11:06:42 -070099Pib::setDefaultIdentity(const Name& identityName)
100{
Yingdi Yuc8209892015-06-19 17:47:56 -0700101 m_defaultIdentity = addIdentity(identityName);
102 m_hasDefaultIdentity = true;
103
Yingdi Yub8f8b342015-04-27 11:06:42 -0700104 m_impl->setDefaultIdentity(identityName);
Yingdi Yuc8209892015-06-19 17:47:56 -0700105 return m_defaultIdentity;
Yingdi Yub8f8b342015-04-27 11:06:42 -0700106}
107
Yingdi Yuc8209892015-06-19 17:47:56 -0700108Identity&
109Pib::getDefaultIdentity() const
Yingdi Yub8f8b342015-04-27 11:06:42 -0700110{
Yingdi Yuc8209892015-06-19 17:47:56 -0700111 if (!m_hasDefaultIdentity) {
Alexander Afanasyev66ca2032015-12-04 13:17:02 -0800112 m_defaultIdentity = Identity(m_impl->getDefaultIdentity(), m_impl, false);
Yingdi Yuc8209892015-06-19 17:47:56 -0700113 m_hasDefaultIdentity = true;
114 }
115
116 return m_defaultIdentity;
Yingdi Yub8f8b342015-04-27 11:06:42 -0700117}
118
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700119} // namespace pib
Yingdi Yub8f8b342015-04-27 11:06:42 -0700120} // namespace security
121} // namespace ndn