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