update.{cc,h} -> update_checker.{cc,h}.
[dcpomatic.git] / src / lib / update_checker.cc
1 /*
2     Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "update_checker.h"
21 #include "version.h"
22 #include "safe_stringstream.h"
23 #include "config.h"
24 #include "util.h"
25 #include "raw_convert.h"
26 #include <libcxml/cxml.h>
27 #include <curl/curl.h>
28 #include <boost/algorithm/string.hpp>
29 #include <string>
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
40 /** Singleton instance */
41 UpdateChecker* UpdateChecker::_instance = 0;
42
43 static size_t
44 write_callback_wrapper (void* data, size_t size, size_t nmemb, void* user)
45 {
46         return reinterpret_cast<UpdateChecker*>(user)->write_callback (data, size, nmemb);
47 }
48
49 /** Construct an UpdateChecker.  This sets things up and starts a thread to
50  *  do the work.
51  */
52 UpdateChecker::UpdateChecker ()
53         : _buffer (new char[BUFFER_SIZE])
54         , _offset (0)
55         , _curl (0)
56         , _state (NOT_RUN)
57         , _emits (0)
58         , _to_do (0)
59 {
60         _curl = curl_easy_init ();
61
62         curl_easy_setopt (_curl, CURLOPT_URL, "http://dcpomatic.com/update");
63         curl_easy_setopt (_curl, CURLOPT_WRITEFUNCTION, write_callback_wrapper);
64         curl_easy_setopt (_curl, CURLOPT_WRITEDATA, this);
65         curl_easy_setopt (_curl, CURLOPT_TIMEOUT, 20);
66
67         string const agent = "dcpomatic/" + string (dcpomatic_version);
68         curl_easy_setopt (_curl, CURLOPT_USERAGENT, agent.c_str ());
69
70         _thread = new boost::thread (boost::bind (&UpdateChecker::thread, this));
71 }
72
73 UpdateChecker::~UpdateChecker ()
74 {
75         /* We are not cleaning up our thread, but hey well */
76
77         curl_easy_cleanup (_curl);
78         delete[] _buffer;
79 }
80
81 /** Start running the update check */
82 void
83 UpdateChecker::run ()
84 {
85         boost::mutex::scoped_lock lm (_process_mutex);
86         _to_do++;
87         _condition.notify_one ();
88 }
89
90 void
91 UpdateChecker::thread ()
92 {
93         while (true) {
94                 /* Block until there is something to do */
95                 boost::mutex::scoped_lock lock (_process_mutex);
96                 while (_to_do == 0) {
97                         _condition.wait (lock);
98                 }
99                 --_to_do;
100                 lock.unlock ();
101
102                 try {
103                         _offset = 0;
104
105                         /* Perform the request */
106
107                         int r = curl_easy_perform (_curl);
108                         if (r != CURLE_OK) {
109                                 set_state (FAILED);
110                                 return;
111                         }
112
113                         /* Parse the reply */
114
115                         _buffer[_offset] = '\0';
116                         string s (_buffer);
117                         cxml::Document doc ("Update");
118                         doc.read_string (s);
119
120                         /* Read the current stable and test version numbers */
121
122                         string stable;
123                         string test;
124
125                         {
126                                 boost::mutex::scoped_lock lm (_data_mutex);
127                                 stable = doc.string_child ("Stable");
128                                 test = doc.string_child ("Test");
129                         }
130
131                         if (version_less_than (dcpomatic_version, stable)) {
132                                 _stable = stable;
133                         }
134
135                         if (Config::instance()->check_for_test_updates() && version_less_than (dcpomatic_version, test)) {
136                                 _test = test;
137                         }
138
139                         if (_stable || _test) {
140                                 set_state (YES);
141                         } else {
142                                 set_state (NO);
143                         }
144                 } catch (...) {
145                         set_state (FAILED);
146                 }
147         }
148 }
149
150 size_t
151 UpdateChecker::write_callback (void* data, size_t size, size_t nmemb)
152 {
153         size_t const t = min (size * nmemb, size_t (BUFFER_SIZE - _offset - 1));
154         memcpy (_buffer + _offset, data, t);
155         _offset += t;
156         return t;
157 }
158
159 void
160 UpdateChecker::set_state (State s)
161 {
162         {
163                 boost::mutex::scoped_lock lm (_data_mutex);
164                 _state = s;
165                 _emits++;
166         }
167
168         emit (boost::bind (boost::ref (StateChanged)));
169 }
170
171 UpdateChecker *
172 UpdateChecker::instance ()
173 {
174         if (!_instance) {
175                 _instance = new UpdateChecker ();
176         }
177
178         return _instance;
179 }
180
181 bool
182 UpdateChecker::version_less_than (string const & a, string const & b)
183 {
184         vector<string> ap;
185         split (ap, a, is_any_of ("."));
186         vector<string> bp;
187         split (bp, b, is_any_of ("."));
188
189         DCPOMATIC_ASSERT (ap.size() == 3 && bp.size() == 3);
190
191         if (ap[0] != bp[0]) {
192                 return raw_convert<int> (ap[0]) < raw_convert<int> (bp[0]);
193         }
194
195         if (ap[1] != bp[1]) {
196                 return raw_convert<int> (ap[1]) < raw_convert<int> (bp[1]);
197         }
198         float am;
199         if (ends_with (ap[2], "devel")) {
200                 am = raw_convert<int> (ap[2].substr (0, ap[2].length() - 5)) + 0.5;
201         } else {
202                 am = raw_convert<int> (ap[2]);
203         }
204
205         float bm;
206         if (ends_with (bp[2], "devel")) {
207                 bm = raw_convert<int> (bp[2].substr (0, bp[2].length() - 5)) + 0.5;
208         } else {
209                 bm = raw_convert<int> (bp[2]);
210         }
211
212         return am < bm;
213 }