2006-07-19 12:51:21 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | 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.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SOCKETENGINE_SELECT__
|
|
|
|
#define __SOCKETENGINE_SELECT__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
2006-07-19 13:29:06 +00:00
|
|
|
#include <sys/select.h>
|
2006-07-19 12:51:21 +00:00
|
|
|
#include "inspircd_config.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "inspircd.h"
|
|
|
|
#include "socketengine.h"
|
|
|
|
|
2006-08-11 12:15:03 +00:00
|
|
|
class InspIRCd;
|
|
|
|
|
2006-07-19 12:51:21 +00:00
|
|
|
class SelectEngine : public SocketEngine
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::map<int,int> fds; /* List of file descriptors being monitored */
|
|
|
|
fd_set wfdset, rfdset; /* Readable and writeable sets for select() */
|
|
|
|
public:
|
2006-08-11 12:15:03 +00:00
|
|
|
SelectEngine(InspIRCd* Instance);
|
2006-07-19 12:51:21 +00:00
|
|
|
virtual ~SelectEngine();
|
|
|
|
virtual bool AddFd(int fd, bool readable, char type);
|
|
|
|
virtual int GetMaxFds();
|
|
|
|
virtual int GetRemainingFds();
|
|
|
|
virtual bool DelFd(int fd);
|
|
|
|
virtual int Wait(int* fdlist);
|
|
|
|
virtual std::string GetName();
|
|
|
|
};
|
|
|
|
|
|
|
|
class SocketEngineFactory
|
|
|
|
{
|
|
|
|
public:
|
2006-08-11 12:15:03 +00:00
|
|
|
SocketEngine* Create(InspIRCd* Instance) { return new SelectEngine(InspIRCd* Instance); }
|
2006-07-19 12:51:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|