]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/evtloopunix.cpp
Add wxStreamTempInputBuffer::ReadAll() helper.
[wxWidgets.git] / src / unix / evtloopunix.cpp
index 7f27c1c2a216acba8033c177be65510ad074e52d..763b73ef73b38480d177314e3b205261c983b82a 100644 (file)
 
 #if wxUSE_CONSOLE_EVENTLOOP
 
 
 #if wxUSE_CONSOLE_EVENTLOOP
 
+#include "wx/evtloop.h"
+
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/log.h"
 #endif
 
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/log.h"
 #endif
 
-#include <errno.h>
 #include "wx/apptrait.h"
 #include "wx/apptrait.h"
-#include "wx/evtloop.h"
+#include "wx/scopedptr.h"
 #include "wx/thread.h"
 #include "wx/module.h"
 #include "wx/unix/private/timer.h"
 #include "wx/unix/private/epolldispatcher.h"
 #include "wx/thread.h"
 #include "wx/module.h"
 #include "wx/unix/private/timer.h"
 #include "wx/unix/private/epolldispatcher.h"
+#include "wx/unix/private/wakeuppipe.h"
 #include "wx/private/selectdispatcher.h"
 #include "wx/private/selectdispatcher.h"
+#include "wx/private/eventloopsourcesmanager.h"
+#include "wx/private/fdioeventloopsourcehandler.h"
+#include "wx/private/eventloopsourcesmanager.h"
 
 
-#define TRACE_EVENTS _T("events")
+#if wxUSE_EVENTLOOP_SOURCE
+    #include "wx/evtloopsrc.h"
+#endif // wxUSE_EVENTLOOP_SOURCE
 
 // ===========================================================================
 
 // ===========================================================================
-// wxEventLoop::PipeIOHandler implementation
+// wxEventLoop implementation
 // ===========================================================================
 
 // ===========================================================================
 
-// ----------------------------------------------------------------------------
+//-----------------------------------------------------------------------------
 // initialization
 // initialization
-// ----------------------------------------------------------------------------
+//-----------------------------------------------------------------------------
 
 
-bool wxConsoleEventLoop::PipeIOHandler::Create()
+wxConsoleEventLoop::wxConsoleEventLoop()
 {
 {
-    if ( !m_pipe.Create() )
+    m_wakeupPipe = new wxWakeUpPipeMT;
+    const int pipeFD = m_wakeupPipe->GetReadFd();
+    if ( pipeFD == wxPipe::INVALID_FD )
     {
     {
-        wxLogError(_("Failed to create wake up pipe used by event loop."));
-        return false;
-    }
-
-    const int fdRead = GetReadFd();
-
-    int flags = fcntl(fdRead, F_GETFL, 0);
-    if ( flags == -1 || fcntl(fdRead, F_SETFL, flags | O_NONBLOCK) == -1 )
-    {
-        wxLogSysError(_("Failed to switch wake up pipe to non-blocking mode"));
-        return false;
+        wxDELETE(m_wakeupPipe);
+        m_dispatcher = NULL;
+        return;
     }
 
     }
 
-    wxLogTrace(TRACE_EVENTS, wxT("Wake up pipe (%d, %d) created"),
-               fdRead, m_pipe[wxPipe::Write]);
+    m_dispatcher = wxFDIODispatcher::Get();
+    if ( !m_dispatcher )
+        return;
 
 
-    return true;
+    m_dispatcher->RegisterFD(pipeFD, m_wakeupPipe, wxFDIO_INPUT);
 }
 
 }
 
-// ----------------------------------------------------------------------------
-// wakeup handling
-// ----------------------------------------------------------------------------
-
-void wxConsoleEventLoop::PipeIOHandler::WakeUp()
+wxConsoleEventLoop::~wxConsoleEventLoop()
 {
 {
-    if ( write(m_pipe[wxPipe::Write], "s", 1) != 1 )
+    if ( m_wakeupPipe )
     {
     {
-        // don't use wxLog here, we can be in another thread and this could
-        // result in dead locks
-        perror("write(wake up pipe)");
+        if ( m_dispatcher )
+        {
+            m_dispatcher->UnregisterFD(m_wakeupPipe->GetReadFd());
+        }
+
+        delete m_wakeupPipe;
     }
 }
 
     }
 }
 
