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 | |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame] | 22 | #ifndef NDN_SECURITY_PIB_KEY_CONTAINER_HPP |
| 23 | #define NDN_SECURITY_PIB_KEY_CONTAINER_HPP |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 24 | |
| 25 | #include <set> |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 26 | #include <unordered_map> |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 27 | #include "key.hpp" |
| 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 31 | namespace pib { |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 32 | |
| 33 | class PibImpl; |
| 34 | |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 35 | namespace detail { |
| 36 | class KeyImpl; |
| 37 | class IdentityImpl; |
| 38 | } // namespace detail |
| 39 | |
| 40 | /** |
| 41 | * @brief Container of keys of an identity |
| 42 | * |
| 43 | * The container is used to search/enumerate keys of an identity. |
| 44 | * The container can be created only by detail::IdentityImpl. |
| 45 | */ |
| 46 | class KeyContainer : noncopyable |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 47 | { |
| 48 | public: |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 49 | class const_iterator : public std::iterator<std::forward_iterator_tag, const Key> |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 50 | { |
| 51 | public: |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 52 | const_iterator(); |
| 53 | |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 54 | Key |
| 55 | operator*(); |
| 56 | |
| 57 | const_iterator& |
| 58 | operator++(); |
| 59 | |
| 60 | const_iterator |
| 61 | operator++(int); |
| 62 | |
| 63 | bool |
| 64 | operator==(const const_iterator& other); |
| 65 | |
| 66 | bool |
| 67 | operator!=(const const_iterator& other); |
| 68 | |
| 69 | private: |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 70 | const_iterator(std::set<Name>::const_iterator it, const KeyContainer& container); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 71 | |
| 72 | private: |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 73 | std::set<Name>::const_iterator m_it; |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 74 | const KeyContainer* m_container; |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 75 | |
| 76 | friend class KeyContainer; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | typedef const_iterator iterator; |
| 80 | |
| 81 | public: |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 82 | const_iterator |
| 83 | begin() const; |
| 84 | |
| 85 | const_iterator |
| 86 | end() const; |
| 87 | |
| 88 | const_iterator |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 89 | find(const Name& keyName) const; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 90 | |
| 91 | size_t |
| 92 | size() const; |
| 93 | |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 94 | /** |
| 95 | * @brief Add @p key of @p keyLen bytes with @p keyName into the container |
| 96 | * @throw std::invalid_argument @p keyName does not match the identity |
| 97 | */ |
| 98 | Key |
| 99 | add(const uint8_t* key, size_t keyLen, const Name& keyName); |
| 100 | |
| 101 | /** |
| 102 | * @brief Remove a key with @p keyName from the container |
| 103 | * @throw std::invalid_argument @p keyName does not match the identity |
| 104 | */ |
| 105 | void |
| 106 | remove(const Name& keyName); |
| 107 | |
| 108 | /** |
| 109 | * @brief Get a key with @p keyName from the container |
| 110 | * @throw std::invalid_argument @p keyName does not match the identity |
| 111 | * @throw Pib::Error the key does not exist |
| 112 | */ |
| 113 | Key |
| 114 | get(const Name& keyName) const; |
| 115 | |
| 116 | /** |
| 117 | * @brief Check if the container is consistent with the backend storage |
| 118 | * |
| 119 | * @note this method is heavyweight and should be used in debugging mode only. |
| 120 | */ |
| 121 | bool |
| 122 | isConsistent() const; |
| 123 | |
| 124 | NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 125 | /** |
| 126 | * @brief Create key container for @p identity |
| 127 | * @param impl The PIB backend implementation. |
| 128 | */ |
| 129 | KeyContainer(const Name& identity, shared_ptr<PibImpl> impl); |
| 130 | |
| 131 | const std::set<Name>& |
| 132 | getKeyNames() const |
| 133 | { |
| 134 | return m_keyNames; |
| 135 | } |
| 136 | |
| 137 | const std::unordered_map<Name, shared_ptr<detail::KeyImpl>>& |
| 138 | getLoadedKeys() const |
| 139 | { |
| 140 | return m_keys; |
| 141 | } |
| 142 | |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 143 | private: |
| 144 | Name m_identity; |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 145 | std::set<Name> m_keyNames; |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 146 | /// @brief Cache of loaded detail::KeyImpl. |
| 147 | mutable std::unordered_map<Name, shared_ptr<detail::KeyImpl>> m_keys; |
| 148 | |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 149 | shared_ptr<PibImpl> m_impl; |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 150 | friend class detail::IdentityImpl; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 153 | } // namespace pib |
| 154 | |
| 155 | using pib::KeyContainer; |
| 156 | |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 157 | } // namespace security |
| 158 | } // namespace ndn |
| 159 | |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame] | 160 | #endif // NDN_SECURITY_PIB_KEY_CONTAINER_HPP |