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 | } |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 57 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 58 | // Name(const Block &name) |
| 59 | // { |
| 60 | // for (Block::element_const_iterator i = name.getAll().begin(); |
| 61 | // i != name.getAll().end(); |
| 62 | // ++i) |
| 63 | // { |
| 64 | // append(Component(i->value_begin(), i->value_end())); |
| 65 | // } |
| 66 | // } |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 69 | * 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] | 70 | * @param uri The URI string. |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 71 | */ |
Jeff Thompson | 3549ef3 | 2013-09-25 14:05:17 -0700 | [diff] [blame] | 72 | Name(const char* uri) |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 73 | { |
| 74 | set(uri); |
| 75 | } |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 76 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 77 | /** |
Jeff Thompson | 3549ef3 | 2013-09-25 14:05:17 -0700 | [diff] [blame] | 78 | * Parse the uri according to the NDN URI Scheme and create the name with the components. |
| 79 | * @param uri The URI string. |
| 80 | */ |
| 81 | Name(const std::string& uri) |
| 82 | { |
| 83 | set(uri.c_str()); |
| 84 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 85 | |
Wentao Shang | 7794921 | 2014-02-01 23:42:24 -0800 | [diff] [blame] | 86 | size_t |
| 87 | wireEncode (EncodingBuffer& blk); |
| 88 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 89 | const Block & |
| 90 | wireEncode() const; |
Alexander Afanasyev | 848c61a | 2014-01-03 13:52:04 -0800 | [diff] [blame] | 91 | |
| 92 | void |
| 93 | wireDecode(const Block &wire); |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 94 | |
| 95 | /** |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 96 | * 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] | 97 | * @param uri The null-terminated URI string. |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 98 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 99 | void |
| 100 | set(const char *uri); |
Jeff Thompson | 67515bd | 2013-08-15 17:43:22 -0700 | [diff] [blame] | 101 | |
| 102 | /** |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 103 | * Parse the uri according to the NDN URI Scheme and set the name with the components. |
| 104 | * @param uri The URI string. |
| 105 | */ |
| 106 | void |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 107 | set(const std::string& uri) |
| 108 | { |
| 109 | set(uri.c_str()); |
| 110 | } |
Jeff Thompson | 7781b39 | 2013-12-17 11:45:59 -0800 | [diff] [blame] | 111 | |
| 112 | /** |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 113 | * Append a new component, copying from value of length valueLength. |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 114 | * @return This name so that you can chain calls to append. |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 115 | */ |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 116 | Name& |
Jeff Thompson | 97223af | 2013-09-24 17:01:27 -0700 | [diff] [blame] | 117 | append(const uint8_t *value, size_t valueLength) |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 118 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 119 | m_nameBlock.elements().push_back(Component(value, valueLength)); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 120 | return *this; |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 121 | } |
Jeff Thompson | f72b1ac | 2013-08-16 16:44:41 -0700 | [diff] [blame] | 122 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 123 | // /** |
| 124 | // * Append a new component, copying from value. |
| 125 | // * @return This name so that you can chain calls to append. |
| 126 | // */ |
| 127 | // Name& |
| 128 | // append(const Buffer& value) |
| 129 | // { |
| 130 | // m_nameBlock.elements().push_back(value); |
| 131 | // return *this; |
| 132 | // } |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 133 | |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 134 | Name& |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 135 | append(const ConstBufferPtr &value) |
Jeff Thompson | 0f74345 | 2013-09-12 14:23:18 -0700 | [diff] [blame] | 136 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 137 | m_nameBlock.elements().push_back(value); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 138 | return *this; |
Jeff Thompson | f72b1ac | 2013-08-16 16:44:41 -0700 | [diff] [blame] | 139 | } |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 140 | |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 141 | Name& |
| 142 | append(const Component &value) |
| 143 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 144 | m_nameBlock.elements().push_back(value); |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 145 | return *this; |
| 146 | } |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 147 | |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 148 | /** |
| 149 | * @brief Append name component that represented as a string |
| 150 | * |
| 151 | * Note that this method is necessary to ensure correctness and unambiguity of |
| 152 | * ``append("string")`` operations (both Component and Name can be implicitly |
| 153 | * converted from string, each having different outcomes |
| 154 | */ |
| 155 | Name& |
| 156 | append(const char *value) |
| 157 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 158 | m_nameBlock.elements().push_back(Component(value)); |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 159 | return *this; |
| 160 | } |
| 161 | |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 162 | Name& |
| 163 | append(const Block &value) |
| 164 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 165 | m_nameBlock.elements().push_back(Component(value.begin(), value.end())); |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 166 | return *this; |
| 167 | } |
Jeff Thompson | 21eb721 | 2013-09-26 09:05:40 -0700 | [diff] [blame] | 168 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 169 | /** |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 170 | * Append the components of the given name to this name. |
| 171 | * @param name The Name with components to append. |
| 172 | * @return This name so that you can chain calls to append. |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 173 | */ |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 174 | Name& |
| 175 | append(const Name& name); |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 176 | |
Jeff Thompson | 0aa66f2 | 2013-09-23 13:02:13 -0700 | [diff] [blame] | 177 | /** |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 178 | * Clear all the components. |
| 179 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 180 | void |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 181 | clear() |
| 182 | { |
| 183 | m_nameBlock = Block(Tlv::Name); |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /** |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 187 | * Get a new name, constructed as a subset of components. |
| 188 | * @param iStartComponent The index if the first component to get. |
| 189 | * @param nComponents The number of components starting at iStartComponent. |
| 190 | * @return A new name. |
| 191 | */ |
| 192 | Name |
| 193 | getSubName(size_t iStartComponent, size_t nComponents) const; |
| 194 | |
| 195 | /** |
| 196 | * Get a new name, constructed as a subset of components starting at iStartComponent until the end of the name. |
| 197 | * @param iStartComponent The index if the first component to get. |
| 198 | * @return A new name. |
| 199 | */ |
| 200 | Name |
| 201 | getSubName(size_t iStartComponent) const; |
| 202 | |
| 203 | /** |
| 204 | * Return a new Name with the first nComponents components of this Name. |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 205 | * @param nComponents The number of prefix components. If nComponents is -N then return the prefix up |
| 206 | * 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] | 207 | * @return A new Name. |
| 208 | */ |
| 209 | Name |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 210 | getPrefix(int nComponents) const |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 211 | { |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 212 | if (nComponents < 0) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 213 | return getSubName(0, m_nameBlock.elements().size() + nComponents); |
Jeff Thompson | eb0358f | 2013-12-17 10:59:53 -0800 | [diff] [blame] | 214 | else |
| 215 | return getSubName(0, nComponents); |
Jeff Thompson | d0159d7 | 2013-09-23 13:34:15 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | /** |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 219 | * Encode this name as a URI. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 220 | * @return The encoded URI. |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 221 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 222 | std::string |
| 223 | toUri() const; |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 224 | |
Jeff Thompson | 21844fc | 2013-08-08 14:52:51 -0700 | [diff] [blame] | 225 | /** |
Jeff Thompson | 8aac199 | 2013-08-12 17:26:02 -0700 | [diff] [blame] | 226 | * Append a component with the encoded segment number. |
| 227 | * @param segment The segment number. |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 228 | * @return This name so that you can chain calls to append. |
| 229 | */ |
| 230 | Name& |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 231 | appendSegment(uint64_t segment) |
Jeff Thompson | 8aac199 | 2013-08-12 17:26:02 -0700 | [diff] [blame] | 232 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 233 | m_nameBlock.elements().push_back(Component::fromNumberWithMarker(segment, 0x00)); |
Jeff Thompson | d129ac1 | 2013-10-11 14:30:12 -0700 | [diff] [blame] | 234 | return *this; |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Append a component with the encoded version number. |
| 239 | * Note that this encodes the exact value of version without converting from a time representation. |
| 240 | * @param version The version number. |
| 241 | * @return This name so that you can chain calls to append. |
| 242 | */ |
| 243 | Name& |
| 244 | appendVersion(uint64_t version) |
| 245 | { |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 246 | m_nameBlock.elements().push_back(Component::fromNumberWithMarker(version, 0xFD)); |
Jeff Thompson | 26b0d79 | 2013-09-23 16:19:01 -0700 | [diff] [blame] | 247 | return *this; |
Jeff Thompson | 8aac199 | 2013-08-12 17:26:02 -0700 | [diff] [blame] | 248 | } |
Alexander Afanasyev | 594cdb2 | 2014-01-03 15:11:33 -0800 | [diff] [blame] | 249 | |
| 250 | /** |
| 251 | * @brief Append a component with the encoded version number. |
| 252 | * |
| 253 | * This version of the method creates version number based on the current timestamp |
| 254 | * @return This name so that you can chain calls to append. |
| 255 | */ |
| 256 | Name& |
| 257 | appendVersion(); |
Jeff Thompson | cc35cd4 | 2013-08-20 12:23:14 -0700 | [diff] [blame] | 258 | |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 259 | /** |
Jeff Thompson | 3c2ab01 | 2013-10-02 14:18:16 -0700 | [diff] [blame] | 260 | * Check if this name has the same component count and components as the given name. |
| 261 | * @param name The Name to check. |
| 262 | * @return true if the names are equal, otherwise false. |
| 263 | */ |
| 264 | bool |
| 265 | equals(const Name& name) const; |
| 266 | |
| 267 | /** |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 268 | * Check if the N components of this name are the same as the first N components of the given name. |
| 269 | * @param name The Name to check. |
| 270 | * @return true if this matches the given name, otherwise false. This always returns true if this name is empty. |
| 271 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 272 | bool |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 273 | isPrefixOf(const Name& name) const; |
| 274 | |
| 275 | bool |
| 276 | match(const Name& name) const |
| 277 | { |
| 278 | return isPrefixOf(name); |
| 279 | } |
Jeff Thompson | ec7789a | 2013-08-21 11:08:36 -0700 | [diff] [blame] | 280 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 281 | // |
| 282 | // vector equivalent interface. |
| 283 | // |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 284 | |
| 285 | /** |
| 286 | * @brief Check if name is emtpy |
| 287 | */ |
| 288 | bool |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 289 | empty() const { return m_nameBlock.elements().empty(); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 290 | |
| 291 | /** |
| 292 | * Get the number of components. |
| 293 | * @return The number of components. |
| 294 | */ |
| 295 | size_t |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 296 | size() const { return m_nameBlock.elements().size(); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 297 | |
| 298 | /** |
| 299 | * Get the component at the given index. |
| 300 | * @param i The index of the component, starting from 0. |
| 301 | * @return The name component at the index. |
| 302 | */ |
| 303 | const Component& |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 304 | get(ssize_t i) const |
| 305 | { |
| 306 | if (i >= 0) |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 307 | return reinterpret_cast<const Component&>(m_nameBlock.elements()[i]); |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 308 | else |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 309 | return reinterpret_cast<const Component&>(m_nameBlock.elements()[size() + i]); |
| 310 | } |
| 311 | |
| 312 | const Component& |
| 313 | operator [] (ssize_t i) const |
| 314 | { |
| 315 | return get(i); |
Alexander Afanasyev | 8f9aa8bed | 2013-12-30 15:58:57 -0800 | [diff] [blame] | 316 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 317 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 318 | const Component& |
| 319 | at(ssize_t i) const |
| 320 | { |
| 321 | return get(i); |
| 322 | } |
| 323 | |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 324 | /** |
| 325 | * Compare this to the other Name using NDN canonical ordering. If the first components of each name are not equal, |
| 326 | * this returns -1 if the first comes before the second using the NDN canonical ordering for name components, or 1 if it comes after. |
| 327 | * If they are equal, this compares the second components of each name, etc. If both names are the same up to |
| 328 | * the size of the shorter name, this returns -1 if the first name is shorter than the second or 1 if it is longer. |
| 329 | * For example, if you std::sort gives: /a/b/d /a/b/cc /c /c/a /bb . This is intuitive because all names |
| 330 | * with the prefix /a are next to each other. But it may be also be counter-intuitive because /c comes before /bb |
| 331 | * according to NDN canonical ordering since it is shorter. |
| 332 | * @param other The other Name to compare with. |
| 333 | * @return 0 If they compare equal, -1 if *this comes before other in the canonical ordering, or |
| 334 | * 1 if *this comes after other in the canonical ordering. |
| 335 | * |
| 336 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 337 | */ |
| 338 | int |
| 339 | compare(const Name& other) const; |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 340 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 341 | /** |
| 342 | * Append the component |
| 343 | * @param component The component of type T. |
| 344 | */ |
| 345 | template<class T> void |
| 346 | push_back(const T &component) |
| 347 | { |
| 348 | append(component); |
| 349 | } |
| 350 | |
Jeff Thompson | 91737f5 | 2013-10-04 11:07:24 -0700 | [diff] [blame] | 351 | /** |
| 352 | * Check if this name has the same component count and components as the given name. |
| 353 | * @param name The Name to check. |
| 354 | * @return true if the names are equal, otherwise false. |
| 355 | */ |
| 356 | bool |
| 357 | operator == (const Name &name) const { return equals(name); } |
| 358 | |
| 359 | /** |
| 360 | * Check if this name has the same component count and components as the given name. |
| 361 | * @param name The Name to check. |
| 362 | * @return true if the names are not equal, otherwise false. |
| 363 | */ |
| 364 | bool |
| 365 | operator != (const Name &name) const { return !equals(name); } |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 366 | |
| 367 | /** |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 368 | * Return true if this is less than or equal to the other Name in the NDN canonical ordering. |
| 369 | * @param other The other Name to compare with. |
| 370 | * |
| 371 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 372 | */ |
Jeff Thompson | afc45a9 | 2014-01-15 12:42:45 -0800 | [diff] [blame] | 373 | bool |
| 374 | operator <= (const Name& other) const { return compare(other) <= 0; } |
| 375 | |
| 376 | /** |
| 377 | * Return true if this is less than the other Name in the NDN canonical ordering. |
| 378 | * @param other The other Name to compare with. |
| 379 | * |
| 380 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 381 | */ |
| 382 | bool |
| 383 | operator < (const Name& other) const { return compare(other) < 0; } |
| 384 | |
| 385 | /** |
| 386 | * Return true if this is less than or equal to the other Name in the NDN canonical ordering. |
| 387 | * @param other The other Name to compare with. |
| 388 | * |
| 389 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 390 | */ |
| 391 | bool |
| 392 | operator >= (const Name& other) const { return compare(other) >= 0; } |
| 393 | |
| 394 | /** |
| 395 | * Return true if this is greater than the other Name in the NDN canonical ordering. |
| 396 | * @param other The other Name to compare with. |
| 397 | * |
| 398 | * @see http://named-data.net/doc/0.2/technical/CanonicalOrder.html |
| 399 | */ |
| 400 | bool |
| 401 | operator > (const Name& other) const { return compare(other) > 0; } |
Jeff Thompson | 82568ad | 2013-12-17 15:17:40 -0800 | [diff] [blame] | 402 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 403 | // |
| 404 | // Iterator interface to name components. |
| 405 | // |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 406 | |
| 407 | /** |
| 408 | * Begin iterator (const). |
| 409 | */ |
| 410 | const_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 411 | begin() const |
| 412 | { |
| 413 | return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().begin()); |
| 414 | } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 415 | |
| 416 | /** |
| 417 | * Begin iterator. |
| 418 | */ |
| 419 | iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 420 | begin() { return reinterpret_cast<iterator>(&*m_nameBlock.elements().begin()); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 421 | |
| 422 | /** |
| 423 | * End iterator (const). |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 424 | * |
| 425 | * @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] | 426 | */ |
| 427 | const_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 428 | end() const { return reinterpret_cast<const_iterator>(&*m_nameBlock.elements().end()); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 429 | |
| 430 | /** |
| 431 | * End iterator. |
| 432 | */ |
| 433 | iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 434 | end() { return reinterpret_cast<iterator>(&*m_nameBlock.elements().end()); } |
| 435 | |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 436 | /** |
| 437 | * Reverse begin iterator (const). |
| 438 | */ |
| 439 | const_reverse_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 440 | rbegin() const { return const_reverse_iterator(end()); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 441 | |
| 442 | /** |
| 443 | * Reverse begin iterator. |
| 444 | */ |
| 445 | reverse_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 446 | rbegin() { return reverse_iterator(end()); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 447 | |
| 448 | /** |
| 449 | * Reverse end iterator (const). |
| 450 | */ |
| 451 | const_reverse_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 452 | rend() const { return const_reverse_iterator(begin()); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 453 | |
| 454 | /** |
| 455 | * Reverse end iterator. |
| 456 | */ |
| 457 | reverse_iterator |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 458 | rend() { return reverse_iterator(begin()); } |
Jeff Thompson | ec39fbd | 2013-10-04 10:56:23 -0700 | [diff] [blame] | 459 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 460 | private: |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 461 | mutable Block m_nameBlock; |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 462 | }; |
| 463 | |
| 464 | std::ostream & |
| 465 | operator << (std::ostream &os, const Name &name); |
| 466 | |
| 467 | inline std::string |
| 468 | Name::toUri() const |
Jeff Thompson | 49e321a | 2013-10-04 17:35:59 -0700 | [diff] [blame] | 469 | { |
Alexander Afanasyev | af283d8 | 2014-01-03 13:23:34 -0800 | [diff] [blame] | 470 | std::ostringstream os; |
| 471 | os << *this; |
| 472 | return os.str(); |
Jeff Thompson | 49e321a | 2013-10-04 17:35:59 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Alexander Afanasyev | 95e8c2f | 2014-02-06 17:29:30 -0800 | [diff] [blame] | 475 | } // namespace ndn |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 476 | |
| 477 | #endif |
| 478 | |