Try to stop Butler deadlocking on quit.
[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 "audio_ring_buffers.h"
23 #include "audio_mapping.h"
24 #include <boost/shared_ptr.hpp>
25 #include <boost/weak_ptr.hpp>
26 #include <boost/thread.hpp>
27 #include <boost/thread/condition.hpp>
28 #include <boost/signals2.hpp>
29
30 class Film;
31 class Player;
32 class PlayerVideo;
33
34 class Butler : public boost::noncopyable
35 {
36 public:
37         Butler (boost::weak_ptr<const Film> film, boost::shared_ptr<Player> player, AudioMapping map, int audio_channels);
38         ~Butler ();
39
40         void seek (DCPTime position, bool accurate);
41         std::pair<boost::shared_ptr<PlayerVideo>, DCPTime> get_video ();
42         void get_audio (float* out, Frame frames);
43
44 private:
45         void thread ();
46         void video (boost::shared_ptr<PlayerVideo> video, DCPTime time);
47         void audio (boost::shared_ptr<AudioBuffers> audio, DCPTime time);
48         void player_changed ();
49
50         boost::weak_ptr<const Film> _film;
51         boost::shared_ptr<Player> _player;
52         boost::thread* _thread;
53
54         VideoRingBuffers _video;
55         AudioRingBuffers _audio;
56
57         boost::mutex _mutex;
58         boost::condition _summon;
59         boost::condition _arrived;
60         boost::optional<DCPTime> _pending_seek_position;
61         bool _pending_seek_accurate;
62
63         bool _finished;
64
65         AudioMapping _audio_mapping;
66         int _audio_channels;
67
68         bool _stop_thread;
69
70         boost::signals2::scoped_connection _player_video_connection;
71         boost::signals2::scoped_connection _player_audio_connection;
72         boost::signals2::scoped_connection _player_changed_connection;
73 };