summaryrefslogtreecommitdiff
path: root/include/socketengine_select.h
blob: 442f8c7548e3afaae2ca127126bbb80dc4ccc620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*       +------------------------------------+
 *       | 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>
#include <sys/select.h>
#include "inspircd_config.h"
#include "globals.h"
#include "inspircd.h"
#include "socketengine.h"

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:
	SelectEngine();
	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:
	SocketEngine* Create() { return new SelectEngine(); }
};

#endif