]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/evtloopunix.cpp
34dd79ab9b27129c9e1026372c7bcf96f93e471b
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/unix/evtloopunix.cpp
3 // Purpose: wxEventLoop implementation
4 // Author: Lukasz Michalski (lm@zork.pl)
7 // Copyright: (c) 2006 Zork Lukasz Michalski
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
13 // ===========================================================================
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
22 #include "wx/evtloop.h"
30 #include "wx/thread.h"
31 #include "wx/module.h"
32 #include "wx/unix/private/epolldispatcher.h"
33 #include "wx/private/selectdispatcher.h"
35 #include "wx/generic/private/timer.h"
37 #define TRACE_EVENTS _T("events")
39 //this code should not be compiled when GUI is defined
40 //(monolithic build issue)
43 // ===========================================================================
44 // wxEventLoop::PipeIOHandler implementation
45 // ===========================================================================
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 bool wxConsoleEventLoop::PipeIOHandler::Create()
53 if ( !m_pipe
.Create() )
55 wxLogError(_("Failed to create wake up pipe used by event loop."));
59 const int fdRead
= GetReadFd();
61 int flags
= fcntl(fdRead
, F_GETFL
, 0);
62 if ( flags
== -1 || fcntl(fdRead
, F_SETFL
, flags
| O_NONBLOCK
) == -1 )
64 wxLogSysError(_("Failed to switch wake up pipe to non-blocking mode"));
68 wxLogTrace(TRACE_EVENTS
, wxT("Wake up pipe (%d, %d) created"),
69 fdRead
, m_pipe
[wxPipe::Write
]);
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 void wxConsoleEventLoop::PipeIOHandler::WakeUp()
80 if ( write(m_pipe
[wxPipe::Write
], "s", 1) != 1 )
82 // don't use wxLog here, we can be in another thread and this could
83 // result in dead locks
84 perror("write(wake up pipe)");
88 void wxConsoleEventLoop::PipeIOHandler::OnReadWaiting()
90 // got wakeup from child thread: read all data available in pipe just to
91 // make it empty (evevn though we write one byte at a time from WakeUp(),
92 // it could have been called several times)
96 const int size
= read(GetReadFd(), buf
, WXSIZEOF(buf
));
98 if ( size
== 0 || (size
== -1 && errno
== EAGAIN
) )
100 // nothing left in the pipe (EAGAIN is expected for an FD with
107 wxLogSysError(_("Failed to read from wake-up pipe"));
113 wxTheApp
->ProcessPendingEvents();
116 // ===========================================================================
117 // wxEventLoop implementation
118 // ===========================================================================
120 //-----------------------------------------------------------------------------
122 //-----------------------------------------------------------------------------
124 wxConsoleEventLoop::wxConsoleEventLoop()
126 if ( !m_wakeupPipe
.Create() )
132 #ifdef HAVE_SYS_EPOLL_H
133 m_dispatcher
= wxEpollDispatcher::Get();
135 #endif // HAVE_SYS_EPOLL_H
137 m_dispatcher
= wxSelectDispatcher::Get();
140 wxCHECK_RET( m_dispatcher
, _T("failed to create IO dispatcher") );
142 m_dispatcher
->RegisterFD
144 m_wakeupPipe
.GetReadFd(),
150 //-----------------------------------------------------------------------------
151 // events dispatch and loop handling
152 //-----------------------------------------------------------------------------
154 bool wxConsoleEventLoop::Pending() const
156 return wxTheApp
->HasPendingEvents();
159 bool wxConsoleEventLoop::Dispatch()
161 wxTheApp
->ProcessPendingEvents();
165 void wxConsoleEventLoop::WakeUp()
167 m_wakeupPipe
.WakeUp();
170 void wxConsoleEventLoop::OnNextIteration()
172 // calculate the timeout until the next timer expiration
176 wxUsecClock_t nextTimer
;
177 if ( wxTimerScheduler::Get().GetNext(&nextTimer
) )
180 timeout
= (nextTimer
/ 1000).ToLong();
182 else // no timers, we can block forever
183 #endif // wxUSE_TIMER
185 timeout
= wxFDIODispatcher::TIMEOUT_INFINITE
;
188 m_dispatcher
->RunLoop(timeout
);
191 wxTimerScheduler::Get().NotifyExpired();
194 // call the signal handlers for any signals we caught recently
195 wxTheApp
->CheckSignal();