blob: 4e619cc6dd1047c2dbb1d37e990fe2ff58c217db [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompson47eecfc2013-07-07 22:56:46 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson47eecfc2013-07-07 22:56:46 -07005 * See COPYING for copyright and distribution information.
Jeff Thompson9c41dfe2013-06-27 12:10:25 -07006 */
7
Jeff Thompson54909772013-07-07 22:38:57 -07008#include <stdexcept>
Jeff Thompsonb8f1b132013-08-13 11:07:43 -07009#include <algorithm>
Jeff Thompson25b4e612013-10-10 16:03:24 -070010#include <ndn-cpp/name.hpp>
11#include "c/name.h"
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070012
13using namespace std;
Jeff Thompsond4144fe2013-09-18 15:59:57 -070014using namespace ndn::ptr_lib;
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070015
16namespace ndn {
17
Jeff Thompson26c63d62013-07-02 18:00:26 -070018static const char *WHITESPACE_CHARS = " \n\r\t";
19
20/**
21 * Modify str in place to erase whitespace on the left.
22 * @param str
23 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070024static inline void
25trimLeft(string& str)
Jeff Thompson26c63d62013-07-02 18:00:26 -070026{
27 size_t found = str.find_first_not_of(WHITESPACE_CHARS);
28 if (found != string::npos) {
29 if (found > 0)
30 str.erase(0, found);
31 }
32 else
33 // All whitespace
34 str.clear();
35}
36
37/**
38 * Modify str in place to erase whitespace on the right.
39 * @param str
40 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070041static inline void
42trimRight(string& str)
Jeff Thompson26c63d62013-07-02 18:00:26 -070043{
44 size_t found = str.find_last_not_of(WHITESPACE_CHARS);
45 if (found != string::npos) {
46 if (found + 1 < str.size())
47 str.erase(found + 1);
48 }
49 else
50 // All whitespace
51 str.clear();
52}
53
54/**
55 * Modify str in place to erase whitespace on the left and right.
56 * @param str
57 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070058static void
59trim(string& str)
Jeff Thompson26c63d62013-07-02 18:00:26 -070060{
61 trimLeft(str);
62 trimRight(str);
63}
Jeff Thompson443398d2013-07-02 19:45:46 -070064
Jeff Thompson26c63d62013-07-02 18:00:26 -070065/**
66 * Convert the hex character to an integer from 0 to 15, or -1 if not a hex character.
67 * @param c
68 * @return
69 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070070static int
Jeff Thompson10ad12a2013-09-24 16:19:11 -070071fromHexChar(uint8_t c)
Jeff Thompson26c63d62013-07-02 18:00:26 -070072{
73 if (c >= '0' && c <= '9')
74 return (int)c - (int)'0';
75 else if (c >= 'A' && c <= 'F')
76 return (int)c - (int)'A' + 10;
77 else if (c >= 'a' && c <= 'f')
78 return (int)c - (int)'a' + 10;
79 else
80 return -1;
81}
82
83/**
84 * Return a copy of str, converting each escaped "%XX" to the char value.
85 * @param str
86 */
Jeff Thompson0050abe2013-09-17 12:50:25 -070087static string
88unescape(const string& str)
Jeff Thompson26c63d62013-07-02 18:00:26 -070089{
90 ostringstream result;
91
Jeff Thompson97223af2013-09-24 17:01:27 -070092 for (size_t i = 0; i < str.size(); ++i) {
Jeff Thompson26c63d62013-07-02 18:00:26 -070093 if (str[i] == '%' && i + 2 < str.size()) {
94 int hi = fromHexChar(str[i + 1]);
95 int lo = fromHexChar(str[i + 2]);
96
97 if (hi < 0 || lo < 0)
98 // Invalid hex characters, so just keep the escaped string.
99 result << str[i] << str[i + 1] << str[i + 2];
100 else
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700101 result << (uint8_t)(16 * hi + lo);
Jeff Thompson26c63d62013-07-02 18:00:26 -0700102
103 // Skip ahead past the escaped value.
104 i += 2;
105 }
106 else
107 // Just copy through.
108 result << str[i];
109 }
110
111 return result.str();
112}
113
Jeff Thompson27cae532013-10-08 12:52:41 -0700114uint64_t Name::Component::toNumberWithMarker(uint8_t marker) const
115{
116 struct ndn_NameComponent componentStruct;
117 get(componentStruct);
118 uint64_t result;
119
120 ndn_Error error;
121 if ((error = ndn_NameComponent_toNumberWithMarker(&componentStruct, marker, &result)))
122 throw std::runtime_error(ndn_getErrorString(error));
123
124 return result;
125}
126
Jeff Thompson0050abe2013-09-17 12:50:25 -0700127Blob
Jeff Thompson97223af2013-09-24 17:01:27 -0700128Name::Component::makeFromEscapedString(const char *escapedString, size_t beginOffset, size_t endOffset)
Jeff Thompson443398d2013-07-02 19:45:46 -0700129{
Jeff Thompsonc1c12e42013-09-13 19:08:45 -0700130 string trimmedString(escapedString + beginOffset, escapedString + endOffset);
Jeff Thompson443398d2013-07-02 19:45:46 -0700131 trim(trimmedString);
132 string component = unescape(trimmedString);
133
134 if (component.find_first_not_of(".") == string::npos) {
135 // Special case for component of only periods.
136 if (component.size() <= 2)
137 // Zero, one or two periods is illegal. Ignore this component.
Jeff Thompson46411c92013-09-13 19:31:25 -0700138 return Blob();
Jeff Thompson995aba52013-09-12 12:04:52 -0700139 else
Jeff Thompson443398d2013-07-02 19:45:46 -0700140 // Remove 3 periods.
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700141 return Blob((const uint8_t *)&component[3], component.size() - 3);
Jeff Thompson443398d2013-07-02 19:45:46 -0700142 }
Jeff Thompson995aba52013-09-12 12:04:52 -0700143 else
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700144 return Blob((const uint8_t *)&component[0], component.size());
Jeff Thompson443398d2013-07-02 19:45:46 -0700145}
146
Jeff Thompson0050abe2013-09-17 12:50:25 -0700147Blob
148Name::Component::makeSegment(unsigned long segment)
Jeff Thompson8aac1992013-08-12 17:26:02 -0700149{
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700150 shared_ptr<vector<uint8_t> > value(new vector<uint8_t>());
Jeff Thompson8aac1992013-08-12 17:26:02 -0700151
Jeff Thompsonb8f1b132013-08-13 11:07:43 -0700152 // Add the leading zero.
Jeff Thompson995aba52013-09-12 12:04:52 -0700153 value->push_back(0);
Jeff Thompsonb8f1b132013-08-13 11:07:43 -0700154
Jeff Thompson8aac1992013-08-12 17:26:02 -0700155 // First encode in little endian.
156 while (segment != 0) {
Jeff Thompson995aba52013-09-12 12:04:52 -0700157 value->push_back(segment & 0xff);
Jeff Thompson8aac1992013-08-12 17:26:02 -0700158 segment >>= 8;
159 }
160
Jeff Thompson8aac1992013-08-12 17:26:02 -0700161 // Make it big endian.
Jeff Thompson995aba52013-09-12 12:04:52 -0700162 reverse(value->begin() + 1, value->end());
Jeff Thompson46411c92013-09-13 19:31:25 -0700163 return Blob(value);
Jeff Thompson8aac1992013-08-12 17:26:02 -0700164}
165
Jeff Thompson0050abe2013-09-17 12:50:25 -0700166void
Jeff Thompson25b4e612013-10-10 16:03:24 -0700167Name::Component::get(struct ndn_NameComponent& componentStruct) const
168{
169 value_.get(componentStruct.value);
170}
171
172uint64_t
173Name::Component::toNumber() const
174{
175 struct ndn_NameComponent componentStruct;
176 get(componentStruct);
177 return ndn_NameComponent_toNumber(&componentStruct);
178}
179
180void
Jeff Thompson0050abe2013-09-17 12:50:25 -0700181Name::set(const char *uri_cstr)
Jeff Thompson443398d2013-07-02 19:45:46 -0700182{
Jeff Thompson67515bd2013-08-15 17:43:22 -0700183 components_.clear();
184
Jeff Thompson443398d2013-07-02 19:45:46 -0700185 string uri = uri_cstr;
186 trim(uri);
187 if (uri.size() == 0)
188 return;
189
190 size_t iColon = uri.find(':');
191 if (iColon != string::npos) {
192 // Make sure the colon came before a '/'.
193 size_t iFirstSlash = uri.find('/');
194 if (iFirstSlash == string::npos || iColon < iFirstSlash) {
195 // Omit the leading protocol such as ndn:
196 uri.erase(0, iColon + 1);
197 trim(uri);
198 }
199 }
200
201 // Trim the leading slash and possibly the authority.
202 if (uri[0] == '/') {
203 if (uri.size() >= 2 && uri[1] == '/') {
204 // Strip the authority following "//".
205 size_t iAfterAuthority = uri.find('/', 2);
206 if (iAfterAuthority == string::npos)
207 // Unusual case: there was only an authority.
208 return;
209 else {
210 uri.erase(0, iAfterAuthority + 1);
211 trim(uri);
212 }
213 }
214 else {
215 uri.erase(0, 1);
216 trim(uri);
217 }
218 }
219
220 size_t iComponentStart = 0;
221
222 // Unescape the components.
223 while (iComponentStart < uri.size()) {
224 size_t iComponentEnd = uri.find("/", iComponentStart);
225 if (iComponentEnd == string::npos)
226 iComponentEnd = uri.size();
227
Jeff Thompson46411c92013-09-13 19:31:25 -0700228 Blob component = Component::makeFromEscapedString(&uri[0], iComponentStart, iComponentEnd);
229 // Ignore illegal components. This also gets rid of a trailing '/'.
230 if (component)
231 components_.push_back(Component(component));
Jeff Thompson443398d2013-07-02 19:45:46 -0700232
233 iComponentStart = iComponentEnd + 1;
234 }
235}
236
Jeff Thompson0050abe2013-09-17 12:50:25 -0700237void
238Name::get(struct ndn_Name& nameStruct) const
Jeff Thompson48815112013-06-28 18:22:48 -0700239{
Jeff Thompson016ed642013-07-02 14:39:06 -0700240 if (nameStruct.maxComponents < components_.size())
241 throw runtime_error("nameStruct.maxComponents must be >= this name getNComponents()");
242
243 nameStruct.nComponents = components_.size();
Jeff Thompson97223af2013-09-24 17:01:27 -0700244 for (size_t i = 0; i < nameStruct.nComponents; ++i)
Jeff Thompson016ed642013-07-02 14:39:06 -0700245 components_[i].get(nameStruct.components[i]);
Jeff Thompson48815112013-06-28 18:22:48 -0700246}
247
Jeff Thompson0050abe2013-09-17 12:50:25 -0700248void
249Name::set(const struct ndn_Name& nameStruct)
Jeff Thompsonb468c312013-07-01 17:50:14 -0700250{
251 clear();
Jeff Thompson97223af2013-09-24 17:01:27 -0700252 for (size_t i = 0; i < nameStruct.nComponents; ++i)
Jeff Thompson93034532013-10-08 11:52:43 -0700253 addComponent(nameStruct.components[i].value.value, nameStruct.components[i].value.length);
Jeff Thompsonb468c312013-07-01 17:50:14 -0700254}
255
Jeff Thompson26b0d792013-09-23 16:19:01 -0700256Name&
257Name::append(const Name& name)
258{
259 if (&name == this)
260 // Copying from this name, so need to make a copy first.
261 return append(Name(name));
262
263 for (size_t i = 0; i < name.components_.size(); ++i)
264 components_.push_back(name.components_[i]);
265
266 return *this;
267}
268
Jeff Thompson0050abe2013-09-17 12:50:25 -0700269std::string
270Name::toUri() const
Jeff Thompsone6063512013-07-01 15:11:28 -0700271{
Jeff Thompson4b2479a2013-07-02 15:37:39 -0700272 if (components_.size() == 0)
273 return "/";
274
275 ostringstream result;
Jeff Thompson97223af2013-09-24 17:01:27 -0700276 for (size_t i = 0; i < components_.size(); ++i) {
Jeff Thompson4b2479a2013-07-02 15:37:39 -0700277 result << "/";
Jeff Thompson9bdb3b22013-09-12 12:42:13 -0700278 toEscapedString(*components_[i].getValue(), result);
Jeff Thompsone6063512013-07-01 15:11:28 -0700279 }
280
Jeff Thompson4b2479a2013-07-02 15:37:39 -0700281 return result.str();
Jeff Thompsone6063512013-07-01 15:11:28 -0700282}
283
Jeff Thompsond0159d72013-09-23 13:34:15 -0700284Name
285Name::getSubName(size_t iStartComponent, size_t nComponents) const
286{
287 Name result;
288
Jeff Thompson97223af2013-09-24 17:01:27 -0700289 size_t iEnd = iStartComponent + nComponents;
290 for (size_t i = iStartComponent; i < iEnd && i < components_.size(); ++i)
Jeff Thompsond0159d72013-09-23 13:34:15 -0700291 result.components_.push_back(components_[i]);
292
293 return result;
294}
295
296Name
297Name::getSubName(size_t iStartComponent) const
298{
299 Name result;
300
Jeff Thompson97223af2013-09-24 17:01:27 -0700301 for (size_t i = iStartComponent; i < components_.size(); ++i)
Jeff Thompsond0159d72013-09-23 13:34:15 -0700302 result.components_.push_back(components_[i]);
303
304 return result;
305}
306
Jeff Thompson0050abe2013-09-17 12:50:25 -0700307bool
Jeff Thompson3c2ab012013-10-02 14:18:16 -0700308Name::equals(const Name& name) const
309{
310 if (components_.size() != name.components_.size())
311 return false;
312
313 for (size_t i = 0; i < components_.size(); ++i) {
314 if (*components_[i].getValue() != *name.components_[i].getValue())
315 return false;
316 }
317
318 return true;
319}
320
321bool
Jeff Thompson0050abe2013-09-17 12:50:25 -0700322Name::match(const Name& name) const
Jeff Thompsoncc35cd42013-08-20 12:23:14 -0700323{
324 // Imitate ndn_Name_match.
325
326 // This name is longer than the name we are checking it against.
327 if (components_.size() > name.components_.size())
Jeff Thompson3c2ab012013-10-02 14:18:16 -0700328 return false;
Jeff Thompsoncc35cd42013-08-20 12:23:14 -0700329
330 // Check if at least one of given components doesn't match.
Jeff Thompson3c2ab012013-10-02 14:18:16 -0700331 for (size_t i = 0; i < components_.size(); ++i) {
332 if (*components_[i].getValue() != *name.components_[i].getValue())
Jeff Thompsoncc35cd42013-08-20 12:23:14 -0700333 return false;
334 }
335
336 return true;
337}
338
Jeff Thompson0050abe2013-09-17 12:50:25 -0700339void
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700340Name::toEscapedString(const vector<uint8_t>& value, ostringstream& result)
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700341{
342 bool gotNonDot = false;
343 for (unsigned i = 0; i < value.size(); ++i) {
344 if (value[i] != 0x2e) {
345 gotNonDot = true;
346 break;
347 }
348 }
349 if (!gotNonDot) {
350 // Special case for component of zero or more periods. Add 3 periods.
351 result << "...";
Jeff Thompson97223af2013-09-24 17:01:27 -0700352 for (size_t i = 0; i < value.size(); ++i)
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700353 result << '.';
354 }
355 else {
356 // In case we need to escape, set to upper case hex and save the previous flags.
357 ios::fmtflags saveFlags = result.flags(ios::hex | ios::uppercase);
358
Jeff Thompson97223af2013-09-24 17:01:27 -0700359 for (size_t i = 0; i < value.size(); ++i) {
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700360 uint8_t x = value[i];
Jeff Thompsonec7789a2013-08-21 11:08:36 -0700361 // Check for 0-9, A-Z, a-z, (+), (-), (.), (_)
362 if (x >= 0x30 && x <= 0x39 || x >= 0x41 && x <= 0x5a ||
363 x >= 0x61 && x <= 0x7a || x == 0x2b || x == 0x2d ||
364 x == 0x2e || x == 0x5f)
365 result << x;
366 else {
367 result << '%';
368 if (x < 16)
369 result << '0';
370 result << (unsigned int)x;
371 }
372 }
373
374 // Restore.
375 result.flags(saveFlags);
376 }
377}
378
Jeff Thompson6653b0b2013-09-23 12:32:39 -0700379string
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700380Name::toEscapedString(const vector<uint8_t>& value)
Jeff Thompson6653b0b2013-09-23 12:32:39 -0700381{
382 ostringstream result;
383 toEscapedString(value, result);
384 return result.str();
385}
386
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700387}