Use the correct prompt for file/folder.
[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_dialog.h"
26 #include "wx/file_picker_ctrl.h"
27 #include "wx/full_config_dialog.h"
28 #include "wx/job_view_dialog.h"
29 #include "wx/kdm_output_panel.h"
30 #include "wx/kdm_timing_panel.h"
31 #include "wx/nag_dialog.h"
32 #include "wx/new_dkdm_folder_dialog.h"
33 #include "wx/report_problem_dialog.h"
34 #include "wx/screens_panel.h"
35 #include "wx/static_text.h"
36 #include "wx/wx_signal_manager.h"
37 #include "wx/wx_util.h"
38 #include "lib/cinema.h"
39 #include "lib/collator.h"
40 #include "lib/compose.hpp"
41 #include "lib/constants.h"
42 #include "lib/config.h"
43 #include "lib/cross.h"
44 #include "lib/dcpomatic_log.h"
45 #include "lib/dkdm_wrapper.h"
46 #include "lib/exceptions.h"
47 #include "lib/file_log.h"
48 #include "lib/job_manager.h"
49 #include "lib/kdm_util.h"
50 #include "lib/kdm_with_metadata.h"
51 #include "lib/screen.h"
52 #include "lib/send_kdm_email_job.h"
53 #include <dcp/encrypted_kdm.h>
54 #include <dcp/decrypted_kdm.h>
55 #include <dcp/exceptions.h>
56 #include <dcp/warnings.h>
57 LIBDCP_DISABLE_WARNINGS
58 #include <wx/dnd.h>
59 #include <wx/filepicker.h>
60 #include <wx/preferences.h>
61 #include <wx/splash.h>
62 #include <wx/srchctrl.h>
63 #include <wx/treectrl.h>
64 #include <wx/wx.h>
65 LIBDCP_ENABLE_WARNINGS
66 #ifdef __WXOSX__
67 #include <ApplicationServices/ApplicationServices.h>
68 #endif
69 #include <boost/bind/bind.hpp>
70 #include <unordered_set>
71
72 #ifdef check
73 #undef check
74 #endif
75
76
77 using std::exception;
78 using std::list;
79 using std::make_shared;
80 using std::map;
81 using std::pair;
82 using std::shared_ptr;
83 using std::string;
84 using std::unordered_set;
85 using std::vector;
86 using boost::bind;
87 using boost::optional;
88 using boost::ref;
89 using std::dynamic_pointer_cast;
90 #if BOOST_VERSION >= 106100
91 using namespace boost::placeholders;
92 #endif
93 using namespace dcpomatic;
94
95
96 enum {
97         ID_help_report_a_problem = 1,
98 };
99
100
101 class DOMFrame : public wxFrame
102 {
103 public:
104         explicit DOMFrame (wxString const & title)
105                 : wxFrame (nullptr, -1, title)
106                 , _config_dialog (nullptr)
107                 , _job_view (nullptr)
108         {
109 #if defined(DCPOMATIC_WINDOWS)
110                 if (Config::instance()->win32_console ()) {
111                         AllocConsole();
112
113                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
114                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
115                         FILE* hf_out = _fdopen(hCrt, "w");
116                         setvbuf(hf_out, NULL, _IONBF, 1);
117                         *stdout = *hf_out;
118
119                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
120                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
121                         FILE* hf_in = _fdopen(hCrt, "r");
122                         setvbuf(hf_in, NULL, _IONBF, 128);
123                         *stdin = *hf_in;
124
125                         std::cout << "DCP-o-matic KDM creator is starting." << "\n";
126                 }
127 #endif
128
129                 auto bar = new wxMenuBar;
130                 setup_menu (bar);
131                 SetMenuBar (bar);
132
133                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),             wxID_EXIT);
134                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),      wxID_PREFERENCES);
135                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),            wxID_ABOUT);
136                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
137
138                 /* Use a panel as the only child of the Frame so that we avoid
139                    the dark-grey background on Windows.
140                 */
141                 auto overall_panel = new wxPanel (this, wxID_ANY);
142                 auto main_sizer = new wxBoxSizer (wxHORIZONTAL);
143
144                 auto horizontal = new wxBoxSizer (wxHORIZONTAL);
145                 auto left = new wxBoxSizer (wxVERTICAL);
146                 auto right = new wxBoxSizer (wxVERTICAL);
147
148                 horizontal->Add (left, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP * 2);
149                 horizontal->Add (right, 1, wxEXPAND);
150
151                 wxFont subheading_font (*wxNORMAL_FONT);
152                 subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
153
154                 auto h = new StaticText (overall_panel, _("Screens"));
155                 h->SetFont (subheading_font);
156                 left->Add (h, 0, wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
157                 _screens = new ScreensPanel (overall_panel);
158                 left->Add (_screens, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
159
160                 /// TRANSLATORS: translate the word "Timing" here; do not include the "KDM|" prefix
161                 h = new StaticText (overall_panel, S_("KDM|Timing"));
162                 h->SetFont (subheading_font);
163                 right->Add (h);
164                 _timing = new KDMTimingPanel (overall_panel);
165                 right->Add (_timing, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
166
167                 h = new StaticText (overall_panel, _("DKDM"));
168                 h->SetFont (subheading_font);
169                 right->Add(h, 0, wxTOP, DCPOMATIC_SUBHEADING_TOP_PAD);
170
171                 _dkdm_search = new wxSearchCtrl(overall_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(200, search_ctrl_height()));
172 #ifndef __WXGTK3__
173                 /* The cancel button seems to be strangely broken in GTK3; clicking on it twice sometimes works */
174                 _dkdm_search->ShowCancelButton (true);
175 #endif
176
177                 right->Add(_dkdm_search, 0, wxTOP | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
178
179                 class DKDMDropTarget : public wxFileDropTarget
180                 {
181                 public:
182                         DKDMDropTarget(DOMFrame* frame)
183                                 : _frame(frame)
184                         {}
185
186                         bool OnDropFiles(wxCoord, wxCoord, wxArrayString const& filenames) override
187                         {
188                                 for (size_t i = 0; i < filenames.GetCount(); ++i) {
189                                         _frame->add_dkdm(boost::filesystem::path(wx_to_std(filenames[0])));
190                                 }
191
192                                 return true;
193                         }
194
195                 private:
196                         DOMFrame* _frame;
197                 };
198
199                 auto dkdm_sizer = new wxBoxSizer (wxHORIZONTAL);
200                 _dkdm = new wxTreeCtrl (
201                         overall_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT
202                 );
203                 _dkdm->SetDropTarget(new DKDMDropTarget(this));
204                 dkdm_sizer->Add(_dkdm, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
205                 auto dkdm_buttons = new wxBoxSizer(wxVERTICAL);
206                 _add_dkdm = new Button (overall_panel, _("Add..."));
207                 dkdm_buttons->Add (_add_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
208                 _add_dkdm_folder = new Button (overall_panel, _("Add folder..."));
209                 dkdm_buttons->Add (_add_dkdm_folder, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
210                 _remove_dkdm = new Button (overall_panel, _("Remove"));
211                 dkdm_buttons->Add (_remove_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
212                 _export_dkdm = new Button (overall_panel, _("Export..."));
213                 dkdm_buttons->Add (_export_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
214                 dkdm_sizer->Add (dkdm_buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
215                 right->Add (dkdm_sizer, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
216
217                 update_dkdm_view();
218
219                 h = new StaticText (overall_panel, _("Output"));
220                 h->SetFont (subheading_font);
221                 right->Add(h, 0, wxTOP, DCPOMATIC_SUBHEADING_TOP_PAD);
222                 _output = new KDMOutputPanel (overall_panel);
223                 right->Add (_output, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
224
225                 _create = new Button (overall_panel, _("Create KDMs"));
226                 right->Add (_create, 0, wxALL, DCPOMATIC_SIZER_GAP);
227
228                 main_sizer->Add (horizontal, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
229                 overall_panel->SetSizer (main_sizer);
230
231                 /* Instantly save any config changes when using a DCP-o-matic GUI */
232                 Config::instance()->Changed.connect (boost::bind (&Config::write, Config::instance ()));
233
234                 _screens->ScreensChanged.connect (boost::bind (&DOMFrame::setup_sensitivity, this));
235                 _create->Bind (wxEVT_BUTTON, bind (&DOMFrame::create_kdms, this));
236                 _dkdm->Bind(wxEVT_TREE_SEL_CHANGED, boost::bind(&DOMFrame::dkdm_selection_changed, this));
237                 _dkdm->Bind (wxEVT_TREE_BEGIN_DRAG, boost::bind (&DOMFrame::dkdm_begin_drag, this, _1));
238                 _dkdm->Bind (wxEVT_TREE_END_DRAG, boost::bind (&DOMFrame::dkdm_end_drag, this, _1));
239                 _dkdm->Bind(wxEVT_TREE_ITEM_EXPANDED, boost::bind(&DOMFrame::dkdm_expanded, this, _1));
240                 _dkdm->Bind(wxEVT_TREE_ITEM_COLLAPSED, boost::bind(&DOMFrame::dkdm_collapsed, this, _1));
241                 _add_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::add_dkdm_clicked, this));
242                 _add_dkdm_folder->Bind (wxEVT_BUTTON, bind (&DOMFrame::add_dkdm_folder_clicked, this));
243                 _remove_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::remove_dkdm_clicked, this));
244                 _export_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::export_dkdm_clicked, this));
245                 _dkdm_search->Bind(wxEVT_TEXT, boost::bind(&DOMFrame::dkdm_search_changed, this));
246
247                 setup_sensitivity ();
248
249                 dcpomatic_log = make_shared<FileLog>(State::write_path("kdm.log"));
250         }
251
252 private:
253         void file_exit ()
254         {
255                 /* false here allows the close handler to veto the close request */
256                 Close (false);
257         }
258
259         void edit_preferences ()
260         {
261                 if (!_config_dialog) {
262                         _config_dialog = create_full_config_dialog ();
263                 }
264                 _config_dialog->Show (this);
265         }
266
267         void help_about ()
268         {
269                 AboutDialog dialog(this);
270                 dialog.ShowModal();
271         }
272
273         void help_report_a_problem ()
274         {
275                 ReportProblemDialog dialog(this, shared_ptr<Film>());
276                 if (dialog.ShowModal() == wxID_OK) {
277                         dialog.report();
278                 }
279         }
280
281         void setup_menu (wxMenuBar* m)
282         {
283                 auto file = new wxMenu;
284
285 #ifdef __WXOSX__
286                 file->Append (wxID_EXIT, _("&Exit"));
287 #else
288                 file->Append (wxID_EXIT, _("&Quit"));
289 #endif
290
291 #ifdef __WXOSX__
292                 file->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
293 #else
294                 wxMenu* edit = new wxMenu;
295                 edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
296 #endif
297
298                 wxMenu* help = new wxMenu;
299 #ifdef __WXOSX__
300                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
301 #else
302                 help->Append (wxID_ABOUT, _("About"));
303 #endif
304                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
305
306                 m->Append (file, _("&File"));
307 #ifndef __WXOSX__
308                 m->Append (edit, _("&Edit"));
309 #endif
310                 m->Append (help, _("&Help"));
311         }
312
313         bool confirm_overwrite (boost::filesystem::path path)
314         {
315                 if (boost::filesystem::is_directory(path)) {
316                         return confirm_dialog (
317                                 this,
318                                 wxString::Format(_("Folder %s already exists.  Do you want to overwrite it?"), std_to_wx(path.string()).data())
319                                 );
320                 } else {
321                         return confirm_dialog (
322                                 this,
323                                 wxString::Format(_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(path.string()).data())
324                                 );
325                 }
326         }
327
328         /** @id if not nullptr this is filled in with the wxTreeItemId of the selection */
329         shared_ptr<DKDMBase> selected_dkdm (wxTreeItemId* id = nullptr) const
330         {
331                 wxArrayTreeItemIds selections;
332                 _dkdm->GetSelections (selections);
333                 if (selections.GetCount() != 1) {
334                         if (id) {
335                                 *id = 0;
336                         }
337                         return {};
338                 }
339
340                 if (id) {
341                         *id = selections[0];
342                 }
343
344                 auto i = _dkdm_id.find (selections[0]);
345                 if (i == _dkdm_id.end()) {
346                         return {};
347                 }
348
349                 return i->second;
350         }
351
352         void create_kdms ()
353         {
354                 try {
355                         auto dkdm_base = selected_dkdm ();
356                         if (!dkdm_base) {
357                                 return;
358                         }
359
360                         list<KDMWithMetadataPtr> kdms;
361                         string title;
362
363                         auto dkdm = std::dynamic_pointer_cast<DKDM>(dkdm_base);
364                         if (!dkdm) {
365                                 return;
366                         }
367
368                         /* Decrypt the DKDM */
369                         dcp::DecryptedKDM decrypted (dkdm->dkdm(), Config::instance()->decryption_chain()->key().get());
370                         title = decrypted.content_title_text ();
371
372                         /* This is the signer for our new KDMs */
373                         auto signer = Config::instance()->signer_chain ();
374                         if (!signer->valid ()) {
375                                 throw InvalidSignerError ();
376                         }
377
378                         vector<KDMCertificatePeriod> period_checks;
379
380                         for (auto i: _screens->screens()) {
381
382                                 if (!i->recipient) {
383                                         continue;
384                                 }
385
386                                 dcp::LocalTime begin(_timing->from(), dcp::UTCOffset(i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute()));
387                                 dcp::LocalTime end(_timing->until(), dcp::UTCOffset(i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute()));
388
389                                 period_checks.push_back(check_kdm_and_certificate_validity_periods(*i->recipient, begin, end));
390
391                                 /* Make an empty KDM */
392                                 dcp::DecryptedKDM kdm (
393                                         begin,
394                                         end,
395                                         decrypted.annotation_text().get_value_or (""),
396                                         title,
397                                         dcp::LocalTime().as_string()
398                                         );
399
400                                 /* Add keys from the DKDM */
401                                 for (auto const& j: decrypted.keys()) {
402                                         kdm.add_key (j);
403                                 }
404
405                                 auto const encrypted = kdm.encrypt(
406                                                 signer, i->recipient.get(), i->trusted_device_thumbprints(), _output->formulation(),
407                                                 !_output->forensic_mark_video(), _output->forensic_mark_audio() ? boost::optional<int>() : 0
408                                                 );
409
410                                 dcp::NameFormat::Map name_values;
411                                 name_values['c'] = i->cinema->name;
412                                 name_values['s'] = i->name;
413                                 name_values['f'] = title;
414                                 name_values['b'] = begin.date() + " " + begin.time_of_day(true, false);
415                                 name_values['e'] = end.date() + " " + end.time_of_day(true, false);
416                                 name_values['i'] = encrypted.cpl_id ();
417
418                                 /* Encrypt */
419                                 kdms.push_back (make_shared<KDMWithMetadata>(name_values, i->cinema.get(), i->cinema->emails, encrypted));
420                         }
421
422                         if (kdms.empty()) {
423                                 return;
424                         }
425
426                         if (find(period_checks.begin(), period_checks.end(), KDMCertificatePeriod::KDM_OUTSIDE_CERTIFICATE) != period_checks.end()) {
427                                 error_dialog(
428                                         this,
429                                         _("Some KDMs would have validity periods which are completely outside the recipient certificate periods.  Such KDMs are very unlikely to work, so will not be created.")
430                                         );
431                                 return;
432                         }
433
434                         if (find(period_checks.begin(), period_checks.end(), KDMCertificatePeriod::KDM_OVERLAPS_CERTIFICATE) != period_checks.end()) {
435                                 message_dialog(
436                                         this,
437                                         _("For some of these KDMs the recipient certificate's validity period will not cover the whole of the KDM validity period.  This might cause problems with the KDMs.")
438                                         );
439                         }
440
441                         auto result = _output->make (
442                                 kdms, title, bind (&DOMFrame::confirm_overwrite, this, _1)
443                                 );
444
445                         if (result.first) {
446                                 JobManager::instance()->add (result.first);
447                                 if (_job_view) {
448                                         _job_view->Destroy ();
449                                         _job_view = 0;
450                                 }
451                                 _job_view = new JobViewDialog (this, _("Send KDM emails"), result.first);
452                                 _job_view->ShowModal ();
453                         }
454
455                         if (result.second > 0) {
456                                 /* XXX: proper plural form support in wxWidgets? */
457                                 wxString s = result.second == 1 ? _("%d KDM written to %s") : _("%d KDMs written to %s");
458                                 message_dialog (
459                                         this,
460                                         wxString::Format (s, result.second, std_to_wx(_output->directory().string()).data())
461                                         );
462                         }
463                 } catch (dcp::BadKDMDateError& e) {
464                         if (e.starts_too_early()) {
465                                 error_dialog(this, _("The KDM start period is before (or close to) the start of the signing certificate's validity period.  Use a later start time for this KDM."));
466                         } else {
467                                 error_dialog(this, _("The KDM end period is after (or close to) the end of the signing certficates' validity period.  Either use an earlier end time for this KDM or re-create your signing certificates in the DCP-o-matic preferences window."));
468                         }
469                         return;
470                 } catch (dcp::NotEncryptedError& e) {
471                         error_dialog (this, _("CPL's content is not encrypted."));
472                 } catch (exception& e) {
473                         error_dialog (this, std_to_wx(e.what()));
474                 } catch (...) {
475                         error_dialog (this, _("An unknown exception occurred."));
476                 }
477         }
478
479         void setup_sensitivity ()
480         {
481                 _screens->setup_sensitivity ();
482                 _output->setup_sensitivity ();
483                 wxArrayTreeItemIds sel;
484                 _dkdm->GetSelections (sel);
485                 auto group = dynamic_pointer_cast<DKDMGroup>(selected_dkdm());
486                 auto dkdm = dynamic_pointer_cast<DKDM>(selected_dkdm());
487                 _create->Enable (!_screens->screens().empty() && sel.GetCount() > 0 && dkdm);
488                 _remove_dkdm->Enable (sel.GetCount() > 0 && (!group || group->name() != "root"));
489                 _export_dkdm->Enable (sel.GetCount() > 0 && dkdm);
490         }
491
492         void dkdm_selection_changed()
493         {
494                 _selected_dkdm = selected_dkdm();
495                 setup_sensitivity();
496         }
497
498         void dkdm_expanded(wxTreeEvent& ev)
499         {
500                 if (_ignore_expand) {
501                         return;
502                 }
503
504                 auto iter = _dkdm_id.find(ev.GetItem());
505                 if (iter != _dkdm_id.end()) {
506                         _expanded_dkdm_groups.insert(iter->second);
507                 }
508         }
509
510         void dkdm_collapsed(wxTreeEvent& ev)
511         {
512                 auto iter = _dkdm_id.find(ev.GetItem());
513                 if (iter != _dkdm_id.end()) {
514                         _expanded_dkdm_groups.erase(iter->second);
515                 }
516         }
517
518         void dkdm_begin_drag (wxTreeEvent& ev)
519         {
520                 ev.Allow ();
521         }
522
523         void dkdm_end_drag (wxTreeEvent& ev)
524         {
525                 auto from = _dkdm_id.find (_dkdm->GetSelection ());
526                 auto to = _dkdm_id.find (ev.GetItem ());
527                 if (from == _dkdm_id.end() || to == _dkdm_id.end() || from->first == to->first) {
528                         return;
529                 }
530
531                 auto group = dynamic_pointer_cast<DKDMGroup> (to->second);
532                 if (!group) {
533                         group = to->second->parent();
534                 }
535
536                 DCPOMATIC_ASSERT (group);
537                 DCPOMATIC_ASSERT (from->second->parent ());
538
539                 from->second->parent()->remove (from->second);
540                 add_dkdm(from->second, group, dynamic_pointer_cast<DKDM>(to->second));
541
542                 update_dkdm_view();
543         }
544
545         void add_dkdm_clicked ()
546         {
547                 FileDialog dialog(this, _("Select DKDM file"), wxT("XML files|*.xml|All files|*.*"), wxFD_MULTIPLE, "AddDKDMPath");
548                 if (!dialog.show()) {
549                         return;
550                 }
551
552                 for (auto path: dialog.paths()) {
553                         add_dkdm(path);
554                 }
555         }
556
557         void add_dkdm(boost::filesystem::path path)
558         {
559                 auto chain = Config::instance()->decryption_chain();
560                 DCPOMATIC_ASSERT (chain->key());
561
562                 try {
563                         dcp::EncryptedKDM ekdm(dcp::file_to_string(path, MAX_KDM_SIZE));
564                         /* Decrypt the DKDM to make sure that we can */
565                         dcp::DecryptedKDM dkdm(ekdm, chain->key().get());
566
567                         auto new_dkdm = make_shared<DKDM>(ekdm);
568                         auto group = dynamic_pointer_cast<DKDMGroup> (selected_dkdm());
569                         if (!group) {
570                                 group = Config::instance()->dkdms ();
571                         }
572                         add_dkdm(new_dkdm, group);
573                 } catch (dcp::KDMFormatError& e) {
574                         error_dialog (
575                                 this,
576                                 _("Could not read file as a KDM.  Perhaps it is badly formatted, or not a KDM at all."),
577                                 std_to_wx(e.what())
578                                 );
579                         return;
580                 } catch (dcp::KDMDecryptionError &) {
581                         error_dialog (
582                                 this,
583                                 _("Could not decrypt the DKDM.  Perhaps it was not created with the correct certificate.")
584                                 );
585                 } catch (dcp::MiscError& e) {
586                         error_dialog (
587                                 this,
588                                 _("Could not read file as a KDM.  It is much too large.  Make sure you are loading a DKDM (XML) file."),
589                                 std_to_wx(e.what())
590                                 );
591                 }
592
593                 update_dkdm_view();
594         }
595
596         void add_dkdm_folder_clicked ()
597         {
598                 NewDKDMFolderDialog dialog(this);
599                 if (dialog.ShowModal() != wxID_OK) {
600                         return;
601                 }
602
603                 auto new_dkdm = make_shared<DKDMGroup>(wx_to_std(dialog.get()));
604                 auto parent = dynamic_pointer_cast<DKDMGroup>(selected_dkdm());
605                 if (!parent) {
606                         parent = Config::instance()->dkdms ();
607                 }
608                 add_dkdm(new_dkdm, parent);
609                 update_dkdm_view();
610         }
611
612         void update_dkdm_view()
613         {
614                 _dkdm->DeleteAllItems();
615                 _dkdm_id.clear();
616                 add_dkdm_to_view(Config::instance()->dkdms());
617                 if (_selected_dkdm) {
618                         auto selection_in_id_map = std::find_if(_dkdm_id.begin(), _dkdm_id.end(), [this](pair<wxTreeItemId, shared_ptr<DKDMBase>> const& entry) {
619                                 return entry.second == _selected_dkdm;
620                         });
621                         if (selection_in_id_map != _dkdm_id.end()) {
622                                 _dkdm->SelectItem(selection_in_id_map->first);
623                         }
624                 }
625         }
626
627         /** @return true if this thing or any of its children match a search string */
628         bool matches(shared_ptr<DKDMBase> base, string const& search)
629         {
630                 if (search.empty()) {
631                         return true;
632                 }
633
634                 auto name = base->name();
635                 transform(name.begin(), name.end(), name.begin(), ::tolower);
636                 if (name.find(search) != string::npos) {
637                         return true;
638                 }
639
640                 auto group = dynamic_pointer_cast<DKDMGroup>(base);
641                 if (!group) {
642                         return false;
643                 }
644
645                 auto const children = group->children();
646                 return std::any_of(children.begin(), children.end(), [this, search](shared_ptr<DKDMBase> child) {
647                         return matches(child, search);
648                 });
649         }
650
651         /** Add DKDMs to the view that match the current search */
652         void add_dkdm_to_view(shared_ptr<DKDMBase> base)
653         {
654                 auto search = wx_to_std(_dkdm_search->GetValue());
655                 transform(search.begin(), search.end(), search.begin(), ::tolower);
656
657                 optional<wxTreeItemId> group_to_expand;
658
659                 if (!base->parent()) {
660                         /* This is the root group */
661                         _dkdm_id[_dkdm->AddRoot("root")] = base;
662                 } else {
663                         /* Add base to the view */
664                         wxTreeItemId added;
665                         auto parent_id = dkdm_to_id(base->parent());
666                         added = _dkdm->AppendItem(parent_id, std_to_wx(base->name()));
667                         /* Expand the group (later) if it matches the search or it was manually expanded */
668                         if (!search.empty() || _expanded_dkdm_groups.find(base) != _expanded_dkdm_groups.end()) {
669                                 group_to_expand = added;
670                         }
671                         _dkdm_id[added] = base;
672                 }
673
674                 /* Add children */
675                 auto group = dynamic_pointer_cast<DKDMGroup>(base);
676                 if (group) {
677                         auto children = group->children();
678                         children.sort(
679                                 [this](shared_ptr<DKDMBase> a, shared_ptr<DKDMBase> b) { return _collator.compare(a->name(), b->name()) < 0; }
680                         );
681
682                         for (auto i: children) {
683                                 if (matches(i, search)) {
684                                         add_dkdm_to_view(i);
685                                 }
686                         }
687                 }
688
689                 if (group_to_expand) {
690                         _ignore_expand = true;
691                         _dkdm->Expand(*group_to_expand);
692                         _ignore_expand = false;
693                 }
694         }
695
696         /** @param group Group to add dkdm to */
697         void add_dkdm(shared_ptr<DKDMBase> dkdm, shared_ptr<DKDMGroup> group, shared_ptr<DKDM> previous = shared_ptr<DKDM>())
698         {
699                 group->add (dkdm, previous);
700                 /* We're messing with a Config-owned object here, so tell it that something has changed.
701                    This isn't nice.
702                 */
703                 Config::instance()->changed ();
704         }
705
706         wxTreeItemId dkdm_to_id (shared_ptr<DKDMBase> dkdm)
707         {
708                 for (auto const& i: _dkdm_id) {
709                         if (i.second == dkdm) {
710                                 return i.first;
711                         }
712                 }
713                 DCPOMATIC_ASSERT (false);
714         }
715
716         void remove_dkdm_clicked ()
717         {
718                 auto removed = selected_dkdm ();
719                 if (!removed) {
720                         return;
721                 }
722
723                 if (NagDialog::maybe_nag (
724                             this, Config::NAG_DELETE_DKDM,
725                             _("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.  "
726                               "Are you sure?"),
727                             true)) {
728                         return;
729                 }
730
731                 _dkdm->Delete (dkdm_to_id (removed));
732                 auto dkdms = Config::instance()->dkdms ();
733                 dkdms->remove (removed);
734                 Config::instance()->changed ();
735         }
736
737         void export_dkdm_clicked ()
738         {
739                 auto removed = selected_dkdm ();
740                 if (!removed) {
741                         return;
742                 }
743
744                 auto dkdm = dynamic_pointer_cast<DKDM>(removed);
745                 if (!dkdm) {
746                         return;
747                 }
748
749                 wxFileDialog dialog(
750                         this, _("Select DKDM File"), wxEmptyString, wxEmptyString, wxT("XML files (*.xml)|*.xml"),
751                         wxFD_SAVE | wxFD_OVERWRITE_PROMPT
752                         );
753
754                 if (dialog.ShowModal() == wxID_OK) {
755                         dkdm->dkdm().as_xml(wx_to_std(dialog.GetPath()));
756                 }
757         }
758
759         void dkdm_search_changed()
760         {
761                 update_dkdm_view();
762         }
763
764         wxPreferencesEditor* _config_dialog;
765         ScreensPanel* _screens;
766         KDMTimingPanel* _timing;
767         wxTreeCtrl* _dkdm;
768         wxSearchCtrl* _dkdm_search;
769         typedef std::map<wxTreeItemId, std::shared_ptr<DKDMBase>> DKDMMap;
770         DKDMMap _dkdm_id;
771         /* Keep a separate track of the selected DKDM so that when a search happens, and some things
772          * get removed from the view, we can restore the selection when they are re-added.
773          */
774         shared_ptr<DKDMBase> _selected_dkdm;
775         /* Keep expanded groups for the same reason */
776         unordered_set<shared_ptr<DKDMBase>> _expanded_dkdm_groups;
777         /* true if we are "artificially" expanding a group because it contains something found
778          * in a search.
779          */
780         bool _ignore_expand = false;
781         wxButton* _add_dkdm;
782         wxButton* _add_dkdm_folder;
783         wxButton* _remove_dkdm;
784         wxButton* _export_dkdm;
785         wxButton* _create;
786         KDMOutputPanel* _output;
787         JobViewDialog* _job_view;
788         Collator _collator;
789 };
790
791
792 /** @class App
793  *  @brief The magic App class for wxWidgets.
794  */
795 class App : public wxApp
796 {
797 public:
798         App ()
799                 : wxApp ()
800                 , _frame (nullptr)
801         {}
802
803 private:
804
805         bool OnInit () override
806         {
807                 wx_ptr<wxSplashScreen> splash;
808
809                 try {
810                         wxInitAllImageHandlers ();
811
812                         Config::FailedToLoad.connect(boost::bind(&App::config_failed_to_load, this, _1));
813                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
814
815                         splash = maybe_show_splash ();
816
817                         SetAppName (_("DCP-o-matic KDM Creator"));
818
819                         if (!wxApp::OnInit()) {
820                                 return false;
821                         }
822
823 #ifdef DCPOMATIC_LINUX
824                         unsetenv ("UBUNTU_MENUPROXY");
825 #endif
826
827 #ifdef DCPOMATIC_OSX
828                         make_foreground_application ();
829 #endif
830
831                         dcpomatic_setup_path_encoding ();
832
833                         /* Enable i18n; this will create a Config object
834                            to look for a force-configured language.  This Config
835                            object will be wrong, however, because dcpomatic_setup
836                            hasn't yet been called and there aren't any filters etc.
837                            set up yet.
838                         */
839                         dcpomatic_setup_i18n ();
840
841                         /* Set things up, including filters etc.
842                            which will now be internationalised correctly.
843                         */
844                         dcpomatic_setup ();
845
846                         /* Force the configuration to be re-loaded correctly next
847                            time it is needed.
848                         */
849                         Config::drop ();
850
851                         _frame = new DOMFrame (_("DCP-o-matic KDM Creator"));
852                         SetTopWindow (_frame);
853                         _frame->Maximize ();
854                         if (splash) {
855                                 splash->Destroy ();
856                                 splash = nullptr;
857                         }
858                         _frame->Show ();
859
860                         signal_manager = new wxSignalManager (this);
861                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
862                 }
863                 catch (exception& e)
864                 {
865                         if (splash) {
866                                 splash->Destroy ();
867                         }
868                         error_dialog (0, _("DCP-o-matic could not start"), std_to_wx(e.what()));
869                 }
870
871                 return true;
872         }
873
874         /* An unhandled exception has occurred inside the main event loop */
875         bool OnExceptionInMainLoop () override
876         {
877                 try {
878                         throw;
879                 } catch (FileError& e) {
880                         error_dialog (
881                                 0,
882                                 wxString::Format (
883                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
884                                         std_to_wx (e.what()),
885                                         std_to_wx (e.file().string().c_str ())
886                                         )
887                                 );
888                 } catch (exception& e) {
889                         error_dialog (
890                                 nullptr,
891                                 wxString::Format (
892                                         _("An exception occurred: %s.\n\n") + " " + REPORT_PROBLEM,
893                                         std_to_wx(e.what())
894                                         )
895                                 );
896                 } catch (...) {
897                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
898                 }
899
900                 /* This will terminate the program */
901                 return false;
902         }
903
904         void OnUnhandledException () override
905         {
906                 error_dialog (nullptr, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
907         }
908
909         void idle ()
910         {
911                 signal_manager->ui_idle ();
912         }
913
914         void config_failed_to_load(Config::LoadFailure what)
915         {
916                 report_config_load_failure(_frame, what);
917         }
918
919         void config_warning (string m)
920         {
921                 message_dialog (_frame, std_to_wx(m));
922         }
923
924         DOMFrame* _frame;
925 };
926
927 IMPLEMENT_APP (App)