Initial butler work.
[dcpomatic.git] / src / lib / video_ring_buffers.cc
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 "player_video.h"
23 #include <boost/foreach.hpp>
24 #include <list>
25 #include <iostream>
26
27 using std::list;
28 using std::make_pair;
29 using std::cout;
30 using std::pair;
31 using boost::shared_ptr;
32 using boost::optional;
33
34 void
35 VideoRingBuffers::put (shared_ptr<PlayerVideo> frame, DCPTime time)
36 {
37         cout << "put " << to_string(time) << "\n";
38         boost::mutex::scoped_lock lm (_mutex);
39         _data.push_back (make_pair (frame, time));
40 }
41
42 pair<shared_ptr<PlayerVideo>, DCPTime>
43 VideoRingBuffers::get ()
44 {
45         boost::mutex::scoped_lock lm (_mutex);
46         if (_data.empty ()) {
47                 cout << "get: no data.\n";
48                 return make_pair(shared_ptr<PlayerVideo>(), DCPTime());
49         }
50         pair<shared_ptr<PlayerVideo>, DCPTime> const r = _data.front ();
51         cout << "get: here we go! " << to_string(r.second) << "\n";
52         _data.pop_front ();
53         return r;
54 }
55
56 Frame
57 VideoRingBuffers::size () const
58 {
59         boost::mutex::scoped_lock lm (_mutex);
60         return _data.size ();
61 }
62
63 void
64 VideoRingBuffers::clear ()
65 {
66         boost::mutex::scoped_lock lm (_mutex);
67         _data.clear ();
68 }
69
70 optional<DCPTime>
71 VideoRingBuffers::latest () const
72 {
73         boost::mutex::scoped_lock lm (_mutex);
74         if (_data.empty ()) {
75                 return optional<DCPTime> ();
76         }
77
78         return _data.back().second;
79 }