Add FilmViewer::time_until_next_frame.
[dcpomatic.git] / src / wx / timer_display.cc
1 /*
2     Copyright (C) 2019 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 "timer_display.h"
22 #include "wx_util.h"
23 #include "lib/timer.h"
24 #include <dcp/locale_convert.h>
25 #include <list>
26
27 using std::map;
28 using std::list;
29 using std::pair;
30 using std::make_pair;
31 using std::string;
32
33 static
34 bool
35 comparator (pair<string, StateTimer::Counts> const & a, pair<string, StateTimer::Counts> const & b)
36 {
37         return a.second.total_time > b.second.total_time;
38 }
39
40 TimerDisplay::TimerDisplay (wxWindow* parent, StateTimer const & timer, int gets)
41         : TableDialog (parent, std_to_wx(timer.name()), 4, 0, false)
42 {
43         map<string, StateTimer::Counts> counts = timer.counts ();
44         list<pair<string, StateTimer::Counts> > sorted;
45         for (map<string, StateTimer::Counts>::const_iterator i = counts.begin(); i != counts.end(); ++i) {
46                 sorted.push_back (make_pair(i->first, i->second));
47         }
48
49         sorted.sort (comparator);
50
51         add (wxString("get() calls"), true);
52         add (std_to_wx(dcp::locale_convert<string>(gets)), false);
53         add_spacer ();
54         add_spacer ();
55
56         for (list<pair<string, StateTimer::Counts> >::const_iterator i = sorted.begin(); i != sorted.end(); ++i) {
57                 add (std_to_wx(i->first), true);
58                 add (std_to_wx(dcp::locale_convert<string>(i->second.total_time)), false);
59                 add (std_to_wx(dcp::locale_convert<string>(i->second.number)), false);
60                 add (std_to_wx(dcp::locale_convert<string>(i->second.total_time / i->second.number)), false);
61         }
62
63         layout ();
64 }