std::shared_ptr
[dcpomatic.git] / src / tools / dcpomatic_server.cc
1 /*
2     Copyright (C) 2012-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 "wx/wx_util.h"
22 #include "wx/wx_signal_manager.h"
23 #include "wx/static_text.h"
24 #include "lib/util.h"
25 #include "lib/encoded_log_entry.h"
26 #include "lib/encode_server.h"
27 #include "lib/config.h"
28 #include "lib/log.h"
29 #include "lib/signaller.h"
30 #include "lib/cross.h"
31 #include "lib/dcpomatic_log.h"
32 #include "lib/warnings.h"
33 DCPOMATIC_DISABLE_WARNINGS
34 #include <wx/taskbar.h>
35 #include <wx/splash.h>
36 #include <wx/icon.h>
37 DCPOMATIC_ENABLE_WARNINGS
38 #include <boost/thread.hpp>
39 #include <boost/foreach.hpp>
40 #include <boost/optional.hpp>
41 #include <iostream>
42
43 using std::cout;
44 using std::string;
45 using std::exception;
46 using std::list;
47 using std::fixed;
48 using std::setprecision;
49 using std::shared_ptr;
50 using boost::thread;
51 using boost::bind;
52 using boost::optional;
53 using std::dynamic_pointer_cast;
54 #if BOOST_VERSION >= 106100
55 using namespace boost::placeholders;
56 #endif
57
58 enum {
59         ID_status = 1,
60         ID_quit,
61         ID_timer
62 };
63
64 static unsigned int const log_lines = 32;
65
66 class ServerLog : public Log, public Signaller
67 {
68 public:
69         ServerLog ()
70                 : _fps (0)
71         {}
72
73         string get () const {
74                 string a;
75                 BOOST_FOREACH (string const & i, _log) {
76                         a += i + "\n";
77                 }
78                 return a;
79         }
80
81         float fps () const {
82                 boost::mutex::scoped_lock lm (_state_mutex);
83                 return _fps;
84         }
85
86         boost::signals2::signal<void(string)> Appended;
87         boost::signals2::signal<void(int)> Removed;
88
89 private:
90         void do_log (shared_ptr<const LogEntry> entry)
91         {
92                 time_t const s = entry->seconds ();
93                 struct tm* local = localtime (&s);
94                 if (
95                         !_last_time ||
96                         local->tm_yday != _last_time->tm_yday ||
97                         local->tm_year != _last_time->tm_year ||
98                         local->tm_hour != _last_time->tm_hour ||
99                         local->tm_min != _last_time->tm_min
100                         ) {
101                         char buffer[64];
102                         strftime (buffer, 64, "%c", local);
103                         append (buffer);
104                 }
105
106                 append (entry->message ());
107                 if (_log.size() > log_lines) {
108                         emit (boost::bind (boost::ref (Removed), _log.front().length()));
109                         _log.pop_front ();
110                 }
111                 _last_time = *local;
112
113                 shared_ptr<const EncodedLogEntry> encoded = dynamic_pointer_cast<const EncodedLogEntry> (entry);
114                 if (encoded) {
115                         _history.push_back (encoded->seconds ());
116                         if (_history.size() > 48) {
117                                 _history.pop_front ();
118                         }
119                         if (_history.size() > 2) {
120                                 boost::mutex::scoped_lock lm (_state_mutex);
121                                 _fps = _history.size() / (_history.back() - _history.front());
122                         }
123                 }
124         }
125
126         void append (string s)
127         {
128                 _log.push_back (s);
129                 emit (boost::bind (boost::ref (Appended), s));
130         }
131
132         list<string> _log;
133         optional<struct tm> _last_time;
134         std::list<double> _history;
135
136         mutable boost::mutex _state_mutex;
137         float _fps;
138 };
139
140 static shared_ptr<ServerLog> server_log;
141
142 class StatusDialog : public wxDialog
143 {
144 public:
145         StatusDialog ()
146                 : wxDialog (
147                         0, wxID_ANY, _("DCP-o-matic Encode Server"),
148                         wxDefaultPosition, wxDefaultSize,
149 #ifdef DCPOMATIC_OSX
150                         wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxSTAY_ON_TOP
151 #else
152                         wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER
153 #endif
154                         )
155         {
156                 wxFlexGridSizer* state_sizer = new wxFlexGridSizer (2, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP);
157
158                 add_label_to_sizer (state_sizer, this, _("Frames per second"), true);
159                 _fps = new StaticText (this, wxT(""));
160                 state_sizer->Add (_fps);
161
162                 wxFlexGridSizer* log_sizer = new wxFlexGridSizer (1, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP);
163                 log_sizer->AddGrowableCol (0, 1);
164
165                 wxClientDC dc (this);
166                 wxSize size = dc.GetTextExtent (wxT ("This is the length of the file label it should be quite long"));
167                 int const height = (size.GetHeight() + 2) * log_lines;
168                 SetSize (700, height + DCPOMATIC_SIZER_GAP * 2);
169
170                 _text = new wxTextCtrl (
171                         this, wxID_ANY, std_to_wx (server_log->get()), wxDefaultPosition, wxSize (-1, height),
172                         wxTE_READONLY | wxTE_MULTILINE
173                         );
174
175                 log_sizer->Add (_text, 1, wxEXPAND);
176
177                 wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
178                 overall_sizer->Add (state_sizer, 0, wxALL, DCPOMATIC_SIZER_GAP);
179                 overall_sizer->Add (log_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
180                 SetSizer (overall_sizer);
181                 overall_sizer->Layout ();
182
183                 Bind (wxEVT_TIMER, boost::bind (&StatusDialog::update_state, this));
184                 _timer.reset (new wxTimer (this));
185                 _timer->Start (1000);
186
187                 server_log->Appended.connect (bind (&StatusDialog::appended, this, _1));
188                 server_log->Removed.connect (bind (&StatusDialog::removed, this, _1));
189         }
190
191 private:
192         void appended (string s)
193         {
194                 (*_text) << s << "\n";
195         }
196
197         void removed (int n)
198         {
199                 _text->Remove (0, n + 1);
200         }
201
202         void update_state ()
203         {
204                 _fps->SetLabel (wxString::Format ("%.1f", server_log->fps()));
205         }
206
207         wxTextCtrl* _text;
208         wxStaticText* _fps;
209         std::shared_ptr<wxTimer> _timer;
210 };
211
212 class TaskBarIcon : public wxTaskBarIcon
213 {
214 public:
215         TaskBarIcon ()
216                 : _status (0)
217         {
218 #ifdef DCPOMATIC_WINDOWS
219                 wxIcon icon (std_to_wx ("id"));
220 #else
221                 wxBitmap bitmap (wxString::Format(wxT("%s/dcpomatic_small.png"), std_to_wx(resources_path().string())), wxBITMAP_TYPE_PNG);
222                 wxIcon icon;
223                 icon.CopyFromBitmap (bitmap);
224 #endif
225
226                 SetIcon (icon, std_to_wx ("DCP-o-matic Encode Server"));
227
228                 Bind (wxEVT_MENU, boost::bind (&TaskBarIcon::status, this), ID_status);
229                 Bind (wxEVT_MENU, boost::bind (&TaskBarIcon::quit, this), ID_quit);
230         }
231
232         wxMenu* CreatePopupMenu ()
233         {
234                 wxMenu* menu = new wxMenu;
235                 menu->Append (ID_status, std_to_wx ("Status..."));
236                 menu->Append (ID_quit, std_to_wx ("Quit"));
237                 return menu;
238         }
239
240 private:
241         void status ()
242         {
243                 if (!_status) {
244                         _status = new StatusDialog ();
245                 }
246                 _status->Show ();
247         }
248
249         void quit ()
250         {
251                 wxTheApp->ExitMainLoop ();
252         }
253
254         StatusDialog* _status;
255 };
256
257 class App : public wxApp, public ExceptionStore
258 {
259 public:
260         App ()
261                 : wxApp ()
262                 , _icon (0)
263         {}
264
265 private:
266
267         bool OnInit ()
268         {
269                 if (!wxApp::OnInit ()) {
270                         return false;
271                 }
272
273                 wxInitAllImageHandlers ();
274
275                 server_log.reset (new ServerLog);
276                 server_log->set_types (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR);
277                 dcpomatic_log = server_log;
278
279                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
280                 Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
281
282                 wxSplashScreen* splash = maybe_show_splash ();
283
284                 dcpomatic_setup_path_encoding ();
285                 dcpomatic_setup_i18n ();
286                 dcpomatic_setup ();
287                 Config::drop ();
288
289                 signal_manager = new wxSignalManager (this);
290                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
291
292                 /* Bad things happen (on Linux at least) if the config is reloaded by main_thread;
293                    it seems like there's a race which results in the locked_sstream mutex being
294                    locked before it is initialised.  Calling Config::instance() here loads the config
295                    again in this thread, which seems to work around the problem.
296                 */
297                 Config::instance();
298
299 #ifdef DCPOMATIC_LINUX
300                 StatusDialog* d = new StatusDialog ();
301                 d->Show ();
302 #else
303                 _icon = new TaskBarIcon;
304 #endif
305                 _thread = thread (bind (&App::main_thread, this));
306
307                 Bind (wxEVT_TIMER, boost::bind (&App::check, this));
308                 _timer.reset (new wxTimer (this));
309                 _timer->Start (1000);
310
311                 if (splash) {
312                         splash->Destroy ();
313                 }
314
315                 SetExitOnFrameDelete (false);
316
317                 return true;
318         }
319
320         int OnExit ()
321         {
322                 delete _icon;
323                 return wxApp::OnExit ();
324         }
325
326         void main_thread ()
327         try {
328                 EncodeServer server (false, Config::instance()->server_encoding_threads());
329                 server.run ();
330         } catch (...) {
331                 store_current ();
332         }
333
334         void check ()
335         {
336                 try {
337                         rethrow ();
338                 } catch (exception& e) {
339                         error_dialog (0, std_to_wx (e.what ()));
340                         wxTheApp->ExitMainLoop ();
341                 } catch (...) {
342                         error_dialog (0, _("An unknown error has occurred with the DCP-o-matic server."));
343                         wxTheApp->ExitMainLoop ();
344                 }
345         }
346
347         void idle ()
348         {
349                 signal_manager->ui_idle ();
350         }
351
352         void config_failed_to_load ()
353         {
354                 message_dialog (0, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
355         }
356
357         void config_warning (string m)
358         {
359                 message_dialog (0, std_to_wx (m));
360         }
361
362         boost::thread _thread;
363         TaskBarIcon* _icon;
364         shared_ptr<wxTimer> _timer;
365 };
366
367 IMPLEMENT_APP (App)