Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 20 | * |
| 21 | * @author Jeff Thompson <jefft0@remap.ucla.edu> |
| 22 | * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html> |
| 23 | * @author Zhenkai Zhu <http://irl.cs.ucla.edu/~zhenkai/> |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #ifndef NDN_NAME_COMPONENT_HPP |
| 27 | #define NDN_NAME_COMPONENT_HPP |
| 28 | |
| 29 | #include "common.hpp" |
| 30 | #include "encoding/block.hpp" |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 31 | #include "util/time.hpp" |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 32 | |
| 33 | namespace ndn { |
| 34 | namespace name { |
| 35 | |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 36 | /// @brief Segment marker for NDN naming conventions |
| 37 | static const uint8_t SEGMENT_MARKER = 0x00; |
| 38 | /// @brief Segment offset marker for NDN naming conventions |
| 39 | static const uint8_t SEGMENT_OFFSET_MARKER = 0xFB; |
| 40 | /// @brief Version marker for NDN naming conventions |
| 41 | static const uint8_t VERSION_MARKER = 0xFD; |
| 42 | /// @brief Timestamp marker for NDN naming conventions |
| 43 | static const uint8_t TIMESTAMP_MARKER = 0xFC; |
| 44 | /// @brief Sequence number marker for NDN naming conventions |
| 45 | static const uint8_t SEQUENCE_NUMBER_MARKER = 0xFE; |
| 46 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 47 | /** |
Alexander Afanasyev | 3aeeaeb | 2014-04-22 23:34:23 -0700 | [diff] [blame] | 48 | * @brief Component holds a read-only name component value. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 49 | */ |
| 50 | class Component : public Block |
| 51 | { |
| 52 | public: |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 53 | /** |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 54 | * @brief Error that can be thrown from name::Component |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 55 | */ |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 56 | class Error : public Block::Error |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 57 | { |
| 58 | public: |
| 59 | explicit |
| 60 | Error(const std::string& what) |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 61 | : Block::Error(what) |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 62 | { |
| 63 | } |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 66 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 67 | * Create a new name::Component with an empty value |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 68 | */ |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 69 | Component(); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 70 | |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 71 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 72 | * @brief Create name::Component from a wire block |
| 73 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 74 | * @param wire tlv::NameComponent Block from which to create name::Component |
| 75 | * @throws Error if wire.type() is not tlv::NameComponent |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 76 | * |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 77 | * Any block can be implicitly converted to name::Component |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 78 | */ |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 79 | Component(const Block& wire); |
| 80 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 81 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 82 | * @brief Create a new name::Component from the buffer pointer (buffer pointer will be copied) |
| 83 | * |
| 84 | * @param buffer A pointer to an immutable buffer |
| 85 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 86 | * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 87 | * Note that this method **will not** allocate new memory for and copy the payload until |
| 88 | * toWire() method is called. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 89 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 90 | explicit |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 91 | Component(const ConstBufferPtr& buffer); |
| 92 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 93 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 94 | * @brief Create a new name::Component from the buffer (data from buffer will be copied) |
| 95 | * @param buffer A reference to the buffer |
| 96 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 97 | * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 98 | * Note that this method **will** allocate new memory for and copy the payload. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 99 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 100 | explicit |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 101 | Component(const Buffer& buffer); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 102 | |
| 103 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 104 | * @brief Create a new name::Component from the buffer (data from buffer will be copied) |
| 105 | * @param buffer A pointer to the first byte of the buffer |
| 106 | * @param bufferSize Size of the buffer |
| 107 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 108 | * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 109 | * Note that this method **will** allocate new memory for and copy the payload. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 110 | */ |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 111 | Component(const uint8_t* buffer, size_t bufferSize); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 112 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 113 | /** |
| 114 | * @brief Create a new name::Component from the buffer (data from buffer will be copied) |
| 115 | * @param begin Iterator pointing to the beginning of the buffer |
| 116 | * @param end Iterator pointing to the ending of the buffer |
| 117 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 118 | * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 119 | * Note that this method **will** allocate new memory for and copy the payload. |
| 120 | */ |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 121 | template<class InputIterator> |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 122 | Component(InputIterator begin, InputIterator end); |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 123 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 124 | /** |
| 125 | * @brief Create a new name::Component from the C string (data from string will be copied) |
| 126 | * |
| 127 | * @param str Zero-ended string. Note that this string will be interpreted as is (i.e., |
| 128 | * it will not be interpreted as URI) |
| 129 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 130 | * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 131 | * Note that this method **will** allocate new memory for and copy the payload. |
| 132 | */ |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 133 | explicit |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 134 | Component(const char* str); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 135 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 136 | /** |
| 137 | * @brief Create a new name::Component from the STL string (data from string will be copied) |
| 138 | * |
| 139 | * @param str Const reference to STL string. Note that this string will be interpreted |
| 140 | * as is (i.e., it will not be interpreted as URI) |
| 141 | * |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 142 | * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 143 | * Note that this method **will** allocate new memory for and copy the payload. |
| 144 | */ |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 145 | explicit |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 146 | Component(const std::string& str); |
| 147 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 148 | /** |
| 149 | * @brief Fast encoding or block size estimation |
| 150 | */ |
| 151 | template<bool T> |
| 152 | size_t |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 153 | wireEncode(EncodingImpl<T>& block) const; |
| 154 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 155 | /** |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 156 | * @brief Encode to a wire format |
| 157 | */ |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 158 | const Block& |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 159 | wireEncode() const; |
| 160 | |
| 161 | /** |
| 162 | * @brief Decode from the wire format |
| 163 | */ |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 164 | void |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 165 | wireDecode(const Block& wire); |
| 166 | |
| 167 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 168 | * @brief Create name::Component by decoding the escapedString between beginOffset and |
| 169 | * endOffset according to the NDN URI Scheme. |
| 170 | * |
| 171 | * If the escaped string is "", "." or ".." then return an empty name::Component. Note |
| 172 | * that an empty name::Component should not be added to Name and if attempted, an |
| 173 | * exception will be thrown. |
| 174 | * |
| 175 | * @param escapedString String containing NDN URI-encoded name |
| 176 | * component. [escapedString+beginOffset, beginOffset+endOffset) |
| 177 | * must be a valid memory buffer. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 178 | * @param beginOffset The offset in escapedString of the beginning of the portion to decode. |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 179 | * @param endOffset The offset in escapedString of the end of the portion to decode. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 180 | */ |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 181 | static Component |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 182 | fromEscapedString(const char* escapedString, size_t beginOffset, size_t endOffset); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 183 | |
| 184 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 185 | * @brief Create name::Component by decoding the escapedString according to the NDN URI Scheme |
| 186 | * |
| 187 | * This overload is a convenience wrapper for fromEscapedString(char*,size_t,size) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 188 | */ |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 189 | static Component |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 190 | fromEscapedString(const char* escapedString) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 191 | { |
Davide Pesavento | dfe9c6b | 2014-08-25 21:17:10 +0200 | [diff] [blame] | 192 | return fromEscapedString(escapedString, 0, std::char_traits<char>::length(escapedString)); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 196 | * @brief Create name::Component by decoding the escapedString according to the NDN URI Scheme |
| 197 | * |
| 198 | * This overload is a convenience wrapper for fromEscapedString(char*,size_t,size) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 199 | */ |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 200 | static Component |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 201 | fromEscapedString(const std::string& escapedString) |
| 202 | { |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 203 | return fromEscapedString(escapedString.c_str(), 0, escapedString.size()); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 207 | * @brief Write *this to the output stream, escaping characters according to the NDN URI Scheme |
| 208 | * |
| 209 | * @deprecated Use toUri(std::ostream&) instead |
| 210 | * |
| 211 | * This also adds "..." to a value with zero or more "." |
| 212 | * |
| 213 | * @param os The output stream to where write the URI escaped version *this |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 214 | */ |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 215 | DEPRECATED( |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 216 | void |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 217 | toEscapedString(std::ostream& os) const) |
| 218 | { |
| 219 | return toUri(os); |
| 220 | } |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 221 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 222 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 223 | * @brief Convert *this by escaping characters according to the NDN URI Scheme |
| 224 | * |
| 225 | * @deprecated Use toUri() instead |
| 226 | * |
| 227 | * This also adds "..." to a value with zero or more "." |
| 228 | * |
| 229 | * @return The escaped string |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 230 | */ |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 231 | DEPRECATED( |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 232 | std::string |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 233 | toEscapedString() const) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 234 | { |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 235 | return toUri(); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 236 | } |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 237 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 238 | /** |
| 239 | * @brief Write *this to the output stream, escaping characters according to the NDN URI Scheme |
| 240 | * |
| 241 | * This also adds "..." to a value with zero or more "." |
| 242 | * |
| 243 | * @param os The output stream to where write the URI escaped version *this |
| 244 | */ |
| 245 | void |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 246 | toUri(std::ostream& os) const; |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 247 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 248 | /** |
| 249 | * @brief Convert *this by escaping characters according to the NDN URI Scheme |
| 250 | * |
| 251 | * This also adds "..." to a value with zero or more "." |
| 252 | * |
| 253 | * @return The escaped string |
| 254 | */ |
| 255 | std::string |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 256 | toUri() const; |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 257 | |
Alexander Afanasyev | 0f232c5 | 2014-10-23 13:07:31 -0700 | [diff] [blame] | 258 | //////////////////////////////////////////////////////////////////////////////// |
| 259 | |
| 260 | /** |
| 261 | * @brief Check if the component is nonNegativeInteger |
| 262 | * @see http://named-data.net/doc/ndn-tlv/tlv.html#non-negative-integer-encoding |
| 263 | */ |
| 264 | bool |
| 265 | isNumber() const; |
| 266 | |
| 267 | /** |
| 268 | * @brief Check if the component is NameComponentWithMarker per NDN naming conventions |
| 269 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 270 | */ |
| 271 | bool |
| 272 | isNumberWithMarker(uint8_t marker) const; |
| 273 | |
| 274 | /** |
| 275 | * @brief Check if the component is version per NDN naming conventions |
| 276 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 277 | */ |
| 278 | bool |
| 279 | isVersion() const; |
| 280 | |
| 281 | /** |
| 282 | * @brief Check if the component is segment number per NDN naming conventions |
| 283 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 284 | */ |
| 285 | bool |
| 286 | isSegment() const; |
| 287 | |
| 288 | /** |
| 289 | * @brief Check if the component is segment offset per NDN naming conventions |
| 290 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 291 | */ |
| 292 | bool |
| 293 | isSegmentOffset() const; |
| 294 | |
| 295 | /** |
| 296 | * @brief Check if the component is timestamp per NDN naming conventions |
| 297 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 298 | */ |
| 299 | bool |
| 300 | isTimestamp() const; |
| 301 | |
| 302 | /** |
| 303 | * @brief Check if the component is sequence number per NDN naming conventions |
| 304 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 305 | */ |
| 306 | bool |
| 307 | isSequenceNumber() const; |
| 308 | |
| 309 | //////////////////////////////////////////////////////////////////////////////// |
| 310 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 311 | /** |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 312 | * @brief Interpret this name component as nonNegativeInteger |
| 313 | * |
| 314 | * @see http://named-data.net/doc/ndn-tlv/tlv.html#non-negative-integer-encoding |
| 315 | * |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 316 | * @return The integer number. |
| 317 | */ |
| 318 | uint64_t |
| 319 | toNumber() const; |
| 320 | |
| 321 | /** |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 322 | * @brief Interpret this name component as NameComponentWithMarker |
| 323 | * |
| 324 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 325 | * |
| 326 | * @param marker 1-byte octet of the marker |
| 327 | * @return The integer number. |
| 328 | * @throws Error if name component does not have the specified marker. |
| 329 | * tlv::Error if format does not follow NameComponentWithMarker specification. |
| 330 | */ |
| 331 | uint64_t |
| 332 | toNumberWithMarker(uint8_t marker) const; |
| 333 | |
| 334 | /** |
| 335 | * @brief Interpret as version component using NDN naming conventions |
| 336 | * |
| 337 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 338 | * |
| 339 | * @throws Error if name component does not have the specified marker. |
| 340 | * tlv::Error if format does not follow NameComponentWithMarker specification. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 341 | */ |
| 342 | uint64_t |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 343 | toVersion() const; |
| 344 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 345 | /** |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 346 | * @brief Interpret as segment number component using NDN naming conventions |
| 347 | * |
| 348 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 349 | * |
| 350 | * @throws Error if name component does not have the specified marker. |
| 351 | * tlv::Error if format does not follow NameComponentWithMarker specification. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 352 | */ |
| 353 | uint64_t |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 354 | toSegment() const; |
| 355 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 356 | /** |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 357 | * @brief Interpret as segment offset component using NDN naming conventions |
| 358 | * |
| 359 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 360 | * |
| 361 | * @throws Error if name component does not have the specified marker. |
| 362 | * tlv::Error if format does not follow NameComponentWithMarker specification. |
| 363 | */ |
| 364 | uint64_t |
| 365 | toSegmentOffset() const; |
| 366 | |
| 367 | /** |
| 368 | * @brief Interpret as timestamp component using NDN naming conventions |
| 369 | * |
| 370 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 371 | * |
| 372 | * @throws Error if name component does not have the specified marker. |
| 373 | * tlv::Error if format does not follow NameComponentWithMarker specification. |
| 374 | */ |
| 375 | time::system_clock::TimePoint |
| 376 | toTimestamp() const; |
| 377 | |
| 378 | /** |
| 379 | * @brief Interpret as sequence number component using NDN naming conventions |
| 380 | * |
| 381 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 382 | * |
| 383 | * @throws Error if name component does not have the specified marker. |
| 384 | * tlv::Error if format does not follow NameComponentWithMarker specification. |
| 385 | */ |
| 386 | uint64_t |
| 387 | toSequenceNumber() const; |
| 388 | |
Alexander Afanasyev | 0f232c5 | 2014-10-23 13:07:31 -0700 | [diff] [blame] | 389 | //////////////////////////////////////////////////////////////////////////////// |
| 390 | |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 391 | /** |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 392 | * @brief Create a component encoded as nonNegativeInteger |
| 393 | * |
| 394 | * @see http://named-data.net/doc/ndn-tlv/tlv.html#non-negative-integer-encoding |
| 395 | * |
| 396 | * @param number The non-negative number |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 397 | * @return The component value. |
| 398 | */ |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 399 | static Component |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 400 | fromNumber(uint64_t number); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 401 | |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 402 | /** |
| 403 | * @brief Create a component encoded as NameComponentWithMarker |
| 404 | * |
| 405 | * NameComponentWithMarker is defined as: |
| 406 | * |
| 407 | * NameComponentWithMarker ::= NAME-COMPONENT-TYPE TLV-LEGTH |
| 408 | * Marker |
| 409 | * includedNonNegativeInteger |
| 410 | * Marker ::= BYTE |
| 411 | * includedNonNegativeInteger ::= BYTE{1,2,4,8} |
| 412 | * NDN-TLV := TLV-TYPE TLV-LENGTH TLV-VALUE? |
| 413 | * TLV-TYPE := VAR-NUMBER |
| 414 | * TLV-LENGTH := VAR-NUMBER |
| 415 | * TLV-VALUE := BYTE+ |
| 416 | * |
| 417 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 418 | * |
| 419 | * @param marker 1-byte marker octet |
| 420 | * @param number The non-negative number |
| 421 | * @return The component value. |
| 422 | */ |
| 423 | static Component |
| 424 | fromNumberWithMarker(uint8_t marker, uint64_t number); |
| 425 | |
| 426 | /** |
| 427 | * @brief Create version component using NDN naming conventions |
| 428 | * |
| 429 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 430 | */ |
| 431 | static Component |
| 432 | fromVersion(uint64_t version); |
| 433 | |
| 434 | /** |
| 435 | * @brief Create segment number component using NDN naming conventions |
| 436 | * |
| 437 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 438 | */ |
| 439 | static Component |
| 440 | fromSegment(uint64_t segmentNo); |
| 441 | |
| 442 | /** |
| 443 | * @brief Create segment offset component using NDN naming conventions |
| 444 | * |
| 445 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 446 | */ |
| 447 | static Component |
| 448 | fromSegmentOffset(uint64_t offset); |
| 449 | |
| 450 | /** |
| 451 | * @brief Create sequence number component using NDN naming conventions |
| 452 | * |
| 453 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 454 | */ |
| 455 | static Component |
| 456 | fromTimestamp(const time::system_clock::TimePoint& timePoint); |
| 457 | |
| 458 | /** |
| 459 | * @brief Create sequence number component using NDN naming conventions |
| 460 | * |
| 461 | * @see http://named-data.net/doc/tech-memos/naming-conventions.pdf |
| 462 | */ |
| 463 | static Component |
| 464 | fromSequenceNumber(uint64_t seqNo); |
| 465 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 466 | bool |
| 467 | empty() const |
| 468 | { |
| 469 | return !hasValue(); |
| 470 | } |
| 471 | |
Shuo Chen | 5aa8c74 | 2014-06-22 15:00:02 +0800 | [diff] [blame] | 472 | Component |
| 473 | getSuccessor() const; |
| 474 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 475 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 476 | * @brief Check if this is the same component as other |
| 477 | * |
| 478 | * @param other The other Component to compare with |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 479 | * @return true if the components are equal, otherwise false. |
| 480 | */ |
| 481 | bool |
| 482 | equals(const Component& other) const |
| 483 | { |
| 484 | if (value_size() != other.value_size()) |
| 485 | return false; |
Alexander Afanasyev | 60c8681 | 2014-02-20 15:19:33 -0800 | [diff] [blame] | 486 | if (value_size() == 0 /* == other.value_size()*/) |
| 487 | return true; |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 488 | |
Alexander Afanasyev | 60c8681 | 2014-02-20 15:19:33 -0800 | [diff] [blame] | 489 | // somehow, behavior is wrong on OSX 10.9 when component is empty |
| 490 | // (probably some bug in STL...) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 491 | return std::equal(value_begin(), value_end(), other.value_begin()); |
| 492 | } |
| 493 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 494 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 495 | * @brief Compare this to the other Component using NDN canonical ordering |
| 496 | * |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 497 | * @param other The other Component to compare with. |
| 498 | * @return 0 If they compare equal, -1 if *this comes before other in the canonical ordering, or |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 499 | * 1 if *this comes after other in the canonical ordering. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 500 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 501 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 502 | */ |
| 503 | int |
| 504 | compare(const Component& other) const; |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 505 | |
| 506 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 507 | * @brief Check if this is the same component as other |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 508 | * |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 509 | * @param other The other Component to compare with. |
| 510 | * @return true if the components are equal, otherwise false. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 511 | */ |
| 512 | bool |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 513 | operator==(const Component& other) const |
| 514 | { |
| 515 | return equals(other); |
| 516 | } |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 517 | |
| 518 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 519 | * @brief Check if this is not the same component as other |
| 520 | * @param other The other Component to compare with |
| 521 | * @return true if the components are not equal, otherwise false |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 522 | */ |
| 523 | bool |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 524 | operator!=(const Component& other) const |
| 525 | { |
| 526 | return !equals(other); |
| 527 | } |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 528 | |
| 529 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 530 | * @brief Check if the *this is less than or equal to the other in NDN canonical ordering |
| 531 | * @param other The other Component to compare with |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 532 | * |
| 533 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
| 534 | */ |
| 535 | bool |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 536 | operator<=(const Component& other) const |
| 537 | { |
| 538 | return compare(other) <= 0; |
| 539 | } |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 540 | |
| 541 | /** |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 542 | * @brief Check if the *this is less than the other in NDN canonical ordering |
| 543 | * @param other The other Component to compare with |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 544 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 545 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 546 | */ |
| 547 | bool |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 548 | operator<(const Component& other) const |
| 549 | { |
| 550 | return compare(other) < 0; |
| 551 | } |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 552 | |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 553 | /** |
| 554 | * @brief Check if the *this is greater or equal than the other in NDN canonical ordering |
| 555 | * @param other The other Component to compare with |
| 556 | * |
| 557 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
| 558 | */ |
| 559 | bool |
| 560 | operator>=(const Component& other) const |
| 561 | { |
| 562 | return compare(other) >= 0; |
| 563 | } |
| 564 | |
| 565 | /** |
| 566 | * @brief Check if the *this is greater than the other in NDN canonical ordering |
| 567 | * @param other The other Component to compare with |
| 568 | * |
| 569 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
| 570 | */ |
| 571 | bool |
| 572 | operator>(const Component& other) const |
| 573 | { |
| 574 | return compare(other) > 0; |
| 575 | } |
| 576 | |
| 577 | // !!! NOTE TO IMPLEMENTOR !!! |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 578 | // |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 579 | // This class MUST NOT contain any data fields. |
| 580 | // Block can be reinterpret_cast'ed as Component type. |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 581 | }; |
| 582 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 583 | inline std::ostream& |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 584 | operator<<(std::ostream& os, const Component& component) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 585 | { |
Alexander Afanasyev | 9c57818 | 2014-05-14 17:28:28 -0700 | [diff] [blame] | 586 | component.toUri(os); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 587 | return os; |
| 588 | } |
| 589 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 590 | template<class InputIterator> |
| 591 | inline |
| 592 | Component::Component(InputIterator begin, InputIterator end) |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 593 | : Block(dataBlock(tlv::NameComponent, begin, end)) |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 594 | { |
| 595 | } |
| 596 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 597 | } // namespace name |
| 598 | } // namespace ndn |
| 599 | |
| 600 | #endif // NDN_NAME_COMPONENT_HPP |