]>
git.saurik.com Git - wxWidgets.git/blob - src/common/selectdispatcher.cpp
02c95710b73c817be73bb1bcd2c0646ddc174e18
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/selectdispatcher.cpp
3 // Purpose: implements dispatcher for select() call
4 // Author: Lukasz Michalski and Vadim Zeitlin
5 // Created: December 2006
7 // Copyright: (c) 2006 Lukasz Michalski
8 // License: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
22 #if wxUSE_SELECT_DISPATCHER
24 #include "wx/private/selectdispatcher.h"
25 #include "wx/module.h"
27 #include "wx/unix/private.h"
35 #ifdef HAVE_SYS_SELECT_H
36 #include <sys/select.h>
41 #define wxSelectDispatcher_Trace wxT("selectdispatcher")
43 // ============================================================================
45 // ============================================================================
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 int wxSelectSets::ms_flags
[wxSelectSets::Max
] =
58 const char *wxSelectSets::ms_names
[wxSelectSets::Max
] =
65 wxSelectSets::Callback
wxSelectSets::ms_handlers
[wxSelectSets::Max
] =
67 &wxFDIOHandler::OnReadWaiting
,
68 &wxFDIOHandler::OnWriteWaiting
,
69 &wxFDIOHandler::OnExceptionWaiting
,
72 wxSelectSets::wxSelectSets()
74 for ( int n
= 0; n
< Max
; n
++ )
80 bool wxSelectSets::HasFD(int fd
) const
82 for ( int n
= 0; n
< Max
; n
++ )
84 if ( wxFD_ISSET(fd
, (fd_set
*) &m_fds
[n
]) )
91 bool wxSelectSets::SetFD(int fd
, int flags
)
93 wxCHECK_MSG( fd
>= 0, false, _T("invalid descriptor") );
95 for ( int n
= 0; n
< Max
; n
++ )
97 if ( flags
& ms_flags
[n
] )
99 wxFD_SET(fd
, &m_fds
[n
]);
100 wxLogTrace(wxSelectDispatcher_Trace
,
101 _T("Registered fd %d for %s events"), fd
, ms_names
[n
]);
103 else if ( wxFD_ISSET(fd
, (fd_set
*) &m_fds
[n
]) )
105 wxFD_CLR(fd
, &m_fds
[n
]);
106 wxLogTrace(wxSelectDispatcher_Trace
,
107 _T("Unregistered fd %d from %s events"), fd
, ms_names
[n
]);
114 int wxSelectSets::Select(int nfds
, struct timeval
*tv
)
116 return select(nfds
, &m_fds
[Read
], &m_fds
[Write
], &m_fds
[Except
], tv
);
119 void wxSelectSets::Handle(int fd
, wxFDIOHandler
& handler
) const
121 for ( int n
= 0; n
< Max
; n
++ )
123 if ( wxFD_ISSET(fd
, (fd_set
*) &m_fds
[n
]) )
125 wxLogTrace(wxSelectDispatcher_Trace
,
126 _T("Got %s event on fd %d"), ms_names
[n
], fd
);
127 (handler
.*ms_handlers
[n
])();
132 // ----------------------------------------------------------------------------
133 // wxSelectDispatcher
134 // ----------------------------------------------------------------------------
136 static wxSelectDispatcher
*gs_selectDispatcher
= NULL
;
139 wxSelectDispatcher
*wxSelectDispatcher::Get()
141 if ( !gs_selectDispatcher
)
143 // the dispatcher should be only created from one thread so it should
144 // be ok to use a global without any protection here
145 gs_selectDispatcher
= new wxSelectDispatcher
;
148 return gs_selectDispatcher
;
152 void wxSelectDispatcher::DispatchPending()
154 if ( gs_selectDispatcher
)
155 gs_selectDispatcher
->RunLoop(0);
158 wxSelectDispatcher::wxSelectDispatcher()
163 bool wxSelectDispatcher::RegisterFD(int fd
, wxFDIOHandler
*handler
, int flags
)
165 if ( !wxMappedFDIODispatcher::RegisterFD(fd
, handler
, flags
) )
168 if ( !m_sets
.SetFD(fd
, flags
) )
177 bool wxSelectDispatcher::ModifyFD(int fd
, wxFDIOHandler
*handler
, int flags
)
179 if ( !wxMappedFDIODispatcher::ModifyFD(fd
, handler
, flags
) )
182 wxASSERT_MSG( fd
<= m_maxFD
, _T("logic error: registered fd > m_maxFD?") );
184 return m_sets
.SetFD(fd
, flags
);
187 bool wxSelectDispatcher::UnregisterFD(int fd
)
191 if ( !wxMappedFDIODispatcher::UnregisterFD(fd
) )
194 // remove the handler if we don't need it any more
195 if ( !m_sets
.HasFD(fd
) )
199 // need to find new max fd
201 for ( wxFDIOHandlerMap::const_iterator it
= m_handlers
.begin();
202 it
!= m_handlers
.end();
205 if ( it
->first
> m_maxFD
)
214 void wxSelectDispatcher::ProcessSets(const wxSelectSets
& sets
)
216 for ( int fd
= 0; fd
<= m_maxFD
; fd
++ )
218 if ( !sets
.HasFD(fd
) )
221 wxFDIOHandler
* const handler
= FindHandler(fd
);
224 wxFAIL_MSG( _T("NULL handler in wxSelectDispatcher?") );
228 sets
.Handle(fd
, *handler
);
232 void wxSelectDispatcher::RunLoop(int timeout
)
236 if ( timeout
!= TIMEOUT_INFINITE
)
240 tv
.tv_usec
= timeout
*1000;
245 wxSelectSets sets
= m_sets
;
248 if ( ptv
&& timeout
)
249 sw
.Start(ptv
->tv_usec
/10);
251 const int ret
= sets
.Select(m_maxFD
+ 1, ptv
);
255 // continue if we were interrupted by a signal, else bail out
256 if ( errno
!= EINTR
)
258 wxLogSysError(_("Failed to monitor I/O channels"));
264 // timeout expired without anything happening
273 timeout
-= sw
.Time();
277 ptv
->tv_usec
= timeout
*1000;
282 // ----------------------------------------------------------------------------
283 // wxSelectDispatcherModule
284 // ----------------------------------------------------------------------------
286 class wxSelectDispatcherModule
: public wxModule
289 virtual bool OnInit() { return true; }
290 virtual void OnExit() { wxDELETE(gs_selectDispatcher
); }
293 DECLARE_DYNAMIC_CLASS(wxSelectDispatcherModule
)
296 IMPLEMENT_DYNAMIC_CLASS(wxSelectDispatcherModule
, wxModule
)
298 #endif // wxUSE_SELECT_DISPATCHER