Rename NAG_BAD_SIGNER_CHAIN -> NAG_BAD_SIGNER_CHAIN_UTF8.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-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
22 /** @file  src/tools/dcpomatic.cc
23  *  @brief The main DCP-o-matic GUI.
24  */
25
26
27 #include "wx/standard_controls.h"
28 #include "wx/film_viewer.h"
29 #include "wx/film_editor.h"
30 #include "wx/job_manager_view.h"
31 #include "wx/full_config_dialog.h"
32 #include "wx/wx_util.h"
33 #include "wx/film_name_location_dialog.h"
34 #include "wx/wx_signal_manager.h"
35 #include "wx/recreate_chain_dialog.h"
36 #include "wx/about_dialog.h"
37 #include "wx/kdm_dialog.h"
38 #include "wx/dkdm_dialog.h"
39 #include "wx/self_dkdm_dialog.h"
40 #include "wx/servers_list_dialog.h"
41 #include "wx/hints_dialog.h"
42 #include "wx/update_dialog.h"
43 #include "wx/content_panel.h"
44 #include "wx/report_problem_dialog.h"
45 #include "wx/video_waveform_dialog.h"
46 #include "wx/system_information_dialog.h"
47 #include "wx/save_template_dialog.h"
48 #include "wx/templates_dialog.h"
49 #include "wx/nag_dialog.h"
50 #include "wx/export_subtitles_dialog.h"
51 #include "wx/export_video_file_dialog.h"
52 #include "wx/paste_dialog.h"
53 #include "wx/focus_manager.h"
54 #include "wx/html_dialog.h"
55 #include "wx/send_i18n_dialog.h"
56 #include "wx/i18n_hook.h"
57 #include "lib/film.h"
58 #include "lib/analytics.h"
59 #include "lib/emailer.h"
60 #include "lib/config.h"
61 #include "lib/cross.h"
62 #include "lib/util.h"
63 #include "lib/video_content.h"
64 #include "lib/content.h"
65 #include "lib/version.h"
66 #include "lib/signal_manager.h"
67 #include "lib/log.h"
68 #include "lib/screen.h"
69 #include "lib/job_manager.h"
70 #include "lib/exceptions.h"
71 #include "lib/cinema.h"
72 #include "lib/kdm_with_metadata.h"
73 #include "lib/send_kdm_email_job.h"
74 #include "lib/encode_server_finder.h"
75 #include "lib/update_checker.h"
76 #include "lib/cross.h"
77 #include "lib/content_factory.h"
78 #include "lib/compose.hpp"
79 #include "lib/dcpomatic_socket.h"
80 #include "lib/hints.h"
81 #include "lib/dcp_content.h"
82 #include "lib/ffmpeg_encoder.h"
83 #include "lib/transcode_job.h"
84 #include "lib/dkdm_wrapper.h"
85 #include "lib/audio_content.h"
86 #include "lib/check_content_change_job.h"
87 #include "lib/text_content.h"
88 #include "lib/dcpomatic_log.h"
89 #include "lib/subtitle_encoder.h"
90 #include "lib/warnings.h"
91 #include <dcp/exceptions.h>
92 #include <dcp/raw_convert.h>
93 DCPOMATIC_DISABLE_WARNINGS
94 #include <wx/generic/aboutdlgg.h>
95 #include <wx/stdpaths.h>
96 #include <wx/cmdline.h>
97 #include <wx/preferences.h>
98 #include <wx/splash.h>
99 #include <wx/wxhtml.h>
100 DCPOMATIC_ENABLE_WARNINGS
101 #ifdef __WXGTK__
102 #include <X11/Xlib.h>
103 #endif
104 #ifdef __WXMSW__
105 #include <shellapi.h>
106 #endif
107 #include <boost/filesystem.hpp>
108 #include <boost/algorithm/string.hpp>
109 #include <iostream>
110 #include <fstream>
111 /* This is OK as it's only used with DCPOMATIC_WINDOWS */
112 #include <sstream>
113
114 #ifdef check
115 #undef check
116 #endif
117
118
119 using std::cout;
120 using std::dynamic_pointer_cast;
121 using std::exception;
122 using std::function;
123 using std::list;
124 using std::make_pair;
125 using std::make_shared;
126 using std::map;
127 using std::shared_ptr;
128 using std::string;
129 using std::vector;
130 using std::wcout;
131 using boost::optional;
132 using boost::is_any_of;
133 using boost::algorithm::find;
134 #if BOOST_VERSION >= 106100
135 using namespace boost::placeholders;
136 #endif
137 using dcp::raw_convert;
138
139
140 class FilmChangedClosingDialog
141 {
142 public:
143         explicit FilmChangedClosingDialog (string name)
144         {
145                 _dialog = new wxMessageDialog (
146                         nullptr,
147                         wxString::Format(_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
148                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
149                         /// project (Film) has been changed since it was last saved.
150                         _("Film changed"),
151                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
152                         );
153
154                 _dialog->SetYesNoCancelLabels (
155                         _("Save film and close"), _("Close without saving film"), _("Don't close")
156                         );
157         }
158
159         ~FilmChangedClosingDialog ()
160         {
161                 _dialog->Destroy ();
162         }
163
164         FilmChangedClosingDialog (FilmChangedClosingDialog const&) = delete;
165         FilmChangedClosingDialog& operator= (FilmChangedClosingDialog const&) = delete;
166
167         int run ()
168         {
169                 return _dialog->ShowModal ();
170         }
171
172 private:
173         wxMessageDialog* _dialog;
174 };
175
176
177 class FilmChangedDuplicatingDialog
178 {
179 public:
180         explicit FilmChangedDuplicatingDialog (string name)
181         {
182                 _dialog = new wxMessageDialog (
183                         nullptr,
184                         wxString::Format(_("Save changes to film \"%s\" before duplicating?"), std_to_wx (name).data()),
185                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
186                         /// project (Film) has been changed since it was last saved.
187                         _("Film changed"),
188                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
189                         );
190
191                 _dialog->SetYesNoCancelLabels (
192                         _("Save film and duplicate"), _("Duplicate without saving film"), _("Don't duplicate")
193                         );
194         }
195
196         ~FilmChangedDuplicatingDialog ()
197         {
198                 _dialog->Destroy ();
199         }
200
201         FilmChangedDuplicatingDialog (FilmChangedDuplicatingDialog const&) = delete;
202         FilmChangedDuplicatingDialog& operator= (FilmChangedDuplicatingDialog const&) = delete;
203
204         int run ()
205         {
206                 return _dialog->ShowModal ();
207         }
208
209 private:
210         wxMessageDialog* _dialog;
211 };
212
213
214 #define ALWAYS                        0x0
215 #define NEEDS_FILM                    0x1
216 #define NOT_DURING_DCP_CREATION       0x2
217 #define NEEDS_CPL                     0x4
218 #define NEEDS_SINGLE_SELECTED_CONTENT 0x8
219 #define NEEDS_SELECTED_CONTENT        0x10
220 #define NEEDS_SELECTED_VIDEO_CONTENT  0x20
221 #define NEEDS_CLIPBOARD               0x40
222 #define NEEDS_ENCRYPTION              0x80
223
224
225 map<wxMenuItem*, int> menu_items;
226
227 enum {
228         ID_file_new = 1,
229         ID_file_open,
230         ID_file_save,
231         ID_file_save_as_template,
232         ID_file_duplicate,
233         ID_file_duplicate_and_open,
234         ID_file_history,
235         /* Allow spare IDs after _history for the recent files list */
236         ID_file_close = 100,
237         ID_edit_copy,
238         ID_edit_paste,
239         ID_edit_select_all,
240         ID_jobs_make_dcp,
241         ID_jobs_make_dcp_batch,
242         ID_jobs_make_kdms,
243         ID_jobs_make_dkdms,
244         ID_jobs_make_self_dkdm,
245         ID_jobs_export_video_file,
246         ID_jobs_export_subtitles,
247         ID_jobs_send_dcp_to_tms,
248         ID_jobs_show_dcp,
249         ID_jobs_open_dcp_in_player,
250         ID_view_closed_captions,
251         ID_view_video_waveform,
252         ID_tools_hints,
253         ID_tools_encoding_servers,
254         ID_tools_manage_templates,
255         ID_tools_check_for_updates,
256         ID_tools_send_translations,
257         ID_tools_system_information,
258         ID_tools_restore_default_preferences,
259         ID_help_report_a_problem,
260         /* IDs for shortcuts (with no associated menu item) */
261         ID_add_file,
262         ID_remove,
263         ID_start_stop,
264         ID_timeline,
265         ID_back_frame,
266         ID_forward_frame
267 };
268
269
270 class DOMFrame : public wxFrame
271 {
272 public:
273         explicit DOMFrame (wxString const& title)
274                 : wxFrame (nullptr, -1, title)
275         {
276 #if defined(DCPOMATIC_WINDOWS)
277                 if (Config::instance()->win32_console()) {
278                         AllocConsole();
279
280                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
281                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
282                         FILE* hf_out = _fdopen(hCrt, "w");
283                         setvbuf(hf_out, NULL, _IONBF, 1);
284                         *stdout = *hf_out;
285
286                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
287                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
288                         FILE* hf_in = _fdopen(hCrt, "r");
289                         setvbuf(hf_in, NULL, _IONBF, 128);
290                         *stdin = *hf_in;
291
292                         cout << "DCP-o-matic is starting." << "\n";
293                 }
294 #endif
295
296                 auto bar = new wxMenuBar;
297                 setup_menu (bar);
298                 SetMenuBar (bar);
299
300 #ifdef DCPOMATIC_WINDOWS
301                 SetIcon (wxIcon (std_to_wx ("id")));
302 #endif
303
304                 _config_changed_connection = Config::instance()->Changed.connect(boost::bind(&DOMFrame::config_changed, this, _1));
305                 config_changed (Config::OTHER);
306
307                 _analytics_message_connection = Analytics::instance()->Message.connect(boost::bind(&DOMFrame::analytics_message, this, _1, _2));
308
309                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_new, this),                ID_file_new);
310                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this),               ID_file_open);
311                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save, this),               ID_file_save);
312                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_as_template, this),   ID_file_save_as_template);
313                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate, this),          ID_file_duplicate);
314                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate_and_open, this), ID_file_duplicate_and_open);
315                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this),              ID_file_close);
316                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
317                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),               wxID_EXIT);
318                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_copy, this),               ID_edit_copy);
319                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_paste, this),              ID_edit_paste);
320                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_select_all, this),         ID_edit_select_all);
321                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),        wxID_PREFERENCES);
322                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
323                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
324                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dkdms, this),         ID_jobs_make_dkdms);
325                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp_batch, this),     ID_jobs_make_dcp_batch);
326                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
327                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_export_video_file, this),  ID_jobs_export_video_file);
328                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_export_subtitles, this),   ID_jobs_export_subtitles);
329                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
330                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
331                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_open_dcp_in_player, this), ID_jobs_open_dcp_in_player);
332                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this),    ID_view_closed_captions);
333                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_video_waveform, this),     ID_view_video_waveform);
334                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_hints, this),             ID_tools_hints);
335                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
336                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_manage_templates, this),  ID_tools_manage_templates);
337                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
338                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_send_translations, this), ID_tools_send_translations);
339                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_system_information, this),ID_tools_system_information);
340                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
341                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
342                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
343
344                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&DOMFrame::close, this, _1));
345                 Bind (wxEVT_SHOW, boost::bind (&DOMFrame::show, this, _1));
346
347                 /* Use a panel as the only child of the Frame so that we avoid
348                    the dark-grey background on Windows.
349                 */
350                 auto overall_panel = new wxPanel (this, wxID_ANY);
351
352                 _film_viewer.reset (new FilmViewer (overall_panel));
353                 _controls = new StandardControls (overall_panel, _film_viewer, true);
354                 _film_editor = new FilmEditor (overall_panel, _film_viewer);
355                 auto job_manager_view = new JobManagerView (overall_panel, false);
356
357                 auto right_sizer = new wxBoxSizer (wxVERTICAL);
358                 right_sizer->Add (_film_viewer->panel(), 2, wxEXPAND | wxALL, 6);
359                 right_sizer->Add (_controls, 0, wxEXPAND | wxALL, 6);
360                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
361
362                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
363                 main_sizer->Add (_film_editor, 0, wxEXPAND | wxALL, 6);
364                 main_sizer->Add (right_sizer, 1, wxEXPAND | wxALL, 6);
365
366                 set_menu_sensitivity ();
367
368                 _film_editor->FileChanged.connect (bind (&DOMFrame::file_changed, this, _1));
369                 _film_editor->content_panel()->SelectionChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
370                 file_changed ("");
371
372                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
373
374                 overall_panel->SetSizer (main_sizer);
375
376                 UpdateChecker::instance()->StateChanged.connect(boost::bind(&DOMFrame::update_checker_state_changed, this));
377
378                 FocusManager::instance()->SetFocus.connect (boost::bind (&DOMFrame::remove_accelerators, this));
379                 FocusManager::instance()->KillFocus.connect (boost::bind (&DOMFrame::add_accelerators, this));
380                 add_accelerators ();
381         }
382
383         void add_accelerators ()
384         {
385 #ifdef __WXOSX__
386                 int accelerators = 7;
387 #else
388                 int accelerators = 6;
389 #endif
390                 auto accel = new wxAcceleratorEntry[accelerators];
391                 /* [Shortcut] Ctrl+A:Add file(s) to the film */
392                 accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file);
393                 /* [Shortcut] Delete:Remove selected content from film */
394                 accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove);
395                 /* [Shortcut] Space:Start/stop playback */
396                 accel[2].Set (wxACCEL_NORMAL, WXK_SPACE, ID_start_stop);
397                 /* [Shortcut] Ctrl+T:Open timeline window */
398                 accel[3].Set (wxACCEL_CTRL, static_cast<int>('T'), ID_timeline);
399                 /* [Shortcut] Left arrow:Move back one frame */
400                 accel[4].Set (wxACCEL_NORMAL, WXK_LEFT, ID_back_frame);
401                 /* [Shortcut] Right arrow:Move forward one frame */
402                 accel[5].Set (wxACCEL_NORMAL, WXK_RIGHT, ID_forward_frame);
403 #ifdef __WXOSX__
404                 accel[6].Set (wxACCEL_CTRL, static_cast<int>('W'), ID_file_close);
405 #endif
406                 Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file);
407                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::remove_clicked, this, _1), ID_remove);
408                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::start_stop_pressed, this), ID_start_stop);
409                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::timeline_pressed, this), ID_timeline);
410                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::back_frame, this), ID_back_frame);
411                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::forward_frame, this), ID_forward_frame);
412                 wxAcceleratorTable accel_table (accelerators, accel);
413                 SetAcceleratorTable (accel_table);
414                 delete[] accel;
415         }
416
417         void remove_accelerators ()
418         {
419                 SetAcceleratorTable (wxAcceleratorTable ());
420         }
421
422         void remove_clicked (wxCommandEvent& ev)
423         {
424                 if (_film_editor->content_panel()->remove_clicked (true)) {
425                         ev.Skip ();
426                 }
427         }
428
429         void new_film (boost::filesystem::path path, optional<string> template_name)
430         {
431                 auto film = make_shared<Film>(path);
432                 if (template_name) {
433                         film->use_template (template_name.get());
434                 }
435                 film->set_name (path.filename().generic_string());
436                 film->write_metadata ();
437                 set_film (film);
438         }
439
440         void load_film (boost::filesystem::path file)
441         try
442         {
443                 auto film = make_shared<Film>(file);
444                 auto const notes = film->read_metadata ();
445
446                 if (film->state_version() == 4) {
447                         error_dialog (
448                                 0,
449                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
450                                   "in this version.  Please check the film's settings carefully.")
451                                 );
452                 }
453
454                 for (auto i: notes) {
455                         error_dialog (0, std_to_wx(i));
456                 }
457
458                 set_film (film);
459
460                 JobManager::instance()->add(shared_ptr<Job>(new CheckContentChangeJob(film)));
461         }
462         catch (FileNotFoundError& e) {
463                 auto const dir = e.file().parent_path();
464                 if (boost::filesystem::exists(dir / "ASSETMAP") || boost::filesystem::exists(dir / "ASSETMAP.xml")) {
465                         error_dialog (
466                                 this, _("Could not open this folder as a DCP-o-matic project."),
467                                 _("It looks like you are trying to open a DCP.  File -> Open is for loading DCP-o-matic projects, not DCPs.  To import a DCP, create a new project with File -> New and then click the \"Add DCP...\" button.")
468                                 );
469                 } else {
470                         auto const p = std_to_wx(file.string ());
471                         error_dialog (this, wxString::Format(_("Could not open film at %s"), p.data()), std_to_wx(e.what()));
472                 }
473
474         } catch (std::exception& e) {
475                 auto const p = std_to_wx (file.string());
476                 error_dialog (this, wxString::Format(_("Could not open film at %s"), p.data()), std_to_wx(e.what()));
477         }
478
479         void set_film (shared_ptr<Film> film)
480         {
481                 _film = film;
482                 _film_viewer->set_film (_film);
483                 _film_editor->set_film (_film);
484                 _controls->set_film (_film);
485                 if (_video_waveform_dialog) {
486                         _video_waveform_dialog->Destroy ();
487                         _video_waveform_dialog = nullptr;
488                 }
489                 set_menu_sensitivity ();
490                 if (_film && _film->directory()) {
491                         Config::instance()->add_to_history (_film->directory().get());
492                 }
493                 if (_film) {
494                         _film->Change.connect (boost::bind (&DOMFrame::film_change, this, _1));
495                         _film->Message.connect (boost::bind(&DOMFrame::film_message, this, _1));
496                         dcpomatic_log = _film->log ();
497                 }
498         }
499
500         shared_ptr<Film> film () const {
501                 return _film;
502         }
503
504 private:
505
506         void show (wxShowEvent& ev)
507         {
508                 if (ev.IsShown() && !_first_shown_called) {
509                         _film_editor->first_shown ();
510                         _first_shown_called = true;
511                 }
512         }
513
514         void film_message (string m)
515         {
516                 message_dialog (this, std_to_wx(m));
517         }
518
519         void film_change (ChangeType type)
520         {
521                 if (type == ChangeType::DONE) {
522                         set_menu_sensitivity ();
523                 }
524         }
525
526         void file_changed (boost::filesystem::path f)
527         {
528                 auto s = wx_to_std(_("DCP-o-matic"));
529                 if (!f.empty ()) {
530                         s += " - " + f.string ();
531                 }
532
533                 SetTitle (std_to_wx (s));
534         }
535
536         void file_new ()
537         {
538                 auto d = new FilmNameLocationDialog (this, _("New Film"), true);
539                 int const r = d->ShowModal ();
540
541                 if (r == wxID_OK && d->check_path() && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
542                         try {
543                                 new_film (d->path(), d->template_name());
544                         } catch (boost::filesystem::filesystem_error& e) {
545 #ifdef DCPOMATIC_WINDOWS
546                                 string bad_chars = "<>:\"/|?*";
547                                 string const filename = d->path().filename().string();
548                                 string found_bad_chars;
549                                 for (size_t i = 0; i < bad_chars.length(); ++i) {
550                                         if (filename.find(bad_chars[i]) != string::npos && found_bad_chars.find(bad_chars[i]) == string::npos) {
551                                                 found_bad_chars += bad_chars[i];
552                                         }
553                                 }
554                                 wxString message = _("Could not create folder to store film.");
555                                 message += "  ";
556                                 if (!found_bad_chars.empty()) {
557                                         message += wxString::Format (_("Try removing the %s characters from your folder name."), std_to_wx(found_bad_chars).data());
558                                 } else {
559                                         message += _("Please check that you do not have Windows controlled folder access enabled for DCP-o-matic.");
560                                 }
561                                 error_dialog (this, message, std_to_wx(e.what()));
562 #else
563                                 error_dialog (this, _("Could not create folder to store film."), std_to_wx(e.what()));
564 #endif
565                         }
566                 }
567
568                 d->Destroy ();
569         }
570
571         void file_open ()
572         {
573                 auto c = new wxDirDialog (
574                         this,
575                         _("Select film to open"),
576                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
577                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
578                         );
579
580                 int r;
581                 while (true) {
582                         r = c->ShowModal ();
583                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
584                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
585                         } else {
586                                 break;
587                         }
588                 }
589
590                 if (r == wxID_OK && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
591                         load_film (wx_to_std (c->GetPath ()));
592                 }
593
594                 c->Destroy ();
595         }
596
597         void file_save ()
598         {
599                 _film->write_metadata ();
600         }
601
602         void file_save_as_template ()
603         {
604                 auto d = new SaveTemplateDialog (this);
605                 int const r = d->ShowModal ();
606                 if (r == wxID_OK) {
607                         Config::instance()->save_template (_film, d->name ());
608                 }
609                 d->Destroy ();
610         }
611
612         void file_duplicate ()
613         {
614                 auto d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
615                 int const r = d->ShowModal ();
616
617                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
618                         shared_ptr<Film> film (new Film (d->path()));
619                         film->copy_from (_film);
620                         film->set_name (d->path().filename().generic_string());
621                         film->write_metadata ();
622                 }
623
624                 d->Destroy ();
625         }
626
627         void file_duplicate_and_open ()
628         {
629                 auto d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
630                 int const r = d->ShowModal ();
631
632                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
633                         shared_ptr<Film> film (new Film (d->path()));
634                         film->copy_from (_film);
635                         film->set_name (d->path().filename().generic_string());
636                         film->write_metadata ();
637                         set_film (film);
638                 }
639
640                 d->Destroy ();
641         }
642
643         void file_close ()
644         {
645                 if (_film && _film->dirty ()) {
646
647                         auto dialog = new FilmChangedClosingDialog (_film->name ());
648                         int const r = dialog->run ();
649                         delete dialog;
650
651                         switch (r) {
652                         case wxID_NO:
653                                 /* Don't save and carry on to close */
654                                 break;
655                         case wxID_YES:
656                                 /* Save and carry on to close */
657                                 _film->write_metadata ();
658                                 break;
659                         case wxID_CANCEL:
660                                 /* Stop */
661                                 return;
662                         }
663                 }
664
665                 set_film (shared_ptr<Film>());
666         }
667
668         void file_history (wxCommandEvent& event)
669         {
670                 auto history = Config::instance()->history ();
671                 int n = event.GetId() - ID_file_history;
672                 if (n >= 0 && n < static_cast<int> (history.size ()) && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
673                         load_film (history[n]);
674                 }
675         }
676
677         void file_exit ()
678         {
679                 /* false here allows the close handler to veto the close request */
680                 Close (false);
681         }
682
683         void edit_copy ()
684         {
685                 auto const sel = _film_editor->content_panel()->selected();
686                 DCPOMATIC_ASSERT (sel.size() == 1);
687                 _clipboard = sel.front()->clone();
688         }
689
690         void edit_paste ()
691         {
692                 DCPOMATIC_ASSERT (_clipboard);
693
694                 auto d = new PasteDialog (this, static_cast<bool>(_clipboard->video), static_cast<bool>(_clipboard->audio), !_clipboard->text.empty());
695                 if (d->ShowModal() == wxID_OK) {
696                         for (auto i: _film_editor->content_panel()->selected()) {
697                                 if (d->video() && i->video) {
698                                         DCPOMATIC_ASSERT (_clipboard->video);
699                                         i->video->take_settings_from (_clipboard->video);
700                                 }
701                                 if (d->audio() && i->audio) {
702                                         DCPOMATIC_ASSERT (_clipboard->audio);
703                                         i->audio->take_settings_from (_clipboard->audio);
704                                 }
705
706                                 if (d->text()) {
707                                         auto j = i->text.begin ();
708                                         auto k = _clipboard->text.begin ();
709                                         while (j != i->text.end() && k != _clipboard->text.end()) {
710                                                 (*j)->take_settings_from (*k);
711                                                 ++j;
712                                                 ++k;
713                                         }
714                                 }
715                         }
716                 }
717                 d->Destroy ();
718         }
719
720         void edit_select_all ()
721         {
722                 _film_editor->content_panel()->select_all();
723         }
724
725         void edit_preferences ()
726         {
727                 if (!_config_dialog) {
728                         _config_dialog = create_full_config_dialog ();
729                 }
730                 _config_dialog->Show (this);
731         }
732
733         void tools_restore_default_preferences ()
734         {
735                 auto d = new wxMessageDialog (
736                         0,
737                         _("Are you sure you want to restore preferences to their defaults?  This cannot be undone."),
738                         _("Restore default preferences"),
739                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
740                         );
741
742                 int const r = d->ShowModal ();
743                 d->Destroy ();
744
745                 if (r == wxID_YES) {
746                         Config::restore_defaults ();
747                 }
748         }
749
750         void jobs_make_dcp ()
751         {
752                 double required;
753                 double available;
754                 bool can_hard_link;
755
756                 if (!_film->should_be_enough_disk_space (required, available, can_hard_link)) {
757                         wxString message;
758                         if (can_hard_link) {
759                                 message = wxString::Format (_("The DCP for this film will take up about %.1f GB, and the disk that you are using only has %.1f GB available.  Do you want to continue anyway?"), required, available);
760                         } else {
761                                 message = wxString::Format (_("The DCP and intermediate files for this film will take up about %.1f GB, and the disk that you are using only has %.1f GB available.  You would need half as much space if the filesystem supported hard links, but it does not.  Do you want to continue anyway?"), required, available);
762                         }
763                         if (!confirm_dialog (this, message)) {
764                                 return;
765                         }
766                 }
767
768                 if (Config::instance()->show_hints_before_make_dcp()) {
769                         auto hints = new HintsDialog (this, _film, false);
770                         int const r = hints->ShowModal();
771                         hints->Destroy ();
772                         if (r == wxID_CANCEL) {
773                                 return;
774                         }
775                 }
776
777                 if (_film->encrypted ()) {
778                         NagDialog::maybe_nag (
779                                 this,
780                                 Config::NAG_ENCRYPTED_METADATA,
781                                 _("You are making an encrypted DCP.  It will not be possible to make KDMs for this DCP unless you have copies of "
782                                   "the <tt>metadata.xml</tt> file within the film and the metadata files within the DCP.\n\n"
783                                   "You should ensure that these files are <span weight=\"bold\" size=\"larger\">BACKED UP</span> "
784                                   "if you want to make KDMs for this film.")
785                                 );
786                 }
787
788                 /* Remove any existing DCP if the user agrees */
789                 auto const dcp_dir = _film->dir (_film->dcp_name(), false);
790                 if (boost::filesystem::exists(dcp_dir)) {
791                         if (!confirm_dialog (this, wxString::Format (_("Do you want to overwrite the existing DCP %s?"), std_to_wx(dcp_dir.string()).data()))) {
792                                 return;
793                         }
794                         boost::filesystem::remove_all (dcp_dir);
795                 }
796
797                 try {
798                         /* It seems to make sense to auto-save metadata here, since the make DCP may last
799                            a long time, and crashes/power failures are moderately likely.
800                         */
801                         _film->write_metadata ();
802                         _film->make_dcp (TranscodeJob::ChangedBehaviour::EXAMINE_THEN_STOP);
803                 } catch (BadSettingError& e) {
804                         error_dialog (this, wxString::Format (_("Bad setting for %s."), std_to_wx(e.setting()).data()), std_to_wx(e.what()));
805                 } catch (std::exception& e) {
806                         error_dialog (this, wxString::Format (_("Could not make DCP.")), std_to_wx(e.what()));
807                 }
808         }
809
810         void jobs_make_kdms ()
811         {
812                 if (!_film) {
813                         return;
814                 }
815
816                 if (_kdm_dialog) {
817                         _kdm_dialog->Destroy ();
818                         _kdm_dialog = 0;
819                 }
820
821                 _kdm_dialog = new KDMDialog (this, _film);
822                 _kdm_dialog->Show ();
823         }
824
825         void jobs_make_dkdms ()
826         {
827                 if (!_film) {
828                         return;
829                 }
830
831                 if (_dkdm_dialog) {
832                         _dkdm_dialog->Destroy ();
833                         _dkdm_dialog = nullptr;
834                 }
835
836                 _dkdm_dialog = new DKDMDialog (this, _film);
837                 _dkdm_dialog->Show ();
838         }
839
840         /** @return false if we succeeded, true if not */
841         bool send_to_other_tool (int port, function<void()> start, string message)
842         {
843                 /* i = 0; try to connect via socket
844                    i = 1; try again, and then try to start the tool
845                    i = 2 onwards; try again.
846                 */
847                 for (int i = 0; i < 8; ++i) {
848                         try {
849                                 boost::asio::io_service io_service;
850                                 boost::asio::ip::tcp::resolver resolver (io_service);
851                                 boost::asio::ip::tcp::resolver::query query ("127.0.0.1", raw_convert<string> (port));
852                                 boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
853                                 Socket socket (5);
854                                 socket.connect (*endpoint_iterator);
855                                 DCPOMATIC_ASSERT (_film->directory ());
856                                 socket.write (message.length() + 1);
857                                 socket.write ((uint8_t *) message.c_str(), message.length() + 1);
858                                 /* OK\0 */
859                                 uint8_t ok[3];
860                                 socket.read (ok, 3);
861                                 return false;
862                         } catch (exception& e) {
863
864                         }
865
866                         if (i == 1) {
867                                 start ();
868                         }
869
870                         dcpomatic_sleep_seconds (1);
871                 }
872
873                 return true;
874         }
875
876         void jobs_make_dcp_batch ()
877         {
878                 if (!_film) {
879                         return;
880                 }
881
882                 if (Config::instance()->show_hints_before_make_dcp()) {
883                         auto hints = new HintsDialog (this, _film, false);
884                         int const r = hints->ShowModal();
885                         hints->Destroy ();
886                         if (r == wxID_CANCEL) {
887                                 return;
888                         }
889                 }
890
891                 _film->write_metadata ();
892
893                 if (send_to_other_tool (BATCH_JOB_PORT, &start_batch_converter, _film->directory()->string())) {
894 #ifdef DCPOMATIC_OSX
895                         error_dialog (this, _("Could not start the batch converter.  You may need to download it from dcpomatic.com."));
896 #else
897                         error_dialog (this, _("Could not find batch converter."));
898 #endif
899                 }
900         }
901
902         void jobs_open_dcp_in_player ()
903         {
904                 if (!_film) {
905                         return;
906                 }
907
908                 if (send_to_other_tool (PLAYER_PLAY_PORT, &start_player, _film->dir(_film->dcp_name(false)).string())) {
909 #ifdef DCPOMATIC_OSX
910                         error_dialog (this, _("Could not start the player.  You may need to download it from dcpomatic.com."));
911 #else
912                         error_dialog (this, _("Could not find player."));
913 #endif
914                 }
915         }
916
917         void jobs_make_self_dkdm ()
918         {
919                 if (!_film) {
920                         return;
921                 }
922
923                 auto d = new SelfDKDMDialog (this, _film);
924                 if (d->ShowModal () != wxID_OK) {
925                         d->Destroy ();
926                         return;
927                 }
928
929                 NagDialog::maybe_nag (
930                         this,
931                         Config::NAG_DKDM_CONFIG,
932                         wxString::Format (
933                                 _("You are making a DKDM which is encrypted by a private key held in"
934                                   "\n\n<tt>%s</tt>\n\nIt is <span weight=\"bold\" size=\"larger\">VITALLY IMPORTANT</span> "
935                                   "that you <span weight=\"bold\" size=\"larger\">BACK UP THIS FILE</span> since if it is lost "
936                                   "your DKDMs (and the DCPs they protect) will become useless."), std_to_wx(Config::config_read_file().string()).data()
937                                 )
938                         );
939
940
941                 dcp::LocalTime from (Config::instance()->signer_chain()->leaf().not_before());
942                 from.add_days (1);
943                 dcp::LocalTime to (Config::instance()->signer_chain()->leaf().not_after());
944                 to.add_days (-1);
945
946                 optional<dcp::EncryptedKDM> kdm;
947                 try {
948                         kdm = _film->make_kdm (
949                                 Config::instance()->decryption_chain()->leaf(),
950                                 vector<string>(),
951                                 d->cpl (),
952                                 from, to,
953                                 dcp::Formulation::MODIFIED_TRANSITIONAL_1,
954                                 true,
955                                 0
956                                 );
957                 } catch (dcp::NotEncryptedError& e) {
958                         error_dialog (this, _("CPL's content is not encrypted."));
959                 } catch (exception& e) {
960                         error_dialog (this, e.what ());
961                 } catch (...) {
962                         error_dialog (this, _("An unknown exception occurred."));
963                 }
964
965                 if (kdm) {
966                         if (d->internal ()) {
967                                 auto dkdms = Config::instance()->dkdms();
968                                 dkdms->add (make_shared<DKDM>(kdm.get()));
969                                 Config::instance()->changed ();
970                         } else {
971                                 auto path = d->directory() / (_film->dcp_name(false) + "_DKDM.xml");
972                                 kdm->as_xml (path);
973                         }
974                 }
975
976                 d->Destroy ();
977         }
978
979
980         void jobs_export_video_file ()
981         {
982                 auto d = new ExportVideoFileDialog (this, _film->isdcf_name(true));
983                 if (d->ShowModal() == wxID_OK) {
984                         if (boost::filesystem::exists(d->path())) {
985                                 bool ok = confirm_dialog(
986                                                 this,
987                                                 wxString::Format (_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(d->path().string()).data())
988                                                 );
989
990                                 if (!ok) {
991                                         d->Destroy ();
992                                         return;
993                                 }
994                         }
995
996                         auto job = make_shared<TranscodeJob>(_film, TranscodeJob::ChangedBehaviour::EXAMINE_THEN_STOP);
997                         job->set_encoder (
998                                 make_shared<FFmpegEncoder> (
999                                         _film, job, d->path(), d->format(), d->mixdown_to_stereo(), d->split_reels(), d->split_streams(), d->x264_crf())
1000                                 );
1001                         JobManager::instance()->add (job);
1002                 }
1003                 d->Destroy ();
1004         }
1005
1006
1007         void jobs_export_subtitles ()
1008         {
1009                 auto d = new ExportSubtitlesDialog (this, _film->reels().size(), _film->interop());
1010                 if (d->ShowModal() == wxID_OK) {
1011                         auto job = make_shared<TranscodeJob>(_film, TranscodeJob::ChangedBehaviour::EXAMINE_THEN_STOP);
1012                         job->set_encoder (
1013                                 make_shared<SubtitleEncoder>(_film, job, d->path(), _film->isdcf_name(true), d->split_reels(), d->include_font())
1014                                 );
1015                         JobManager::instance()->add (job);
1016                 }
1017                 d->Destroy ();
1018         }
1019
1020
1021         void jobs_send_dcp_to_tms ()
1022         {
1023                 _film->send_dcp_to_tms ();
1024         }
1025
1026         void jobs_show_dcp ()
1027         {
1028                 DCPOMATIC_ASSERT (_film->directory ());
1029                 if (show_in_file_manager(_film->directory().get(), _film->dir(_film->dcp_name(false)))) {
1030                         error_dialog (this, _("Could not show DCP."));
1031                 }
1032         }
1033
1034         void view_closed_captions ()
1035         {
1036                 _film_viewer->show_closed_captions ();
1037         }
1038
1039         void view_video_waveform ()
1040         {
1041                 if (!_video_waveform_dialog) {
1042                         _video_waveform_dialog = new VideoWaveformDialog (this, _film, _film_viewer);
1043                 }
1044
1045                 _video_waveform_dialog->Show ();
1046         }
1047
1048         void tools_system_information ()
1049         {
1050                 if (!_system_information_dialog) {
1051                         _system_information_dialog = new SystemInformationDialog (this, _film_viewer);
1052                 }
1053
1054                 _system_information_dialog->Show ();
1055         }
1056
1057         void tools_hints ()
1058         {
1059                 if (!_hints_dialog) {
1060                         _hints_dialog = new HintsDialog (this, _film, true);
1061                 }
1062
1063                 _hints_dialog->Show ();
1064         }
1065
1066         void tools_encoding_servers ()
1067         {
1068                 if (!_servers_list_dialog) {
1069                         _servers_list_dialog = new ServersListDialog (this);
1070                 }
1071
1072                 _servers_list_dialog->Show ();
1073         }
1074
1075         void tools_manage_templates ()
1076         {
1077                 if (!_templates_dialog) {
1078                         _templates_dialog = new TemplatesDialog (this);
1079                 }
1080
1081                 _templates_dialog->Show ();
1082         }
1083
1084         void tools_check_for_updates ()
1085         {
1086                 _update_news_requested = true;
1087                 UpdateChecker::instance()->run();
1088         }
1089
1090         void tools_send_translations ()
1091         {
1092                 auto d = new SendI18NDialog (this);
1093                 if (d->ShowModal() == wxID_OK) {
1094                         string body;
1095                         body += d->name() + "\n";
1096                         body += d->language() + "\n";
1097                         body += string(dcpomatic_version) + " " + string(dcpomatic_git_commit) + "\n";
1098                         body += "--\n";
1099                         auto translations = I18NHook::translations ();
1100                         for (auto i: translations) {
1101                                 body += i.first + "\n" + i.second + "\n\n";
1102                         }
1103                         list<string> to = { "carl@dcpomatic.com" };
1104                         if (d->email().find("@") == string::npos) {
1105                                 error_dialog (this, _("You must enter a valid email address when sending translations, "
1106                                                       "otherwise the DCP-o-matic maintainers cannot credit you or contact you with questions."));
1107                         } else {
1108                                 Emailer emailer (d->email(), to, "DCP-o-matic translations", body);
1109                                 try {
1110                                         emailer.send ("main.carlh.net", 2525, EmailProtocol::STARTTLS);
1111                                 } catch (NetworkError& e) {
1112                                         error_dialog (this, _("Could not send translations"), std_to_wx(e.what()));
1113                                 }
1114                         }
1115                 }
1116
1117                 d->Destroy ();
1118         }
1119
1120         void help_about ()
1121         {
1122                 auto d = new AboutDialog (this);
1123                 d->ShowModal ();
1124                 d->Destroy ();
1125         }
1126
1127         void help_report_a_problem ()
1128         {
1129                 auto d = new ReportProblemDialog (this, _film);
1130                 if (d->ShowModal () == wxID_OK) {
1131                         d->report ();
1132                 }
1133                 d->Destroy ();
1134         }
1135
1136         bool should_close ()
1137         {
1138                 if (!JobManager::instance()->work_to_do ()) {
1139                         return true;
1140                 }
1141
1142                 auto d = new wxMessageDialog (
1143                         0,
1144                         _("There are unfinished jobs; are you sure you want to quit?"),
1145                         _("Unfinished jobs"),
1146                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
1147                         );
1148
1149                 bool const r = d->ShowModal() == wxID_YES;
1150                 d->Destroy ();
1151                 return r;
1152         }
1153
1154         void close (wxCloseEvent& ev)
1155         {
1156                 if (!should_close ()) {
1157                         ev.Veto ();
1158                         return;
1159                 }
1160
1161                 if (_film && _film->dirty ()) {
1162
1163                         auto dialog = new FilmChangedClosingDialog (_film->name ());
1164                         int const r = dialog->run ();
1165                         delete dialog;
1166
1167                         switch (r) {
1168                         case wxID_NO:
1169                                 /* Don't save and carry on to close */
1170                                 break;
1171                         case wxID_YES:
1172                                 /* Save and carry on to close */
1173                                 _film->write_metadata ();
1174                                 break;
1175                         case wxID_CANCEL:
1176                                 /* Veto the event and stop */
1177                                 ev.Veto ();
1178                                 return;
1179                         }
1180                 }
1181
1182                 /* We don't want to hear about any more configuration changes, since they
1183                    cause the File menu to be altered, which itself will be deleted around
1184                    now (without, as far as I can see, any way for us to find out).
1185                 */
1186                 _config_changed_connection.disconnect ();
1187
1188                 /* Also stop hearing about analytics-related stuff */
1189                 _analytics_message_connection.disconnect ();
1190
1191                 ev.Skip ();
1192         }
1193
1194         void set_menu_sensitivity ()
1195         {
1196                 auto jobs = JobManager::instance()->get ();
1197                 auto i = jobs.begin();
1198                 while (i != jobs.end() && (*i)->json_name() != "transcode") {
1199                         ++i;
1200                 }
1201                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
1202                 bool const have_cpl = _film && !_film->cpls().empty ();
1203                 bool const have_single_selected_content = _film_editor->content_panel()->selected().size() == 1;
1204                 bool const have_selected_content = !_film_editor->content_panel()->selected().empty();
1205                 bool const have_selected_video_content = !_film_editor->content_panel()->selected_video().empty();
1206
1207                 for (auto j: menu_items) {
1208
1209                         bool enabled = true;
1210
1211                         if ((j.second & NEEDS_FILM) && !_film) {
1212                                 enabled = false;
1213                         }
1214
1215                         if ((j.second & NOT_DURING_DCP_CREATION) && dcp_creation) {
1216                                 enabled = false;
1217                         }
1218
1219                         if ((j.second & NEEDS_CPL) && !have_cpl) {
1220                                 enabled = false;
1221                         }
1222
1223                         if ((j.second & NEEDS_SELECTED_CONTENT) && !have_selected_content) {
1224                                 enabled = false;
1225                         }
1226
1227                         if ((j.second & NEEDS_SINGLE_SELECTED_CONTENT) && !have_single_selected_content) {
1228                                 enabled = false;
1229                         }
1230
1231                         if ((j.second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
1232                                 enabled = false;
1233                         }
1234
1235                         if ((j.second & NEEDS_CLIPBOARD) && !_clipboard) {
1236                                 enabled = false;
1237                         }
1238
1239                         if ((j.second & NEEDS_ENCRYPTION) && (!_film || !_film->encrypted())) {
1240                                 enabled = false;
1241                         }
1242
1243                         j.first->Enable (enabled);
1244                 }
1245         }
1246
1247         /** @return true if the operation that called this method
1248          *  should continue, false to abort it.
1249          */
1250         template <class T>
1251         bool maybe_save_film ()
1252         {
1253                 if (!_film) {
1254                         return true;
1255                 }
1256
1257                 if (_film->dirty ()) {
1258                         T d (_film->name ());
1259                         switch (d.run ()) {
1260                         case wxID_NO:
1261                                 return true;
1262                         case wxID_YES:
1263                                 _film->write_metadata ();
1264                                 return true;
1265                         case wxID_CANCEL:
1266                                 return false;
1267                         }
1268                 }
1269
1270                 return true;
1271         }
1272
1273         template <class T>
1274         bool maybe_save_then_delete_film ()
1275         {
1276                 bool const r = maybe_save_film<T> ();
1277                 if (r) {
1278                         _film.reset ();
1279                 }
1280                 return r;
1281         }
1282
1283         void add_item (wxMenu* menu, wxString text, int id, int sens)
1284         {
1285                 auto item = menu->Append (id, text);
1286                 menu_items.insert (make_pair (item, sens));
1287         }
1288
1289         void setup_menu (wxMenuBar* m)
1290         {
1291                 _file_menu = new wxMenu;
1292                 /* [Shortcut] Ctrl+N:New film */
1293                 add_item (_file_menu, _("New...\tCtrl-N"), ID_file_new, ALWAYS);
1294                 /* [Shortcut] Ctrl+O:Open existing film */
1295                 add_item (_file_menu, _("&Open...\tCtrl-O"), ID_file_open, ALWAYS);
1296                 _file_menu->AppendSeparator ();
1297                 /* [Shortcut] Ctrl+S:Save current film */
1298                 add_item (_file_menu, _("&Save\tCtrl-S"), ID_file_save, NEEDS_FILM);
1299                 _file_menu->AppendSeparator ();
1300                 add_item (_file_menu, _("Save as &template..."), ID_file_save_as_template, NEEDS_FILM);
1301                 add_item (_file_menu, _("Duplicate..."), ID_file_duplicate, NEEDS_FILM);
1302                 add_item (_file_menu, _("Duplicate and open..."), ID_file_duplicate_and_open, NEEDS_FILM);
1303
1304                 _history_position = _file_menu->GetMenuItems().GetCount();
1305
1306                 _file_menu->AppendSeparator ();
1307                 /* [Shortcut] Ctrl+W:Close current film */
1308                 add_item (_file_menu, _("&Close\tCtrl-W"), ID_file_close, NEEDS_FILM);
1309
1310 #ifndef __WXOSX__
1311                 _file_menu->AppendSeparator ();
1312 #endif
1313
1314 #ifdef __WXOSX__
1315                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
1316 #else
1317                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
1318 #endif
1319
1320                 auto edit = new wxMenu;
1321                 /* [Shortcut] Ctrl+C:Copy settings from currently selected content */
1322                 add_item (edit, _("Copy settings\tCtrl-C"), ID_edit_copy, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SINGLE_SELECTED_CONTENT);
1323                 /* [Shortcut] Ctrl+V:Paste settings into currently selected content */
1324                 add_item (edit, _("Paste settings...\tCtrl-V"), ID_edit_paste, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SELECTED_CONTENT | NEEDS_CLIPBOARD);
1325                 edit->AppendSeparator ();
1326                 /* [Shortcut] Shift+Ctrl+A:Select all content */
1327                 add_item (edit, _("Select all\tShift-Ctrl-A"), ID_edit_select_all, NEEDS_FILM);
1328
1329 #ifdef __WXOSX__
1330                 add_item (_file_menu, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1331 #else
1332                 edit->AppendSeparator ();
1333                 /* [Shortcut] Ctrl+P:Open preferences window */
1334                 add_item (edit, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1335 #endif
1336
1337                 auto jobs_menu = new wxMenu;
1338                 /* [Shortcut] Ctrl+M:Make DCP */
1339                 add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1340                 /* [Shortcut] Ctrl+B:Make DCP in the batch converter*/
1341                 add_item (jobs_menu, _("Make DCP in &batch converter\tCtrl-B"), ID_jobs_make_dcp_batch, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1342                 jobs_menu->AppendSeparator ();
1343                 /* [Shortcut] Ctrl+K:Make KDMs */
1344                 add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM);
1345                 /* [Shortcut] Ctrl+D:Make DKDMs */
1346                 add_item (jobs_menu, _("Make &DKDMs...\tCtrl-D"), ID_jobs_make_dkdms, NEEDS_FILM);
1347                 add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM | NEEDS_ENCRYPTION);
1348                 jobs_menu->AppendSeparator ();
1349                 /* [Shortcut] Ctrl+E:Export video file */
1350                 add_item (jobs_menu, _("Export video file...\tCtrl-E"), ID_jobs_export_video_file, NEEDS_FILM);
1351                 add_item (jobs_menu, _("Export subtitles..."), ID_jobs_export_subtitles, NEEDS_FILM);
1352                 jobs_menu->AppendSeparator ();
1353                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1354
1355 #if defined(DCPOMATIC_OSX)
1356                 add_item (jobs_menu, _("S&how DCP in Finder"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1357 #elif defined(DCPOMATIC_WINDOWS)
1358                 add_item (jobs_menu, _("S&how DCP in Explorer"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1359 #else
1360                 add_item (jobs_menu, _("S&how DCP in Files"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1361 #endif
1362
1363                 add_item (jobs_menu, _("Open DCP in &player"), ID_jobs_open_dcp_in_player, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1364
1365                 auto view = new wxMenu;
1366                 add_item (view, _("Closed captions..."), ID_view_closed_captions, NEEDS_FILM);
1367                 add_item (view, _("Video waveform..."), ID_view_video_waveform, NEEDS_FILM);
1368
1369                 auto tools = new wxMenu;
1370                 add_item (tools, _("Hints..."), ID_tools_hints, NEEDS_FILM);
1371                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
1372                 add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0);
1373                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
1374                 add_item (tools, _("Send translations..."), ID_tools_send_translations, 0);
1375                 add_item (tools, _("System information..."), ID_tools_system_information, 0);
1376                 tools->AppendSeparator ();
1377                 add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
1378
1379                 wxMenu* help = new wxMenu;
1380 #ifdef __WXOSX__
1381                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
1382 #else
1383                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
1384 #endif
1385                 add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM);
1386
1387                 m->Append (_file_menu, _("&File"));
1388                 m->Append (edit, _("&Edit"));
1389                 m->Append (jobs_menu, _("&Jobs"));
1390                 m->Append (view, _("&View"));
1391                 m->Append (tools, _("&Tools"));
1392                 m->Append (help, _("&Help"));
1393         }
1394
1395         void config_changed (Config::Property what)
1396         {
1397                 /* Instantly save any config changes when using the DCP-o-matic GUI */
1398                 if (what == Config::CINEMAS) {
1399                         try {
1400                                 Config::instance()->write_cinemas();
1401                         } catch (exception& e) {
1402                                 error_dialog (
1403                                         this,
1404                                         wxString::Format (
1405                                                 _("Could not write to cinemas file at %s.  Your changes have not been saved."),
1406                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1407                                                 )
1408                                         );
1409                         }
1410                 } else {
1411                         try {
1412                                 Config::instance()->write_config();
1413                         } catch (exception& e) {
1414                                 error_dialog (
1415                                         this,
1416                                         wxString::Format (
1417                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
1418                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1419                                                 )
1420                                         );
1421                         }
1422                 }
1423
1424                 for (int i = 0; i < _history_items; ++i) {
1425                         delete _file_menu->Remove (ID_file_history + i);
1426                 }
1427
1428                 if (_history_separator) {
1429                         _file_menu->Remove (_history_separator);
1430                 }
1431                 delete _history_separator;
1432                 _history_separator = 0;
1433
1434                 int pos = _history_position;
1435
1436                 /* Clear out non-existant history items before we re-build the menu */
1437                 Config::instance()->clean_history ();
1438                 auto history = Config::instance()->history();
1439
1440                 if (!history.empty ()) {
1441                         _history_separator = _file_menu->InsertSeparator (pos++);
1442                 }
1443
1444                 for (size_t i = 0; i < history.size(); ++i) {
1445                         string s;
1446                         if (i < 9) {
1447                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1448                         } else {
1449                                 s = history[i].string();
1450                         }
1451                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1452                 }
1453
1454                 _history_items = history.size ();
1455
1456                 dcpomatic_log->set_types (Config::instance()->log_types());
1457         }
1458
1459         void update_checker_state_changed ()
1460         {
1461                 auto uc = UpdateChecker::instance ();
1462
1463                 bool const announce =
1464                         _update_news_requested ||
1465                         (uc->stable() && Config::instance()->check_for_updates()) ||
1466                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
1467
1468                 _update_news_requested = false;
1469
1470                 if (!announce) {
1471                         return;
1472                 }
1473
1474                 if (uc->state() == UpdateChecker::State::YES) {
1475                         auto dialog = new UpdateDialog (this, uc->stable(), uc->test());
1476                         dialog->ShowModal ();
1477                         dialog->Destroy ();
1478                 } else if (uc->state() == UpdateChecker::State::FAILED) {
1479                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
1480                 } else {
1481                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
1482                 }
1483
1484                 _update_news_requested = false;
1485         }
1486
1487         void start_stop_pressed ()
1488         {
1489                 if (_film_viewer->playing()) {
1490                         _film_viewer->stop();
1491                 } else {
1492                         _film_viewer->start();
1493                 }
1494         }
1495
1496         void timeline_pressed ()
1497         {
1498                 _film_editor->content_panel()->timeline_clicked ();
1499         }
1500
1501         void back_frame ()
1502         {
1503                 _film_viewer->seek_by (-_film_viewer->one_video_frame(), true);
1504         }
1505
1506         void forward_frame ()
1507         {
1508                 _film_viewer->seek_by (_film_viewer->one_video_frame(), true);
1509         }
1510
1511         void analytics_message (string title, string html)
1512         {
1513                 auto d = new HTMLDialog(this, std_to_wx(title), std_to_wx(html));
1514                 d->ShowModal();
1515                 d->Destroy();
1516         }
1517
1518         FilmEditor* _film_editor;
1519         std::shared_ptr<FilmViewer> _film_viewer;
1520         StandardControls* _controls;
1521         VideoWaveformDialog* _video_waveform_dialog = nullptr;
1522         SystemInformationDialog* _system_information_dialog = nullptr;
1523         HintsDialog* _hints_dialog = nullptr;
1524         ServersListDialog* _servers_list_dialog = nullptr;
1525         wxPreferencesEditor* _config_dialog = nullptr;
1526         KDMDialog* _kdm_dialog = nullptr;
1527         DKDMDialog* _dkdm_dialog = nullptr;
1528         TemplatesDialog* _templates_dialog = nullptr;
1529         wxMenu* _file_menu = nullptr;
1530         shared_ptr<Film> _film;
1531         int _history_items = 0;
1532         int _history_position = 0;
1533         wxMenuItem* _history_separator = nullptr;
1534         boost::signals2::scoped_connection _config_changed_connection;
1535         boost::signals2::scoped_connection _analytics_message_connection;
1536         bool _update_news_requested = false;
1537         shared_ptr<Content> _clipboard;
1538         bool _first_shown_called = false;
1539 };
1540
1541
1542 static const wxCmdLineEntryDesc command_line_description[] = {
1543         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1544         { wxCMD_LINE_OPTION, "c", "content", "add content file / directory", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1545         { wxCMD_LINE_OPTION, "d", "dcp", "add content DCP", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1546         { wxCMD_LINE_SWITCH, "v", "version", "show DCP-o-matic version", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1547         { wxCMD_LINE_OPTION, "", "config", "directory containing config.xml and cinemas.xml", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1548         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1549         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1550 };
1551
1552
1553 /** @class App
1554  *  @brief The magic App class for wxWidgets.
1555  */
1556 class App : public wxApp
1557 {
1558 public:
1559         App ()
1560                 : wxApp ()
1561         {
1562 #ifdef DCPOMATIC_LINUX
1563                 XInitThreads ();
1564 #endif
1565         }
1566
1567 private:
1568
1569         bool OnInit ()
1570         {
1571                 try {
1572                         wxInitAllImageHandlers ();
1573
1574                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1575                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
1576
1577                         _splash = maybe_show_splash ();
1578
1579                         SetAppName (_("DCP-o-matic"));
1580
1581                         if (!wxApp::OnInit()) {
1582                                 return false;
1583                         }
1584
1585 #ifdef DCPOMATIC_LINUX
1586                         unsetenv ("UBUNTU_MENUPROXY");
1587 #endif
1588
1589 #ifdef DCPOMATIC_OSX
1590                         dcpomatic_sleep_seconds (1);
1591                         make_foreground_application ();
1592 #endif
1593
1594                         dcpomatic_setup_path_encoding ();
1595
1596                         /* Enable i18n; this will create a Config object
1597                            to look for a force-configured language.  This Config
1598                            object will be wrong, however, because dcpomatic_setup
1599                            hasn't yet been called and there aren't any filters etc.
1600                            set up yet.
1601                         */
1602                         dcpomatic_setup_i18n ();
1603
1604                         /* Set things up, including filters etc.
1605                            which will now be internationalised correctly.
1606                         */
1607                         dcpomatic_setup ();
1608
1609                         /* Force the configuration to be re-loaded correctly next
1610                            time it is needed.
1611                         */
1612                         Config::drop ();
1613
1614                         /* We only look out for bad configuration from here on, as before
1615                            dcpomatic_setup() we haven't got OpenSSL ready so there will be
1616                            incorrect certificate chain validity errors.
1617                         */
1618                         Config::Bad.connect (boost::bind(&App::config_bad, this, _1));
1619
1620                         _frame = new DOMFrame (_("DCP-o-matic"));
1621                         SetTopWindow (_frame);
1622                         _frame->Maximize ();
1623                         close_splash ();
1624
1625                         if (running_32_on_64 ()) {
1626                                 NagDialog::maybe_nag (
1627                                         _frame, Config::NAG_32_ON_64,
1628                                         _("You are running the 32-bit version of DCP-o-matic on a 64-bit version of Windows.  This will limit the memory available to DCP-o-matic and may cause errors.  You are strongly advised to install the 64-bit version of DCP-o-matic."),
1629                                         false);
1630                         }
1631
1632                         _frame->Show ();
1633
1634                         signal_manager = new wxSignalManager (this);
1635                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
1636
1637                         if (!_film_to_load.empty() && boost::filesystem::is_directory(_film_to_load)) {
1638                                 try {
1639                                         _frame->load_film (_film_to_load);
1640                                 } catch (exception& e) {
1641                                         error_dialog (nullptr, std_to_wx(String::compose(wx_to_std(_("Could not load film %1 (%2)")), _film_to_load)), std_to_wx(e.what()));
1642                                 }
1643                         }
1644
1645                         if (!_film_to_create.empty ()) {
1646                                 _frame->new_film (_film_to_create, optional<string>());
1647                                 if (!_content_to_add.empty()) {
1648                                         for (auto i: content_factory(_content_to_add)) {
1649                                                 _frame->film()->examine_and_add_content(i);
1650                                         }
1651                                 }
1652                                 if (!_dcp_to_add.empty ()) {
1653                                         _frame->film()->examine_and_add_content(make_shared<DCPContent>(_dcp_to_add));
1654                                 }
1655                         }
1656
1657                         Bind (wxEVT_TIMER, boost::bind (&App::check, this));
1658                         _timer.reset (new wxTimer (this));
1659                         _timer->Start (1000);
1660
1661                         if (Config::instance()->check_for_updates ()) {
1662                                 UpdateChecker::instance()->run ();
1663                         }
1664                 }
1665                 catch (exception& e)
1666                 {
1667                         if (_splash) {
1668                                 _splash->Destroy ();
1669                                 _splash = nullptr;
1670                         }
1671                         error_dialog (nullptr, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
1672                 }
1673
1674                 return true;
1675         }
1676
1677         void OnInitCmdLine (wxCmdLineParser& parser)
1678         {
1679                 parser.SetDesc (command_line_description);
1680                 parser.SetSwitchChars (wxT ("-"));
1681         }
1682
1683         bool OnCmdLineParsed (wxCmdLineParser& parser)
1684         {
1685                 if (parser.Found (wxT("version"))) {
1686                         cout << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n";
1687                         exit (EXIT_SUCCESS);
1688                 }
1689
1690                 if (parser.GetParamCount() > 0) {
1691                         if (parser.Found (wxT ("new"))) {
1692                                 _film_to_create = wx_to_std (parser.GetParam (0));
1693                         } else {
1694                                 _film_to_load = wx_to_std (parser.GetParam (0));
1695                         }
1696                 }
1697
1698                 wxString content;
1699                 if (parser.Found (wxT ("content"), &content)) {
1700                         _content_to_add = wx_to_std (content);
1701                 }
1702
1703                 wxString dcp;
1704                 if (parser.Found (wxT ("dcp"), &dcp)) {
1705                         _dcp_to_add = wx_to_std (dcp);
1706                 }
1707
1708                 wxString config;
1709                 if (parser.Found (wxT("config"), &config)) {
1710                         State::override_path = wx_to_std (config);
1711                 }
1712
1713                 return true;
1714         }
1715
1716         void report_exception ()
1717         {
1718                 try {
1719                         throw;
1720                 } catch (FileError& e) {
1721                         error_dialog (
1722                                 nullptr,
1723                                 wxString::Format(
1724                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1725                                         std_to_wx (e.what()),
1726                                         std_to_wx (e.file().string().c_str())
1727                                         )
1728                                 );
1729                 } catch (boost::filesystem::filesystem_error& e) {
1730                         error_dialog (
1731                                 nullptr,
1732                                 wxString::Format(
1733                                         _("An exception occurred: %s (%s) (%s)\n\n") + REPORT_PROBLEM,
1734                                         std_to_wx (e.what()),
1735                                         std_to_wx (e.path1().string()),
1736                                         std_to_wx (e.path2().string())
1737                                         )
1738                                 );
1739                 } catch (exception& e) {
1740                         error_dialog (
1741                                 nullptr,
1742                                 wxString::Format(
1743                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1744                                         std_to_wx (e.what ())
1745                                         )
1746                                 );
1747                 } catch (...) {
1748                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1749                 }
1750         }
1751
1752         /* An unhandled exception has occurred inside the main event loop */
1753         bool OnExceptionInMainLoop ()
1754         {
1755                 report_exception ();
1756                 /* This will terminate the program */
1757                 return false;
1758         }
1759
1760         void OnUnhandledException ()
1761         {
1762                 report_exception ();
1763         }
1764
1765         void idle (wxIdleEvent& ev)
1766         {
1767                 signal_manager->ui_idle ();
1768                 ev.Skip ();
1769         }
1770
1771         void check ()
1772         {
1773                 try {
1774                         EncodeServerFinder::instance()->rethrow ();
1775                 } catch (exception& e) {
1776                         error_dialog (0, std_to_wx (e.what ()));
1777                 }
1778         }
1779
1780         void close_splash ()
1781         {
1782                 if (_splash) {
1783                         _splash->Destroy ();
1784                         _splash = 0;
1785                 }
1786         }
1787
1788         void config_failed_to_load ()
1789         {
1790                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1791         }
1792
1793         void config_warning (string m)
1794         {
1795                 message_dialog (_frame, std_to_wx(m));
1796         }
1797
1798         bool config_bad (Config::BadReason reason)
1799         {
1800                 /* Destroy the splash screen here, as otherwise bad things seem to happen (for reasons unknown)
1801                    when we open our recreate dialog, close it, *then* try to Destroy the splash (the Destroy fails).
1802                 */
1803                 _splash->Destroy ();
1804                 _splash = nullptr;
1805
1806                 auto config = Config::instance();
1807                 switch (reason) {
1808                 case Config::BAD_SIGNER_UTF8_STRINGS:
1809                 {
1810                         if (config->nagged(Config::NAG_BAD_SIGNER_CHAIN_UTF8)) {
1811                                 return false;
1812                         }
1813                         auto d = new RecreateChainDialog (
1814                                 _frame, _("Recreate signing certificates"),
1815                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs contains a small error\n"
1816                                   "which will prevent DCPs from being validated correctly on some systems.  Do you want to re-create\n"
1817                                   "the certificate chain for signing DCPs and KDMs?"),
1818                                 _("Do nothing"),
1819                                 Config::NAG_BAD_SIGNER_CHAIN_UTF8
1820                                 );
1821                         int const r = d->ShowModal ();
1822                         d->Destroy ();
1823                         return r == wxID_OK;
1824                 }
1825                 case Config::BAD_SIGNER_VALIDITY_TOO_LONG:
1826                 {
1827                         if (config->nagged(Config::NAG_BAD_SIGNER_CHAIN_VALIDITY)) {
1828                                 return false;
1829                         }
1830                         auto d = new RecreateChainDialog (
1831                                 _frame, _("Recreate signing certificates"),
1832                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs has a validity period\n"
1833                                   "that is too long.  This will cause problems playing back DCPs on some systems.\n"
1834                                   "Do you want to re-create the certificate chain for signing DCPs and KDMs?"),
1835                                 _("Do nothing"),
1836                                 Config::NAG_BAD_SIGNER_CHAIN_VALIDITY
1837                                 );
1838                         int const r = d->ShowModal ();
1839                         d->Destroy ();
1840                         return r == wxID_OK;
1841                 }
1842                 case Config::BAD_SIGNER_INCONSISTENT:
1843                 {
1844                         auto d = new RecreateChainDialog (
1845                                 _frame, _("Recreate signing certificates"),
1846                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs is inconsistent and\n"
1847                                   "cannot be used.  DCP-o-matic cannot start unless you re-create it.  Do you want to re-create\n"
1848                                   "the certificate chain for signing DCPs and KDMs?"),
1849                                 _("Close DCP-o-matic")
1850                                 );
1851                         int const r = d->ShowModal ();
1852                         d->Destroy ();
1853                         if (r != wxID_OK) {
1854                                 exit (EXIT_FAILURE);
1855                         }
1856                         return true;
1857                 }
1858                 case Config::BAD_DECRYPTION_INCONSISTENT:
1859                 {
1860                         auto d = new RecreateChainDialog (
1861                                 _frame, _("Recreate KDM decryption chain"),
1862                                 _("The certificate chain that DCP-o-matic uses for decrypting KDMs is inconsistent and\n"
1863                                   "cannot be used.  DCP-o-matic cannot start unless you re-create it.  Do you want to re-create\n"
1864                                   "the certificate chain for decrypting KDMs?  You may want to say \"No\" here and back up your\n"
1865                                   "configuration before continuing."),
1866                                 _("Close DCP-o-matic")
1867                                 );
1868                         int const r = d->ShowModal ();
1869                         d->Destroy ();
1870                         if (r != wxID_OK) {
1871                                 exit (EXIT_FAILURE);
1872                         }
1873                         return true;
1874                 }
1875                 default:
1876                         DCPOMATIC_ASSERT (false);
1877                 }
1878         }
1879
1880         DOMFrame* _frame = nullptr;
1881         wxSplashScreen* _splash = nullptr;
1882         shared_ptr<wxTimer> _timer;
1883         string _film_to_load;
1884         string _film_to_create;
1885         string _content_to_add;
1886         string _dcp_to_add;
1887 };
1888
1889
1890 IMPLEMENT_APP (App)