blob: 587b8eec9a5febafa7f5778f7063f15cb1db97df [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 Thompson5a6b5ab2013-08-05 15:43:47 -070021 class Component {
22 public:
23 /**
24 * Create a new Name::Component with an empty value.
25 */
26 Component()
27 {
28 }
29
30 /**
31 * Create a new Name::Component, copying the given value.
32 * @param value The value byte array.
33 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070034 Component(const std::vector<unsigned char>& value)
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070035 : value_(value)
36 {
37 }
38
39 /**
40 * Create a new Name::Component, copying the given value.
41 * @param value Pointer to the value byte array.
42 * @param valueLen Length of value.
43 */
Jeff Thompsona166b732013-08-27 16:09:29 -070044 Component(const unsigned char *value, unsigned int valueLen)
Jeff Thompson995aba52013-09-12 12:04:52 -070045 : value_(value, valueLen)
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070046 {
47 }
Jeff Thompson0f743452013-09-12 14:23:18 -070048
49 /**
50 * Create a new Name::Component, taking another pointer to the Blob value.
51 * @param value A blob with a pointer to an immutable array. The pointer is copied.
52 */
53 Component(const Blob &value)
54 : value_(value)
55 {
56 }
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070057
58 /**
59 * Set the componentStruct to point to this component, without copying any memory.
60 * WARNING: The resulting pointer in componentStruct is invalid after a further use of this object which could reallocate memory.
61 * @param componentStruct The C ndn_NameComponent struct to receive the pointer.
62 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070063 void get(struct ndn_NameComponent& componentStruct) const
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070064 {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070065 componentStruct.valueLength = value_.size();
Jeff Thompson38d0e082013-08-12 18:07:44 -070066 if (value_.size() > 0)
Jeff Thompson995aba52013-09-12 12:04:52 -070067 componentStruct.value = (unsigned char*)value_.buf();
Jeff Thompson05c8c1b2013-09-12 12:47:57 -070068 else
69 componentStruct.value = 0;
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070070 }
71
72 /**
73 * Set this component value by decoding the escapedString between first and last according to the NDN URI Scheme.
74 * If the escaped string is "", "." or ".." then return false, which means this component value was not changed, and
75 * the component should be skipped in a URI name.
76 * @param first Pointer to the beginning of the escaped string
77 * @param last Pointer to the first character past the end of the escaped string
78 * @return True for success, false if escapedString is not a valid escaped component.
79 */
80 bool setFromEscapedString(const char *first, const char *last);
81
Jeff Thompson9bdb3b22013-09-12 12:42:13 -070082 const Blob& getValue() const { return value_; }
83
84 void setValue(const Blob& value) { value_ = value; }
Jeff Thompson8aac1992013-08-12 17:26:02 -070085
86 /**
87 * Set this component to the encoded segment number.
88 * @param segment The segment number.
89 */
90 void setSegment(unsigned long segment);
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070091
92 private:
Jeff Thompson995aba52013-09-12 12:04:52 -070093 Blob value_;
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -070094 };
95
Jeff Thompson443398d2013-07-02 19:45:46 -070096 /**
97 * Create a new Name with no components.
98 */
Jeff Thompson016ed642013-07-02 14:39:06 -070099 Name() {
100 }
Jeff Thompson443398d2013-07-02 19:45:46 -0700101
102 /**
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700103 * Create a new Name, copying the name components.
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700104 * @param components A vector of Component
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700105 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700106 Name(const std::vector<Component>& components)
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700107 : components_(components)
108 {
109 }
110
111 /**
Jeff Thompson443398d2013-07-02 19:45:46 -0700112 * Parse the uri according to the NDN URI Scheme and create the name with the components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700113 * @param uri The URI string.
Jeff Thompson443398d2013-07-02 19:45:46 -0700114 */
Jeff Thompson67515bd2013-08-15 17:43:22 -0700115 Name(const char *uri)
116 {
117 set(uri);
118 }
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700119
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700120 /**
Jeff Thompson016ed642013-07-02 14:39:06 -0700121 * Set the nameStruct to point to the components in this name, without copying any memory.
122 * 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 -0700123 * @param nameStruct A C ndn_Name struct where the components array is already allocated.
Jeff Thompson016ed642013-07-02 14:39:06 -0700124 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700125 void get(struct ndn_Name& nameStruct) const;
Jeff Thompson016ed642013-07-02 14:39:06 -0700126
127 /**
Jeff Thompson8b27e3a2013-07-03 18:19:53 -0700128 * Clear this name, and set the components by copying from the name struct.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700129 * @param nameStruct A C ndn_Name struct
Jeff Thompsonb468c312013-07-01 17:50:14 -0700130 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700131 void set(const struct ndn_Name& nameStruct);
Jeff Thompsonb468c312013-07-01 17:50:14 -0700132
133 /**
Jeff Thompson67515bd2013-08-15 17:43:22 -0700134 * Parse the uri according to the NDN URI Scheme and set the name with the components.
135 * @param uri The URI string.
136 */
137 void set(const char *uri);
138
139 /**
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700140 * Add a new component, copying from value of length valueLength.
141 */
Jeff Thompson0f743452013-09-12 14:23:18 -0700142 void addComponent(const unsigned char *value, unsigned int valueLength)
143 {
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700144 components_.push_back(Component(value, valueLength));
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700145 }
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700146
147 /**
148 * Add a new component, copying from value.
149 */
Jeff Thompson0f743452013-09-12 14:23:18 -0700150 void addComponent(const std::vector<unsigned char>& value)
151 {
152 components_.push_back(value);
153 }
154
155 void addComponent(const Blob &value)
156 {
Jeff Thompsonf72b1ac2013-08-16 16:44:41 -0700157 components_.push_back(value);
158 }
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700159
160 /**
161 * Clear all the components.
162 */
163 void clear() {
164 components_.clear();
165 }
166
167 /**
168 * Get the number of components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700169 * @return The number of components.
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700170 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -0700171 unsigned int getComponentCount() const {
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700172 return components_.size();
173 }
174
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700175 const Component& getComponent(unsigned int i) const { return components_[i]; }
Jeff Thompson443398d2013-07-02 19:45:46 -0700176
Jeff Thompsone6063512013-07-01 15:11:28 -0700177 /**
178 * Encode this name as a URI.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700179 * @return The encoded URI.
Jeff Thompsone6063512013-07-01 15:11:28 -0700180 */
Jeff Thompson21844fc2013-08-08 14:52:51 -0700181 std::string toUri() const;
Jeff Thompsone6063512013-07-01 15:11:28 -0700182
Jeff Thompson21844fc2013-08-08 14:52:51 -0700183 /**
184 * @deprecated Use toUri().
185 */
186 std::string to_uri() const
187 {
188 return toUri();
189 }
Jeff Thompson8aac1992013-08-12 17:26:02 -0700190
191 /**
192 * Append a component with the encoded segment number.
193 * @param segment The segment number.
194 */
195 void appendSegment(unsigned long segment)
196 {
197 components_.push_back(Component());
198 components_.back().setSegment(segment);
199 }
Jeff Thompsoncc35cd42013-08-20 12:23:14 -0700200
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700201 /**
202 * Check if the N components of this name are the same as the first N components of the given name.
203 * @param name The Name to check.
204 * @return true if this matches the given name, otherwise false. This always returns true if this name is empty.
205 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700206 bool match(const Name& name) const;
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700207
208 /**
209 * Write the value to result, escaping characters according to the NDN URI Scheme.
210 * This also adds "..." to a value with zero or more ".".
211 * @param value the buffer with the value to escape
212 * @param result the string stream to write to.
213 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700214 static void toEscapedString(const std::vector<unsigned char>& value, std::ostringstream& result);
Jeff Thompson21844fc2013-08-08 14:52:51 -0700215
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700216private:
Jeff Thompson5a6b5ab2013-08-05 15:43:47 -0700217 std::vector<Component> components_;
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700218};
219
220}
221
222#endif
223