blob: 41811f5ae129c26c5582e1d65a3a8db400cbc936 [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07004 */
5
6#ifndef NDN_NAME_HPP
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07007#define NDN_NAME_HPP
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07008
9#include <vector>
Jeff Thompson443398d2013-07-02 19:45:46 -070010#include <string>
Jeff Thompsonec7789a2013-08-21 11:08:36 -070011#include <sstream>
Jeff Thompson53412192013-08-06 13:35:50 -070012#include "c/name.h"
13#include "encoding/binary-xml-wire-format.hpp"
Jeff Thompson995aba52013-09-12 12:04:52 -070014#include "util/blob.hpp"
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070015
16namespace ndn {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070017
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070018class Name {
19public:
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070020 class Component {
21 public:
22 /**
23 * Create a new Name::Component with an empty value.
24 */
25 Component()
26 {
27 }
28
29 /**
30 * Create a new Name::Component, copying the given value.
31 * @param value The value byte array.
32 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070033 Component(const std::vector<unsigned char>& value)
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070034 : value_(value)
35 {
36 }
37
38 /**
39 * Create a new Name::Component, copying the given value.
40 * @param value Pointer to the value byte array.
41 * @param valueLen Length of value.
42 */
Jeff Thompsona166b732013-08-27 16:09:29 -070043 Component(const unsigned char *value, unsigned int valueLen)
Jeff Thompson995aba52013-09-12 12:04:52 -070044 : value_(value, valueLen)
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070045 {
46 }
47
48 /**
49 * Set the componentStruct to point to this component, without copying any memory.
50 * WARNING: The resulting pointer in componentStruct is invalid after a further use of this object which could reallocate memory.
51 * @param componentStruct The C ndn_NameComponent struct to receive the pointer.
52 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070053 void get(struct ndn_NameComponent& componentStruct) const
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070054 {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070055 componentStruct.valueLength = value_.size();
Jeff Thompson38d0e082013-08-12 18:07:44 -070056 if (value_.size() > 0)
Jeff Thompson995aba52013-09-12 12:04:52 -070057 componentStruct.value = (unsigned char*)value_.buf();
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070058 }
59
60 /**
61 * Set this component value by decoding the escapedString between first and last according to the NDN URI Scheme.
62 * If the escaped string is "", "." or ".." then return false, which means this component value was not changed, and
63 * the component should be skipped in a URI name.
64 * @param first Pointer to the beginning of the escaped string
65 * @param last Pointer to the first character past the end of the escaped string
66 * @return True for success, false if escapedString is not a valid escaped component.
67 */
68 bool setFromEscapedString(const char *first, const char *last);
69
Jeff Thompson995aba52013-09-12 12:04:52 -070070 const std::vector<unsigned char>& getValue() const { return (*value_); }
Jeff Thompson8aac1992013-08-12 17:26:02 -070071
72 /**
73 * Set this component to the encoded segment number.
74 * @param segment The segment number.
75 */
76 void setSegment(unsigned long segment);
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070077
78 private:
Jeff Thompson995aba52013-09-12 12:04:52 -070079 Blob value_;
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070080 };
81
Jeff Thompson443398d2013-07-02 19:45:46 -070082 /**
83 * Create a new Name with no components.
84 */
Jeff Thompson016ed642013-07-02 14:39:06 -070085 Name() {
86 }
Jeff Thompson443398d2013-07-02 19:45:46 -070087
88 /**
Jeff Thompson3f2175b2013-07-31 17:12:47 -070089 * Create a new Name, copying the name components.
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070090 * @param components A vector of Component
Jeff Thompson3f2175b2013-07-31 17:12:47 -070091 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070092 Name(const std::vector<Component>& components)
Jeff Thompson3f2175b2013-07-31 17:12:47 -070093 : components_(components)
94 {
95 }
96
97 /**
Jeff Thompson443398d2013-07-02 19:45:46 -070098 * Parse the uri according to the NDN URI Scheme and create the name with the components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -070099 * @param uri The URI string.
Jeff Thompson443398d2013-07-02 19:45:46 -0700100 */
Jeff Thompson67515bd2013-08-15 17:43:22 -0700101 Name(const char *uri)
102 {
103 set(uri);
104 }
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700105
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700106 /**
Jeff Thompson016ed642013-07-02 14:39:06 -0700107 * Set the nameStruct to point to the components in this name, without copying any memory.
108 * WARNING: The resulting pointers in nameStruct are invalid after a further use of this object which could reallocate memory.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700109 * @param nameStruct A C ndn_Name struct where the components array is already allocated.
Jeff Thompson016ed642013-07-02 14:39:06 -0700110 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700111 void get(struct ndn_Name& nameStruct) const;
Jeff Thompson016ed642013-07-02 14:39:06 -0700112
113 /**
Jeff Thompson8b27e3a2013-07-03 18:19:53 -0700114 * Clear this name, and set the components by copying from the name struct.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700115 * @param nameStruct A C ndn_Name struct
Jeff Thompsonb468c312013-07-01 17:50:14 -0700116 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700117 void set(const struct ndn_Name& nameStruct);
Jeff Thompsonb468c312013-07-01 17:50:14 -0700118
119 /**
Jeff Thompson67515bd2013-08-15 17:43:22 -0700120 * Parse the uri according to the NDN URI Scheme and set the name with the components.
121 * @param uri The URI string.
122 */
123 void set(const char *uri);
124
125 /**
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700126 * Add a new component, copying from value of length valueLength.
127 */
Jeff Thompsona166b732013-08-27 16:09:29 -0700128 void addComponent(const unsigned char *value, unsigned int valueLength) {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700129 components_.push_back(Component(value, valueLength));
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700130 }
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700131
132 /**
133 * Add a new component, copying from value.
134 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700135 void addComponent(const std::vector<unsigned char>& value) {
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700136 components_.push_back(value);
137 }
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700138
139 /**
140 * Clear all the components.
141 */
142 void clear() {
143 components_.clear();
144 }
145
146 /**
147 * Get the number of components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700148 * @return The number of components.
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700149 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -0700150 unsigned int getComponentCount() const {
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700151 return components_.size();
152 }
153
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700154 const Component& getComponent(unsigned int i) const { return components_[i]; }
Jeff Thompson443398d2013-07-02 19:45:46 -0700155
Jeff Thompsone6063512013-07-01 15:11:28 -0700156 /**
157 * Encode this name as a URI.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700158 * @return The encoded URI.
Jeff Thompsone6063512013-07-01 15:11:28 -0700159 */
Jeff Thompson21844fc2013-08-08 14:52:51 -0700160 std::string toUri() const;
Jeff Thompsone6063512013-07-01 15:11:28 -0700161
Jeff Thompson21844fc2013-08-08 14:52:51 -0700162 /**
163 * @deprecated Use toUri().
164 */
165 std::string to_uri() const
166 {
167 return toUri();
168 }
Jeff Thompson8aac1992013-08-12 17:26:02 -0700169
170 /**
171 * Append a component with the encoded segment number.
172 * @param segment The segment number.
173 */
174 void appendSegment(unsigned long segment)
175 {
176 components_.push_back(Component());
177 components_.back().setSegment(segment);
178 }
Jeff Thompsoncc35cd42013-08-20 12:23:14 -0700179
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700180 /**
181 * Check if the N components of this name are the same as the first N components of the given name.
182 * @param name The Name to check.
183 * @return true if this matches the given name, otherwise false. This always returns true if this name is empty.
184 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700185 bool match(const Name& name) const;
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700186
187 /**
188 * Write the value to result, escaping characters according to the NDN URI Scheme.
189 * This also adds "..." to a value with zero or more ".".
190 * @param value the buffer with the value to escape
191 * @param result the string stream to write to.
192 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700193 static void toEscapedString(const std::vector<unsigned char>& value, std::ostringstream& result);
Jeff Thompson21844fc2013-08-08 14:52:51 -0700194
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700195private:
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700196 std::vector<Component> components_;
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700197};
198
199}
200
201#endif
202