Let's try disabling KDM menu options when we are using non-encrypted films.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/tools/dcpomatic.cc
22  *  @brief The main DCP-o-matic GUI.
23  */
24
25 #include "wx/film_viewer.h"
26 #include "wx/film_editor.h"
27 #include "wx/job_manager_view.h"
28 #include "wx/full_config_dialog.h"
29 #include "wx/wx_util.h"
30 #include "wx/film_name_location_dialog.h"
31 #include "wx/wx_signal_manager.h"
32 #include "wx/about_dialog.h"
33 #include "wx/kdm_dialog.h"
34 #include "wx/self_dkdm_dialog.h"
35 #include "wx/servers_list_dialog.h"
36 #include "wx/hints_dialog.h"
37 #include "wx/update_dialog.h"
38 #include "wx/content_panel.h"
39 #include "wx/report_problem_dialog.h"
40 #include "wx/video_waveform_dialog.h"
41 #include "wx/save_template_dialog.h"
42 #include "wx/templates_dialog.h"
43 #include "wx/nag_dialog.h"
44 #include "wx/export_dialog.h"
45 #include "wx/paste_dialog.h"
46 #include "lib/film.h"
47 #include "lib/config.h"
48 #include "lib/util.h"
49 #include "lib/video_content.h"
50 #include "lib/content.h"
51 #include "lib/version.h"
52 #include "lib/signal_manager.h"
53 #include "lib/log.h"
54 #include "lib/job_manager.h"
55 #include "lib/exceptions.h"
56 #include "lib/cinema.h"
57 #include "lib/screen_kdm.h"
58 #include "lib/send_kdm_email_job.h"
59 #include "lib/encode_server_finder.h"
60 #include "lib/update_checker.h"
61 #include "lib/cross.h"
62 #include "lib/content_factory.h"
63 #include "lib/compose.hpp"
64 #include "lib/cinema_kdms.h"
65 #include "lib/dcpomatic_socket.h"
66 #include "lib/hints.h"
67 #include "lib/dcp_content.h"
68 #include "lib/ffmpeg_encoder.h"
69 #include "lib/transcode_job.h"
70 #include "lib/dkdm_wrapper.h"
71 #include "lib/audio_content.h"
72 #include "lib/subtitle_content.h"
73 #include <dcp/exceptions.h>
74 #include <dcp/raw_convert.h>
75 #include <wx/generic/aboutdlgg.h>
76 #include <wx/stdpaths.h>
77 #include <wx/cmdline.h>
78 #include <wx/preferences.h>
79 #include <wx/splash.h>
80 #ifdef __WXMSW__
81 #include <shellapi.h>
82 #endif
83 #ifdef __WXOSX__
84 #include <ApplicationServices/ApplicationServices.h>
85 #endif
86 #include <boost/filesystem.hpp>
87 #include <boost/noncopyable.hpp>
88 #include <boost/foreach.hpp>
89 #include <iostream>
90 #include <fstream>
91 /* This is OK as it's only used with DCPOMATIC_WINDOWS */
92 #include <sstream>
93
94 #ifdef check
95 #undef check
96 #endif
97
98 using std::cout;
99 using std::wcout;
100 using std::string;
101 using std::vector;
102 using std::wstring;
103 using std::wstringstream;
104 using std::map;
105 using std::make_pair;
106 using std::list;
107 using std::exception;
108 using boost::shared_ptr;
109 using boost::dynamic_pointer_cast;
110 using boost::optional;
111 using dcp::raw_convert;
112
113 class FilmChangedClosingDialog : public boost::noncopyable
114 {
115 public:
116         FilmChangedClosingDialog (string name)
117         {
118                 _dialog = new wxMessageDialog (
119                         0,
120                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
121                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
122                         /// project (Film) has been changed since it was last saved.
123                         _("Film changed"),
124                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
125                         );
126
127                 _dialog->SetYesNoCancelLabels (
128                         _("Save film and close"), _("Close without saving film"), _("Don't close")
129                         );
130         }
131
132         ~FilmChangedClosingDialog ()
133         {
134                 _dialog->Destroy ();
135         }
136
137         int run ()
138         {
139                 return _dialog->ShowModal ();
140         }
141
142 private:
143         wxMessageDialog* _dialog;
144 };
145
146 class FilmChangedDuplicatingDialog : public boost::noncopyable
147 {
148 public:
149         FilmChangedDuplicatingDialog (string name)
150         {
151                 _dialog = new wxMessageDialog (
152                         0,
153                         wxString::Format (_("Save changes to film \"%s\" before duplicating?"), std_to_wx (name).data()),
154                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
155                         /// project (Film) has been changed since it was last saved.
156                         _("Film changed"),
157                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
158                         );
159
160                 _dialog->SetYesNoCancelLabels (
161                         _("Save film and duplicate"), _("Duplicate without saving film"), _("Don't duplicate")
162                         );
163         }
164
165         ~FilmChangedDuplicatingDialog ()
166         {
167                 _dialog->Destroy ();
168         }
169
170         int run ()
171         {
172                 return _dialog->ShowModal ();
173         }
174
175 private:
176         wxMessageDialog* _dialog;
177 };
178
179 #define ALWAYS                        0x0
180 #define NEEDS_FILM                    0x1
181 #define NOT_DURING_DCP_CREATION       0x2
182 #define NEEDS_CPL                     0x4
183 #define NEEDS_SINGLE_SELECTED_CONTENT 0x8
184 #define NEEDS_SELECTED_CONTENT        0x10
185 #define NEEDS_SELECTED_VIDEO_CONTENT  0x20
186 #define NEEDS_CLIPBOARD               0x40
187 #define NEEDS_ENCRYPTION              0x80
188
189 map<wxMenuItem*, int> menu_items;
190
191 enum {
192         ID_file_new = 1,
193         ID_file_open,
194         ID_file_save,
195         ID_file_save_as_template,
196         ID_file_duplicate,
197         ID_file_duplicate_and_open,
198         ID_file_history,
199         /* Allow spare IDs after _history for the recent files list */
200         ID_edit_copy = 100,
201         ID_edit_paste,
202         ID_content_scale_to_fit_width,
203         ID_content_scale_to_fit_height,
204         ID_jobs_make_dcp,
205         ID_jobs_make_dcp_batch,
206         ID_jobs_make_kdms,
207         ID_jobs_make_self_dkdm,
208         ID_jobs_export,
209         ID_jobs_send_dcp_to_tms,
210         ID_jobs_show_dcp,
211         ID_tools_video_waveform,
212         ID_tools_hints,
213         ID_tools_encoding_servers,
214         ID_tools_manage_templates,
215         ID_tools_check_for_updates,
216         ID_tools_restore_default_preferences,
217         ID_help_report_a_problem,
218         /* IDs for shortcuts (with no associated menu item) */
219         ID_add_file,
220         ID_remove
221 };
222
223 class DOMFrame : public wxFrame
224 {
225 public:
226         DOMFrame (wxString const & title)
227                 : wxFrame (NULL, -1, title)
228                 , _video_waveform_dialog (0)
229                 , _hints_dialog (0)
230                 , _servers_list_dialog (0)
231                 , _config_dialog (0)
232                 , _kdm_dialog (0)
233                 , _templates_dialog (0)
234                 , _file_menu (0)
235                 , _history_items (0)
236                 , _history_position (0)
237                 , _history_separator (0)
238                 , _update_news_requested (false)
239         {
240 #if defined(DCPOMATIC_WINDOWS)
241                 if (Config::instance()->win32_console ()) {
242                         AllocConsole();
243
244                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
245                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
246                         FILE* hf_out = _fdopen(hCrt, "w");
247                         setvbuf(hf_out, NULL, _IONBF, 1);
248                         *stdout = *hf_out;
249
250                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
251                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
252                         FILE* hf_in = _fdopen(hCrt, "r");
253                         setvbuf(hf_in, NULL, _IONBF, 128);
254                         *stdin = *hf_in;
255
256                         cout << "DCP-o-matic is starting." << "\n";
257                 }
258 #endif
259
260                 wxMenuBar* bar = new wxMenuBar;
261                 setup_menu (bar);
262                 SetMenuBar (bar);
263
264 #ifdef DCPOMATIC_WINDOWS
265                 SetIcon (wxIcon (std_to_wx ("id")));
266 #endif
267
268                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
269                 config_changed (Config::OTHER);
270
271                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_new, this),                ID_file_new);
272                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this),               ID_file_open);
273                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save, this),               ID_file_save);
274                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_as_template, this),   ID_file_save_as_template);
275                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate, this),          ID_file_duplicate);
276                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate_and_open, this), ID_file_duplicate_and_open);
277                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
278                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),               wxID_EXIT);
279                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_copy, this),               ID_edit_copy);
280                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_paste, this),              ID_edit_paste);
281                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),        wxID_PREFERENCES);
282                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_width, this), ID_content_scale_to_fit_width);
283                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
284                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
285                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
286                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp_batch, this),     ID_jobs_make_dcp_batch);
287                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
288                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_export, this),             ID_jobs_export);
289                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
290                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
291                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_video_waveform, this),    ID_tools_video_waveform);
292                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_hints, this),             ID_tools_hints);
293                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
294                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_manage_templates, this),  ID_tools_manage_templates);
295                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
296                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
297                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
298                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
299
300                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&DOMFrame::close, this, _1));
301
302                 /* Use a panel as the only child of the Frame so that we avoid
303                    the dark-grey background on Windows.
304                 */
305                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
306
307                 _film_viewer = new FilmViewer (overall_panel);
308                 _film_editor = new FilmEditor (overall_panel, _film_viewer);
309                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, false);
310
311                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
312                 right_sizer->Add (_film_viewer, 2, wxEXPAND | wxALL, 6);
313                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
314
315                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
316                 main_sizer->Add (_film_editor, 1, wxEXPAND | wxALL, 6);
317                 main_sizer->Add (right_sizer, 2, wxEXPAND | wxALL, 6);
318
319                 set_menu_sensitivity ();
320
321                 _film_editor->FileChanged.connect (bind (&DOMFrame::file_changed, this, _1));
322                 _film_editor->content_panel()->SelectionChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
323                 file_changed ("");
324
325                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
326
327                 overall_panel->SetSizer (main_sizer);
328
329 #ifdef __WXOSX__
330                 int accelerators = 3;
331 #else
332                 int accelerators = 2;
333 #endif
334                 wxAcceleratorEntry* accel = new wxAcceleratorEntry[accelerators];
335                 accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file);
336                 accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove);
337 #ifdef __WXOSX__
338                 accel[2].Set (wxACCEL_CTRL, static_cast<int>('W'), wxID_EXIT);
339 #endif
340                 Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file);
341                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::remove_clicked, this, _1), ID_remove);
342                 wxAcceleratorTable accel_table (accelerators, accel);
343                 SetAcceleratorTable (accel_table);
344                 delete[] accel;
345
346                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
347         }
348
349         void remove_clicked (wxCommandEvent& ev)
350         {
351                 if (_film_editor->content_panel()->remove_clicked (true)) {
352                         ev.Skip ();
353                 }
354         }
355
356         void new_film (boost::filesystem::path path, optional<string> template_name)
357         {
358                 shared_ptr<Film> film (new Film (path));
359                 if (template_name) {
360                         film->use_template (template_name.get());
361                 }
362                 film->set_name (path.filename().generic_string());
363                 film->write_metadata ();
364                 set_film (film);
365         }
366
367         void load_film (boost::filesystem::path file)
368         try
369         {
370                 shared_ptr<Film> film (new Film (file));
371                 list<string> const notes = film->read_metadata ();
372
373                 if (film->state_version() == 4) {
374                         error_dialog (
375                                 0,
376                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
377                                   "in this version.  Please check the film's settings carefully.")
378                                 );
379                 }
380
381                 for (list<string>::const_iterator i = notes.begin(); i != notes.end(); ++i) {
382                         error_dialog (0, std_to_wx (*i));
383                 }
384
385                 set_film (film);
386         }
387         catch (std::exception& e) {
388                 wxString p = std_to_wx (file.string ());
389                 wxCharBuffer b = p.ToUTF8 ();
390                 error_dialog (this, wxString::Format (_("Could not open film at %s"), p.data()), std_to_wx (e.what()));
391         }
392
393         void set_film (shared_ptr<Film> film)
394         {
395                 _film = film;
396                 _film_viewer->set_film (_film);
397                 _film_editor->set_film (_film);
398                 delete _video_waveform_dialog;
399                 _video_waveform_dialog = 0;
400                 set_menu_sensitivity ();
401                 if (_film->directory()) {
402                         Config::instance()->add_to_history (_film->directory().get());
403                 }
404                 _film->Changed.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
405         }
406
407         shared_ptr<Film> film () const {
408                 return _film;
409         }
410
411 private:
412
413         void file_changed (boost::filesystem::path f)
414         {
415                 string s = wx_to_std (_("DCP-o-matic"));
416                 if (!f.empty ()) {
417                         s += " - " + f.string ();
418                 }
419
420                 SetTitle (std_to_wx (s));
421         }
422
423         void file_new ()
424         {
425                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("New Film"), true);
426                 int const r = d->ShowModal ();
427
428                 if (r == wxID_OK && d->check_path() && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
429                         new_film (d->path(), d->template_name());
430                 }
431
432                 d->Destroy ();
433         }
434
435         void file_open ()
436         {
437                 wxDirDialog* c = new wxDirDialog (
438                         this,
439                         _("Select film to open"),
440                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
441                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
442                         );
443
444                 int r;
445                 while (true) {
446                         r = c->ShowModal ();
447                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
448                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
449                         } else {
450                                 break;
451                         }
452                 }
453
454                 if (r == wxID_OK && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
455                         load_film (wx_to_std (c->GetPath ()));
456                 }
457
458                 c->Destroy ();
459         }
460
461         void file_save ()
462         {
463                 _film->write_metadata ();
464         }
465
466         void file_save_as_template ()
467         {
468                 SaveTemplateDialog* d = new SaveTemplateDialog (this);
469                 int const r = d->ShowModal ();
470                 if (r == wxID_OK) {
471                         Config::instance()->save_template (_film, d->name ());
472                 }
473                 d->Destroy ();
474         }
475
476         void file_duplicate ()
477         {
478                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
479                 int const r = d->ShowModal ();
480
481                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
482                         shared_ptr<Film> film (new Film (d->path()));
483                         film->copy_from (_film);
484                         film->set_name (d->path().filename().generic_string());
485                         film->write_metadata ();
486                 }
487
488                 d->Destroy ();
489         }
490
491         void file_duplicate_and_open ()
492         {
493                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
494                 int const r = d->ShowModal ();
495
496                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
497                         shared_ptr<Film> film (new Film (d->path()));
498                         film->copy_from (_film);
499                         film->set_name (d->path().filename().generic_string());
500                         film->write_metadata ();
501                         set_film (film);
502                 }
503
504                 d->Destroy ();
505         }
506
507         void file_history (wxCommandEvent& event)
508         {
509                 vector<boost::filesystem::path> history = Config::instance()->history ();
510                 int n = event.GetId() - ID_file_history;
511                 if (n >= 0 && n < static_cast<int> (history.size ()) && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
512                         load_film (history[n]);
513                 }
514         }
515
516         void file_exit ()
517         {
518                 /* false here allows the close handler to veto the close request */
519                 Close (false);
520         }
521
522         void edit_copy ()
523         {
524                 ContentList const sel = _film_editor->content_panel()->selected();
525                 DCPOMATIC_ASSERT (sel.size() == 1);
526                 _clipboard = sel.front()->clone();
527         }
528
529         void edit_paste ()
530         {
531                 DCPOMATIC_ASSERT (_clipboard);
532
533                 PasteDialog* d = new PasteDialog (this, static_cast<bool>(_clipboard->video), static_cast<bool>(_clipboard->audio), static_cast<bool>(_clipboard->subtitle));
534                 if (d->ShowModal() == wxID_OK) {
535                         BOOST_FOREACH (shared_ptr<Content> i, _film_editor->content_panel()->selected()) {
536                                 if (d->video() && i->video) {
537                                         DCPOMATIC_ASSERT (_clipboard->video);
538                                         i->video->take_settings_from (_clipboard->video);
539                                 }
540                                 if (d->audio() && i->audio) {
541                                         DCPOMATIC_ASSERT (_clipboard->audio);
542                                         i->audio->take_settings_from (_clipboard->audio);
543                                 }
544                                 if (d->subtitle() && i->subtitle) {
545                                         DCPOMATIC_ASSERT (_clipboard->subtitle);
546                                         i->subtitle->take_settings_from (_clipboard->subtitle);
547                                 }
548                         }
549                 }
550                 d->Destroy ();
551         }
552
553         void edit_preferences ()
554         {
555                 if (!_config_dialog) {
556                         _config_dialog = create_full_config_dialog ();
557                 }
558                 _config_dialog->Show (this);
559         }
560
561         void tools_restore_default_preferences ()
562         {
563                 wxMessageDialog* d = new wxMessageDialog (
564                         0,
565                         _("Are you sure you want to restore preferences to their defaults?  This cannot be undone."),
566                         _("Restore default preferences"),
567                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
568                         );
569
570                 int const r = d->ShowModal ();
571                 d->Destroy ();
572
573                 if (r == wxID_YES) {
574                         Config::restore_defaults ();
575                 }
576         }
577
578         void jobs_make_dcp ()
579         {
580                 double required;
581                 double available;
582                 bool can_hard_link;
583
584                 if (!_film->should_be_enough_disk_space (required, available, can_hard_link)) {
585                         wxString message;
586                         if (can_hard_link) {
587                                 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);
588                         } else {
589                                 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);
590                         }
591                         if (!confirm_dialog (this, message)) {
592                                 return;
593                         }
594                 }
595
596                 if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) {
597                         HintsDialog* hints = new HintsDialog (this, _film, false);
598                         int const r = hints->ShowModal();
599                         hints->Destroy ();
600                         if (r == wxID_CANCEL) {
601                                 return;
602                         }
603                 }
604
605                 if (_film->encrypted ()) {
606                         NagDialog::maybe_nag (
607                                 this,
608                                 Config::NAG_ENCRYPTED_METADATA,
609                                 _("You are making an encrypted DCP.  It will not be possible to make KDMs for this DCP unless you have copies of "
610                                   "the <tt>metadata.xml</tt> file within the film and the metadata files within the DCP.\n\n"
611                                   "You should ensure that these files are <span weight=\"bold\" size=\"larger\">BACKED UP</span> "
612                                   "if you want to make KDMs for this film.")
613                                 );
614                 }
615
616                 /* Remove any existing DCP if the user agrees */
617                 boost::filesystem::path const dcp_dir = _film->dir (_film->dcp_name(), false);
618                 if (boost::filesystem::exists (dcp_dir)) {
619                         if (!confirm_dialog (this, wxString::Format (_("Do you want to overwrite the existing DCP %s?"), std_to_wx(dcp_dir.string()).data()))) {
620                                 return;
621                         }
622                         boost::filesystem::remove_all (dcp_dir);
623                 }
624
625                 try {
626                         /* It seems to make sense to auto-save metadata here, since the make DCP may last
627                            a long time, and crashes/power failures are moderately likely.
628                         */
629                         _film->write_metadata ();
630                         _film->make_dcp ();
631                 } catch (BadSettingError& e) {
632                         error_dialog (this, wxString::Format (_("Bad setting for %s."), std_to_wx(e.setting()).data()), std_to_wx(e.what()));
633                 } catch (std::exception& e) {
634                         error_dialog (this, wxString::Format (_("Could not make DCP.")), std_to_wx(e.what()));
635                 }
636         }
637
638         void jobs_make_kdms ()
639         {
640                 if (!_film) {
641                         return;
642                 }
643
644                 if (_kdm_dialog) {
645                         _kdm_dialog->Destroy ();
646                         _kdm_dialog = 0;
647                 }
648
649                 _kdm_dialog = new KDMDialog (this, _film);
650                 _kdm_dialog->Show ();
651         }
652
653         void jobs_make_dcp_batch ()
654         {
655                 if (!_film) {
656                         return;
657                 }
658
659                 if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) {
660                         HintsDialog* hints = new HintsDialog (this, _film, false);
661                         int const r = hints->ShowModal();
662                         hints->Destroy ();
663                         if (r == wxID_CANCEL) {
664                                 return;
665                         }
666                 }
667
668                 _film->write_metadata ();
669
670                 /* i = 0; try to connect via socket
671                    i = 1; try again, and then try to start the batch converter
672                    i = 2 onwards; try again.
673                 */
674                 for (int i = 0; i < 8; ++i) {
675                         try {
676                                 boost::asio::io_service io_service;
677                                 boost::asio::ip::tcp::resolver resolver (io_service);
678                                 boost::asio::ip::tcp::resolver::query query ("127.0.0.1", raw_convert<string> (BATCH_JOB_PORT));
679                                 boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
680                                 Socket socket (5);
681                                 socket.connect (*endpoint_iterator);
682                                 DCPOMATIC_ASSERT (_film->directory ());
683                                 string s = _film->directory()->string ();
684                                 socket.write (s.length() + 1);
685                                 socket.write ((uint8_t *) s.c_str(), s.length() + 1);
686                                 /* OK\0 */
687                                 uint8_t ok[3];
688                                 socket.read (ok, 3);
689                                 return;
690                         } catch (exception& e) {
691
692                         }
693
694                         if (i == 1) {
695                                 start_batch_converter (wx_to_std (wxStandardPaths::Get().GetExecutablePath()));
696                         }
697
698                         dcpomatic_sleep (1);
699                 }
700
701                 error_dialog (this, _("Could not find batch converter."));
702         }
703
704         void jobs_make_self_dkdm ()
705         {
706                 if (!_film) {
707                         return;
708                 }
709
710                 SelfDKDMDialog* d = new SelfDKDMDialog (this, _film);
711                 if (d->ShowModal () != wxID_OK) {
712                         d->Destroy ();
713                         return;
714                 }
715
716                 NagDialog::maybe_nag (
717                         this,
718                         Config::NAG_DKDM_CONFIG,
719                         wxString::Format (
720                                 _("You are making a DKDM which is encrypted by a private key held in"
721                                   "\n\n<tt>%s</tt>\n\nIt is <span weight=\"bold\" size=\"larger\">VITALLY IMPORTANT</span> "
722                                   "that you <span weight=\"bold\" size=\"larger\">BACK UP THIS FILE</span> since if it is lost "
723                                   "your DKDMs (and the DCPs they protect) will become useless."), std_to_wx(Config::config_file().string()).data()
724                                 )
725                         );
726
727                 optional<dcp::EncryptedKDM> kdm;
728                 try {
729                         kdm = _film->make_kdm (
730                                 Config::instance()->decryption_chain()->leaf(),
731                                 vector<dcp::Certificate> (),
732                                 d->cpl (),
733                                 dcp::LocalTime ("2012-01-01T01:00:00+00:00"),
734                                 dcp::LocalTime ("2112-01-01T01:00:00+00:00"),
735                                 dcp::MODIFIED_TRANSITIONAL_1
736                                 );
737                 } catch (dcp::NotEncryptedError& e) {
738                         error_dialog (this, _("CPL's content is not encrypted."));
739                 } catch (exception& e) {
740                         error_dialog (this, e.what ());
741                 } catch (...) {
742                         error_dialog (this, _("An unknown exception occurred."));
743                 }
744
745                 if (kdm) {
746                         if (d->internal ()) {
747                                 shared_ptr<DKDMGroup> dkdms = Config::instance()->dkdms ();
748                                 dkdms->add (shared_ptr<DKDM> (new DKDM (kdm.get())));
749                                 Config::instance()->changed ();
750                         } else {
751                                 boost::filesystem::path path = d->directory() / (_film->dcp_name(false) + "_DKDM.xml");
752                                 kdm->as_xml (path);
753                         }
754                 }
755
756                 d->Destroy ();
757         }
758
759         void jobs_export ()
760         {
761                 ExportDialog* d = new ExportDialog (this);
762                 if (d->ShowModal() == wxID_OK) {
763                         shared_ptr<TranscodeJob> job (new TranscodeJob (_film));
764                         job->set_encoder (shared_ptr<FFmpegEncoder> (new FFmpegEncoder (_film, job, d->path(), d->format(), d->mixdown_to_stereo())));
765                         JobManager::instance()->add (job);
766                 }
767                 d->Destroy ();
768         }
769
770         void content_scale_to_fit_width ()
771         {
772                 ContentList vc = _film_editor->content_panel()->selected_video ();
773                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
774                         (*i)->video->scale_and_crop_to_fit_width ();
775                 }
776         }
777
778         void content_scale_to_fit_height ()
779         {
780                 ContentList vc = _film_editor->content_panel()->selected_video ();
781                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
782                         (*i)->video->scale_and_crop_to_fit_height ();
783                 }
784         }
785
786         void jobs_send_dcp_to_tms ()
787         {
788                 _film->send_dcp_to_tms ();
789         }
790
791         void jobs_show_dcp ()
792         {
793                 DCPOMATIC_ASSERT (_film->directory ());
794 #ifdef DCPOMATIC_WINDOWS
795                 wstringstream args;
796                 args << "/select," << _film->dir (_film->dcp_name(false));
797                 ShellExecute (0, L"open", L"explorer.exe", args.str().c_str(), 0, SW_SHOWDEFAULT);
798 #endif
799
800 #ifdef DCPOMATIC_LINUX
801                 int r = system ("which nautilus");
802                 if (WEXITSTATUS (r) == 0) {
803                         r = system (String::compose("nautilus \"%1\"", _film->directory()->string()).c_str());
804                         if (WEXITSTATUS (r)) {
805                                 error_dialog (this, _("Could not show DCP."), _("Could not run nautilus"));
806                         }
807                 } else {
808                         int r = system ("which konqueror");
809                         if (WEXITSTATUS (r) == 0) {
810                                 r = system (String::compose ("konqueror \"%1\"", _film->directory()->string()).c_str());
811                                 if (WEXITSTATUS (r)) {
812                                         error_dialog (this, _("Could not show DCP"), _("Could not run konqueror"));
813                                 }
814                         }
815                 }
816 #endif
817
818 #ifdef DCPOMATIC_OSX
819                 int r = system (String::compose ("open -R \"%1\"", _film->dir (_film->dcp_name(false)).string()).c_str());
820                 if (WEXITSTATUS (r)) {
821                         error_dialog (this, _("Could not show DCP"));
822                 }
823 #endif
824         }
825
826         void tools_video_waveform ()
827         {
828                 if (!_video_waveform_dialog) {
829                         _video_waveform_dialog = new VideoWaveformDialog (this, _film, _film_viewer);
830                 }
831
832                 _video_waveform_dialog->Show ();
833         }
834
835         void tools_hints ()
836         {
837                 if (!_hints_dialog) {
838                         _hints_dialog = new HintsDialog (this, _film, true);
839                 }
840
841                 _hints_dialog->Show ();
842         }
843
844         void tools_encoding_servers ()
845         {
846                 if (!_servers_list_dialog) {
847                         _servers_list_dialog = new ServersListDialog (this);
848                 }
849
850                 _servers_list_dialog->Show ();
851         }
852
853         void tools_manage_templates ()
854         {
855                 if (!_templates_dialog) {
856                         _templates_dialog = new TemplatesDialog (this);
857                 }
858
859                 _templates_dialog->Show ();
860         }
861
862         void tools_check_for_updates ()
863         {
864                 UpdateChecker::instance()->run ();
865                 _update_news_requested = true;
866         }
867
868         void help_about ()
869         {
870                 AboutDialog* d = new AboutDialog (this);
871                 d->ShowModal ();
872                 d->Destroy ();
873         }
874
875         void help_report_a_problem ()
876         {
877                 ReportProblemDialog* d = new ReportProblemDialog (this, _film);
878                 if (d->ShowModal () == wxID_OK) {
879                         d->report ();
880                 }
881                 d->Destroy ();
882         }
883
884         bool should_close ()
885         {
886                 if (!JobManager::instance()->work_to_do ()) {
887                         return true;
888                 }
889
890                 wxMessageDialog* d = new wxMessageDialog (
891                         0,
892                         _("There are unfinished jobs; are you sure you want to quit?"),
893                         _("Unfinished jobs"),
894                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
895                         );
896
897                 bool const r = d->ShowModal() == wxID_YES;
898                 d->Destroy ();
899                 return r;
900         }
901
902         void close (wxCloseEvent& ev)
903         {
904                 if (!should_close ()) {
905                         ev.Veto ();
906                         return;
907                 }
908
909                 if (_film && _film->dirty ()) {
910
911                         FilmChangedClosingDialog* dialog = new FilmChangedClosingDialog (_film->name ());
912                         int const r = dialog->run ();
913                         delete dialog;
914
915                         switch (r) {
916                         case wxID_NO:
917                                 /* Don't save and carry on to close */
918                                 break;
919                         case wxID_YES:
920                                 /* Save and carry on to close */
921                                 _film->write_metadata ();
922                                 break;
923                         case wxID_CANCEL:
924                                 /* Veto the event and stop */
925                                 ev.Veto ();
926                                 return;
927                         }
928                 }
929
930                 /* We don't want to hear about any more configuration changes, since they
931                    cause the File menu to be altered, which itself will be deleted around
932                    now (without, as far as I can see, any way for us to find out).
933                 */
934                 _config_changed_connection.disconnect ();
935
936                 ev.Skip ();
937         }
938
939         void set_menu_sensitivity ()
940         {
941                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
942                 list<shared_ptr<Job> >::iterator i = jobs.begin();
943                 while (i != jobs.end() && (*i)->json_name() != "transcode") {
944                         ++i;
945                 }
946                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
947                 bool const have_cpl = _film && !_film->cpls().empty ();
948                 bool const have_single_selected_content = _film_editor->content_panel()->selected().size() == 1;
949                 bool const have_selected_content = !_film_editor->content_panel()->selected().empty();
950                 bool const have_selected_video_content = !_film_editor->content_panel()->selected_video().empty();
951
952                 for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
953
954                         bool enabled = true;
955
956                         if ((j->second & NEEDS_FILM) && !_film) {
957                                 enabled = false;
958                         }
959
960                         if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
961                                 enabled = false;
962                         }
963
964                         if ((j->second & NEEDS_CPL) && !have_cpl) {
965                                 enabled = false;
966                         }
967
968                         if ((j->second & NEEDS_SELECTED_CONTENT) && !have_selected_content) {
969                                 enabled = false;
970                         }
971
972                         if ((j->second & NEEDS_SINGLE_SELECTED_CONTENT) && !have_single_selected_content) {
973                                 enabled = false;
974                         }
975
976                         if ((j->second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
977                                 enabled = false;
978                         }
979
980                         if ((j->second & NEEDS_CLIPBOARD) && !_clipboard) {
981                                 enabled = false;
982                         }
983
984                         if ((j->second & NEEDS_ENCRYPTION) && (!_film || !_film->encrypted())) {
985                                 enabled = false;
986                         }
987
988                         j->first->Enable (enabled);
989                 }
990         }
991
992         /** @return true if the operation that called this method
993          *  should continue, false to abort it.
994          */
995         template <class T>
996         bool maybe_save_film ()
997         {
998                 if (!_film) {
999                         return true;
1000                 }
1001
1002                 if (_film->dirty ()) {
1003                         T d (_film->name ());
1004                         switch (d.run ()) {
1005                         case wxID_NO:
1006                                 return true;
1007                         case wxID_YES:
1008                                 _film->write_metadata ();
1009                                 return true;
1010                         case wxID_CANCEL:
1011                                 return false;
1012                         }
1013                 }
1014
1015                 return true;
1016         }
1017
1018         template <class T>
1019         bool maybe_save_then_delete_film ()
1020         {
1021                 bool const r = maybe_save_film<T> ();
1022                 if (r) {
1023                         _film.reset ();
1024                 }
1025                 return r;
1026         }
1027
1028         void add_item (wxMenu* menu, wxString text, int id, int sens)
1029         {
1030                 wxMenuItem* item = menu->Append (id, text);
1031                 menu_items.insert (make_pair (item, sens));
1032         }
1033
1034         void setup_menu (wxMenuBar* m)
1035         {
1036                 _file_menu = new wxMenu;
1037                 add_item (_file_menu, _("New...\tCtrl-N"), ID_file_new, ALWAYS);
1038                 add_item (_file_menu, _("&Open...\tCtrl-O"), ID_file_open, ALWAYS);
1039                 _file_menu->AppendSeparator ();
1040                 add_item (_file_menu, _("&Save\tCtrl-S"), ID_file_save, NEEDS_FILM);
1041                 _file_menu->AppendSeparator ();
1042                 add_item (_file_menu, _("Save as &template..."), ID_file_save_as_template, NEEDS_FILM);
1043                 add_item (_file_menu, _("Duplicate..."), ID_file_duplicate, NEEDS_FILM);
1044                 add_item (_file_menu, _("Duplicate and open..."), ID_file_duplicate_and_open, NEEDS_FILM);
1045
1046                 _history_position = _file_menu->GetMenuItems().GetCount();
1047
1048 #ifndef __WXOSX__
1049                 _file_menu->AppendSeparator ();
1050 #endif
1051
1052 #ifdef __WXOSX__
1053                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
1054 #else
1055                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
1056 #endif
1057
1058                 wxMenu* edit = new wxMenu;
1059                 add_item (edit, _("Copy settings\tCtrl-C"), ID_edit_copy, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SINGLE_SELECTED_CONTENT);
1060                 add_item (edit, _("Paste settings...\tCtrl-V"), ID_edit_paste, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SELECTED_CONTENT | NEEDS_CLIPBOARD);
1061
1062 #ifdef __WXOSX__
1063                 add_item (_file_menu, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1064 #else
1065                 add_item (edit, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1066 #endif
1067
1068                 wxMenu* content = new wxMenu;
1069                 add_item (content, _("Scale to fit &width"), ID_content_scale_to_fit_width, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
1070                 add_item (content, _("Scale to fit &height"), ID_content_scale_to_fit_height, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
1071
1072                 wxMenu* jobs_menu = new wxMenu;
1073                 add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1074                 add_item (jobs_menu, _("Make DCP in &batch converter\tCtrl-B"), ID_jobs_make_dcp_batch, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1075                 jobs_menu->AppendSeparator ();
1076                 add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM | NEEDS_ENCRYPTION);
1077                 add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM | NEEDS_ENCRYPTION);
1078                 jobs_menu->AppendSeparator ();
1079                 add_item (jobs_menu, _("Export...\tCtrl-E"), ID_jobs_export, NEEDS_FILM);
1080                 jobs_menu->AppendSeparator ();
1081                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1082                 add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1083
1084                 wxMenu* tools = new wxMenu;
1085                 add_item (tools, _("Video waveform..."), ID_tools_video_waveform, NEEDS_FILM);
1086                 add_item (tools, _("Hints..."), ID_tools_hints, 0);
1087                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
1088                 add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0);
1089                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
1090                 tools->AppendSeparator ();
1091                 add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
1092
1093                 wxMenu* help = new wxMenu;
1094 #ifdef __WXOSX__
1095                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
1096 #else
1097                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
1098 #endif
1099                 add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM);
1100
1101                 m->Append (_file_menu, _("&File"));
1102                 m->Append (edit, _("&Edit"));
1103                 m->Append (content, _("&Content"));
1104                 m->Append (jobs_menu, _("&Jobs"));
1105                 m->Append (tools, _("&Tools"));
1106                 m->Append (help, _("&Help"));
1107         }
1108
1109         void config_changed (Config::Property what)
1110         {
1111                 /* Instantly save any config changes when using the DCP-o-matic GUI */
1112                 if (what == Config::CINEMAS) {
1113                         try {
1114                                 Config::instance()->write_cinemas();
1115                         } catch (exception& e) {
1116                                 error_dialog (
1117                                         this,
1118                                         wxString::Format (
1119                                                 _("Could not write to cinemas file at %s.  Your changes have not been saved."),
1120                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1121                                                 )
1122                                         );
1123                         }
1124                 } else {
1125                         try {
1126                                 Config::instance()->write_config();
1127                         } catch (exception& e) {
1128                                 error_dialog (
1129                                         this,
1130                                         wxString::Format (
1131                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
1132                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1133                                                 )
1134                                         );
1135                         }
1136                 }
1137
1138                 for (int i = 0; i < _history_items; ++i) {
1139                         delete _file_menu->Remove (ID_file_history + i);
1140                 }
1141
1142                 if (_history_separator) {
1143                         _file_menu->Remove (_history_separator);
1144                 }
1145                 delete _history_separator;
1146                 _history_separator = 0;
1147
1148                 int pos = _history_position;
1149
1150                 vector<boost::filesystem::path> history = Config::instance()->history ();
1151
1152                 if (!history.empty ()) {
1153                         _history_separator = _file_menu->InsertSeparator (pos++);
1154                 }
1155
1156                 for (size_t i = 0; i < history.size(); ++i) {
1157                         string s;
1158                         if (i < 9) {
1159                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1160                         } else {
1161                                 s = history[i].string();
1162                         }
1163                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1164                 }
1165
1166                 _history_items = history.size ();
1167         }
1168
1169         void update_checker_state_changed ()
1170         {
1171                 UpdateChecker* uc = UpdateChecker::instance ();
1172
1173                 bool const announce =
1174                         _update_news_requested ||
1175                         (uc->stable() && Config::instance()->check_for_updates()) ||
1176                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
1177
1178                 _update_news_requested = false;
1179
1180                 if (!announce) {
1181                         return;
1182                 }
1183
1184                 if (uc->state() == UpdateChecker::YES) {
1185                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
1186                         dialog->ShowModal ();
1187                         dialog->Destroy ();
1188                 } else if (uc->state() == UpdateChecker::FAILED) {
1189                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
1190                 } else {
1191                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
1192                 }
1193
1194                 _update_news_requested = false;
1195         }
1196
1197         FilmEditor* _film_editor;
1198         FilmViewer* _film_viewer;
1199         VideoWaveformDialog* _video_waveform_dialog;
1200         HintsDialog* _hints_dialog;
1201         ServersListDialog* _servers_list_dialog;
1202         wxPreferencesEditor* _config_dialog;
1203         KDMDialog* _kdm_dialog;
1204         TemplatesDialog* _templates_dialog;
1205         wxMenu* _file_menu;
1206         shared_ptr<Film> _film;
1207         int _history_items;
1208         int _history_position;
1209         wxMenuItem* _history_separator;
1210         boost::signals2::scoped_connection _config_changed_connection;
1211         bool _update_news_requested;
1212         shared_ptr<Content> _clipboard;
1213 };
1214
1215 static const wxCmdLineEntryDesc command_line_description[] = {
1216         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1217         { wxCMD_LINE_OPTION, "c", "content", "add content file / directory", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1218         { wxCMD_LINE_OPTION, "d", "dcp", "add content DCP", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1219         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1220         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1221 };
1222
1223 /** @class App
1224  *  @brief The magic App class for wxWidgets.
1225  */
1226 class App : public wxApp
1227 {
1228 public:
1229         App ()
1230                 : wxApp ()
1231                 , _frame (0)
1232         {}
1233
1234 private:
1235
1236         bool OnInit ()
1237         try
1238         {
1239                 wxInitAllImageHandlers ();
1240
1241                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1242                 Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
1243
1244                 wxSplashScreen* splash = maybe_show_splash ();
1245
1246                 SetAppName (_("DCP-o-matic"));
1247
1248                 if (!wxApp::OnInit()) {
1249                         return false;
1250                 }
1251
1252 #ifdef DCPOMATIC_LINUX
1253                 unsetenv ("UBUNTU_MENUPROXY");
1254 #endif
1255
1256 #ifdef __WXOSX__
1257                 ProcessSerialNumber serial;
1258                 GetCurrentProcess (&serial);
1259                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
1260 #endif
1261
1262                 dcpomatic_setup_path_encoding ();
1263
1264                 /* Enable i18n; this will create a Config object
1265                    to look for a force-configured language.  This Config
1266                    object will be wrong, however, because dcpomatic_setup
1267                    hasn't yet been called and there aren't any filters etc.
1268                    set up yet.
1269                 */
1270                 dcpomatic_setup_i18n ();
1271
1272                 /* Set things up, including filters etc.
1273                    which will now be internationalised correctly.
1274                 */
1275                 dcpomatic_setup ();
1276
1277                 /* Force the configuration to be re-loaded correctly next
1278                    time it is needed.
1279                 */
1280                 Config::drop ();
1281
1282                 _frame = new DOMFrame (_("DCP-o-matic"));
1283                 SetTopWindow (_frame);
1284                 _frame->Maximize ();
1285                 if (splash) {
1286                         splash->Destroy ();
1287                 }
1288                 _frame->Show ();
1289
1290                 if (!_film_to_load.empty() && boost::filesystem::is_directory (_film_to_load)) {
1291                         try {
1292                                 _frame->load_film (_film_to_load);
1293                         } catch (exception& e) {
1294                                 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()));
1295                         }
1296                 }
1297
1298                 if (!_film_to_create.empty ()) {
1299                         _frame->new_film (_film_to_create, optional<string> ());
1300                         if (!_content_to_add.empty ()) {
1301                                 BOOST_FOREACH (shared_ptr<Content> i, content_factory (_frame->film(), _content_to_add)) {
1302                                         _frame->film()->examine_and_add_content (i);
1303                                 }
1304                         }
1305                         if (!_dcp_to_add.empty ()) {
1306                                 _frame->film()->examine_and_add_content (shared_ptr<DCPContent> (new DCPContent (_frame->film(), _dcp_to_add)));
1307                         }
1308                 }
1309
1310                 signal_manager = new wxSignalManager (this);
1311                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
1312
1313                 Bind (wxEVT_TIMER, boost::bind (&App::check, this));
1314                 _timer.reset (new wxTimer (this));
1315                 _timer->Start (1000);
1316
1317                 if (Config::instance()->check_for_updates ()) {
1318                         UpdateChecker::instance()->run ();
1319                 }
1320
1321                 return true;
1322         }
1323         catch (exception& e)
1324         {
1325                 error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
1326                 return true;
1327         }
1328
1329         void OnInitCmdLine (wxCmdLineParser& parser)
1330         {
1331                 parser.SetDesc (command_line_description);
1332                 parser.SetSwitchChars (wxT ("-"));
1333         }
1334
1335         bool OnCmdLineParsed (wxCmdLineParser& parser)
1336         {
1337                 if (parser.GetParamCount() > 0) {
1338                         if (parser.Found (wxT ("new"))) {
1339                                 _film_to_create = wx_to_std (parser.GetParam (0));
1340                         } else {
1341                                 _film_to_load = wx_to_std (parser.GetParam (0));
1342                         }
1343                 }
1344
1345                 wxString content;
1346                 if (parser.Found (wxT ("content"), &content)) {
1347                         _content_to_add = wx_to_std (content);
1348                 }
1349
1350                 wxString dcp;
1351                 if (parser.Found (wxT ("dcp"), &dcp)) {
1352                         _dcp_to_add = wx_to_std (dcp);
1353                 }
1354
1355                 return true;
1356         }
1357
1358         void report_exception ()
1359         {
1360                 try {
1361                         throw;
1362                 } catch (FileError& e) {
1363                         error_dialog (
1364                                 0,
1365                                 wxString::Format (
1366                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1367                                         std_to_wx (e.what()),
1368                                         std_to_wx (e.file().string().c_str ())
1369                                         )
1370                                 );
1371                 } catch (exception& e) {
1372                         error_dialog (
1373                                 0,
1374                                 wxString::Format (
1375                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1376                                         std_to_wx (e.what ())
1377                                         )
1378                                 );
1379                 } catch (...) {
1380                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1381                 }
1382         }
1383
1384         /* An unhandled exception has occurred inside the main event loop */
1385         bool OnExceptionInMainLoop ()
1386         {
1387                 report_exception ();
1388                 /* This will terminate the program */
1389                 return false;
1390         }
1391
1392         void OnUnhandledException ()
1393         {
1394                 report_exception ();
1395         }
1396
1397         void idle ()
1398         {
1399                 signal_manager->ui_idle ();
1400         }
1401
1402         void check ()
1403         {
1404                 try {
1405                         EncodeServerFinder::instance()->rethrow ();
1406                 } catch (exception& e) {
1407                         error_dialog (0, std_to_wx (e.what ()));
1408                 }
1409         }
1410
1411         void config_failed_to_load ()
1412         {
1413                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1414         }
1415
1416         void config_warning (string m)
1417         {
1418                 message_dialog (_frame, std_to_wx (m));
1419         }
1420
1421         DOMFrame* _frame;
1422         shared_ptr<wxTimer> _timer;
1423         string _film_to_load;
1424         string _film_to_create;
1425         string _content_to_add;
1426         string _dcp_to_add;
1427 };
1428
1429 IMPLEMENT_APP (App)