Move stress testing code into a separate class and always build it.
[dcpomatic.git] / src / wx / player_stress_tester.h
1 /*
2     Copyright (C) 2017-2020 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 <wx/wx.h>
22 #include <boost/signals2.hpp>
23 #include <boost/filesystem.hpp>
24
25 class wxWindow;
26 class Controls;
27
28 class Command
29 {
30 public:
31         enum Type {
32                 NONE,
33                 OPEN,
34                 PLAY,
35                 WAIT,
36                 STOP,
37                 SEEK,
38         };
39
40         Command(std::string line);
41
42         Type type;
43         std::string string_param;
44         int int_param;
45 };
46
47 class PlayerStressTester
48 {
49 public:
50         PlayerStressTester ();
51
52         void setup (wxWindow* parent, Controls* controls);
53         void load_script (boost::filesystem::path file);
54         void set_suspended (bool s) {
55                 _suspended = s;
56         }
57
58         boost::signals2::signal<void (boost::filesystem::path)> LoadDCP;
59
60 private:
61         void check_commands ();
62
63         wxWindow* _parent;
64         Controls* _controls;
65         wxTimer _timer;
66         bool _suspended;
67         std::list<Command> _commands;
68         std::list<Command>::const_iterator _current_command;
69         /** Remaining time that the script must wait, in milliseconds */
70         boost::optional<int> _wait_remaining;
71 };
72