blob: c8def3975288d69eea1df4dc58e509556e1dc50f [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompsonbc53c522013-07-17 17:11:48 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonbc53c522013-07-17 17:11:48 -07005 * See COPYING for copyright and distribution information.
6 */
7
8#include <stdexcept>
Jeff Thompson53430e02013-10-23 10:12:41 -07009#include <stdlib.h>
Jeff Thompson25b4e612013-10-10 16:03:24 -070010#include <ndn-cpp/face.hpp>
11#include "../c/transport/udp-transport.h"
12#include "../c/encoding/binary-xml-element-reader.h"
Jeff Thompsonbc53c522013-07-17 17:11:48 -070013#include "../c/util/ndn_realloc.h"
Jeff Thompson25b4e612013-10-10 16:03:24 -070014#include <ndn-cpp/transport/udp-transport.hpp>
Jeff Thompsonbc53c522013-07-17 17:11:48 -070015
16using namespace std;
17
18namespace ndn {
19
Jeff Thompson10e34382013-08-22 13:34:46 -070020UdpTransport::ConnectionInfo::~ConnectionInfo()
21{
22}
23
Jeff Thompson25b4e612013-10-10 16:03:24 -070024UdpTransport::UdpTransport()
Jeff Thompson17cb30c2013-11-15 16:18:09 -080025 : isConnected_(false), transport_(new struct ndn_UdpTransport), elementReader_(new struct ndn_BinaryXmlElementReader)
Jeff Thompson25b4e612013-10-10 16:03:24 -070026{
27 ndn_UdpTransport_initialize(transport_.get());
28 elementReader_->partialData.array = 0;
29}
30
Jeff Thompson0050abe2013-09-17 12:50:25 -070031void
32UdpTransport::connect(const Transport::ConnectionInfo& connectionInfo, ElementListener& elementListener)
Jeff Thompsonbc53c522013-07-17 17:11:48 -070033{
Jeff Thompson1656e6a2013-08-29 18:01:48 -070034 const UdpTransport::ConnectionInfo& udpConnectionInfo = dynamic_cast<const UdpTransport::ConnectionInfo&>(connectionInfo);
Jeff Thompson10e34382013-08-22 13:34:46 -070035
Jeff Thompsonbc53c522013-07-17 17:11:48 -070036 ndn_Error error;
Jeff Thompson25b4e612013-10-10 16:03:24 -070037 if ((error = ndn_UdpTransport_connect(transport_.get(), (char *)udpConnectionInfo.getHost().c_str(), udpConnectionInfo.getPort())))
Jeff Thompson4affbf52013-10-18 14:36:46 -070038 throw runtime_error(ndn_getErrorString(error));
Jeff Thompsonbc53c522013-07-17 17:11:48 -070039
40 // TODO: This belongs in the socket listener.
Jeff Thompson97223af2013-09-24 17:01:27 -070041 const size_t initialLength = 1000;
Jeff Thompson10e34382013-08-22 13:34:46 -070042 // Automatically cast elementReader_ to (struct ndn_ElementListener *)
Jeff Thompsond1427fb2013-08-29 17:20:32 -070043 ndn_BinaryXmlElementReader_initialize
Jeff Thompson25b4e612013-10-10 16:03:24 -070044 (elementReader_.get(), &elementListener, (uint8_t *)malloc(initialLength), initialLength, ndn_realloc);
Jeff Thompsonbc53c522013-07-17 17:11:48 -070045
Jeff Thompsona4056972013-08-22 11:52:21 -070046 isConnected_ = true;
Jeff Thompsonbc53c522013-07-17 17:11:48 -070047}
48
Jeff Thompson0050abe2013-09-17 12:50:25 -070049void
Jeff Thompson97223af2013-09-24 17:01:27 -070050UdpTransport::send(const uint8_t *data, size_t dataLength)
Jeff Thompsonbc53c522013-07-17 17:11:48 -070051{
52 ndn_Error error;
Jeff Thompson25b4e612013-10-10 16:03:24 -070053 if ((error = ndn_UdpTransport_send(transport_.get(), (uint8_t *)data, dataLength)))
Jeff Thompson4affbf52013-10-18 14:36:46 -070054 throw runtime_error(ndn_getErrorString(error));
Jeff Thompsonbc53c522013-07-17 17:11:48 -070055}
56
Jeff Thompson0050abe2013-09-17 12:50:25 -070057void
58UdpTransport::processEvents()
Jeff Thompsonbc53c522013-07-17 17:11:48 -070059{
Jeff Thompson432c8be2013-08-09 16:16:08 -070060 int receiveIsReady;
61 ndn_Error error;
Jeff Thompson25b4e612013-10-10 16:03:24 -070062 if ((error = ndn_UdpTransport_receiveIsReady(transport_.get(), &receiveIsReady)))
Jeff Thompson4affbf52013-10-18 14:36:46 -070063 throw runtime_error(ndn_getErrorString(error));
Jeff Thompson432c8be2013-08-09 16:16:08 -070064 if (!receiveIsReady)
65 return;
Jeff Thompsonbc53c522013-07-17 17:11:48 -070066
Jeff Thompson10ad12a2013-09-24 16:19:11 -070067 uint8_t buffer[8000];
Jeff Thompson97223af2013-09-24 17:01:27 -070068 size_t nBytes;
Jeff Thompson25b4e612013-10-10 16:03:24 -070069 if ((error = ndn_UdpTransport_receive(transport_.get(), buffer, sizeof(buffer), &nBytes)))
Jeff Thompson4affbf52013-10-18 14:36:46 -070070 throw runtime_error(ndn_getErrorString(error));
Jeff Thompson432c8be2013-08-09 16:16:08 -070071
Jeff Thompson25b4e612013-10-10 16:03:24 -070072 ndn_BinaryXmlElementReader_onReceivedData(elementReader_.get(), buffer, nBytes);
Jeff Thompsonbc53c522013-07-17 17:11:48 -070073}
74
Jeff Thompson0050abe2013-09-17 12:50:25 -070075bool
76UdpTransport::getIsConnected()
Jeff Thompsona4056972013-08-22 11:52:21 -070077{
78 return isConnected_;
79}
80
Jeff Thompson0050abe2013-09-17 12:50:25 -070081void
82UdpTransport::close()
Jeff Thompson57963882013-08-05 16:01:25 -070083{
84 ndn_Error error;
Jeff Thompson25b4e612013-10-10 16:03:24 -070085 if ((error = ndn_UdpTransport_close(transport_.get())))
Jeff Thompson4affbf52013-10-18 14:36:46 -070086 throw runtime_error(ndn_getErrorString(error));
Jeff Thompson57963882013-08-05 16:01:25 -070087}
88
Jeff Thompsona00f4eb2013-08-12 12:36:48 -070089UdpTransport::~UdpTransport()
90{
Jeff Thompson25b4e612013-10-10 16:03:24 -070091 if (elementReader_->partialData.array)
Jeff Thompsona00f4eb2013-08-12 12:36:48 -070092 // Free the memory allocated in connect.
Jeff Thompson25b4e612013-10-10 16:03:24 -070093 free(elementReader_->partialData.array);
Jeff Thompsona00f4eb2013-08-12 12:36:48 -070094}
95
Jeff Thompsonbc53c522013-07-17 17:11:48 -070096}