blob: b34cb74b75df16aa487b30c31fd9a1e69b80dd44 [file] [log] [blame]
Yingdi Yuea382942015-07-17 23:20:44 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2015 Regents of the University of California.
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
22#ifndef NDN_SECURITY_ADDITIONAL_DESCRIPTION_HPP
23#define NDN_SECURITY_ADDITIONAL_DESCRIPTION_HPP
24
25#include "../common.hpp"
26#include "../encoding/tlv.hpp"
27#include "../encoding/block.hpp"
28#include <map>
29
30namespace ndn {
31namespace security {
32
33/**
34 * @brief Abstraction of AdditionalDescription
35 * @sa docs/tutorials/certificate-format.rst
36 */
37class AdditionalDescription
38{
39public:
40 class Error : public tlv::Error
41 {
42 public:
43 explicit
44 Error(const std::string& what)
45 : tlv::Error(what)
46 {
47 }
48 };
49
50 typedef std::map<std::string, std::string>::iterator iterator;
51 typedef std::map<std::string, std::string>::const_iterator const_iterator;
52
53public:
54
55 /**
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
81 iterator
82 begin();
83
84 iterator
85 end();
86
87 const_iterator
88 begin() const;
89
90 const_iterator
91 end() const;
92
93 /** @brief Fast encoding or block size estimation
94 */
95 template<encoding::Tag TAG>
96 size_t
97 wireEncode(EncodingImpl<TAG>& encoder) const;
98
99 /** @brief Encode ValidityPeriod into TLV block
100 */
101 const Block&
102 wireEncode() const;
103
104 /** @brief Decode ValidityPeriod from TLV block
105 * @throw Error when an invalid TLV block supplied
106 */
107 void
108 wireDecode(const Block& wire);
109
110public: // EqualityComparable concept
111
112 bool
113 operator==(const AdditionalDescription& other) const;
114
115 bool
116 operator!=(const AdditionalDescription& other) const;
117
118private:
119
120 std::map<std::string, std::string> m_info;
121
122 mutable Block m_wire;
123};
124
125std::ostream&
126operator<<(std::ostream& os, const AdditionalDescription& period);
127
128} // namespace security
129} // namespace ndn
130
131#endif // NDN_SECURITY_ADDITIONAL_DESCRIPTION_HPP