Fix thinko in previous.
[dcpomatic.git] / src / tools / dcpomatic_player.cc
1 /*
2     Copyright (C) 2017-2018 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_signal_manager.h"
22 #include "wx/wx_util.h"
23 #include "wx/about_dialog.h"
24 #include "wx/report_problem_dialog.h"
25 #include "wx/film_viewer.h"
26 #include "wx/player_information.h"
27 #include "wx/update_dialog.h"
28 #include "wx/player_config_dialog.h"
29 #include "wx/verify_dcp_dialog.h"
30 #include "wx/standard_controls.h"
31 #include "wx/swaroop_controls.h"
32 #include "lib/cross.h"
33 #include "lib/config.h"
34 #include "lib/util.h"
35 #include "lib/internet.h"
36 #include "lib/update_checker.h"
37 #include "lib/compose.hpp"
38 #include "lib/dcp_content.h"
39 #include "lib/job_manager.h"
40 #include "lib/job.h"
41 #include "lib/film.h"
42 #include "lib/null_log.h"
43 #include "lib/video_content.h"
44 #include "lib/text_content.h"
45 #include "lib/ratio.h"
46 #include "lib/verify_dcp_job.h"
47 #include "lib/dcp_examiner.h"
48 #include "lib/examine_content_job.h"
49 #include "lib/server.h"
50 #include "lib/dcpomatic_socket.h"
51 #include "lib/scoped_temporary.h"
52 #include "lib/monitor_checker.h"
53 #include "lib/lock_file_checker.h"
54 #include "lib/ffmpeg_content.h"
55 #include "lib/dcpomatic_log.h"
56 #include <dcp/dcp.h>
57 #include <dcp/raw_convert.h>
58 #include <dcp/exceptions.h>
59 #include <wx/wx.h>
60 #include <wx/stdpaths.h>
61 #include <wx/splash.h>
62 #include <wx/cmdline.h>
63 #include <wx/preferences.h>
64 #include <wx/progdlg.h>
65 #include <wx/display.h>
66 #ifdef __WXOSX__
67 #include <ApplicationServices/ApplicationServices.h>
68 #endif
69 #include <boost/bind.hpp>
70 #include <iostream>
71
72 #ifdef check
73 #undef check
74 #endif
75
76 #define MAX_CPLS 32
77
78 using std::string;
79 using std::cout;
80 using std::list;
81 using std::exception;
82 using std::vector;
83 using boost::shared_ptr;
84 using boost::weak_ptr;
85 using boost::scoped_array;
86 using boost::optional;
87 using boost::dynamic_pointer_cast;
88 using boost::thread;
89 using boost::bind;
90
91 enum {
92         ID_file_open = 1,
93         ID_file_add_ov,
94         ID_file_add_kdm,
95         ID_file_history,
96         /* Allow spare IDs after _history for the recent files list */
97         ID_file_close = 100,
98         ID_view_cpl,
99         /* Allow spare IDs for CPLs */
100         ID_view_full_screen = 200,
101         ID_view_dual_screen,
102         ID_view_closed_captions,
103         ID_view_scale_appropriate,
104         ID_view_scale_full,
105         ID_view_scale_half,
106         ID_view_scale_quarter,
107         ID_help_report_a_problem,
108         ID_tools_verify,
109         ID_tools_check_for_updates,
110         /* IDs for shortcuts (with no associated menu item) */
111         ID_start_stop,
112         ID_back_frame,
113         ID_forward_frame
114 };
115
116 class DOMFrame : public wxFrame
117 {
118 public:
119         DOMFrame ()
120                 : wxFrame (0, -1, _("DCP-o-matic Player"))
121                 , _dual_screen (0)
122                 , _update_news_requested (false)
123                 , _info (0)
124                 , _mode (Config::instance()->player_mode())
125                 , _config_dialog (0)
126                 , _file_menu (0)
127                 , _history_items (0)
128                 , _history_position (0)
129                 , _history_separator (0)
130                 , _view_full_screen (0)
131                 , _view_dual_screen (0)
132         {
133                 dcpomatic_log.reset (new NullLog());
134
135 #if defined(DCPOMATIC_WINDOWS)
136                 maybe_open_console ();
137                 cout << "DCP-o-matic Player is starting." << "\n";
138 #endif
139
140                 wxMenuBar* bar = new wxMenuBar;
141                 setup_menu (bar);
142                 set_menu_sensitivity ();
143                 SetMenuBar (bar);
144
145 #ifdef DCPOMATIC_WINDOWS
146                 SetIcon (wxIcon (std_to_wx ("id")));
147 #endif
148
149                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
150                 update_from_config ();
151
152                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this), ID_file_open);
153                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_ov, this), ID_file_add_ov);
154                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_kdm, this), ID_file_add_kdm);
155                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1), ID_file_history, ID_file_history + HISTORY_SIZE);
156                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this), ID_file_close);
157                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this), wxID_EXIT);
158                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this), wxID_PREFERENCES);
159                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_full_screen, this), ID_view_full_screen);
160                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_dual_screen, this), ID_view_dual_screen);
161                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this), ID_view_closed_captions);
162                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_cpl, this, _1), ID_view_cpl, ID_view_cpl + MAX_CPLS);
163                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(0)), ID_view_scale_full);
164                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(1)), ID_view_scale_half);
165                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(2)), ID_view_scale_quarter);
166                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this), wxID_ABOUT);
167                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
168                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_verify, this), ID_tools_verify);
169                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
170
171                 /* Use a panel as the only child of the Frame so that we avoid
172                    the dark-grey background on Windows.
173                 */
174                 _overall_panel = new wxPanel (this, wxID_ANY);
175
176                 _viewer.reset (new FilmViewer (_overall_panel));
177 #ifdef DCPOMATIC_VARIANT_SWAROOP
178                 SwaroopControls* sc = new SwaroopControls (_overall_panel, _viewer);
179                 _controls = sc;
180                 sc->ResetFilm.connect (bind(&DOMFrame::reset_film_weak, this, _1));
181 #else
182                 _controls = new StandardControls (_overall_panel, _viewer, false);
183 #endif
184                 _viewer->set_dcp_decode_reduction (Config::instance()->decode_reduction ());
185                 _viewer->PlaybackPermitted.connect (bind(&DOMFrame::playback_permitted, this));
186                 _viewer->Started.connect (bind(&DOMFrame::playback_started, this, _1));
187                 _viewer->Seeked.connect (bind(&DOMFrame::playback_seeked, this, _1));
188                 _viewer->Stopped.connect (bind(&DOMFrame::playback_stopped, this, _1));
189                 _info = new PlayerInformation (_overall_panel, _viewer);
190                 setup_main_sizer (Config::instance()->player_mode());
191 #ifdef __WXOSX__
192                 int accelerators = 4;
193 #else
194                 int accelerators = 3;
195 #endif
196
197                 wxAcceleratorEntry* accel = new wxAcceleratorEntry[accelerators];
198                 accel[0].Set(wxACCEL_NORMAL, WXK_SPACE, ID_start_stop);
199                 accel[1].Set(wxACCEL_NORMAL, WXK_LEFT, ID_back_frame);
200                 accel[2].Set(wxACCEL_NORMAL, WXK_RIGHT, ID_forward_frame);
201 #ifdef __WXOSX__
202                 accel[3].Set(wxACCEL_CTRL, static_cast<int>('W'), ID_file_close);
203 #endif
204                 wxAcceleratorTable accel_table (accelerators, accel);
205                 SetAcceleratorTable (accel_table);
206                 delete[] accel;
207
208                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::start_stop_pressed, this), ID_start_stop);
209                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::back_frame, this), ID_back_frame);
210                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::forward_frame, this), ID_forward_frame);
211
212                 reset_film ();
213
214                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
215 #ifdef DCPOMATIC_VARIANT_SWAROOP
216                 MonitorChecker::instance()->StateChanged.connect(boost::bind(&DOMFrame::monitor_checker_state_changed, this));
217                 MonitorChecker::instance()->run ();
218                 LockFileChecker::instance()->StateChanged.connect(boost::bind(&DOMFrame::lock_checker_state_changed, this));
219                 LockFileChecker::instance()->run ();
220 #endif
221                 setup_screen ();
222
223 #ifdef DCPOMATIC_VARIANT_SWAROOP
224                 sc->check_restart ();
225 #endif
226         }
227
228 #ifdef DCPOMATIC_VARIANT_SWAROOP
229         void monitor_checker_state_changed ()
230         {
231                 if (!MonitorChecker::instance()->ok()) {
232                         _viewer->stop ();
233                         error_dialog (this, _("The required display devices are not connected correctly."));
234                 }
235         }
236
237         void lock_checker_state_changed ()
238         {
239                 if (!LockFileChecker::instance()->ok()) {
240                         _viewer->stop ();
241                         error_dialog (this, _("The lock file is not present."));
242                 }
243         }
244 #endif
245
246         void setup_main_sizer (Config::PlayerMode mode)
247         {
248                 wxSizer* main_sizer = new wxBoxSizer (wxVERTICAL);
249                 if (mode != Config::PLAYER_MODE_DUAL) {
250                         main_sizer->Add (_viewer->panel(), 1, wxEXPAND | wxALIGN_CENTER_VERTICAL);
251                 }
252                 main_sizer->Add (_controls, mode == Config::PLAYER_MODE_DUAL ? 1 : 0, wxEXPAND | wxALL, 6);
253                 main_sizer->Add (_info, 0, wxEXPAND | wxALL, 6);
254                 _overall_panel->SetSizer (main_sizer);
255                 _overall_panel->Layout ();
256         }
257
258         bool playback_permitted ()
259         {
260 #ifdef DCPOMATIC_VARIANT_SWAROOP
261                 if (!MonitorChecker::instance()->ok()) {
262                         error_dialog (this, _("The required display devices are not connected correctly."));
263                         return false;
264                 }
265                 if (!LockFileChecker::instance()->ok()) {
266                         error_dialog (this, _("The lock file is not present."));
267                         return false;
268                 }
269 #endif
270                 if (!_film || !Config::instance()->respect_kdm_validity_periods()) {
271                         return true;
272                 }
273
274                 bool ok = true;
275                 BOOST_FOREACH (shared_ptr<Content> i, _film->content()) {
276                         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent>(i);
277                         if (d && !d->kdm_timing_window_valid()) {
278                                 ok = false;
279                         }
280                 }
281
282                 if (!ok) {
283                         error_dialog (this, _("The KDM does not allow playback of this content at this time."));
284                 }
285
286                 return ok;
287         }
288
289         void playback_started (DCPTime time)
290         {
291                 optional<boost::filesystem::path> log = Config::instance()->player_log_file();
292                 if (!log) {
293                         return;
294                 }
295
296                 FILE* f = fopen_boost(*log, "a");
297
298                 /* XXX: this only logs the first piece of content; probably should be each piece? */
299
300                 shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent>(_film->content().front());
301                 if (dcp) {
302                         DCPExaminer ex (dcp);
303                         shared_ptr<dcp::CPL> playing_cpl;
304                         BOOST_FOREACH (shared_ptr<dcp::CPL> i, ex.cpls()) {
305                                 if (!dcp->cpl() || i->id() == *dcp->cpl()) {
306                                         playing_cpl = i;
307                                 }
308                         }
309                         DCPOMATIC_ASSERT (playing_cpl);
310
311                         fprintf (
312                                 f,
313                                 "%s playback-started %s %s %s\n",
314                                 dcp::LocalTime().as_string().c_str(),
315                                 time.timecode(_film->video_frame_rate()).c_str(),
316                                 dcp->directories().front().string().c_str(),
317                                 playing_cpl->annotation_text().c_str()
318                                 );
319                 }
320
321                 shared_ptr<FFmpegContent> ffmpeg = dynamic_pointer_cast<FFmpegContent>(_film->content().front());
322                 if (ffmpeg) {
323                         fprintf (
324                                 f,
325                                 "%s playback-started %s %s\n",
326                                 dcp::LocalTime().as_string().c_str(),
327                                 time.timecode(_film->video_frame_rate()).c_str(),
328                                 ffmpeg->path(0).string().c_str()
329                                 );
330                 }
331
332                 fclose (f);
333         }
334
335         void playback_seeked (DCPTime time)
336         {
337                 optional<boost::filesystem::path> log = Config::instance()->player_log_file();
338                 if (!log) {
339                         return;
340                 }
341
342                 FILE* f = fopen_boost(*log, "a");
343                 fprintf (f, "%s playback-seeked %s\n", dcp::LocalTime().as_string().c_str(), time.timecode(_film->video_frame_rate()).c_str());
344                 fclose (f);
345         }
346
347         void playback_stopped (DCPTime time)
348         {
349 #ifdef DCPOMATIC_VARIANT_SWAROOP
350                 try {
351                         boost::filesystem::remove (Config::path("position"));
352                 } catch (...) {
353                         /* Never mind */
354                 }
355 #endif
356
357                 optional<boost::filesystem::path> log = Config::instance()->player_log_file();
358                 if (!log) {
359                         return;
360                 }
361
362                 FILE* f = fopen_boost(*log, "a");
363                 fprintf (f, "%s playback-stopped %s\n", dcp::LocalTime().as_string().c_str(), time.timecode(_film->video_frame_rate()).c_str());
364                 fclose (f);
365         }
366
367         void set_decode_reduction (optional<int> reduction)
368         {
369                 _viewer->set_dcp_decode_reduction (reduction);
370                 _info->triggered_update ();
371                 Config::instance()->set_decode_reduction (reduction);
372         }
373
374         void load_dcp (boost::filesystem::path dir)
375         {
376                 DCPOMATIC_ASSERT (_film);
377
378                 reset_film ();
379                 try {
380                         shared_ptr<DCPContent> dcp (new DCPContent(dir));
381                         _film->examine_and_add_content (dcp, true);
382                         bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content"));
383                         if (!ok || !report_errors_from_last_job(this)) {
384                                 return;
385                         }
386 #ifndef DCPOMATIC_VARIANT_SWAROOP
387                         Config::instance()->add_to_player_history (dir);
388 #endif
389                 } catch (dcp::DCPReadError& e) {
390                         error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what()));
391                 }
392         }
393
394         void reset_film_weak (weak_ptr<Film> weak_film)
395         {
396                 shared_ptr<Film> film = weak_film.lock ();
397                 if (film) {
398                         reset_film (film);
399                 }
400         }
401
402         void reset_film (shared_ptr<Film> film = shared_ptr<Film>(new Film(optional<boost::filesystem::path>())))
403         {
404                 _film = film;
405                 _viewer->set_film (_film);
406                 _controls->set_film (_film);
407                 _film->Change.connect (bind(&DOMFrame::film_changed, this, _1, _2));
408                 _info->triggered_update ();
409         }
410
411         void film_changed (ChangeType type, Film::Property property)
412         {
413                 if (type != CHANGE_TYPE_DONE || property != Film::CONTENT) {
414                         return;
415                 }
416
417                 if (_viewer->playing ()) {
418                         _viewer->stop ();
419                 }
420
421                 /* Start off as Flat */
422                 _film->set_container (Ratio::from_id("185"));
423
424                 BOOST_FOREACH (shared_ptr<Content> i, _film->content()) {
425                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent>(i);
426
427                         BOOST_FOREACH (shared_ptr<TextContent> j, i->text) {
428                                 j->set_use (true);
429                         }
430
431                         if (i->video) {
432                                 Ratio const * r = Ratio::nearest_from_ratio(i->video->size().ratio());
433                                 if (r->id() == "239") {
434                                         /* Any scope content means we use scope */
435                                         _film->set_container(r);
436                                 }
437                         }
438
439                         /* Any 3D content means we use 3D mode */
440                         if (i->video && i->video->frame_type() != VIDEO_FRAME_TYPE_2D) {
441                                 _film->set_three_d (true);
442                         }
443                 }
444
445                 _viewer->seek (DCPTime(), true);
446                 _info->triggered_update ();
447
448                 set_menu_sensitivity ();
449
450                 wxMenuItemList old = _cpl_menu->GetMenuItems();
451                 for (wxMenuItemList::iterator i = old.begin(); i != old.end(); ++i) {
452                         _cpl_menu->Remove (*i);
453                 }
454
455                 if (_film->content().size() == 1) {
456                         /* Offer a CPL menu */
457                         shared_ptr<DCPContent> first = dynamic_pointer_cast<DCPContent>(_film->content().front());
458                         if (first) {
459                                 DCPExaminer ex (first);
460                                 int id = ID_view_cpl;
461                                 BOOST_FOREACH (shared_ptr<dcp::CPL> i, ex.cpls()) {
462                                         wxMenuItem* j = _cpl_menu->AppendRadioItem(
463                                                 id,
464                                                 wxString::Format("%s (%s)", std_to_wx(i->annotation_text()).data(), std_to_wx(i->id()).data())
465                                                 );
466                                         j->Check(!first->cpl() || i->id() == *first->cpl());
467                                         ++id;
468                                 }
469                         }
470                 }
471         }
472
473 private:
474
475         void setup_menu (wxMenuBar* m)
476         {
477                 _file_menu = new wxMenu;
478                 _file_menu->Append (ID_file_open, _("&Open...\tCtrl-O"));
479                 _file_add_ov = _file_menu->Append (ID_file_add_ov, _("&Add OV..."));
480                 _file_add_kdm = _file_menu->Append (ID_file_add_kdm, _("&Add KDM..."));
481
482                 _history_position = _file_menu->GetMenuItems().GetCount();
483
484                 _file_menu->AppendSeparator ();
485                 _file_menu->Append (ID_file_close, _("&Close"));
486                 _file_menu->AppendSeparator ();
487
488 #ifdef __WXOSX__
489                 _file_menu->Append (wxID_EXIT, _("&Exit"));
490 #else
491                 _file_menu->Append (wxID_EXIT, _("&Quit"));
492 #endif
493
494 #ifdef __WXOSX__
495                 wxMenuItem* prefs = _file_menu->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
496 #else
497                 wxMenu* edit = new wxMenu;
498                 wxMenuItem* prefs = edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
499 #endif
500
501                 prefs->Enable (Config::instance()->have_write_permission());
502
503                 _cpl_menu = new wxMenu;
504
505                 wxMenu* view = new wxMenu;
506                 optional<int> c = Config::instance()->decode_reduction();
507                 _view_cpl = view->Append(ID_view_cpl, _("CPL"), _cpl_menu);
508                 view->AppendSeparator();
509 #ifndef DCPOMATIC_VARIANT_SWAROOP
510                 _view_full_screen = view->AppendCheckItem(ID_view_full_screen, _("Full screen\tF11"));
511                 _view_dual_screen = view->AppendCheckItem(ID_view_dual_screen, _("Dual screen\tShift+F11"));
512 #endif
513                 setup_menu ();
514                 view->AppendSeparator();
515                 view->Append(ID_view_closed_captions, _("Closed captions..."));
516                 view->AppendSeparator();
517                 view->AppendRadioItem(ID_view_scale_appropriate, _("Set decode resolution to match display"))->Check(!static_cast<bool>(c));
518                 view->AppendRadioItem(ID_view_scale_full, _("Decode at full resolution"))->Check(c && c.get() == 0);
519                 view->AppendRadioItem(ID_view_scale_half, _("Decode at half resolution"))->Check(c && c.get() == 1);
520                 view->AppendRadioItem(ID_view_scale_quarter, _("Decode at quarter resolution"))->Check(c && c.get() == 2);
521
522                 wxMenu* tools = new wxMenu;
523                 _tools_verify = tools->Append (ID_tools_verify, _("Verify DCP"));
524                 tools->AppendSeparator ();
525                 tools->Append (ID_tools_check_for_updates, _("Check for updates"));
526
527                 wxMenu* help = new wxMenu;
528 #ifdef __WXOSX__
529                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
530 #else
531                 help->Append (wxID_ABOUT, _("About"));
532 #endif
533                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
534
535                 m->Append (_file_menu, _("&File"));
536 #ifndef __WXOSX__
537                 m->Append (edit, _("&Edit"));
538 #endif
539                 m->Append (view, _("&View"));
540                 m->Append (tools, _("&Tools"));
541                 m->Append (help, _("&Help"));
542         }
543
544         void file_open ()
545         {
546                 wxString d = wxStandardPaths::Get().GetDocumentsDir();
547                 if (Config::instance()->last_player_load_directory()) {
548                         d = std_to_wx (Config::instance()->last_player_load_directory()->string());
549                 }
550
551                 wxDirDialog* c = new wxDirDialog (this, _("Select DCP to open"), d, wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST);
552
553                 int r;
554                 while (true) {
555                         r = c->ShowModal ();
556                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
557                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
558                         } else {
559                                 break;
560                         }
561                 }
562
563                 if (r == wxID_OK) {
564                         boost::filesystem::path const dcp (wx_to_std (c->GetPath ()));
565                         load_dcp (dcp);
566                         Config::instance()->set_last_player_load_directory (dcp.parent_path());
567                 }
568
569                 c->Destroy ();
570         }
571
572         void file_add_ov ()
573         {
574                 wxDirDialog* c = new wxDirDialog (
575                         this,
576                         _("Select DCP to open as OV"),
577                         wxStandardPaths::Get().GetDocumentsDir(),
578                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
579                         );
580
581                 int r;
582                 while (true) {
583                         r = c->ShowModal ();
584                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
585                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
586                         } else {
587                                 break;
588                         }
589                 }
590
591                 if (r == wxID_OK) {
592                         DCPOMATIC_ASSERT (_film);
593                         shared_ptr<DCPContent> dcp = boost::dynamic_pointer_cast<DCPContent>(_film->content().front());
594                         DCPOMATIC_ASSERT (dcp);
595                         dcp->add_ov (wx_to_std(c->GetPath()));
596                         JobManager::instance()->add(shared_ptr<Job>(new ExamineContentJob (_film, dcp)));
597                         bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content"));
598                         if (!ok || !report_errors_from_last_job(this)) {
599                                 return;
600                         }
601                         BOOST_FOREACH (shared_ptr<TextContent> i, dcp->text) {
602                                 i->set_use (true);
603                         }
604                         if (dcp->video) {
605                                 Ratio const * r = Ratio::nearest_from_ratio(dcp->video->size().ratio());
606                                 if (r) {
607                                         _film->set_container(r);
608                                 }
609                         }
610                 }
611
612                 c->Destroy ();
613                 _info->triggered_update ();
614         }
615
616         void file_add_kdm ()
617         {
618                 wxFileDialog* d = new wxFileDialog (this, _("Select KDM"));
619
620                 if (d->ShowModal() == wxID_OK) {
621                         DCPOMATIC_ASSERT (_film);
622                         shared_ptr<DCPContent> dcp = boost::dynamic_pointer_cast<DCPContent>(_film->content().front());
623                         DCPOMATIC_ASSERT (dcp);
624                         try {
625                                 dcp->add_kdm (dcp::EncryptedKDM (dcp::file_to_string (wx_to_std (d->GetPath ()), MAX_KDM_SIZE)));
626                                 dcp->examine (_film, shared_ptr<Job>());
627                         } catch (exception& e) {
628                                 error_dialog (this, wxString::Format (_("Could not load KDM.")), std_to_wx(e.what()));
629                                 d->Destroy ();
630                                 return;
631                         }
632                 }
633
634                 d->Destroy ();
635                 _info->triggered_update ();
636         }
637
638         void file_history (wxCommandEvent& event)
639         {
640                 vector<boost::filesystem::path> history = Config::instance()->player_history ();
641                 int n = event.GetId() - ID_file_history;
642                 if (n >= 0 && n < static_cast<int> (history.size ())) {
643                         load_dcp (history[n]);
644                 }
645         }
646
647         void file_close ()
648         {
649                 reset_film ();
650                 _info->triggered_update ();
651                 set_menu_sensitivity ();
652         }
653
654         void file_exit ()
655         {
656                 Close ();
657         }
658
659         void edit_preferences ()
660         {
661                 if (!Config::instance()->have_write_permission()) {
662                         return;
663                 }
664
665                 if (!_config_dialog) {
666                         _config_dialog = create_player_config_dialog ();
667                 }
668                 _config_dialog->Show (this);
669         }
670
671         void view_cpl (wxCommandEvent& ev)
672         {
673                 shared_ptr<DCPContent> dcp = boost::dynamic_pointer_cast<DCPContent>(_film->content().front());
674                 DCPOMATIC_ASSERT (dcp);
675                 DCPExaminer ex (dcp);
676                 int id = ev.GetId() - ID_view_cpl;
677                 DCPOMATIC_ASSERT (id >= 0);
678                 DCPOMATIC_ASSERT (id < int(ex.cpls().size()));
679                 list<shared_ptr<dcp::CPL> > cpls = ex.cpls();
680                 list<shared_ptr<dcp::CPL> >::iterator i = cpls.begin();
681                 while (id > 0) {
682                         ++i;
683                         --id;
684                 }
685
686                 dcp->set_cpl ((*i)->id());
687                 dcp->examine (_film, shared_ptr<Job>());
688         }
689
690         void view_full_screen ()
691         {
692                 if (_mode == Config::PLAYER_MODE_FULL) {
693                         _mode = Config::PLAYER_MODE_WINDOW;
694                 } else {
695                         _mode = Config::PLAYER_MODE_FULL;
696                 }
697                 setup_screen ();
698                 setup_menu ();
699         }
700
701         void view_dual_screen ()
702         {
703                 if (_mode == Config::PLAYER_MODE_DUAL) {
704                         _mode = Config::PLAYER_MODE_WINDOW;
705                 } else {
706                         _mode = Config::PLAYER_MODE_DUAL;
707                 }
708                 setup_screen ();
709                 setup_menu ();
710         }
711
712         void setup_menu ()
713         {
714                 if (_view_full_screen) {
715                         _view_full_screen->Check (_mode == Config::PLAYER_MODE_FULL);
716                 }
717                 if (_view_dual_screen) {
718                         _view_dual_screen->Check (_mode == Config::PLAYER_MODE_DUAL);
719                 }
720         }
721
722         void setup_screen ()
723         {
724                 _controls->Show (_mode != Config::PLAYER_MODE_FULL);
725                 _info->Show (_mode != Config::PLAYER_MODE_FULL);
726                 _overall_panel->SetBackgroundColour (_mode == Config::PLAYER_MODE_FULL ? wxColour(0, 0, 0) : wxNullColour);
727                 ShowFullScreen (_mode == Config::PLAYER_MODE_FULL);
728                 _viewer->set_pad_black (_mode != Config::PLAYER_MODE_WINDOW);
729
730                 if (_mode == Config::PLAYER_MODE_DUAL) {
731                         _dual_screen = new wxFrame (this, wxID_ANY, wxT(""));
732                         _dual_screen->SetBackgroundColour (wxColour(0, 0, 0));
733                         _dual_screen->ShowFullScreen (true);
734                         _viewer->panel()->Reparent (_dual_screen);
735                         _dual_screen->Show ();
736                         if (wxDisplay::GetCount() > 1) {
737                                 switch (Config::instance()->image_display()) {
738                                 case 0:
739                                         _dual_screen->Move (0, 0);
740                                         Move (wxDisplay(0).GetClientArea().GetWidth(), 0);
741                                         break;
742                                 case 1:
743                                         _dual_screen->Move (wxDisplay(0).GetClientArea().GetWidth(), 0);
744                                         // (0, 0) doesn't seem to work for some strange reason
745                                         Move (8, 8);
746                                         break;
747                                 }
748                         }
749                 } else {
750                         if (_dual_screen) {
751                                 _viewer->panel()->Reparent (_overall_panel);
752                                 _dual_screen->Destroy ();
753                                 _dual_screen = 0;
754                         }
755                 }
756
757                 setup_main_sizer (_mode);
758         }
759
760         void view_closed_captions ()
761         {
762                 _viewer->show_closed_captions ();
763         }
764
765         void tools_verify ()
766         {
767                 shared_ptr<DCPContent> dcp = boost::dynamic_pointer_cast<DCPContent>(_film->content().front());
768                 DCPOMATIC_ASSERT (dcp);
769
770                 JobManager* jm = JobManager::instance ();
771                 jm->add (shared_ptr<Job> (new VerifyDCPJob (dcp->directories())));
772                 bool const ok = display_progress (_("DCP-o-matic Player"), _("Verifying DCP"));
773                 if (!ok) {
774                         return;
775                 }
776
777                 DCPOMATIC_ASSERT (!jm->get().empty());
778                 shared_ptr<VerifyDCPJob> last = dynamic_pointer_cast<VerifyDCPJob> (jm->get().back());
779                 DCPOMATIC_ASSERT (last);
780
781                 VerifyDCPDialog* d = new VerifyDCPDialog (this, last);
782                 d->ShowModal ();
783                 d->Destroy ();
784         }
785
786         void tools_check_for_updates ()
787         {
788                 UpdateChecker::instance()->run ();
789                 _update_news_requested = true;
790         }
791
792         void help_about ()
793         {
794                 AboutDialog* d = new AboutDialog (this);
795                 d->ShowModal ();
796                 d->Destroy ();
797         }
798
799         void help_report_a_problem ()
800         {
801                 ReportProblemDialog* d = new ReportProblemDialog (this);
802                 if (d->ShowModal () == wxID_OK) {
803                         d->report ();
804                 }
805                 d->Destroy ();
806         }
807
808         void update_checker_state_changed ()
809         {
810                 UpdateChecker* uc = UpdateChecker::instance ();
811
812                 bool const announce =
813                         _update_news_requested ||
814                         (uc->stable() && Config::instance()->check_for_updates()) ||
815                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
816
817                 _update_news_requested = false;
818
819                 if (!announce) {
820                         return;
821                 }
822
823                 if (uc->state() == UpdateChecker::YES) {
824                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
825                         dialog->ShowModal ();
826                         dialog->Destroy ();
827                 } else if (uc->state() == UpdateChecker::FAILED) {
828                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
829                 } else {
830                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
831                 }
832
833                 _update_news_requested = false;
834         }
835
836         void config_changed (Config::Property prop)
837         {
838                 /* Instantly save any config changes when using the player GUI */
839                 try {
840                         Config::instance()->write_config();
841                 } catch (FileError& e) {
842                         if (prop != Config::HISTORY) {
843                                 error_dialog (
844                                         this,
845                                         wxString::Format(
846                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
847                                                 std_to_wx(e.file().string())
848                                                 )
849                                         );
850                         }
851                 } catch (exception& e) {
852                         error_dialog (
853                                 this,
854                                 _("Could not write to config file.  Your changes have not been saved.")
855                                 );
856                 }
857
858                 update_from_config ();
859         }
860
861         void update_from_config ()
862         {
863                 for (int i = 0; i < _history_items; ++i) {
864                         delete _file_menu->Remove (ID_file_history + i);
865                 }
866
867                 if (_history_separator) {
868                         _file_menu->Remove (_history_separator);
869                 }
870                 delete _history_separator;
871                 _history_separator = 0;
872
873                 int pos = _history_position;
874
875                 vector<boost::filesystem::path> history = Config::instance()->player_history ();
876
877                 if (!history.empty ()) {
878                         _history_separator = _file_menu->InsertSeparator (pos++);
879                 }
880
881                 for (size_t i = 0; i < history.size(); ++i) {
882                         string s;
883                         if (i < 9) {
884                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
885                         } else {
886                                 s = history[i].string();
887                         }
888                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
889                 }
890
891                 _history_items = history.size ();
892         }
893
894         void set_menu_sensitivity ()
895         {
896                 _tools_verify->Enable (static_cast<bool>(_film));
897                 _file_add_ov->Enable (static_cast<bool>(_film));
898                 _file_add_kdm->Enable (static_cast<bool>(_film));
899                 _view_cpl->Enable (static_cast<bool>(_film));
900         }
901
902         void start_stop_pressed ()
903         {
904                 if (_viewer->playing()) {
905                         _viewer->stop();
906                 } else {
907                         _viewer->start();
908                 }
909         }
910
911         void back_frame ()
912         {
913                 _viewer->seek_by (-_viewer->one_video_frame(), true);
914         }
915
916         void forward_frame ()
917         {
918                 _viewer->seek_by (_viewer->one_video_frame(), true);
919         }
920
921 private:
922
923         wxFrame* _dual_screen;
924         bool _update_news_requested;
925         PlayerInformation* _info;
926         Config::PlayerMode _mode;
927         wxPreferencesEditor* _config_dialog;
928         wxPanel* _overall_panel;
929         wxMenu* _file_menu;
930         wxMenuItem* _view_cpl;
931         wxMenu* _cpl_menu;
932         int _history_items;
933         int _history_position;
934         wxMenuItem* _history_separator;
935         shared_ptr<FilmViewer> _viewer;
936         Controls* _controls;
937         boost::shared_ptr<Film> _film;
938         boost::signals2::scoped_connection _config_changed_connection;
939         wxMenuItem* _file_add_ov;
940         wxMenuItem* _file_add_kdm;
941         wxMenuItem* _tools_verify;
942         wxMenuItem* _view_full_screen;
943         wxMenuItem* _view_dual_screen;
944 };
945
946 static const wxCmdLineEntryDesc command_line_description[] = {
947         { wxCMD_LINE_PARAM, 0, 0, "DCP to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
948         { wxCMD_LINE_OPTION, "c", "config", "Directory containing config.xml", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
949         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
950 };
951
952 class PlayServer : public Server
953 {
954 public:
955         explicit PlayServer (DOMFrame* frame)
956                 : Server (PLAYER_PLAY_PORT)
957                 , _frame (frame)
958         {}
959
960         void handle (shared_ptr<Socket> socket)
961         {
962                 try {
963                         int const length = socket->read_uint32 ();
964                         scoped_array<char> buffer (new char[length]);
965                         socket->read (reinterpret_cast<uint8_t*> (buffer.get()), length);
966                         string s (buffer.get());
967                         signal_manager->when_idle (bind (&DOMFrame::load_dcp, _frame, s));
968                         socket->write (reinterpret_cast<uint8_t const *> ("OK"), 3);
969                 } catch (...) {
970
971                 }
972         }
973
974 private:
975         DOMFrame* _frame;
976 };
977
978 /** @class App
979  *  @brief The magic App class for wxWidgets.
980  */
981 class App : public wxApp
982 {
983 public:
984         App ()
985                 : wxApp ()
986                 , _frame (0)
987         {}
988
989 private:
990
991         bool OnInit ()
992         {
993                 wxSplashScreen* splash = 0;
994                 try {
995                         wxInitAllImageHandlers ();
996
997                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
998                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
999
1000                         splash = maybe_show_splash ();
1001
1002                         SetAppName (_("DCP-o-matic Player"));
1003
1004                         if (!wxApp::OnInit()) {
1005                                 return false;
1006                         }
1007
1008 #ifdef DCPOMATIC_LINUX
1009                         unsetenv ("UBUNTU_MENUPROXY");
1010 #endif
1011
1012 #ifdef __WXOSX__
1013                         ProcessSerialNumber serial;
1014                         GetCurrentProcess (&serial);
1015                         TransformProcessType (&serial, kProcessTransformToForegroundApplication);
1016 #endif
1017
1018                         dcpomatic_setup_path_encoding ();
1019
1020                         /* Enable i18n; this will create a Config object
1021                            to look for a force-configured language.  This Config
1022                            object will be wrong, however, because dcpomatic_setup
1023                            hasn't yet been called and there aren't any filters etc.
1024                            set up yet.
1025                         */
1026                         dcpomatic_setup_i18n ();
1027
1028                         /* Set things up, including filters etc.
1029                            which will now be internationalised correctly.
1030                         */
1031                         dcpomatic_setup ();
1032
1033                         /* Force the configuration to be re-loaded correctly next
1034                            time it is needed.
1035                         */
1036                         Config::drop ();
1037
1038                         signal_manager = new wxSignalManager (this);
1039
1040                         _frame = new DOMFrame ();
1041                         SetTopWindow (_frame);
1042                         _frame->Maximize ();
1043                         if (splash) {
1044                                 splash->Destroy ();
1045                                 splash = 0;
1046                         }
1047                         _frame->Show ();
1048
1049                         PlayServer* server = new PlayServer (_frame);
1050                         new thread (boost::bind (&PlayServer::run, server));
1051
1052                         if (!_dcp_to_load.empty() && boost::filesystem::is_directory (_dcp_to_load)) {
1053                                 try {
1054                                         _frame->load_dcp (_dcp_to_load);
1055                                 } catch (exception& e) {
1056                                         error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load DCP %1.")), _dcp_to_load)), std_to_wx(e.what()));
1057                                 }
1058                         }
1059
1060                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
1061
1062                         if (Config::instance()->check_for_updates ()) {
1063                                 UpdateChecker::instance()->run ();
1064                         }
1065                 }
1066                 catch (exception& e)
1067                 {
1068                         if (splash) {
1069                                 splash->Destroy ();
1070                         }
1071                         error_dialog (0, _("DCP-o-matic Player could not start."), std_to_wx(e.what()));
1072                 }
1073
1074                 return true;
1075         }
1076
1077         void OnInitCmdLine (wxCmdLineParser& parser)
1078         {
1079                 parser.SetDesc (command_line_description);
1080                 parser.SetSwitchChars (wxT ("-"));
1081         }
1082
1083         bool OnCmdLineParsed (wxCmdLineParser& parser)
1084         {
1085                 if (parser.GetParamCount() > 0) {
1086                         _dcp_to_load = wx_to_std (parser.GetParam (0));
1087                 }
1088
1089                 wxString config;
1090                 if (parser.Found("c", &config)) {
1091                         Config::override_path = wx_to_std (config);
1092                 }
1093
1094                 return true;
1095         }
1096
1097         void report_exception ()
1098         {
1099                 try {
1100                         throw;
1101                 } catch (FileError& e) {
1102                         error_dialog (
1103                                 0,
1104                                 wxString::Format (
1105                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1106                                         std_to_wx (e.what()),
1107                                         std_to_wx (e.file().string().c_str ())
1108                                         )
1109                                 );
1110                 } catch (exception& e) {
1111                         error_dialog (
1112                                 0,
1113                                 wxString::Format (
1114                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1115                                         std_to_wx (e.what ())
1116                                         )
1117                                 );
1118                 } catch (...) {
1119                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1120                 }
1121         }
1122
1123         /* An unhandled exception has occurred inside the main event loop */
1124         bool OnExceptionInMainLoop ()
1125         {
1126                 report_exception ();
1127                 /* This will terminate the program */
1128                 return false;
1129         }
1130
1131         void OnUnhandledException ()
1132         {
1133                 report_exception ();
1134         }
1135
1136         void idle ()
1137         {
1138                 signal_manager->ui_idle ();
1139         }
1140
1141         void config_failed_to_load ()
1142         {
1143                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1144         }
1145
1146         void config_warning (string m)
1147         {
1148                 message_dialog (_frame, std_to_wx (m));
1149         }
1150
1151         DOMFrame* _frame;
1152         string _dcp_to_load;
1153 };
1154
1155 IMPLEMENT_APP (App)