2012-03-28 13:24:49 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
TCPServer::TCPServer(void)
|
|
|
|
{
|
|
|
|
m_ClientFactory = factory<TCPClient>;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TCPServer::SetClientFactory(factory_function clientFactory)
|
|
|
|
{
|
|
|
|
m_ClientFactory = clientFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
factory_function TCPServer::GetFactoryFunction(void)
|
|
|
|
{
|
|
|
|
return m_ClientFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TCPServer::Start(void)
|
|
|
|
{
|
|
|
|
TCPSocket::Start();
|
|
|
|
|
2012-04-03 11:13:17 +02:00
|
|
|
OnReadable += bind_weak(&TCPServer::ReadableEventHandler, shared_from_this());
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TCPServer::Listen(void)
|
|
|
|
{
|
2012-04-04 12:22:46 +02:00
|
|
|
int rc = listen(GetFD(), SOMAXCONN);
|
|
|
|
|
|
|
|
if (rc < 0) {
|
|
|
|
Close();
|
|
|
|
return;
|
|
|
|
}
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
Start();
|
|
|
|
}
|
|
|
|
|
2012-04-02 20:50:35 +02:00
|
|
|
int TCPServer::ReadableEventHandler(EventArgs::Ptr ea)
|
2012-03-28 13:24:49 +02:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
sockaddr_in addr;
|
|
|
|
socklen_t addrlen = sizeof(addr);
|
|
|
|
|
|
|
|
fd = accept(GetFD(), (sockaddr *)&addr, &addrlen);
|
|
|
|
|
2012-04-03 15:16:11 +02:00
|
|
|
NewClientEventArgs::Ptr nea = make_shared<NewClientEventArgs>();
|
2012-03-28 13:24:49 +02:00
|
|
|
nea->Source = shared_from_this();
|
|
|
|
nea->Client = static_pointer_cast<TCPSocket>(m_ClientFactory());
|
|
|
|
nea->Client->SetFD(fd);
|
|
|
|
nea->Client->Start();
|
|
|
|
OnNewClient(nea);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TCPServer::WantsToRead(void) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|