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 | 4c89ad6 | 2013-06-28 12:50:13 -0700 | [diff] [blame] | 7 | #include <stdexcept> |
Jeff Thompson | 6cb56f9 | 2013-07-01 15:38:09 -0700 | [diff] [blame] | 8 | #include "../c/encoding/BinaryXMLName.h" |
Jeff Thompson | 7c30eda | 2013-07-03 18:37:07 -0700 | [diff] [blame^] | 9 | #include "../c/encoding/BinaryXMLInterest.h" |
| 10 | #include "../Interest.hpp" |
Jeff Thompson | 1f3f517 | 2013-07-01 19:02:36 -0700 | [diff] [blame] | 11 | #include "BinaryXMLEncoder.hpp" |
Jeff Thompson | 9c41dfe | 2013-06-27 12:10:25 -0700 | [diff] [blame] | 12 | #include "BinaryXMLWireFormat.hpp" |
Jeff Thompson | 4c89ad6 | 2013-06-28 12:50:13 -0700 | [diff] [blame] | 13 | |
Jeff Thompson | 1f3f517 | 2013-07-01 19:02:36 -0700 | [diff] [blame] | 14 | using namespace std; |
| 15 | |
Jeff Thompson | 4c89ad6 | 2013-06-28 12:50:13 -0700 | [diff] [blame] | 16 | namespace ndn { |
| 17 | |
| 18 | BinaryXMLWireFormat BinaryXMLWireFormat::instance_; |
| 19 | |
Jeff Thompson | 1f3f517 | 2013-07-01 19:02:36 -0700 | [diff] [blame] | 20 | void BinaryXMLWireFormat::encodeName(Name &name, vector<unsigned char> &output) |
| 21 | { |
| 22 | struct ndn_Name nameStruct; |
| 23 | struct ndn_NameComponent components[100]; |
| 24 | ndn_Name_init(&nameStruct, components, sizeof(components) / sizeof(components[0])); |
| 25 | name.get(nameStruct); |
| 26 | |
| 27 | BinaryXMLEncoder encoder; |
| 28 | ndn_encodeBinaryXMLName(&nameStruct, encoder.getEncoder()); |
Jeff Thompson | 58d798f | 2013-07-02 14:16:25 -0700 | [diff] [blame] | 29 | |
| 30 | encoder.appendTo(output); |
Jeff Thompson | 1f3f517 | 2013-07-01 19:02:36 -0700 | [diff] [blame] | 31 | } |
| 32 | |
Jeff Thompson | 4c89ad6 | 2013-06-28 12:50:13 -0700 | [diff] [blame] | 33 | void BinaryXMLWireFormat::decodeName(Name &name, const unsigned char *input, unsigned int inputLength) |
| 34 | { |
| 35 | struct ndn_NameComponent components[100]; |
| 36 | struct ndn_Name nameStruct; |
| 37 | ndn_Name_init(&nameStruct, components, sizeof(components) / sizeof(components[0])); |
| 38 | |
| 39 | char *error; |
| 40 | if (error = ndn_decodeBinaryXMLName(&nameStruct, (unsigned char *)input, inputLength)) |
| 41 | throw std::runtime_error(error); |
Jeff Thompson | 1f3f517 | 2013-07-01 19:02:36 -0700 | [diff] [blame] | 42 | |
| 43 | name.set(nameStruct); |
Jeff Thompson | 4c89ad6 | 2013-06-28 12:50:13 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Jeff Thompson | 7c30eda | 2013-07-03 18:37:07 -0700 | [diff] [blame^] | 46 | void BinaryXMLWireFormat::decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength) |
| 47 | { |
| 48 | struct ndn_NameComponent components[100]; |
| 49 | struct ndn_Interest interestStruct; |
| 50 | ndn_Interest_init(&interestStruct, components, sizeof(components) / sizeof(components[0])); |
| 51 | |
| 52 | char *error; |
| 53 | if (error = ndn_decodeBinaryXMLInterest(&interestStruct, (unsigned char *)input, inputLength)) |
| 54 | throw std::runtime_error(error); |
| 55 | |
| 56 | interest.set(interestStruct); |
| 57 | } |
| 58 | |
Jeff Thompson | 4c89ad6 | 2013-06-28 12:50:13 -0700 | [diff] [blame] | 59 | } |