icinga2/base/tcpclient.h

50 lines
876 B
C
Raw Normal View History

#ifndef TCPCLIENT_H
#define TCPCLIENT_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
2012-04-24 14:02:15 +02:00
enum I2_BASE_API TCPClientRole
{
RoleInbound,
RoleOutbound
};
class I2_BASE_API TCPClient : public TCPSocket
2012-03-28 13:24:49 +02:00
{
private:
2012-04-24 14:02:15 +02:00
TCPClientRole m_Role;
FIFO::Ptr m_SendQueue;
FIFO::Ptr m_RecvQueue;
2012-03-28 13:24:49 +02:00
2012-04-24 14:02:15 +02:00
virtual int ReadableEventHandler(const EventArgs& ea);
virtual int WritableEventHandler(const EventArgs& ea);
2012-03-28 13:24:49 +02:00
public:
typedef shared_ptr<TCPClient> Ptr;
typedef weak_ptr<TCPClient> WeakPtr;
2012-03-28 13:24:49 +02:00
2012-04-24 14:02:15 +02:00
TCPClient(TCPClientRole role);
TCPClientRole GetRole(void) const;
2012-03-28 13:24:49 +02:00
virtual void Start(void);
void Connect(const string& hostname, unsigned short port);
2012-03-28 13:24:49 +02:00
FIFO::Ptr GetSendQueue(void);
FIFO::Ptr GetRecvQueue(void);
2012-03-28 13:24:49 +02:00
virtual bool WantsToRead(void) const;
virtual bool WantsToWrite(void) const;
2012-04-18 15:22:25 +02:00
Event<EventArgs> OnDataAvailable;
2012-03-28 13:24:49 +02:00
};
2012-04-24 14:02:15 +02:00
TCPClient::Ptr TCPClientFactory(TCPClientRole role);
2012-03-28 13:24:49 +02:00
}
#endif /* TCPCLIENT_H */