Separate readable error from technical detail in some places.
[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, std_to_wx(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                                         _("Could not read file as a KDM.  Perhaps it is badly formatted, or not a KDM at all."),
427                                         std_to_wx(e.what())
428                                         );
429                                 return;
430                         } catch (dcp::KDMDecryptionError) {
431                                 error_dialog (
432                                         this,
433                                         _("Could not decrypt the DKDM.  Perhaps it was not created with the correct certificate.")
434                                         );
435                         }
436                 }
437                 d->Destroy ();
438         }
439
440         void add_dkdm_folder_clicked ()
441         {
442                 NewDKDMFolderDialog* d = new NewDKDMFolderDialog (this);
443                 if (d->ShowModal() == wxID_OK) {
444                         shared_ptr<DKDMBase> new_dkdm (new DKDMGroup (wx_to_std (d->get ())));
445                         shared_ptr<DKDMGroup> parent = dynamic_pointer_cast<DKDMGroup> (selected_dkdm ());
446                         if (!parent) {
447                                 parent = Config::instance()->dkdms ();
448                         }
449                         add_dkdm_model (new_dkdm, parent);
450                         add_dkdm_view (new_dkdm);
451                 }
452                 d->Destroy ();
453         }
454
455         /** @param dkdm Thing to add.
456          *  @param parent Parent group, or 0.
457          */
458         void add_dkdm_view (shared_ptr<DKDMBase> base, optional<wxTreeItemId> previous = optional<wxTreeItemId>())
459         {
460                 if (!base->parent()) {
461                         /* This is the root group */
462                         _dkdm_id[_dkdm->AddRoot("root")] = base;
463                 } else {
464                         /* Add base to the view */
465                         wxTreeItemId added;
466                         if (previous) {
467                                 added = _dkdm->InsertItem(dkdm_to_id(base->parent()), *previous, std_to_wx(base->name()));
468                         } else {
469                                 added = _dkdm->AppendItem(dkdm_to_id(base->parent()), std_to_wx(base->name()));
470                         }
471                         _dkdm_id[added] = base;
472                 }
473
474                 /* Add children */
475                 shared_ptr<DKDMGroup> g = dynamic_pointer_cast<DKDMGroup> (base);
476                 if (g) {
477                         BOOST_FOREACH (shared_ptr<DKDMBase> i, g->children()) {
478                                 add_dkdm_view (i);
479                         }
480                 }
481         }
482
483         /** @param group Group to add dkdm to */
484         void add_dkdm_model (shared_ptr<DKDMBase> dkdm, shared_ptr<DKDMGroup> group, shared_ptr<DKDM> previous = shared_ptr<DKDM> ())
485         {
486                 group->add (dkdm, previous);
487                 /* We're messing with a Config-owned object here, so tell it that something has changed.
488                    This isn't nice.
489                 */
490                 Config::instance()->changed ();
491         }
492
493         wxTreeItemId dkdm_to_id (shared_ptr<DKDMBase> dkdm)
494         {
495                 for (DKDMMap::iterator i = _dkdm_id.begin(); i != _dkdm_id.end(); ++i) {
496                         if (i->second == dkdm) {
497                                 return i->first;
498                         }
499                 }
500                 DCPOMATIC_ASSERT (false);
501         }
502
503         void remove_dkdm_clicked ()
504         {
505                 shared_ptr<DKDMBase> removed = selected_dkdm ();
506                 if (!removed) {
507                         return;
508                 }
509
510                 _dkdm->Delete (dkdm_to_id (removed));
511                 shared_ptr<DKDMGroup> dkdms = Config::instance()->dkdms ();
512                 dkdms->remove (removed);
513                 Config::instance()->changed ();
514         }
515
516         wxPreferencesEditor* _config_dialog;
517         ScreensPanel* _screens;
518         KDMTimingPanel* _timing;
519         wxTreeCtrl* _dkdm;
520         typedef std::map<wxTreeItemId, boost::shared_ptr<DKDMBase> > DKDMMap;
521         DKDMMap _dkdm_id;
522         wxButton* _add_dkdm;
523         wxButton* _add_dkdm_folder;
524         wxButton* _remove_dkdm;
525         wxButton* _create;
526         KDMOutputPanel* _output;
527         JobViewDialog* _job_view;
528 };
529
530 /** @class App
531  *  @brief The magic App class for wxWidgets.
532  */
533 class App : public wxApp
534 {
535 public:
536         App ()
537                 : wxApp ()
538                 , _frame (0)
539         {}
540
541 private:
542
543         bool OnInit ()
544         try
545         {
546                 wxInitAllImageHandlers ();
547
548                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
549                 Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
550
551                 wxSplashScreen* splash = maybe_show_splash ();
552
553                 SetAppName (_("DCP-o-matic KDM Creator"));
554
555                 if (!wxApp::OnInit()) {
556                         return false;
557                 }
558
559 #ifdef DCPOMATIC_LINUX
560                 unsetenv ("UBUNTU_MENUPROXY");
561 #endif
562
563 #ifdef __WXOSX__
564                 ProcessSerialNumber serial;
565                 GetCurrentProcess (&serial);
566                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
567 #endif
568
569                 dcpomatic_setup_path_encoding ();
570
571                 /* Enable i18n; this will create a Config object
572                    to look for a force-configured language.  This Config
573                    object will be wrong, however, because dcpomatic_setup
574                    hasn't yet been called and there aren't any filters etc.
575                    set up yet.
576                 */
577                 dcpomatic_setup_i18n ();
578
579                 /* Set things up, including filters etc.
580                    which will now be internationalised correctly.
581                 */
582                 dcpomatic_setup ();
583
584                 /* Force the configuration to be re-loaded correctly next
585                    time it is needed.
586                 */
587                 Config::drop ();
588
589                 _frame = new DOMFrame (_("DCP-o-matic KDM Creator"));
590                 SetTopWindow (_frame);
591                 _frame->Maximize ();
592                 if (splash) {
593                         splash->Destroy ();
594                 }
595                 _frame->Show ();
596
597                 signal_manager = new wxSignalManager (this);
598                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
599
600                 return true;
601         }
602         catch (exception& e)
603         {
604                 error_dialog (0, _("DCP-o-matic could not start"), std_to_wx(e.what()));
605                 return true;
606         }
607
608         /* An unhandled exception has occurred inside the main event loop */
609         bool OnExceptionInMainLoop ()
610         {
611                 try {
612                         throw;
613                 } catch (FileError& e) {
614                         error_dialog (
615                                 0,
616                                 wxString::Format (
617                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
618                                         std_to_wx (e.what()),
619                                         std_to_wx (e.file().string().c_str ())
620                                         )
621                                 );
622                 } catch (exception& e) {
623                         error_dialog (
624                                 0,
625                                 wxString::Format (
626                                         _("An exception occurred: %s.\n\n") + " " + REPORT_PROBLEM,
627                                         std_to_wx (e.what ())
628                                         )
629                                 );
630                 } catch (...) {
631                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
632                 }
633
634                 /* This will terminate the program */
635                 return false;
636         }
637
638         void OnUnhandledException ()
639         {
640                 error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
641         }
642
643         void idle ()
644         {
645                 signal_manager->ui_idle ();
646         }
647
648         void config_failed_to_load ()
649         {
650                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
651         }
652
653         void config_warning (string m)
654         {
655                 message_dialog (_frame, std_to_wx (m));
656         }
657
658         DOMFrame* _frame;
659 };
660
661 IMPLEMENT_APP (App)