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
24 #include "wx/evtloop.h"
31 #include "wx/apptrait.h"
32 #include "wx/scopedptr.h"
33 #include "wx/thread.h"
34 #include "wx/module.h"
35 #include "wx/unix/private/timer.h"
36 #include "wx/unix/private/epolldispatcher.h"
37 #include "wx/unix/private/wakeuppipe.h"
38 #include "wx/private/selectdispatcher.h"
39 #include "wx/private/eventloopsourcesmanager.h"
40 #include "wx/private/fdioeventloopsourcehandler.h"
41 #include "wx/private/eventloopsourcesmanager.h"
43 #if wxUSE_EVENTLOOP_SOURCE
44 #include "wx/evtloopsrc.h"
45 #endif // wxUSE_EVENTLOOP_SOURCE
47 // ===========================================================================
48 // wxEventLoop implementation
49 // ===========================================================================
51 //-----------------------------------------------------------------------------
53 //-----------------------------------------------------------------------------
55 wxConsoleEventLoop::wxConsoleEventLoop()
57 m_wakeupPipe
= new wxWakeUpPipeMT
;
58 const int pipeFD
= m_wakeupPipe
->GetReadFd();
59 if ( pipeFD
== wxPipe::INVALID_FD
)
61 wxDELETE(m_wakeupPipe
);
66 m_dispatcher
= wxFDIODispatcher::Get();
70 m_dispatcher
->RegisterFD(pipeFD
, m_wakeupPipe
, wxFDIO_INPUT
);
73 wxConsoleEventLoop::~wxConsoleEventLoop()
79 m_dispatcher
->UnregisterFD(m_wakeupPipe
->GetReadFd());
86 //-----------------------------------------------------------------------------
87 // adding & removing sources
88 //-----------------------------------------------------------------------------
90 #if wxUSE_EVENTLOOP_SOURCE
92 class wxConsoleEventLoopSourcesManager
: public wxEventLoopSourcesManagerBase
95 wxEventLoopSource
* AddSourceForFD( int fd
,
96 wxEventLoopSourceHandler
*handler
,
99 wxCHECK_MSG( fd
!= -1, NULL
, "can't monitor invalid fd" );
101 wxLogTrace(wxTRACE_EVT_SOURCE
,
102 "Adding event loop source for fd=%d", fd
);
104 // we need a bridge to wxFDIODispatcher
106 // TODO: refactor the code so that only wxEventLoopSourceHandler is used
107 wxScopedPtr
<wxFDIOHandler
>
108 fdioHandler(new wxFDIOEventLoopSourceHandler(handler
));
110 if ( !wxFDIODispatcher::Get()->RegisterFD(fd
, fdioHandler
.get(), flags
) )
113 return new wxUnixEventLoopSource(wxFDIODispatcher::Get(), fdioHandler
.release(),
118 wxEventLoopSourcesManagerBase
* wxAppTraits::GetEventLoopSourcesManager()
120 static wxConsoleEventLoopSourcesManager s_eventLoopSourcesManager
;
122 return &s_eventLoopSourcesManager
;
125 wxUnixEventLoopSource::~wxUnixEventLoopSource()
127 wxLogTrace(wxTRACE_EVT_SOURCE
,
128 "Removing event loop source for fd=%d", m_fd
);
130 m_dispatcher
->UnregisterFD(m_fd
);
132 delete m_fdioHandler
;
135 #endif // wxUSE_EVENTLOOP_SOURCE
137 //-----------------------------------------------------------------------------
138 // events dispatch and loop handling
139 //-----------------------------------------------------------------------------
141 bool wxConsoleEventLoop::Pending() const
143 if ( m_dispatcher
->HasPending() )
147 wxUsecClock_t nextTimer
;
148 if ( wxTimerScheduler::Get().GetNext(&nextTimer
) &&
149 !wxMilliClockToLong(nextTimer
) )
151 #endif // wxUSE_TIMER
156 bool wxConsoleEventLoop::Dispatch()
158 DispatchTimeout(static_cast<unsigned long>(
159 wxFDIODispatcher::TIMEOUT_INFINITE
));
164 int wxConsoleEventLoop::DispatchTimeout(unsigned long timeout
)
167 // check if we need to decrease the timeout to account for a timer
168 wxUsecClock_t nextTimer
;
169 if ( wxTimerScheduler::Get().GetNext(&nextTimer
) )
171 unsigned long timeUntilNextTimer
= wxMilliClockToLong(nextTimer
/ 1000);
172 if ( timeUntilNextTimer
< timeout
)
173 timeout
= timeUntilNextTimer
;
175 #endif // wxUSE_TIMER
177 bool hadEvent
= m_dispatcher
->Dispatch(timeout
) > 0;
180 if ( wxTimerScheduler::Get().NotifyExpired() )
182 #endif // wxUSE_TIMER
184 return hadEvent
? 1 : -1;
187 void wxConsoleEventLoop::WakeUp()
189 m_wakeupPipe
->WakeUp();
192 void wxConsoleEventLoop::OnNextIteration()
194 // call the signal handlers for any signals we caught recently
195 wxTheApp
->CheckSignal();
199 wxEventLoopBase
*wxConsoleAppTraits::CreateEventLoop()
201 return new wxEventLoop();
204 #endif // wxUSE_CONSOLE_EVENTLOOP