swaroop: required monitors checks.
[dcpomatic.git] / src / lib / monitor_checker.cc
1 /*
2     Copyright (C) 2018 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 "monitor_checker.h"
22 #include "config.h"
23 #include "cross.h"
24
25 using boost::bind;
26 using boost::ref;
27
28 MonitorChecker* MonitorChecker::_instance = 0;
29
30 MonitorChecker::MonitorChecker ()
31         : _thread (0)
32         , _terminate (false)
33         , _ok (true)
34 {
35
36 }
37
38 void
39 MonitorChecker::run ()
40 {
41         _thread = new boost::thread (boost::bind (&MonitorChecker::thread, this));
42 }
43
44 MonitorChecker::~MonitorChecker ()
45 {
46         {
47                 boost::mutex::scoped_lock lm (_mutex);
48                 _terminate = true;
49         }
50
51         if (_thread) {
52                 /* Ideally this would be a DCPOMATIC_ASSERT(_thread->joinable()) but we
53                    can't throw exceptions from a destructor.
54                 */
55                 _thread->interrupt ();
56                 try {
57                         if (_thread->joinable ()) {
58                                 _thread->join ();
59                         }
60                 } catch (boost::thread_interrupted& e) {
61                         /* No problem */
62                 }
63         }
64         delete _thread;
65 }
66
67 void
68 MonitorChecker::thread ()
69 {
70         while (true) {
71                 boost::mutex::scoped_lock lm (_mutex);
72                 if (_terminate) {
73                         break;
74                 }
75
76                 bool const was_ok = _ok;
77                 _ok = Config::instance()->required_monitors().empty() || get_monitors() == Config::instance()->required_monitors();
78                 if (was_ok != _ok) {
79                         emit (bind(boost::ref(StateChanged)));
80                 }
81
82                 lm.unlock ();
83                 dcpomatic_sleep (60);
84         }
85 }
86
87 bool
88 MonitorChecker::ok () const
89 {
90         boost::mutex::scoped_lock lm (_mutex);
91         return _ok;
92 }
93
94 MonitorChecker *
95 MonitorChecker::instance ()
96 {
97         if (!_instance) {
98                 _instance = new MonitorChecker ();
99         }
100
101         return _instance;
102 }