| /** |
| * @author: Jeff Thompson |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #include <stdexcept> |
| #include "../face.hpp" |
| #include "../c/util/ndn_realloc.h" |
| #include "udp-transport.hpp" |
| |
| using namespace std; |
| |
| namespace ndn { |
| |
| void UdpTransport::connect(Node &node) |
| { |
| ndn_Error error; |
| if ((error = ndn_UdpTransport_connect(&transport_, (char *)node.getHost(), node.getPort()))) |
| throw std::runtime_error(ndn_getErrorString(error)); |
| |
| // TODO: This belongs in the socket listener. |
| const unsigned int initialLength = 1000; |
| // Automatically cast ndn_ to (struct ndn_ElementListener *) |
| ndn_BinaryXmlElementReader_init |
| (&elementReader_, &node, (unsigned char *)malloc(initialLength), initialLength, ndn_realloc); |
| |
| // TODO: Properly indicate connected status. |
| isConnected_ = true; |
| node_ = &node; |
| } |
| |
| void UdpTransport::send(const unsigned char *data, unsigned int dataLength) |
| { |
| ndn_Error error; |
| if ((error = ndn_UdpTransport_send(&transport_, (unsigned char *)data, dataLength))) |
| throw std::runtime_error(ndn_getErrorString(error)); |
| } |
| |
| void UdpTransport::processEvents() |
| { |
| int receiveIsReady; |
| ndn_Error error; |
| if ((error = ndn_UdpTransport_receiveIsReady(&transport_, &receiveIsReady))) |
| throw std::runtime_error(ndn_getErrorString(error)); |
| if (!receiveIsReady) |
| return; |
| |
| unsigned char buffer[8000]; |
| unsigned int nBytes; |
| if ((error = ndn_UdpTransport_receive(&transport_, buffer, sizeof(buffer), &nBytes))) |
| throw std::runtime_error(ndn_getErrorString(error)); |
| |
| ndn_BinaryXmlElementReader_onReceivedData(&elementReader_, buffer, nBytes); |
| } |
| |
| bool UdpTransport::getIsConnected() |
| { |
| return isConnected_; |
| } |
| |
| void UdpTransport::close() |
| { |
| ndn_Error error; |
| if ((error = ndn_UdpTransport_close(&transport_))) |
| throw std::runtime_error(ndn_getErrorString(error)); |
| } |
| |
| UdpTransport::~UdpTransport() |
| { |
| if (elementReader_.partialData.array) |
| // Free the memory allocated in connect. |
| free(elementReader_.partialData.array); |
| } |
| |
| } |