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