Add a progress dialog when opening DCPs.
[dcpomatic.git] / src / tools / dcpomatic_player.cc
1 /*
2     Copyright (C) 2017 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 "lib/cross.h"
22 #include "lib/config.h"
23 #include "lib/util.h"
24 #include "lib/update_checker.h"
25 #include "lib/compose.hpp"
26 #include "lib/dcp_content.h"
27 #include "lib/job_manager.h"
28 #include "lib/job.h"
29 #include "lib/video_content.h"
30 #include "lib/subtitle_content.h"
31 #include "wx/wx_signal_manager.h"
32 #include "wx/wx_util.h"
33 #include "wx/about_dialog.h"
34 #include "wx/report_problem_dialog.h"
35 #include "wx/film_viewer.h"
36 #include "wx/player_information.h"
37 #include "wx/update_dialog.h"
38 #include "wx/player_config_dialog.h"
39 #include <wx/wx.h>
40 #include <wx/stdpaths.h>
41 #include <wx/splash.h>
42 #include <wx/cmdline.h>
43 #include <wx/preferences.h>
44 #include <wx/progdlg.h>
45 #ifdef __WXOSX__
46 #include <ApplicationServices/ApplicationServices.h>
47 #endif
48 #include <boost/bind.hpp>
49 #include <iostream>
50
51 #ifdef check
52 #undef check
53 #endif
54
55 using std::string;
56 using std::cout;
57 using std::exception;
58 using boost::shared_ptr;
59 using boost::optional;
60
61 enum {
62         ID_file_open = 1,
63         ID_file_add_ov,
64         ID_file_add_kdm,
65         ID_view_scale_appropriate,
66         ID_view_scale_full,
67         ID_view_scale_half,
68         ID_view_scale_quarter,
69         ID_help_report_a_problem,
70         ID_tools_check_for_updates,
71 };
72
73 class DOMFrame : public wxFrame
74 {
75 public:
76         DOMFrame ()
77                 : wxFrame (0, -1, _("DCP-o-matic Player"))
78                 , _update_news_requested (false)
79                 , _info (0)
80                 , _config_dialog (0)
81                 , _viewer (0)
82         {
83
84 #if defined(DCPOMATIC_WINDOWS)
85                 maybe_open_console ();
86                 cout << "DCP-o-matic Player is starting." << "\n";
87 #endif
88
89                 wxMenuBar* bar = new wxMenuBar;
90                 setup_menu (bar);
91                 SetMenuBar (bar);
92
93 #ifdef DCPOMATIC_WINDOWS
94                 SetIcon (wxIcon (std_to_wx ("id")));
95 #endif
96
97                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this));
98
99                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this), ID_file_open);
100                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_ov, this), ID_file_add_ov);
101                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_add_kdm, this), ID_file_add_kdm);
102                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this), wxID_EXIT);
103                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this), wxID_PREFERENCES);
104                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>()), ID_view_scale_appropriate);
105                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(0)), ID_view_scale_full);
106                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(1)), ID_view_scale_half);
107                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::set_decode_reduction, this, optional<int>(2)), ID_view_scale_quarter);
108                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this), wxID_ABOUT);
109                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
110                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
111
112                 /* Use a panel as the only child of the Frame so that we avoid
113                    the dark-grey background on Windows.
114                 */
115                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
116
117                 _viewer = new FilmViewer (overall_panel, false, false);
118                 _info = new PlayerInformation (overall_panel, _viewer);
119                 wxSizer* main_sizer = new wxBoxSizer (wxVERTICAL);
120                 main_sizer->Add (_viewer, 1, wxEXPAND | wxALL, 6);
121                 main_sizer->Add (_info, 0, wxEXPAND | wxALL, 6);
122                 overall_panel->SetSizer (main_sizer);
123
124                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
125         }
126
127         void set_decode_reduction (optional<int> reduction)
128         {
129                 _viewer->set_dcp_decode_reduction (reduction);
130         }
131
132         void load_dcp (boost::filesystem::path dir)
133         {
134                 _film.reset (new Film (optional<boost::filesystem::path>()));
135                 shared_ptr<DCPContent> dcp (new DCPContent (_film, dir));
136                 _film->examine_and_add_content (dcp, true);
137
138                 JobManager* jm = JobManager::instance ();
139
140                 wxProgressDialog* progress = new wxProgressDialog (_("DCP-o-matic Player"), _("Loading DCP"));
141
142                 while (jm->work_to_do() || signal_manager->ui_idle()) {
143                         dcpomatic_sleep (1);
144                         progress->Pulse ();
145                 }
146
147                 progress->Destroy ();
148
149                 DCPOMATIC_ASSERT (!jm->get().empty());
150
151                 shared_ptr<Job> last = jm->get().back();
152                 if (last->finished_in_error()) {
153                         error_dialog (this, std_to_wx (last->error_summary()) + ".\n");
154                         return;
155                 }
156
157                 if (dcp->subtitle) {
158                         dcp->subtitle->set_use (true);
159                 }
160
161                 _viewer->set_film (_film);
162                 _info->triggered_update ();
163         }
164
165 private:
166
167         void setup_menu (wxMenuBar* m)
168         {
169                 wxMenu* file = new wxMenu;
170                 file->Append (ID_file_open, _("&Open...\tCtrl-O"));
171                 file->Append (ID_file_add_ov, _("&Add OV..."));
172                 file->Append (ID_file_add_kdm, _("&Add KDM..."));
173
174 #ifdef __WXOSX__
175                 file->Append (wxID_EXIT, _("&Exit"));
176 #else
177                 file->Append (wxID_EXIT, _("&Quit"));
178 #endif
179
180 #ifdef __WXOSX__
181                 file->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
182 #else
183                 wxMenu* edit = new wxMenu;
184                 edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
185 #endif
186
187                 wxMenu* view = new wxMenu;
188                 view->AppendRadioItem (ID_view_scale_appropriate, _("Set decode resolution to match display"));
189                 view->AppendRadioItem (ID_view_scale_full, _("Decode at full resolution"));
190                 view->AppendRadioItem (ID_view_scale_half, _("Decode at half resolution"));
191                 view->AppendRadioItem (ID_view_scale_quarter, _("Decode at quarter resolution"));
192
193                 wxMenu* tools = new wxMenu;
194                 tools->Append (ID_tools_check_for_updates, _("Check for updates"));
195
196                 wxMenu* help = new wxMenu;
197 #ifdef __WXOSX__
198                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
199 #else
200                 help->Append (wxID_ABOUT, _("About"));
201 #endif
202                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
203
204                 m->Append (file, _("&File"));
205 #ifndef __WXOSX__
206                 m->Append (edit, _("&Edit"));
207 #endif
208                 m->Append (view, _("&View"));
209                 m->Append (tools, _("&Tools"));
210                 m->Append (help, _("&Help"));
211         }
212
213         void file_open ()
214         {
215                 wxString d = wxStandardPaths::Get().GetDocumentsDir();
216                 if (Config::instance()->last_player_load_directory()) {
217                         d = std_to_wx (Config::instance()->last_player_load_directory()->string());
218                 }
219
220                 wxDirDialog* c = new wxDirDialog (this, _("Select DCP to open"), d, wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST);
221
222                 int r;
223                 while (true) {
224                         r = c->ShowModal ();
225                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
226                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
227                         } else {
228                                 break;
229                         }
230                 }
231
232                 if (r == wxID_OK) {
233                         boost::filesystem::path const dcp (wx_to_std (c->GetPath ()));
234                         load_dcp (dcp);
235                         Config::instance()->set_last_player_load_directory (dcp.parent_path());
236                 }
237
238                 c->Destroy ();
239         }
240
241         void file_add_ov ()
242         {
243                 wxDirDialog* c = new wxDirDialog (
244                         this,
245                         _("Select DCP to open as OV"),
246                         wxStandardPaths::Get().GetDocumentsDir(),
247                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
248                         );
249
250                 int r;
251                 while (true) {
252                         r = c->ShowModal ();
253                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
254                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
255                         } else {
256                                 break;
257                         }
258                 }
259
260                 if (r == wxID_OK) {
261                         shared_ptr<DCPContent> dcp = boost::dynamic_pointer_cast<DCPContent>(_film->content().front());
262                         DCPOMATIC_ASSERT (dcp);
263                         dcp->add_ov (wx_to_std(c->GetPath()));
264                         dcp->examine (shared_ptr<Job>());
265                 }
266
267                 c->Destroy ();
268                 _info->triggered_update ();
269         }
270
271         void file_add_kdm ()
272         {
273                 wxFileDialog* d = new wxFileDialog (this, _("Select KDM"));
274
275                 if (d->ShowModal() == wxID_OK) {
276                         shared_ptr<DCPContent> dcp = boost::dynamic_pointer_cast<DCPContent>(_film->content().front());
277                         DCPOMATIC_ASSERT (dcp);
278                         try {
279                                 dcp->add_kdm (dcp::EncryptedKDM (dcp::file_to_string (wx_to_std (d->GetPath ()), MAX_KDM_SIZE)));
280                         } catch (exception& e) {
281                                 error_dialog (this, wxString::Format (_("Could not load KDM (%s)"), e.what ()));
282                                 d->Destroy ();
283                                 return;
284                         }
285
286                         dcp->examine (shared_ptr<Job>());
287                 }
288
289                 d->Destroy ();
290                 _info->triggered_update ();
291         }
292
293         void file_exit ()
294         {
295                 Close ();
296         }
297
298         void edit_preferences ()
299         {
300                 if (!_config_dialog) {
301                         _config_dialog = create_player_config_dialog ();
302                 }
303                 _config_dialog->Show (this);
304         }
305
306         void tools_check_for_updates ()
307         {
308                 UpdateChecker::instance()->run ();
309                 _update_news_requested = true;
310         }
311
312         void help_about ()
313         {
314                 AboutDialog* d = new AboutDialog (this);
315                 d->ShowModal ();
316                 d->Destroy ();
317         }
318
319         void help_report_a_problem ()
320         {
321                 ReportProblemDialog* d = new ReportProblemDialog (this);
322                 if (d->ShowModal () == wxID_OK) {
323                         d->report ();
324                 }
325                 d->Destroy ();
326         }
327
328         void update_checker_state_changed ()
329         {
330                 UpdateChecker* uc = UpdateChecker::instance ();
331
332                 bool const announce =
333                         _update_news_requested ||
334                         (uc->stable() && Config::instance()->check_for_updates()) ||
335                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
336
337                 _update_news_requested = false;
338
339                 if (!announce) {
340                         return;
341                 }
342
343                 if (uc->state() == UpdateChecker::YES) {
344                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
345                         dialog->ShowModal ();
346                         dialog->Destroy ();
347                 } else if (uc->state() == UpdateChecker::FAILED) {
348                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
349                 } else {
350                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
351                 }
352
353                 _update_news_requested = false;
354         }
355
356         void config_changed ()
357         {
358                 /* Instantly save any config changes when using the player GUI */
359                 try {
360                         Config::instance()->write_config();
361                 } catch (exception& e) {
362                         error_dialog (
363                                 this,
364                                 wxString::Format (
365                                         _("Could not write to config file at %s.  Your changes have not been saved."),
366                                         std_to_wx (Config::instance()->cinemas_file().string()).data()
367                                         )
368                                 );
369                 }
370         }
371
372         bool _update_news_requested;
373         PlayerInformation* _info;
374         wxPreferencesEditor* _config_dialog;
375         FilmViewer* _viewer;
376         boost::shared_ptr<Film> _film;
377         boost::signals2::scoped_connection _config_changed_connection;
378 };
379
380 static const wxCmdLineEntryDesc command_line_description[] = {
381         { wxCMD_LINE_PARAM, 0, 0, "DCP to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
382         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
383 };
384
385 /** @class App
386  *  @brief The magic App class for wxWidgets.
387  */
388 class App : public wxApp
389 {
390 public:
391         App ()
392                 : wxApp ()
393                 , _frame (0)
394         {}
395
396 private:
397
398         bool OnInit ()
399         try
400         {
401                 wxInitAllImageHandlers ();
402
403                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
404
405                 wxSplashScreen* splash = 0;
406                 try {
407                         if (!Config::have_existing ("config.xml")) {
408                                 wxBitmap bitmap;
409                                 boost::filesystem::path p = shared_path () / "splash.png";
410                                 if (bitmap.LoadFile (std_to_wx (p.string ()), wxBITMAP_TYPE_PNG)) {
411                                         splash = new wxSplashScreen (bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, 0, -1);
412                                         wxYield ();
413                                 }
414                         }
415                 } catch (boost::filesystem::filesystem_error& e) {
416                         /* Maybe we couldn't find the splash image; never mind */
417                 }
418
419                 SetAppName (_("DCP-o-matic Player"));
420
421                 if (!wxApp::OnInit()) {
422                         return false;
423                 }
424
425 #ifdef DCPOMATIC_LINUX
426                 unsetenv ("UBUNTU_MENUPROXY");
427 #endif
428
429 #ifdef __WXOSX__
430                 ProcessSerialNumber serial;
431                 GetCurrentProcess (&serial);
432                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
433 #endif
434
435                 dcpomatic_setup_path_encoding ();
436
437                 /* Enable i18n; this will create a Config object
438                    to look for a force-configured language.  This Config
439                    object will be wrong, however, because dcpomatic_setup
440                    hasn't yet been called and there aren't any filters etc.
441                    set up yet.
442                 */
443                 dcpomatic_setup_i18n ();
444
445                 /* Set things up, including filters etc.
446                    which will now be internationalised correctly.
447                 */
448                 dcpomatic_setup ();
449
450                 /* Force the configuration to be re-loaded correctly next
451                    time it is needed.
452                 */
453                 Config::drop ();
454
455                 _frame = new DOMFrame ();
456                 SetTopWindow (_frame);
457                 _frame->Maximize ();
458                 if (splash) {
459                         splash->Destroy ();
460                 }
461                 _frame->Show ();
462
463                 signal_manager = new wxSignalManager (this);
464
465                 if (!_dcp_to_load.empty() && boost::filesystem::is_directory (_dcp_to_load)) {
466                         try {
467                                 _frame->load_dcp (_dcp_to_load);
468                         } catch (exception& e) {
469                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load DCP %1 (%2)")), _dcp_to_load, e.what())));
470                         }
471                 }
472
473                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
474
475                 if (Config::instance()->check_for_updates ()) {
476                         UpdateChecker::instance()->run ();
477                 }
478
479                 return true;
480         }
481         catch (exception& e)
482         {
483                 error_dialog (0, wxString::Format ("DCP-o-matic Player could not start: %s", e.what ()));
484                 return true;
485         }
486
487         void OnInitCmdLine (wxCmdLineParser& parser)
488         {
489                 parser.SetDesc (command_line_description);
490                 parser.SetSwitchChars (wxT ("-"));
491         }
492
493         bool OnCmdLineParsed (wxCmdLineParser& parser)
494         {
495                 if (parser.GetParamCount() > 0) {
496                         _dcp_to_load = wx_to_std (parser.GetParam (0));
497                 }
498
499                 return true;
500         }
501
502         void report_exception ()
503         {
504                 try {
505                         throw;
506                 } catch (FileError& e) {
507                         error_dialog (
508                                 0,
509                                 wxString::Format (
510                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
511                                         std_to_wx (e.what()),
512                                         std_to_wx (e.file().string().c_str ())
513                                         )
514                                 );
515                 } catch (exception& e) {
516                         error_dialog (
517                                 0,
518                                 wxString::Format (
519                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
520                                         std_to_wx (e.what ())
521                                         )
522                                 );
523                 } catch (...) {
524                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
525                 }
526         }
527
528         /* An unhandled exception has occurred inside the main event loop */
529         bool OnExceptionInMainLoop ()
530         {
531                 report_exception ();
532                 /* This will terminate the program */
533                 return false;
534         }
535
536         void OnUnhandledException ()
537         {
538                 report_exception ();
539         }
540
541         void idle ()
542         {
543                 signal_manager->ui_idle ();
544         }
545
546         void config_failed_to_load ()
547         {
548                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
549         }
550
551         DOMFrame* _frame;
552         string _dcp_to_load;
553 };
554
555 IMPLEMENT_APP (App)