Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Author: Jeff Thompson |
| 3 | * |
| 4 | * BSD license, See the LICENSE file for more information. |
| 5 | */ |
| 6 | |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 7 | #include <sstream> |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 8 | #include "Name.hpp" |
| 9 | |
| 10 | using namespace std; |
| 11 | |
| 12 | namespace ndn { |
| 13 | |
Jeff Thompson | 4b2479a | 2013-07-02 15:37:39 -0700 | [diff] [blame^] | 14 | /** |
| 15 | * Write the value to result, escaping characters according to the NDN URI Scheme. |
| 16 | * This also adds "..." to a value with zero or more ".". |
| 17 | * @param value the buffer with the value to escape |
| 18 | * @param result the string stream to write to. |
| 19 | */ |
| 20 | static void toEscapedString(const vector<unsigned char> &value, ostringstream &result) |
| 21 | { |
| 22 | bool gotNonDot = false; |
| 23 | for (unsigned i = 0; i < value.size(); ++i) { |
| 24 | if (value[i] != 0x2e) { |
| 25 | gotNonDot = true; |
| 26 | break; |
| 27 | } |
| 28 | } |
| 29 | if (!gotNonDot) { |
| 30 | // Special case for component of zero or more periods. Add 3 periods. |
| 31 | result << "..."; |
| 32 | for (unsigned int i = 0; i < value.size(); ++i) |
| 33 | result << "."; |
| 34 | } |
| 35 | else { |
| 36 | // In case we need to escape, set to upper case hex and save the previous flags. |
| 37 | ios::fmtflags saveFlags = result.flags(ios::hex | ios::uppercase); |
| 38 | |
| 39 | for (unsigned int i = 0; i < value.size(); ++i) { |
| 40 | unsigned char x = value[i]; |
| 41 | // Check for 0-9, A-Z, a-z, (+), (-), (.), (_) |
| 42 | if (x >= 0x30 && x <= 0x39 || x >= 0x41 && x <= 0x5a || |
| 43 | x >= 0x61 && x <= 0x7a || x == 0x2b || x == 0x2d || |
| 44 | x == 0x2e || x == 0x5f) |
| 45 | result << x; |
| 46 | else { |
| 47 | result << "%"; |
| 48 | if (x < 16) |
| 49 | result << "0"; |
| 50 | result << (unsigned int)x; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | // Restore. |
| 55 | result.flags(saveFlags); |
| 56 | } |
| 57 | } |
| 58 | |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 59 | void Name::get(struct ndn_Name &nameStruct) |
Jeff Thompson | 4881511 | 2013-06-28 18:22:48 -0700 | [diff] [blame] | 60 | { |
Jeff Thompson | 016ed64 | 2013-07-02 14:39:06 -0700 | [diff] [blame] | 61 | if (nameStruct.maxComponents < components_.size()) |
| 62 | throw runtime_error("nameStruct.maxComponents must be >= this name getNComponents()"); |
| 63 | |
| 64 | nameStruct.nComponents = components_.size(); |
| 65 | for (unsigned int i = 0; i < nameStruct.nComponents; ++i) |
| 66 | components_[i].get(nameStruct.components[i]); |
Jeff Thompson | 4881511 | 2013-06-28 18:22:48 -0700 | [diff] [blame] | 67 | } |
| 68 | |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 69 | void Name::set(struct ndn_Name &nameStruct) |
| 70 | { |
| 71 | clear(); |
Jeff Thompson | ccb13c1 | 2013-07-01 18:16:00 -0700 | [diff] [blame] | 72 | for (unsigned int i = 0; i < nameStruct.nComponents; ++i) |
Jeff Thompson | b468c31 | 2013-07-01 17:50:14 -0700 | [diff] [blame] | 73 | addComponent(nameStruct.components[i].value, nameStruct.components[i].valueLength); |
| 74 | } |
| 75 | |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 76 | std::string Name::to_uri() |
| 77 | { |
Jeff Thompson | 4b2479a | 2013-07-02 15:37:39 -0700 | [diff] [blame^] | 78 | if (components_.size() == 0) |
| 79 | return "/"; |
| 80 | |
| 81 | ostringstream result; |
Jeff Thompson | ccb13c1 | 2013-07-01 18:16:00 -0700 | [diff] [blame] | 82 | for (unsigned int i = 0; i < components_.size(); ++i) { |
Jeff Thompson | 4b2479a | 2013-07-02 15:37:39 -0700 | [diff] [blame^] | 83 | result << "/"; |
| 84 | toEscapedString(components_[i].getValue(), result); |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Jeff Thompson | 4b2479a | 2013-07-02 15:37:39 -0700 | [diff] [blame^] | 87 | return result.str(); |
Jeff Thompson | e606351 | 2013-07-01 15:11:28 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 90 | } |