1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/core/evtloop_cf.cpp
3 // Purpose: wxEventLoop implementation common to both Carbon and Cocoa
4 // Author: Vadim Zeitlin
6 // RCS-ID: $Id: wxhead.cpp,v 1.10 2009-06-29 10:23:04 zeitlin Exp $
7 // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
26 #include "wx/evtloop.h"
28 #if wxUSE_EVENTLOOP_SOURCE
30 #include "wx/evtloopsrc.h"
32 #include "wx/scopedptr.h"
34 #include "wx/osx/private.h"
35 #include "wx/osx/core/cfref.h"
37 // ============================================================================
38 // wxCFEventLoopSource and wxCFEventLoop implementation
39 // ============================================================================
41 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
45 void EnableDescriptorCallBacks(CFFileDescriptorRef cffd
, int flags
)
47 if ( flags
& wxEVENT_SOURCE_INPUT
)
48 CFFileDescriptorEnableCallBacks(cffd
, kCFFileDescriptorReadCallBack
);
49 if ( flags
& wxEVENT_SOURCE_OUTPUT
)
50 CFFileDescriptorEnableCallBacks(cffd
, kCFFileDescriptorWriteCallBack
);
54 wx_cffiledescriptor_callback(CFFileDescriptorRef cffd
,
58 wxLogTrace(wxTRACE_EVT_SOURCE
,
59 "CFFileDescriptor callback, flags=%d", flags
);
61 wxCFEventLoopSource
* const
62 source
= static_cast<wxCFEventLoopSource
*>(ctxData
);
64 wxEventLoopSourceHandler
* const
65 handler
= source
->GetHandler();
66 if ( flags
& kCFFileDescriptorReadCallBack
)
67 handler
->OnReadWaiting();
68 if ( flags
& kCFFileDescriptorWriteCallBack
)
69 handler
->OnWriteWaiting();
71 // we need to re-enable callbacks to be called again
72 EnableDescriptorCallBacks(cffd
, source
->GetFlags());
75 } // anonymous namespace
78 wxCFEventLoop::AddSourceForFD(int fd
,
79 wxEventLoopSourceHandler
*handler
,
82 wxCHECK_MSG( fd
!= -1, NULL
, "can't monitor invalid fd" );
84 wxScopedPtr
<wxCFEventLoopSource
>
85 source(new wxCFEventLoopSource(handler
, flags
));
87 CFFileDescriptorContext ctx
= { 0, source
.get(), NULL
, NULL
, NULL
};
88 wxCFRef
<CFFileDescriptorRef
>
89 cffd(CFFileDescriptorCreate
93 true, // close on invalidate
94 wx_cffiledescriptor_callback
,
100 source
->SetFileDescriptor(cffd
.release());
102 wxCFRef
<CFRunLoopSourceRef
>
103 cfsrc(CFFileDescriptorCreateRunLoopSource(kCFAllocatorDefault
, cffd
, 0));
107 CFRunLoopRef cfloop
= CFGetCurrentRunLoop();
108 CFRunLoopAddSource(cfloop
, cfsrc
, kCFRunLoopDefaultMode
);
110 return source
.release();
113 void wxCFEventLoopSource::SetFileDescriptor(CFFileDescriptorRef cffd
)
115 wxASSERT_MSG( !m_cffd
, "shouldn't be called more than once" );
120 wxCFEventLoopSource::~wxCFEventLoopSource()
129 wxCFEventLoop::AddSourceForFD(int WXUNUSED(fd
),
130 wxEventLoopSourceHandler
* WXUNUSED(handler
),
136 #endif // MAC_OS_X_VERSION_MAX_ALLOWED
138 #endif // wxUSE_EVENTLOOP_SOURCE