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