]>
Commit | Line | Data |
---|---|---|
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 | // RCS-ID: $Id$ | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_PRIVATE_SELECTDISPATCHER_H_ | |
12 | #define _WX_PRIVATE_SELECTDISPATCHER_H_ | |
13 | ||
14 | #include "wx/defs.h" | |
15 | ||
16 | #if wxUSE_SELECT_DISPATCHER | |
17 | ||
18 | #include <sys/types.h> | |
19 | ||
20 | #include "wx/private/fdiodispatcher.h" | |
21 | ||
22 | // helper class storing all the select() fd sets | |
23 | class WXDLLIMPEXP_BASE wxSelectSets | |
24 | { | |
25 | public: | |
26 | // ctor zeroes out all fd_sets | |
27 | wxSelectSets(); | |
28 | ||
29 | // default copy ctor, assignment operator and dtor are ok | |
30 | ||
31 | ||
32 | // return true if fd appears in any of the sets | |
33 | bool HasFD(int fd) const; | |
34 | ||
35 | // add or remove FD to our sets depending on whether flags contains | |
36 | // wxFDIO_INPUT/OUTPUT/EXCEPTION bits | |
37 | bool SetFD(int fd, int flags); | |
38 | ||
39 | // same as SetFD() except it unsets the bits set in the flags for the given | |
40 | // fd | |
41 | bool ClearFD(int fd) | |
42 | { | |
43 | return SetFD(fd, 0); | |
44 | } | |
45 | ||
46 | ||
47 | // call select() with our sets: the other parameters are the same as for | |
48 | // select() itself | |
49 | int Select(int nfds, struct timeval *tv); | |
50 | ||
51 | // call the handler methods corresponding to the sets having this fd | |
52 | void Handle(int fd, wxFDIOHandler& handler) const; | |
53 | ||
54 | private: | |
55 | typedef void (wxFDIOHandler::*Callback)(); | |
56 | ||
57 | // the FD sets indices | |
58 | enum | |
59 | { | |
60 | Read, | |
61 | Write, | |
62 | Except, | |
63 | Max | |
64 | }; | |
65 | ||
66 | // the sets used with select() | |
67 | fd_set m_fds[Max]; | |
68 | ||
69 | // the wxFDIO_XXX flags, functions and names (used for debug messages only) | |
70 | // corresponding to the FD sets above | |
71 | static int ms_flags[Max]; | |
72 | static const char *ms_names[Max]; | |
73 | static Callback ms_handlers[Max]; | |
74 | }; | |
75 | ||
76 | class WXDLLIMPEXP_BASE wxSelectDispatcher : public wxMappedFDIODispatcher | |
77 | { | |
78 | public: | |
79 | // creates an instance of this class, the caller takes ownership of it | |
80 | static wxSelectDispatcher *Create(); | |
81 | ||
82 | // implement pure virtual methods of the base class | |
83 | virtual bool RegisterFD(int fd, wxFDIOHandler *handler, int flags = wxFDIO_ALL); | |
84 | virtual bool ModifyFD(int fd, wxFDIOHandler *handler, int flags = wxFDIO_ALL); | |
85 | virtual bool UnregisterFD(int fd); | |
86 | virtual void Dispatch(int timeout = TIMEOUT_INFINITE); | |
87 | ||
88 | protected: | |
89 | // ctor is not public, use Create() | |
90 | wxSelectDispatcher(); | |
91 | ||
92 | private: | |
93 | // common part of RegisterFD() and ModifyFD() | |
94 | bool DoUpdateFDAndHandler(int fd, wxFDIOHandler *handler, int flags); | |
95 | ||
96 | // call the handlers for the fds present in the given sets | |
97 | void ProcessSets(const wxSelectSets& sets); | |
98 | ||
99 | // helper of ProcessSets(): call the handler if its fd is in the set | |
100 | void DoProcessFD(int fd, const fd_set& fds, wxFDIOHandler *handler, | |
101 | const char *name); | |
102 | ||
103 | ||
104 | // the select sets containing all the registered fds | |
105 | wxSelectSets m_sets; | |
106 | ||
107 | // the highest registered fd value or -1 if none | |
108 | int m_maxFD; | |
109 | }; | |
110 | ||
111 | #endif // wxUSE_SELECT_DISPATCHER | |
112 | ||
113 | #endif // _WX_PRIVATE_SOCKETEVTDISPATCH_H_ |