Note and indicate servers with bad link version (#982).
[dcpomatic.git] / src / wx / servers_list_dialog.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "servers_list_dialog.h"
22 #include "wx_util.h"
23 #include "lib/encode_server_finder.h"
24 #include "lib/encode_server_description.h"
25 #include <boost/lexical_cast.hpp>
26 #include <boost/foreach.hpp>
27
28 using std::list;
29 using std::string;
30 using boost::lexical_cast;
31
32 ServersListDialog::ServersListDialog (wxWindow* parent)
33         : wxDialog (parent, wxID_ANY, _("Encoding Servers"))
34 {
35         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
36         SetSizer (s);
37
38         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (500, 200), wxLC_REPORT | wxLC_SINGLE_SEL);
39
40         {
41                 wxListItem ip;
42                 ip.SetId (0);
43                 ip.SetText (_("Host"));
44                 ip.SetWidth (300);
45                 _list->InsertColumn (0, ip);
46         }
47
48         {
49                 wxListItem ip;
50                 ip.SetId (1);
51                 ip.SetText (_("Threads"));
52                 ip.SetWidth (150);
53                 _list->InsertColumn (1, ip);
54         }
55
56         s->Add (_list, 1, wxEXPAND | wxALL, 12);
57
58         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
59         if (buttons) {
60                 s->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
61         }
62
63         SetSizer (s);
64         s->Layout ();
65         s->SetSizeHints (this);
66
67         _server_finder_connection = EncodeServerFinder::instance()->ServersListChanged.connect (
68                 boost::bind (&ServersListDialog::servers_list_changed, this)
69                 );
70         servers_list_changed ();
71 }
72
73 void
74 ServersListDialog::servers_list_changed ()
75 {
76         _list->DeleteAllItems ();
77
78         int n = 0;
79
80         BOOST_FOREACH (EncodeServerDescription i, EncodeServerFinder::instance()->good_servers()) {
81                 wxListItem list_item;
82                 list_item.SetId (n);
83                 _list->InsertItem (list_item);
84
85                 _list->SetItem (n, 0, std_to_wx (i.host_name ()));
86                 _list->SetItem (n, 1, std_to_wx (lexical_cast<string> (i.threads ())));
87
88                 ++n;
89         }
90
91         BOOST_FOREACH (EncodeServerDescription i, EncodeServerFinder::instance()->bad_servers()) {
92                 wxListItem list_item;
93                 list_item.SetId (n);
94                 _list->InsertItem (list_item);
95
96                 _list->SetItem (n, 0, std_to_wx (i.host_name ()));
97                 _list->SetItem (n, 1, _("Incorrect version"));
98
99                 ++n;
100         }
101 }