summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-13 00:12:50 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-13 00:12:50 +0100
commited0b3ee0c5a0ba11d3a1a1dfee8e71238bcab4bd (patch)
tree6c27b0adc932533794a4378ea53c1fca3154f97d /src/lib
parent1d5ea1b139942bad5500ae40f0646da3fd29dc7f (diff)
Note and indicate servers with bad link version (#982).
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/encode_server_description.h11
-rw-r--r--src/lib/encode_server_finder.cc43
-rw-r--r--src/lib/encode_server_finder.h9
-rw-r--r--src/lib/j2k_encoder.cc2
4 files changed, 50 insertions, 15 deletions
diff --git a/src/lib/encode_server_description.h b/src/lib/encode_server_description.h
index 60fb0a29d..864b0fdc1 100644
--- a/src/lib/encode_server_description.h
+++ b/src/lib/encode_server_description.h
@@ -30,14 +30,17 @@ public:
EncodeServerDescription ()
: _host_name ("")
, _threads (1)
+ , _link_version (0)
{}
/** @param h Server host name or IP address in string form.
* @param t Number of threads to use on the server.
+ * @param l Server link version number of the server.
*/
- EncodeServerDescription (std::string h, int t)
+ EncodeServerDescription (std::string h, int t, int l)
: _host_name (h)
, _threads (t)
+ , _link_version (l)
{}
/* Default copy constructor is fine */
@@ -52,6 +55,10 @@ public:
return _threads;
}
+ int link_version () const {
+ return _link_version;
+ }
+
void set_host_name (std::string n) {
_host_name = n;
}
@@ -65,6 +72,8 @@ private:
std::string _host_name;
/** number of threads to use on the server */
int _threads;
+ /** server link (i.e. protocol) version number */
+ int _link_version;
};
#endif
diff --git a/src/lib/encode_server_finder.cc b/src/lib/encode_server_finder.cc
index e87c55b71..1234dcd52 100644
--- a/src/lib/encode_server_finder.cc
+++ b/src/lib/encode_server_finder.cc
@@ -98,7 +98,8 @@ EncodeServerFinder::stop ()
_listen_thread = 0;
boost::mutex::scoped_lock lm (_servers_mutex);
- _servers.clear ();
+ _good_servers.clear ();
+ _bad_servers.clear ();
}
void
@@ -206,11 +207,14 @@ EncodeServerFinder::handle_accept (boost::system::error_code ec, shared_ptr<Sock
xml->read_string (s);
string const ip = socket->socket().remote_endpoint().address().to_string ();
- if (!server_found (ip) && xml->optional_number_child<int>("Version").get_value_or (0) == SERVER_LINK_VERSION) {
- EncodeServerDescription sd (ip, xml->number_child<int> ("Threads"));
- {
+ if (!server_found (ip)) {
+ EncodeServerDescription sd (ip, xml->number_child<int>("Threads"), xml->optional_number_child<int>("Version").get_value_or(0));
+ if (sd.link_version() == SERVER_LINK_VERSION) {
+ boost::mutex::scoped_lock lm (_servers_mutex);
+ _good_servers.push_back (sd);
+ } else {
boost::mutex::scoped_lock lm (_servers_mutex);
- _servers.push_back (sd);
+ _bad_servers.push_back (sd);
}
emit (boost::bind (boost::ref (ServersListChanged)));
}
@@ -222,12 +226,21 @@ bool
EncodeServerFinder::server_found (string ip) const
{
boost::mutex::scoped_lock lm (_servers_mutex);
- list<EncodeServerDescription>::const_iterator i = _servers.begin();
- while (i != _servers.end() && i->host_name() != ip) {
+ list<EncodeServerDescription>::const_iterator i = _good_servers.begin();
+ while (i != _good_servers.end() && i->host_name() != ip) {
+ ++i;
+ }
+
+ if (i != _good_servers.end()) {
+ return true;
+ }
+
+ i = _bad_servers.begin();
+ while (i != _bad_servers.end() && i->host_name() != ip) {
++i;
}
- return i != _servers.end ();
+ return i != _bad_servers.end ();
}
EncodeServerFinder*
@@ -249,10 +262,17 @@ EncodeServerFinder::drop ()
}
list<EncodeServerDescription>
-EncodeServerFinder::servers () const
+EncodeServerFinder::good_servers () const
+{
+ boost::mutex::scoped_lock lm (_servers_mutex);
+ return _good_servers;
+}
+
+list<EncodeServerDescription>
+EncodeServerFinder::bad_servers () const
{
boost::mutex::scoped_lock lm (_servers_mutex);
- return _servers;
+ return _bad_servers;
}
void
@@ -261,7 +281,8 @@ EncodeServerFinder::config_changed (Config::Property what)
if (what == Config::USE_ANY_SERVERS || what == Config::SERVERS) {
{
boost::mutex::scoped_lock lm (_servers_mutex);
- _servers.clear ();
+ _good_servers.clear ();
+ _bad_servers.clear ();
}
ServersListChanged ();
_search_condition.notify_all ();
diff --git a/src/lib/encode_server_finder.h b/src/lib/encode_server_finder.h
index 46d66b191..90031d27b 100644
--- a/src/lib/encode_server_finder.h
+++ b/src/lib/encode_server_finder.h
@@ -48,7 +48,8 @@ public:
void stop ();
- std::list<EncodeServerDescription> servers () const;
+ std::list<EncodeServerDescription> good_servers () const;
+ std::list<EncodeServerDescription> bad_servers () const;
/** Emitted whenever the list of servers changes */
boost::signals2::signal<void ()> ServersListChanged;
@@ -73,7 +74,11 @@ private:
/** Thread to listen to the responses from servers */
boost::thread* _listen_thread;
- std::list<EncodeServerDescription> _servers;
+ /** Available servers with the correct link version */
+ std::list<EncodeServerDescription> _good_servers;
+ /** Available servers with an incorrect link version */
+ std::list<EncodeServerDescription> _bad_servers;
+ /** Mutex for _good_servers and _bad_servers */
mutable boost::mutex _servers_mutex;
boost::asio::io_service _listen_io_service;
diff --git a/src/lib/j2k_encoder.cc b/src/lib/j2k_encoder.cc
index 3d1df688c..bbd602dd0 100644
--- a/src/lib/j2k_encoder.cc
+++ b/src/lib/j2k_encoder.cc
@@ -412,7 +412,7 @@ J2KEncoder::servers_list_changed ()
}
}
- BOOST_FOREACH (EncodeServerDescription i, EncodeServerFinder::instance()->servers ()) {
+ BOOST_FOREACH (EncodeServerDescription i, EncodeServerFinder::instance()->good_servers ()) {
LOG_GENERAL (N_("Adding %1 worker threads for remote %2"), i.threads(), i.host_name ());
for (int j = 0; j < i.threads(); ++j) {
_threads.push_back (new boost::thread (boost::bind (&J2KEncoder::encoder_thread, this, i)));