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