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