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