X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fserver_finder.cc;h=6371035910f6baba9e253790f356e164362f642a;hb=12efbd5938f08eb445b43f539fa4f27aa5caccfb;hp=de90e0d5c1380ee85d6429bf8c591f94c9f95dc6;hpb=2af7c2d9d839fb43d96e1373deff2c68721e425f;p=dcpomatic.git diff --git a/src/lib/server_finder.cc b/src/lib/server_finder.cc index de90e0d5c..637103591 100644 --- a/src/lib/server_finder.cc +++ b/src/lib/server_finder.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ */ #include +#include #include "server_finder.h" #include "exceptions.h" #include "util.h" @@ -26,13 +27,12 @@ #include "ui_signaller.h" using std::string; -using std::stringstream; using std::list; using std::vector; using std::cout; using boost::shared_ptr; using boost::scoped_array; -using boost::lexical_cast; +using dcp::raw_convert; ServerFinder* ServerFinder::_instance = 0; @@ -47,6 +47,7 @@ ServerFinder::ServerFinder () void ServerFinder::broadcast_thread () +try { boost::system::error_code error; boost::asio::io_service io_service; @@ -61,11 +62,15 @@ ServerFinder::broadcast_thread () string const data = DCPOMATIC_HELLO; - while (1) { + while (true) { if (Config::instance()->use_any_servers ()) { /* Broadcast to look for servers */ - boost::asio::ip::udp::endpoint end_point (boost::asio::ip::address_v4::broadcast(), Config::instance()->server_port_base() + 1); - socket.send_to (boost::asio::buffer (data.c_str(), data.size() + 1), end_point); + try { + boost::asio::ip::udp::endpoint end_point (boost::asio::ip::address_v4::broadcast(), Config::instance()->server_port_base() + 1); + socket.send_to (boost::asio::buffer (data.c_str(), data.size() + 1), end_point); + } catch (...) { + + } } /* Query our `definite' servers (if there are any) */ @@ -77,7 +82,7 @@ ServerFinder::broadcast_thread () } try { boost::asio::ip::udp::resolver resolver (io_service); - boost::asio::ip::udp::resolver::query query (*i, lexical_cast (Config::instance()->server_port_base() + 1)); + boost::asio::ip::udp::resolver::query query (*i, raw_convert (Config::instance()->server_port_base() + 1)); boost::asio::ip::udp::endpoint end_point (*resolver.resolve (query)); socket.send_to (boost::asio::buffer (data.c_str(), data.size() + 1), end_point); } catch (...) { @@ -88,28 +93,40 @@ ServerFinder::broadcast_thread () dcpomatic_sleep (10); } } +catch (...) +{ + store_current (); +} void ServerFinder::listen_thread () +try { - while (1) { - shared_ptr sock (new Socket (10)); + using namespace boost::asio::ip; - try { - sock->accept (Config::instance()->server_port_base() + 1); - } catch (std::exception& e) { - continue; - } + boost::asio::io_service io_service; + tcp::acceptor acceptor (io_service, tcp::endpoint (tcp::v4(), Config::instance()->server_port_base() + 1)); + + while (true) { + tcp::socket socket (io_service); + acceptor.accept (socket); + + /* XXX: these reads should have timeouts, otherwise we will stop finding servers + if one dies during this conversation + */ + + uint32_t length = 0; + boost::asio::read (socket, boost::asio::buffer (&length, sizeof (uint32_t))); + length = ntohl (length); - uint32_t length = sock->read_uint32 (); scoped_array buffer (new char[length]); - sock->read (reinterpret_cast (buffer.get()), length); + boost::asio::read (socket, boost::asio::buffer (reinterpret_cast (buffer.get ()), length)); - stringstream s (buffer.get()); + string s (buffer.get()); shared_ptr xml (new cxml::Document ("ServerAvailable")); - xml->read_stream (s); - - string const ip = sock->socket().remote_endpoint().address().to_string (); + xml->read_string (s); + + string const ip = socket.remote_endpoint().address().to_string (); if (!server_found (ip)) { ServerDescription sd (ip, xml->number_child ("Threads")); _servers.push_back (sd); @@ -117,6 +134,10 @@ ServerFinder::listen_thread () } } } +catch (...) +{ + store_current (); +} bool ServerFinder::server_found (string ip) const