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