1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/selectdispatcher.h
3 // Purpose: wxSelectDispatcher class
4 // Authors: Lukasz Michalski and Vadim Zeitlin
5 // Created: December 2006
6 // Copyright: (c) Lukasz Michalski
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_PRIVATE_SELECTDISPATCHER_H_
12 #define _WX_PRIVATE_SELECTDISPATCHER_H_
16 #include <sys/types.h>
18 #include "wx/private/fdiodispatcher.h"
20 // helper class storing all the select() fd sets
21 class WXDLLIMPEXP_BASE wxSelectSets
24 // ctor zeroes out all fd_sets
27 // default copy ctor, assignment operator and dtor are ok
30 // return true if fd appears in any of the sets
31 bool HasFD(int fd
) const;
33 // add or remove FD to our sets depending on whether flags contains
34 // wxFDIO_INPUT/OUTPUT/EXCEPTION bits
35 bool SetFD(int fd
, int flags
);
37 // same as SetFD() except it unsets the bits set in the flags for the given
39 bool ClearFD(int fd
, int flags
)
41 return SetFD(fd
, wxFDIO_ALL
& ~flags
);
45 // call select() with our sets: the other parameters are the same as for
47 int Select(int nfds
, struct timeval
*tv
);
49 // call the handler methods corresponding to the sets having this fd
50 void Handle(int fd
, wxFDIOHandler
& handler
) const;
53 typedef void (wxFDIOHandler::*Callback
)();
55 // the FD sets indices
64 // the sets used with select()
67 // the wxFDIO_XXX flags, functions and names (used for debug messages only)
68 // corresponding to the FD sets above
69 static int ms_flags
[Max
];
70 static const char *ms_names
[Max
];
71 static Callback ms_handlers
[Max
];
74 class WXDLLIMPEXP_BASE wxSelectDispatcher
: public wxMappedFDIODispatcher
77 // returns the unique instance of this class, the pointer shouldn't be
78 // deleted and is normally never NULL
79 static wxSelectDispatcher
*Get();
81 // if we have any registered handlers, check for any pending events to them
82 // and dispatch them -- this is used from wxX11 and wxDFB event loops
84 static void DispatchPending();
86 // implement pure virtual methods of the base class
87 virtual bool RegisterFD(int fd
, wxFDIOHandler
*handler
, int flags
= wxFDIO_ALL
);
88 virtual bool ModifyFD(int fd
, wxFDIOHandler
*handler
, int flags
= wxFDIO_ALL
);
89 virtual bool UnregisterFD(int fd
, int flags
= wxFDIO_ALL
);
90 virtual void RunLoop(int timeout
= TIMEOUT_INFINITE
);
96 // common part of RegisterFD() and ModifyFD()
97 bool DoUpdateFDAndHandler(int fd
, wxFDIOHandler
*handler
, int flags
);
99 // call the handlers for the fds present in the given sets
100 void ProcessSets(const wxSelectSets
& sets
);
102 // helper of ProcessSets(): call the handler if its fd is in the set
103 void DoProcessFD(int fd
, const fd_set
& fds
, wxFDIOHandler
*handler
,
107 // the select sets containing all the registered fds
110 // the highest registered fd value or -1 if none
115 #endif // _WX_PRIVATE_SOCKETEVTDISPATCH_H_