Make specified-server discovery work.
authorCarl Hetherington <cth@carlh.net>
Sun, 17 Nov 2013 22:50:45 +0000 (22:50 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 17 Nov 2013 22:50:45 +0000 (22:50 +0000)
ChangeLog
src/lib/server_finder.cc
src/lib/server_finder.h

index 2ee49a1a0559c2fc95895dfcbf66cb1aeff2eb35..fbc23ffeecf946d0cc4e6047d6b43c9f0f0b02da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2013-11-17  Carl Hetherington  <cth@carlh.net>
 
+       * Fix specified-server discovery.
+
        * Version 1.30 released.
 
 2013-11-17  Carl Hetherington  <cth@carlh.net>
index a51aecd978dce72c47a1adf9eccdeaea17ac0f99..de90e0d5c1380ee85d6429bf8c591f94c9f95dc6 100644 (file)
@@ -29,8 +29,10 @@ 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;
 
 ServerFinder* ServerFinder::_instance = 0;
 
@@ -69,9 +71,13 @@ ServerFinder::broadcast_thread ()
                /* Query our `definite' servers (if there are any) */
                vector<string> servers = Config::instance()->servers ();
                for (vector<string>::const_iterator i = servers.begin(); i != servers.end(); ++i) {
+                       if (server_found (*i)) {
+                               /* Don't bother asking a server that we already know about */
+                               continue;
+                       }
                        try {
                                boost::asio::ip::udp::resolver resolver (io_service);
-                               boost::asio::ip::udp::resolver::query query (*i);
+                               boost::asio::ip::udp::resolver::query query (*i, lexical_cast<string> (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 (...) {
@@ -103,15 +109,8 @@ ServerFinder::listen_thread ()
                shared_ptr<cxml::Document> xml (new cxml::Document ("ServerAvailable"));
                xml->read_stream (s);
 
-               boost::mutex::scoped_lock lm (_mutex);
-
                string const ip = sock->socket().remote_endpoint().address().to_string ();
-               list<ServerDescription>::const_iterator i = _servers.begin();
-               while (i != _servers.end() && i->host_name() != ip) {
-                       ++i;
-               }
-
-               if (i == _servers.end ()) {
+               if (!server_found (ip)) {
                        ServerDescription sd (ip, xml->number_child<int> ("Threads"));
                        _servers.push_back (sd);
                        ui_signaller->emit (boost::bind (boost::ref (ServerFound), sd));
@@ -119,6 +118,18 @@ ServerFinder::listen_thread ()
        }
 }
 
+bool
+ServerFinder::server_found (string ip) const
+{
+       boost::mutex::scoped_lock lm (_mutex);
+       list<ServerDescription>::const_iterator i = _servers.begin();
+       while (i != _servers.end() && i->host_name() != ip) {
+               ++i;
+       }
+
+       return i != _servers.end ();
+}
+
 void
 ServerFinder::connect (boost::function<void (ServerDescription)> fn)
 {
index f964d4e1abf5df854c69bc908380929b05c1daed..01e26f7dfee1aa3a7c432d8ba9c68c9d4e777057 100644 (file)
@@ -37,6 +37,8 @@ private:
        void broadcast_thread ();
        void listen_thread ();
 
+       bool server_found (std::string) const;
+
        boost::signals2::signal<void (ServerDescription)> ServerFound;
 
        bool _disabled;
@@ -47,7 +49,7 @@ private:
        boost::thread* _listen_thread;
 
        std::list<ServerDescription> _servers;
-       boost::mutex _mutex;
+       mutable boost::mutex _mutex;
 
        static ServerFinder* _instance;
 };