b879e902696d1c83e7e01c448545448d15b428e9
[dcpomatic.git] / src / lib / update.h
1 /*
2     Copyright (C) 2014 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 <boost/signals2.hpp>
21 #include <boost/thread/mutex.hpp>
22 #include <curl/curl.h>
23
24 class UpdateChecker
25 {
26 public:
27         UpdateChecker ();
28         ~UpdateChecker ();
29
30         void run (bool);
31
32         enum State {
33                 YES,
34                 FAILED,
35                 NO,
36                 NOT_RUN
37         };
38
39         State state () {
40                 boost::mutex::scoped_lock lm (_data_mutex);
41                 return _state;
42         }
43         
44         std::string stable () {
45                 boost::mutex::scoped_lock lm (_data_mutex);
46                 return _stable;
47         }
48
49         /** @return true if this check was run at startup, otherwise false */
50         bool startup () const {
51                 boost::mutex::scoped_lock lm (_data_mutex);
52                 return _startup;
53         }
54
55         size_t write_callback (void *, size_t, size_t);
56
57         boost::signals2::signal<void (void)> StateChanged;
58
59         static UpdateChecker* instance ();
60
61 private:        
62         static UpdateChecker* _instance;
63
64         void set_state (State);
65
66         char* _buffer;
67         int _offset;
68         CURL* _curl;
69
70         /** mutex to protect _state, _stable and _startup */
71         mutable boost::mutex _data_mutex;
72         State _state;
73         std::string _stable;
74         /** true if this check was run at startup, otherwise false */
75         bool _startup;
76
77         /** mutex to ensure that only one query runs at once */
78         boost::mutex _single_thread_mutex;
79 };