pib.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #include "pib.hpp"
23 #include "pib-impl.hpp"
24 #include "util/logger.hpp"
25 
26 namespace ndn {
27 namespace security {
28 namespace pib {
29 
31 
32 Pib::Pib(const std::string& scheme, const std::string& location, shared_ptr<PibImpl> impl)
33  : m_scheme(scheme)
34  , m_location(location)
35  , m_isDefaultIdentityLoaded(false)
36  , m_identities(impl)
37  , m_impl(impl)
38 {
39  BOOST_ASSERT(impl != nullptr);
40 }
41 
42 Pib::~Pib() = default;
43 
44 std::string
45 Pib::getPibLocator() const
46 {
47  return m_scheme + ":" + m_location;
48 }
49 
50 void
51 Pib::setTpmLocator(const std::string& tpmLocator)
52 {
53  if (tpmLocator == m_impl->getTpmLocator()) {
54  return;
55  }
56  reset();
57  m_impl->setTpmLocator(tpmLocator);
58 }
59 
60 std::string
61 Pib::getTpmLocator() const
62 {
63  std::string tpmLocator = m_impl->getTpmLocator();
64  if (tpmLocator.empty()) {
65  BOOST_THROW_EXCEPTION(Pib::Error("TPM info does not exist"));
66  }
67  return tpmLocator;
68 }
69 
70 void
71 Pib::reset()
72 {
73  m_impl->clearIdentities();
74  m_impl->setTpmLocator("");
75  m_isDefaultIdentityLoaded = false;
76  m_identities.reset();
77 }
78 
80 Pib::addIdentity(const Name& identity)
81 {
82  BOOST_ASSERT(m_identities.isConsistent());
83 
84  return m_identities.add(identity);
85 }
86 
87 void
88 Pib::removeIdentity(const Name& identity)
89 {
90  BOOST_ASSERT(m_identities.isConsistent());
91 
92  if (m_isDefaultIdentityLoaded && m_defaultIdentity.getName() == identity) {
93  m_isDefaultIdentityLoaded = false;
94  }
95 
96  m_identities.remove(identity);
97 }
98 
99 Identity
100 Pib::getIdentity(const Name& identity) const
101 {
102  BOOST_ASSERT(m_identities.isConsistent());
103 
104  return m_identities.get(identity);
105 }
106 
107 const IdentityContainer&
108 Pib::getIdentities() const
109 {
110  BOOST_ASSERT(m_identities.isConsistent());
111 
112  return m_identities;
113 }
114 
115 const Identity&
116 Pib::setDefaultIdentity(const Name& identityName)
117 {
118  BOOST_ASSERT(m_identities.isConsistent());
119 
120  m_defaultIdentity = m_identities.add(identityName);
121  m_isDefaultIdentityLoaded = true;
122  NDN_LOG_DEBUG("Default identity is set to " << identityName);
123 
124  m_impl->setDefaultIdentity(identityName);
125  return m_defaultIdentity;
126 }
127 
128 const Identity&
129 Pib::getDefaultIdentity() const
130 {
131  BOOST_ASSERT(m_identities.isConsistent());
132 
133  if (!m_isDefaultIdentityLoaded) {
134  m_defaultIdentity = m_identities.get(m_impl->getDefaultIdentity());
135  m_isDefaultIdentityLoaded = true;
136  NDN_LOG_DEBUG("Default identity is " << m_defaultIdentity.getName());
137  }
138 
139  BOOST_ASSERT(m_impl->getDefaultIdentity() == m_defaultIdentity.getName());
140 
141  return m_defaultIdentity;
142 }
143 
144 } // namespace pib
145 } // namespace security
146 } // namespace ndn
Copyright (c) 2013-2016 Regents of the University of California.
Definition: common.hpp:74
represents a semantic error
Definition: pib.hpp:56
#define NDN_LOG_DEBUG(expression)
log at DEBUG level
Definition: logger.hpp:146
#define NDN_LOG_INIT(name)
declare a log module
Definition: logger.hpp:97
Name abstraction to represent an absolute name.
Definition: name.hpp:46
Container of identities of a Pib.
A frontend handle of an Identity.
Definition: identity.hpp:42
represents the PIB
Definition: pib.hpp:52