Rename broadcast thread to search thread.
[dcpomatic.git] / src / lib / 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 #include "server.h"
21 #include "signaller.h"
22 #include "config.h"
23 #include <boost/signals2.hpp>
24
25 class ServerFinder : public Signaller, public ExceptionStore
26 {
27 public:
28         static ServerFinder* instance ();
29         static void drop ();
30
31         void disable () {
32                 _disabled = true;
33         }
34
35         bool disabled () const {
36                 return _disabled;
37         }
38
39         std::list<ServerDescription> servers () const;
40
41         /** Emitted whenever the list of servers changes */
42         boost::signals2::signal<void ()> ServersListChanged;
43
44 private:
45         ServerFinder ();
46         ~ServerFinder ();
47
48         void search_thread ();
49         void listen_thread ();
50
51         bool server_found (std::string) const;
52         void start_accept ();
53         void handle_accept (boost::system::error_code ec, boost::shared_ptr<Socket> socket);
54
55         void config_changed (Config::Property what);
56
57         bool _disabled;
58
59         /** Thread to periodically issue broadcasts and requests to find encoding servers */
60         boost::thread* _search_thread;
61         /** Thread to listen to the responses from servers */
62         boost::thread* _listen_thread;
63
64         std::list<ServerDescription> _servers;
65         mutable boost::mutex _mutex;
66
67         boost::asio::io_service _listen_io_service;
68         boost::shared_ptr<boost::asio::ip::tcp::acceptor> _listen_acceptor;
69         bool _stop;
70
71         static ServerFinder* _instance;
72 };