icinga2/base/tcpclient.h

88 lines
2.7 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
*/
class I2_BASE_API TcpClient : public TcpSocket
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
virtual void Start(void);
2012-05-07 13:48:17 +02:00
void Connect(const string& node, const string& service);
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-06-16 03:42:54 +02:00
boost::signal<void (const Object::Ptr&)> OnDataAvailable;
private:
TcpClientRole m_Role;
FIFO::Ptr m_SendQueue;
FIFO::Ptr m_RecvQueue;
2012-06-16 03:42:54 +02:00
virtual void ReadableEventHandler(void);
virtual void WritableEventHandler(void);
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 */