82337f92016905420316ad19daa1d1779804ffcf
[dcpomatic.git] / src / lib / update_checker.cc
1 /*
2     Copyright (C) 2014-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 "update_checker.h"
22 #include "version.h"
23 #include "util.h"
24 #include <dcp/raw_convert.h>
25 #include <libcxml/cxml.h>
26 #include <curl/curl.h>
27 #include <boost/algorithm/string.hpp>
28 #include <string>
29 #include <iostream>
30
31 #define BUFFER_SIZE 1024
32
33 using std::cout;
34 using std::min;
35 using std::string;
36 using std::vector;
37 using boost::is_any_of;
38 using boost::ends_with;
39 using dcp::raw_convert;
40
41 /** Singleton instance */
42 UpdateChecker* UpdateChecker::_instance = 0;
43
44 static size_t
45 write_callback_wrapper (void* data, size_t size, size_t nmemb, void* user)
46 {
47         return reinterpret_cast<UpdateChecker*>(user)->write_callback (data, size, nmemb);
48 }
49
50 /** Construct an UpdateChecker.  This sets things up and starts a thread to
51  *  do the work.
52  */
53 UpdateChecker::UpdateChecker ()
54         : _buffer (new char[BUFFER_SIZE])
55         , _offset (0)
56         , _curl (0)
57         , _state (NOT_RUN)
58         , _emits (0)
59         , _to_do (0)
60         , _terminate (false)
61 {
62         _curl = curl_easy_init ();
63
64         curl_easy_setopt (_curl, CURLOPT_URL, "https://dcpomatic.com/update");
65         curl_easy_setopt (_curl, CURLOPT_WRITEFUNCTION, write_callback_wrapper);
66         curl_easy_setopt (_curl, CURLOPT_WRITEDATA, this);
67         curl_easy_setopt (_curl, CURLOPT_TIMEOUT, 20);
68
69         string const agent = "dcpomatic/" + string (dcpomatic_version);
70         curl_easy_setopt (_curl, CURLOPT_USERAGENT, agent.c_str ());
71 }
72
73 void
74 UpdateChecker::start ()
75 {
76         _thread = boost::thread (boost::bind (&UpdateChecker::thread, this));
77 #ifdef DCPOMATIC_LINUX
78         pthread_setname_np (_thread.native_handle(), "update-checker");
79 #endif
80 }
81
82 UpdateChecker::~UpdateChecker ()
83 {
84         {
85                 boost::mutex::scoped_lock lm (_process_mutex);
86                 _terminate = true;
87         }
88
89         _condition.notify_all ();
90         if (_thread.joinable()) {
91                 try {
92                         _thread.join ();
93                 } catch (...) {
94
95                 }
96         }
97
98         curl_easy_cleanup (_curl);
99         delete[] _buffer;
100 }
101
102 /** Start running the update check */
103 void
104 UpdateChecker::run ()
105 {
106         boost::mutex::scoped_lock lm (_process_mutex);
107         _to_do++;
108         _condition.notify_one ();
109 }
110
111 void
112 UpdateChecker::thread ()
113 {
114         while (true) {
115                 /* Block until there is something to do */
116                 boost::mutex::scoped_lock lock (_process_mutex);
117                 while (_to_do == 0 && !_terminate) {
118                         _condition.wait (lock);
119                 }
120
121                 if (_terminate) {
122                         return;
123                 }
124
125                 --_to_do;
126                 lock.unlock ();
127
128                 try {
129                         _offset = 0;
130
131                         /* Perform the request */
132
133                         int r = curl_easy_perform (_curl);
134                         if (r != CURLE_OK) {
135                                 set_state (FAILED);
136                                 return;
137                         }
138
139                         /* Parse the reply */
140
141                         _buffer[_offset] = '\0';
142                         string s (_buffer);
143                         cxml::Document doc ("Update");
144                         doc.read_string (s);
145
146                         /* Read the current stable and test version numbers */
147
148                         string stable;
149                         string test;
150
151                         {
152                                 boost::mutex::scoped_lock lm (_data_mutex);
153                                 stable = doc.string_child ("Stable");
154                                 test = doc.string_child ("Test");
155                         }
156
157                         if (version_less_than (dcpomatic_version, stable)) {
158                                 _stable = stable;
159                         }
160
161                         if (!test.empty() && version_less_than (dcpomatic_version, test)) {
162                                 _test = test;
163                         }
164
165                         if (_stable || _test) {
166                                 set_state (YES);
167                         } else {
168                                 set_state (NO);
169                         }
170                 } catch (...) {
171                         set_state (FAILED);
172                 }
173         }
174 }
175
176 size_t
177 UpdateChecker::write_callback (void* data, size_t size, size_t nmemb)
178 {
179         size_t const t = min (size * nmemb, size_t (BUFFER_SIZE - _offset - 1));
180         memcpy (_buffer + _offset, data, t);
181         _offset += t;
182         return t;
183 }
184
185 void
186 UpdateChecker::set_state (State s)
187 {
188         {
189                 boost::mutex::scoped_lock lm (_data_mutex);
190                 _state = s;
191                 _emits++;
192         }
193
194         emit (boost::bind (boost::ref (StateChanged)));
195 }
196
197 UpdateChecker *
198 UpdateChecker::instance ()
199 {
200         if (!_instance) {
201                 _instance = new UpdateChecker ();
202                 _instance->start ();
203         }
204
205         return _instance;
206 }
207
208 bool
209 UpdateChecker::version_less_than (string const & a, string const & b)
210 {
211         vector<string> ap;
212         split (ap, a, is_any_of ("."));
213         vector<string> bp;
214         split (bp, b, is_any_of ("."));
215
216         DCPOMATIC_ASSERT (ap.size() == 3 && bp.size() == 3);
217
218         if (ap[0] != bp[0]) {
219                 return raw_convert<int> (ap[0]) < raw_convert<int> (bp[0]);
220         }
221
222         if (ap[1] != bp[1]) {
223                 return raw_convert<int> (ap[1]) < raw_convert<int> (bp[1]);
224         }
225         float am;
226         if (ends_with (ap[2], "devel")) {
227                 am = raw_convert<int> (ap[2].substr (0, ap[2].length() - 5)) + 0.5;
228         } else {
229                 am = raw_convert<int> (ap[2]);
230         }
231
232         float bm;
233         if (ends_with (bp[2], "devel")) {
234                 bm = raw_convert<int> (bp[2].substr (0, bp[2].length() - 5)) + 0.5;
235         } else {
236                 bm = raw_convert<int> (bp[2]);
237         }
238
239         return am < bm;
240 }