blob: 57893945b529fec92e56290905f29476c8b656fc [file] [log] [blame]
/*
* Author: Jeff Thompson
*
* BSD license, See the LICENSE file for more information.
*/
#include <stdexcept>
#include "../c/encoding/BinaryXMLName.h"
#include "../c/encoding/BinaryXMLInterest.h"
#include "../Interest.hpp"
#include "BinaryXMLEncoder.hpp"
#include "BinaryXMLWireFormat.hpp"
using namespace std;
namespace ndn {
BinaryXMLWireFormat BinaryXMLWireFormat::instance_;
void BinaryXMLWireFormat::encodeName(Name &name, vector<unsigned char> &output)
{
struct ndn_Name nameStruct;
struct ndn_NameComponent components[100];
ndn_Name_init(&nameStruct, components, sizeof(components) / sizeof(components[0]));
name.get(nameStruct);
BinaryXMLEncoder encoder;
ndn_encodeBinaryXMLName(&nameStruct, encoder.getEncoder());
encoder.appendTo(output);
}
void BinaryXMLWireFormat::decodeName(Name &name, const unsigned char *input, unsigned int inputLength)
{
struct ndn_NameComponent components[100];
struct ndn_Name nameStruct;
ndn_Name_init(&nameStruct, components, sizeof(components) / sizeof(components[0]));
char *error;
if (error = ndn_decodeBinaryXMLName(&nameStruct, (unsigned char *)input, inputLength))
throw std::runtime_error(error);
name.set(nameStruct);
}
void BinaryXMLWireFormat::decodeInterest(Interest &interest, const unsigned char *input, unsigned int inputLength)
{
struct ndn_NameComponent components[100];
struct ndn_Interest interestStruct;
ndn_Interest_init(&interestStruct, components, sizeof(components) / sizeof(components[0]));
char *error;
if (error = ndn_decodeBinaryXMLInterest(&interestStruct, (unsigned char *)input, inputLength))
throw std::runtime_error(error);
interest.set(interestStruct);
}
}