1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
/*
Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "wx/i18n_setup.h"
#include "wx/id.h"
#include "wx/static_text.h"
#include "wx/wx_signal_manager.h"
#include "wx/wx_util.h"
#include "wx/wx_variant.h"
#include "lib/config.h"
#ifdef DCPOMATIC_GROK
#include "lib/grok/context.h"
#endif
#include "lib/cross.h"
#include "lib/dcpomatic_log.h"
#include "lib/encode_server.h"
#include "lib/encoded_log_entry.h"
#include "lib/log.h"
#include "lib/signaller.h"
#include "lib/util.h"
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <wx/icon.h>
#include <wx/splash.h>
#include <wx/taskbar.h>
LIBDCP_ENABLE_WARNINGS
#include <boost/optional.hpp>
#include <boost/thread.hpp>
#include <iostream>
using std::cout;
using std::dynamic_pointer_cast;
using std::exception;
using std::fixed;
using std::list;
using std::setprecision;
using std::shared_ptr;
using std::string;
using boost::bind;
using boost::optional;
using boost::thread;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
#endif
enum {
ID_status = DCPOMATIC_MAIN_MENU,
ID_quit,
ID_timer
};
/* Make this longer than the tallest we might want the window to be.
* In an ideal world we'd scale it with the window size.
*/
static unsigned int const log_lines = 128;
class ServerLog : public Log, public Signaller
{
public:
string get() const {
string a;
for (auto const& i: _log) {
a += i + "\n";
}
return a;
}
float fps() const {
boost::mutex::scoped_lock lm(_state_mutex);
return _fps;
}
boost::signals2::signal<void(string)> Appended;
boost::signals2::signal<void(int)> Removed;
private:
void do_log(shared_ptr<const LogEntry> entry) override
{
time_t const s = entry->seconds();
struct tm* local = localtime(&s);
if (
!_last_time ||
local->tm_yday != _last_time->tm_yday ||
local->tm_year != _last_time->tm_year ||
local->tm_hour != _last_time->tm_hour ||
local->tm_min != _last_time->tm_min
) {
char buffer[64];
strftime(buffer, 64, "%c", local);
append(buffer);
}
if (_log.size() > log_lines) {
emit(boost::bind(boost::ref(Removed), _log.front().length()));
_log.pop_front();
}
append(entry->message());
_last_time = *local;
if (auto encoded = dynamic_pointer_cast<const EncodedLogEntry>(entry)) {
_history.push_back(encoded->seconds());
if (_history.size() > 48) {
_history.pop_front();
}
if (_history.size() > 2) {
boost::mutex::scoped_lock lm(_state_mutex);
_fps = _history.size() / (_history.back() - _history.front());
}
}
}
void append(string s)
{
_log.push_back(s);
emit(boost::bind(boost::ref(Appended), s));
}
list<string> _log;
optional<struct tm> _last_time;
std::list<double> _history;
mutable boost::mutex _state_mutex;
float _fps = 0;
};
static shared_ptr<ServerLog> server_log;
class StatusDialog : public wxDialog
{
public:
StatusDialog()
: wxDialog(
nullptr, wxID_ANY, variant::wx::dcpomatic_encode_server(),
wxDefaultPosition, wxDefaultSize,
#ifdef DCPOMATIC_OSX
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxSTAY_ON_TOP
#else
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER
#endif
)
{
auto state_sizer = new wxBoxSizer(wxHORIZONTAL);
add_label_to_sizer(state_sizer, this, _("Frames per second"), true, 0, 0);
_fps = new StaticText(this, {});
state_sizer->Add(_fps, 1, wxLEFT, DCPOMATIC_DIALOG_BORDER);
_text = new wxTextCtrl(
this, wxID_ANY, std_to_wx(server_log->get()), wxDefaultPosition, wxDefaultSize,
wxTE_READONLY | wxTE_MULTILINE
);
auto overall_sizer = new wxBoxSizer(wxVERTICAL);
overall_sizer->Add(state_sizer, 0, wxLEFT | wxTOP | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
overall_sizer->Add(_text, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
SetSizer(overall_sizer);
overall_sizer->Layout();
Bind(wxEVT_TIMER, boost::bind(&StatusDialog::update_state, this));
_timer.reset(new wxTimer(this));
_timer->Start(1000);
server_log->Appended.connect(bind(&StatusDialog::appended, this, _1));
server_log->Removed.connect(bind(&StatusDialog::removed, this, _1));
SetSize(800, 600);
}
private:
void appended(string s)
{
(*_text) << std_to_wx(s) << char_to_wx("\n");
}
void removed(int n)
{
#ifdef DCPOMATIC_WINDOWS
_text->Remove(0, n + 2);
#else
_text->Remove(0, n + 1);
#endif
}
void update_state()
{
_fps->SetLabel(wxString::Format(char_to_wx("%.1f"), server_log->fps()));
}
wxTextCtrl* _text;
wxStaticText* _fps;
std::shared_ptr<wxTimer> _timer;
};
static StatusDialog* status_dialog = nullptr;
class TaskBarIcon : public wxTaskBarIcon
{
public:
TaskBarIcon()
{
set_icon();
Bind(wxEVT_MENU, boost::bind(&TaskBarIcon::status, this), ID_status);
Bind(wxEVT_MENU, boost::bind(&TaskBarIcon::quit, this), ID_quit);
}
wxMenu* CreatePopupMenu() override
{
auto menu = new wxMenu;
menu->Append(ID_status, _("Status..."));
menu->Append(ID_quit, _("Quit"));
return menu;
}
void set_icon()
{
#ifdef DCPOMATIC_WINDOWS
wxIcon icon(std_to_wx("id"));
#else
string const colour = gui_is_dark() ? "white" : "black";
wxBitmap bitmap(
bitmap_path(fmt::format("dcpomatic_small_{}.png", colour)),
wxBITMAP_TYPE_PNG
);
wxIcon icon;
icon.CopyFromBitmap(bitmap);
#endif
SetIcon(icon, _("DCP-o-matic Encode Server"));
}
private:
void status()
{
status_dialog->Show();
}
void quit()
{
wxTheApp->ExitMainLoop();
}
};
class App : public wxApp, public ExceptionStore
{
public:
App()
: wxApp()
{}
private:
bool OnInit() override
{
if (!wxApp::OnInit()) {
return false;
}
wxInitAllImageHandlers();
server_log.reset(new ServerLog);
server_log->set_types(LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR);
dcpomatic_log = server_log;
Config::FailedToLoad.connect(boost::bind(&App::config_failed_to_load, this, _1));
Config::Warning.connect(boost::bind(&App::config_warning, this, _1));
auto splash = maybe_show_splash();
dcpomatic_setup_path_encoding();
dcpomatic::wx::setup_i18n();
dcpomatic_setup();
Config::drop();
signal_manager = new wxSignalManager(this);
Bind(wxEVT_IDLE, boost::bind(&App::idle, this));
/* Bad things happen (on Linux at least) if the config is reloaded by main_thread;
it seems like there's a race which results in the locked_sstream mutex being
locked before it is initialised. Calling Config::instance() here loads the config
again in this thread, which seems to work around the problem.
*/
Config::instance();
status_dialog = new StatusDialog();
#ifdef DCPOMATIC_LINUX
status_dialog->Show();
#else
_icon = new TaskBarIcon;
status_dialog->Bind(wxEVT_SYS_COLOUR_CHANGED, boost::bind(&TaskBarIcon::set_icon, _icon));
#endif
_thread = thread(bind(&App::main_thread, this));
Bind(wxEVT_TIMER, boost::bind(&App::check, this));
_timer.reset(new wxTimer(this));
_timer->Start(1000);
if (splash) {
splash->Destroy();
}
SetExitOnFrameDelete(false);
#ifdef DCPOMATIC_GROK
grk_plugin::setMessengerLogger(new grk_plugin::GrokLogger("[GROK] "));
setup_grok_library_path();
#endif
return true;
}
int OnExit() override
{
delete _icon;
return wxApp::OnExit();
}
void main_thread()
try {
EncodeServer server(false, Config::instance()->server_encoding_threads());
server.run();
} catch (...) {
store_current();
}
void check()
{
try {
rethrow();
} catch (exception& e) {
error_dialog(nullptr, std_to_wx(e.what()));
wxTheApp->ExitMainLoop();
} catch (...) {
error_dialog(nullptr, variant::wx::insert_dcpomatic_encode_server(_("An unknown error has occurred with the %s.")));
wxTheApp->ExitMainLoop();
}
}
void idle()
{
signal_manager->ui_idle();
}
void config_failed_to_load(Config::LoadFailure what)
{
report_config_load_failure(nullptr, what);
}
void config_warning(string m)
{
message_dialog(nullptr, std_to_wx(m));
}
boost::thread _thread;
TaskBarIcon* _icon = nullptr;
shared_ptr<wxTimer> _timer;
};
IMPLEMENT_APP(App)
|