From 3a6885d6a1d30f6e2eb9b1fcd20e949768267318 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 19 Jul 2006 12:51:21 +0000 Subject: * Seperate out socket engines into derived classes of SocketEngine. * Add a classfactory SocketEngineFactory to create a new socketengine of the configured type * Implement configure hax to compile only the required socketengine and the base class * Eliminates ugly defines, and is more in line with C++ ways git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4439 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/socketengine_kqueue.h | 53 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 include/socketengine_kqueue.h (limited to 'include/socketengine_kqueue.h') diff --git a/include/socketengine_kqueue.h b/include/socketengine_kqueue.h new file mode 100644 index 000000000..6de6a0552 --- /dev/null +++ b/include/socketengine_kqueue.h @@ -0,0 +1,53 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- +*/ + +#ifndef __SOCKETENGINE_KQUEUE__ +#define __SOCKETENGINE_KQUEUE__ + +#include +#include +#include +#include "inspircd_config.h" +#include "globals.h" +#include "inspircd.h" +#include +#include +#include +#include "socketengine.h" + +class KQueueEngine : public SocketEngine +{ +private: + struct kevent ke_list[MAX_DESCRIPTORS]; /* Up to 64k sockets for kqueue */ + struct timespec ts; /* kqueue delay value */ +public: + KQueueEngineEngine(); + virtual ~KQueueEngine(); + 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 KQueueEngine(); } +}; + +#endif -- cgit v1.3.1-10-gc9f91