Allow import of OV/VF DCPs (#906).
[dcpomatic.git] / src / wx / content_menu.cc
1 /*
2     Copyright (C) 2013-2016 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 "content_menu.h"
22 #include "repeat_dialog.h"
23 #include "wx_util.h"
24 #include "timeline_video_content_view.h"
25 #include "timeline_audio_content_view.h"
26 #include "content_properties_dialog.h"
27 #include "lib/playlist.h"
28 #include "lib/film.h"
29 #include "lib/image_content.h"
30 #include "lib/content_factory.h"
31 #include "lib/examine_content_job.h"
32 #include "lib/job_manager.h"
33 #include "lib/exceptions.h"
34 #include "lib/dcp_content.h"
35 #include "lib/ffmpeg_content.h"
36 #include "lib/audio_content.h"
37 #include <wx/wx.h>
38 #include <wx/dirdlg.h>
39 #include <boost/foreach.hpp>
40 #include <iostream>
41
42 using std::cout;
43 using std::vector;
44 using std::exception;
45 using boost::shared_ptr;
46 using boost::weak_ptr;
47 using boost::dynamic_pointer_cast;
48
49 enum {
50         ID_repeat = 1,
51         ID_join,
52         ID_find_missing,
53         ID_properties,
54         ID_re_examine,
55         ID_kdm,
56         ID_ov,
57         ID_remove
58 };
59
60 ContentMenu::ContentMenu (wxWindow* p)
61         : _menu (new wxMenu)
62         , _parent (p)
63 {
64         _repeat = _menu->Append (ID_repeat, _("Repeat..."));
65         _join = _menu->Append (ID_join, _("Join"));
66         _find_missing = _menu->Append (ID_find_missing, _("Find missing..."));
67         _properties = _menu->Append (ID_properties, _("Properties..."));
68         _re_examine = _menu->Append (ID_re_examine, _("Re-examine..."));
69         _menu->AppendSeparator ();
70         _kdm = _menu->Append (ID_kdm, _("Add KDM..."));
71         _ov = _menu->Append (ID_ov, _("Add OV..."));
72         _menu->AppendSeparator ();
73         _remove = _menu->Append (ID_remove, _("Remove"));
74
75         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::repeat, this), ID_repeat);
76         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::join, this), ID_join);
77         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::find_missing, this), ID_find_missing);
78         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::properties, this), ID_properties);
79         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::re_examine, this), ID_re_examine);
80         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::kdm, this), ID_kdm);
81         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::ov, this), ID_ov);
82         _parent->Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&ContentMenu::remove, this), ID_remove);
83 }
84
85 ContentMenu::~ContentMenu ()
86 {
87         delete _menu;
88 }
89
90 void
91 ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList v, wxPoint p)
92 {
93         _film = film;
94         _content = c;
95         _views = v;
96         _repeat->Enable (!_content.empty ());
97
98         int n = 0;
99         BOOST_FOREACH (shared_ptr<Content> i, _content) {
100                 if (dynamic_pointer_cast<FFmpegContent> (i)) {
101                         ++n;
102                 }
103         }
104
105         _join->Enable (n > 1);
106
107         _find_missing->Enable (_content.size() == 1 && !_content.front()->paths_valid ());
108         _properties->Enable (_content.size() == 1);
109         _re_examine->Enable (!_content.empty ());
110
111         if (_content.size() == 1) {
112                 shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (_content.front ());
113                 _kdm->Enable (dcp && dcp->encrypted ());
114         } else {
115                 _kdm->Enable (false);
116         }
117
118         _remove->Enable (!_content.empty ());
119         _parent->PopupMenu (_menu, p);
120 }
121
122 void
123 ContentMenu::repeat ()
124 {
125         if (_content.empty ()) {
126                 return;
127         }
128
129         RepeatDialog* d = new RepeatDialog (_parent);
130         if (d->ShowModal() != wxID_OK) {
131                 d->Destroy ();
132                 return;
133         }
134
135         shared_ptr<Film> film = _film.lock ();
136         if (!film) {
137                 return;
138         }
139
140         film->repeat_content (_content, d->number ());
141         d->Destroy ();
142
143         _content.clear ();
144         _views.clear ();
145 }
146
147 void
148 ContentMenu::join ()
149 {
150         vector<shared_ptr<Content> > fc;
151         BOOST_FOREACH (shared_ptr<Content> i, _content) {
152                 shared_ptr<FFmpegContent> f = dynamic_pointer_cast<FFmpegContent> (i);
153                 if (f) {
154                         fc.push_back (f);
155                 }
156         }
157
158         DCPOMATIC_ASSERT (fc.size() > 1);
159
160         shared_ptr<Film> film = _film.lock ();
161         if (!film) {
162                 return;
163         }
164
165         try {
166                 shared_ptr<FFmpegContent> joined (new FFmpegContent (film, fc));
167                 film->remove_content (_content);
168                 film->examine_and_add_content (joined);
169         } catch (JoinError& e) {
170                 error_dialog (_parent, std_to_wx (e.what ()));
171         }
172 }
173
174 void
175 ContentMenu::remove ()
176 {
177         if (_content.empty ()) {
178                 return;
179         }
180
181         shared_ptr<Film> film = _film.lock ();
182         if (!film) {
183                 return;
184         }
185
186         /* We are removing from the timeline if _views is not empty */
187         bool handled = false;
188         if (!_views.empty ()) {
189                 /* Special case: we only remove FFmpegContent if its video view is selected;
190                    if not, and its audio view is selected, we unmap the audio.
191                 */
192                 BOOST_FOREACH (shared_ptr<Content> i, _content) {
193                         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (i);
194                         if (!fc) {
195                                 continue;
196                         }
197
198                         shared_ptr<TimelineVideoContentView> video;
199                         shared_ptr<TimelineAudioContentView> audio;
200
201                         BOOST_FOREACH (shared_ptr<TimelineContentView> j, _views) {
202                                 shared_ptr<TimelineVideoContentView> v = dynamic_pointer_cast<TimelineVideoContentView> (j);
203                                 shared_ptr<TimelineAudioContentView> a = dynamic_pointer_cast<TimelineAudioContentView> (j);
204                                 if (v && v->content() == fc) {
205                                         video = v;
206                                 } else if (a && a->content() == fc) {
207                                         audio = a;
208                                 }
209                         }
210
211                         if (!video && audio) {
212                                 AudioMapping m = fc->audio->mapping ();
213                                 m.unmap_all ();
214                                 fc->audio->set_mapping (m);
215                                 handled = true;
216                         }
217                 }
218         }
219
220         if (!handled) {
221                 film->remove_content (_content);
222         }
223
224         _content.clear ();
225         _views.clear ();
226 }
227
228 void
229 ContentMenu::find_missing ()
230 {
231         if (_content.size() != 1) {
232                 return;
233         }
234
235         shared_ptr<const Film> film = _film.lock ();
236         if (!film) {
237                 return;
238         }
239
240         shared_ptr<Content> content;
241
242         /* XXX: a bit nasty */
243         shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (_content.front ());
244         shared_ptr<DCPContent> dc = dynamic_pointer_cast<DCPContent> (_content.front ());
245
246         int r = wxID_CANCEL;
247         boost::filesystem::path path;
248
249         if ((ic && !ic->still ()) || dc) {
250                 wxDirDialog* d = new wxDirDialog (0, _("Choose a folder"), wxT (""), wxDD_DIR_MUST_EXIST);
251                 r = d->ShowModal ();
252                 path = wx_to_std (d->GetPath ());
253                 d->Destroy ();
254         } else {
255                 wxFileDialog* d = new wxFileDialog (0, _("Choose a file"), wxT (""), wxT (""), wxT ("*.*"), wxFD_MULTIPLE);
256                 r = d->ShowModal ();
257                 path = wx_to_std (d->GetPath ());
258                 d->Destroy ();
259         }
260
261         if (r == wxID_OK) {
262                 content = content_factory (film, path);
263         }
264
265         if (!content) {
266                 return;
267         }
268
269         shared_ptr<Job> j (new ExamineContentJob (film, content));
270
271         _job_connection = j->Finished.connect (
272                 bind (
273                         &ContentMenu::maybe_found_missing,
274                         this,
275                         boost::weak_ptr<Job> (j),
276                         boost::weak_ptr<Content> (_content.front ()),
277                         boost::weak_ptr<Content> (content)
278                         )
279                 );
280
281         JobManager::instance()->add (j);
282 }
283
284 void
285 ContentMenu::re_examine ()
286 {
287         shared_ptr<Film> film = _film.lock ();
288         if (!film) {
289                 return;
290         }
291
292         BOOST_FOREACH (shared_ptr<Content> i, _content) {
293                 film->examine_content (i);
294         }
295 }
296
297 void
298 ContentMenu::maybe_found_missing (weak_ptr<Job> j, weak_ptr<Content> oc, weak_ptr<Content> nc)
299 {
300         shared_ptr<Job> job = j.lock ();
301         if (!job || !job->finished_ok ()) {
302                 return;
303         }
304
305         shared_ptr<Content> old_content = oc.lock ();
306         shared_ptr<Content> new_content = nc.lock ();
307         DCPOMATIC_ASSERT (old_content);
308         DCPOMATIC_ASSERT (new_content);
309
310         if (new_content->digest() != old_content->digest()) {
311                 error_dialog (0, _("The content file(s) you specified are not the same as those that are missing.  Either try again with the correct content file or remove the missing content."));
312                 return;
313         }
314
315         old_content->set_path (new_content->path (0));
316 }
317
318 void
319 ContentMenu::kdm ()
320 {
321         DCPOMATIC_ASSERT (!_content.empty ());
322         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (_content.front ());
323         DCPOMATIC_ASSERT (dcp);
324
325         wxFileDialog* d = new wxFileDialog (_parent, _("Select KDM"));
326
327         if (d->ShowModal() == wxID_OK) {
328                 try {
329                         dcp->add_kdm (dcp::EncryptedKDM (dcp::file_to_string (wx_to_std (d->GetPath ()))));
330                 } catch (exception& e) {
331                         error_dialog (_parent, wxString::Format (_("Could not load KDM (%s)"), e.what ()));
332                         d->Destroy ();
333                         return;
334                 }
335
336                 shared_ptr<Film> film = _film.lock ();
337                 DCPOMATIC_ASSERT (film);
338                 film->examine_content (dcp);
339         }
340
341         d->Destroy ();
342 }
343
344 void
345 ContentMenu::ov ()
346 {
347         DCPOMATIC_ASSERT (!_content.empty ());
348         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (_content.front ());
349         DCPOMATIC_ASSERT (dcp);
350
351         wxDirDialog* d = new wxDirDialog (_parent, _("Select OV"));
352
353         if (d->ShowModal() == wxID_OK) {
354                 dcp->add_ov (wx_to_std (d->GetPath ()));
355                 shared_ptr<Film> film = _film.lock ();
356                 DCPOMATIC_ASSERT (film);
357                 film->examine_content (dcp);
358         }
359
360         d->Destroy ();
361 }
362
363 void
364 ContentMenu::properties ()
365 {
366         ContentPropertiesDialog* d = new ContentPropertiesDialog (_parent, _content.front ());
367         d->ShowModal ();
368         d->Destroy ();
369 }