blob: aea084b1b81ade273fe954e3781635a884b505ed [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompson47eecfc2013-07-07 22:56:46 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonec39fbd2013-10-04 10:56:23 -07005 * @author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
6 * @author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07007 * See COPYING for copyright and distribution information.
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07008 */
9
10#ifndef NDN_NAME_HPP
Jeff Thompson2d27e2f2013-08-09 12:55:00 -070011#define NDN_NAME_HPP
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070012
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080013#include "common.hpp"
14#include "name-component.hpp"
15
Alexander Afanasyevaf283d82014-01-03 13:23:34 -080016#include "encoding/block.hpp"
Wentao Shang77949212014-02-01 23:42:24 -080017#include "encoding/encoding-buffer.hpp"
Jeff Thompson25b4e612013-10-10 16:03:24 -070018
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080019#include <boost/iterator/reverse_iterator.hpp>
20
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070021namespace ndn {
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080022
Jeff Thompsonc7d65502013-11-06 17:22:26 -080023/**
24 * A Name holds an array of Name::Component and represents an NDN name.
25 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -080026class Name : public ptr_lib::enable_shared_from_this<Name> {
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070027public:
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080028 /// @brief Error that can be thrown from the block
29 struct Error : public name::Component::Error { Error(const std::string &what) : name::Component::Error(what) {} };
Alexander Afanasyevaf283d82014-01-03 13:23:34 -080030
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080031 typedef name::Component Component;
32
33 typedef std::vector<Component> component_container;
34
35 typedef Component value_type;
36 typedef void allocator_type;
37 typedef Component& reference;
38 typedef const Component const_reference;
39 typedef Component* pointer;
40 typedef const Component* const_pointer;
41 typedef Component* iterator;
42 typedef const Component* const_iterator;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -070043
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080044 typedef boost::reverse_iterator<iterator> reverse_iterator;
45 typedef boost::reverse_iterator<const_iterator> const_reverse_iterator;
46
47 typedef component_container::difference_type difference_type;
48 typedef component_container::size_type size_type;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -070049
Jeff Thompson443398d2013-07-02 19:45:46 -070050 /**
51 * Create a new Name with no components.
52 */
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -080053 Name()
54 : m_nameBlock(Tlv::Name)
55 {
Jeff Thompson016ed642013-07-02 14:39:06 -070056 }
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -080057
58 /**
59 * @brief Create Name object from wire block
60 *
61 * This is a more efficient equivalent for
62 * @code
63 * Name name;
64 * name.wireDecode(wire);
65 * @endcode
66 */
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -080067 explicit
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -080068 Name(const Block &wire)
69 {
70 m_nameBlock = wire;
71 m_nameBlock.parse();
72 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -070073
Jeff Thompson3f2175b2013-07-31 17:12:47 -070074 /**
Jeff Thompson443398d2013-07-02 19:45:46 -070075 * Parse the uri according to the NDN URI Scheme and create the name with the components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -070076 * @param uri The URI string.
Jeff Thompson443398d2013-07-02 19:45:46 -070077 */
Jeff Thompson3549ef32013-09-25 14:05:17 -070078 Name(const char* uri)
Jeff Thompson67515bd2013-08-15 17:43:22 -070079 {
80 set(uri);
81 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -070082
Jeff Thompsone5f839b2013-06-28 12:50:38 -070083 /**
Jeff Thompson3549ef32013-09-25 14:05:17 -070084 * Parse the uri according to the NDN URI Scheme and create the name with the components.
85 * @param uri The URI string.
86 */
87 Name(const std::string& uri)
88 {
89 set(uri.c_str());
90 }
Jeff Thompsonec39fbd2013-10-04 10:56:23 -070091
Alexander Afanasyev380420b2014-02-09 20:52:29 -080092 /**
93 * @brief Fast encoding or block size estimation
94 */
95 template<bool T>
Wentao Shang77949212014-02-01 23:42:24 -080096 size_t
Alexander Afanasyev380420b2014-02-09 20:52:29 -080097 wireEncode(EncodingImpl<T> &block) const;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -070098
Alexander Afanasyevaf283d82014-01-03 13:23:34 -080099 const Block &
100 wireEncode() const;
Alexander Afanasyev848c61a2014-01-03 13:52:04 -0800101
102 void
103 wireDecode(const Block &wire);
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800104
105 /**
106 * @brief Check if already has wire
107 */
108 bool
109 hasWire() const;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700110
Jeff Thompsonb468c312013-07-01 17:50:14 -0700111 /**
Jeff Thompson67515bd2013-08-15 17:43:22 -0700112 * Parse the uri according to the NDN URI Scheme and set the name with the components.
Jeff Thompson7781b392013-12-17 11:45:59 -0800113 * @param uri The null-terminated URI string.
Jeff Thompson67515bd2013-08-15 17:43:22 -0700114 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700115 void
116 set(const char *uri);
Jeff Thompson67515bd2013-08-15 17:43:22 -0700117
118 /**
Jeff Thompson7781b392013-12-17 11:45:59 -0800119 * Parse the uri according to the NDN URI Scheme and set the name with the components.
120 * @param uri The URI string.
121 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700122 void
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800123 set(const std::string& uri)
124 {
125 set(uri.c_str());
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700126 }
127
Jeff Thompson7781b392013-12-17 11:45:59 -0800128 /**
Jeff Thompson0aa66f22013-09-23 13:02:13 -0700129 * Append a new component, copying from value of length valueLength.
Jeff Thompson26b0d792013-09-23 16:19:01 -0700130 * @return This name so that you can chain calls to append.
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700131 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700132 Name&
133 append(const uint8_t *value, size_t valueLength)
Jeff Thompson0f743452013-09-12 14:23:18 -0700134 {
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800135 m_nameBlock.push_back(Component(value, valueLength));
Jeff Thompson26b0d792013-09-23 16:19:01 -0700136 return *this;
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700137 }
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700138
Alexander Afanasyevbf9671d2014-02-11 13:44:13 -0800139 /**
140 * Append a new component, copying from value of length valueLength.
141 * @return This name so that you can chain calls to append.
142 */
143 template<class InputIterator>
144 Name&
145 append(InputIterator begin, InputIterator end)
146 {
147 m_nameBlock.push_back(Component(begin, end));
148 return *this;
149 }
150
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800151 // /**
152 // * Append a new component, copying from value.
153 // * @return This name so that you can chain calls to append.
154 // */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700155 // Name&
156 // append(const Buffer& value)
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800157 // {
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800158 // m_nameBlock.push_back(value);
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800159 // return *this;
160 // }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700161
162 Name&
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800163 append(const ConstBufferPtr &value)
Jeff Thompson0f743452013-09-12 14:23:18 -0700164 {
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800165 m_nameBlock.push_back(value);
Jeff Thompson26b0d792013-09-23 16:19:01 -0700166 return *this;
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700167 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700168
169 Name&
Jeff Thompson21eb7212013-09-26 09:05:40 -0700170 append(const Component &value)
171 {
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800172 m_nameBlock.push_back(value);
Jeff Thompson21eb7212013-09-26 09:05:40 -0700173 return *this;
174 }
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800175
Alexander Afanasyev594cdb22014-01-03 15:11:33 -0800176 /**
177 * @brief Append name component that represented as a string
178 *
179 * Note that this method is necessary to ensure correctness and unambiguity of
180 * ``append("string")`` operations (both Component and Name can be implicitly
181 * converted from string, each having different outcomes
182 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700183 Name&
Alexander Afanasyev594cdb22014-01-03 15:11:33 -0800184 append(const char *value)
185 {
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800186 m_nameBlock.push_back(Component(value));
Alexander Afanasyev594cdb22014-01-03 15:11:33 -0800187 return *this;
188 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700189
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800190 Name&
191 append(const Block &value)
192 {
Alexander Afanasyev380420b2014-02-09 20:52:29 -0800193 if (value.type() == Tlv::NameComponent)
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800194 m_nameBlock.push_back(value);
Alexander Afanasyev380420b2014-02-09 20:52:29 -0800195 else
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800196 m_nameBlock.push_back(Block(Tlv::NameComponent, value));
Alexander Afanasyev380420b2014-02-09 20:52:29 -0800197
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800198 return *this;
199 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700200
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700201 /**
Jeff Thompson26b0d792013-09-23 16:19:01 -0700202 * Append the components of the given name to this name.
203 * @param name The Name with components to append.
204 * @return This name so that you can chain calls to append.
Jeff Thompson0aa66f22013-09-23 13:02:13 -0700205 */
Jeff Thompson26b0d792013-09-23 16:19:01 -0700206 Name&
207 append(const Name& name);
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700208
Jeff Thompson0aa66f22013-09-23 13:02:13 -0700209 /**
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700210 * Clear all the components.
211 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700212 void
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800213 clear()
214 {
215 m_nameBlock = Block(Tlv::Name);
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700216 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700217
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700218 /**
Jeff Thompsond0159d72013-09-23 13:34:15 -0700219 * Get a new name, constructed as a subset of components.
220 * @param iStartComponent The index if the first component to get.
221 * @param nComponents The number of components starting at iStartComponent.
222 * @return A new name.
223 */
224 Name
225 getSubName(size_t iStartComponent, size_t nComponents) const;
226
227 /**
228 * Get a new name, constructed as a subset of components starting at iStartComponent until the end of the name.
229 * @param iStartComponent The index if the first component to get.
230 * @return A new name.
231 */
232 Name
233 getSubName(size_t iStartComponent) const;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700234
Jeff Thompsond0159d72013-09-23 13:34:15 -0700235 /**
236 * Return a new Name with the first nComponents components of this Name.
Jeff Thompsoneb0358f2013-12-17 10:59:53 -0800237 * @param nComponents The number of prefix components. If nComponents is -N then return the prefix up
238 * to name.size() - N. For example getPrefix(-1) returns the name without the final component.
Jeff Thompsond0159d72013-09-23 13:34:15 -0700239 * @return A new Name.
240 */
241 Name
Jeff Thompsoneb0358f2013-12-17 10:59:53 -0800242 getPrefix(int nComponents) const
Jeff Thompsond0159d72013-09-23 13:34:15 -0700243 {
Jeff Thompsoneb0358f2013-12-17 10:59:53 -0800244 if (nComponents < 0)
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800245 return getSubName(0, m_nameBlock.elements_size() + nComponents);
Jeff Thompsoneb0358f2013-12-17 10:59:53 -0800246 else
247 return getSubName(0, nComponents);
Jeff Thompsond0159d72013-09-23 13:34:15 -0700248 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700249
Jeff Thompsond0159d72013-09-23 13:34:15 -0700250 /**
Jeff Thompsone6063512013-07-01 15:11:28 -0700251 * Encode this name as a URI.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700252 * @return The encoded URI.
Jeff Thompsone6063512013-07-01 15:11:28 -0700253 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700254 std::string
Jeff Thompson0050abe2013-09-17 12:50:25 -0700255 toUri() const;
Jeff Thompsond129ac12013-10-11 14:30:12 -0700256
257 /**
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700258 * @brief Append a component with the number encoded as nonNegativeInteger
259 *
260 * @see http://named-data.net/doc/ndn-tlv/tlv.html#non-negative-integer-encoding
261 *
Steve DiBenedettoc145d492014-03-11 16:35:45 -0600262 * @param number The non-negative number
263 * @return This name so that you can chain calls to append.
264 */
265 Name&
266 appendNumber(uint64_t number)
267 {
268 m_nameBlock.push_back(Component::fromNumber(number));
269 return *this;
270 }
271
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700272 /**
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700273 * @brief An alias for appendNumber(uint64_t)
274 */
275 Name&
276 appendVersion(uint64_t number)
277 {
278 return appendNumber(number);
279 }
280
281 /**
282 * @brief Append a component with the encoded version number (current UNIX timestamp
283 * in milliseconds)
284 */
285 Name&
286 appendVersion();
287
288 /**
289 * @brief An alias for appendNumber(uint64_t)
290 */
291 Name&
292 appendSegment(uint64_t number)
293 {
294 return appendNumber(number);
295 }
296
297 /**
Jeff Thompson3c2ab012013-10-02 14:18:16 -0700298 * Check if this name has the same component count and components as the given name.
299 * @param name The Name to check.
300 * @return true if the names are equal, otherwise false.
301 */
302 bool
303 equals(const Name& name) const;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700304
Jeff Thompson3c2ab012013-10-02 14:18:16 -0700305 /**
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700306 * Check if the N components of this name are the same as the first N components of the given name.
307 * @param name The Name to check.
308 * @return true if this matches the given name, otherwise false. This always returns true if this name is empty.
309 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700310 bool
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800311 isPrefixOf(const Name& name) const;
312
313 bool
314 match(const Name& name) const
315 {
316 return isPrefixOf(name);
317 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700318
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700319 //
320 // vector equivalent interface.
321 //
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800322
323 /**
324 * @brief Check if name is emtpy
325 */
326 bool
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800327 empty() const { return m_nameBlock.elements().empty(); }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700328
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700329 /**
330 * Get the number of components.
331 * @return The number of components.
332 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700333 size_t
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800334 size() const { return m_nameBlock.elements_size(); }
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700335
336 /**
337 * Get the component at the given index.
338 * @param i The index of the component, starting from 0.
339 * @return The name component at the index.
340 */
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700341 const Component&
Alexander Afanasyev8f9aa8bed2013-12-30 15:58:57 -0800342 get(ssize_t i) const
343 {
344 if (i >= 0)
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800345 return reinterpret_cast<const Component&>(m_nameBlock.elements()[i]);
Alexander Afanasyev8f9aa8bed2013-12-30 15:58:57 -0800346 else
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800347 return reinterpret_cast<const Component&>(m_nameBlock.elements()[size() + i]);
348 }
349
350 const Component&
351 operator [] (ssize_t i) const
352 {
353 return get(i);
Alexander Afanasyev8f9aa8bed2013-12-30 15:58:57 -0800354 }
Alexander Afanasyevc2344292014-03-02 00:08:00 +0000355
356 /**
357 * @brief Get component at the specified index
358 *
359 * Unlike get() and operator[] methods, at() checks for out of bounds
360 * and will throw Name::Error when it happens
361 *
362 * @throws Name::Error if index out of bounds
363 */
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800364 const Component&
365 at(ssize_t i) const
366 {
Alexander Afanasyevc2344292014-03-02 00:08:00 +0000367 if ((i >= 0 && i >= size()) || (i < 0 && i < -size()))
368 throw Error("Requested component does not exist (out of bounds)");
369
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800370 return get(i);
371 }
372
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800373 /**
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700374 * @brief Compare this to the other Name using NDN canonical ordering.
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800375 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700376 * If the first components of each name are not equal, this returns -1 if the first comes
377 * before the second using the NDN canonical ordering for name components, or 1 if it
378 * comes after. If they are equal, this compares the second components of each name, etc.
379 * If both names are the same up to the size of the shorter name, this returns -1 if the
380 * first name is shorter than the second or 1 if it is longer. For example, if you
381 * std::sort gives: /a/b/d /a/b/cc /c /c/a /bb . This is intuitive because all names with
382 * the prefix /a are next to each other. But it may be also be counter-intuitive because
383 * /c comes before /bb according to NDN canonical ordering since it is shorter. @param
384 * other The other Name to compare with. @return 0 If they compare equal, -1 if *this
385 * comes before other in the canonical ordering, or 1 if *this comes after other in the
386 * canonical ordering.
387 *
388 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800389 */
390 int
391 compare(const Name& other) const;
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700392
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700393 /**
394 * Append the component
395 * @param component The component of type T.
396 */
397 template<class T> void
398 push_back(const T &component)
399 {
400 append(component);
401 }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700402
Jeff Thompson91737f52013-10-04 11:07:24 -0700403 /**
404 * Check if this name has the same component count and components as the given name.
405 * @param name The Name to check.
406 * @return true if the names are equal, otherwise false.
407 */
408 bool
409 operator == (const Name &name) const { return equals(name); }
410
411 /**
412 * Check if this name has the same component count and components as the given name.
413 * @param name The Name to check.
414 * @return true if the names are not equal, otherwise false.
415 */
416 bool
417 operator != (const Name &name) const { return !equals(name); }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700418
Jeff Thompson82568ad2013-12-17 15:17:40 -0800419 /**
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800420 * Return true if this is less than or equal to the other Name in the NDN canonical ordering.
421 * @param other The other Name to compare with.
422 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700423 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Jeff Thompson82568ad2013-12-17 15:17:40 -0800424 */
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800425 bool
426 operator <= (const Name& other) const { return compare(other) <= 0; }
427
428 /**
429 * Return true if this is less than the other Name in the NDN canonical ordering.
430 * @param other The other Name to compare with.
431 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700432 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800433 */
434 bool
435 operator < (const Name& other) const { return compare(other) < 0; }
436
437 /**
438 * Return true if this is less than or equal to the other Name in the NDN canonical ordering.
439 * @param other The other Name to compare with.
440 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700441 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800442 */
443 bool
444 operator >= (const Name& other) const { return compare(other) >= 0; }
445
446 /**
447 * Return true if this is greater than the other Name in the NDN canonical ordering.
448 * @param other The other Name to compare with.
449 *
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700450 * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order
Jeff Thompsonafc45a92014-01-15 12:42:45 -0800451 */
452 bool
453 operator > (const Name& other) const { return compare(other) > 0; }
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700454
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700455 //
456 // Iterator interface to name components.
457 //
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700458
459 /**
460 * Begin iterator (const).
461 */
462 const_iterator
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800463 begin() const
464 {
465 return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().begin());
466 }
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700467
468 /**
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700469 * End iterator (const).
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800470 *
471 * @todo Check if this crash when there are no elements in the buffer
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700472 */
473 const_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800474 end() const
475 {
476 return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().end());
477 }
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700478
479 /**
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700480 * Reverse begin iterator (const).
481 */
482 const_reverse_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800483 rbegin() const
484 {
485 return const_reverse_iterator(end());
486 }
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700487
488 /**
489 * Reverse end iterator (const).
490 */
491 const_reverse_iterator
Alexander Afanasyev29e5c3d2014-02-11 00:01:10 -0800492 rend() const
493 {
494 return const_reverse_iterator(begin());
495 }
Jeff Thompsonec39fbd2013-10-04 10:56:23 -0700496
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700497private:
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800498 mutable Block m_nameBlock;
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800499};
500
Alexander Afanasyev0df28362014-03-20 17:31:43 -0700501std::ostream&
502operator<<(std::ostream& os, const Name& name);
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800503
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700504inline Name&
505Name::appendVersion()
506{
507 appendNumber(time::toUnixTimestamp(time::system_clock::now()).count());
508 return *this;
509}
510
511inline std::string
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800512Name::toUri() const
Jeff Thompson49e321a2013-10-04 17:35:59 -0700513{
Alexander Afanasyevaf283d82014-01-03 13:23:34 -0800514 std::ostringstream os;
515 os << *this;
516 return os.str();
Jeff Thompson49e321a2013-10-04 17:35:59 -0700517}
518
Alexander Afanasyev0df28362014-03-20 17:31:43 -0700519inline std::istream&
520operator>>(std::istream& is, Name& name)
521{
522 std::string inputString;
523 is >> inputString;
524 name.set(inputString);
525
526 return is;
527}
528
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800529template<bool T>
530inline size_t
531Name::wireEncode(EncodingImpl<T>& blk) const
532{
533 size_t total_len = 0;
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700534
535 for (const_reverse_iterator i = rbegin ();
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800536 i != rend ();
537 ++i)
538 {
539 total_len += i->wireEncode (blk);
540 }
541
542 total_len += blk.prependVarNumber (total_len);
543 total_len += blk.prependVarNumber (Tlv::Name);
544 return total_len;
545}
546
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800547inline const Block &
548Name::wireEncode() const
549{
550 if (m_nameBlock.hasWire())
551 return m_nameBlock;
552
Alexander Afanasyev380420b2014-02-09 20:52:29 -0800553 EncodingEstimator estimator;
554 size_t estimatedSize = wireEncode(estimator);
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700555
Alexander Afanasyev380420b2014-02-09 20:52:29 -0800556 EncodingBuffer buffer(estimatedSize, 0);
557 wireEncode(buffer);
558
559 m_nameBlock = buffer.block();
560 m_nameBlock.parse();
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700561
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800562 return m_nameBlock;
563}
564
565inline void
566Name::wireDecode(const Block &wire)
567{
Alexander Afanasyevc348f832014-02-17 16:35:17 -0800568 if (wire.type() != Tlv::Name)
569 throw Tlv::Error("Unexpected TLV type when decoding Name");
Alexander Afanasyev4b98e8c2014-03-22 19:10:19 -0700570
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800571 m_nameBlock = wire;
572 m_nameBlock.parse();
573}
574
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800575inline bool
576Name::hasWire() const
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800577{
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800578 return m_nameBlock.hasWire();
Alexander Afanasyev52eb20d2014-02-06 18:25:54 -0800579}
580
Alexander Afanasyev95e8c2f2014-02-06 17:29:30 -0800581} // namespace ndn
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700582
583#endif