Supporters update.
[dcpomatic.git] / src / lib / encode_server_finder.h
1 /*
2     Copyright (C) 2013-2021 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
22 /** @file  src/lib/encode_server_finder.h
23  *  @brief EncodeServerFinder class.
24  */
25
26
27 #include "config.h"
28 #include "encode_server_description.h"
29 #include "exception_store.h"
30 #include "signaller.h"
31 #include <boost/signals2.hpp>
32 #include <boost/thread/condition.hpp>
33
34
35 class Socket;
36
37
38 /** @class EncodeServerFinder
39  *  @brief Locater of encoding servers.
40  *
41  *  This class finds active (i.e. responding) encode servers.  Depending on
42  *  configuration it finds servers by:
43  *
44  *  1. broadcasting a request to the local subnet and
45  *  2. checking to see if any of the configured server hosts are up.
46  */
47 class EncodeServerFinder : public Signaller, public ExceptionStore
48 {
49 public:
50         static EncodeServerFinder* instance ();
51         static void drop ();
52
53         void stop ();
54
55         std::list<EncodeServerDescription> servers () const;
56
57         /** Emitted whenever the list of servers changes */
58         boost::signals2::signal<void ()> ServersListChanged;
59
60 private:
61         EncodeServerFinder ();
62         ~EncodeServerFinder ();
63
64         void start ();
65
66         void search_thread ();
67         void listen_thread ();
68
69         void start_accept ();
70         void handle_accept (boost::system::error_code ec);
71
72         void config_changed (Config::Property what);
73
74         /** Thread to periodically issue broadcasts and requests to find encoding servers */
75         boost::thread _search_thread;
76         /** Thread to listen to the responses from servers */
77         boost::thread _listen_thread;
78
79         /** Available servers */
80         std::list<EncodeServerDescription> _servers;
81         /** Mutex for _servers */
82         mutable boost::mutex _servers_mutex;
83
84         boost::asio::io_service _listen_io_service;
85         std::shared_ptr<boost::asio::ip::tcp::acceptor> _listen_acceptor;
86         bool _stop;
87
88         boost::condition _search_condition;
89         boost::mutex _search_condition_mutex;
90
91         std::shared_ptr<Socket> _accept_socket;
92
93         static EncodeServerFinder* _instance;
94 };