Re-work idle handling from previous commit.
authorCarl Hetherington <cth@carlh.net>
Wed, 24 Jul 2019 20:17:50 +0000 (21:17 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 24 Jul 2019 20:17:50 +0000 (21:17 +0100)
src/lib/player.cc
src/wx/film_viewer.cc
src/wx/film_viewer.h

index 6f0cfd1af7e9490f216b2d243742b86d081badb5..08e138fe602d4bef681dc0836852d42083f5f9f3 100644 (file)
@@ -48,6 +48,7 @@
 #include "image_decoder.h"
 #include "compose.hpp"
 #include "shuffler.h"
+#include "timer.h"
 #include <dcp/reel.h>
 #include <dcp/reel_sound_asset.h>
 #include <dcp/reel_subtitle_asset.h>
index edb451e74b8f1ce15d1947dc7792651342258f83..78efc77f655b97073cdd133badc66fc58fa225c3 100644 (file)
@@ -95,6 +95,7 @@ FilmViewer::FilmViewer (wxWindow* p)
 #endif
        , _state_timer ("viewer")
        , _gets (0)
+       , _idle_get (false)
 {
        switch (Config::instance()->video_view_type()) {
        case Config::VIDEO_VIEW_OPENGL:
@@ -119,6 +120,33 @@ FilmViewer::~FilmViewer ()
        stop ();
 }
 
+/** Ask for ::get() to be called next time we are idle */
+void
+FilmViewer::request_idle_get ()
+{
+       if (_idle_get) {
+               return;
+       }
+
+       _idle_get = true;
+       signal_manager->when_idle (boost::bind(&FilmViewer::idle_handler, this));
+}
+
+void
+FilmViewer::idle_handler ()
+{
+       if (!_idle_get) {
+               return;
+       }
+
+       if (get(true)) {
+               _idle_get = false;
+       } else {
+               /* get() could not complete quickly so we'll try again later */
+               signal_manager->when_idle (boost::bind(&FilmViewer::idle_handler, this));
+       }
+}
+
 void
 FilmViewer::set_film (shared_ptr<Film> film)
 {
@@ -231,12 +259,12 @@ FilmViewer::refresh_view ()
        _state_timer.unset ();
 }
 
-/** @param lazy true if it is *not* important that the display be updated as quickly as possible.
- *  If lazy is true we will try to return from this method quickly and postpone any time-consuming
- *  work until the UI is next idle.  Otherwise we will block here and try to get the image on
- *  screen as soon as possible.
+/** Try to get a frame from the butler and display it.
+ *  @param lazy true to return false quickly if no video is available quickly (i.e. we are waiting for the butler).
+ *  false to ask the butler to block until it has video (unless it is suspended).
+ *  @return true on success, false if we did nothing because it would have taken too long.
  */
-void
+bool
 FilmViewer::get (bool lazy)
 {
        DCPOMATIC_ASSERT (_butler);
@@ -246,8 +274,14 @@ FilmViewer::get (bool lazy)
                Butler::Error e;
                _player_video = _butler->get_video (!lazy, &e);
                if (!_player_video.first && e == Butler::AGAIN) {
-                       signal_manager->when_idle (boost::bind(&FilmViewer::get, this, lazy));
-                       return;
+                       if (lazy) {
+                               /* No video available; return saying we failed */
+                               return false;
+                       } else {
+                               /* Player was suspended; come back later */
+                               signal_manager->when_idle (boost::bind(&FilmViewer::get, this, false));
+                               return false;
+                       }
                }
        } while (
                _player_video.first &&
@@ -262,11 +296,10 @@ FilmViewer::get (bool lazy)
                error_dialog (_video_view->get(), e.what());
        }
 
-       if (lazy) {
-               signal_manager->when_idle (boost::bind(&FilmViewer::display_player_video, this));
-       } else {
-               display_player_video ();
-       }
+       display_player_video ();
+       PositionChanged ();
+
+       return true;
 }
 
 void
@@ -332,7 +365,6 @@ FilmViewer::timer ()
        }
 
        get (false);
-       PositionChanged ();
        DCPTime const next = _video_position + one_video_frame();
 
        if (next >= _film->length()) {
@@ -550,13 +582,11 @@ FilmViewer::seek (DCPTime t, bool accurate)
 
        _closed_captions_dialog->clear ();
        _butler->seek (t, accurate);
-       get (true);
+       request_idle_get ();
 
        if (was_running) {
                start ();
        }
-
-       PositionChanged ();
 }
 
 void
index 298e9dd00591ca22e7e1609077c30fa45c4efb9d..a37d7581ed5451dbaaa1a3df4d9a75b992c812ef 100644 (file)
@@ -151,7 +151,9 @@ private:
        void timer ();
        void calculate_sizes ();
        void player_change (ChangeType type, int, bool);
-       void get (bool lazy);
+       bool get (bool lazy);
+       void idle_handler ();
+       void request_idle_get ();
        void display_player_video ();
        void film_change (ChangeType, Film::Property);
        void recreate_butler ();
@@ -210,5 +212,8 @@ private:
        StateTimer _state_timer;
        int _gets;
 
+       /** true if an get() is required next time we are idle */
+       bool _idle_get;
+
        boost::signals2::scoped_connection _config_changed_connection;
 };