icinga2/base/tcpclient.h

89 lines
2.8 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef TCPCLIENT_H
#define TCPCLIENT_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
/**
* The role of a TCP client object.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
*/
enum TcpClientRole
2012-04-24 14:02:15 +02:00
{
2012-05-18 23:24:00 +02:00
RoleInbound, /**< Inbound socket, i.e. one that was returned
from accept(). */
RoleOutbound /**< Outbound socket, i.e. one that is connect()'d to a
remote socket. */
2012-04-24 14:02:15 +02:00
};
/**
* A TCP client connection.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
*/
2012-07-16 00:02:31 +02:00
class I2_BASE_API TcpClient : public TcpSocket, public IOQueue
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
TcpClient(TcpClientRole role);
2012-04-24 14:02:15 +02:00
TcpClientRole GetRole(void) const;
2012-03-28 13:24:49 +02:00
2012-05-07 13:48:17 +02:00
void Connect(const string& node, const string& service);
2012-03-28 13:24:49 +02:00
2012-06-24 02:56:48 +02:00
boost::signal<void (const TcpClient::Ptr&)> OnDataAvailable;
2012-07-16 00:02:31 +02:00
virtual size_t GetAvailableBytes(void) const;
virtual void Peek(void *buffer, size_t count);
virtual void Read(void *buffer, size_t count);
virtual void Write(const void *buffer, size_t count);
2012-06-24 02:56:48 +02:00
protected:
2012-03-28 13:24:49 +02:00
virtual bool WantsToRead(void) const;
virtual bool WantsToWrite(void) const;
2012-06-24 02:56:48 +02:00
virtual void HandleReadable(void);
virtual void HandleWritable(void);
FIFO::Ptr m_SendQueue;
FIFO::Ptr m_RecvQueue;
2012-07-16 00:02:31 +02:00
private:
TcpClientRole m_Role;
2012-03-28 13:24:49 +02:00
};
/**
* Returns a new unconnected TcpClient object that has the specified
* connection role.
*
* @param role The role of the new object.
* @returns A new TcpClient object.
*/
TcpClient::Ptr TcpClientFactory(TcpClientRole role);
2012-04-24 14:02:15 +02:00
2012-03-28 13:24:49 +02:00
}
#endif /* TCPCLIENT_H */