Yingdi Yu | ea38294 | 2015-07-17 23:20:44 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 Regents of the University of California. |
Yingdi Yu | ea38294 | 2015-07-17 23:20:44 -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 | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 22 | #ifndef NDN_SECURITY_V2_ADDITIONAL_DESCRIPTION_HPP |
| 23 | #define NDN_SECURITY_V2_ADDITIONAL_DESCRIPTION_HPP |
Yingdi Yu | ea38294 | 2015-07-17 23:20:44 -0700 | [diff] [blame] | 24 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 25 | #include "../../common.hpp" |
| 26 | #include "../../encoding/tlv.hpp" |
| 27 | #include "../../encoding/block.hpp" |
Yingdi Yu | ea38294 | 2015-07-17 23:20:44 -0700 | [diff] [blame] | 28 | #include <map> |
| 29 | |
| 30 | namespace ndn { |
| 31 | namespace security { |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 32 | namespace v2 { |
Yingdi Yu | ea38294 | 2015-07-17 23:20:44 -0700 | [diff] [blame] | 33 | |
| 34 | /** |
| 35 | * @brief Abstraction of AdditionalDescription |
| 36 | * @sa docs/tutorials/certificate-format.rst |
| 37 | */ |
| 38 | class AdditionalDescription |
| 39 | { |
| 40 | public: |
| 41 | class Error : public tlv::Error |
| 42 | { |
| 43 | public: |
| 44 | explicit |
| 45 | Error(const std::string& what) |
| 46 | : tlv::Error(what) |
| 47 | { |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | typedef std::map<std::string, std::string>::iterator iterator; |
| 52 | typedef std::map<std::string, std::string>::const_iterator const_iterator; |
| 53 | |
| 54 | public: |
| 55 | |
| 56 | /** |
| 57 | * @brief Create an empty AdditionalDescription |
| 58 | */ |
| 59 | AdditionalDescription() = default; |
| 60 | |
| 61 | /** |
| 62 | * @brief Create AdditionalDescription from @p block |
| 63 | */ |
| 64 | explicit |
| 65 | AdditionalDescription(const Block& block); |
| 66 | |
| 67 | const std::string& |
| 68 | get(const std::string& key) const; |
| 69 | |
| 70 | void |
| 71 | set(const std::string& key, const std::string& value); |
| 72 | |
| 73 | bool |
| 74 | has(const std::string& key) const; |
| 75 | |
| 76 | size_t |
| 77 | size() const |
| 78 | { |
| 79 | return m_info.size(); |
| 80 | } |
| 81 | |
| 82 | iterator |
| 83 | begin(); |
| 84 | |
| 85 | iterator |
| 86 | end(); |
| 87 | |
| 88 | const_iterator |
| 89 | begin() const; |
| 90 | |
| 91 | const_iterator |
| 92 | end() const; |
| 93 | |
| 94 | /** @brief Fast encoding or block size estimation |
| 95 | */ |
| 96 | template<encoding::Tag TAG> |
| 97 | size_t |
| 98 | wireEncode(EncodingImpl<TAG>& encoder) const; |
| 99 | |
| 100 | /** @brief Encode ValidityPeriod into TLV block |
| 101 | */ |
| 102 | const Block& |
| 103 | wireEncode() const; |
| 104 | |
| 105 | /** @brief Decode ValidityPeriod from TLV block |
| 106 | * @throw Error when an invalid TLV block supplied |
| 107 | */ |
| 108 | void |
| 109 | wireDecode(const Block& wire); |
| 110 | |
| 111 | public: // EqualityComparable concept |
| 112 | |
| 113 | bool |
| 114 | operator==(const AdditionalDescription& other) const; |
| 115 | |
| 116 | bool |
| 117 | operator!=(const AdditionalDescription& other) const; |
| 118 | |
| 119 | private: |
| 120 | |
| 121 | std::map<std::string, std::string> m_info; |
| 122 | |
| 123 | mutable Block m_wire; |
| 124 | }; |
| 125 | |
| 126 | std::ostream& |
| 127 | operator<<(std::ostream& os, const AdditionalDescription& period); |
| 128 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 129 | } // namespace v2 |
| 130 | |
| 131 | using v2::AdditionalDescription; |
| 132 | |
Yingdi Yu | ea38294 | 2015-07-17 23:20:44 -0700 | [diff] [blame] | 133 | } // namespace security |
| 134 | } // namespace ndn |
| 135 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 136 | #endif // NDN_SECURITY_V2_ADDITIONAL_DESCRIPTION_HPP |