X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fsocketengine_select.h;h=f6c03409190c225ee6ad792584ca6e1512b77aed;hb=383caa90d568d8d997a9624a9e6174ddc1a9a3da;hp=bbd9b78dda56acc313d9af4dcd85e488088ba033;hpb=3a6885d6a1d30f6e2eb9b1fcd20e949768267318;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/socketengine_select.h b/include/socketengine_select.h index bbd9b78dd..f6c034091 100644 --- a/include/socketengine_select.h +++ b/include/socketengine_select.h @@ -20,31 +20,49 @@ #include #include #include +#include #include "inspircd_config.h" #include "globals.h" #include "inspircd.h" #include "socketengine.h" +class InspIRCd; + +/** A specialisation of the SocketEngine class, designed to use traditional select(). + */ class SelectEngine : public SocketEngine { private: - std::map fds; /* List of file descriptors being monitored */ - fd_set wfdset, rfdset; /* Readable and writeable sets for select() */ + /** Because select() does not track an fd list for us between calls, we have one of our own + */ + std::map fds; + /** The read set and write set, populated before each call to select(). + */ + fd_set wfdset, rfdset; public: - SelectEngine(); + /** Create a new SelectEngine + * @param Instance The creator of this object + */ + SelectEngine(InspIRCd* Instance); + /** Delete a SelectEngine + */ virtual ~SelectEngine(); - virtual bool AddFd(int fd, bool readable, char type); + virtual bool AddFd(EventHandler* eh); virtual int GetMaxFds(); virtual int GetRemainingFds(); - virtual bool DelFd(int fd); - virtual int Wait(int* fdlist); + virtual bool DelFd(EventHandler* eh); + virtual int DispatchEvents(); virtual std::string GetName(); }; +/** Creates a SocketEngine + */ class SocketEngineFactory { public: - SocketEngine* Create() { return new SelectEngine(); } + /** Create a new instance of SocketEngine based on SelectEngine + */ + SocketEngine* Create(InspIRCd* Instance) { return new SelectEngine(Instance); } }; #endif