blob: 5e161325135b2836044af130824be8e536f46632 [file] [log] [blame]
Yingdi Yuea382942015-07-17 23:20:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento88a0d812017-08-19 21:31:42 -04002/*
3 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yuea382942015-07-17 23:20:44 -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
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070022#ifndef NDN_SECURITY_V2_ADDITIONAL_DESCRIPTION_HPP
23#define NDN_SECURITY_V2_ADDITIONAL_DESCRIPTION_HPP
Yingdi Yuea382942015-07-17 23:20:44 -070024
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070025#include "../../common.hpp"
26#include "../../encoding/tlv.hpp"
27#include "../../encoding/block.hpp"
Yingdi Yuea382942015-07-17 23:20:44 -070028#include <map>
29
30namespace ndn {
31namespace security {
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070032namespace v2 {
Yingdi Yuea382942015-07-17 23:20:44 -070033
34/**
35 * @brief Abstraction of AdditionalDescription
36 * @sa docs/tutorials/certificate-format.rst
37 */
38class AdditionalDescription
39{
40public:
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
54public:
Yingdi Yuea382942015-07-17 23:20:44 -070055 /**
56 * @brief Create an empty AdditionalDescription
57 */
58 AdditionalDescription() = default;
59
60 /**
61 * @brief Create AdditionalDescription from @p block
62 */
63 explicit
64 AdditionalDescription(const Block& block);
65
66 const std::string&
67 get(const std::string& key) const;
68
69 void
70 set(const std::string& key, const std::string& value);
71
72 bool
73 has(const std::string& key) const;
74
75 size_t
76 size() const
77 {
78 return m_info.size();
79 }
80
Alexander Afanasyev464da532017-09-02 12:16:32 -040081 bool
82 empty() const
83 {
84 return m_info.empty();
85 }
86
Yingdi Yuea382942015-07-17 23:20:44 -070087 iterator
88 begin();
89
90 iterator
91 end();
92
93 const_iterator
94 begin() const;
95
96 const_iterator
97 end() const;
98
99 /** @brief Fast encoding or block size estimation
100 */
101 template<encoding::Tag TAG>
102 size_t
103 wireEncode(EncodingImpl<TAG>& encoder) const;
104
105 /** @brief Encode ValidityPeriod into TLV block
106 */
107 const Block&
108 wireEncode() const;
109
110 /** @brief Decode ValidityPeriod from TLV block
111 * @throw Error when an invalid TLV block supplied
112 */
113 void
114 wireDecode(const Block& wire);
115
116public: // EqualityComparable concept
Yingdi Yuea382942015-07-17 23:20:44 -0700117 bool
118 operator==(const AdditionalDescription& other) const;
119
120 bool
121 operator!=(const AdditionalDescription& other) const;
122
123private:
Yingdi Yuea382942015-07-17 23:20:44 -0700124 std::map<std::string, std::string> m_info;
125
126 mutable Block m_wire;
127};
128
Davide Pesavento88a0d812017-08-19 21:31:42 -0400129NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(AdditionalDescription);
130
Yingdi Yuea382942015-07-17 23:20:44 -0700131std::ostream&
132operator<<(std::ostream& os, const AdditionalDescription& period);
133
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700134} // namespace v2
135
136using v2::AdditionalDescription;
137
Yingdi Yuea382942015-07-17 23:20:44 -0700138} // namespace security
139} // namespace ndn
140
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700141#endif // NDN_SECURITY_V2_ADDITIONAL_DESCRIPTION_HPP