Changes to libdcp API.
[dcpomatic.git] / src / lib / server_finder.h
index f964d4e1abf5df854c69bc908380929b05c1daed..c0f1feb66e1d329167e55007ec8bdf4f6ac09521 100644 (file)
 
 */
 
-#include <boost/signals2.hpp>
 #include "server.h"
+#include <boost/signals2.hpp>
 
-class ServerFinder
+class ServerFinder : public ExceptionStore
 {
 public:
        void connect (boost::function<void (ServerDescription)>);
 
        static ServerFinder* instance ();
+       static void drop ();
 
        void disable () {
                _disabled = true;
@@ -33,10 +34,15 @@ public:
 
 private:
        ServerFinder ();
+       ~ServerFinder ();
 
        void broadcast_thread ();
        void listen_thread ();
 
+       bool server_found (std::string) const;
+       void start_accept ();
+       void handle_accept (boost::system::error_code ec, boost::shared_ptr<Socket> socket);
+
        boost::signals2::signal<void (ServerDescription)> ServerFound;
 
        bool _disabled;
@@ -47,7 +53,11 @@ private:
        boost::thread* _listen_thread;
 
        std::list<ServerDescription> _servers;
-       boost::mutex _mutex;
+       mutable boost::mutex _mutex;
+
+       boost::asio::io_service _listen_io_service;
+       boost::shared_ptr<boost::asio::ip::tcp::acceptor> _listen_acceptor;
+       bool _stop;
 
        static ServerFinder* _instance;
 };