-void wxConsoleEventLoop::PipeIOHandler::OnReadWaiting()
+//-----------------------------------------------------------------------------
+// adding & removing sources
+//-----------------------------------------------------------------------------
+
+#if wxUSE_EVENTLOOP_SOURCE
+
+class wxConsoleEventLoopSourcesManager : public wxEventLoopSourcesManagerBase
 {
 {
-    // got wakeup from child thread: read all data available in pipe just to
-    // make it empty (evevn though we write one byte at a time from WakeUp(),
-    // it could have been called several times)
-    char buf[4];
-    for ( ;; )
+public:
+    wxEventLoopSource* AddSourceForFD( int fd,
+                                       wxEventLoopSourceHandler *handler,
+                                       int flags)
     {
     {
-        const int size = read(GetReadFd(), buf, WXSIZEOF(buf));
+        wxCHECK_MSG( fd != -1, NULL, "can't monitor invalid fd" );
 
 
-        if ( size == 0 || (size == -1 && errno == EAGAIN) )
-        {
-            // nothing left in the pipe (EAGAIN is expected for an FD with
-            // O_NONBLOCK)
-            break;
-        }
+        wxLogTrace(wxTRACE_EVT_SOURCE,
+                    "Adding event loop source for fd=%d", fd);
 
 
-        if ( size == -1 )
-        {
-            wxLogSysError(_("Failed to read from wake-up pipe"));
+        // we need a bridge to wxFDIODispatcher
+        //
+        // TODO: refactor the code so that only wxEventLoopSourceHandler is used
+        wxScopedPtr<wxFDIOHandler>
+            fdioHandler(new wxFDIOEventLoopSourceHandler(handler));
 
 
-            break;
-        }
-    }
+        if ( !wxFDIODispatcher::Get()->RegisterFD(fd, fdioHandler.get(), flags) )
+            return NULL;
 
 
-    wxTheApp->ProcessPendingEvents();
-}
+        return new wxUnixEventLoopSource(wxFDIODispatcher::Get(), fdioHandler.release(),
+                                         fd, handler, flags);
+    }
+};
 
 
-// ===========================================================================
-// wxEventLoop implementation
-// ===========================================================================
+wxEventLoopSourcesManagerBase* wxAppTraits::GetEventLoopSourcesManager()
+{
+    static wxConsoleEventLoopSourcesManager s_eventLoopSourcesManager;
 
 
-//-----------------------------------------------------------------------------
-// initialization
-//-----------------------------------------------------------------------------
+    return &s_eventLoopSourcesManager;
+}
 
 
-wxConsoleEventLoop::wxConsoleEventLoop()
+wxUnixEventLoopSource::~wxUnixEventLoopSource()
 {
 {
-    if ( !m_wakeupPipe.Create() )
-    {
-        m_dispatcher = NULL;
-        return;
-    }
+    wxLogTrace(wxTRACE_EVT_SOURCE,
+               "Removing event loop source for fd=%d", m_fd);
 
 
-    m_dispatcher = wxFDIODispatcher::Get();
-    if ( !m_dispatcher )
-        return;
+    m_dispatcher->UnregisterFD(m_fd);
 
 
-    m_dispatcher->RegisterFD
-                  (
-                    m_wakeupPipe.GetReadFd(),
-                    &m_wakeupPipe,
-                    wxFDIO_INPUT
-                  );
+    delete m_fdioHandler;
 }
 
 }
 
+#endif // wxUSE_EVENTLOOP_SOURCE
+
 //-----------------------------------------------------------------------------
 // events dispatch and loop handling
 //-----------------------------------------------------------------------------
 
 bool wxConsoleEventLoop::Pending() const
 {
 //-----------------------------------------------------------------------------
 // events dispatch and loop handling
 //-----------------------------------------------------------------------------
 
 bool wxConsoleEventLoop::Pending() const
 {
-    return wxTheApp->HasPendingEvents();
+    if ( m_dispatcher->HasPending() )
+        return true;
+
+#if wxUSE_TIMER
+    wxUsecClock_t nextTimer;
+    if ( wxTimerScheduler::Get().GetNext(&nextTimer) &&
+            !wxMilliClockToLong(nextTimer) )
+        return true;
+#endif // wxUSE_TIMER
+
+    return false;
 }
 
 bool wxConsoleEventLoop::Dispatch()
 {
 }
 
 bool wxConsoleEventLoop::Dispatch()
 {
-    DispatchTimeout(wxFDIODispatcher::TIMEOUT_INFINITE);
+    DispatchTimeout(static_cast<unsigned long>(
+        wxFDIODispatcher::TIMEOUT_INFINITE));
 
     return true;
 }
 
     return true;
 }
@@ -167,21 +174,19 @@ int wxConsoleEventLoop::DispatchTimeout(unsigned long timeout)
     }
 #endif // wxUSE_TIMER
 
     }
 #endif // wxUSE_TIMER
 
-    bool hadEvent = m_dispatcher->Dispatch(timeout);
+    bool hadEvent = m_dispatcher->Dispatch(timeout) > 0;
 
 #if wxUSE_TIMER
     if ( wxTimerScheduler::Get().NotifyExpired() )
         hadEvent = true;
 #endif // wxUSE_TIMER
 
 
 #if wxUSE_TIMER
     if ( wxTimerScheduler::Get().NotifyExpired() )
         hadEvent = true;
 #endif // wxUSE_TIMER
 
-    wxTheApp->ProcessPendingEvents();
-
     return hadEvent ? 1 : -1;
 }
 
 void wxConsoleEventLoop::WakeUp()
 {
     return hadEvent ? 1 : -1;
 }
 
 void wxConsoleEventLoop::WakeUp()
 {
-    m_wakeupPipe.WakeUp();
+    m_wakeupPipe->WakeUp();
 }
 
 void wxConsoleEventLoop::OnNextIteration()
 }
 
 void wxConsoleEventLoop::OnNextIteration()