Don't crash if preferences ZIP needs to be overwritten during export.
[dcpomatic.git] / src / tools / dcpomatic_player.cc
1 /*
2     Copyright (C) 2017-2021 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/about_dialog.h"
22 #include "wx/file_dialog.h"
23 #include "wx/film_viewer.h"
24 #include "wx/nag_dialog.h"
25 #include "wx/player_config_dialog.h"
26 #include "wx/player_information.h"
27 #include "wx/player_stress_tester.h"
28 #include "wx/playlist_controls.h"
29 #include "wx/report_problem_dialog.h"
30 #include "wx/standard_controls.h"
31 #include "wx/system_information_dialog.h"
32 #include "wx/timer_display.h"
33 #include "wx/update_dialog.h"
34 #include "wx/verify_dcp_dialog.h"
35 #include "wx/verify_dcp_progress_dialog.h"
36 #include "wx/wx_ptr.h"
37 #include "wx/wx_signal_manager.h"
38 #include "wx/wx_util.h"
39 #include "lib/compose.hpp"
40 #include "lib/config.h"
41 #include "lib/constants.h"
42 #include "lib/cross.h"
43 #include "lib/dcp_content.h"
44 #include "lib/dcp_examiner.h"
45 #include "lib/dcpomatic_log.h"
46 #include "lib/dcpomatic_socket.h"
47 #include "lib/examine_content_job.h"
48 #include "lib/ffmpeg_content.h"
49 #include "lib/file_log.h"
50 #include "lib/film.h"
51 #include "lib/font_config.h"
52 #include "lib/image.h"
53 #include "lib/image_jpeg.h"
54 #include "lib/image_png.h"
55 #include "lib/internet.h"
56 #include "lib/job.h"
57 #include "lib/job_manager.h"
58 #include "lib/null_log.h"
59 #include "lib/player.h"
60 #include "lib/player_video.h"
61 #include "lib/ratio.h"
62 #include "lib/scope_guard.h"
63 #include "lib/scoped_temporary.h"
64 #include "lib/server.h"
65 #include "lib/text_content.h"
66 #include "lib/update_checker.h"
67 #include "lib/verify_dcp_job.h"
68 #include "lib/video_content.h"
69 #include <dcp/cpl.h>
70 #include <dcp/dcp.h>
71 #include <dcp/exceptions.h>
72 #include <dcp/filesystem.h>
73 #include <dcp/raw_convert.h>
74 #include <dcp/search.h>
75 #include <dcp/warnings.h>
76 LIBDCP_DISABLE_WARNINGS
77 #include <wx/cmdline.h>
78 #include <wx/display.h>
79 #include <wx/dnd.h>
80 #include <wx/preferences.h>
81 #include <wx/progdlg.h>
82 #include <wx/splash.h>
83 #include <wx/stdpaths.h>
84 #include <wx/wx.h>
85 LIBDCP_ENABLE_WARNINGS
86 #ifdef __WXGTK__
87 #include <X11/Xlib.h>
88 #endif
89 #include <boost/algorithm/string.hpp>
90 #include <boost/bind/bind.hpp>
91 #include <iostream>
92
93 #ifdef check
94 #undef check
95 #endif
96
97
98 #define MAX_CPLS 32
99
100
101 using std::cout;
102 using std::dynamic_pointer_cast;
103 using std::exception;
104 using std::list;
105 using std::make_shared;
106 using std::shared_ptr;
107 using std::string;
108 using std::vector;
109 using std::weak_ptr;
110 using boost::bind;
111 using boost::optional;
112 using boost::scoped_array;
113 using boost::thread;
114 #if BOOST_VERSION >= 106100
115 using namespace boost::placeholders;
116 #endif
117 using dcp::raw_convert;
118 using namespace dcpomatic;
119
120
121 enum {
122         ID_file_open = 1,
123         ID_file_add_ov,
124         ID_file_add_kdm,
125         ID_file_save_frame,
126         ID_file_history,
127         /* Allow spare IDs after _history for the recent files list */
128         ID_file_close = 100,
129         ID_view_cpl,
130         /* Allow spare IDs for CPLs */
131         ID_view_full_screen = 200,
132         ID_view_dual_screen,
133         ID_view_closed_captions,
134         ID_view_scale_appropriate,
135         ID_view_scale_full,
136         ID_view_scale_half,
137         ID_view_scale_quarter,
138         ID_help_report_a_problem,
139         ID_tools_verify,
140         ID_tools_check_for_updates,
141         ID_tools_timing,
142         ID_tools_system_information,
143         /* IDs for shortcuts (with no associated menu item) */
144         ID_start_stop,
145         ID_go_back_frame,
146         ID_go_forward_frame,
147         ID_go_back_small_amount,
148         ID_go_forward_small_amount,
149         ID_go_back_medium_amount,
150         ID_go_forward_medium_amount,
151         ID_go_back_large_amount,
152         ID_go_forward_large_amount,
153         ID_go_to_start,
154         ID_go_to_end
155 };
156
157
158 class DOMFrame : public wxFrame
159 {
160 public:
161
162         class DCPDropTarget : public wxFileDropTarget
163         {
164         public:
165                 DCPDropTarget(DOMFrame* owner)
166                         : _frame(owner)
167                 {}
168
169                 bool OnDropFiles(wxCoord, wxCoord, wxArrayString const& filenames) override
170                 {
171                         if (filenames.GetCount() == 1) {
172                                 /* Try to load a directory */
173                                 auto path = boost::filesystem::path(wx_to_std(filenames[0]));
174                                 if (dcp::filesystem::is_directory(path)) {
175                                         _frame->load_dcp(wx_to_std(filenames[0]));
176                                         return true;
177                                 }
178                         }
179
180                         if (filenames.GetCount() >= 1) {
181                                 /* Try to load the parent if we drop some files, one if which is an asset map */
182                                 for (size_t i = 0; i < filenames.GetCount(); ++i) {
183                                         auto path = boost::filesystem::path(wx_to_std(filenames[i]));
184                                         if (path.filename() == "ASSETMAP" || path.filename() == "ASSETMAP.xml") {
185                                                 _frame->load_dcp(path.parent_path());
186                                                 return true;
187                                         }
188                                 }
189                         }
190
191                         return false;
192                 }
193
194         private:
195                 DOMFrame* _frame;
196         };
197
198
199         DOMFrame ()
200                 : wxFrame (nullptr, -1, _("DCP-o-matic Player"))
201                 , _mode (Config::instance()->player_mode())
202                 /* Use a panel as the only child of the Frame so that we avoid
203                    the dark-grey background on Windows.
204                 */
205                 , _overall_panel(new wxPanel(this, wxID_ANY))
206                 , _viewer(_overall_panel)
207                 , _main_sizer (new wxBoxSizer(wxVERTICAL))
208         {
209                 dcpomatic_log = make_shared<NullLog>();
210
211 #if defined(DCPOMATIC_WINDOWS)
212                 maybe_open_console ();
213                 cout << "DCP-o-matic Player is starting." << "\n";
214 #endif
215
216                 auto bar = new wxMenuBar;
217                 setup_menu (bar);
218                 set_menu_sensitivity ();
219                 SetMenuBar (bar);
220
221 #ifdef DCPOMATIC_WINDOWS
222                 SetIcon (wxIcon (std_to_wx ("id")));
223 #endif
224
225                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
226                 update_from_config (Config::PLAYER_DEBUG_LOG);
227
228                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this), ID_file_open);
229                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_ov, this), ID_file_add_ov);
230                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_kdm, this), ID_file_add_kdm);
231                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_frame, this), ID_file_save_frame);
232                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1), ID_file_history, ID_file_history + HISTORY_SIZE);
233                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this), ID_file_close);
234                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this), wxID_EXIT);
235                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this), wxID_PREFERENCES);
236                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_full_screen, this), ID_view_full_screen);
237                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_dual_screen, this), ID_view_dual_screen);
238                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this), ID_view_closed_captions);
239                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_cpl, this, _1), ID_view_cpl, ID_view_cpl + MAX_CPLS);
240                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(0)), ID_view_scale_full);
241                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(1)), ID_view_scale_half);
242                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(2)), ID_view_scale_quarter);
243                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this), wxID_ABOUT);
244                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
245                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_verify, this), ID_tools_verify);
246                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
247                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_timing, this), ID_tools_timing);
248                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_system_information, this), ID_tools_system_information);
249
250                 Bind(wxEVT_CLOSE_WINDOW, boost::bind(&DOMFrame::close, this, _1));
251
252                 if (Config::instance()->player_mode() == Config::PLAYER_MODE_DUAL) {
253                         auto pc = new PlaylistControls (_overall_panel, _viewer);
254                         _controls = pc;
255                         pc->ResetFilm.connect (bind(&DOMFrame::reset_film_weak, this, _1));
256                 } else {
257                         _controls = new StandardControls (_overall_panel, _viewer, false);
258                 }
259                 _controls->set_film(_viewer.film());
260                 _viewer.set_dcp_decode_reduction(Config::instance()->decode_reduction());
261                 _viewer.set_optimise_for_j2k(true);
262                 _viewer.PlaybackPermitted.connect(bind(&DOMFrame::playback_permitted, this));
263                 _viewer.TooManyDropped.connect(bind(&DOMFrame::too_many_frames_dropped, this));
264                 _info = new PlayerInformation (_overall_panel, _viewer);
265                 setup_main_sizer (Config::instance()->player_mode());
266 #ifdef __WXOSX__
267                 int accelerators = 12;
268 #else
269                 int accelerators = 11;
270 #endif
271
272                 _stress.setup (this, _controls);
273
274                 std::vector<wxAcceleratorEntry> accel(accelerators);
275                 accel[0].Set(wxACCEL_NORMAL,                WXK_SPACE, ID_start_stop);
276                 accel[1].Set(wxACCEL_NORMAL,                WXK_LEFT,  ID_go_back_frame);
277                 accel[2].Set(wxACCEL_NORMAL,                WXK_RIGHT, ID_go_forward_frame);
278                 accel[3].Set(wxACCEL_SHIFT,                 WXK_LEFT,  ID_go_back_small_amount);
279                 accel[4].Set(wxACCEL_SHIFT,                 WXK_RIGHT, ID_go_forward_small_amount);
280                 accel[5].Set(wxACCEL_CTRL,                  WXK_LEFT,  ID_go_back_medium_amount);
281                 accel[6].Set(wxACCEL_CTRL,                  WXK_RIGHT, ID_go_forward_medium_amount);
282                 accel[7].Set(wxACCEL_SHIFT | wxACCEL_CTRL,  WXK_LEFT,  ID_go_back_large_amount);
283                 accel[8].Set(wxACCEL_SHIFT | wxACCEL_CTRL,  WXK_RIGHT, ID_go_forward_large_amount);
284                 accel[9].Set(wxACCEL_NORMAL,                WXK_HOME,  ID_go_to_start);
285                 accel[10].Set(wxACCEL_NORMAL,               WXK_END,   ID_go_to_end);
286 #ifdef __WXOSX__
287                 accel[11].Set(wxACCEL_CTRL, static_cast<int>('W'), ID_file_close);
288 #endif
289                 wxAcceleratorTable accel_table (accelerators, accel.data());
290                 SetAcceleratorTable (accel_table);
291
292                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::start_stop_pressed, this), ID_start_stop);
293                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_back_frame, this),      ID_go_back_frame);
294                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_forward_frame, this),   ID_go_forward_frame);
295                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,   -60), ID_go_back_small_amount);
296                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,    60), ID_go_forward_small_amount);
297                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,  -600), ID_go_back_medium_amount);
298                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,   600), ID_go_forward_medium_amount);
299                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this, -3600), ID_go_back_large_amount);
300                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_seconds,  this,  3600), ID_go_forward_large_amount);
301                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_to_start, this), ID_go_to_start);
302                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::go_to_end,   this), ID_go_to_end);
303
304                 reset_film ();
305
306                 UpdateChecker::instance()->StateChanged.connect (boost::bind(&DOMFrame::update_checker_state_changed, this));
307                 setup_screen ();
308
309                 _stress.LoadDCP.connect (boost::bind(&DOMFrame::load_dcp, this, _1));
310
311                 SetDropTarget(new DCPDropTarget(this));
312         }
313
314         ~DOMFrame ()
315         {
316                 /* It's important that this is stopped before our frame starts destroying its children,
317                  * otherwise UI elements that it depends on will disappear from under it.
318                  */
319                 _viewer.stop();
320         }
321
322         void close(wxCloseEvent& ev)
323         {
324                 FontConfig::drop();
325                 ev.Skip();
326         }
327
328         void setup_main_sizer (Config::PlayerMode mode)
329         {
330                 _main_sizer->Detach(_viewer.panel());
331                 _main_sizer->Detach (_controls);
332                 _main_sizer->Detach (_info);
333                 if (mode != Config::PLAYER_MODE_DUAL) {
334                         _main_sizer->Add(_viewer.panel(), 1, wxEXPAND);
335                 }
336                 _main_sizer->Add (_controls, mode == Config::PLAYER_MODE_DUAL ? 1 : 0, wxEXPAND | wxALL, 6);
337                 _main_sizer->Add (_info, 0, wxEXPAND | wxALL, 6);
338                 _overall_panel->SetSizer (_main_sizer);
339                 _overall_panel->Layout ();
340         }
341
342         bool playback_permitted ()
343         {
344                 if (!_film || !Config::instance()->respect_kdm_validity_periods()) {
345                         return true;
346                 }
347
348                 bool ok = true;
349                 for (auto i: _film->content()) {
350                         auto d = dynamic_pointer_cast<DCPContent>(i);
351                         if (d && !d->kdm_timing_window_valid()) {
352                                 ok = false;
353                         }
354                 }
355
356                 if (!ok) {
357                         error_dialog (this, _("The KDM does not allow playback of this content at this time."));
358                 }
359
360                 return ok;
361         }
362
363
364         void too_many_frames_dropped ()
365         {
366                 if (!Config::instance()->nagged(Config::NAG_TOO_MANY_DROPPED_FRAMES)) {
367                         _viewer.stop();
368                 }
369
370                 NagDialog::maybe_nag (
371                         this,
372                         Config::NAG_TOO_MANY_DROPPED_FRAMES,
373                         _(wxS("The player is dropping a lot of frames, so playback may not be accurate.\n\n"
374                           "<b>This does not necessarily mean that the DCP you are playing is defective!</b>\n\n"
375                           "You may be able to improve player performance by:\n"
376                           "• choosing 'decode at half resolution' or 'decode at quarter resolution' from the View menu\n"
377                           "• using a more powerful computer.\n"
378                          ))
379                         );
380         }
381
382         void set_decode_reduction (optional<int> reduction)
383         {
384                 _viewer.set_dcp_decode_reduction(reduction);
385                 _info->triggered_update ();
386                 Config::instance()->set_decode_reduction (reduction);
387         }
388
389         void load_dcp (boost::filesystem::path dir)
390         {
391                 DCPOMATIC_ASSERT (_film);
392
393                 reset_film ();
394                 try {
395                         _stress.set_suspended (true);
396                         auto dcp = make_shared<DCPContent>(dir);
397                         auto job = make_shared<ExamineContentJob>(_film, dcp);
398                         _examine_job_connection = job->Finished.connect(bind(&DOMFrame::add_dcp_to_film, this, weak_ptr<Job>(job), weak_ptr<Content>(dcp)));
399                         JobManager::instance()->add (job);
400                         bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content"));
401                         if (!ok || !report_errors_from_last_job(this)) {
402                                 return;
403                         }
404                         Config::instance()->add_to_player_history (dir);
405                         if (dcp->video_frame_rate()) {
406                                 _film->set_video_frame_rate(dcp->video_frame_rate().get(), true);
407                         }
408                 } catch (ProjectFolderError &) {
409                         error_dialog (
410                                 this,
411                                 wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())),
412                                 _(
413                                         "This looks like a DCP-o-matic project folder, which cannot be loaded into the player.  "
414                                         "Choose the DCP folder inside the DCP-o-matic project folder if that's what you want to play."
415                                  )
416                                 );
417                 } catch (dcp::ReadError& e) {
418                         error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what()));
419                 } catch (DCPError& e) {
420                         error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what()));
421                 }
422         }
423
424         void add_dcp_to_film (weak_ptr<Job> weak_job, weak_ptr<Content> weak_content)
425         {
426                 auto job = weak_job.lock ();
427                 if (!job || !job->finished_ok()) {
428                         return;
429                 }
430
431                 auto content = weak_content.lock ();
432                 if (!content) {
433                         return;
434                 }
435
436                 _film->add_content (content);
437                 _stress.set_suspended (false);
438         }
439
440         void reset_film_weak (weak_ptr<Film> weak_film)
441         {
442                 auto film = weak_film.lock ();
443                 if (film) {
444                         reset_film (film);
445                 }
446         }
447
448         void reset_film (shared_ptr<Film> film = shared_ptr<Film>(new Film(optional<boost::filesystem::path>())))
449         {
450                 _film = film;
451                 _film->set_tolerant (true);
452                 _film->set_audio_channels (MAX_DCP_AUDIO_CHANNELS);
453                 _viewer.set_film(_film);
454                 _controls->set_film (_film);
455                 _film->Change.connect (bind(&DOMFrame::film_changed, this, _1, _2));
456                 _info->triggered_update ();
457         }
458
459         void film_changed (ChangeType type, FilmProperty property)
460         {
461                 if (type != ChangeType::DONE || property != FilmProperty::CONTENT) {
462                         return;
463                 }
464
465                 if (_viewer.playing()) {
466                         _viewer.stop();
467                 }
468
469                 /* Start off as Flat */
470                 _film->set_container (Ratio::from_id("185"));
471
472                 for (auto i: _film->content()) {
473                         auto dcp = dynamic_pointer_cast<DCPContent>(i);
474
475                         for (auto j: i->text) {
476                                 j->set_use (true);
477                         }
478
479                         if (i->video) {
480                                 auto const r = Ratio::nearest_from_ratio(i->video->size().ratio());
481                                 if (r->id() == "239") {
482                                         /* Any scope content means we use scope */
483                                         _film->set_container(r);
484                                 }
485                         }
486
487                         /* Any 3D content means we use 3D mode */
488                         if (i->video && i->video->frame_type() != VideoFrameType::TWO_D) {
489                                 _film->set_three_d (true);
490                         }
491                 }
492
493                 _viewer.seek(DCPTime(), true);
494                 _info->triggered_update ();
495
496                 set_menu_sensitivity ();
497
498                 auto old = _cpl_menu->GetMenuItems();
499                 for (auto const& i: old) {
500                         _cpl_menu->Remove (i);
501                 }
502
503                 if (_film->content().size() == 1) {
504                         /* Offer a CPL menu */
505                         auto first = dynamic_pointer_cast<DCPContent>(_film->content().front());
506                         if (first) {
507                                 int id = ID_view_cpl;
508                                 for (auto i: dcp::find_and_resolve_cpls(first->directories(), true)) {
509                                         auto j = _cpl_menu->AppendRadioItem(
510                                                 id,
511                                                 wxString::Format("%s (%s)", std_to_wx(i->annotation_text().get_value_or("")).data(), std_to_wx(i->id()).data())
512                                                 );
513                                         j->Check(!first->cpl() || i->id() == *first->cpl());
514                                         ++id;
515                                 }
516                         }
517                 }
518         }
519
520         void load_stress_script (boost::filesystem::path path)
521         {
522                 _stress.load_script (path);
523         }
524
525 private:
526
527         void examine_content ()
528         {
529                 DCPOMATIC_ASSERT (_film);
530                 auto dcp = dynamic_pointer_cast<DCPContent>(_film->content().front());
531                 DCPOMATIC_ASSERT (dcp);
532                 dcp->examine (_film, shared_ptr<Job>());
533
534                 /* Examining content re-creates the TextContent objects, so we must re-enable them */
535                 for (auto i: dcp->text) {
536                         i->set_use (true);
537                 }
538         }
539
540         bool report_errors_from_last_job (wxWindow* parent) const
541         {
542                 auto jm = JobManager::instance ();
543
544                 DCPOMATIC_ASSERT (!jm->get().empty());
545
546                 auto last = jm->get().back();
547                 if (last->finished_in_error()) {
548                         error_dialog(parent, wxString::Format(_("Could not load DCP.\n\n%s."), std_to_wx(last->error_summary()).data()), std_to_wx(last->error_details()));
549                         return false;
550                 }
551
552                 return true;
553         }
554
555         void setup_menu (wxMenuBar* m)
556         {
557                 _file_menu = new wxMenu;
558                 _file_menu->Append (ID_file_open, _("&Open...\tCtrl-O"));
559                 _file_add_ov = _file_menu->Append (ID_file_add_ov, _("&Add OV..."));
560                 _file_add_kdm = _file_menu->Append (ID_file_add_kdm, _("Add &KDM..."));
561                 _file_menu->AppendSeparator ();
562                 _file_save_frame = _file_menu->Append (ID_file_save_frame, _("&Save frame to file...\tCtrl-S"));
563
564                 _history_position = _file_menu->GetMenuItems().GetCount();
565
566                 _file_menu->AppendSeparator ();
567                 _file_menu->Append (ID_file_close, _("&Close"));
568                 _file_menu->AppendSeparator ();
569
570 #ifdef __WXOSX__
571                 _file_menu->Append (wxID_EXIT, _("&Exit"));
572 #else
573                 _file_menu->Append (wxID_EXIT, _("&Quit"));
574 #endif
575
576 #ifdef __WXOSX__
577                 auto prefs = _file_menu->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
578 #else
579                 auto edit = new wxMenu;
580                 auto prefs = edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
581 #endif
582
583                 prefs->Enable (Config::instance()->have_write_permission());
584
585                 _cpl_menu = new wxMenu;
586
587                 auto view = new wxMenu;
588                 auto c = Config::instance()->decode_reduction();
589                 _view_cpl = view->Append(ID_view_cpl, _("CPL"), _cpl_menu);
590                 view->AppendSeparator();
591                 _view_full_screen = view->AppendCheckItem(ID_view_full_screen, _("Full screen\tF11"));
592                 _view_dual_screen = view->AppendCheckItem(ID_view_dual_screen, _("Dual screen\tShift+F11"));
593                 setup_menu ();
594                 view->AppendSeparator();
595                 view->Append(ID_view_closed_captions, _("Closed captions..."));
596                 view->AppendSeparator();
597                 view->AppendRadioItem(ID_view_scale_appropriate, _("Set decode resolution to match display"))->Check(!static_cast<bool>(c));
598                 view->AppendRadioItem(ID_view_scale_full, _("Decode at full resolution"))->Check(c && c.get() == 0);
599                 view->AppendRadioItem(ID_view_scale_half, _("Decode at half resolution"))->Check(c && c.get() == 1);
600                 view->AppendRadioItem(ID_view_scale_quarter, _("Decode at quarter resolution"))->Check(c && c.get() == 2);
601
602                 auto tools = new wxMenu;
603                 _tools_verify = tools->Append (ID_tools_verify, _("Verify DCP..."));
604                 tools->AppendSeparator ();
605                 tools->Append (ID_tools_check_for_updates, _("Check for updates"));
606                 tools->Append (ID_tools_timing, _("Timing..."));
607                 tools->Append (ID_tools_system_information, _("System information..."));
608
609                 auto help = new wxMenu;
610 #ifdef __WXOSX__
611                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
612 #else
613                 help->Append (wxID_ABOUT, _("About"));
614 #endif
615                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
616
617                 m->Append (_file_menu, _("&File"));
618 #ifndef __WXOSX__
619                 m->Append (edit, _("&Edit"));
620 #endif
621                 m->Append (view, _("&View"));
622                 m->Append (tools, _("&Tools"));
623                 m->Append (help, _("&Help"));
624         }
625
626         void file_open ()
627         {
628                 auto d = wxStandardPaths::Get().GetDocumentsDir();
629                 if (Config::instance()->last_player_load_directory()) {
630                         d = std_to_wx (Config::instance()->last_player_load_directory()->string());
631                 }
632
633                 auto c = make_wx<wxDirDialog>(this, _("Select DCP to open"), d, wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST);
634
635                 int r;
636                 while (true) {
637                         r = c->ShowModal ();
638                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
639                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
640                         } else {
641                                 break;
642                         }
643                 }
644
645                 if (r == wxID_OK) {
646                         boost::filesystem::path const dcp (wx_to_std (c->GetPath ()));
647                         load_dcp (dcp);
648                         Config::instance()->set_last_player_load_directory (dcp.parent_path());
649                 }
650         }
651
652         void file_add_ov ()
653         {
654                 auto initial_dir = wxStandardPaths::Get().GetDocumentsDir();
655                 if (Config::instance()->last_player_load_directory()) {
656                         initial_dir = std_to_wx(Config::instance()->last_player_load_directory()->string());
657                 }
658
659                 auto c = make_wx<wxDirDialog>(
660                         this,
661                         _("Select DCP to open as OV"),
662                         initial_dir,
663                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
664                         );
665
666                 int r;
667                 while (true) {
668                         r = c->ShowModal ();
669                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
670                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
671                         } else {
672                                 break;
673                         }
674                 }
675
676                 if (r == wxID_OK) {
677                         DCPOMATIC_ASSERT (_film);
678                         auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
679                         DCPOMATIC_ASSERT (dcp);
680                         dcp->add_ov (wx_to_std(c->GetPath()));
681                         JobManager::instance()->add(make_shared<ExamineContentJob>(_film, dcp));
682                         bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content"));
683                         if (!ok || !report_errors_from_last_job(this)) {
684                                 return;
685                         }
686                         for (auto i: dcp->text) {
687                                 i->set_use (true);
688                         }
689                         if (dcp->video) {
690                                 auto const r = Ratio::nearest_from_ratio(dcp->video->size().ratio());
691                                 if (r) {
692                                         _film->set_container(r);
693                                 }
694                         }
695                 }
696
697                 _info->triggered_update ();
698         }
699
700         void file_add_kdm ()
701         {
702                 FileDialog dialog(this, _("Select KDM"), wxT("XML files|*.xml|All files|*.*"), wxFD_MULTIPLE, "AddKDMPath");
703
704                 if (dialog.show()) {
705                         DCPOMATIC_ASSERT (_film);
706                         auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
707                         DCPOMATIC_ASSERT (dcp);
708                         try {
709                                 if (dcp) {
710                                         ScopeGuard sg([this]() {
711                                                 _viewer.set_coalesce_player_changes(false);
712                                         });
713                                         _viewer.set_coalesce_player_changes(true);
714                                         for (auto path: dialog.paths()) {
715                                                 dcp->add_kdm(dcp::EncryptedKDM(dcp::file_to_string(path)));
716                                                 _kdms.push_back(path);
717                                         }
718                                         examine_content();
719                                 }
720                         } catch (exception& e) {
721                                 error_dialog (this, wxString::Format (_("Could not load KDM.")), std_to_wx(e.what()));
722                                 return;
723                         }
724                 }
725
726                 _info->triggered_update ();
727         }
728
729         void file_save_frame ()
730         {
731                 wxFileDialog dialog (this, _("Save frame to file"), "", "", "PNG files (*.png)|*.png|JPEG files (*.jpg;*.jpeg)|*.jpg;*.jpeg", wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
732                 if (dialog.ShowModal() == wxID_CANCEL) {
733                         return;
734                 }
735
736                 auto path = boost::filesystem::path (wx_to_std(dialog.GetPath()));
737
738                 auto player = make_shared<Player>(_film, Image::Alignment::PADDED);
739                 player->seek(_viewer.position(), true);
740
741                 bool done = false;
742                 player->Video.connect ([path, &done, this](shared_ptr<PlayerVideo> video, DCPTime) {
743                         auto ext = boost::algorithm::to_lower_copy(path.extension().string());
744                         if (ext == ".png") {
745                                 auto image = video->image(boost::bind(PlayerVideo::force, AV_PIX_FMT_RGBA), VideoRange::FULL, false);
746                                 image_as_png(image).write(path);
747                         } else if (ext == ".jpg" || ext == ".jpeg") {
748                                 auto image = video->image(boost::bind(PlayerVideo::force, AV_PIX_FMT_RGB24), VideoRange::FULL, false);
749                                 image_as_jpeg(image, 80).write(path);
750                         } else {
751                                 error_dialog (this, _(wxString::Format("Unrecognised file extension %s (use .jpg, .jpeg or .png)", std_to_wx(ext))));
752                         }
753                         done = true;
754                 });
755
756                 int tries_left = 50;
757                 while (!done && tries_left >= 0) {
758                         player->pass();
759                         --tries_left;
760                 }
761
762                 DCPOMATIC_ASSERT (tries_left >= 0);
763         }
764
765         void file_history (wxCommandEvent& event)
766         {
767                 auto history = Config::instance()->player_history ();
768                 int n = event.GetId() - ID_file_history;
769                 if (n >= 0 && n < static_cast<int> (history.size ())) {
770                         try {
771                                 load_dcp (history[n]);
772                         } catch (exception& e) {
773                                 error_dialog (0, std_to_wx(String::compose(wx_to_std(_("Could not load DCP %1.")), history[n])), std_to_wx(e.what()));
774                         }
775                 }
776         }
777
778         void file_close ()
779         {
780                 reset_film ();
781                 _info->triggered_update ();
782                 set_menu_sensitivity ();
783         }
784
785         void file_exit ()
786         {
787                 Close ();
788         }
789
790         void edit_preferences ()
791         {
792                 if (!Config::instance()->have_write_permission()) {
793                         return;
794                 }
795
796                 if (!_config_dialog) {
797                         _config_dialog = create_player_config_dialog ();
798                 }
799                 _config_dialog->Show (this);
800         }
801
802         void view_cpl (wxCommandEvent& ev)
803         {
804                 auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
805                 DCPOMATIC_ASSERT (dcp);
806                 auto cpls = dcp::find_and_resolve_cpls (dcp->directories(), true);
807                 int id = ev.GetId() - ID_view_cpl;
808                 DCPOMATIC_ASSERT (id >= 0);
809                 DCPOMATIC_ASSERT (id < int(cpls.size()));
810                 auto i = cpls.begin();
811                 while (id > 0) {
812                         ++i;
813                         --id;
814                 }
815
816                 _viewer.set_coalesce_player_changes(true);
817                 dcp->set_cpl ((*i)->id());
818                 examine_content ();
819                 _viewer.set_coalesce_player_changes(false);
820
821                 _info->triggered_update ();
822         }
823
824         void view_full_screen ()
825         {
826                 if (_mode == Config::PLAYER_MODE_FULL) {
827                         _mode = Config::PLAYER_MODE_WINDOW;
828                 } else {
829                         _mode = Config::PLAYER_MODE_FULL;
830                 }
831                 setup_screen ();
832                 setup_menu ();
833         }
834
835         void view_dual_screen ()
836         {
837                 if (_mode == Config::PLAYER_MODE_DUAL) {
838                         _mode = Config::PLAYER_MODE_WINDOW;
839                 } else {
840                         _mode = Config::PLAYER_MODE_DUAL;
841                 }
842                 setup_screen ();
843                 setup_menu ();
844         }
845
846         void setup_menu ()
847         {
848                 if (_view_full_screen) {
849                         _view_full_screen->Check (_mode == Config::PLAYER_MODE_FULL);
850                 }
851                 if (_view_dual_screen) {
852                         _view_dual_screen->Check (_mode == Config::PLAYER_MODE_DUAL);
853                 }
854         }
855
856         void setup_screen ()
857         {
858                 _controls->Show (_mode != Config::PLAYER_MODE_FULL);
859                 _info->Show (_mode != Config::PLAYER_MODE_FULL);
860                 _overall_panel->SetBackgroundColour (_mode == Config::PLAYER_MODE_FULL ? wxColour(0, 0, 0) : wxNullColour);
861                 ShowFullScreen (_mode == Config::PLAYER_MODE_FULL);
862                 _viewer.set_pad_black(_mode != Config::PLAYER_MODE_WINDOW);
863
864                 if (_mode == Config::PLAYER_MODE_DUAL) {
865                         _dual_screen = new wxFrame (this, wxID_ANY, wxT(""));
866                         _dual_screen->SetBackgroundColour (wxColour(0, 0, 0));
867                         _dual_screen->ShowFullScreen (true);
868                         _viewer.panel()->Reparent(_dual_screen);
869                         _viewer.panel()->SetFocus();
870                         _dual_screen->Show ();
871                         if (wxDisplay::GetCount() > 1) {
872                                 switch (Config::instance()->image_display()) {
873                                 case 0:
874                                         _dual_screen->Move (0, 0);
875                                         Move (wxDisplay(0U).GetClientArea().GetWidth(), 0);
876                                         break;
877                                 case 1:
878                                         _dual_screen->Move (wxDisplay(0U).GetClientArea().GetWidth(), 0);
879                                         // (0, 0) doesn't seem to work for some strange reason
880                                         Move (8, 8);
881                                         break;
882                                 }
883                         }
884                         _dual_screen->Bind(wxEVT_CHAR_HOOK, boost::bind(&DOMFrame::dual_screen_key_press, this, _1));
885                 } else {
886                         if (_dual_screen) {
887                                 _viewer.panel()->Reparent(_overall_panel);
888                                 _dual_screen->Destroy ();
889                                 _dual_screen = 0;
890                         }
891                 }
892
893                 setup_main_sizer (_mode);
894         }
895
896         void dual_screen_key_press(wxKeyEvent& ev)
897         {
898                 if (ev.GetKeyCode() == WXK_F11) {
899                         if (ev.ShiftDown()) {
900                                 view_dual_screen();
901                         } else if (!ev.HasAnyModifiers()) {
902                                 view_full_screen();
903                         }
904                 }
905         }
906
907         void view_closed_captions ()
908         {
909                 _viewer.show_closed_captions();
910         }
911
912         void tools_verify ()
913         {
914                 auto dcp = std::dynamic_pointer_cast<DCPContent>(_film->content().front());
915                 DCPOMATIC_ASSERT (dcp);
916
917                 auto job = make_shared<VerifyDCPJob>(dcp->directories(), _kdms);
918                 VerifyDCPProgressDialog progress(this, _("DCP-o-matic Player"));
919                 bool const completed = progress.run(job);
920                 progress.Close();
921
922                 if (completed) {
923                         VerifyDCPDialog dialog(this, job);
924                         dialog.ShowModal();
925                 }
926         }
927
928         void tools_check_for_updates ()
929         {
930                 UpdateChecker::instance()->run ();
931                 _update_news_requested = true;
932         }
933
934         void tools_timing ()
935         {
936                 auto d = make_wx<TimerDisplay>(this, _viewer.state_timer(), _viewer.gets());
937                 d->ShowModal ();
938         }
939
940         void tools_system_information ()
941         {
942                 if (!_system_information_dialog) {
943                         _system_information_dialog = new SystemInformationDialog (this, _viewer);
944                 }
945
946                 _system_information_dialog->Show ();
947         }
948
949         void help_about ()
950         {
951                 auto d = make_wx<AboutDialog>(this);
952                 d->ShowModal ();
953         }
954
955         void help_report_a_problem ()
956         {
957                 auto d = make_wx<ReportProblemDialog>(this);
958                 if (d->ShowModal () == wxID_OK) {
959                         d->report ();
960                 }
961         }
962
963         void update_checker_state_changed ()
964         {
965                 auto uc = UpdateChecker::instance ();
966
967                 bool const announce =
968                         _update_news_requested ||
969                         (uc->stable() && Config::instance()->check_for_updates()) ||
970                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
971
972                 _update_news_requested = false;
973
974                 if (!announce) {
975                         return;
976                 }
977
978                 if (uc->state() == UpdateChecker::State::YES) {
979                         auto dialog = make_wx<UpdateDialog>(this, uc->stable (), uc->test ());
980                         dialog->ShowModal ();
981                 } else if (uc->state() == UpdateChecker::State::FAILED) {
982                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
983                 } else {
984                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
985                 }
986
987                 _update_news_requested = false;
988         }
989
990         void config_changed (Config::Property prop)
991         {
992                 /* Instantly save any config changes when using the player GUI */
993                 try {
994                         Config::instance()->write_config();
995                 } catch (FileError& e) {
996                         if (prop != Config::HISTORY) {
997                                 error_dialog (
998                                         this,
999                                         wxString::Format(
1000                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
1001                                                 std_to_wx(e.file().string())
1002                                                 )
1003                                         );
1004                         }
1005                 } catch (exception& e) {
1006                         error_dialog (
1007                                 this,
1008                                 _("Could not write to config file.  Your changes have not been saved.")
1009                                 );
1010                 }
1011
1012                 update_from_config (prop);
1013         }
1014
1015         void update_from_config (Config::Property prop)
1016         {
1017                 for (int i = 0; i < _history_items; ++i) {
1018                         delete _file_menu->Remove (ID_file_history + i);
1019                 }
1020
1021                 if (_history_separator) {
1022                         _file_menu->Remove (_history_separator);
1023                 }
1024                 delete _history_separator;
1025                 _history_separator = nullptr;
1026
1027                 int pos = _history_position;
1028
1029                 /* Clear out non-existent history items before we re-build the menu */
1030                 Config::instance()->clean_player_history ();
1031                 auto history = Config::instance()->player_history ();
1032
1033                 if (!history.empty ()) {
1034                         _history_separator = _file_menu->InsertSeparator (pos++);
1035                 }
1036
1037                 for (size_t i = 0; i < history.size(); ++i) {
1038                         string s;
1039                         if (i < 9) {
1040                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1041                         } else {
1042                                 s = history[i].string();
1043                         }
1044                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1045                 }
1046
1047                 _history_items = history.size ();
1048
1049                 if (prop == Config::PLAYER_DEBUG_LOG) {
1050                         auto p = Config::instance()->player_debug_log_file();
1051                         if (p) {
1052                                 dcpomatic_log = make_shared<FileLog>(*p);
1053                         } else {
1054                                 dcpomatic_log = make_shared<NullLog>();
1055                         }
1056                         dcpomatic_log->set_types (LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR | LogEntry::TYPE_DEBUG_VIDEO_VIEW);
1057                 }
1058         }
1059
1060         void set_menu_sensitivity ()
1061         {
1062                 _tools_verify->Enable (static_cast<bool>(_film));
1063                 _file_add_ov->Enable (static_cast<bool>(_film));
1064                 _file_add_kdm->Enable (static_cast<bool>(_film));
1065                 _file_save_frame->Enable (static_cast<bool>(_film));
1066                 _view_cpl->Enable (static_cast<bool>(_film));
1067         }
1068
1069         void start_stop_pressed ()
1070         {
1071                 if (_viewer.playing()) {
1072                         _viewer.stop();
1073                 } else {
1074                         _viewer.start();
1075                 }
1076         }
1077
1078         void go_back_frame ()
1079         {
1080                 _viewer.seek_by(-_viewer.one_video_frame(), true);
1081         }
1082
1083         void go_forward_frame ()
1084         {
1085                 _viewer.seek_by(_viewer.one_video_frame(), true);
1086         }
1087
1088         void go_seconds (int s)
1089         {
1090                 _viewer.seek_by(DCPTime::from_seconds(s), true);
1091         }
1092
1093         void go_to_start ()
1094         {
1095                 _viewer.seek(DCPTime(), true);
1096         }
1097
1098         void go_to_end ()
1099         {
1100                 _viewer.seek(_film->length() - _viewer.one_video_frame(), true);
1101         }
1102
1103         wxFrame* _dual_screen = nullptr;
1104         bool _update_news_requested = false;
1105         PlayerInformation* _info = nullptr;
1106         Config::PlayerMode _mode;
1107         wxPreferencesEditor* _config_dialog = nullptr;
1108         wxPanel* _overall_panel = nullptr;
1109         wxMenu* _file_menu = nullptr;
1110         wxMenuItem* _view_cpl = nullptr;
1111         wxMenu* _cpl_menu = nullptr;
1112         int _history_items = 0;
1113         int _history_position = 0;
1114         wxMenuItem* _history_separator = nullptr;
1115         FilmViewer _viewer;
1116         Controls* _controls;
1117         SystemInformationDialog* _system_information_dialog = nullptr;
1118         std::shared_ptr<Film> _film;
1119         boost::signals2::scoped_connection _config_changed_connection;
1120         boost::signals2::scoped_connection _examine_job_connection;
1121         wxMenuItem* _file_add_ov = nullptr;
1122         wxMenuItem* _file_add_kdm = nullptr;
1123         wxMenuItem* _file_save_frame = nullptr;
1124         wxMenuItem* _tools_verify = nullptr;
1125         wxMenuItem* _view_full_screen = nullptr;
1126         wxMenuItem* _view_dual_screen = nullptr;
1127         wxSizer* _main_sizer = nullptr;
1128         PlayerStressTester _stress;
1129         /** KDMs that have been loaded, so that we can pass them to the verifier */
1130         std::vector<boost::filesystem::path> _kdms;
1131 };
1132
1133 static const wxCmdLineEntryDesc command_line_description[] = {
1134         { wxCMD_LINE_PARAM, 0, 0, "DCP to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1135         { wxCMD_LINE_OPTION, "c", "config", "Directory containing config.xml", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1136         { wxCMD_LINE_OPTION, "s", "stress", "File containing description of stress test", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1137         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1138 };
1139
1140 class PlayServer : public Server
1141 {
1142 public:
1143         explicit PlayServer (DOMFrame* frame)
1144                 : Server (PLAYER_PLAY_PORT)
1145                 , _frame (frame)
1146         {}
1147
1148         void handle (shared_ptr<Socket> socket) override
1149         {
1150                 try {
1151                         uint32_t const length = socket->read_uint32 ();
1152                         if (length > 65536) {
1153                                 return;
1154                         }
1155                         scoped_array<char> buffer (new char[length]);
1156                         socket->read (reinterpret_cast<uint8_t*> (buffer.get()), length);
1157                         string s (buffer.get());
1158                         signal_manager->when_idle (bind (&DOMFrame::load_dcp, _frame, s));
1159                         socket->write (reinterpret_cast<uint8_t const *> ("OK"), 3);
1160                 } catch (...) {
1161
1162                 }
1163         }
1164
1165 private:
1166         DOMFrame* _frame;
1167 };
1168
1169 /** @class App
1170  *  @brief The magic App class for wxWidgets.
1171  */
1172 class App : public wxApp
1173 {
1174 public:
1175         App ()
1176                 : wxApp ()
1177         {
1178 #ifdef DCPOMATIC_LINUX
1179                 XInitThreads ();
1180 #endif
1181         }
1182
1183 private:
1184
1185         bool OnInit () override
1186         {
1187                 wxSplashScreen* splash;
1188                 try {
1189                         wxInitAllImageHandlers ();
1190
1191                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1192                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
1193
1194                         splash = maybe_show_splash ();
1195
1196                         SetAppName (_("DCP-o-matic Player"));
1197
1198                         if (!wxApp::OnInit()) {
1199                                 return false;
1200                         }
1201
1202 #ifdef DCPOMATIC_LINUX
1203                         unsetenv ("UBUNTU_MENUPROXY");
1204 #endif
1205
1206 #ifdef DCPOMATIC_OSX
1207                         make_foreground_application ();
1208 #endif
1209
1210                         dcpomatic_setup_path_encoding ();
1211
1212                         /* Enable i18n; this will create a Config object
1213                            to look for a force-configured language.  This Config
1214                            object will be wrong, however, because dcpomatic_setup
1215                            hasn't yet been called and there aren't any filters etc.
1216                            set up yet.
1217                         */
1218                         dcpomatic_setup_i18n ();
1219
1220                         /* Set things up, including filters etc.
1221                            which will now be internationalised correctly.
1222                         */
1223                         dcpomatic_setup ();
1224
1225                         /* Force the configuration to be re-loaded correctly next
1226                            time it is needed.
1227                         */
1228                         Config::drop ();
1229
1230                         signal_manager = new wxSignalManager (this);
1231
1232                         _frame = new DOMFrame ();
1233                         SetTopWindow (_frame);
1234                         _frame->Maximize ();
1235                         if (splash) {
1236                                 splash->Destroy ();
1237                                 splash = nullptr;
1238                         }
1239                         _frame->Show ();
1240
1241                         try {
1242                                 auto server = new PlayServer (_frame);
1243                                 new thread (boost::bind (&PlayServer::run, server));
1244                         } catch (std::exception& e) {
1245                                 /* This is not the end of the world; probably a failure to bind the server socket
1246                                  * because there's already another player running.
1247                                  */
1248                                 LOG_DEBUG_PLAYER ("Failed to start play server (%1)", e.what());
1249                         }
1250
1251                         if (!_dcp_to_load.empty() && dcp::filesystem::is_directory(_dcp_to_load)) {
1252                                 try {
1253                                         _frame->load_dcp (_dcp_to_load);
1254                                 } catch (exception& e) {
1255                                         error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load DCP %1.")), _dcp_to_load)), std_to_wx(e.what()));
1256                                 }
1257                         }
1258
1259                         if (_stress) {
1260                                 try {
1261                                         _frame->load_stress_script (*_stress);
1262                                 } catch (exception& e) {
1263                                         error_dialog (0, wxString::Format("Could not load stress test file %s", std_to_wx(*_stress)));
1264                                 }
1265                         }
1266
1267                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
1268
1269                         if (Config::instance()->check_for_updates ()) {
1270                                 UpdateChecker::instance()->run ();
1271                         }
1272                 }
1273                 catch (exception& e)
1274                 {
1275                         if (splash) {
1276                                 splash->Destroy ();
1277                         }
1278                         error_dialog (0, _("DCP-o-matic Player could not start."), std_to_wx(e.what()));
1279                 }
1280
1281                 return true;
1282         }
1283
1284         void OnInitCmdLine (wxCmdLineParser& parser) override
1285         {
1286                 parser.SetDesc (command_line_description);
1287                 parser.SetSwitchChars (wxT ("-"));
1288         }
1289
1290         bool OnCmdLineParsed (wxCmdLineParser& parser) override
1291         {
1292                 if (parser.GetParamCount() > 0) {
1293                         _dcp_to_load = wx_to_std (parser.GetParam (0));
1294                 }
1295
1296                 wxString config;
1297                 if (parser.Found("c", &config)) {
1298                         Config::override_path = wx_to_std (config);
1299                 }
1300                 wxString stress;
1301                 if (parser.Found("s", &stress)) {
1302                         _stress = wx_to_std (stress);
1303                 }
1304
1305                 return true;
1306         }
1307
1308         void report_exception ()
1309         {
1310                 try {
1311                         throw;
1312                 } catch (FileError& e) {
1313                         error_dialog (
1314                                 0,
1315                                 wxString::Format (
1316                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1317                                         std_to_wx (e.what()),
1318                                         std_to_wx (e.file().string().c_str ())
1319                                         )
1320                                 );
1321                 } catch (exception& e) {
1322                         error_dialog (
1323                                 0,
1324                                 wxString::Format (
1325                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1326                                         std_to_wx (e.what ())
1327                                         )
1328                                 );
1329                 } catch (...) {
1330                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1331                 }
1332         }
1333
1334         /* An unhandled exception has occurred inside the main event loop */
1335         bool OnExceptionInMainLoop () override
1336         {
1337                 report_exception ();
1338                 /* This will terminate the program */
1339                 return false;
1340         }
1341
1342         void OnUnhandledException () override
1343         {
1344                 report_exception ();
1345         }
1346
1347         void idle ()
1348         {
1349                 signal_manager->ui_idle ();
1350         }
1351
1352         void config_failed_to_load ()
1353         {
1354                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1355         }
1356
1357         void config_warning (string m)
1358         {
1359                 message_dialog (_frame, std_to_wx (m));
1360         }
1361
1362         DOMFrame* _frame = nullptr;
1363         string _dcp_to_load;
1364         boost::optional<string> _stress;
1365 };
1366
1367 IMPLEMENT_APP (App)