blob: 587301c6518a60f014784f7d7436db0227f5c69a [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07004 * See COPYING for copyright and distribution information.
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07005 */
6
7#ifndef NDN_NAME_HPP
Jeff Thompson2d27e2f2013-08-09 12:55:00 -07008#define NDN_NAME_HPP
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07009
10#include <vector>
Jeff Thompson443398d2013-07-02 19:45:46 -070011#include <string>
Jeff Thompsonec7789a2013-08-21 11:08:36 -070012#include <sstream>
Jeff Thompson53412192013-08-06 13:35:50 -070013#include "c/name.h"
14#include "encoding/binary-xml-wire-format.hpp"
Jeff Thompson995aba52013-09-12 12:04:52 -070015#include "util/blob.hpp"
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070016
17namespace ndn {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070018
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070019class Name {
20public:
Jeff Thompsonc1c12e42013-09-13 19:08:45 -070021 /**
22 * A Name::Component is holds an immutable name component value.
23 */
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070024 class Component {
25 public:
26 /**
27 * Create a new Name::Component with an empty value.
28 */
29 Component()
30 {
31 }
32
33 /**
34 * Create a new Name::Component, copying the given value.
35 * @param value The value byte array.
36 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070037 Component(const std::vector<unsigned char>& value)
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070038 : value_(value)
39 {
40 }
41
42 /**
43 * Create a new Name::Component, copying the given value.
44 * @param value Pointer to the value byte array.
45 * @param valueLen Length of value.
46 */
Jeff Thompsona166b732013-08-27 16:09:29 -070047 Component(const unsigned char *value, unsigned int valueLen)
Jeff Thompson995aba52013-09-12 12:04:52 -070048 : value_(value, valueLen)
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070049 {
50 }
Jeff Thompson0f743452013-09-12 14:23:18 -070051
52 /**
53 * Create a new Name::Component, taking another pointer to the Blob value.
54 * @param value A blob with a pointer to an immutable array. The pointer is copied.
55 */
56 Component(const Blob &value)
57 : value_(value)
58 {
59 }
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070060
61 /**
62 * Set the componentStruct to point to this component, without copying any memory.
63 * WARNING: The resulting pointer in componentStruct is invalid after a further use of this object which could reallocate memory.
64 * @param componentStruct The C ndn_NameComponent struct to receive the pointer.
65 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070066 void get(struct ndn_NameComponent& componentStruct) const
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070067 {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070068 componentStruct.valueLength = value_.size();
Jeff Thompson38d0e082013-08-12 18:07:44 -070069 if (value_.size() > 0)
Jeff Thompson995aba52013-09-12 12:04:52 -070070 componentStruct.value = (unsigned char*)value_.buf();
Jeff Thompson05c8c1b2013-09-12 12:47:57 -070071 else
72 componentStruct.value = 0;
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070073 }
74
Jeff Thompson9bdb3b22013-09-12 12:42:13 -070075 const Blob& getValue() const { return value_; }
76
77 void setValue(const Blob& value) { value_ = value; }
Jeff Thompsonc1c12e42013-09-13 19:08:45 -070078
79 /**
80 * Set this component value by decoding the escapedString between beginOffset and endOffset according to the NDN URI Scheme.
81 * If the escaped string is "", "." or ".." then return false, which means this component value was not changed, and
82 * the component should be skipped in a URI name.
83 * @param escapedString The escaped string. It does not need to be null-terminated because we only scan to endOffset.
84 * @param beginOffset The offset in escapedString of the beginning of the portion to decode.
85 * @param endOffset The offset in escapedString of the end of the portion to decode.
86 * @return True for success, false if escapedString is not a valid escaped component.
87 */
88 bool setFromEscapedString(const char *escapedString, unsigned int beginOffset, unsigned int endOffset);
Jeff Thompson8aac1992013-08-12 17:26:02 -070089
90 /**
91 * Set this component to the encoded segment number.
92 * @param segment The segment number.
93 */
94 void setSegment(unsigned long segment);
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070095
96 private:
Jeff Thompson995aba52013-09-12 12:04:52 -070097 Blob value_;
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070098 };
99
Jeff Thompson443398d2013-07-02 19:45:46 -0700100 /**
101 * Create a new Name with no components.
102 */
Jeff Thompson016ed642013-07-02 14:39:06 -0700103 Name() {
104 }
Jeff Thompson443398d2013-07-02 19:45:46 -0700105
106 /**
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700107 * Create a new Name, copying the name components.
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700108 * @param components A vector of Component
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700109 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700110 Name(const std::vector<Component>& components)
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700111 : components_(components)
112 {
113 }
114
115 /**
Jeff Thompson443398d2013-07-02 19:45:46 -0700116 * Parse the uri according to the NDN URI Scheme and create the name with the components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700117 * @param uri The URI string.
Jeff Thompson443398d2013-07-02 19:45:46 -0700118 */
Jeff Thompson67515bd2013-08-15 17:43:22 -0700119 Name(const char *uri)
120 {
121 set(uri);
122 }
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700123
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700124 /**
Jeff Thompson016ed642013-07-02 14:39:06 -0700125 * Set the nameStruct to point to the components in this name, without copying any memory.
126 * 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 -0700127 * @param nameStruct A C ndn_Name struct where the components array is already allocated.
Jeff Thompson016ed642013-07-02 14:39:06 -0700128 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700129 void get(struct ndn_Name& nameStruct) const;
Jeff Thompson016ed642013-07-02 14:39:06 -0700130
131 /**
Jeff Thompson8b27e3a2013-07-03 18:19:53 -0700132 * Clear this name, and set the components by copying from the name struct.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700133 * @param nameStruct A C ndn_Name struct
Jeff Thompsonb468c312013-07-01 17:50:14 -0700134 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700135 void set(const struct ndn_Name& nameStruct);
Jeff Thompsonb468c312013-07-01 17:50:14 -0700136
137 /**
Jeff Thompson67515bd2013-08-15 17:43:22 -0700138 * Parse the uri according to the NDN URI Scheme and set the name with the components.
139 * @param uri The URI string.
140 */
141 void set(const char *uri);
142
143 /**
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700144 * Add a new component, copying from value of length valueLength.
145 */
Jeff Thompson0f743452013-09-12 14:23:18 -0700146 void addComponent(const unsigned char *value, unsigned int valueLength)
147 {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700148 components_.push_back(Component(value, valueLength));
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700149 }
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700150
151 /**
152 * Add a new component, copying from value.
153 */
Jeff Thompson0f743452013-09-12 14:23:18 -0700154 void addComponent(const std::vector<unsigned char>& value)
155 {
156 components_.push_back(value);
157 }
158
159 void addComponent(const Blob &value)
160 {
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700161 components_.push_back(value);
162 }
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700163
164 /**
165 * Clear all the components.
166 */
167 void clear() {
168 components_.clear();
169 }
170
171 /**
172 * Get the number of components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700173 * @return The number of components.
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700174 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -0700175 unsigned int getComponentCount() const {
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700176 return components_.size();
177 }
178
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700179 const Component& getComponent(unsigned int i) const { return components_[i]; }
Jeff Thompson443398d2013-07-02 19:45:46 -0700180
Jeff Thompsone6063512013-07-01 15:11:28 -0700181 /**
182 * Encode this name as a URI.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700183 * @return The encoded URI.
Jeff Thompsone6063512013-07-01 15:11:28 -0700184 */
Jeff Thompson21844fc2013-08-08 14:52:51 -0700185 std::string toUri() const;
Jeff Thompsone6063512013-07-01 15:11:28 -0700186
Jeff Thompson21844fc2013-08-08 14:52:51 -0700187 /**
188 * @deprecated Use toUri().
189 */
190 std::string to_uri() const
191 {
192 return toUri();
193 }
Jeff Thompson8aac1992013-08-12 17:26:02 -0700194
195 /**
196 * Append a component with the encoded segment number.
197 * @param segment The segment number.
198 */
199 void appendSegment(unsigned long segment)
200 {
201 components_.push_back(Component());
202 components_.back().setSegment(segment);
203 }
Jeff Thompsoncc35cd42013-08-20 12:23:14 -0700204
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700205 /**
206 * Check if the N components of this name are the same as the first N components of the given name.
207 * @param name The Name to check.
208 * @return true if this matches the given name, otherwise false. This always returns true if this name is empty.
209 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700210 bool match(const Name& name) const;
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700211
212 /**
213 * Write the value to result, escaping characters according to the NDN URI Scheme.
214 * This also adds "..." to a value with zero or more ".".
215 * @param value the buffer with the value to escape
216 * @param result the string stream to write to.
217 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700218 static void toEscapedString(const std::vector<unsigned char>& value, std::ostringstream& result);
Jeff Thompson21844fc2013-08-08 14:52:51 -0700219
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700220private:
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700221 std::vector<Component> components_;
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700222};
223
224}
225
226#endif
227