Suppress unused parameter warnings.
[wxWidgets.git] / src / osx / core / evtloop_cf.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/core/evtloop_cf.cpp
3 // Purpose: wxEventLoop implementation common to both Carbon and Cocoa
4 // Author: Vadim Zeitlin
5 // Created: 2009-10-18
6 // RCS-ID: $Id$
7 // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
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
22 #ifdef __BORLANDC__
23 #pragma hdrstop
24 #endif
25
26 #include "wx/evtloop.h"
27
28 #if wxUSE_EVENTLOOP_SOURCE
29
30 #ifndef WX_PRECOMP
31 #include "wx/log.h"
32 #include "wx/app.h"
33 #endif
34
35 #include "wx/evtloopsrc.h"
36
37 #include "wx/scopedptr.h"
38
39 #include "wx/osx/private.h"
40 #include "wx/osx/core/cfref.h"
41
42 #if wxUSE_GUI
43 #include "wx/nonownedwnd.h"
44 #endif
45
46 // ============================================================================
47 // wxCFEventLoopSource and wxCFEventLoop implementation
48 // ============================================================================
49
50 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
51 namespace
52 {
53
54 void EnableDescriptorCallBacks(CFFileDescriptorRef cffd, int flags)
55 {
56 if ( flags & wxEVENT_SOURCE_INPUT )
57 CFFileDescriptorEnableCallBacks(cffd, kCFFileDescriptorReadCallBack);
58 if ( flags & wxEVENT_SOURCE_OUTPUT )
59 CFFileDescriptorEnableCallBacks(cffd, kCFFileDescriptorWriteCallBack);
60 }
61
62 void
63 wx_cffiledescriptor_callback(CFFileDescriptorRef cffd,
64 CFOptionFlags flags,
65 void *ctxData)
66 {
67 wxLogTrace(wxTRACE_EVT_SOURCE,
68 "CFFileDescriptor callback, flags=%d", flags);
69
70 wxCFEventLoopSource * const
71 source = static_cast<wxCFEventLoopSource *>(ctxData);
72
73 wxEventLoopSourceHandler * const
74 handler = source->GetHandler();
75 if ( flags & kCFFileDescriptorReadCallBack )
76 handler->OnReadWaiting();
77 if ( flags & kCFFileDescriptorWriteCallBack )
78 handler->OnWriteWaiting();
79
80 // we need to re-enable callbacks to be called again
81 EnableDescriptorCallBacks(cffd, source->GetFlags());
82 }
83
84 } // anonymous namespace
85
86 wxEventLoopSource *
87 wxCFEventLoop::AddSourceForFD(int fd,
88 wxEventLoopSourceHandler *handler,
89 int flags)
90 {
91 wxCHECK_MSG( fd != -1, NULL, "can't monitor invalid fd" );
92
93 wxScopedPtr<wxCFEventLoopSource>
94 source(new wxCFEventLoopSource(handler, flags));
95
96 CFFileDescriptorContext ctx = { 0, source.get(), NULL, NULL, NULL };
97 wxCFRef<CFFileDescriptorRef>
98 cffd(CFFileDescriptorCreate
99 (
100 kCFAllocatorDefault,
101 fd,
102 true, // close on invalidate
103 wx_cffiledescriptor_callback,
104 &ctx
105 ));
106 if ( !cffd )
107 return NULL;
108
109 source->SetFileDescriptor(cffd.release());
110
111 wxCFRef<CFRunLoopSourceRef>
112 cfsrc(CFFileDescriptorCreateRunLoopSource(kCFAllocatorDefault, cffd, 0));
113 if ( !cfsrc )
114 return NULL;
115
116 CFRunLoopRef cfloop = CFGetCurrentRunLoop();
117 CFRunLoopAddSource(cfloop, cfsrc, kCFRunLoopDefaultMode);
118
119 return source.release();
120 }
121
122 void wxCFEventLoopSource::SetFileDescriptor(CFFileDescriptorRef cffd)
123 {
124 wxASSERT_MSG( !m_cffd, "shouldn't be called more than once" );
125
126 m_cffd = cffd;
127 }
128
129 wxCFEventLoopSource::~wxCFEventLoopSource()
130 {
131 if ( m_cffd )
132 CFRelease(m_cffd);
133 }
134
135 #else // OS X < 10.5
136
137 wxEventLoopSource *
138 wxCFEventLoop::AddSourceForFD(int WXUNUSED(fd),
139 wxEventLoopSourceHandler * WXUNUSED(handler),
140 int WXUNUSED(flags))
141 {
142 return NULL;
143 }
144
145 #endif // MAC_OS_X_VERSION_MAX_ALLOWED
146
147 #endif // wxUSE_EVENTLOOP_SOURCE
148
149 void wxObserverCallBack(CFRunLoopObserverRef observer, CFRunLoopActivity activity, void *info)
150 {
151 wxCFEventLoop * eventloop = static_cast<wxCFEventLoop *>(info);
152 if ( eventloop )
153 eventloop->ObserverCallBack(observer, activity);
154 }
155
156 void wxCFEventLoop::ObserverCallBack(CFRunLoopObserverRef WXUNUSED(observer), int activity)
157 {
158 if ( activity & kCFRunLoopBeforeTimers )
159 {
160 // process pending wx events first as they correspond to low-level events
161 // which happened before, i.e. typically pending events were queued by a
162 // previous call to Dispatch() and if we didn't process them now the next
163 // call to it might enqueue them again (as happens with e.g. socket events
164 // which would be generated as long as there is input available on socket
165 // and this input is only removed from it when pending event handlers are
166 // executed)
167
168 if ( wxTheApp )
169 wxTheApp->ProcessPendingEvents();
170 }
171
172 if ( activity & kCFRunLoopBeforeWaiting )
173 {
174 if ( ProcessIdle() )
175 {
176 WakeUp();
177 }
178 else
179 {
180 #if wxUSE_THREADS
181 wxMutexGuiLeave();
182 wxMilliSleep(20);
183 wxMutexGuiEnter();
184 #endif
185 }
186 }
187 }
188
189 wxCFEventLoop::wxCFEventLoop()
190 {
191 m_shouldExit = false;
192
193 m_runLoop = CFGetCurrentRunLoop();
194
195 CFRunLoopObserverContext ctxt;
196 bzero( &ctxt, sizeof(ctxt) );
197 ctxt.info = this;
198 m_runLoopObserver = CFRunLoopObserverCreate( kCFAllocatorDefault, kCFRunLoopBeforeTimers | kCFRunLoopBeforeWaiting , true /* repeats */, 0,
199 wxObserverCallBack, &ctxt );
200 CFRunLoopAddObserver(m_runLoop, m_runLoopObserver, kCFRunLoopDefaultMode);
201 }
202
203 wxCFEventLoop::~wxCFEventLoop()
204 {
205 CFRunLoopRemoveObserver(m_runLoop, m_runLoopObserver, kCFRunLoopDefaultMode);
206 }
207
208
209 CFRunLoopRef wxCFEventLoop::CFGetCurrentRunLoop() const
210 {
211 return CFRunLoopGetCurrent();
212 }
213
214 void wxCFEventLoop::WakeUp()
215 {
216 extern void wxMacWakeUp();
217
218 wxMacWakeUp();
219 }
220
221 bool wxCFEventLoop::YieldFor(long eventsToProcess)
222 {
223 #if wxUSE_THREADS
224 // Yielding from a non-gui thread needs to bail out, otherwise we end up
225 // possibly sending events in the thread too.
226 if ( !wxThread::IsMain() )
227 {
228 return true;
229 }
230 #endif // wxUSE_THREADS
231
232 m_isInsideYield = true;
233 m_eventsToProcessInsideYield = eventsToProcess;
234
235 #if wxUSE_LOG
236 // disable log flushing from here because a call to wxYield() shouldn't
237 // normally result in message boxes popping up &c
238 wxLog::Suspend();
239 #endif // wxUSE_LOG
240
241 // process all pending events:
242 while ( DoProcessEvents() == 1 )
243 ;
244
245 // it's necessary to call ProcessIdle() to update the frames sizes which
246 // might have been changed (it also will update other things set from
247 // OnUpdateUI() which is a nice (and desired) side effect)
248 while ( ProcessIdle() ) {}
249
250 // if there are pending events, we must process them.
251 if (wxTheApp)
252 wxTheApp->ProcessPendingEvents();
253
254 #if wxUSE_LOG
255 wxLog::Resume();
256 #endif // wxUSE_LOG
257 m_isInsideYield = false;
258
259 return true;
260 }
261
262 // implement/override base class pure virtual
263 bool wxCFEventLoop::Pending() const
264 {
265 return true;
266 }
267
268 int wxCFEventLoop::DoProcessEvents()
269 {
270 return DispatchTimeout( 1000 );
271 }
272
273 bool wxCFEventLoop::Dispatch()
274 {
275 return DoProcessEvents() != 0;
276 }
277
278 int wxCFEventLoop::DispatchTimeout(unsigned long timeout)
279 {
280 if ( !wxTheApp )
281 return 0;
282
283 int status = DoDispatchTimeout(timeout);
284
285 switch( status )
286 {
287 case 0:
288 break;
289 case -1:
290 if ( m_shouldExit )
291 return 0;
292
293 break;
294 case 1:
295 break;
296 }
297
298 return status;
299 }
300
301 int wxCFEventLoop::DoDispatchTimeout(unsigned long timeout)
302 {
303 SInt32 status = CFRunLoopRunInMode(kCFRunLoopDefaultMode, timeout / 1000.0 , true);
304 switch( status )
305 {
306 case kCFRunLoopRunFinished:
307 wxFAIL_MSG( "incorrect run loop state" );
308 break;
309 case kCFRunLoopRunStopped:
310 return 0;
311 break;
312 case kCFRunLoopRunTimedOut:
313 return -1;
314 break;
315 case kCFRunLoopRunHandledSource:
316 default:
317 break;
318 }
319 return 1;
320 }
321
322 void wxCFEventLoop::DoRun()
323 {
324 for ( ;; )
325 {
326 // generate and process idle events for as long as we don't
327 // have anything else to do
328 DoProcessEvents();
329
330 // if the "should exit" flag is set, the loop should terminate
331 // but not before processing any remaining messages so while
332 // Pending() returns true, do process them
333 if ( m_shouldExit )
334 {
335 while ( DoProcessEvents() == 1 )
336 ;
337
338 break;
339 }
340 }
341 }
342
343 void wxCFEventLoop::DoStop()
344 {
345 CFRunLoopStop(CFGetCurrentRunLoop());
346 }
347
348 // enters a loop calling OnNextIteration(), Pending() and Dispatch() and
349 // terminating when Exit() is called
350 int wxCFEventLoop::Run()
351 {
352 // event loops are not recursive, you need to create another loop!
353 wxCHECK_MSG( !IsRunning(), -1, wxT("can't reenter a message loop") );
354
355 // ProcessIdle() and ProcessEvents() below may throw so the code here should
356 // be exception-safe, hence we must use local objects for all actions we
357 // should undo
358 wxEventLoopActivator activate(this);
359
360 // we must ensure that OnExit() is called even if an exception is thrown
361 // from inside ProcessEvents() but we must call it from Exit() in normal
362 // situations because it is supposed to be called synchronously,
363 // wxModalEventLoop depends on this (so we can't just use ON_BLOCK_EXIT or
364 // something similar here)
365 #if wxUSE_EXCEPTIONS
366 for ( ;; )
367 {
368 try
369 {
370 #endif // wxUSE_EXCEPTIONS
371
372 DoRun();
373
374 #if wxUSE_EXCEPTIONS
375 // exit the outer loop as well
376 break;
377 }
378 catch ( ... )
379 {
380 try
381 {
382 if ( !wxTheApp || !wxTheApp->OnExceptionInMainLoop() )
383 {
384 OnExit();
385 break;
386 }
387 //else: continue running the event loop
388 }
389 catch ( ... )
390 {
391 // OnException() throwed, possibly rethrowing the same
392 // exception again: very good, but we still need OnExit() to
393 // be called
394 OnExit();
395 throw;
396 }
397 }
398 }
399 #endif // wxUSE_EXCEPTIONS
400
401 return m_exitcode;
402 }
403
404 // sets the "should exit" flag and wakes up the loop so that it terminates
405 // soon
406 void wxCFEventLoop::Exit(int rc)
407 {
408 m_exitcode = rc;
409 m_shouldExit = true;
410 DoStop();
411 }