Use dcp::file_to_string().
[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         boost::optional<std::list<EncodeServerDescription>::iterator> server_found (std::string);
70         void start_accept ();
71         void handle_accept (boost::system::error_code ec, std::shared_ptr<Socket> socket);
72
73         void config_changed (Config::Property what);
74
75         /** Thread to periodically issue broadcasts and requests to find encoding servers */
76         boost::thread _search_thread;
77         /** Thread to listen to the responses from servers */
78         boost::thread _listen_thread;
79
80         /** Available servers */
81         std::list<EncodeServerDescription> _servers;
82         /** Mutex for _servers */
83         mutable boost::mutex _servers_mutex;
84
85         boost::asio::io_service _listen_io_service;
86         std::shared_ptr<boost::asio::ip::tcp::acceptor> _listen_acceptor;
87         bool _stop;
88
89         boost::condition _search_condition;
90         boost::mutex _search_condition_mutex;
91
92         static EncodeServerFinder* _instance;
93 };