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