49433ad42fe2a9cd24aa7e6d872ec326cf9f9c07
[dcpomatic.git] / src / lib / encode_server_finder.h
1 /*
2     Copyright (C) 2013-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 /** @file  src/lib/encode_server_finder.h
21  *  @brief EncodeServerFinder class.
22  */
23
24 #include "signaller.h"
25 #include "encode_server_description.h"
26 #include "config.h"
27 #include "exception_store.h"
28 #include <boost/signals2.hpp>
29 #include <boost/thread/condition.hpp>
30
31 class Socket;
32
33 class EncodeServerFinder : public Signaller, public ExceptionStore
34 {
35 public:
36         static EncodeServerFinder* instance ();
37         static void drop ();
38
39         void disable () {
40                 _disabled = true;
41         }
42
43         bool disabled () const {
44                 return _disabled;
45         }
46
47         std::list<EncodeServerDescription> servers () const;
48
49         /** Emitted whenever the list of servers changes */
50         boost::signals2::signal<void ()> ServersListChanged;
51
52 private:
53         EncodeServerFinder ();
54         ~EncodeServerFinder ();
55
56         void start ();
57
58         void search_thread ();
59         void listen_thread ();
60
61         bool server_found (std::string) const;
62         void start_accept ();
63         void handle_accept (boost::system::error_code ec, boost::shared_ptr<Socket> socket);
64
65         void config_changed (Config::Property what);
66
67         bool _disabled;
68
69         /** Thread to periodically issue broadcasts and requests to find encoding servers */
70         boost::thread* _search_thread;
71         /** Thread to listen to the responses from servers */
72         boost::thread* _listen_thread;
73
74         std::list<EncodeServerDescription> _servers;
75         mutable boost::mutex _servers_mutex;
76
77         boost::asio::io_service _listen_io_service;
78         boost::shared_ptr<boost::asio::ip::tcp::acceptor> _listen_acceptor;
79         bool _stop;
80
81         boost::condition _search_condition;
82         boost::mutex _search_condition_mutex;
83
84         static EncodeServerFinder* _instance;
85 };