Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 1 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame^] | 2 | * Copyright (C) 2013 Regents of the University of California. |
| 3 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NDN_TCPTRANSPORT_HPP |
Jeff Thompson | 2d27e2f | 2013-08-09 12:55:00 -0700 | [diff] [blame] | 8 | #define NDN_TCPTRANSPORT_HPP |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 9 | |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 10 | #include <string> |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 11 | #include "../c/transport/tcp-transport.h" |
| 12 | #include "../c/encoding/binary-xml-element-reader.h" |
| 13 | #include "transport.hpp" |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 14 | |
| 15 | namespace ndn { |
| 16 | |
| 17 | class TcpTransport : public Transport { |
| 18 | public: |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 19 | /** |
Jeff Thompson | c967108 | 2013-08-22 13:54:05 -0700 | [diff] [blame] | 20 | * A TcpTransport::ConnectionInfo extends Transport::ConnectionInfo to hold the host and port info for the TCP connection. |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 21 | */ |
| 22 | class ConnectionInfo : public Transport::ConnectionInfo { |
| 23 | public: |
| 24 | /** |
| 25 | * Create a ConnectionInfo with the given host and port. |
| 26 | * @param host The host for the connection. |
Jeff Thompson | 6ac3c0c | 2013-08-24 10:26:00 -0700 | [diff] [blame] | 27 | * @param port The port number for the connection. If omitted, use 9695. |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 28 | */ |
Jeff Thompson | 6ac3c0c | 2013-08-24 10:26:00 -0700 | [diff] [blame] | 29 | ConnectionInfo(const char *host, unsigned short port = 9695) |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 30 | : host_(host), port_(port) |
| 31 | { |
| 32 | } |
Jeff Thompson | b2c01a3 | 2013-08-23 19:42:18 -0700 | [diff] [blame] | 33 | |
| 34 | /** |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 35 | * Get the host given to the constructor. |
| 36 | * @return A string reference for the host. |
| 37 | */ |
Jeff Thompson | 1656e6a | 2013-08-29 18:01:48 -0700 | [diff] [blame] | 38 | const std::string& getHost() const { return host_; } |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * Get the port given to the constructor. |
| 42 | * @return The port number. |
| 43 | */ |
| 44 | unsigned short getPort() const { return port_; } |
| 45 | |
| 46 | virtual ~ConnectionInfo(); |
| 47 | |
| 48 | private: |
| 49 | std::string host_; |
| 50 | unsigned short port_; |
| 51 | }; |
| 52 | |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 53 | TcpTransport() |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 54 | : elementListener_(0), isConnected_(false) |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 55 | { |
Jeff Thompson | d1427fb | 2013-08-29 17:20:32 -0700 | [diff] [blame] | 56 | ndn_TcpTransport_initialize(&transport_); |
Jeff Thompson | a00f4eb | 2013-08-12 12:36:48 -0700 | [diff] [blame] | 57 | elementReader_.partialData.array = 0; |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Jeff Thompson | 2ed62fb | 2013-07-16 18:10:30 -0700 | [diff] [blame] | 60 | /** |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 61 | * Connect according to the info in ConnectionInfo, and processEvents() will use elementListener. |
| 62 | * @param connectionInfo A reference to a TcpTransport::ConnectionInfo. |
| 63 | * @param elementListener Not a shared_ptr because we assume that it will remain valid during the life of this object. |
Jeff Thompson | 2ed62fb | 2013-07-16 18:10:30 -0700 | [diff] [blame] | 64 | */ |
Jeff Thompson | 1656e6a | 2013-08-29 18:01:48 -0700 | [diff] [blame] | 65 | virtual void connect(const Transport::ConnectionInfo& connectionInfo, ElementListener& elementListener); |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 66 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 67 | /** |
| 68 | * Set data to the host |
| 69 | * @param data A pointer to the buffer of data to send. |
| 70 | * @param dataLength The number of bytes in data. |
| 71 | */ |
Jeff Thompson | b605b5d | 2013-07-30 15:12:56 -0700 | [diff] [blame] | 72 | virtual void send(const unsigned char *data, unsigned int dataLength); |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 73 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 74 | /** |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 75 | * Process any data to receive. For each element received, call elementListener.onReceivedElement. |
Jeff Thompson | c7e0744 | 2013-08-19 15:25:43 -0700 | [diff] [blame] | 76 | * This is non-blocking and will return immediately if there is no data to receive. |
| 77 | * You should normally not call this directly since it is called by Face.processEvents. |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 78 | * @throw This may throw an exception for reading data or in the callback for processing the data. If you |
| 79 | * call this from an main event loop, you may want to catch and log/disregard all exceptions. |
| 80 | */ |
| 81 | virtual void processEvents(); |
Jeff Thompson | 5796388 | 2013-08-05 16:01:25 -0700 | [diff] [blame] | 82 | |
Jeff Thompson | a405697 | 2013-08-22 11:52:21 -0700 | [diff] [blame] | 83 | virtual bool getIsConnected(); |
| 84 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 85 | /** |
| 86 | * Close the connection to the host. |
| 87 | */ |
Jeff Thompson | 5796388 | 2013-08-05 16:01:25 -0700 | [diff] [blame] | 88 | virtual void close(); |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 89 | |
Jeff Thompson | a00f4eb | 2013-08-12 12:36:48 -0700 | [diff] [blame] | 90 | ~TcpTransport(); |
| 91 | |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 92 | private: |
| 93 | struct ndn_TcpTransport transport_; |
Jeff Thompson | a405697 | 2013-08-22 11:52:21 -0700 | [diff] [blame] | 94 | bool isConnected_; |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 95 | ElementListener *elementListener_; |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 96 | // TODO: This belongs in the socket listener. |
Jeff Thompson | f0fea00 | 2013-07-30 17:22:42 -0700 | [diff] [blame] | 97 | ndn_BinaryXmlElementReader elementReader_; |
Jeff Thompson | fcf347d | 2013-07-15 11:30:44 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | } |
| 101 | |
| 102 | #endif |