3fab6864a332ef43b3b62a59bf2ccab75d49aae6
[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 <boost/signals2.hpp>
22
23 class ServerFinder : public ExceptionStore
24 {
25 public:
26         boost::signals2::connection connect (boost::function<void (ServerDescription)>);
27
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 private:
40         ServerFinder ();
41         ~ServerFinder ();
42
43         void broadcast_thread ();
44         void listen_thread ();
45
46         bool server_found (std::string) const;
47         void start_accept ();
48         void handle_accept (boost::system::error_code ec, boost::shared_ptr<Socket> socket);
49
50         boost::signals2::signal<void (ServerDescription)> ServerFound;
51
52         bool _disabled;
53         
54         /** Thread to periodically issue broadcasts to find encoding servers */
55         boost::thread* _broadcast_thread;
56         /** Thread to listen to the responses from servers */
57         boost::thread* _listen_thread;
58
59         std::list<ServerDescription> _servers;
60         mutable boost::mutex _mutex;
61
62         boost::asio::io_service _listen_io_service;
63         boost::shared_ptr<boost::asio::ip::tcp::acceptor> _listen_acceptor;
64         bool _stop;
65
66         static ServerFinder* _instance;
67 };