X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6b8ef0b35d674bc262eb2005ac1321762c831d31..8a31648287be0ef976f133de2786b137f1e98340:/src/gtk/evtloop.cpp?ds=sidebyside diff --git a/src/gtk/evtloop.cpp b/src/gtk/evtloop.cpp index 9d43d56d9e..a35be35ab0 100644 --- a/src/gtk/evtloop.cpp +++ b/src/gtk/evtloop.cpp @@ -6,7 +6,7 @@ // Created: 10.07.01 // RCS-ID: $Id$ // Copyright: (c) 2001 Vadim Zeitlin -// License: wxWindows licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -25,6 +25,7 @@ #endif #include "wx/evtloop.h" +#include "wx/evtloopsrc.h" #ifndef WX_PRECOMP #include "wx/app.h" @@ -86,49 +87,42 @@ void wxGUIEventLoop::WakeUp() // wxEventLoop adding & removing sources // ---------------------------------------------------------------------------- +#if wxUSE_EVENTLOOP_SOURCE + extern "C" { static gboolean wx_on_channel_event(GIOChannel *channel, - GIOCondition condition, gpointer data) + GIOCondition condition, + gpointer data) { - wxLogTrace(wxTRACE_EVT_SOURCE, "wx_on_channel_event, gtk_source_id=%d", - g_io_channel_unix_get_fd(channel)); + wxUnusedVar(channel); // Unused if !wxUSE_LOG || !wxDEBUG_LEVEL + + wxLogTrace(wxTRACE_EVT_SOURCE, + "wx_on_channel_event, fd=%d, condition=%08x", + g_io_channel_unix_get_fd(channel), condition); - wxEventLoopSourceHandler* handler = - static_cast(data); + wxEventLoopSourceHandler * const + handler = static_cast(data); if (condition & G_IO_IN || condition & G_IO_PRI) - { handler->OnReadWaiting(); - } - else if (condition & G_IO_OUT) - { + if (condition & G_IO_OUT) handler->OnWriteWaiting(); - } else if (condition & G_IO_ERR || condition & G_IO_NVAL) - { handler->OnExceptionWaiting(); - } - else - { - wxFAIL_MSG(wxString::Format("Inavlid condition=%d", condition)); - } // we never want to remove source here, so always return true return TRUE; } } -bool wxGUIEventLoop::DoAddSource(wxAbstractEventLoopSource* src) +wxEventLoopSource * +wxGUIEventLoop::AddSourceForFD(int fd, + wxEventLoopSourceHandler *handler, + int flags) { - Source* source = dynamic_cast(src); - wxCHECK_MSG( source, false, "Invalid source type" ); - - wxLogTrace(wxTRACE_EVT_SOURCE, - "wxGUIEventLoop::DoAddSource() source=%d", - source->GetResource()); + wxCHECK_MSG( fd != -1, NULL, "can't monitor invalid fd" ); - int flags = source->GetFlags(); int condition = 0; if (flags & wxEVENT_SOURCE_INPUT) condition |= G_IO_IN | G_IO_PRI; @@ -137,32 +131,38 @@ bool wxGUIEventLoop::DoAddSource(wxAbstractEventLoopSource* src) if (flags & wxEVENT_SOURCE_EXCEPTION) condition |= G_IO_ERR | G_IO_HUP | G_IO_NVAL; - GIOChannel* channel = g_io_channel_unix_new(source->GetResource()); - int gtk_id = g_io_add_watch(channel, (GIOCondition)condition, - &wx_on_channel_event, source->GetHandler()); + GIOChannel* channel = g_io_channel_unix_new(fd); + const unsigned sourceId = g_io_add_watch + ( + channel, + (GIOCondition)condition, + &wx_on_channel_event, + handler + ); + // it was ref'd by g_io_add_watch() so we can unref it here g_io_channel_unref(channel); - wxEventLoopSourceIdMap::value_type val(source, gtk_id); - return m_sourceIdMap.insert(val).second; + if ( !sourceId ) + return NULL; + + wxLogTrace(wxTRACE_EVT_SOURCE, + "Adding event loop source for fd=%d with GTK id=%u", + fd, sourceId); + + + return new wxGTKEventLoopSource(sourceId, handler, flags); } -bool wxGUIEventLoop::DoRemoveSource(wxAbstractEventLoopSource* src) +wxGTKEventLoopSource::~wxGTKEventLoopSource() { - Source* source = dynamic_cast(src); - wxCHECK_MSG( source, false, "Invalid source type" ); - wxLogTrace(wxTRACE_EVT_SOURCE, - "wxGUIEventLoop::DoRemoveSource() source=%d", - source->GetResource()); + "Removing event loop source with GTK id=%u", m_sourceId); - wxEventLoopSourceIdMap::iterator it = m_sourceIdMap.find(source); - wxCHECK_MSG( it != m_sourceIdMap.end(), false, "Source not on the list" ); - - int gtk_id = it->second; - m_sourceIdMap.erase(it); - return g_source_remove(gtk_id); + g_source_remove(m_sourceId); } +#endif // wxUSE_EVENTLOOP_SOURCE + // ---------------------------------------------------------------------------- // wxEventLoop message processing dispatching // ----------------------------------------------------------------------------