f433ff991607afa4e15b8052fbf0e185c12495ec
[dcpomatic.git] / src / lib / update.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.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_global_init (CURL_GLOBAL_ALL);
61         _curl = curl_easy_init ();
62
63         curl_easy_setopt (_curl, CURLOPT_URL, "http://dcpomatic.com/update");
64         curl_easy_setopt (_curl, CURLOPT_WRITEFUNCTION, write_callback_wrapper);
65         curl_easy_setopt (_curl, CURLOPT_WRITEDATA, this);
66         curl_easy_setopt (_curl, CURLOPT_TIMEOUT, 20);
67         
68         string const agent = "dcpomatic/" + string (dcpomatic_version);
69         curl_easy_setopt (_curl, CURLOPT_USERAGENT, agent.c_str ());
70
71         _thread = new boost::thread (boost::bind (&UpdateChecker::thread, this));
72 }
73
74 UpdateChecker::~UpdateChecker ()
75 {
76         /* We are not cleaning up our thread, but hey well */
77         
78         curl_easy_cleanup (_curl);
79         curl_global_cleanup ();
80         delete[] _buffer;
81 }
82
83 /** Start running the update check */
84 void
85 UpdateChecker::run ()
86 {
87         boost::mutex::scoped_lock lm (_process_mutex);
88         _to_do++;
89         _condition.notify_one ();
90 }
91
92 void
93 UpdateChecker::thread ()
94 {
95         while (true) {
96                 /* Block until there is something to do */
97                 boost::mutex::scoped_lock lock (_process_mutex);
98                 while (_to_do == 0) {
99                         _condition.wait (lock);
100                 }
101                 --_to_do;
102                 lock.unlock ();
103                 
104                 try {
105                         _offset = 0;
106
107                         /* Perform the request */
108                         
109                         int r = curl_easy_perform (_curl);
110                         if (r != CURLE_OK) {
111                                 set_state (FAILED);
112                                 return;
113                         }
114
115                         /* Parse the reply */
116                         
117                         _buffer[_offset] = '\0';
118                         string s (_buffer);
119                         cxml::Document doc ("Update");
120                         doc.read_string (s);
121
122                         /* Read the current stable and test version numbers */
123
124                         string stable;
125                         string test;
126
127                         {
128                                 boost::mutex::scoped_lock lm (_data_mutex);
129                                 stable = doc.string_child ("Stable");
130                                 test = doc.string_child ("Test");
131                         }
132
133                         if (version_less_than (dcpomatic_version, stable)) {
134                                 _stable = stable;
135                         }
136                         
137                         if (Config::instance()->check_for_test_updates() && version_less_than (dcpomatic_version, test)) {
138                                 _test = test;
139                         }
140
141                         if (_stable || _test) {
142                                 set_state (YES);
143                         } else {
144                                 set_state (NO);
145                         }
146                 } catch (...) {
147                         set_state (FAILED);
148                 }
149         }
150 }
151         
152 size_t
153 UpdateChecker::write_callback (void* data, size_t size, size_t nmemb)
154 {
155         size_t const t = min (size * nmemb, size_t (BUFFER_SIZE - _offset - 1));
156         memcpy (_buffer + _offset, data, t);
157         _offset += t;
158         return t;
159 }
160
161 void
162 UpdateChecker::set_state (State s)
163 {
164         {
165                 boost::mutex::scoped_lock lm (_data_mutex);
166                 _state = s;
167                 _emits++;
168         }
169
170         emit (boost::bind (boost::ref (StateChanged)));
171 }
172
173 UpdateChecker *
174 UpdateChecker::instance ()
175 {
176         if (!_instance) {
177                 _instance = new UpdateChecker ();
178         }
179
180         return _instance;
181 }
182
183 bool
184 UpdateChecker::version_less_than (string const & a, string const & b)
185 {
186         vector<string> ap;
187         split (ap, a, is_any_of ("."));
188         vector<string> bp;
189         split (bp, b, is_any_of ("."));
190
191         DCPOMATIC_ASSERT (ap.size() == 3 && bp.size() == 3);
192
193         if (ap[0] != bp[0]) {
194                 return raw_convert<int> (ap[0]) < raw_convert<int> (bp[0]);
195         }
196
197         if (ap[1] != bp[1]) {
198                 return raw_convert<int> (ap[1]) < raw_convert<int> (bp[1]);
199         }
200         float am;
201         if (ends_with (ap[2], "devel")) {
202                 am = raw_convert<int> (ap[2].substr (0, ap[2].length() - 5)) + 0.5;
203         } else {
204                 am = raw_convert<int> (ap[2]);
205         }
206         
207         float bm;
208         if (ends_with (bp[2], "devel")) {
209                 bm = raw_convert<int> (bp[2].substr (0, bp[2].length() - 5)) + 0.5;
210         } else {
211                 bm = raw_convert<int> (bp[2]);
212         }
213         
214         return am < bm;
215 }