Bump libdcp for new method.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2016 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/config_dialog.h"
29 #include "wx/wx_util.h"
30 #include "wx/new_film_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 "lib/film.h"
42 #include "lib/config.h"
43 #include "lib/util.h"
44 #include "lib/video_content.h"
45 #include "lib/content.h"
46 #include "lib/version.h"
47 #include "lib/signal_manager.h"
48 #include "lib/log.h"
49 #include "lib/job_manager.h"
50 #include "lib/exceptions.h"
51 #include "lib/cinema.h"
52 #include "lib/screen_kdm.h"
53 #include "lib/send_kdm_email_job.h"
54 #include "lib/encode_server_finder.h"
55 #include "lib/update_checker.h"
56 #include "lib/cross.h"
57 #include "lib/content_factory.h"
58 #include "lib/compose.hpp"
59 #include "lib/cinema_kdms.h"
60 #include "lib/dcpomatic_socket.h"
61 #include "lib/hints.h"
62 #include <dcp/exceptions.h>
63 #include <dcp/raw_convert.h>
64 #include <wx/generic/aboutdlgg.h>
65 #include <wx/stdpaths.h>
66 #include <wx/cmdline.h>
67 #include <wx/preferences.h>
68 #include <wx/splash.h>
69 #ifdef __WXMSW__
70 #include <shellapi.h>
71 #endif
72 #ifdef __WXOSX__
73 #include <ApplicationServices/ApplicationServices.h>
74 #endif
75 #include <boost/filesystem.hpp>
76 #include <boost/noncopyable.hpp>
77 #include <iostream>
78 #include <fstream>
79 /* This is OK as it's only used with DCPOMATIC_WINDOWS */
80 #include <sstream>
81
82 #ifdef check
83 #undef check
84 #endif
85
86 using std::cout;
87 using std::wcout;
88 using std::string;
89 using std::vector;
90 using std::wstring;
91 using std::wstringstream;
92 using std::map;
93 using std::make_pair;
94 using std::list;
95 using std::exception;
96 using boost::shared_ptr;
97 using boost::dynamic_pointer_cast;
98 using boost::optional;
99 using dcp::raw_convert;
100
101 class FilmChangedDialog : public boost::noncopyable
102 {
103 public:
104         FilmChangedDialog (string name)
105         {
106                 _dialog = new wxMessageDialog (
107                         0,
108                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
109                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
110                         /// project (Film) has been changed since it was last saved.
111                         _("Film changed"),
112                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
113                         );
114
115                 _dialog->SetYesNoCancelLabels (
116                         _("Save film and close"), _("Close without saving film"), _("Don't close")
117                         );
118         }
119
120         ~FilmChangedDialog ()
121         {
122                 _dialog->Destroy ();
123         }
124
125         int run ()
126         {
127                 return _dialog->ShowModal ();
128         }
129
130 private:
131         wxMessageDialog* _dialog;
132 };
133
134 #define ALWAYS                       0x0
135 #define NEEDS_FILM                   0x1
136 #define NOT_DURING_DCP_CREATION      0x2
137 #define NEEDS_CPL                    0x4
138 #define NEEDS_SELECTED_VIDEO_CONTENT 0x8
139
140 map<wxMenuItem*, int> menu_items;
141
142 enum {
143         ID_file_new = 1,
144         ID_file_open,
145         ID_file_save,
146         ID_file_save_as_template,
147         ID_file_history,
148         /* Allow spare IDs after _history for the recent files list */
149         ID_content_scale_to_fit_width = 100,
150         ID_content_scale_to_fit_height,
151         ID_jobs_make_dcp,
152         ID_jobs_make_dcp_batch,
153         ID_jobs_make_kdms,
154         ID_jobs_make_self_dkdm,
155         ID_jobs_send_dcp_to_tms,
156         ID_jobs_show_dcp,
157         ID_tools_video_waveform,
158         ID_tools_hints,
159         ID_tools_encoding_servers,
160         ID_tools_check_for_updates,
161         ID_tools_restore_default_preferences,
162         ID_help_report_a_problem,
163         /* IDs for shortcuts (with no associated menu item) */
164         ID_add_file,
165         ID_remove
166 };
167
168 class DOMFrame : public wxFrame
169 {
170 public:
171         DOMFrame (wxString const & title)
172                 : wxFrame (NULL, -1, title)
173                 , _video_waveform_dialog (0)
174                 , _hints_dialog (0)
175                 , _servers_list_dialog (0)
176                 , _config_dialog (0)
177                 , _kdm_dialog (0)
178                 , _file_menu (0)
179                 , _history_items (0)
180                 , _history_position (0)
181                 , _history_separator (0)
182                 , _update_news_requested (false)
183         {
184 #if defined(DCPOMATIC_WINDOWS)
185                 if (Config::instance()->win32_console ()) {
186                         AllocConsole();
187
188                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
189                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
190                         FILE* hf_out = _fdopen(hCrt, "w");
191                         setvbuf(hf_out, NULL, _IONBF, 1);
192                         *stdout = *hf_out;
193
194                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
195                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
196                         FILE* hf_in = _fdopen(hCrt, "r");
197                         setvbuf(hf_in, NULL, _IONBF, 128);
198                         *stdin = *hf_in;
199
200                         cout << "DCP-o-matic is starting." << "\n";
201                 }
202 #endif
203
204                 wxMenuBar* bar = new wxMenuBar;
205                 setup_menu (bar);
206                 SetMenuBar (bar);
207
208                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this));
209                 config_changed ();
210
211                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::file_new, this),                ID_file_new);
212                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::file_open, this),               ID_file_open);
213                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::file_save, this),               ID_file_save);
214                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::file_save_as_template, this),   ID_file_save_as_template);
215                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
216                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::file_exit, this),               wxID_EXIT);
217                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::edit_preferences, this),        wxID_PREFERENCES);
218                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::content_scale_to_fit_width, this), ID_content_scale_to_fit_width);
219                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
220                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
221                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
222                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_dcp_batch, this),     ID_jobs_make_dcp_batch);
223                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
224                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
225                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
226                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::tools_video_waveform, this),    ID_tools_video_waveform);
227                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::tools_hints, this),             ID_tools_hints);
228                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
229                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
230                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
231                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
232                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
233
234                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&DOMFrame::close, this, _1));
235
236                 /* Use a panel as the only child of the Frame so that we avoid
237                    the dark-grey background on Windows.
238                 */
239                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
240
241                 _film_viewer = new FilmViewer (overall_panel);
242                 _film_editor = new FilmEditor (overall_panel, _film_viewer);
243                 JobManagerView* job_manager_view = new JobManagerView (overall_panel);
244
245                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
246                 right_sizer->Add (_film_viewer, 2, wxEXPAND | wxALL, 6);
247                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
248
249                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
250                 main_sizer->Add (_film_editor, 1, wxEXPAND | wxALL, 6);
251                 main_sizer->Add (right_sizer, 2, wxEXPAND | wxALL, 6);
252
253                 set_menu_sensitivity ();
254
255                 _film_editor->FileChanged.connect (bind (&DOMFrame::file_changed, this, _1));
256                 file_changed ("");
257
258                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
259
260                 overall_panel->SetSizer (main_sizer);
261
262                 wxAcceleratorEntry accel[2];
263                 accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file);
264                 accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove);
265                 Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file);
266                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::remove_clicked, this, _1), ID_remove);
267                 wxAcceleratorTable accel_table (2, accel);
268                 SetAcceleratorTable (accel_table);
269
270                 /* Instantly save any config changes when using the DCP-o-matic GUI */
271                 Config::instance()->Changed.connect (boost::bind (&Config::write, Config::instance ()));
272
273                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
274         }
275
276         void remove_clicked (wxCommandEvent& ev)
277         {
278                 if (_film_editor->content_panel()->remove_clicked (true)) {
279                         ev.Skip ();
280                 }
281         }
282
283         void new_film (boost::filesystem::path path)
284         {
285                 shared_ptr<Film> film (new Film (path));
286                 film->write_metadata ();
287                 film->set_name (path.filename().generic_string());
288                 set_film (film);
289         }
290
291         void load_film (boost::filesystem::path file)
292         try
293         {
294                 shared_ptr<Film> film (new Film (file));
295                 list<string> const notes = film->read_metadata ();
296
297                 if (film->state_version() == 4) {
298                         error_dialog (
299                                 0,
300                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
301                                   "in this version.  Please check the film's settings carefully.")
302                                 );
303                 }
304
305                 for (list<string>::const_iterator i = notes.begin(); i != notes.end(); ++i) {
306                         error_dialog (0, std_to_wx (*i));
307                 }
308
309                 set_film (film);
310         }
311         catch (std::exception& e) {
312                 wxString p = std_to_wx (file.string ());
313                 wxCharBuffer b = p.ToUTF8 ();
314                 error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what()).data()));
315         }
316
317         void set_film (shared_ptr<Film> film)
318         {
319                 _film = film;
320                 _film_viewer->set_film (_film);
321                 _film_editor->set_film (_film);
322                 delete _video_waveform_dialog;
323                 _video_waveform_dialog = 0;
324                 set_menu_sensitivity ();
325                 Config::instance()->add_to_history (_film->directory ());
326         }
327
328         shared_ptr<Film> film () const {
329                 return _film;
330         }
331
332 private:
333
334         void file_changed (boost::filesystem::path f)
335         {
336                 string s = wx_to_std (_("DCP-o-matic"));
337                 if (!f.empty ()) {
338                         s += " - " + f.string ();
339                 }
340
341                 SetTitle (std_to_wx (s));
342         }
343
344         void file_new (bool from_template)
345         {
346                 NewFilmDialog* d = new NewFilmDialog (this);
347                 int const r = d->ShowModal ();
348
349                 if (r == wxID_OK) {
350
351                         if (boost::filesystem::is_directory (d->get_path()) && !boost::filesystem::is_empty(d->get_path())) {
352                                 if (!confirm_dialog (
353                                             this,
354                                             std_to_wx (
355                                                     String::compose (wx_to_std (_("The directory %1 already exists and is not empty.  "
356                                                                                   "Are you sure you want to use it?")),
357                                                                      d->get_path().string().c_str())
358                                                     )
359                                             )) {
360                                         return;
361                                 }
362                         } else if (boost::filesystem::is_regular_file (d->get_path())) {
363                                 error_dialog (
364                                         this,
365                                         String::compose (wx_to_std (_("%1 already exists as a file, so you cannot use it for a new film.")), d->get_path().c_str())
366                                         );
367                                 return;
368                         }
369
370                         if (maybe_save_then_delete_film ()) {
371                                 new_film (d->get_path(), d->template_name());
372                         }
373                 }
374
375                 d->Destroy ();
376         }
377
378         void file_open ()
379         {
380                 wxDirDialog* c = new wxDirDialog (
381                         this,
382                         _("Select film to open"),
383                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
384                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
385                         );
386
387                 int r;
388                 while (true) {
389                         r = c->ShowModal ();
390                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
391                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
392                         } else {
393                                 break;
394                         }
395                 }
396
397                 if (r == wxID_OK && maybe_save_then_delete_film()) {
398                         load_film (wx_to_std (c->GetPath ()));
399                 }
400
401                 c->Destroy ();
402         }
403
404         void file_save ()
405         {
406                 _film->write_metadata ();
407         }
408
409         void file_save_as_template ()
410         {
411                 SaveTemplateDialog* td = new SaveTemplateDialog (this);
412                 int const r = d->ShowModal ();
413                 if (r == wxID_OK) {
414                         bool ok = true;
415                         if (Config::instance()->existing_template (r->name ())) {
416                                 ok = confirm_dialog (td, _("There is already a template with this name.  Do you want to overwrite it?"));
417                         }
418                         if (ok) {
419                                 Config::instance()->save_template (_film, r->name ());
420                         }
421                 }
422                 d->Destroy ();
423         }
424
425         void file_history (wxCommandEvent& event)
426         {
427                 vector<boost::filesystem::path> history = Config::instance()->history ();
428                 int n = event.GetId() - ID_file_history;
429                 if (n >= 0 && n < static_cast<int> (history.size ()) && maybe_save_then_delete_film()) {
430                         load_film (history[n]);
431                 }
432         }
433
434         void file_exit ()
435         {
436                 /* false here allows the close handler to veto the close request */
437                 Close (false);
438         }
439
440         void edit_preferences ()
441         {
442                 if (!_config_dialog) {
443                         _config_dialog = create_config_dialog ();
444                 }
445                 _config_dialog->Show (this);
446         }
447
448         void tools_restore_default_preferences ()
449         {
450                 wxMessageDialog* d = new wxMessageDialog (
451                         0,
452                         _("Are you sure you want to restore preferences to their defaults?  This cannot be undone."),
453                         _("Restore default preferences"),
454                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
455                         );
456
457                 int const r = d->ShowModal ();
458                 d->Destroy ();
459
460                 if (r == wxID_YES) {
461                         Config::restore_defaults ();
462                 }
463         }
464
465         void jobs_make_dcp ()
466         {
467                 double required;
468                 double available;
469                 bool can_hard_link;
470
471                 if (!_film->should_be_enough_disk_space (required, available, can_hard_link)) {
472                         wxString message;
473                         if (can_hard_link) {
474                                 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);
475                         } else {
476                                 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);
477                         }
478                         if (!confirm_dialog (this, message)) {
479                                 return;
480                         }
481                 }
482
483                 if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) {
484                         HintsDialog* hints = new HintsDialog (this, _film, false);
485                         int const r = hints->ShowModal();
486                         hints->Destroy ();
487                         if (r == wxID_CANCEL) {
488                                 return;
489                         }
490                 }
491
492                 try {
493                         /* It seems to make sense to auto-save metadata here, since the make DCP may last
494                            a long time, and crashes/power failures are moderately likely.
495                         */
496                         _film->write_metadata ();
497                         _film->make_dcp ();
498                 } catch (BadSettingError& e) {
499                         error_dialog (this, wxString::Format (_("Bad setting for %s (%s)"), std_to_wx(e.setting()).data(), std_to_wx(e.what()).data()));
500                 } catch (std::exception& e) {
501                         error_dialog (this, wxString::Format (_("Could not make DCP: %s"), std_to_wx(e.what()).data()));
502                 }
503         }
504
505         void jobs_make_kdms ()
506         {
507                 if (!_film) {
508                         return;
509                 }
510
511                 if (_kdm_dialog) {
512                         _kdm_dialog->Destroy ();
513                         _kdm_dialog = 0;
514                 }
515
516                 _kdm_dialog = new KDMDialog (this, _film);
517                 _kdm_dialog->Show (this);
518         }
519
520         void jobs_make_dcp_batch ()
521         {
522                 if (!_film) {
523                         return;
524                 }
525
526                 if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) {
527                         HintsDialog* hints = new HintsDialog (this, _film, false);
528                         int const r = hints->ShowModal();
529                         hints->Destroy ();
530                         if (r == wxID_CANCEL) {
531                                 return;
532                         }
533                 }
534
535                 _film->write_metadata ();
536
537                 /* i = 0; try to connect via socket
538                    i = 1; try again, and then try to start the batch converter
539                    i = 2 onwards; try again.
540                 */
541                 for (int i = 0; i < 8; ++i) {
542                         try {
543                                 boost::asio::io_service io_service;
544                                 boost::asio::ip::tcp::resolver resolver (io_service);
545                                 boost::asio::ip::tcp::resolver::query query ("127.0.0.1", raw_convert<string> (Config::instance()->server_port_base() + 2));
546                                 boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
547                                 Socket socket (5);
548                                 socket.connect (*endpoint_iterator);
549                                 string s = _film->directory().string ();
550                                 socket.write (s.length() + 1);
551                                 socket.write ((uint8_t *) s.c_str(), s.length() + 1);
552                                 /* OK\0 */
553                                 uint8_t ok[3];
554                                 socket.read (ok, 3);
555                                 return;
556                         } catch (exception& e) {
557
558                         }
559
560                         if (i == 1) {
561                                 start_batch_converter (wx_to_std (wxStandardPaths::Get().GetExecutablePath()));
562                         }
563
564                         dcpomatic_sleep (1);
565                 }
566
567                 error_dialog (this, _("Could not find batch converter."));
568         }
569
570         void jobs_make_self_dkdm ()
571         {
572                 if (!_film) {
573                         return;
574                 }
575
576                 SelfDKDMDialog* d = new SelfDKDMDialog (this, _film);
577                 if (d->ShowModal () != wxID_OK) {
578                         d->Destroy ();
579                         return;
580                 }
581
582                 optional<dcp::EncryptedKDM> kdm;
583                 try {
584                         kdm = _film->make_kdm (
585                                 Config::instance()->decryption_chain()->leaf(),
586                                 vector<dcp::Certificate> (),
587                                 d->cpl (),
588                                 dcp::LocalTime ("2012-01-01T01:00:00+00:00"),
589                                 dcp::LocalTime ("2112-01-01T01:00:00+00:00"),
590                                 dcp::MODIFIED_TRANSITIONAL_1
591                                 );
592                 } catch (dcp::NotEncryptedError& e) {
593                         error_dialog (this, _("CPL's content is not encrypted."));
594                 } catch (exception& e) {
595                         error_dialog (this, e.what ());
596                 } catch (...) {
597                         error_dialog (this, _("An unknown exception occurred."));
598                 }
599
600                 if (kdm) {
601                         if (d->internal ()) {
602                                 vector<dcp::EncryptedKDM> dkdms = Config::instance()->dkdms ();
603                                 dkdms.push_back (kdm.get());
604                                 Config::instance()->set_dkdms (dkdms);
605                         } else {
606                                 boost::filesystem::path path = d->directory() / (_film->dcp_name(false) + "_DKDM.xml");
607                                 kdm->as_xml (path);
608                         }
609                 }
610
611                 d->Destroy ();
612         }
613
614         void content_scale_to_fit_width ()
615         {
616                 ContentList vc = _film_editor->content_panel()->selected_video ();
617                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
618                         (*i)->video->scale_and_crop_to_fit_width ();
619                 }
620         }
621
622         void content_scale_to_fit_height ()
623         {
624                 ContentList vc = _film_editor->content_panel()->selected_video ();
625                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
626                         (*i)->video->scale_and_crop_to_fit_height ();
627                 }
628         }
629
630         void jobs_send_dcp_to_tms ()
631         {
632                 _film->send_dcp_to_tms ();
633         }
634
635         void jobs_show_dcp ()
636         {
637 #ifdef DCPOMATIC_WINDOWS
638                 wstringstream args;
639                 args << "/select," << _film->dir (_film->dcp_name(false));
640                 ShellExecute (0, L"open", L"explorer.exe", args.str().c_str(), 0, SW_SHOWDEFAULT);
641 #endif
642
643 #ifdef DCPOMATIC_LINUX
644                 int r = system ("which nautilus");
645                 if (WEXITSTATUS (r) == 0) {
646                         r = system (string ("nautilus " + _film->directory().string()).c_str ());
647                         if (WEXITSTATUS (r)) {
648                                 error_dialog (this, _("Could not show DCP (could not run nautilus)"));
649                         }
650                 } else {
651                         int r = system ("which konqueror");
652                         if (WEXITSTATUS (r) == 0) {
653                                 r = system (string ("konqueror " + _film->directory().string()).c_str ());
654                                 if (WEXITSTATUS (r)) {
655                                         error_dialog (this, _("Could not show DCP (could not run konqueror)"));
656                                 }
657                         }
658                 }
659 #endif
660
661 #ifdef DCPOMATIC_OSX
662                 int r = system (string ("open -R " + _film->dir (_film->dcp_name (false)).string ()).c_str ());
663                 if (WEXITSTATUS (r)) {
664                         error_dialog (this, _("Could not show DCP"));
665                 }
666 #endif
667         }
668
669         void tools_video_waveform ()
670         {
671                 if (!_video_waveform_dialog) {
672                         _video_waveform_dialog = new VideoWaveformDialog (this, _film, _film_viewer);
673                 }
674
675                 _video_waveform_dialog->Show ();
676         }
677
678         void tools_hints ()
679         {
680                 if (!_hints_dialog) {
681                         _hints_dialog = new HintsDialog (this, _film, true);
682                 }
683
684                 _hints_dialog->Show ();
685         }
686
687         void tools_encoding_servers ()
688         {
689                 if (!_servers_list_dialog) {
690                         _servers_list_dialog = new ServersListDialog (this);
691                 }
692
693                 _servers_list_dialog->Show ();
694         }
695
696         void tools_check_for_updates ()
697         {
698                 UpdateChecker::instance()->run ();
699                 _update_news_requested = true;
700         }
701
702         void help_about ()
703         {
704                 AboutDialog* d = new AboutDialog (this);
705                 d->ShowModal ();
706                 d->Destroy ();
707         }
708
709         void help_report_a_problem ()
710         {
711                 ReportProblemDialog* d = new ReportProblemDialog (this, _film);
712                 if (d->ShowModal () == wxID_OK) {
713                         d->report ();
714                 }
715                 d->Destroy ();
716         }
717
718         bool should_close ()
719         {
720                 if (!JobManager::instance()->work_to_do ()) {
721                         return true;
722                 }
723
724                 wxMessageDialog* d = new wxMessageDialog (
725                         0,
726                         _("There are unfinished jobs; are you sure you want to quit?"),
727                         _("Unfinished jobs"),
728                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
729                         );
730
731                 bool const r = d->ShowModal() == wxID_YES;
732                 d->Destroy ();
733                 return r;
734         }
735
736         void close (wxCloseEvent& ev)
737         {
738                 if (!should_close ()) {
739                         ev.Veto ();
740                         return;
741                 }
742
743                 if (_film && _film->dirty ()) {
744
745                         FilmChangedDialog* dialog = new FilmChangedDialog (_film->name ());
746                         int const r = dialog->run ();
747                         delete dialog;
748
749                         switch (r) {
750                         case wxID_NO:
751                                 /* Don't save and carry on to close */
752                                 break;
753                         case wxID_YES:
754                                 /* Save and carry on to close */
755                                 _film->write_metadata ();
756                                 break;
757                         case wxID_CANCEL:
758                                 /* Veto the event and stop */
759                                 ev.Veto ();
760                                 return;
761                         }
762                 }
763
764                 /* We don't want to hear about any more configuration changes, since they
765                    cause the File menu to be altered, which itself will be deleted around
766                    now (without, as far as I can see, any way for us to find out).
767                 */
768                 _config_changed_connection.disconnect ();
769
770                 ev.Skip ();
771         }
772
773         void set_menu_sensitivity ()
774         {
775                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
776                 list<shared_ptr<Job> >::iterator i = jobs.begin();
777                 while (i != jobs.end() && (*i)->json_name() != "transcode") {
778                         ++i;
779                 }
780                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
781                 bool const have_cpl = _film && !_film->cpls().empty ();
782                 bool const have_selected_video_content = !_film_editor->content_panel()->selected_video().empty();
783
784                 for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
785
786                         bool enabled = true;
787
788                         if ((j->second & NEEDS_FILM) && !_film) {
789                                 enabled = false;
790                         }
791
792                         if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
793                                 enabled = false;
794                         }
795
796                         if ((j->second & NEEDS_CPL) && !have_cpl) {
797                                 enabled = false;
798                         }
799
800                         if ((j->second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
801                                 enabled = false;
802                         }
803
804                         j->first->Enable (enabled);
805                 }
806         }
807
808         /** @return true if the operation that called this method
809          *  should continue, false to abort it.
810          */
811         bool maybe_save_then_delete_film ()
812         {
813                 if (!_film) {
814                         return true;
815                 }
816
817                 if (_film->dirty ()) {
818                         FilmChangedDialog d (_film->name ());
819                         switch (d.run ()) {
820                         case wxID_NO:
821                                 break;
822                         case wxID_YES:
823                                 _film->write_metadata ();
824                                 break;
825                         case wxID_CANCEL:
826                                 return false;
827                         }
828                 }
829
830                 _film.reset ();
831                 return true;
832         }
833
834         void add_item (wxMenu* menu, wxString text, int id, int sens)
835         {
836                 wxMenuItem* item = menu->Append (id, text);
837                 menu_items.insert (make_pair (item, sens));
838         }
839
840         void setup_menu (wxMenuBar* m)
841         {
842                 _file_menu = new wxMenu;
843                 add_item (_file_menu, _("New...\tCtrl-N"), ID_file_new, ALWAYS);
844                 add_item (_file_menu, _("&Open...\tCtrl-O"), ID_file_open, ALWAYS);
845                 _file_menu->AppendSeparator ();
846                 add_item (_file_menu, _("&Save\tCtrl-S"), ID_file_save, NEEDS_FILM);
847                 _file_menu->AppendSeparator ();
848                 add_item (_file_menu, _("&Save as template"), ID_file_save_as_template, NEEDS_FILM);
849
850                 _history_position = _file_menu->GetMenuItems().GetCount();
851
852 #ifndef __WXOSX__
853                 _file_menu->AppendSeparator ();
854 #endif
855
856 #ifdef __WXOSX__
857                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
858 #else
859                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
860 #endif
861
862 #ifdef __WXOSX__
863                 add_item (_file_menu, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
864 #else
865                 wxMenu* edit = new wxMenu;
866                 add_item (edit, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
867 #endif
868
869                 wxMenu* content = new wxMenu;
870                 add_item (content, _("Scale to fit &width"), ID_content_scale_to_fit_width, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
871                 add_item (content, _("Scale to fit &height"), ID_content_scale_to_fit_height, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
872
873                 wxMenu* jobs_menu = new wxMenu;
874                 add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
875                 add_item (jobs_menu, _("Make DCP in &batch converter\tCtrl-B"), ID_jobs_make_dcp_batch, NEEDS_FILM | NOT_DURING_DCP_CREATION);
876                 add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM);
877                 add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM);
878                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
879                 add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
880
881                 wxMenu* tools = new wxMenu;
882                 add_item (tools, _("Video waveform..."), ID_tools_video_waveform, NEEDS_FILM);
883                 add_item (tools, _("Hints..."), ID_tools_hints, 0);
884                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
885                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
886                 tools->AppendSeparator ();
887                 add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
888
889                 wxMenu* help = new wxMenu;
890 #ifdef __WXOSX__
891                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
892 #else
893                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
894 #endif
895                 add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM);
896
897                 m->Append (_file_menu, _("&File"));
898 #ifndef __WXOSX__
899                 m->Append (edit, _("&Edit"));
900 #endif
901                 m->Append (content, _("&Content"));
902                 m->Append (jobs_menu, _("&Jobs"));
903                 m->Append (tools, _("&Tools"));
904                 m->Append (help, _("&Help"));
905         }
906
907         void config_changed ()
908         {
909                 for (int i = 0; i < _history_items; ++i) {
910                         delete _file_menu->Remove (ID_file_history + i);
911                 }
912
913                 if (_history_separator) {
914                         _file_menu->Remove (_history_separator);
915                 }
916                 delete _history_separator;
917                 _history_separator = 0;
918
919                 int pos = _history_position;
920
921                 vector<boost::filesystem::path> history = Config::instance()->history ();
922
923                 if (!history.empty ()) {
924                         _history_separator = _file_menu->InsertSeparator (pos++);
925                 }
926
927                 for (size_t i = 0; i < history.size(); ++i) {
928                         string s;
929                         if (i < 9) {
930                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
931                         } else {
932                                 s = history[i].string();
933                         }
934                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
935                 }
936
937                 _history_items = history.size ();
938         }
939
940         void update_checker_state_changed ()
941         {
942                 UpdateChecker* uc = UpdateChecker::instance ();
943
944                 bool const announce =
945                         _update_news_requested ||
946                         (uc->stable() && Config::instance()->check_for_updates()) ||
947                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
948
949                 _update_news_requested = false;
950
951                 if (!announce) {
952                         return;
953                 }
954
955                 if (uc->state() == UpdateChecker::YES) {
956                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
957                         dialog->ShowModal ();
958                         dialog->Destroy ();
959                 } else if (uc->state() == UpdateChecker::FAILED) {
960                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
961                 } else {
962                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
963                 }
964
965                 _update_news_requested = false;
966         }
967
968         FilmEditor* _film_editor;
969         FilmViewer* _film_viewer;
970         VideoWaveformDialog* _video_waveform_dialog;
971         HintsDialog* _hints_dialog;
972         ServersListDialog* _servers_list_dialog;
973         wxPreferencesEditor* _config_dialog;
974         KDMDialog* _kdm_dialog;
975         wxMenu* _file_menu;
976         shared_ptr<Film> _film;
977         int _history_items;
978         int _history_position;
979         wxMenuItem* _history_separator;
980         boost::signals2::scoped_connection _config_changed_connection;
981         bool _update_news_requested;
982 };
983
984 static const wxCmdLineEntryDesc command_line_description[] = {
985         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
986         { wxCMD_LINE_OPTION, "c", "content", "add content file", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
987         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
988         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
989 };
990
991 /** @class App
992  *  @brief The magic App class for wxWidgets.
993  */
994 class App : public wxApp
995 {
996 public:
997         App ()
998                 : wxApp ()
999                 , _frame (0)
1000         {}
1001
1002 private:
1003
1004         bool OnInit ()
1005         try
1006         {
1007                 wxInitAllImageHandlers ();
1008
1009                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1010
1011                 wxSplashScreen* splash = 0;
1012                 try {
1013                         if (!Config::have_existing ("config.xml")) {
1014                                 wxBitmap bitmap;
1015                                 boost::filesystem::path p = shared_path () / "splash.png";
1016                                 if (bitmap.LoadFile (std_to_wx (p.string ()), wxBITMAP_TYPE_PNG)) {
1017                                         splash = new wxSplashScreen (bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, 0, -1);
1018                                         wxYield ();
1019                                 }
1020                         }
1021                 } catch (boost::filesystem::filesystem_error& e) {
1022                         /* Maybe we couldn't find the splash image; never mind */
1023                 }
1024
1025                 SetAppName (_("DCP-o-matic"));
1026
1027                 if (!wxApp::OnInit()) {
1028                         return false;
1029                 }
1030
1031 #ifdef DCPOMATIC_LINUX
1032                 unsetenv ("UBUNTU_MENUPROXY");
1033 #endif
1034
1035 #ifdef __WXOSX__
1036                 ProcessSerialNumber serial;
1037                 GetCurrentProcess (&serial);
1038                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
1039 #endif
1040
1041                 dcpomatic_setup_path_encoding ();
1042
1043                 /* Enable i18n; this will create a Config object
1044                    to look for a force-configured language.  This Config
1045                    object will be wrong, however, because dcpomatic_setup
1046                    hasn't yet been called and there aren't any filters etc.
1047                    set up yet.
1048                 */
1049                 dcpomatic_setup_i18n ();
1050
1051                 /* Set things up, including filters etc.
1052                    which will now be internationalised correctly.
1053                 */
1054                 dcpomatic_setup ();
1055
1056                 /* Force the configuration to be re-loaded correctly next
1057                    time it is needed.
1058                 */
1059                 Config::drop ();
1060
1061                 _frame = new DOMFrame (_("DCP-o-matic"));
1062                 SetTopWindow (_frame);
1063                 _frame->Maximize ();
1064                 if (splash) {
1065                         splash->Destroy ();
1066                 }
1067                 _frame->Show ();
1068
1069                 if (!_film_to_load.empty() && boost::filesystem::is_directory (_film_to_load)) {
1070                         try {
1071                                 _frame->load_film (_film_to_load);
1072                         } catch (exception& e) {
1073                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), _film_to_load, e.what())));
1074                         }
1075                 }
1076
1077                 if (!_film_to_create.empty ()) {
1078                         _frame->new_film (_film_to_create);
1079                         if (!_content_to_add.empty ()) {
1080                                 _frame->film()->examine_and_add_content (content_factory (_frame->film(), _content_to_add));
1081                         }
1082                 }
1083
1084                 signal_manager = new wxSignalManager (this);
1085                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
1086
1087                 Bind (wxEVT_TIMER, boost::bind (&App::check, this));
1088                 _timer.reset (new wxTimer (this));
1089                 _timer->Start (1000);
1090
1091                 if (Config::instance()->check_for_updates ()) {
1092                         UpdateChecker::instance()->run ();
1093                 }
1094
1095                 return true;
1096         }
1097         catch (exception& e)
1098         {
1099                 error_dialog (0, wxString::Format ("DCP-o-matic could not start: %s", e.what ()));
1100                 return true;
1101         }
1102
1103         void OnInitCmdLine (wxCmdLineParser& parser)
1104         {
1105                 parser.SetDesc (command_line_description);
1106                 parser.SetSwitchChars (wxT ("-"));
1107         }
1108
1109         bool OnCmdLineParsed (wxCmdLineParser& parser)
1110         {
1111                 if (parser.GetParamCount() > 0) {
1112                         if (parser.Found (wxT ("new"))) {
1113                                 _film_to_create = wx_to_std (parser.GetParam (0));
1114                         } else {
1115                                 _film_to_load = wx_to_std (parser.GetParam (0));
1116                         }
1117                 }
1118
1119                 wxString content;
1120                 if (parser.Found (wxT ("content"), &content)) {
1121                         _content_to_add = wx_to_std (content);
1122                 }
1123
1124                 return true;
1125         }
1126
1127         void report_exception ()
1128         {
1129                 try {
1130                         throw;
1131                 } catch (FileError& e) {
1132                         error_dialog (
1133                                 0,
1134                                 wxString::Format (
1135                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1136                                         std_to_wx (e.what()),
1137                                         std_to_wx (e.file().string().c_str ())
1138                                         )
1139                                 );
1140                 } catch (exception& e) {
1141                         error_dialog (
1142                                 0,
1143                                 wxString::Format (
1144                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1145                                         std_to_wx (e.what ())
1146                                         )
1147                                 );
1148                 } catch (...) {
1149                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1150                 }
1151         }
1152
1153         /* An unhandled exception has occurred inside the main event loop */
1154         bool OnExceptionInMainLoop ()
1155         {
1156                 report_exception ();
1157                 /* This will terminate the program */
1158                 return false;
1159         }
1160
1161         void OnUnhandledException ()
1162         {
1163                 report_exception ();
1164         }
1165
1166         void idle ()
1167         {
1168                 signal_manager->ui_idle ();
1169         }
1170
1171         void check ()
1172         {
1173                 try {
1174                         EncodeServerFinder::instance()->rethrow ();
1175                 } catch (exception& e) {
1176                         error_dialog (0, std_to_wx (e.what ()));
1177                 }
1178         }
1179
1180         void config_failed_to_load ()
1181         {
1182                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1183         }
1184
1185         DOMFrame* _frame;
1186         shared_ptr<wxTimer> _timer;
1187         string _film_to_load;
1188         string _film_to_create;
1189         string _content_to_add;
1190 };
1191
1192 IMPLEMENT_APP (App)