Seemingly basically working butler for video.
[dcpomatic.git] / src / lib / butler.h
1 /*
2     Copyright (C) 2016-2017 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "video_ring_buffers.h"
22 #include <boost/shared_ptr.hpp>
23 #include <boost/weak_ptr.hpp>
24 #include <boost/thread.hpp>
25 #include <boost/thread/condition.hpp>
26 #include <boost/signals2.hpp>
27
28 class Film;
29 class Player;
30 class PlayerVideo;
31
32 class Butler : public boost::noncopyable
33 {
34 public:
35         Butler (boost::weak_ptr<const Film> film, boost::shared_ptr<Player> player);
36         ~Butler ();
37
38         void seek (DCPTime position, bool accurate);
39         std::pair<boost::shared_ptr<PlayerVideo>, DCPTime> get_video ();
40
41 private:
42         void thread ();
43         void video (boost::shared_ptr<PlayerVideo> video, DCPTime time);
44         void player_changed ();
45
46         boost::weak_ptr<const Film> _film;
47         boost::shared_ptr<Player> _player;
48         boost::thread* _thread;
49
50         VideoRingBuffers _video;
51
52         boost::mutex _mutex;
53         boost::condition _summon;
54         boost::condition _arrived;
55         boost::optional<DCPTime> _pending_seek_position;
56         bool _pending_seek_accurate;
57
58         bool _finished;
59
60         boost::signals2::scoped_connection _player_video_connection;
61         boost::signals2::scoped_connection _player_changed_connection;
62 };