Remove unused file_dialog_wrapper.h
[dcpomatic.git] / src / wx / content_menu.cc
1 /*
2     Copyright (C) 2013-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 "auto_crop_dialog.h"
23 #include "content_advanced_dialog.h"
24 #include "content_menu.h"
25 #include "content_properties_dialog.h"
26 #include "film_viewer.h"
27 #include "repeat_dialog.h"
28 #include "timeline_audio_content_view.h"
29 #include "timeline_video_content_view.h"
30 #include "wx_util.h"
31 #include "lib/audio_content.h"
32 #include "lib/config.h"
33 #include "lib/content_factory.h"
34 #include "lib/copy_dcp_details_to_film.h"
35 #include "lib/dcp_content.h"
36 #include "lib/examine_content_job.h"
37 #include "lib/exceptions.h"
38 #include "lib/ffmpeg_content.h"
39 #include "lib/film.h"
40 #include "lib/find_missing.h"
41 #include "lib/guess_crop.h"
42 #include "lib/image_content.h"
43 #include "lib/job_manager.h"
44 #include "lib/playlist.h"
45 #include "lib/video_content.h"
46 #include <dcp/cpl.h>
47 #include <dcp/decrypted_kdm.h>
48 #include <dcp/exceptions.h>
49 #include <dcp/search.h>
50 #include <wx/dirdlg.h>
51 #include <wx/wx.h>
52 #include <algorithm>
53 #include <iostream>
54
55
56 using std::cout;
57 using std::dynamic_pointer_cast;
58 using std::exception;
59 using std::list;
60 using std::make_shared;
61 using std::shared_ptr;
62 using std::vector;
63 using std::weak_ptr;
64 using boost::optional;
65 #if BOOST_VERSION >= 106100
66 using namespace boost::placeholders;
67 #endif
68 using namespace dcpomatic;
69
70
71 enum {
72         /* Start at 256 so we can have IDs on _cpl_menu from 1 to 255 */
73         ID_repeat = 256,
74         ID_join,
75         ID_find_missing,
76         ID_properties,
77         ID_advanced,
78         ID_re_examine,
79         ID_auto_crop,
80         ID_kdm,
81         ID_ov,
82         ID_choose_cpl,
83         ID_set_dcp_settings,
84         ID_remove
85 };
86
87
88 ContentMenu::ContentMenu (wxWindow* p, weak_ptr<FilmViewer> viewer)
89         : _menu (new wxMenu)
90         , _parent (p)
91         , _pop_up_open (false)
92         , _viewer (viewer)
93 {
94         _repeat = _menu->Append (ID_repeat, _("Repeat..."));
95         _join = _menu->Append (ID_join, _("Join"));
96         _find_missing = _menu->Append (ID_find_missing, _("Find missing..."));
97         _re_examine = _menu->Append (ID_re_examine, _("Re-examine..."));
98         _auto_crop = _menu->Append (ID_auto_crop, _("Auto-crop..."));
99         _properties = _menu->Append (ID_properties, _("Properties..."));
100         _advanced = _menu->Append (ID_advanced, _("Advanced settings..."));
101         _menu->AppendSeparator ();
102         _kdm = _menu->Append (ID_kdm, _("Add KDM..."));
103         _ov = _menu->Append (ID_ov, _("Add OV..."));
104         _cpl_menu = new wxMenu ();
105         _choose_cpl = _menu->Append (ID_choose_cpl, _("Choose CPL..."), _cpl_menu);
106         _set_dcp_settings = _menu->Append (ID_set_dcp_settings, _("Set project DCP settings from this DCP"));
107         _menu->AppendSeparator ();
108         _remove = _menu->Append (ID_remove, _("Remove"));
109
110         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::repeat, this), ID_repeat);
111         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::join, this), ID_join);
112         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::find_missing, this), ID_find_missing);
113         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::properties, this), ID_properties);
114         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::advanced, this), ID_advanced);
115         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::re_examine, this), ID_re_examine);
116         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::auto_crop, this), ID_auto_crop);
117         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::kdm, this), ID_kdm);
118         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::ov, this), ID_ov);
119         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::set_dcp_settings, this), ID_set_dcp_settings);
120         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::remove, this), ID_remove);
121         _parent->Bind (wxEVT_MENU, boost::bind (&ContentMenu::cpl_selected, this, _1), 1, ID_repeat - 1);
122 }
123
124 void
125 ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList v, wxPoint p)
126 {
127         _film = film;
128         _content = c;
129         _views = v;
130
131         int const N = _cpl_menu->GetMenuItemCount();
132         for (int i = 1; i <= N; ++i) {
133                 _cpl_menu->Delete (i);
134         }
135
136         _repeat->Enable (!_content.empty ());
137
138         int n = 0;
139         for (auto i: _content) {
140                 if (dynamic_pointer_cast<FFmpegContent> (i)) {
141                         ++n;
142                 }
143         }
144
145         _join->Enable (n > 1);
146
147         _find_missing->Enable (_content.size() == 1 && !_content.front()->paths_valid ());
148         _properties->Enable (_content.size() == 1);
149         _advanced->Enable (_content.size() == 1);
150         _re_examine->Enable (!_content.empty ());
151         _auto_crop->Enable (_content.size() == 1);
152
153         if (_content.size() == 1) {
154                 auto dcp = dynamic_pointer_cast<DCPContent> (_content.front());
155                 if (dcp) {
156                         _kdm->Enable (dcp->encrypted ());
157                         _ov->Enable (dcp->needs_assets ());
158                         _set_dcp_settings->Enable (static_cast<bool>(dcp));
159                         try {
160                                 auto cpls = dcp::find_and_resolve_cpls (dcp->directories(), true);
161                                 _choose_cpl->Enable (cpls.size() > 1);
162                                 /* We can't have 0 as a menu item ID on OS X */
163                                 int id = 1;
164                                 for (auto i: cpls) {
165                                         auto item = _cpl_menu->AppendRadioItem (
166                                                 id++,
167                                                 wxString::Format (
168                                                         "%s (%s)",
169                                                         std_to_wx(i->annotation_text().get_value_or("")).data(),
170                                                         std_to_wx(i->id()).data()
171                                                         )
172                                                 );
173                                         item->Check (dcp->cpl() && dcp->cpl() == i->id());
174                                 }
175                         } catch (dcp::ReadError &) {
176                                 /* The DCP is probably missing */
177                         } catch (dcp::KDMDecryptionError &) {
178                                 /* We have an incorrect KDM */
179                         } catch (KDMError &) {
180                                 /* We have an incorrect KDM */
181                         }
182                 } else {
183                         _kdm->Enable (false);
184                         _ov->Enable (false);
185                         _choose_cpl->Enable (false);
186                         _set_dcp_settings->Enable (false);
187                 }
188         } else {
189                 _kdm->Enable (false);
190                 _set_dcp_settings->Enable (false);
191         }
192
193         _remove->Enable (!_content.empty ());
194
195         _pop_up_open = true;
196         _parent->PopupMenu (_menu, p);
197         _pop_up_open = false;
198 }
199
200
201 void
202 ContentMenu::set_dcp_settings ()
203 {
204         auto film = _film.lock ();
205         if (!film) {
206                 return;
207         }
208
209         DCPOMATIC_ASSERT (_content.size() == 1);
210         auto dcp = dynamic_pointer_cast<DCPContent>(_content.front());
211         DCPOMATIC_ASSERT (dcp);
212         copy_dcp_details_to_film (dcp, film);
213 }
214
215
216 void
217 ContentMenu::repeat ()
218 {
219         if (_content.empty ()) {
220                 return;
221         }
222
223         auto d = new RepeatDialog (_parent);
224         if (d->ShowModal() != wxID_OK) {
225                 d->Destroy ();
226                 return;
227         }
228
229         auto film = _film.lock ();
230         if (!film) {
231                 return;
232         }
233
234         film->repeat_content (_content, d->number ());
235         d->Destroy ();
236
237         _content.clear ();
238         _views.clear ();
239 }
240
241
242 void
243 ContentMenu::join ()
244 {
245         vector<shared_ptr<Content>> fc;
246         for (auto i: _content) {
247                 auto f = dynamic_pointer_cast<FFmpegContent> (i);
248                 if (f) {
249                         fc.push_back (f);
250                 }
251         }
252
253         DCPOMATIC_ASSERT (fc.size() > 1);
254
255         auto film = _film.lock ();
256         if (!film) {
257                 return;
258         }
259
260         try {
261                 auto joined = make_shared<FFmpegContent>(fc);
262                 film->remove_content (_content);
263                 film->examine_and_add_content (joined);
264         } catch (JoinError& e) {
265                 error_dialog (_parent, std_to_wx (e.what ()));
266         }
267 }
268
269
270 void
271 ContentMenu::remove ()
272 {
273         if (_content.empty ()) {
274                 return;
275         }
276
277         auto film = _film.lock ();
278         if (!film) {
279                 return;
280         }
281
282         /* We are removing from the timeline if _views is not empty */
283         bool handled = false;
284         if (!_views.empty ()) {
285                 /* Special case: we only remove FFmpegContent if its video view is selected;
286                    if not, and its audio view is selected, we unmap the audio.
287                 */
288                 for (auto i: _content) {
289                         auto fc = dynamic_pointer_cast<FFmpegContent> (i);
290                         if (!fc) {
291                                 continue;
292                         }
293
294                         shared_ptr<TimelineVideoContentView> video;
295                         shared_ptr<TimelineAudioContentView> audio;
296
297                         for (auto j: _views) {
298                                 auto v = dynamic_pointer_cast<TimelineVideoContentView>(j);
299                                 auto a = dynamic_pointer_cast<TimelineAudioContentView>(j);
300                                 if (v && v->content() == fc) {
301                                         video = v;
302                                 } else if (a && a->content() == fc) {
303                                         audio = a;
304                                 }
305                         }
306
307                         if (!video && audio) {
308                                 auto m = fc->audio->mapping ();
309                                 m.unmap_all ();
310                                 fc->audio->set_mapping (m);
311                                 handled = true;
312                         }
313                 }
314         }
315
316         if (!handled) {
317                 film->remove_content (_content);
318         }
319
320         _content.clear ();
321         _views.clear ();
322 }
323
324
325 void
326 ContentMenu::find_missing ()
327 {
328         if (_content.size() != 1) {
329                 return;
330         }
331
332         auto film = _film.lock ();
333         if (!film) {
334                 return;
335         }
336
337         /* XXX: a bit nasty */
338         auto ic = dynamic_pointer_cast<ImageContent> (_content.front());
339         auto dc = dynamic_pointer_cast<DCPContent> (_content.front());
340
341         int r = wxID_CANCEL;
342         boost::filesystem::path path;
343
344         if ((ic && !ic->still ()) || dc) {
345                 auto d = new wxDirDialog (nullptr, _("Choose a folder"), wxT (""), wxDD_DIR_MUST_EXIST);
346                 r = d->ShowModal ();
347                 path = wx_to_std (d->GetPath());
348                 d->Destroy ();
349         } else {
350                 auto d = new wxFileDialog (nullptr, _("Choose a file"), wxT (""), wxT (""), wxT ("*.*"));
351                 r = d->ShowModal ();
352                 path = wx_to_std (d->GetPath());
353                 d->Destroy ();
354         }
355
356         if (r == wxID_CANCEL) {
357                 return;
358         }
359
360         dcpomatic::find_missing (film->content(), path);
361 }
362
363 void
364 ContentMenu::re_examine ()
365 {
366         auto film = _film.lock ();
367         if (!film) {
368                 return;
369         }
370
371         for (auto i: _content) {
372                 JobManager::instance()->add(make_shared<ExamineContentJob>(film, i));
373         }
374 }
375
376
377 void
378 ContentMenu::kdm ()
379 {
380         DCPOMATIC_ASSERT (!_content.empty ());
381         auto dcp = dynamic_pointer_cast<DCPContent> (_content.front());
382         DCPOMATIC_ASSERT (dcp);
383
384         auto d = new wxFileDialog (_parent, _("Select KDM"));
385
386         if (d->ShowModal() == wxID_OK) {
387                 optional<dcp::EncryptedKDM> kdm;
388                 try {
389                         kdm = dcp::EncryptedKDM (dcp::file_to_string(wx_to_std(d->GetPath()), MAX_KDM_SIZE));
390                 } catch (exception& e) {
391                         error_dialog (_parent, _("Could not load KDM"), std_to_wx(e.what()));
392                         d->Destroy ();
393                         return;
394                 }
395
396                 /* Try to decrypt it to get an early preview of any errors */
397                 try {
398                         decrypt_kdm_with_helpful_error (*kdm);
399                 } catch (KDMError& e) {
400                         error_dialog (_parent, std_to_wx(e.summary()), std_to_wx(e.detail()));
401                         return;
402                 } catch (exception& e) {
403                         error_dialog (_parent, e.what());
404                         return;
405                 }
406
407                 auto cpls = dcp::find_and_resolve_cpls (dcp->directories(), true);
408                 bool const kdm_matches_any_cpl = std::any_of(cpls.begin(), cpls.end(), [kdm](shared_ptr<const dcp::CPL> cpl) { return cpl->id() == kdm->cpl_id(); });
409                 bool const kdm_matches_selected_cpl = dcp->cpl() || kdm->cpl_id() == dcp->cpl().get();
410
411                 if (!kdm_matches_any_cpl) {
412                         error_dialog (_parent, _("This KDM was not made for this DCP.  You will need a different one."));
413                         return;
414                 }
415
416                 if (!kdm_matches_selected_cpl && kdm_matches_any_cpl) {
417                         message_dialog (_parent, _("This KDM was made for one of the CPLs in this DCP, but not the currently selected one.  To play the currently-selected CPL you will need a different KDM."));
418                 }
419
420                 dcp->add_kdm (*kdm);
421
422                 auto film = _film.lock ();
423                 DCPOMATIC_ASSERT (film);
424                 JobManager::instance()->add (make_shared<ExamineContentJob>(film, dcp));
425         }
426
427         d->Destroy ();
428 }
429
430 void
431 ContentMenu::ov ()
432 {
433         DCPOMATIC_ASSERT (!_content.empty ());
434         auto dcp = dynamic_pointer_cast<DCPContent> (_content.front());
435         DCPOMATIC_ASSERT (dcp);
436
437         auto d = new wxDirDialog (_parent, _("Select OV"));
438
439         if (d->ShowModal() == wxID_OK) {
440                 dcp->add_ov (wx_to_std (d->GetPath()));
441                 shared_ptr<Film> film = _film.lock ();
442                 DCPOMATIC_ASSERT (film);
443                 JobManager::instance()->add (make_shared<ExamineContentJob>(film, dcp));
444         }
445
446         d->Destroy ();
447 }
448
449 void
450 ContentMenu::properties ()
451 {
452         auto film = _film.lock ();
453         DCPOMATIC_ASSERT (film);
454         auto d = new ContentPropertiesDialog (_parent, film, _content.front());
455         d->ShowModal ();
456         d->Destroy ();
457 }
458
459
460 void
461 ContentMenu::advanced ()
462 {
463         auto d = new ContentAdvancedDialog (_parent, _content.front());
464         d->ShowModal ();
465         d->Destroy ();
466 }
467
468
469 void
470 ContentMenu::cpl_selected (wxCommandEvent& ev)
471 {
472         if (!_pop_up_open) {
473                 return;
474         }
475
476         DCPOMATIC_ASSERT (!_content.empty ());
477         auto dcp = dynamic_pointer_cast<DCPContent> (_content.front());
478         DCPOMATIC_ASSERT (dcp);
479
480         auto cpls = dcp::find_and_resolve_cpls (dcp->directories(), true);
481         DCPOMATIC_ASSERT (ev.GetId() > 0);
482         DCPOMATIC_ASSERT (ev.GetId() <= int (cpls.size()));
483
484         auto i = cpls.begin ();
485         for (int j = 0; j < ev.GetId() - 1; ++j) {
486                 ++i;
487         }
488
489         dcp->set_cpl ((*i)->id ());
490         auto film = _film.lock ();
491         DCPOMATIC_ASSERT (film);
492         JobManager::instance()->add (make_shared<ExamineContentJob>(film, dcp));
493 }
494
495
496 void
497 ContentMenu::auto_crop ()
498 {
499         DCPOMATIC_ASSERT (_content.size() == 1);
500
501         auto film = _film.lock ();
502         DCPOMATIC_ASSERT (film);
503         auto viewer = _viewer.lock ();
504         DCPOMATIC_ASSERT (viewer);
505
506         auto update_viewer = [this](Crop crop) {
507                 auto film = _film.lock();
508                 DCPOMATIC_ASSERT (film);
509                 auto viewer = _viewer.lock ();
510                 DCPOMATIC_ASSERT (viewer);
511                 auto const content = _content.front();
512                 auto const current_crop = content->video->actual_crop();
513                 viewer->set_crop_guess (
514                         dcpomatic::Rect<float>(
515                                 static_cast<float>(std::max(0, crop.left - current_crop.left)) / content->video->size().width,
516                                 static_cast<float>(std::max(0, crop.top - current_crop.top)) / content->video->size().height,
517                                 1.0f - (static_cast<float>(std::max(0, crop.left - current_crop.left + crop.right - current_crop.right)) / content->video->size().width),
518                                 1.0f - (static_cast<float>(std::max(0, crop.top - current_crop.top + crop.bottom - current_crop.bottom)) / content->video->size().height)
519                                 ));
520         };
521
522         auto guess_crop_for_content = [this, film, viewer]() {
523                 auto position = viewer->position_in_content(_content.front()).get_value_or(
524                         ContentTime::from_frames(_content.front()->video->length(), _content.front()->video_frame_rate().get_value_or(24))
525                         );
526                 return guess_crop(film, _content.front(), Config::instance()->auto_crop_threshold(), position);
527         };
528
529         /* Make an initial guess in the view and open the dialog */
530
531         auto const crop = guess_crop_for_content ();
532         update_viewer (crop);
533
534         if (_auto_crop_dialog) {
535                 _auto_crop_dialog->Destroy();
536                 _auto_crop_dialog = nullptr;
537         }
538         _auto_crop_dialog = new AutoCropDialog (_parent, crop);
539         _auto_crop_dialog->Show ();
540
541         /* Update the dialog and view when the crop threshold changes */
542         _auto_crop_config_connection = Config::instance()->Changed.connect([this, guess_crop_for_content, update_viewer](Config::Property property) {
543                 auto film = _film.lock();
544                 DCPOMATIC_ASSERT (film);
545                 if (property == Config::AUTO_CROP_THRESHOLD) {
546                         auto const crop = guess_crop_for_content();
547                         _auto_crop_dialog->set(crop);
548                         update_viewer(crop);
549                 }
550         });
551
552         /* Also update the dialog and view when we're looking at a different frame */
553         _auto_crop_viewer_connection = viewer->ImageChanged.connect([this, guess_crop_for_content, update_viewer](shared_ptr<PlayerVideo>) {
554                 auto const crop = guess_crop_for_content();
555                 _auto_crop_dialog->set(crop);
556                 update_viewer(crop);
557         });
558
559         /* Handle the user closing the dialog (with OK or cancel) */
560         _auto_crop_dialog->Bind (wxEVT_BUTTON, [this, viewer](wxCommandEvent& ev) {
561                 if (ev.GetId() == wxID_OK) {
562                         _content.front()->video->set_crop(_auto_crop_dialog->get());
563                 }
564                 _auto_crop_dialog->Show (false);
565                 viewer->unset_crop_guess ();
566                 _auto_crop_config_connection.disconnect ();
567                 _auto_crop_viewer_connection.disconnect ();
568         });
569
570         /* Update the view when something in the dialog is changed */
571         _auto_crop_dialog->Changed.connect([update_viewer](Crop crop) {
572                 update_viewer (crop);
573         });
574 }