blob: 302800e105bcfda65c2684e96f80ef0bbe69ae6e [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
7#define NDN_NAME_HPP
8
9#include <vector>
Jeff Thompson443398d2013-07-02 19:45:46 -070010#include <string>
Jeff Thompson016ed642013-07-02 14:39:06 -070011#include "c/Name.h"
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070012#include "encoding/BinaryXMLWireFormat.hpp"
13
14namespace ndn {
15
Jeff Thompson016ed642013-07-02 14:39:06 -070016class NameComponent {
17public:
Jeff Thompson3f2175b2013-07-31 17:12:47 -070018 /**
19 * Create a new NameComponent with an empty value.
20 */
Jeff Thompson443398d2013-07-02 19:45:46 -070021 NameComponent()
22 {
23 }
24
Jeff Thompson3f2175b2013-07-31 17:12:47 -070025 /**
26 * Create a new NameComponent, copying the given value.
27 * @param value The value byte array.
28 */
29 NameComponent(const std::vector<unsigned char> &value)
30 : value_(value)
31 {
32 }
33
34 /**
35 * Create a new NameComponent, copying the given value.
36 * @param value Pointer to the value byte array.
37 * @param valueLen Length of value.
38 */
39 NameComponent(unsigned char *value, unsigned int valueLen)
Jeff Thompson016ed642013-07-02 14:39:06 -070040 : value_(value, value + valueLen)
41 {
42 }
43
44 /**
45 * Set the componentStruct to point to this component, without copying any memory.
46 * WARNING: The resulting pointer in componentStruct is invalid after a further use of this object which could reallocate memory.
Jeff Thompson3f2175b2013-07-31 17:12:47 -070047 * @param componentStruct The C ndn_NameComponent struct to receive the pointer.
Jeff Thompson016ed642013-07-02 14:39:06 -070048 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -070049 void get(struct ndn_NameComponent &componentStruct) const
Jeff Thompson016ed642013-07-02 14:39:06 -070050 {
Jeff Thompsond345a5b2013-07-08 16:18:23 -070051 componentStruct.value = (unsigned char *)&value_[0];
Jeff Thompson016ed642013-07-02 14:39:06 -070052 componentStruct.valueLength = value_.size();
53 }
54
Jeff Thompson443398d2013-07-02 19:45:46 -070055 /**
56 * Set this component value by decoding the escapedString between first and last according to the NDN URI Scheme.
57 * If the escaped string is "", "." or ".." then return false, which means this component value was not changed, and
58 * the component should be skipped in a URI name.
Jeff Thompson3f2175b2013-07-31 17:12:47 -070059 * @param first Pointer to the beginning of the escaped string
60 * @param last Pointer to the first character past the end of the escaped string
61 * @return True for success, false if escapedString is not a valid escaped component.
Jeff Thompson443398d2013-07-02 19:45:46 -070062 */
63 bool setFromEscapedString(const char *first, const char *last);
64
Jeff Thompson016ed642013-07-02 14:39:06 -070065 const std::vector<unsigned char> &getValue() const { return value_; }
66
67private:
68 std::vector<unsigned char> value_;
69};
70
Jeff Thompson9c41dfe2013-06-27 12:10:25 -070071class Name {
72public:
Jeff Thompson443398d2013-07-02 19:45:46 -070073 /**
74 * Create a new Name with no components.
75 */
Jeff Thompson016ed642013-07-02 14:39:06 -070076 Name() {
77 }
Jeff Thompson443398d2013-07-02 19:45:46 -070078
79 /**
Jeff Thompson3f2175b2013-07-31 17:12:47 -070080 * Create a new Name, copying the name components.
81 * @param components A vector of NameComponent
82 */
83 Name(const std::vector<NameComponent> &components)
84 : components_(components)
85 {
86 }
87
88 /**
Jeff Thompson443398d2013-07-02 19:45:46 -070089 * Parse the uri according to the NDN URI Scheme and create the name with the components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -070090 * @param uri The URI string.
Jeff Thompson443398d2013-07-02 19:45:46 -070091 */
Jeff Thompsona234d5d2013-07-26 16:46:22 -070092 Name(const char *uri);
Jeff Thompsone5f839b2013-06-28 12:50:38 -070093 /**
Jeff Thompson016ed642013-07-02 14:39:06 -070094 * Set the nameStruct to point to the components in this name, without copying any memory.
95 * 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 -070096 * @param nameStruct A C ndn_Name struct where the components array is already allocated.
Jeff Thompson016ed642013-07-02 14:39:06 -070097 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -070098 void get(struct ndn_Name &nameStruct) const;
Jeff Thompson016ed642013-07-02 14:39:06 -070099
100 /**
Jeff Thompson8b27e3a2013-07-03 18:19:53 -0700101 * Clear this name, and set the components by copying from the name struct.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700102 * @param nameStruct A C ndn_Name struct
Jeff Thompsonb468c312013-07-01 17:50:14 -0700103 */
Jeff Thompsondd3d2292013-07-10 11:59:44 -0700104 void set(const struct ndn_Name &nameStruct);
Jeff Thompsonb468c312013-07-01 17:50:14 -0700105
106 /**
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700107 * Add a new component, copying from value of length valueLength.
108 */
109 void addComponent(unsigned char *value, unsigned int valueLength) {
Jeff Thompson016ed642013-07-02 14:39:06 -0700110 components_.push_back(NameComponent(value, valueLength));
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700111 }
112
113 /**
114 * Clear all the components.
115 */
116 void clear() {
117 components_.clear();
118 }
119
120 /**
121 * Get the number of components.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700122 * @return The number of components.
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700123 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -0700124 unsigned int getComponentCount() const {
Jeff Thompsone5f839b2013-06-28 12:50:38 -0700125 return components_.size();
126 }
127
Jeff Thompson443398d2013-07-02 19:45:46 -0700128 const NameComponent &getComponent(unsigned int i) const { return components_[i]; }
129
Jeff Thompsone6063512013-07-01 15:11:28 -0700130 /**
131 * Encode this name as a URI.
Jeff Thompson3f2175b2013-07-31 17:12:47 -0700132 * @return The encoded URI.
Jeff Thompsone6063512013-07-01 15:11:28 -0700133 */
Jeff Thompsond345a5b2013-07-08 16:18:23 -0700134 std::string to_uri() const;
Jeff Thompsone6063512013-07-01 15:11:28 -0700135
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700136private:
Jeff Thompson016ed642013-07-02 14:39:06 -0700137 std::vector<NameComponent> components_;
Jeff Thompson9c41dfe2013-06-27 12:10:25 -0700138};
139
140}
141
142#endif
143