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