]> git.saurik.com Git - wxWidgets.git/blame - src/unix/evtloopunix.cpp
extract AddColumnsItems() from ShowColumnsMenu() to make it possible to reuse it...
[wxWidgets.git] / src / unix / evtloopunix.cpp
CommitLineData
b46b1d59
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/unix/evtloopunix.cpp
3// Purpose: wxEventLoop implementation
4// Author: Lukasz Michalski (lm@zork.pl)
5// Created: 2007-05-07
6// RCS-ID: $Id$
7// Copyright: (c) 2006 Zork Lukasz Michalski
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11// ===========================================================================
12// declarations
13// ===========================================================================
14
15// ---------------------------------------------------------------------------
16// headers
17// ---------------------------------------------------------------------------
18
19// For compilers that support precompilation, includes "wx.h".
20#include "wx/wxprec.h"
21
a1873279 22#if wxUSE_CONSOLE_EVENTLOOP
b46b1d59
VZ
23
24#ifndef WX_PRECOMP
25 #include "wx/app.h"
26 #include "wx/log.h"
27#endif
28
29#include <errno.h>
37ab9399 30#include "wx/apptrait.h"
a1873279 31#include "wx/evtloop.h"
b46b1d59
VZ
32#include "wx/thread.h"
33#include "wx/module.h"
ba752031 34#include "wx/unix/private/timer.h"
b46b1d59
VZ
35#include "wx/unix/private/epolldispatcher.h"
36#include "wx/private/selectdispatcher.h"
37
38#define TRACE_EVENTS _T("events")
39
40// ===========================================================================
41// wxEventLoop::PipeIOHandler implementation
42// ===========================================================================
43
44// ----------------------------------------------------------------------------
45// initialization
46// ----------------------------------------------------------------------------
47
48bool wxConsoleEventLoop::PipeIOHandler::Create()
49{
50 if ( !m_pipe.Create() )
51 {
52 wxLogError(_("Failed to create wake up pipe used by event loop."));
53 return false;
54 }
55
56 const int fdRead = GetReadFd();
57
58 int flags = fcntl(fdRead, F_GETFL, 0);
59 if ( flags == -1 || fcntl(fdRead, F_SETFL, flags | O_NONBLOCK) == -1 )
60 {
61 wxLogSysError(_("Failed to switch wake up pipe to non-blocking mode"));
62 return false;
63 }
64
65 wxLogTrace(TRACE_EVENTS, wxT("Wake up pipe (%d, %d) created"),
66 fdRead, m_pipe[wxPipe::Write]);
67
68 return true;
69}
70
71// ----------------------------------------------------------------------------
72// wakeup handling
73// ----------------------------------------------------------------------------
74
75void wxConsoleEventLoop::PipeIOHandler::WakeUp()
76{
77 if ( write(m_pipe[wxPipe::Write], "s", 1) != 1 )
78 {
79 // don't use wxLog here, we can be in another thread and this could
80 // result in dead locks
81 perror("write(wake up pipe)");
82 }
83}
84
85void wxConsoleEventLoop::PipeIOHandler::OnReadWaiting()
86{
87 // got wakeup from child thread: read all data available in pipe just to
88 // make it empty (evevn though we write one byte at a time from WakeUp(),
89 // it could have been called several times)
90 char buf[4];
91 for ( ;; )
92 {
93 const int size = read(GetReadFd(), buf, WXSIZEOF(buf));
94
95 if ( size == 0 || (size == -1 && errno == EAGAIN) )
96 {
97 // nothing left in the pipe (EAGAIN is expected for an FD with
98 // O_NONBLOCK)
99 break;
100 }
101
102 if ( size == -1 )
103 {
104 wxLogSysError(_("Failed to read from wake-up pipe"));
105
106 break;
107 }
108 }
109
110 wxTheApp->ProcessPendingEvents();
111}
112
113// ===========================================================================
114// wxEventLoop implementation
115// ===========================================================================
116
117//-----------------------------------------------------------------------------
118// initialization
119//-----------------------------------------------------------------------------
120
121wxConsoleEventLoop::wxConsoleEventLoop()
122{
123 if ( !m_wakeupPipe.Create() )
124 {
125 m_dispatcher = NULL;
126 return;
127 }
128
5e1eac14 129 m_dispatcher = wxFDIODispatcher::Get();
b46b1d59 130 if ( !m_dispatcher )
5e1eac14 131 return;
b46b1d59
VZ
132
133 m_dispatcher->RegisterFD
134 (
135 m_wakeupPipe.GetReadFd(),
136 &m_wakeupPipe,
137 wxFDIO_INPUT
138 );
3ef595d5 139}
b46b1d59
VZ
140
141//-----------------------------------------------------------------------------
142// events dispatch and loop handling
143//-----------------------------------------------------------------------------
144
145bool wxConsoleEventLoop::Pending() const
146{
147 return wxTheApp->HasPendingEvents();
148}
149
150bool wxConsoleEventLoop::Dispatch()
b46b1d59 151{
9af42efd 152 DispatchTimeout(wxFDIODispatcher::TIMEOUT_INFINITE);
b46b1d59 153
9af42efd
VZ
154 return true;
155}
156
157int wxConsoleEventLoop::DispatchTimeout(unsigned long timeout)
158{
b46b1d59 159#if wxUSE_TIMER
9af42efd 160 // check if we need to decrease the timeout to account for a timer
b46b1d59
VZ
161 wxUsecClock_t nextTimer;
162 if ( wxTimerScheduler::Get().GetNext(&nextTimer) )
163 {
9af42efd
VZ
164 unsigned long timeUntilNextTimer = wxMilliClockToLong(nextTimer / 1000);
165 if ( timeUntilNextTimer < timeout )
166 timeout = timeUntilNextTimer;
b46b1d59 167 }
b46b1d59 168#endif // wxUSE_TIMER
b46b1d59 169
9af42efd 170 bool hadEvent = m_dispatcher->Dispatch(timeout);
b46b1d59
VZ
171
172#if wxUSE_TIMER
9af42efd
VZ
173 if ( wxTimerScheduler::Get().NotifyExpired() )
174 hadEvent = true;
175#endif // wxUSE_TIMER
b46b1d59 176
438febca 177 wxTheApp->ProcessPendingEvents();
9af42efd
VZ
178
179 return hadEvent ? 1 : -1;
438febca
VZ
180}
181
182void wxConsoleEventLoop::WakeUp()
183{
184 m_wakeupPipe.WakeUp();
185}
186
187void wxConsoleEventLoop::OnNextIteration()
188{
b46b1d59
VZ
189 // call the signal handlers for any signals we caught recently
190 wxTheApp->CheckSignal();
191}
192
37ab9399
SN
193
194wxEventLoopBase *wxConsoleAppTraits::CreateEventLoop()
195{
196 return new wxEventLoop();
197}
198
a1873279 199#endif // wxUSE_CONSOLE_EVENTLOOP