X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5ef33b2aed3f6aea3b7b71189a93985bfda3b3a..a3cc79d9023459690808fe6376142dc4366139ee:/src/unix/epolldispatcher.cpp diff --git a/src/unix/epolldispatcher.cpp b/src/unix/epolldispatcher.cpp index 294f89f1cb..6f36836f0f 100644 --- a/src/unix/epolldispatcher.cpp +++ b/src/unix/epolldispatcher.cpp @@ -19,11 +19,10 @@ // for compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#ifdef HAVE_SYS_EPOLL_H +#if wxUSE_EPOLL_DISPATCHER #include "wx/unix/private/epolldispatcher.h" #include "wx/unix/private.h" -#include "wx/module.h" #ifndef WX_PRECOMP #include "wx/log.h" @@ -32,18 +31,17 @@ #include #include +#include #define wxEpollDispatcher_Trace wxT("epolldispatcher") -static wxEpollDispatcher *gs_epollDispatcher = NULL; - // ============================================================================ // implementation // ============================================================================ // helper: return EPOLLxxx mask corresponding to the given flags (and also log // debugging messages about it) -static uint32_t GetEpollMask(int flags, int fd) +static uint32_t GetEpollMask(int flags, int WXUNUSED_UNLESS_DEBUG(fd)) { uint32_t ep = 0; @@ -75,20 +73,36 @@ static uint32_t GetEpollMask(int flags, int fd) // wxEpollDispatcher // ---------------------------------------------------------------------------- -wxEpollDispatcher::wxEpollDispatcher() +/* static */ +wxEpollDispatcher *wxEpollDispatcher::Create() { - m_epollDescriptor = epoll_create(1024); - if ( m_epollDescriptor == -1 ) + int epollDescriptor = epoll_create(1024); + if ( epollDescriptor == -1 ) { wxLogSysError(_("Failed to create epoll descriptor")); + return NULL; } + + return new wxEpollDispatcher(epollDescriptor); } -bool wxEpollDispatcher::RegisterFD(int fd, wxFDIOHandler* handler, int flags) +wxEpollDispatcher::wxEpollDispatcher(int epollDescriptor) { - if ( !wxFDIODispatcher::RegisterFD(fd, handler, flags) ) - return false; + wxASSERT_MSG( epollDescriptor != -1, _T("invalid descriptor") ); + + m_epollDescriptor = epollDescriptor; +} + +wxEpollDispatcher::~wxEpollDispatcher() +{ + if ( close(m_epollDescriptor) != 0 ) + { + wxLogSysError(_("Error closing epoll descriptor")); + } +} +bool wxEpollDispatcher::RegisterFD(int fd, wxFDIOHandler* handler, int flags) +{ epoll_event ev; ev.events = GetEpollMask(flags, fd); ev.data.ptr = handler; @@ -107,9 +121,6 @@ bool wxEpollDispatcher::RegisterFD(int fd, wxFDIOHandler* handler, int flags) bool wxEpollDispatcher::ModifyFD(int fd, wxFDIOHandler* handler, int flags) { - if ( !wxFDIODispatcher::ModifyFD(fd, handler, flags) ) - return false; - epoll_event ev; ev.events = GetEpollMask(flags, fd); ev.data.ptr = handler; @@ -126,12 +137,8 @@ bool wxEpollDispatcher::ModifyFD(int fd, wxFDIOHandler* handler, int flags) return true; } -wxFDIOHandler *wxEpollDispatcher::UnregisterFD(int fd, int flags) +bool wxEpollDispatcher::UnregisterFD(int fd) { - wxFDIOHandler * const handler = wxFDIODispatcher::UnregisterFD(fd, flags); - if ( !handler ) - return NULL; - epoll_event ev; ev.events = 0; ev.data.ptr = NULL; @@ -142,10 +149,10 @@ wxFDIOHandler *wxEpollDispatcher::UnregisterFD(int fd, int flags) fd, m_epollDescriptor); } - return handler; + return true; } -void wxEpollDispatcher::RunLoop(int timeout) +void wxEpollDispatcher::Dispatch(int timeout) { epoll_event events[16]; @@ -178,46 +185,11 @@ void wxEpollDispatcher::RunLoop(int timeout) if ( p->events & EPOLLIN ) handler->OnReadWaiting(); - - if ( p->events & EPOLLOUT ) + else if ( p->events & EPOLLOUT ) handler->OnWriteWaiting(); - - if ( p->events & (EPOLLERR | EPOLLHUP) ) + else if ( p->events & (EPOLLERR | EPOLLHUP) ) handler->OnExceptionWaiting(); } } -/* static */ -wxEpollDispatcher *wxEpollDispatcher::Get() -{ - if ( !gs_epollDispatcher ) - { - gs_epollDispatcher = new wxEpollDispatcher; - if ( !gs_epollDispatcher->IsOk() ) - { - delete gs_epollDispatcher; - gs_epollDispatcher = NULL; - } - } - - return gs_epollDispatcher; -} - -// ---------------------------------------------------------------------------- -// wxEpollDispatcherModule -// ---------------------------------------------------------------------------- - -class wxEpollDispatcherModule : public wxModule -{ -public: - wxEpollDispatcherModule() { } - - virtual bool OnInit() { return true; } - virtual void OnExit() { wxDELETE(gs_epollDispatcher); } - - DECLARE_DYNAMIC_CLASS(wxEpollDispatcherModule) -}; - -IMPLEMENT_DYNAMIC_CLASS(wxEpollDispatcherModule, wxModule) - -#endif // HAVE_SYS_EPOLL_H +#endif // wxUSE_EPOLL_DISPATCHER