mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-15 13:39:02 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5507 e03df62e-2008-0410-955e-edbf42e46eb7
138 lines
3.4 KiB
C++
138 lines
3.4 KiB
C++
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
|
|
* E-mail:
|
|
* <brain@chatspike.net>
|
|
* <Craig@chatspike.net>
|
|
*
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
* This program is free but copyrighted software; see
|
|
* the file COPYING for details.
|
|
*
|
|
* ---------------------------------------------------
|
|
*/
|
|
|
|
#include "inspircd.h"
|
|
#include <sys/types.h>
|
|
#include <sys/event.h>
|
|
#include <sys/time.h>
|
|
#include "socketengine_kqueue.h"
|
|
|
|
|
|
KQueueEngine::KQueueEngine(InspIRCd* Instance) : SocketEngine(Instance)
|
|
{
|
|
EngineHandle = kqueue();
|
|
if (EngineHandle == -1)
|
|
{
|
|
ServerInstance->Log(SPARSE,"ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
|
|
ServerInstance->Log(SPARSE,"ERROR: this is a fatal error, exiting now.");
|
|
printf("ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
|
|
printf("ERROR: this is a fatal error, exiting now.");
|
|
InspIRCd::Exit(ERROR);
|
|
}
|
|
CurrentSetSize = 0;
|
|
}
|
|
|
|
KQueueEngine::~KQueueEngine()
|
|
{
|
|
ServerInstance->Log(DEBUG,"KQueueEngine::~KQueueEngine()");
|
|
close(EngineHandle);
|
|
}
|
|
|
|
bool KQueueEngine::AddFd(EventHandler* eh)
|
|
{
|
|
int fd = eh->GetFd();
|
|
|
|
ServerInstance->Log(DEBUG,"KQueueEngine::AddFd(%d)",fd);
|
|
|
|
if ((fd < 0) || (fd > MAX_DESCRIPTORS))
|
|
{
|
|
ServerInstance->Log(DEFAULT,"ERROR: FD of %d added above max of %d",fd,MAX_DESCRIPTORS);
|
|
return false;
|
|
}
|
|
if (GetRemainingFds() <= 1)
|
|
{
|
|
ServerInstance->Log(DEFAULT,"ERROR: System out of file descriptors!");
|
|
return false;
|
|
}
|
|
|
|
if (ref[fd])
|
|
{
|
|
ServerInstance->Log(DEFAULT,"ERROR: Slot already occupied");
|
|
return false;
|
|
}
|
|
|
|
ref[fd] = eh;
|
|
ServerInstance->Log(DEBUG,"Add socket %d",fd);
|
|
|
|
struct kevent ke;
|
|
ServerInstance->Log(DEBUG,"kqueue: Add socket to events, kq=%d socket=%d",EngineHandle,fd);
|
|
EV_SET(&ke, fd, eh->Readable() ? EVFILT_READ : EVFILT_WRITE, EV_ADD, 0, 0, NULL);
|
|
|
|
int i = kevent(EngineHandle, &ke, 1, 0, 0, NULL);
|
|
if (i == -1)
|
|
{
|
|
ServerInstance->Log(DEBUG,"kqueue: List insertion failure!");
|
|
return false;
|
|
}
|
|
|
|
CurrentSetSize++;
|
|
return true;
|
|
}
|
|
|
|
bool KQueueEngine::DelFd(EventHandler* eh)
|
|
{
|
|
int fd = eh->GetFd();
|
|
|
|
ServerInstance->Log(DEBUG,"KQueueEngine::DelFd(%d)",fd);
|
|
|
|
if ((fd < 0) || (fd > MAX_DESCRIPTORS))
|
|
return false;
|
|
|
|
struct kevent ke;
|
|
EV_SET(&ke, fd, eh->Readable() ? EVFILT_READ : EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
|
|
|
|
int i = kevent(EngineHandle, &ke, 1, 0, 0, NULL);
|
|
if (i == -1)
|
|
{
|
|
ServerInstance->Log(DEBUG,"kqueue: Failed to remove socket from queue: %s",strerror(errno));
|
|
return false;
|
|
}
|
|
|
|
CurrentSetSize--;
|
|
ref[fd] = NULL;
|
|
|
|
return true;
|
|
}
|
|
|
|
int KQueueEngine::GetMaxFds()
|
|
{
|
|
return MAX_DESCRIPTORS;
|
|
}
|
|
|
|
int KQueueEngine::GetRemainingFds()
|
|
{
|
|
return MAX_DESCRIPTORS - CurrentSetSize;
|
|
}
|
|
|
|
int KQueueEngine::DispatchEvents()
|
|
{
|
|
ts.tv_nsec = 5000L;
|
|
ts.tv_sec = 0;
|
|
int i = kevent(EngineHandle, NULL, 0, &ke_list[0], MAX_DESCRIPTORS, &ts);
|
|
for (int j = 0; j < i; j++)
|
|
{
|
|
ServerInstance->Log(DEBUG,"Handle %s event on fd %d",ref[ke_list[j].ident]->Readable() ? "read" : "write", ref[ke_list[j].ident]->GetFd());
|
|
ref[ke_list[j].ident]->HandleEvent(ref[ke_list[j].ident]->Readable() ? EVENT_READ : EVENT_WRITE);
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
std::string KQueueEngine::GetName()
|
|
{
|
|
return "kqueue";
|
|
}
|