Jeff Thompson | 47eecfc | 2013-07-07 22:56:46 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef NDN_NAME_HPP |
| 7 | #define NDN_NAME_HPP |
| 8 | |
| 9 | #include <vector> |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 10 | #include <string> |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 11 | #include "c/name.h" |
| 12 | #include "encoding/binary-xml-wire-format.hpp" |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 13 | |
| 14 | namespace ndn { |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 15 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 16 | class Name { |
| 17 | public: |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 18 | class Component { |
| 19 | public: |
| 20 | /** |
| 21 | * Create a new Name::Component with an empty value. |
| 22 | */ |
| 23 | Component() |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Create a new Name::Component, copying the given value. |
| 29 | * @param value The value byte array. |
| 30 | */ |
| 31 | Component(const std::vector<unsigned char> &value) |
| 32 | : value_(value) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Create a new Name::Component, copying the given value. |
| 38 | * @param value Pointer to the value byte array. |
| 39 | * @param valueLen Length of value. |
| 40 | */ |
| 41 | Component(unsigned char *value, unsigned int valueLen) |
| 42 | : value_(value, value + valueLen) |
| 43 | { |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Set the componentStruct to point to this component, without copying any memory. |
| 48 | * WARNING: The resulting pointer in componentStruct is invalid after a further use of this object which could reallocate memory. |
| 49 | * @param componentStruct The C ndn_NameComponent struct to receive the pointer. |
| 50 | */ |
| 51 | void get(struct ndn_NameComponent &componentStruct) const |
| 52 | { |
| 53 | componentStruct.value = (unsigned char *)&value_[0]; |
| 54 | componentStruct.valueLength = value_.size(); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Set this component value by decoding the escapedString between first and last according to the NDN URI Scheme. |
| 59 | * If the escaped string is "", "." or ".." then return false, which means this component value was not changed, and |
| 60 | * the component should be skipped in a URI name. |
| 61 | * @param first Pointer to the beginning of the escaped string |
| 62 | * @param last Pointer to the first character past the end of the escaped string |
| 63 | * @return True for success, false if escapedString is not a valid escaped component. |
| 64 | */ |
| 65 | bool setFromEscapedString(const char *first, const char *last); |
| 66 | |
| 67 | const std::vector<unsigned char> &getValue() const { return value_; } |
| 68 | |
| 69 | private: |
| 70 | std::vector<unsigned char> value_; |
| 71 | }; |
| 72 | |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 73 | /** |
| 74 | * Create a new Name with no components. |
| 75 | */ |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 76 | Name() { |
| 77 | } |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 78 | |
| 79 | /** |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 80 | * Create a new Name, copying the name components. |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 81 | * @param components A vector of Component |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 82 | */ |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 83 | Name(const std::vector<Component> &components) |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 84 | : components_(components) |
| 85 | { |
| 86 | } |
| 87 | |
| 88 | /** |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 89 | * Parse the uri according to the NDN URI Scheme and create the name with the components. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 90 | * @param uri The URI string. |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 91 | */ |
Jeff Thompson | a234d5d | 2013-07-26 16:46:22 -0700 | [diff] [blame] | 92 | Name(const char *uri); |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 93 | |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 94 | /** |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 95 | * Set the nameStruct to point to the components in this name, without copying any memory. |
| 96 | * WARNING: The resulting pointers in nameStruct are invalid after a further use of this object which could reallocate memory. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 97 | * @param nameStruct A C ndn_Name struct where the components array is already allocated. |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 98 | */ |
Jeff Thompson | d345a5b | 2013-07-08 16:18:23 -0700 | [diff] [blame] | 99 | void get(struct ndn_Name &nameStruct) const; |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 100 | |
| 101 | /** |
Jeff Thompson | 8b27e3a | 2013-07-03 18:19:53 -0700 | [diff] [blame] | 102 | * Clear this name, and set the components by copying from the name struct. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 103 | * @param nameStruct A C ndn_Name struct |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 104 | */ |
Jeff Thompson | dd3d229 | 2013-07-10 11:59:44 -0700 | [diff] [blame] | 105 | void set(const struct ndn_Name &nameStruct); |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 106 | |
| 107 | /** |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 108 | * Add a new component, copying from value of length valueLength. |
| 109 | */ |
| 110 | void addComponent(unsigned char *value, unsigned int valueLength) { |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 111 | components_.push_back(Component(value, valueLength)); |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Clear all the components. |
| 116 | */ |
| 117 | void clear() { |
| 118 | components_.clear(); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Get the number of components. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 123 | * @return The number of components. |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 124 | */ |
Jeff Thompson | d345a5b | 2013-07-08 16:18:23 -0700 | [diff] [blame] | 125 | unsigned int getComponentCount() const { |
Jeff Thompson | e5f839b | 2013-06-28 12:50:38 -0700 | [diff] [blame] | 126 | return components_.size(); |
| 127 | } |
| 128 | |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 129 | const Component &getComponent(unsigned int i) const { return components_[i]; } |
Jeff Thompson | 443398d | 2013-07-02 19:45:46 -0700 | [diff] [blame] | 130 | |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 131 | /** |
| 132 | * Encode this name as a URI. |
Jeff Thompson | 3f2175b | 2013-07-31 17:12:47 -0700 | [diff] [blame] | 133 | * @return The encoded URI. |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 134 | */ |
Jeff Thompson | d345a5b | 2013-07-08 16:18:23 -0700 | [diff] [blame] | 135 | std::string to_uri() const; |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 136 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 137 | private: |
Jeff Thompson | 5a6b5ab | 2013-08-05 15:43:47 -0700 | [diff] [blame] | 138 | std::vector<Component> components_; |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | } |
| 142 | |
| 143 | #endif |
| 144 | |