Fix crash when dragging and dropping the only DKDM.
[dcpomatic.git] / src / tools / dcpomatic_kdm.cc
1 /*
2     Copyright (C) 2015-2017 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 #include "wx/full_config_dialog.h"
22 #include "wx/about_dialog.h"
23 #include "wx/report_problem_dialog.h"
24 #include "wx/file_picker_ctrl.h"
25 #include "wx/wx_util.h"
26 #include "wx/wx_signal_manager.h"
27 #include "wx/screens_panel.h"
28 #include "wx/kdm_timing_panel.h"
29 #include "wx/kdm_output_panel.h"
30 #include "wx/job_view_dialog.h"
31 #include "wx/file_dialog_wrapper.h"
32 #include "wx/new_dkdm_folder_dialog.h"
33 #include "wx/editable_list.h"
34 #include "lib/config.h"
35 #include "lib/util.h"
36 #include "lib/screen.h"
37 #include "lib/job_manager.h"
38 #include "lib/screen_kdm.h"
39 #include "lib/exceptions.h"
40 #include "lib/cinema_kdms.h"
41 #include "lib/send_kdm_email_job.h"
42 #include "lib/compose.hpp"
43 #include "lib/cinema.h"
44 #include "lib/dkdm_wrapper.h"
45 #include "lib/cross.h"
46 #include <dcp/encrypted_kdm.h>
47 #include <dcp/decrypted_kdm.h>
48 #include <dcp/exceptions.h>
49 #include <wx/wx.h>
50 #include <wx/preferences.h>
51 #include <wx/splash.h>
52 #include <wx/filepicker.h>
53 #ifdef __WXOSX__
54 #include <ApplicationServices/ApplicationServices.h>
55 #endif
56 #include <boost/bind.hpp>
57 #include <boost/foreach.hpp>
58
59 #ifdef check
60 #undef check
61 #endif
62
63 using std::exception;
64 using std::list;
65 using std::string;
66 using std::vector;
67 using std::pair;
68 using std::map;
69 using boost::shared_ptr;
70 using boost::bind;
71 using boost::optional;
72 using boost::ref;
73 using boost::dynamic_pointer_cast;
74
75 enum {
76         ID_help_report_a_problem = 1,
77 };
78
79 class DOMFrame : public wxFrame
80 {
81 public:
82         DOMFrame (wxString const & title)
83                 : wxFrame (0, -1, title)
84                 , _config_dialog (0)
85                 , _job_view (0)
86         {
87 #if defined(DCPOMATIC_WINDOWS)
88                 if (Config::instance()->win32_console ()) {
89                         AllocConsole();
90
91                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
92                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
93                         FILE* hf_out = _fdopen(hCrt, "w");
94                         setvbuf(hf_out, NULL, _IONBF, 1);
95                         *stdout = *hf_out;
96
97                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
98                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
99                         FILE* hf_in = _fdopen(hCrt, "r");
100                         setvbuf(hf_in, NULL, _IONBF, 128);
101                         *stdin = *hf_in;
102
103                         std::cout << "DCP-o-matic KDM creator is starting." << "\n";
104                 }
105 #endif
106
107                 wxMenuBar* bar = new wxMenuBar;
108                 setup_menu (bar);
109                 SetMenuBar (bar);
110
111                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),             wxID_EXIT);
112                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),      wxID_PREFERENCES);
113                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),            wxID_ABOUT);
114                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
115
116                 /* Use a panel as the only child of the Frame so that we avoid
117                    the dark-grey background on Windows.
118                 */
119                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
120                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
121
122                 wxBoxSizer* horizontal = new wxBoxSizer (wxHORIZONTAL);
123                 wxBoxSizer* left = new wxBoxSizer (wxVERTICAL);
124                 wxBoxSizer* right = new wxBoxSizer (wxVERTICAL);
125
126                 horizontal->Add (left, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP * 2);
127                 horizontal->Add (right, 1, wxEXPAND);
128
129                 wxFont subheading_font (*wxNORMAL_FONT);
130                 subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
131
132                 wxStaticText* h = new wxStaticText (overall_panel, wxID_ANY, _("Screens"));
133                 h->SetFont (subheading_font);
134                 left->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
135                 _screens = new ScreensPanel (overall_panel);
136                 left->Add (_screens, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
137
138                 /// TRANSLATORS: translate the word "Timing" here; do not include the "KDM|" prefix
139                 h = new wxStaticText (overall_panel, wxID_ANY, S_("KDM|Timing"));
140                 h->SetFont (subheading_font);
141                 right->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP * 2);
142                 _timing = new KDMTimingPanel (overall_panel);
143                 right->Add (_timing, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
144
145                 h = new wxStaticText (overall_panel, wxID_ANY, _("DKDM"));
146                 h->SetFont (subheading_font);
147                 right->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
148                 wxBoxSizer* dkdm_sizer = new wxBoxSizer (wxHORIZONTAL);
149                 _dkdm = new wxTreeCtrl (
150                         overall_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT
151                 );
152                 dkdm_sizer->Add (_dkdm, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
153                 wxBoxSizer* dkdm_buttons = new wxBoxSizer(wxVERTICAL);
154                 _add_dkdm = new wxButton (overall_panel, wxID_ANY, _("Add..."));
155                 dkdm_buttons->Add (_add_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
156                 _add_dkdm_folder = new wxButton (overall_panel, wxID_ANY, _("Add folder..."));
157                 dkdm_buttons->Add (_add_dkdm_folder, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
158                 _remove_dkdm = new wxButton (overall_panel, wxID_ANY, _("Remove"));
159                 dkdm_buttons->Add (_remove_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
160                 dkdm_sizer->Add (dkdm_buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
161                 right->Add (dkdm_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
162
163                 add_dkdm_view (Config::instance()->dkdms());
164
165                 h = new wxStaticText (overall_panel, wxID_ANY, _("Output"));
166                 h->SetFont (subheading_font);
167                 right->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
168                 /* XXX: hard-coded non-interop here */
169                 _output = new KDMOutputPanel (overall_panel, false);
170                 right->Add (_output, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
171
172                 _create = new wxButton (overall_panel, wxID_ANY, _("Create KDMs"));
173                 right->Add (_create, 0, wxALL, DCPOMATIC_SIZER_GAP);
174
175                 main_sizer->Add (horizontal, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
176                 overall_panel->SetSizer (main_sizer);
177
178                 /* Instantly save any config changes when using a DCP-o-matic GUI */
179                 Config::instance()->Changed.connect (boost::bind (&Config::write, Config::instance ()));
180
181                 _screens->ScreensChanged.connect (boost::bind (&DOMFrame::setup_sensitivity, this));
182                 _create->Bind (wxEVT_BUTTON, bind (&DOMFrame::create_kdms, this));
183                 _dkdm->Bind (wxEVT_TREE_SEL_CHANGED, boost::bind (&DOMFrame::setup_sensitivity, this));
184                 _dkdm->Bind (wxEVT_TREE_BEGIN_DRAG, boost::bind (&DOMFrame::dkdm_begin_drag, this, _1));
185                 _dkdm->Bind (wxEVT_TREE_END_DRAG, boost::bind (&DOMFrame::dkdm_end_drag, this, _1));
186                 _add_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::add_dkdm_clicked, this));
187                 _add_dkdm_folder->Bind (wxEVT_BUTTON, bind (&DOMFrame::add_dkdm_folder_clicked, this));
188                 _remove_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::remove_dkdm_clicked, this));
189
190                 setup_sensitivity ();
191         }
192
193 private:
194         void file_exit ()
195         {
196                 /* false here allows the close handler to veto the close request */
197                 Close (false);
198         }
199
200         void edit_preferences ()
201         {
202                 if (!_config_dialog) {
203                         _config_dialog = create_full_config_dialog ();
204                 }
205                 _config_dialog->Show (this);
206         }
207
208         void help_about ()
209         {
210                 AboutDialog* d = new AboutDialog (this);
211                 d->ShowModal ();
212                 d->Destroy ();
213         }
214
215         void help_report_a_problem ()
216         {
217                 ReportProblemDialog* d = new ReportProblemDialog (this, shared_ptr<Film> ());
218                 if (d->ShowModal () == wxID_OK) {
219                         d->report ();
220                 }
221                 d->Destroy ();
222         }
223
224         void setup_menu (wxMenuBar* m)
225         {
226                 wxMenu* file = new wxMenu;
227
228 #ifdef __WXOSX__
229                 file->Append (wxID_EXIT, _("&Exit"));
230 #else
231                 file->Append (wxID_EXIT, _("&Quit"));
232 #endif
233
234 #ifdef __WXOSX__
235                 file->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
236 #else
237                 wxMenu* edit = new wxMenu;
238                 edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
239 #endif
240
241                 wxMenu* help = new wxMenu;
242 #ifdef __WXOSX__
243                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
244 #else
245                 help->Append (wxID_ABOUT, _("About"));
246 #endif
247                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
248
249                 m->Append (file, _("&File"));
250 #ifndef __WXOSX__
251                 m->Append (edit, _("&Edit"));
252 #endif
253                 m->Append (help, _("&Help"));
254         }
255
256         bool confirm_overwrite (boost::filesystem::path path)
257         {
258                 return confirm_dialog (
259                         this,
260                         wxString::Format (_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(path.string()).data())
261                         );
262         }
263
264         /** @id if not 0 this is filled in with the wxTreeItemId of the selection */
265         shared_ptr<DKDMBase> selected_dkdm (wxTreeItemId* id = 0) const
266         {
267                 wxArrayTreeItemIds selections;
268                 _dkdm->GetSelections (selections);
269                 if (selections.GetCount() != 1) {
270                         if (id) {
271                                 *id = 0;
272                         }
273                         return shared_ptr<DKDMBase> ();
274                 }
275
276                 if (id) {
277                         *id = selections[0];
278                 }
279
280                 DKDMMap::const_iterator i = _dkdm_id.find (selections[0]);
281                 if (i == _dkdm_id.end()) {
282                         return shared_ptr<DKDMBase> ();
283                 }
284
285                 return i->second;
286         }
287
288         void create_kdms ()
289         {
290                 try {
291                         shared_ptr<DKDMBase> dkdm_base = selected_dkdm ();
292                         if (!dkdm_base) {
293                                 return;
294                         }
295                         shared_ptr<DKDM> dkdm = boost::dynamic_pointer_cast<DKDM> (dkdm_base);
296                         if (!dkdm) {
297                                 return;
298                         }
299
300                         /* Decrypt the DKDM */
301                         dcp::DecryptedKDM decrypted (dkdm->dkdm(), Config::instance()->decryption_chain()->key().get());
302
303                         /* This is the signer for our new KDMs */
304                         shared_ptr<const dcp::CertificateChain> signer = Config::instance()->signer_chain ();
305                         if (!signer->valid ()) {
306                                 throw InvalidSignerError ();
307                         }
308
309                         list<ScreenKDM> screen_kdms;
310                         BOOST_FOREACH (shared_ptr<Screen> i, _screens->screens()) {
311
312                                 if (!i->recipient) {
313                                         continue;
314                                 }
315
316                                 /* Make an empty KDM */
317                                 dcp::DecryptedKDM kdm (
318                                         dcp::LocalTime (_timing->from(), i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute()),
319                                         dcp::LocalTime (_timing->until(), i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute()),
320                                         decrypted.annotation_text().get_value_or (""),
321                                         decrypted.content_title_text(),
322                                         dcp::LocalTime().as_string()
323                                         );
324
325                                 /* Add keys from the DKDM */
326                                 BOOST_FOREACH (dcp::DecryptedKDMKey const & j, decrypted.keys()) {
327                                         kdm.add_key (j);
328                                 }
329
330                                 /* Encrypt */
331                                 screen_kdms.push_back (ScreenKDM (i, kdm.encrypt (signer, i->recipient.get(), i->trusted_devices, _output->formulation())));
332                         }
333
334                         pair<shared_ptr<Job>, int> result = _output->make (
335                                 screen_kdms, decrypted.content_title_text(), _timing, bind (&DOMFrame::confirm_overwrite, this, _1), shared_ptr<Log> ()
336                                 );
337
338                         if (result.first) {
339                                 JobManager::instance()->add (result.first);
340                                 if (_job_view) {
341                                         _job_view->Destroy ();
342                                         _job_view = 0;
343                                 }
344                                 _job_view = new JobViewDialog (this, _("Send KDM emails"), result.first);
345                                 _job_view->ShowModal ();
346                         }
347
348                         if (result.second > 0) {
349                                 /* XXX: proper plural form support in wxWidgets? */
350                                 wxString s = result.second == 1 ? _("%d KDM written to %s") : _("%d KDMs written to %s");
351                                 message_dialog (
352                                         this,
353                                         wxString::Format (s, result.second, std_to_wx(_output->directory().string()).data())
354                                         );
355                         }
356                 } catch (dcp::NotEncryptedError& e) {
357                         error_dialog (this, _("CPL's content is not encrypted."));
358                 } catch (exception& e) {
359                         error_dialog (this, e.what ());
360                 } catch (...) {
361                         error_dialog (this, _("An unknown exception occurred."));
362                 }
363         }
364
365         void setup_sensitivity ()
366         {
367                 _screens->setup_sensitivity ();
368                 _output->setup_sensitivity ();
369                 wxArrayTreeItemIds sel;
370                 _dkdm->GetSelections (sel);
371                 _create->Enable (!_screens->screens().empty() && sel.GetCount() > 0);
372         }
373
374         void dkdm_begin_drag (wxTreeEvent& ev)
375         {
376                 ev.Allow ();
377         }
378
379         void dkdm_end_drag (wxTreeEvent& ev)
380         {
381                 DKDMMap::iterator from = _dkdm_id.find (_dkdm->GetSelection ());
382                 DKDMMap::iterator to = _dkdm_id.find (ev.GetItem ());
383                 if (from == _dkdm_id.end() || to == _dkdm_id.end() || from->first == to->first) {
384                         return;
385                 }
386
387                 shared_ptr<DKDMGroup> group = dynamic_pointer_cast<DKDMGroup> (to->second);
388                 if (!group) {
389                         group = to->second->parent();
390                 }
391
392                 DCPOMATIC_ASSERT (group);
393                 DCPOMATIC_ASSERT (from->second->parent ());
394
395                 from->second->parent()->remove (from->second);
396                 add_dkdm_model (from->second, group, dynamic_pointer_cast<DKDM>(to->second));
397
398                 _dkdm->Delete (from->first);
399                 _dkdm_id.erase (from->first);
400                 add_dkdm_view (from->second, dynamic_pointer_cast<DKDM>(to->second) ? to->first : optional<wxTreeItemId>());
401         }
402
403         void add_dkdm_clicked ()
404         {
405                 wxFileDialog* d = new wxFileDialog (this, _("Select DKDM file"));
406                 if (d->ShowModal() == wxID_OK) {
407                         shared_ptr<DKDMBase> new_dkdm;
408                         try {
409                                 dcp::EncryptedKDM ekdm(dcp::file_to_string (wx_to_std (d->GetPath ()), MAX_KDM_SIZE));
410
411                                 /* Decrypt the DKDM to make sure that we can */
412                                 shared_ptr<const dcp::CertificateChain> chain = Config::instance()->decryption_chain();
413                                 DCPOMATIC_ASSERT (chain->key());
414                                 dcp::DecryptedKDM dkdm(ekdm, chain->key().get());
415
416                                 new_dkdm.reset(new DKDM(ekdm));
417                                 shared_ptr<DKDMGroup> group = dynamic_pointer_cast<DKDMGroup> (selected_dkdm ());
418                                 if (!group) {
419                                         group = Config::instance()->dkdms ();
420                                 }
421                                 add_dkdm_model (new_dkdm, group);
422                                 add_dkdm_view (new_dkdm);
423                         } catch (dcp::KDMFormatError& e) {
424                                 error_dialog (
425                                         this,
426                                         wxString::Format (
427                                                 _("Could not read file as a KDM.  Perhaps it is badly formatted, or not a KDM at all.\n\n%s"),
428                                                 std_to_wx(e.what()).data()
429                                                 )
430                                         );
431                                 return;
432                         } catch (dcp::KDMDecryptionError) {
433                                 error_dialog (
434                                         this,
435                                         _("Could not decrypt the DKDM.  Perhaps it was not created with the correct certificate.")
436                                         );
437                         }
438                 }
439                 d->Destroy ();
440         }
441
442         void add_dkdm_folder_clicked ()
443         {
444                 NewDKDMFolderDialog* d = new NewDKDMFolderDialog (this);
445                 if (d->ShowModal() == wxID_OK) {
446                         shared_ptr<DKDMBase> new_dkdm (new DKDMGroup (wx_to_std (d->get ())));
447                         shared_ptr<DKDMGroup> parent = dynamic_pointer_cast<DKDMGroup> (selected_dkdm ());
448                         if (!parent) {
449                                 parent = Config::instance()->dkdms ();
450                         }
451                         add_dkdm_model (new_dkdm, parent);
452                         add_dkdm_view (new_dkdm);
453                 }
454                 d->Destroy ();
455         }
456
457         /** @param dkdm Thing to add.
458          *  @param parent Parent group, or 0.
459          */
460         void add_dkdm_view (shared_ptr<DKDMBase> base, optional<wxTreeItemId> previous = optional<wxTreeItemId>())
461         {
462                 if (!base->parent()) {
463                         /* This is the root group */
464                         _dkdm_id[_dkdm->AddRoot("root")] = base;
465                 } else {
466                         /* Add base to the view */
467                         wxTreeItemId added;
468                         if (previous) {
469                                 added = _dkdm->InsertItem(dkdm_to_id(base->parent()), *previous, std_to_wx(base->name()));
470                         } else {
471                                 added = _dkdm->AppendItem(dkdm_to_id(base->parent()), std_to_wx(base->name()));
472                         }
473                         _dkdm_id[added] = base;
474                 }
475
476                 /* Add children */
477                 shared_ptr<DKDMGroup> g = dynamic_pointer_cast<DKDMGroup> (base);
478                 if (g) {
479                         BOOST_FOREACH (shared_ptr<DKDMBase> i, g->children()) {
480                                 add_dkdm_view (i);
481                         }
482                 }
483         }
484
485         /** @param group Group to add dkdm to */
486         void add_dkdm_model (shared_ptr<DKDMBase> dkdm, shared_ptr<DKDMGroup> group, shared_ptr<DKDM> previous = shared_ptr<DKDM> ())
487         {
488                 group->add (dkdm, previous);
489                 /* We're messing with a Config-owned object here, so tell it that something has changed.
490                    This isn't nice.
491                 */
492                 Config::instance()->changed ();
493         }
494
495         wxTreeItemId dkdm_to_id (shared_ptr<DKDMBase> dkdm)
496         {
497                 for (DKDMMap::iterator i = _dkdm_id.begin(); i != _dkdm_id.end(); ++i) {
498                         if (i->second == dkdm) {
499                                 return i->first;
500                         }
501                 }
502                 DCPOMATIC_ASSERT (false);
503         }
504
505         void remove_dkdm_clicked ()
506         {
507                 shared_ptr<DKDMBase> removed = selected_dkdm ();
508                 if (!removed) {
509                         return;
510                 }
511
512                 _dkdm->Delete (dkdm_to_id (removed));
513                 shared_ptr<DKDMGroup> dkdms = Config::instance()->dkdms ();
514                 dkdms->remove (removed);
515                 Config::instance()->changed ();
516         }
517
518         wxPreferencesEditor* _config_dialog;
519         ScreensPanel* _screens;
520         KDMTimingPanel* _timing;
521         wxTreeCtrl* _dkdm;
522         typedef std::map<wxTreeItemId, boost::shared_ptr<DKDMBase> > DKDMMap;
523         DKDMMap _dkdm_id;
524         wxButton* _add_dkdm;
525         wxButton* _add_dkdm_folder;
526         wxButton* _remove_dkdm;
527         wxButton* _create;
528         KDMOutputPanel* _output;
529         JobViewDialog* _job_view;
530 };
531
532 /** @class App
533  *  @brief The magic App class for wxWidgets.
534  */
535 class App : public wxApp
536 {
537 public:
538         App ()
539                 : wxApp ()
540                 , _frame (0)
541         {}
542
543 private:
544
545         bool OnInit ()
546         try
547         {
548                 wxInitAllImageHandlers ();
549
550                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
551                 Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
552
553                 wxSplashScreen* splash = maybe_show_splash ();
554
555                 SetAppName (_("DCP-o-matic KDM Creator"));
556
557                 if (!wxApp::OnInit()) {
558                         return false;
559                 }
560
561 #ifdef DCPOMATIC_LINUX
562                 unsetenv ("UBUNTU_MENUPROXY");
563 #endif
564
565 #ifdef __WXOSX__
566                 ProcessSerialNumber serial;
567                 GetCurrentProcess (&serial);
568                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
569 #endif
570
571                 dcpomatic_setup_path_encoding ();
572
573                 /* Enable i18n; this will create a Config object
574                    to look for a force-configured language.  This Config
575                    object will be wrong, however, because dcpomatic_setup
576                    hasn't yet been called and there aren't any filters etc.
577                    set up yet.
578                 */
579                 dcpomatic_setup_i18n ();
580
581                 /* Set things up, including filters etc.
582                    which will now be internationalised correctly.
583                 */
584                 dcpomatic_setup ();
585
586                 /* Force the configuration to be re-loaded correctly next
587                    time it is needed.
588                 */
589                 Config::drop ();
590
591                 _frame = new DOMFrame (_("DCP-o-matic KDM Creator"));
592                 SetTopWindow (_frame);
593                 _frame->Maximize ();
594                 if (splash) {
595                         splash->Destroy ();
596                 }
597                 _frame->Show ();
598
599                 signal_manager = new wxSignalManager (this);
600                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
601
602                 return true;
603         }
604         catch (exception& e)
605         {
606                 error_dialog (0, wxString::Format ("DCP-o-matic could not start: %s", e.what ()));
607                 return true;
608         }
609
610         /* An unhandled exception has occurred inside the main event loop */
611         bool OnExceptionInMainLoop ()
612         {
613                 try {
614                         throw;
615                 } catch (FileError& e) {
616                         error_dialog (
617                                 0,
618                                 wxString::Format (
619                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
620                                         std_to_wx (e.what()),
621                                         std_to_wx (e.file().string().c_str ())
622                                         )
623                                 );
624                 } catch (exception& e) {
625                         error_dialog (
626                                 0,
627                                 wxString::Format (
628                                         _("An exception occurred: %s.\n\n") + " " + REPORT_PROBLEM,
629                                         std_to_wx (e.what ())
630                                         )
631                                 );
632                 } catch (...) {
633                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
634                 }
635
636                 /* This will terminate the program */
637                 return false;
638         }
639
640         void OnUnhandledException ()
641         {
642                 error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
643         }
644
645         void idle ()
646         {
647                 signal_manager->ui_idle ();
648         }
649
650         void config_failed_to_load ()
651         {
652                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
653         }
654
655         void config_warning (string m)
656         {
657                 message_dialog (_frame, std_to_wx (m));
658         }
659
660         DOMFrame* _frame;
661 };
662
663 IMPLEMENT_APP (App)