]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/evtloopunix.cpp
39afb42db065a142ddfc7eae4ff88a0a1688ccdd
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 #if wxUSE_CONSOLE_EVENTLOOP
30 #include "wx/evtloop.h"
31 #include "wx/thread.h"
32 #include "wx/module.h"
33 #include "wx/unix/private/timer.h"
34 #include "wx/unix/private/epolldispatcher.h"
35 #include "wx/private/selectdispatcher.h"
37 #define TRACE_EVENTS _T("events")
39 // ===========================================================================
40 // wxEventLoop::PipeIOHandler implementation
41 // ===========================================================================
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 bool wxConsoleEventLoop::PipeIOHandler::Create()
49 if ( !m_pipe
.Create() )
51 wxLogError(_("Failed to create wake up pipe used by event loop."));
55 const int fdRead
= GetReadFd();
57 int flags
= fcntl(fdRead
, F_GETFL
, 0);
58 if ( flags
== -1 || fcntl(fdRead
, F_SETFL
, flags
| O_NONBLOCK
) == -1 )
60 wxLogSysError(_("Failed to switch wake up pipe to non-blocking mode"));
64 wxLogTrace(TRACE_EVENTS
, wxT("Wake up pipe (%d, %d) created"),
65 fdRead
, m_pipe
[wxPipe::Write
]);
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 void wxConsoleEventLoop::PipeIOHandler::WakeUp()
76 if ( write(m_pipe
[wxPipe::Write
], "s", 1) != 1 )
78 // don't use wxLog here, we can be in another thread and this could
79 // result in dead locks
80 perror("write(wake up pipe)");
84 void wxConsoleEventLoop::PipeIOHandler::OnReadWaiting()
86 // got wakeup from child thread: read all data available in pipe just to
87 // make it empty (evevn though we write one byte at a time from WakeUp(),
88 // it could have been called several times)
92 const int size
= read(GetReadFd(), buf
, WXSIZEOF(buf
));
94 if ( size
== 0 || (size
== -1 && errno
== EAGAIN
) )
96 // nothing left in the pipe (EAGAIN is expected for an FD with
103 wxLogSysError(_("Failed to read from wake-up pipe"));
109 wxTheApp
->ProcessPendingEvents();
112 // ===========================================================================
113 // wxEventLoop implementation
114 // ===========================================================================
116 //-----------------------------------------------------------------------------
118 //-----------------------------------------------------------------------------
120 wxConsoleEventLoop::wxConsoleEventLoop()
122 if ( !m_wakeupPipe
.Create() )
128 #ifdef wxUSE_EPOLL_DISPATCHER
129 m_dispatcher
= wxEpollDispatcher::Get();
131 #endif // wxUSE_EPOLL_DISPATCHER
132 #if wxUSE_SELECT_DISPATCHER
133 m_dispatcher
= wxSelectDispatcher::Get();
134 #endif // wxUSE_WCHAR_T
136 wxCHECK_RET( m_dispatcher
, _T("failed to create IO dispatcher") );
138 m_dispatcher
->RegisterFD
140 m_wakeupPipe
.GetReadFd(),
146 //-----------------------------------------------------------------------------
147 // events dispatch and loop handling
148 //-----------------------------------------------------------------------------
150 bool wxConsoleEventLoop::Pending() const
152 return wxTheApp
->HasPendingEvents();
155 bool wxConsoleEventLoop::Dispatch()
157 wxTheApp
->ProcessPendingEvents();
161 void wxConsoleEventLoop::WakeUp()
163 m_wakeupPipe
.WakeUp();
166 void wxConsoleEventLoop::OnNextIteration()
168 // calculate the timeout until the next timer expiration
172 wxUsecClock_t nextTimer
;
173 if ( wxTimerScheduler::Get().GetNext(&nextTimer
) )
176 timeout
= (nextTimer
/ 1000).ToLong();
178 else // no timers, we can block forever
179 #endif // wxUSE_TIMER
181 timeout
= wxFDIODispatcher::TIMEOUT_INFINITE
;
184 m_dispatcher
->RunLoop(timeout
);
187 wxTimerScheduler::Get().NotifyExpired();
190 // call the signal handlers for any signals we caught recently
191 wxTheApp
->CheckSignal();
194 #endif // wxUSE_CONSOLE_EVENTLOOP