blob: 7b4391019c762238633cb3a6d17a01c71a168afb [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -08002/**
Junxiao Shidf4b24e2016-07-14 21:41:43 +00003 * Copyright (c) 2013-2016 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyev95e8c2f2014-02-06 17:29:30 -080020 */
21
22#ifndef NDN_NAME_COMPONENT_HPP
23#define NDN_NAME_COMPONENT_HPP
24
25#include "common.hpp"
26#include "encoding/block.hpp"
Alexander Afanasyev74633892015-02-08 18:08:46 -080027#include "encoding/block-helpers.hpp"
Alexander Afanasyev15f67312014-07-22 15:11:09 -070028#include "util/time.hpp"
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080029
30namespace ndn {
31namespace name {
32
Alexander Afanasyev15f67312014-07-22 15:11:09 -070033/// @brief Segment marker for NDN naming conventions
34static const uint8_t SEGMENT_MARKER = 0x00;
35/// @brief Segment offset marker for NDN naming conventions
36static const uint8_t SEGMENT_OFFSET_MARKER = 0xFB;
37/// @brief Version marker for NDN naming conventions
38static const uint8_t VERSION_MARKER = 0xFD;
39/// @brief Timestamp marker for NDN naming conventions
40static const uint8_t TIMESTAMP_MARKER = 0xFC;
41/// @brief Sequence number marker for NDN naming conventions
42static const uint8_t SEQUENCE_NUMBER_MARKER = 0xFE;
43
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080044/**
Alexander Afanasyev3aeeaeb2014-04-22 23:34:23 -070045 * @brief Component holds a read-only name component value.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080046 */
47class Component : public Block
48{
49public:
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070050 /**
Alexander Afanasyev2a7f7202014-04-23 14:25:29 -070051 * @brief Error that can be thrown from name::Component
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070052 */
Alexander Afanasyev2a7f7202014-04-23 14:25:29 -070053 class Error : public Block::Error
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070054 {
55 public:
56 explicit
57 Error(const std::string& what)
Alexander Afanasyev2a7f7202014-04-23 14:25:29 -070058 : Block::Error(what)
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070059 {
60 }
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070061 };
62
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080063 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -070064 * Create a new name::Component with an empty value
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080065 */
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070066 Component();
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080067
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -080068 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -070069 * @brief Create name::Component from a wire block
70 *
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060071 * @param wire tlv::NameComponent Block from which to create name::Component
72 * @throws Error if wire.type() is not tlv::NameComponent
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -080073 *
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070074 * Any block can be implicitly converted to name::Component
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -080075 */
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070076 Component(const Block& wire);
77
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080078 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -070079 * @brief Create a new name::Component from the buffer pointer (buffer pointer will be copied)
80 *
81 * @param buffer A pointer to an immutable buffer
82 *
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060083 * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload.
Alexander Afanasyev770827c2014-05-13 17:42:55 -070084 * Note that this method **will not** allocate new memory for and copy the payload until
85 * toWire() method is called.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080086 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070087 explicit
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070088 Component(const ConstBufferPtr& buffer);
89
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080090 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -070091 * @brief Create a new name::Component from the buffer (data from buffer will be copied)
92 * @param buffer A reference to the buffer
93 *
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060094 * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload.
Alexander Afanasyev770827c2014-05-13 17:42:55 -070095 * Note that this method **will** allocate new memory for and copy the payload.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080096 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070097 explicit
Alexander Afanasyev770827c2014-05-13 17:42:55 -070098 Component(const Buffer& buffer);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080099
100 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700101 * @brief Create a new name::Component from the buffer (data from buffer will be copied)
102 * @param buffer A pointer to the first byte of the buffer
103 * @param bufferSize Size of the buffer
104 *
Steve DiBenedetto54ce6682014-07-22 13:22:57 -0600105 * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload.
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700106 * Note that this method **will** allocate new memory for and copy the payload.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800107 */
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700108 Component(const uint8_t* buffer, size_t bufferSize);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800109
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700110 /**
Alexander Afanasyev74633892015-02-08 18:08:46 -0800111 * @brief Create a new name::Component frome the range [@p first, @p last) of bytes
112 * @param first Iterator pointing to the beginning of the buffer
113 * @param last Iterator pointing to the ending of the buffer
114 * @tparam Iterator iterator type satisfying at least InputIterator concept. Implementation
115 * is more optimal when the iterator type satisfies RandomAccessIterator concept.
116 * It is required that sizeof(std::iterator_traits<Iterator>::value_type) == 1.
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700117 *
Steve DiBenedetto54ce6682014-07-22 13:22:57 -0600118 * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload.
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700119 * Note that this method **will** allocate new memory for and copy the payload.
120 */
Alexander Afanasyev74633892015-02-08 18:08:46 -0800121 template<class Iterator>
122 Component(Iterator first, Iterator last);
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800123
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700124 /**
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 DiBenedetto54ce6682014-07-22 13:22:57 -0600130 * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload.
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700131 * Note that this method **will** allocate new memory for and copy the payload.
132 */
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800133 explicit
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700134 Component(const char* str);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800135
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700136 /**
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 DiBenedetto54ce6682014-07-22 13:22:57 -0600142 * This constructor will create a new tlv::NameComponent Block with `buffer` as a payload.
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700143 * Note that this method **will** allocate new memory for and copy the payload.
144 */
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800145 explicit
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700146 Component(const std::string& str);
147
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800148 /**
149 * @brief Fast encoding or block size estimation
150 */
Alexander Afanasyev74633892015-02-08 18:08:46 -0800151 template<encoding::Tag TAG>
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800152 size_t
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700153 wireEncode(EncodingImpl<TAG>& encoder) const;
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700154
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800155 /**
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700156 * @brief Encode to a wire format
157 */
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700158 const Block&
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700159 wireEncode() const;
160
161 /**
162 * @brief Decode from the wire format
163 */
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700164 void
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700165 wireDecode(const Block& wire);
166
167 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700168 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800178 * @param beginOffset The offset in escapedString of the beginning of the portion to decode.
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700179 * @param endOffset The offset in escapedString of the end of the portion to decode.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800180 */
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700181 static Component
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700182 fromEscapedString(const char* escapedString, size_t beginOffset, size_t endOffset);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800183
184 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700185 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800188 */
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700189 static Component
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700190 fromEscapedString(const char* escapedString)
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800191 {
Davide Pesaventodfe9c6b2014-08-25 21:17:10 +0200192 return fromEscapedString(escapedString, 0, std::char_traits<char>::length(escapedString));
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800193 }
194
195 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700196 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800199 */
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700200 static Component
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800201 fromEscapedString(const std::string& escapedString)
202 {
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700203 return fromEscapedString(escapedString.c_str(), 0, escapedString.size());
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800204 }
205
206 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700207 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800214 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700215 DEPRECATED(
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700216 void
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700217 toEscapedString(std::ostream& os) const)
218 {
219 return toUri(os);
220 }
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700221
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800222 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700223 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800230 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700231 DEPRECATED(
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700232 std::string
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700233 toEscapedString() const)
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800234 {
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700235 return toUri();
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800236 }
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800237
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700238 /**
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 Afanasyev9c578182014-05-14 17:28:28 -0700246 toUri(std::ostream& os) const;
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800247
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700248 /**
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 Afanasyev15f67312014-07-22 15:11:09 -0700256 toUri() const;
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700257
Alexander Afanasyev0f232c52014-10-23 13:07:31 -0700258 ////////////////////////////////////////////////////////////////////////////////
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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800311 /**
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700312 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800316 * @return The integer number.
317 */
318 uint64_t
319 toNumber() const;
320
321 /**
Alexander Afanasyev15f67312014-07-22 15:11:09 -0700322 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800341 */
342 uint64_t
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700343 toVersion() const;
344
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800345 /**
Alexander Afanasyev15f67312014-07-22 15:11:09 -0700346 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800352 */
353 uint64_t
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700354 toSegment() const;
355
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800356 /**
Alexander Afanasyev15f67312014-07-22 15:11:09 -0700357 * @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 Afanasyev0f232c52014-10-23 13:07:31 -0700389 ////////////////////////////////////////////////////////////////////////////////
390
Alexander Afanasyev15f67312014-07-22 15:11:09 -0700391 /**
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700392 * @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 Afanasyev95e8c2f2014-02-06 17:29:30 -0800397 * @return The component value.
398 */
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700399 static Component
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800400 fromNumber(uint64_t number);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800401
Alexander Afanasyev15f67312014-07-22 15:11:09 -0700402 /**
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 Afanasyev6486d522014-10-23 14:14:11 -0700466 ////////////////////////////////////////////////////////////////////////////////
467
468 /**
469 * @brief Check if the component is GenericComponent
470 */
471 bool
472 isGeneric() const;
473
474 /**
475 * @brief Check if the component is ImplicitSha256DigestComponent
476 */
477 bool
478 isImplicitSha256Digest() const;
479
480 /**
481 * @brief Create ImplicitSha256DigestComponent component
482 */
483 static Component
484 fromImplicitSha256Digest(const ConstBufferPtr& digest);
485
486 /**
487 * @brief Create ImplicitSha256DigestComponent component
488 */
489 static Component
490 fromImplicitSha256Digest(const uint8_t* digest, size_t digestSize);
491
492 ////////////////////////////////////////////////////////////////////////////////
493
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700494 bool
495 empty() const
496 {
Junxiao Shidf4b24e2016-07-14 21:41:43 +0000497 return value_size() == 0;
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700498 }
499
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800500 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700501 * @brief Check if this is the same component as other
502 *
503 * @param other The other Component to compare with
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800504 * @return true if the components are equal, otherwise false.
505 */
506 bool
Junxiao Shidf4b24e2016-07-14 21:41:43 +0000507 equals(const Component& other) const;
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800508
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800509 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700510 * @brief Compare this to the other Component using NDN canonical ordering
511 *
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800512 * @param other The other Component to compare with.
Joao Pereiraaa8fd162015-06-05 16:35:15 -0400513 * @retval negative this comes before other in canonical ordering
514 * @retval zero this equals other
515 * @retval positive this comes after other in canonical ordering
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800516 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700517 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800518 */
519 int
520 compare(const Component& other) const;
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800521
522 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700523 * @brief Check if this is the same component as other
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800524 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700525 * @param other The other Component to compare with.
526 * @return true if the components are equal, otherwise false.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800527 */
528 bool
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700529 operator==(const Component& other) const
530 {
531 return equals(other);
532 }
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700533
534 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700535 * @brief Check if this is not the same component as other
536 * @param other The other Component to compare with
537 * @return true if the components are not equal, otherwise false
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700538 */
539 bool
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700540 operator!=(const Component& other) const
541 {
542 return !equals(other);
543 }
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700544
545 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700546 * @brief Check if the *this is less than or equal to the other in NDN canonical ordering
547 * @param other The other Component to compare with
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700548 *
549 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
550 */
551 bool
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700552 operator<=(const Component& other) const
553 {
554 return compare(other) <= 0;
555 }
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800556
557 /**
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700558 * @brief Check if the *this is less than the other in NDN canonical ordering
559 * @param other The other Component to compare with
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800560 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700561 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800562 */
563 bool
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700564 operator<(const Component& other) const
565 {
566 return compare(other) < 0;
567 }
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800568
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700569 /**
570 * @brief Check if the *this is greater or equal than the other in NDN canonical ordering
571 * @param other The other Component to compare with
572 *
573 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
574 */
575 bool
576 operator>=(const Component& other) const
577 {
578 return compare(other) >= 0;
579 }
580
581 /**
582 * @brief Check if the *this is greater than the other in NDN canonical ordering
583 * @param other The other Component to compare with
584 *
585 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
586 */
587 bool
588 operator>(const Component& other) const
589 {
590 return compare(other) > 0;
591 }
592
Junxiao Shidf4b24e2016-07-14 21:41:43 +0000593 Component
594 getSuccessor() const;
595
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700596 // !!! NOTE TO IMPLEMENTOR !!!
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700597 //
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700598 // This class MUST NOT contain any data fields.
599 // Block can be reinterpret_cast'ed as Component type.
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800600};
601
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700602inline std::ostream&
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700603operator<<(std::ostream& os, const Component& component)
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800604{
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700605 component.toUri(os);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800606 return os;
607}
608
Alexander Afanasyev74633892015-02-08 18:08:46 -0800609template<class Iterator>
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700610inline
Alexander Afanasyev74633892015-02-08 18:08:46 -0800611Component::Component(Iterator first, Iterator last)
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700612 : Block(makeBinaryBlock(tlv::NameComponent, first, last))
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -0700613{
614}
615
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800616} // namespace name
617} // namespace ndn
618
619#endif // NDN_NAME_COMPONENT_HPP