More player debugging for butler video-full states.
[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 "compose.hpp"
24 #include <boost/foreach.hpp>
25 #include <list>
26 #include <iostream>
27
28 using std::list;
29 using std::make_pair;
30 using std::cout;
31 using std::pair;
32 using std::string;
33 using boost::shared_ptr;
34 using boost::optional;
35
36 void
37 VideoRingBuffers::put (shared_ptr<PlayerVideo> frame, DCPTime time)
38 {
39         boost::mutex::scoped_lock lm (_mutex);
40         _data.push_back (make_pair (frame, time));
41 }
42
43 pair<shared_ptr<PlayerVideo>, DCPTime>
44 VideoRingBuffers::get ()
45 {
46         boost::mutex::scoped_lock lm (_mutex);
47         if (_data.empty ()) {
48                 return make_pair(shared_ptr<PlayerVideo>(), DCPTime());
49         }
50         pair<shared_ptr<PlayerVideo>, DCPTime> const r = _data.front ();
51         _data.pop_front ();
52         return r;
53 }
54
55 Frame
56 VideoRingBuffers::size () const
57 {
58         boost::mutex::scoped_lock lm (_mutex);
59         return _data.size ();
60 }
61
62 bool
63 VideoRingBuffers::empty () const
64 {
65         boost::mutex::scoped_lock lm (_mutex);
66         return _data.empty ();
67 }
68
69 void
70 VideoRingBuffers::clear ()
71 {
72         boost::mutex::scoped_lock lm (_mutex);
73         _data.clear ();
74 }
75
76 pair<size_t, string>
77 VideoRingBuffers::memory_used () const
78 {
79         size_t m = 0;
80         for (list<pair<shared_ptr<PlayerVideo>, DCPTime> >::const_iterator i = _data.begin(); i != _data.end(); ++i) {
81                 m += i->first->memory_used();
82         }
83         return make_pair(m, String::compose("%1 frames", _data.size()));
84 }