Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 2 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 5 | * @author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 6 | * @author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 7 | * See COPYING for copyright and distribution information. |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef NDN_NAME_HPP |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 11 | #define NDN_NAME_HPP |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 12 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 13 | #include "common.hpp" |
| 14 | #include "name-component.hpp" |
| 15 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 16 | #include "encoding/block.hpp" |
Wentao Shang | 7794921 | 2014-02-01 23:42:24 -0800 | [diff] [blame] | 17 | #include "encoding/encoding-buffer.hpp" |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 18 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 19 | #include <boost/iterator/reverse_iterator.hpp> |
| 20 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 21 | namespace ndn { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 22 | |
Jeff Thompson | c7d6550 | 2013-11-06 17:22:26 -0800 | [diff] [blame] | 23 | /** |
| 24 | * A Name holds an array of Name::Component and represents an NDN name. |
| 25 | */ |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 26 | class Name : public ptr_lib::enable_shared_from_this<Name> { |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 27 | public: |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 28 | /// @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 Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 30 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 31 | 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 Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 43 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 44 | 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; |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 49 | |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 50 | /** |
| 51 | * Create a new Name with no components. |
| 52 | */ |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 53 | Name() |
| 54 | : m_nameBlock(Tlv::Name) |
| 55 | { |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 56 | } |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 57 | |
| 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 Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 67 | explicit |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 68 | Name(const Block &wire) |
| 69 | { |
| 70 | m_nameBlock = wire; |
| 71 | m_nameBlock.parse(); |
| 72 | } |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 73 | |
| 74 | /** |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 75 | * Parse the uri according to the NDN URI Scheme and create the name with the components. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 76 | * @param uri The URI string. |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 77 | */ |
Jeff Thompson | 3549ef3 | 2013-09-25 14:05:17 -0700 | [diff] [blame] | 78 | Name(const char* uri) |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 79 | { |
| 80 | set(uri); |
| 81 | } |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 82 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 83 | /** |
Jeff Thompson | 3549ef3 | 2013-09-25 14:05:17 -0700 | [diff] [blame] | 84 | * 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 Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 91 | |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 92 | /** |
| 93 | * @brief Fast encoding or block size estimation |
| 94 | */ |
| 95 | template<bool T> |
Wentao Shang | 7794921 | 2014-02-01 23:42:24 -0800 | [diff] [blame] | 96 | size_t |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 97 | wireEncode(EncodingImpl<T> &block) const; |
Wentao Shang | 7794921 | 2014-02-01 23:42:24 -0800 | [diff] [blame] | 98 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 99 | const Block & |
| 100 | wireEncode() const; |
Alexander Afanasyev | 848c61a | 2014-01-03 13:52:04 -0800 | [diff] [blame] | 101 | |
| 102 | void |
| 103 | wireDecode(const Block &wire); |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 104 | |
| 105 | /** |
| 106 | * @brief Check if already has wire |
| 107 | */ |
| 108 | bool |
| 109 | hasWire() const; |
| 110 | |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 111 | /** |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 112 | * Parse the uri according to the NDN URI Scheme and set the name with the components. |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 113 | * @param uri The null-terminated URI string. |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 114 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 115 | void |
| 116 | set(const char *uri); |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 117 | |
| 118 | /** |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 119 | * Parse the uri according to the NDN URI Scheme and set the name with the components. |
| 120 | * @param uri The URI string. |
| 121 | */ |
| 122 | void |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 123 | set(const std::string& uri) |
| 124 | { |
| 125 | set(uri.c_str()); |
| 126 | } |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 127 | |
| 128 | /** |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 129 | * Append a new component, copying from value of length valueLength. |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 130 | * @return This name so that you can chain calls to append. |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 131 | */ |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 132 | Name& |
Jeff Thompson | 97223af | 2013-09-24 17:01:27 -0700 | [diff] [blame] | 133 | append(const uint8_t *value, size_t valueLength) |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 134 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 135 | m_nameBlock.push_back(Component(value, valueLength)); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 136 | return *this; |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 137 | } |
Jeff Thompson | f72b1ac | 2013-08-16 16:44:41 -0700 | [diff] [blame] | 138 | |
Alexander Afanasyev | bf9671d | 2014-02-11 13:44:13 -0800 | [diff] [blame] | 139 | /** |
| 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 Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 151 | // /** |
| 152 | // * Append a new component, copying from value. |
| 153 | // * @return This name so that you can chain calls to append. |
| 154 | // */ |
| 155 | // Name& |
| 156 | // append(const Buffer& value) |
| 157 | // { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 158 | // m_nameBlock.push_back(value); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 159 | // return *this; |
| 160 | // } |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 161 | |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 162 | Name& |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 163 | append(const ConstBufferPtr &value) |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 164 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 165 | m_nameBlock.push_back(value); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 166 | return *this; |
Jeff Thompson | f72b1ac | 2013-08-16 16:44:41 -0700 | [diff] [blame] | 167 | } |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 168 | |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 169 | Name& |
| 170 | append(const Component &value) |
| 171 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 172 | m_nameBlock.push_back(value); |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 173 | return *this; |
| 174 | } |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 175 | |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 176 | /** |
| 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 | */ |
| 183 | Name& |
| 184 | append(const char *value) |
| 185 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 186 | m_nameBlock.push_back(Component(value)); |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 187 | return *this; |
| 188 | } |
| 189 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 190 | Name& |
| 191 | append(const Block &value) |
| 192 | { |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 193 | if (value.type() == Tlv::NameComponent) |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 194 | m_nameBlock.push_back(value); |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 195 | else |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 196 | m_nameBlock.push_back(Block(Tlv::NameComponent, value)); |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 197 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 198 | return *this; |
| 199 | } |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 200 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 201 | /** |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 202 | * 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 Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 205 | */ |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 206 | Name& |
| 207 | append(const Name& name); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 208 | |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 209 | /** |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 210 | * Clear all the components. |
| 211 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 212 | void |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 213 | clear() |
| 214 | { |
| 215 | m_nameBlock = Block(Tlv::Name); |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | /** |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 219 | * 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; |
| 234 | |
| 235 | /** |
| 236 | * Return a new Name with the first nComponents components of this Name. |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 237 | * @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 Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 239 | * @return A new Name. |
| 240 | */ |
| 241 | Name |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 242 | getPrefix(int nComponents) const |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 243 | { |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 244 | if (nComponents < 0) |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 245 | return getSubName(0, m_nameBlock.elements_size() + nComponents); |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 246 | else |
| 247 | return getSubName(0, nComponents); |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | /** |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 251 | * Encode this name as a URI. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 252 | * @return The encoded URI. |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 253 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 254 | std::string |
| 255 | toUri() const; |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 256 | |
Jeff Thompson | 21844fc | 2013-08-08 14:52:51 -0700 | [diff] [blame] | 257 | /** |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 258 | * @deprecated |
Jeff Thompson | 8aac199 | 2013-08-12 17:26:02 -0700 | [diff] [blame] | 259 | * Append a component with the encoded segment number. |
| 260 | * @param segment The segment number. |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 261 | * @return This name so that you can chain calls to append. |
| 262 | */ |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 263 | DEPRECATED(Name& |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 264 | appendSegment(uint64_t segment) |
Jeff Thompson | 8aac199 | 2013-08-12 17:26:02 -0700 | [diff] [blame] | 265 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 266 | m_nameBlock.push_back(Component::fromNumberWithMarker(segment, 0x00)); |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 267 | return *this; |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 268 | }) |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 269 | |
| 270 | /** |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 271 | * @deprecated |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 272 | * Append a component with the encoded version number. |
| 273 | * Note that this encodes the exact value of version without converting from a time representation. |
| 274 | * @param version The version number. |
| 275 | * @return This name so that you can chain calls to append. |
| 276 | */ |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 277 | DEPRECATED(Name& |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 278 | appendVersion(uint64_t version) |
| 279 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 280 | m_nameBlock.push_back(Component::fromNumberWithMarker(version, 0xFD)); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 281 | return *this; |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 282 | }) |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 283 | |
| 284 | /** |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 285 | * @deprecated |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 286 | * @brief Append a component with the encoded version number. |
| 287 | * |
| 288 | * This version of the method creates version number based on the current timestamp |
| 289 | * @return This name so that you can chain calls to append. |
| 290 | */ |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 291 | DEPRECATED(Name& |
| 292 | appendVersion()); |
| 293 | |
| 294 | |
| 295 | /** |
| 296 | * @brief Append a component with the encoded non-negative number. |
| 297 | * @param number The non-negative number |
| 298 | * @return This name so that you can chain calls to append. |
| 299 | */ |
| 300 | Name& |
| 301 | appendNumber(uint64_t number) |
| 302 | { |
| 303 | m_nameBlock.push_back(Component::fromNumber(number)); |
| 304 | return *this; |
| 305 | } |
| 306 | |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 307 | /** |
Jeff Thompson | 3c2ab01 | 2013-10-02 14:18:16 -0700 | [diff] [blame] | 308 | * Check if this name has the same component count and components as the given name. |
| 309 | * @param name The Name to check. |
| 310 | * @return true if the names are equal, otherwise false. |
| 311 | */ |
| 312 | bool |
| 313 | equals(const Name& name) const; |
| 314 | |
| 315 | /** |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 316 | * Check if the N components of this name are the same as the first N components of the given name. |
| 317 | * @param name The Name to check. |
| 318 | * @return true if this matches the given name, otherwise false. This always returns true if this name is empty. |
| 319 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 320 | bool |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 321 | isPrefixOf(const Name& name) const; |
| 322 | |
| 323 | bool |
| 324 | match(const Name& name) const |
| 325 | { |
| 326 | return isPrefixOf(name); |
| 327 | } |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 328 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 329 | // |
| 330 | // vector equivalent interface. |
| 331 | // |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 332 | |
| 333 | /** |
| 334 | * @brief Check if name is emtpy |
| 335 | */ |
| 336 | bool |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 337 | empty() const { return m_nameBlock.elements().empty(); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 338 | |
| 339 | /** |
| 340 | * Get the number of components. |
| 341 | * @return The number of components. |
| 342 | */ |
| 343 | size_t |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 344 | size() const { return m_nameBlock.elements_size(); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 345 | |
| 346 | /** |
| 347 | * Get the component at the given index. |
| 348 | * @param i The index of the component, starting from 0. |
| 349 | * @return The name component at the index. |
| 350 | */ |
| 351 | const Component& |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 352 | get(ssize_t i) const |
| 353 | { |
| 354 | if (i >= 0) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 355 | return reinterpret_cast<const Component&>(m_nameBlock.elements()[i]); |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 356 | else |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 357 | return reinterpret_cast<const Component&>(m_nameBlock.elements()[size() + i]); |
| 358 | } |
| 359 | |
| 360 | const Component& |
| 361 | operator [] (ssize_t i) const |
| 362 | { |
| 363 | return get(i); |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 364 | } |
Alexander Afanasyev | c234429 | 2014-03-02 00:08:00 +0000 | [diff] [blame] | 365 | |
| 366 | /** |
| 367 | * @brief Get component at the specified index |
| 368 | * |
| 369 | * Unlike get() and operator[] methods, at() checks for out of bounds |
| 370 | * and will throw Name::Error when it happens |
| 371 | * |
| 372 | * @throws Name::Error if index out of bounds |
| 373 | */ |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 374 | const Component& |
| 375 | at(ssize_t i) const |
| 376 | { |
Alexander Afanasyev | c234429 | 2014-03-02 00:08:00 +0000 | [diff] [blame] | 377 | if ((i >= 0 && i >= size()) || (i < 0 && i < -size())) |
| 378 | throw Error("Requested component does not exist (out of bounds)"); |
| 379 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 380 | return get(i); |
| 381 | } |
| 382 | |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 383 | /** |
| 384 | * Compare this to the other Name using NDN canonical ordering. If the first components of each name are not equal, |
| 385 | * this returns -1 if the first comes before the second using the NDN canonical ordering for name components, or 1 if it comes after. |
| 386 | * If they are equal, this compares the second components of each name, etc. If both names are the same up to |
| 387 | * the size of the shorter name, this returns -1 if the first name is shorter than the second or 1 if it is longer. |
| 388 | * For example, if you std::sort gives: /a/b/d /a/b/cc /c /c/a /bb . This is intuitive because all names |
| 389 | * with the prefix /a are next to each other. But it may be also be counter-intuitive because /c comes before /bb |
| 390 | * according to NDN canonical ordering since it is shorter. |
| 391 | * @param other The other Name to compare with. |
| 392 | * @return 0 If they compare equal, -1 if *this comes before other in the canonical ordering, or |
| 393 | * 1 if *this comes after other in the canonical ordering. |
| 394 | * |
| 395 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 396 | */ |
| 397 | int |
| 398 | compare(const Name& other) const; |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 399 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 400 | /** |
| 401 | * Append the component |
| 402 | * @param component The component of type T. |
| 403 | */ |
| 404 | template<class T> void |
| 405 | push_back(const T &component) |
| 406 | { |
| 407 | append(component); |
| 408 | } |
| 409 | |
Jeff Thompson | 91737f5 | 2013-10-04 11:07:24 -0700 | [diff] [blame] | 410 | /** |
| 411 | * Check if this name has the same component count and components as the given name. |
| 412 | * @param name The Name to check. |
| 413 | * @return true if the names are equal, otherwise false. |
| 414 | */ |
| 415 | bool |
| 416 | operator == (const Name &name) const { return equals(name); } |
| 417 | |
| 418 | /** |
| 419 | * Check if this name has the same component count and components as the given name. |
| 420 | * @param name The Name to check. |
| 421 | * @return true if the names are not equal, otherwise false. |
| 422 | */ |
| 423 | bool |
| 424 | operator != (const Name &name) const { return !equals(name); } |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 425 | |
| 426 | /** |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 427 | * Return true if this is less than or equal to the other Name in the NDN canonical ordering. |
| 428 | * @param other The other Name to compare with. |
| 429 | * |
| 430 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 431 | */ |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 432 | bool |
| 433 | operator <= (const Name& other) const { return compare(other) <= 0; } |
| 434 | |
| 435 | /** |
| 436 | * Return true if this is less than the other Name in the NDN canonical ordering. |
| 437 | * @param other The other Name to compare with. |
| 438 | * |
| 439 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 440 | */ |
| 441 | bool |
| 442 | operator < (const Name& other) const { return compare(other) < 0; } |
| 443 | |
| 444 | /** |
| 445 | * Return true if this is less than or equal to the other Name in the NDN canonical ordering. |
| 446 | * @param other The other Name to compare with. |
| 447 | * |
| 448 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 449 | */ |
| 450 | bool |
| 451 | operator >= (const Name& other) const { return compare(other) >= 0; } |
| 452 | |
| 453 | /** |
| 454 | * Return true if this is greater than the other Name in the NDN canonical ordering. |
| 455 | * @param other The other Name to compare with. |
| 456 | * |
| 457 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 458 | */ |
| 459 | bool |
| 460 | operator > (const Name& other) const { return compare(other) > 0; } |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 461 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 462 | // |
| 463 | // Iterator interface to name components. |
| 464 | // |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 465 | |
| 466 | /** |
| 467 | * Begin iterator (const). |
| 468 | */ |
| 469 | const_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 470 | begin() const |
| 471 | { |
| 472 | return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().begin()); |
| 473 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 474 | |
| 475 | /** |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 476 | * End iterator (const). |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 477 | * |
| 478 | * @todo Check if this crash when there are no elements in the buffer |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 479 | */ |
| 480 | const_iterator |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 481 | end() const |
| 482 | { |
| 483 | return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().end()); |
| 484 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 485 | |
| 486 | /** |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 487 | * Reverse begin iterator (const). |
| 488 | */ |
| 489 | const_reverse_iterator |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 490 | rbegin() const |
| 491 | { |
| 492 | return const_reverse_iterator(end()); |
| 493 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 494 | |
| 495 | /** |
| 496 | * Reverse end iterator (const). |
| 497 | */ |
| 498 | const_reverse_iterator |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 499 | rend() const |
| 500 | { |
| 501 | return const_reverse_iterator(begin()); |
| 502 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 503 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 504 | private: |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 505 | mutable Block m_nameBlock; |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 506 | }; |
| 507 | |
| 508 | std::ostream & |
| 509 | operator << (std::ostream &os, const Name &name); |
| 510 | |
| 511 | inline std::string |
| 512 | Name::toUri() const |
Jeff Thompson | 49e321a | 2013-10-04 17:35:59 -0700 | [diff] [blame] | 513 | { |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 514 | std::ostringstream os; |
| 515 | os << *this; |
| 516 | return os.str(); |
Jeff Thompson | 49e321a | 2013-10-04 17:35:59 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 519 | template<bool T> |
| 520 | inline size_t |
| 521 | Name::wireEncode(EncodingImpl<T>& blk) const |
| 522 | { |
| 523 | size_t total_len = 0; |
| 524 | |
| 525 | for (const_reverse_iterator i = rbegin (); |
| 526 | i != rend (); |
| 527 | ++i) |
| 528 | { |
| 529 | total_len += i->wireEncode (blk); |
| 530 | } |
| 531 | |
| 532 | total_len += blk.prependVarNumber (total_len); |
| 533 | total_len += blk.prependVarNumber (Tlv::Name); |
| 534 | return total_len; |
| 535 | } |
| 536 | |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 537 | inline const Block & |
| 538 | Name::wireEncode() const |
| 539 | { |
| 540 | if (m_nameBlock.hasWire()) |
| 541 | return m_nameBlock; |
| 542 | |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 543 | EncodingEstimator estimator; |
| 544 | size_t estimatedSize = wireEncode(estimator); |
| 545 | |
| 546 | EncodingBuffer buffer(estimatedSize, 0); |
| 547 | wireEncode(buffer); |
| 548 | |
| 549 | m_nameBlock = buffer.block(); |
| 550 | m_nameBlock.parse(); |
| 551 | |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 552 | return m_nameBlock; |
| 553 | } |
| 554 | |
| 555 | inline void |
| 556 | Name::wireDecode(const Block &wire) |
| 557 | { |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 558 | if (wire.type() != Tlv::Name) |
| 559 | throw Tlv::Error("Unexpected TLV type when decoding Name"); |
| 560 | |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 561 | m_nameBlock = wire; |
| 562 | m_nameBlock.parse(); |
| 563 | } |
| 564 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 565 | inline bool |
| 566 | Name::hasWire() const |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 567 | { |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 568 | return m_nameBlock.hasWire(); |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 569 | } |
| 570 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 571 | } // namespace ndn |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 572 | |
| 573 | #endif |
| 574 | |