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
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_PRIVATE_SELECTDISPATCHER_H_
11 #define _WX_PRIVATE_SELECTDISPATCHER_H_
15 #if wxUSE_SELECT_DISPATCHER
17 #if defined(HAVE_SYS_SELECT_H) || defined(__WATCOMC__)
19 #include <sys/select.h>
24 #include <sys/ioctl.h>
27 #include <sys/types.h>
30 #include "wx/private/fdiodispatcher.h"
32 // helper class storing all the select() fd sets
33 class WXDLLIMPEXP_BASE wxSelectSets
36 // ctor zeroes out all fd_sets
39 // default copy ctor, assignment operator and dtor are ok
42 // return true if fd appears in any of the sets
43 bool HasFD(int fd
) const;
45 // add or remove FD to our sets depending on whether flags contains
46 // wxFDIO_INPUT/OUTPUT/EXCEPTION bits
47 bool SetFD(int fd
, int flags
);
49 // same as SetFD() except it unsets the bits set in the flags for the given
57 // call select() with our sets: the other parameters are the same as for
59 int Select(int nfds
, struct timeval
*tv
);
61 // call the handler methods corresponding to the sets having this fd if it
62 // is present in any set and return true if it is
63 bool Handle(int fd
, wxFDIOHandler
& handler
) const;
66 typedef void (wxFDIOHandler::*Callback
)();
68 // the FD sets indices
77 // the sets used with select()
80 // the wxFDIO_XXX flags, functions and names (used for debug messages only)
81 // corresponding to the FD sets above
82 static int ms_flags
[Max
];
83 static const char *ms_names
[Max
];
84 static Callback ms_handlers
[Max
];
87 class WXDLLIMPEXP_BASE wxSelectDispatcher
: public wxMappedFDIODispatcher
91 wxSelectDispatcher() { m_maxFD
= -1; }
93 // implement pure virtual methods of the base class
94 virtual bool RegisterFD(int fd
, wxFDIOHandler
*handler
, int flags
= wxFDIO_ALL
);
95 virtual bool ModifyFD(int fd
, wxFDIOHandler
*handler
, int flags
= wxFDIO_ALL
);
96 virtual bool UnregisterFD(int fd
);
97 virtual bool HasPending() const;
98 virtual int Dispatch(int timeout
= TIMEOUT_INFINITE
);
101 // common part of RegisterFD() and ModifyFD()
102 bool DoUpdateFDAndHandler(int fd
, wxFDIOHandler
*handler
, int flags
);
104 // call the handlers for the fds present in the given sets, return the
105 // number of handlers we called
106 int ProcessSets(const wxSelectSets
& sets
);
108 // helper of ProcessSets(): call the handler if its fd is in the set
109 void DoProcessFD(int fd
, const fd_set
& fds
, wxFDIOHandler
*handler
,
112 // common part of HasPending() and Dispatch(): calls select() with the
114 int DoSelect(wxSelectSets
& sets
, int timeout
) const;
117 // the select sets containing all the registered fds
120 // the highest registered fd value or -1 if none
124 #endif // wxUSE_SELECT_DISPATCHER
126 #endif // _WX_PRIVATE_SOCKETEVTDISPATCH_H_