Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
[dcpomatic.git] / src / lib / signal_manager.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_SIGNAL_MANAGER_H
21 #define DCPOMATIC_SIGNAL_MANAGER_H
22
23 #include <boost/asio.hpp>
24 #include <boost/thread.hpp>
25
26 class Signaller;
27
28 /** A class to allow signals to be emitted from non-UI threads and handled
29  *  by a UI thread.
30  */
31 class SignalManager : public boost::noncopyable
32 {
33 public:
34         /** Create a SignalManager.  Must be called from the UI thread */
35         SignalManager ()
36                 : _work (_service)
37         {
38                 _ui_thread = boost::this_thread::get_id ();
39         }
40
41         virtual ~SignalManager () {}
42
43         /* Do something next time the UI is idle */
44         template <typename T>
45         void when_idle (T f) {
46                 _service.post (f);
47         }
48
49         /** Call this in the UI when it is idle */
50         size_t ui_idle () {
51                 /* This executes one of the functors that has been post()ed to _service */
52                 return _service.poll_one ();
53         }
54
55         /** This should wake the UI and make it call ui_idle() */
56         virtual void wake_ui () {
57                 /* This is only a sensible implementation when there is no GUI */
58                 ui_idle ();
59         }
60
61 private:
62         /** Emit a signal from any thread whose handlers will be called in the UI
63          *  thread.  Use something like:
64          *
65          *  ui_signaller->emit (boost::bind (boost::ref (SomeSignal), parameter));
66          */
67         template <typename T>
68         void emit (T f) {
69                 if (boost::this_thread::get_id() == _ui_thread) {
70                         /* already in the UI thread */
71                         f ();
72                 } else {
73                         /* non-UI thread; post to the service and wake up the UI */
74                         _service.post (f);
75                         wake_ui ();
76                 }
77         }
78
79         friend class Signaller;
80
81         /** A io_service which is used as the conduit for messages */
82         boost::asio::io_service _service;
83         /** Object required to keep io_service from stopping when it has nothing to do */
84         boost::asio::io_service::work _work;
85         /** The UI thread's ID */
86         boost::thread::id _ui_thread;
87 };
88
89 extern SignalManager* signal_manager;
90
91 #endif