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 | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 26 | class Name : public ptr_lib::enable_shared_from_this<Name> |
| 27 | { |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 28 | public: |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 29 | /// @brief Error that can be thrown from Name |
| 30 | class Error : public name::Component::Error |
| 31 | { |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 32 | public: |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 33 | explicit |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 34 | Error(const std::string& what) |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 35 | : name::Component::Error(what) |
| 36 | { |
| 37 | } |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 38 | }; |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 39 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 40 | typedef name::Component Component; |
| 41 | |
| 42 | typedef std::vector<Component> component_container; |
| 43 | |
| 44 | typedef Component value_type; |
| 45 | typedef void allocator_type; |
| 46 | typedef Component& reference; |
| 47 | typedef const Component const_reference; |
| 48 | typedef Component* pointer; |
| 49 | typedef const Component* const_pointer; |
| 50 | typedef Component* iterator; |
| 51 | typedef const Component* const_iterator; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 52 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 53 | typedef boost::reverse_iterator<iterator> reverse_iterator; |
| 54 | typedef boost::reverse_iterator<const_iterator> const_reverse_iterator; |
| 55 | |
| 56 | typedef component_container::difference_type difference_type; |
| 57 | typedef component_container::size_type size_type; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 58 | |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 59 | /** |
| 60 | * Create a new Name with no components. |
| 61 | */ |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 62 | Name() |
| 63 | : m_nameBlock(Tlv::Name) |
| 64 | { |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 65 | } |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 66 | |
| 67 | /** |
| 68 | * @brief Create Name object from wire block |
| 69 | * |
| 70 | * This is a more efficient equivalent for |
| 71 | * @code |
| 72 | * Name name; |
| 73 | * name.wireDecode(wire); |
| 74 | * @endcode |
| 75 | */ |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 76 | explicit |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 77 | Name(const Block& wire) |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 78 | { |
| 79 | m_nameBlock = wire; |
| 80 | m_nameBlock.parse(); |
| 81 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 82 | |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 83 | /** |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 84 | * 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] | 85 | * @param uri The URI string. |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 86 | */ |
Jeff Thompson | 3549ef3 | 2013-09-25 14:05:17 -0700 | [diff] [blame] | 87 | Name(const char* uri) |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 88 | { |
| 89 | set(uri); |
| 90 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 91 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 92 | /** |
Jeff Thompson | 3549ef3 | 2013-09-25 14:05:17 -0700 | [diff] [blame] | 93 | * Parse the uri according to the NDN URI Scheme and create the name with the components. |
| 94 | * @param uri The URI string. |
| 95 | */ |
| 96 | Name(const std::string& uri) |
| 97 | { |
| 98 | set(uri.c_str()); |
| 99 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 100 | |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 101 | /** |
| 102 | * @brief Fast encoding or block size estimation |
| 103 | */ |
| 104 | template<bool T> |
Wentao Shang | 7794921 | 2014-02-01 23:42:24 -0800 | [diff] [blame] | 105 | size_t |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 106 | wireEncode(EncodingImpl<T>& block) const; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 107 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 108 | const Block& |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 109 | wireEncode() const; |
Alexander Afanasyev | 848c61a | 2014-01-03 13:52:04 -0800 | [diff] [blame] | 110 | |
| 111 | void |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 112 | wireDecode(const Block& wire); |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 113 | |
| 114 | /** |
| 115 | * @brief Check if already has wire |
| 116 | */ |
| 117 | bool |
| 118 | hasWire() const; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 119 | |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 120 | /** |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 121 | * 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] | 122 | * @param uri The null-terminated URI string. |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 123 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 124 | void |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 125 | set(const char* uri); |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 126 | |
| 127 | /** |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 128 | * Parse the uri according to the NDN URI Scheme and set the name with the components. |
| 129 | * @param uri The URI string. |
| 130 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 131 | void |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 132 | set(const std::string& uri) |
| 133 | { |
| 134 | set(uri.c_str()); |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 137 | /** |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 138 | * Append a new component, copying from value of length valueLength. |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 139 | * @return This name so that you can chain calls to append. |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 140 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 141 | Name& |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 142 | append(const uint8_t* value, size_t valueLength) |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 143 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 144 | m_nameBlock.push_back(Component(value, valueLength)); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 145 | return *this; |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 146 | } |
Jeff Thompson | f72b1ac | 2013-08-16 16:44:41 -0700 | [diff] [blame] | 147 | |
Alexander Afanasyev | bf9671d | 2014-02-11 13:44:13 -0800 | [diff] [blame] | 148 | /** |
| 149 | * Append a new component, copying from value of length valueLength. |
| 150 | * @return This name so that you can chain calls to append. |
| 151 | */ |
| 152 | template<class InputIterator> |
| 153 | Name& |
| 154 | append(InputIterator begin, InputIterator end) |
| 155 | { |
| 156 | m_nameBlock.push_back(Component(begin, end)); |
| 157 | return *this; |
| 158 | } |
| 159 | |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 160 | Name& |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 161 | append(const ConstBufferPtr& value) |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 162 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 163 | m_nameBlock.push_back(value); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 164 | return *this; |
Jeff Thompson | f72b1ac | 2013-08-16 16:44:41 -0700 | [diff] [blame] | 165 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 166 | |
| 167 | Name& |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 168 | append(const Component& value) |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 169 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 170 | m_nameBlock.push_back(value); |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 171 | return *this; |
| 172 | } |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 173 | |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 174 | /** |
| 175 | * @brief Append name component that represented as a string |
| 176 | * |
| 177 | * Note that this method is necessary to ensure correctness and unambiguity of |
| 178 | * ``append("string")`` operations (both Component and Name can be implicitly |
| 179 | * converted from string, each having different outcomes |
| 180 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 181 | Name& |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 182 | append(const char* value) |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 183 | { |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 184 | m_nameBlock.push_back(Component(value)); |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 185 | return *this; |
| 186 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 187 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 188 | Name& |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 189 | append(const Block& value) |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 190 | { |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 191 | if (value.type() == Tlv::NameComponent) |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 192 | m_nameBlock.push_back(value); |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 193 | else |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 194 | m_nameBlock.push_back(Block(Tlv::NameComponent, value)); |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 195 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 196 | return *this; |
| 197 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 198 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 199 | /** |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 200 | * Append the components of the given name to this name. |
| 201 | * @param name The Name with components to append. |
| 202 | * @return This name so that you can chain calls to append. |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 203 | */ |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 204 | Name& |
| 205 | append(const Name& name); |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 206 | |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 207 | /** |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 208 | * Clear all the components. |
| 209 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 210 | void |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 211 | clear() |
| 212 | { |
| 213 | m_nameBlock = Block(Tlv::Name); |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 214 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 215 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 216 | /** |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 217 | * Get a new name, constructed as a subset of components. |
| 218 | * @param iStartComponent The index if the first component to get. |
| 219 | * @param nComponents The number of components starting at iStartComponent. |
| 220 | * @return A new name. |
| 221 | */ |
| 222 | Name |
| 223 | getSubName(size_t iStartComponent, size_t nComponents) const; |
| 224 | |
| 225 | /** |
| 226 | * Get a new name, constructed as a subset of components starting at iStartComponent until the end of the name. |
| 227 | * @param iStartComponent The index if the first component to get. |
| 228 | * @return A new name. |
| 229 | */ |
| 230 | Name |
| 231 | getSubName(size_t iStartComponent) const; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 232 | |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 233 | /** |
| 234 | * Return a new Name with the first nComponents components of this Name. |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 235 | * @param nComponents The number of prefix components. If nComponents is -N then return the prefix up |
| 236 | * 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] | 237 | * @return A new Name. |
| 238 | */ |
| 239 | Name |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 240 | getPrefix(int nComponents) const |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 241 | { |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 242 | if (nComponents < 0) |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 243 | return getSubName(0, m_nameBlock.elements_size() + nComponents); |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 244 | else |
| 245 | return getSubName(0, nComponents); |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 246 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 247 | |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 248 | /** |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 249 | * Encode this name as a URI. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 250 | * @return The encoded URI. |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 251 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 252 | std::string |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 253 | toUri() const; |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 254 | |
| 255 | /** |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 256 | * @brief Append a component with the number encoded as nonNegativeInteger |
| 257 | * |
| 258 | * @see http://named-data.net/doc/ndn-tlv/tlv.html#non-negative-integer-encoding |
| 259 | * |
Steve DiBenedetto | c145d49 | 2014-03-11 16:35:45 -0600 | [diff] [blame] | 260 | * @param number The non-negative number |
| 261 | * @return This name so that you can chain calls to append. |
| 262 | */ |
| 263 | Name& |
| 264 | appendNumber(uint64_t number) |
| 265 | { |
| 266 | m_nameBlock.push_back(Component::fromNumber(number)); |
| 267 | return *this; |
| 268 | } |
| 269 | |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 270 | /** |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 271 | * @brief An alias for appendNumber(uint64_t) |
| 272 | */ |
| 273 | Name& |
| 274 | appendVersion(uint64_t number) |
| 275 | { |
| 276 | return appendNumber(number); |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * @brief Append a component with the encoded version number (current UNIX timestamp |
| 281 | * in milliseconds) |
| 282 | */ |
| 283 | Name& |
| 284 | appendVersion(); |
| 285 | |
| 286 | /** |
| 287 | * @brief An alias for appendNumber(uint64_t) |
| 288 | */ |
| 289 | Name& |
| 290 | appendSegment(uint64_t number) |
| 291 | { |
| 292 | return appendNumber(number); |
| 293 | } |
| 294 | |
| 295 | /** |
Jeff Thompson | 3c2ab01 | 2013-10-02 14:18:16 -0700 | [diff] [blame] | 296 | * Check if this name has the same component count and components as the given name. |
| 297 | * @param name The Name to check. |
| 298 | * @return true if the names are equal, otherwise false. |
| 299 | */ |
| 300 | bool |
| 301 | equals(const Name& name) const; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 302 | |
Jeff Thompson | 3c2ab01 | 2013-10-02 14:18:16 -0700 | [diff] [blame] | 303 | /** |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 304 | * Check if the N components of this name are the same as the first N components of the given name. |
| 305 | * @param name The Name to check. |
| 306 | * @return true if this matches the given name, otherwise false. This always returns true if this name is empty. |
| 307 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 308 | bool |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 309 | isPrefixOf(const Name& name) const; |
| 310 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 311 | // |
| 312 | // vector equivalent interface. |
| 313 | // |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 314 | |
| 315 | /** |
| 316 | * @brief Check if name is emtpy |
| 317 | */ |
| 318 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 319 | empty() const |
| 320 | { |
| 321 | return m_nameBlock.elements().empty(); |
| 322 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 323 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 324 | /** |
| 325 | * Get the number of components. |
| 326 | * @return The number of components. |
| 327 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 328 | size_t |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 329 | size() const |
| 330 | { |
| 331 | return m_nameBlock.elements_size(); |
| 332 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 333 | |
| 334 | /** |
| 335 | * Get the component at the given index. |
| 336 | * @param i The index of the component, starting from 0. |
| 337 | * @return The name component at the index. |
| 338 | */ |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 339 | const Component& |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 340 | get(ssize_t i) const |
| 341 | { |
| 342 | if (i >= 0) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 343 | return reinterpret_cast<const Component&>(m_nameBlock.elements()[i]); |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 344 | else |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 345 | return reinterpret_cast<const Component&>(m_nameBlock.elements()[size() + i]); |
| 346 | } |
| 347 | |
| 348 | const Component& |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 349 | operator[](ssize_t i) const |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 350 | { |
| 351 | return get(i); |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 352 | } |
Alexander Afanasyev | c234429 | 2014-03-02 00:08:00 +0000 | [diff] [blame] | 353 | |
| 354 | /** |
| 355 | * @brief Get component at the specified index |
| 356 | * |
| 357 | * Unlike get() and operator[] methods, at() checks for out of bounds |
| 358 | * and will throw Name::Error when it happens |
| 359 | * |
| 360 | * @throws Name::Error if index out of bounds |
| 361 | */ |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 362 | const Component& |
| 363 | at(ssize_t i) const |
| 364 | { |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 365 | if ((i >= 0 && static_cast<size_t>(i) >= size()) || |
| 366 | (i < 0 && static_cast<size_t>(-i) > size())) |
Alexander Afanasyev | c234429 | 2014-03-02 00:08:00 +0000 | [diff] [blame] | 367 | throw Error("Requested component does not exist (out of bounds)"); |
| 368 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 369 | return get(i); |
| 370 | } |
| 371 | |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 372 | /** |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 373 | * @brief Compare this to the other Name using NDN canonical ordering. |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 374 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 375 | * If the first components of each name are not equal, this returns -1 if the first comes |
| 376 | * before the second using the NDN canonical ordering for name components, or 1 if it |
| 377 | * comes after. If they are equal, this compares the second components of each name, etc. |
| 378 | * If both names are the same up to the size of the shorter name, this returns -1 if the |
| 379 | * first name is shorter than the second or 1 if it is longer. For example, if you |
| 380 | * std::sort gives: /a/b/d /a/b/cc /c /c/a /bb . This is intuitive because all names with |
| 381 | * the prefix /a are next to each other. But it may be also be counter-intuitive because |
| 382 | * /c comes before /bb according to NDN canonical ordering since it is shorter. @param |
| 383 | * other The other Name to compare with. @return 0 If they compare equal, -1 if *this |
| 384 | * comes before other in the canonical ordering, or 1 if *this comes after other in the |
| 385 | * canonical ordering. |
| 386 | * |
| 387 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 388 | */ |
| 389 | int |
| 390 | compare(const Name& other) const; |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 391 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 392 | /** |
| 393 | * Append the component |
| 394 | * @param component The component of type T. |
| 395 | */ |
| 396 | template<class T> void |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 397 | push_back(const T& component) |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 398 | { |
| 399 | append(component); |
| 400 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 401 | |
Jeff Thompson | 91737f5 | 2013-10-04 11:07:24 -0700 | [diff] [blame] | 402 | /** |
| 403 | * Check if this name has the same component count and components as the given name. |
| 404 | * @param name The Name to check. |
| 405 | * @return true if the names are equal, otherwise false. |
| 406 | */ |
| 407 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 408 | operator==(const Name& name) const |
| 409 | { |
| 410 | return equals(name); |
| 411 | } |
Jeff Thompson | 91737f5 | 2013-10-04 11:07:24 -0700 | [diff] [blame] | 412 | |
| 413 | /** |
| 414 | * Check if this name has the same component count and components as the given name. |
| 415 | * @param name The Name to check. |
| 416 | * @return true if the names are not equal, otherwise false. |
| 417 | */ |
| 418 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 419 | operator!=(const Name& name) const |
| 420 | { |
| 421 | return !equals(name); |
| 422 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 423 | |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 424 | /** |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 425 | * Return true if this is less than or equal to the other Name in the NDN canonical ordering. |
| 426 | * @param other The other Name to compare with. |
| 427 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 428 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 429 | */ |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 430 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 431 | operator<=(const Name& other) const |
| 432 | { |
| 433 | return compare(other) <= 0; |
| 434 | } |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 435 | |
| 436 | /** |
| 437 | * Return true if this is less than the other Name in the NDN canonical ordering. |
| 438 | * @param other The other Name to compare with. |
| 439 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 440 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 441 | */ |
| 442 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 443 | operator<(const Name& other) const |
| 444 | { |
| 445 | return compare(other) < 0; |
| 446 | } |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 447 | |
| 448 | /** |
| 449 | * Return true if this is less than or equal to the other Name in the NDN canonical ordering. |
| 450 | * @param other The other Name to compare with. |
| 451 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 452 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 453 | */ |
| 454 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 455 | operator>=(const Name& other) const |
| 456 | { |
| 457 | return compare(other) >= 0; |
| 458 | } |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 459 | |
| 460 | /** |
| 461 | * Return true if this is greater than the other Name in the NDN canonical ordering. |
| 462 | * @param other The other Name to compare with. |
| 463 | * |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 464 | * @see http://named-data.net/doc/ndn-tlv/name.html#canonical-order |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 465 | */ |
| 466 | bool |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 467 | operator>(const Name& other) const |
| 468 | { |
| 469 | return compare(other) > 0; |
| 470 | } |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 471 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 472 | // |
| 473 | // Iterator interface to name components. |
| 474 | // |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 475 | |
| 476 | /** |
| 477 | * Begin iterator (const). |
| 478 | */ |
| 479 | const_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 480 | begin() const |
| 481 | { |
| 482 | return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().begin()); |
| 483 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 484 | |
| 485 | /** |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 486 | * End iterator (const). |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 487 | * |
| 488 | * @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] | 489 | */ |
| 490 | const_iterator |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 491 | end() const |
| 492 | { |
| 493 | return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().end()); |
| 494 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 495 | |
| 496 | /** |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 497 | * Reverse begin iterator (const). |
| 498 | */ |
| 499 | const_reverse_iterator |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 500 | rbegin() const |
| 501 | { |
| 502 | return const_reverse_iterator(end()); |
| 503 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 504 | |
| 505 | /** |
| 506 | * Reverse end iterator (const). |
| 507 | */ |
| 508 | const_reverse_iterator |
Alexander Afanasyev | 29e5c3d | 2014-02-11 00:01:10 -0800 | [diff] [blame] | 509 | rend() const |
| 510 | { |
| 511 | return const_reverse_iterator(begin()); |
| 512 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 513 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 514 | private: |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 515 | mutable Block m_nameBlock; |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 516 | }; |
| 517 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 518 | inline std::ostream& |
| 519 | operator<<(std::ostream& os, const Name& name) |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 520 | { |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 521 | if (name.empty()) |
| 522 | { |
| 523 | os << "/"; |
| 524 | } |
| 525 | else |
| 526 | { |
| 527 | for (Name::const_iterator i = name.begin(); i != name.end(); i++) { |
| 528 | os << "/"; |
| 529 | i->toEscapedString(os); |
| 530 | } |
| 531 | } |
| 532 | return os; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | inline std::string |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 536 | Name::toUri() const |
Jeff Thompson | 49e321a | 2013-10-04 17:35:59 -0700 | [diff] [blame] | 537 | { |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 538 | std::ostringstream os; |
| 539 | os << *this; |
| 540 | return os.str(); |
Jeff Thompson | 49e321a | 2013-10-04 17:35:59 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Alexander Afanasyev | 0df2836 | 2014-03-20 17:31:43 -0700 | [diff] [blame] | 543 | inline std::istream& |
| 544 | operator>>(std::istream& is, Name& name) |
| 545 | { |
| 546 | std::string inputString; |
| 547 | is >> inputString; |
| 548 | name.set(inputString); |
| 549 | |
| 550 | return is; |
| 551 | } |
| 552 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 553 | |
| 554 | inline void |
| 555 | Name::set(const char* uri_cstr) |
| 556 | { |
| 557 | clear(); |
| 558 | |
| 559 | std::string uri = uri_cstr; |
| 560 | trim(uri); |
| 561 | if (uri.size() == 0) |
| 562 | return; |
| 563 | |
| 564 | size_t iColon = uri.find(':'); |
| 565 | if (iColon != std::string::npos) { |
| 566 | // Make sure the colon came before a '/'. |
| 567 | size_t iFirstSlash = uri.find('/'); |
| 568 | if (iFirstSlash == std::string::npos || iColon < iFirstSlash) { |
| 569 | // Omit the leading protocol such as ndn: |
| 570 | uri.erase(0, iColon + 1); |
| 571 | trim(uri); |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | // Trim the leading slash and possibly the authority. |
| 576 | if (uri[0] == '/') { |
| 577 | if (uri.size() >= 2 && uri[1] == '/') { |
| 578 | // Strip the authority following "//". |
| 579 | size_t iAfterAuthority = uri.find('/', 2); |
| 580 | if (iAfterAuthority == std::string::npos) |
| 581 | // Unusual case: there was only an authority. |
| 582 | return; |
| 583 | else { |
| 584 | uri.erase(0, iAfterAuthority + 1); |
| 585 | trim(uri); |
| 586 | } |
| 587 | } |
| 588 | else { |
| 589 | uri.erase(0, 1); |
| 590 | trim(uri); |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | size_t iComponentStart = 0; |
| 595 | |
| 596 | // Unescape the components. |
| 597 | while (iComponentStart < uri.size()) { |
| 598 | size_t iComponentEnd = uri.find("/", iComponentStart); |
| 599 | if (iComponentEnd == std::string::npos) |
| 600 | iComponentEnd = uri.size(); |
| 601 | |
| 602 | Component component = Component::fromEscapedString(&uri[0], iComponentStart, iComponentEnd); |
| 603 | // Ignore illegal components. This also gets rid of a trailing '/'. |
| 604 | if (!component.empty()) |
| 605 | append(Component(component)); |
| 606 | |
| 607 | iComponentStart = iComponentEnd + 1; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | inline Name& |
| 612 | Name::append(const Name& name) |
| 613 | { |
| 614 | if (&name == this) |
| 615 | // Copying from this name, so need to make a copy first. |
| 616 | return append(Name(name)); |
| 617 | |
| 618 | for (size_t i = 0; i < name.size(); ++i) |
| 619 | append(name.at(i)); |
| 620 | |
| 621 | return *this; |
| 622 | } |
| 623 | |
| 624 | inline Name& |
| 625 | Name::appendVersion() |
| 626 | { |
| 627 | appendNumber(time::toUnixTimestamp(time::system_clock::now()).count()); |
| 628 | return *this; |
| 629 | } |
| 630 | |
| 631 | inline Name |
| 632 | Name::getSubName(size_t iStartComponent, size_t nComponents) const |
| 633 | { |
| 634 | Name result; |
| 635 | |
| 636 | size_t iEnd = iStartComponent + nComponents; |
| 637 | for (size_t i = iStartComponent; i < iEnd && i < size(); ++i) |
| 638 | result.append(at(i)); |
| 639 | |
| 640 | return result; |
| 641 | } |
| 642 | |
| 643 | inline Name |
| 644 | Name::getSubName(size_t iStartComponent) const |
| 645 | { |
| 646 | Name result; |
| 647 | |
| 648 | for (size_t i = iStartComponent; i < size(); ++i) |
| 649 | result.append(at(i)); |
| 650 | |
| 651 | return result; |
| 652 | } |
| 653 | |
| 654 | inline bool |
| 655 | Name::equals(const Name& name) const |
| 656 | { |
| 657 | if (size() != name.size()) |
| 658 | return false; |
| 659 | |
| 660 | for (size_t i = 0; i < size(); ++i) { |
| 661 | if (at(i) != name.at(i)) |
| 662 | return false; |
| 663 | } |
| 664 | |
| 665 | return true; |
| 666 | } |
| 667 | |
| 668 | inline bool |
| 669 | Name::isPrefixOf(const Name& name) const |
| 670 | { |
| 671 | // This name is longer than the name we are checking it against. |
| 672 | if (size() > name.size()) |
| 673 | return false; |
| 674 | |
| 675 | // Check if at least one of given components doesn't match. |
| 676 | for (size_t i = 0; i < size(); ++i) { |
| 677 | if (at(i) != name.at(i)) |
| 678 | return false; |
| 679 | } |
| 680 | |
| 681 | return true; |
| 682 | } |
| 683 | |
| 684 | |
| 685 | inline int |
| 686 | Name::compare(const Name& other) const |
| 687 | { |
| 688 | for (size_t i = 0; i < size() && i < other.size(); ++i) { |
| 689 | int comparison = at(i).compare(other.at(i)); |
| 690 | if (comparison == 0) |
| 691 | // The components at this index are equal, so check the next components. |
| 692 | continue; |
| 693 | |
| 694 | // Otherwise, the result is based on the components at this index. |
| 695 | return comparison; |
| 696 | } |
| 697 | |
| 698 | // The components up to min(this.size(), other.size()) are equal, so the shorter name is less. |
| 699 | if (size() < other.size()) |
| 700 | return -1; |
| 701 | else if (size() > other.size()) |
| 702 | return 1; |
| 703 | else |
| 704 | return 0; |
| 705 | } |
| 706 | |
| 707 | |
| 708 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 709 | template<bool T> |
| 710 | inline size_t |
| 711 | Name::wireEncode(EncodingImpl<T>& blk) const |
| 712 | { |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 713 | size_t totalLength = 0; |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 714 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 715 | for (const_reverse_iterator i = rbegin(); |
| 716 | i != rend(); |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 717 | ++i) |
| 718 | { |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 719 | totalLength += i->wireEncode(blk); |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 720 | } |
| 721 | |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 722 | totalLength += blk.prependVarNumber(totalLength); |
| 723 | totalLength += blk.prependVarNumber(Tlv::Name); |
| 724 | return totalLength; |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 725 | } |
| 726 | |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 727 | inline const Block& |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 728 | Name::wireEncode() const |
| 729 | { |
| 730 | if (m_nameBlock.hasWire()) |
| 731 | return m_nameBlock; |
| 732 | |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 733 | EncodingEstimator estimator; |
| 734 | size_t estimatedSize = wireEncode(estimator); |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 735 | |
Alexander Afanasyev | 380420b | 2014-02-09 20:52:29 -0800 | [diff] [blame] | 736 | EncodingBuffer buffer(estimatedSize, 0); |
| 737 | wireEncode(buffer); |
| 738 | |
| 739 | m_nameBlock = buffer.block(); |
| 740 | m_nameBlock.parse(); |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 741 | |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 742 | return m_nameBlock; |
| 743 | } |
| 744 | |
| 745 | inline void |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 746 | Name::wireDecode(const Block& wire) |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 747 | { |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 748 | if (wire.type() != Tlv::Name) |
| 749 | throw Tlv::Error("Unexpected TLV type when decoding Name"); |
Alexander Afanasyev | 4b98e8c | 2014-03-22 19:10:19 -0700 | [diff] [blame] | 750 | |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 751 | m_nameBlock = wire; |
| 752 | m_nameBlock.parse(); |
| 753 | } |
| 754 | |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 755 | inline bool |
| 756 | Name::hasWire() const |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 757 | { |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 758 | return m_nameBlock.hasWire(); |
Alexander Afanasyev | 52eb20d | 2014-02-06 18:25:54 -0800 | [diff] [blame] | 759 | } |
| 760 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 761 | } // namespace ndn |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 762 | |
| 763 | #endif |