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