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