e7232e6f4d8b75b0d231066c2ed3ff9cfb1d63a3
[dcpomatic.git] / src / wx / swaroop_controls.cc
1 /*
2     Copyright (C) 2018-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 "swaroop_controls.h"
22 #include "film_viewer.h"
23 #include "wx_util.h"
24 #include "content_view.h"
25 #include "dcpomatic_button.h"
26 #include "static_text.h"
27 #include "lib/player_video.h"
28 #include "lib/dcp_content.h"
29 #include "lib/cross.h"
30 #include "lib/scoped_temporary.h"
31 #include "lib/internet.h"
32 #include "lib/ffmpeg_content.h"
33 #include "lib/compose.hpp"
34 #include <dcp/raw_convert.h>
35 #include <dcp/exceptions.h>
36 #include <wx/listctrl.h>
37 #include <wx/progdlg.h>
38
39 using std::string;
40 using std::cout;
41 using std::exception;
42 using std::sort;
43 using boost::shared_ptr;
44 using boost::dynamic_pointer_cast;
45 using boost::optional;
46 using namespace dcpomatic;
47
48 SwaroopControls::SwaroopControls (wxWindow* parent, shared_ptr<FilmViewer> viewer)
49         : Controls (parent, viewer, false)
50         , _play_button (new Button(this, _("Play")))
51         , _pause_button (new Button(this, _("Pause")))
52         , _stop_button (new Button(this, _("Stop")))
53         , _next_button (new Button(this, "Next"))
54         , _previous_button (new Button(this, "Previous"))
55         , _current_disable_timeline (false)
56         , _current_disable_next (false)
57 {
58         _button_sizer->Add (_previous_button, 0, wxEXPAND);
59         _button_sizer->Add (_play_button, 0, wxEXPAND);
60         _button_sizer->Add (_pause_button, 0, wxEXPAND);
61         _button_sizer->Add (_stop_button, 0, wxEXPAND);
62         _button_sizer->Add (_next_button, 0, wxEXPAND);
63
64         _spl_view = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER);
65         _spl_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 740);
66
67         wxBoxSizer* left_sizer = new wxBoxSizer (wxVERTICAL);
68         wxBoxSizer* e_sizer = new wxBoxSizer (wxHORIZONTAL);
69
70         wxFont subheading_font (*wxNORMAL_FONT);
71         subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
72
73         wxBoxSizer* spl_header = new wxBoxSizer (wxHORIZONTAL);
74         {
75                 wxStaticText* m = new StaticText (this, "Playlists");
76                 m->SetFont (subheading_font);
77                 spl_header->Add (m, 1, wxALIGN_CENTER_VERTICAL);
78         }
79         _refresh_spl_view = new Button (this, "Refresh");
80         spl_header->Add (_refresh_spl_view, 0, wxBOTTOM, DCPOMATIC_SIZER_GAP / 2);
81
82         left_sizer->Add (spl_header, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_GAP);
83         left_sizer->Add (_spl_view, 1, wxLEFT | wxRIGHT | wxBOTTOM | wxEXPAND, DCPOMATIC_SIZER_GAP);
84
85         _content_view = new ContentView (this);
86
87         wxBoxSizer* content_header = new wxBoxSizer (wxHORIZONTAL);
88         {
89                 wxStaticText* m = new StaticText (this, "Content");
90                 m->SetFont (subheading_font);
91                 content_header->Add (m, 1, wxALIGN_CENTER_VERTICAL);
92         }
93         _refresh_content_view = new Button (this, "Refresh");
94         content_header->Add (_refresh_content_view, 0, wxBOTTOM, DCPOMATIC_SIZER_GAP / 2);
95
96         left_sizer->Add (content_header, 0, wxTOP | wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_GAP);
97         left_sizer->Add (_content_view, 1, wxLEFT | wxRIGHT | wxBOTTOM | wxEXPAND, DCPOMATIC_SIZER_GAP);
98
99         _current_spl_view = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_NO_HEADER);
100         _current_spl_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 500);
101         _current_spl_view->AppendColumn (wxT(""), wxLIST_FORMAT_LEFT, 80);
102         e_sizer->Add (left_sizer, 1, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
103         e_sizer->Add (_current_spl_view, 1, wxALL | wxEXPAND, DCPOMATIC_SIZER_GAP);
104
105         _v_sizer->Add (e_sizer, 1, wxEXPAND);
106
107         _play_button->Bind     (wxEVT_BUTTON, boost::bind(&SwaroopControls::play_clicked,  this));
108         _pause_button->Bind    (wxEVT_BUTTON, boost::bind(&SwaroopControls::pause_clicked, this));
109         _stop_button->Bind     (wxEVT_BUTTON, boost::bind(&SwaroopControls::stop_clicked,  this));
110         _next_button->Bind     (wxEVT_BUTTON, boost::bind(&SwaroopControls::next_clicked,  this));
111         _previous_button->Bind (wxEVT_BUTTON, boost::bind(&SwaroopControls::previous_clicked,  this));
112         _spl_view->Bind        (wxEVT_LIST_ITEM_SELECTED,   boost::bind(&SwaroopControls::spl_selection_changed, this));
113         _spl_view->Bind        (wxEVT_LIST_ITEM_DESELECTED, boost::bind(&SwaroopControls::spl_selection_changed, this));
114         _viewer->Finished.connect (boost::bind(&SwaroopControls::viewer_finished, this));
115         _viewer->PositionChanged.connect (boost::bind(&SwaroopControls::viewer_position_changed, this));
116         _refresh_spl_view->Bind (wxEVT_BUTTON, boost::bind(&SwaroopControls::update_playlist_directory, this));
117         _refresh_content_view->Bind (wxEVT_BUTTON, boost::bind(&ContentView::update, _content_view));
118
119         _content_view->update ();
120         update_playlist_directory ();
121
122         _viewer->set_background_image (true);
123 }
124
125 void
126 SwaroopControls::check_restart ()
127 {
128         cout << "check_restart called\n";
129         FILE* f = fopen_boost (Config::path("position"), "r");
130         if (!f) {
131                 cout << "could not open position file (" << errno << ")\n";
132                 return;
133         }
134
135         char id[64];
136         int index;
137         int64_t time;
138         fscanf (f, "%63s %d %ld", id, &index, &time);
139
140         cout << "Looking for playlist " << id << " to restart.\n";
141
142         for (size_t i = 0; i < _playlists.size(); ++i) {
143                 if (_playlists[i].id() == id) {
144                         cout << "Found playlist " << id << "\n";
145                         select_playlist (i, index);
146                         update_current_content ();
147                         _viewer->seek (DCPTime(time), false);
148                         _viewer->start ();
149                 }
150         }
151
152         fclose (f);
153 }
154
155 void
156 SwaroopControls::viewer_position_changed ()
157 {
158         /* Write position every two minutes if we're playing */
159         if (!_selected_playlist || !_viewer->playing() || _viewer->position().get() % (2 * 60 * DCPTime::HZ)) {
160                 return;
161         }
162
163         FILE* f = fopen_boost (Config::path("position"), "w");
164         if (f) {
165                 string const p = _playlists[*_selected_playlist].id()
166                         + " " + dcp::raw_convert<string>(_selected_playlist_position)
167                         + " " + dcp::raw_convert<string>(_viewer->position().get());
168
169                 checked_fwrite (p.c_str(), p.length(), f, Config::path("position"));
170 #ifdef DCPOMATIC_LINUX
171                 fflush (f);
172                 fsync (fileno(f));
173 #endif
174                 fclose (f);
175         }
176 }
177
178 void
179 SwaroopControls::started ()
180 {
181         Controls::started ();
182         _play_button->Enable (false);
183         _pause_button->Enable (true);
184         _viewer->set_background_image (false);
185 }
186
187 /** Called when the viewer finishes a single piece of content, or it is explicitly stopped */
188 void
189 SwaroopControls::stopped ()
190 {
191         Controls::stopped ();
192         _play_button->Enable (true);
193         _pause_button->Enable (false);
194 }
195
196 void
197 SwaroopControls::deselect_playlist ()
198 {
199         long int const selected = _spl_view->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
200         if (selected != -1) {
201                 _selected_playlist = boost::none;
202                 _spl_view->SetItemState (selected, 0, wxLIST_STATE_SELECTED);
203         }
204 }
205
206 void
207 SwaroopControls::decrement_allowed_shows ()
208 {
209         if (_selected_playlist) {
210                 SPL& spl = _playlists[*_selected_playlist];
211                 spl.decrement_allowed_shows();
212                 if (spl.path()) {
213                         spl.write (*spl.path());
214                 }
215         }
216 }
217
218 void
219 SwaroopControls::play_clicked ()
220 {
221         _viewer->start ();
222 }
223
224 void
225 SwaroopControls::setup_sensitivity ()
226 {
227         Controls::setup_sensitivity ();
228         bool const active_job = _active_job && *_active_job != "examine_content";
229         bool const c = _film && !_film->content().empty() && !active_job;
230         _play_button->Enable (c && !_viewer->playing());
231         _pause_button->Enable (_viewer->playing());
232         _slider->Enable (!_current_disable_timeline);
233         _spl_view->Enable (!_viewer->playing());
234         _next_button->Enable (!_current_disable_next && can_do_next());
235         _previous_button->Enable (can_do_previous());
236 }
237
238 void
239 SwaroopControls::pause_clicked ()
240 {
241         _viewer->stop ();
242 }
243
244 void
245 SwaroopControls::stop_clicked ()
246 {
247         _viewer->stop ();
248         _viewer->seek (DCPTime(), true);
249         if (_selected_playlist) {
250                 _selected_playlist_position = 0;
251                 update_current_content ();
252         }
253         _viewer->set_background_image (true);
254         decrement_allowed_shows ();
255         deselect_playlist ();
256 }
257
258 bool
259 SwaroopControls::can_do_previous ()
260 {
261         return _selected_playlist && (_selected_playlist_position - 1) >= 0;
262 }
263
264 void
265 SwaroopControls::previous_clicked ()
266 {
267         if (!can_do_previous ()) {
268                 return;
269         }
270
271         _selected_playlist_position--;
272         update_current_content ();
273 }
274
275 bool
276 SwaroopControls::can_do_next ()
277 {
278         return _selected_playlist && (_selected_playlist_position + 1) < int(_playlists[*_selected_playlist].get().size());
279 }
280
281 void
282 SwaroopControls::next_clicked ()
283 {
284         if (!can_do_next ()) {
285                 return;
286         }
287
288         _selected_playlist_position++;
289         update_current_content ();
290 }
291
292 void
293 SwaroopControls::log (wxString s)
294 {
295         optional<boost::filesystem::path> log = Config::instance()->player_activity_log_file();
296         if (!log) {
297                 return;
298         }
299
300         struct timeval time;
301         gettimeofday (&time, 0);
302         char buffer[64];
303         time_t const sec = time.tv_sec;
304         struct tm* t = localtime (&sec);
305         strftime (buffer, 64, "%c", t);
306         wxString ts = std_to_wx(string(buffer)) + N_(": ");
307         FILE* f = fopen_boost (*log, "a");
308         if (!f) {
309                 return;
310         }
311         fprintf (f, "%s%s\n", wx_to_std(ts).c_str(), wx_to_std(s).c_str());
312         fclose (f);
313 }
314
315 void
316 SwaroopControls::add_playlist_to_list (SPL spl)
317 {
318         int const N = _spl_view->GetItemCount();
319
320         wxListItem it;
321         it.SetId(N);
322         it.SetColumn(0);
323         string t = spl.name();
324         if (spl.missing()) {
325                 t += " (content missing)";
326         }
327         it.SetText (std_to_wx(t));
328         _spl_view->InsertItem (it);
329 }
330
331 struct SPLComparator
332 {
333         bool operator() (SPL const & a, SPL const & b) {
334                 return a.name() < b.name();
335         }
336 };
337
338 void
339 SwaroopControls::update_playlist_directory ()
340 {
341         using namespace boost::filesystem;
342
343         _spl_view->DeleteAllItems ();
344         optional<path> dir = Config::instance()->player_playlist_directory();
345         if (!dir) {
346                 return;
347         }
348
349         _playlists.clear ();
350
351         for (directory_iterator i = directory_iterator(*dir); i != directory_iterator(); ++i) {
352                 try {
353                         if (is_regular_file(i->path()) && i->path().extension() == ".xml") {
354                                 SPL spl;
355                                 spl.read (i->path(), _content_view);
356                                 _playlists.push_back (spl);
357                         }
358                 } catch (exception& e) {
359                         /* Never mind */
360                 }
361         }
362
363         sort (_playlists.begin(), _playlists.end(), SPLComparator());
364         BOOST_FOREACH (SPL i, _playlists) {
365                 add_playlist_to_list (i);
366         }
367
368         _selected_playlist = boost::none;
369 }
370
371 optional<dcp::EncryptedKDM>
372 SwaroopControls::get_kdm_from_url (shared_ptr<DCPContent> dcp)
373 {
374         ScopedTemporary temp;
375         string url = Config::instance()->kdm_server_url();
376         boost::algorithm::replace_all (url, "{CPL}", *dcp->cpl());
377         optional<dcp::EncryptedKDM> kdm;
378         if (dcp->cpl() && !get_from_url(url, false, false, temp)) {
379                 try {
380                         kdm = dcp::EncryptedKDM (dcp::file_to_string(temp.file()));
381                         if (kdm->cpl_id() != dcp->cpl()) {
382                                 kdm = boost::none;
383                         }
384                 } catch (std::exception& e) {
385                         /* Hey well */
386                 }
387         }
388         return kdm;
389 }
390
391 optional<dcp::EncryptedKDM>
392 SwaroopControls::get_kdm_from_directory (shared_ptr<DCPContent> dcp)
393 {
394         using namespace boost::filesystem;
395         optional<path> kdm_dir = Config::instance()->player_kdm_directory();
396         if (!kdm_dir) {
397                 return optional<dcp::EncryptedKDM>();
398         }
399         for (directory_iterator i = directory_iterator(*kdm_dir); i != directory_iterator(); ++i) {
400                 try {
401                         if (file_size(i->path()) < MAX_KDM_SIZE) {
402                                 dcp::EncryptedKDM kdm (dcp::file_to_string(i->path()));
403                                 if (kdm.cpl_id() == dcp->cpl()) {
404                                         return kdm;
405                                 }
406                         }
407                 } catch (std::exception& e) {
408                         /* Hey well */
409                 }
410         }
411         return optional<dcp::EncryptedKDM>();
412 }
413
414 optional<EncryptedECinemaKDM>
415 SwaroopControls::get_kdm_from_directory (shared_ptr<FFmpegContent> ffmpeg)
416 {
417         using namespace boost::filesystem;
418         optional<path> kdm_dir = Config::instance()->player_kdm_directory();
419         if (!kdm_dir) {
420                 return optional<EncryptedECinemaKDM>();
421         }
422         for (directory_iterator i = directory_iterator(*kdm_dir); i != directory_iterator(); ++i) {
423                 try {
424                         if (file_size(i->path()) < MAX_KDM_SIZE) {
425                                 EncryptedECinemaKDM kdm (dcp::file_to_string(i->path()));
426                                 if (kdm.id() == ffmpeg->id().get_value_or("")) {
427                                         return kdm;
428                                 }
429                         }
430                 } catch (std::exception& e) {
431                         /* Hey well */
432                 }
433         }
434         return optional<EncryptedECinemaKDM>();
435 }
436 void
437 SwaroopControls::spl_selection_changed ()
438 {
439         long int selected = _spl_view->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
440         if (selected == -1) {
441                 _current_spl_view->DeleteAllItems ();
442                 _selected_playlist = boost::none;
443                 return;
444         }
445
446         if (_playlists[selected].missing()) {
447                 error_dialog (this, "This playlist cannot be loaded as some content is missing.");
448                 deselect_playlist ();
449                 return;
450         }
451
452         if (_playlists[selected].get().empty()) {
453                 error_dialog (this, "This playlist is empty.");
454                 return;
455         }
456
457         if (!_playlists[selected].have_allowed_shows()) {
458                 error_dialog (this, "There are no more allowed shows of this playlist.");
459                 return;
460         }
461
462         select_playlist (selected, 0);
463 }
464
465 void
466 SwaroopControls::select_playlist (int selected, int position)
467 {
468         log (wxString::Format("load-playlist %s", std_to_wx(_playlists[selected].name()).data()));
469
470         wxProgressDialog dialog (_("DCP-o-matic"), "Loading playlist and KDMs");
471
472         BOOST_FOREACH (SPLEntry const & i, _playlists[selected].get()) {
473                 dialog.Pulse ();
474                 shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (i.content);
475                 if (dcp && dcp->needs_kdm()) {
476                         optional<dcp::EncryptedKDM> kdm;
477                         kdm = get_kdm_from_url (dcp);
478                         if (!kdm) {
479                                 kdm = get_kdm_from_directory (dcp);
480                         }
481                         if (kdm) {
482                                 try {
483                                         dcp->add_kdm (*kdm);
484                                         dcp->examine (_film, shared_ptr<Job>());
485                                 } catch (KDMError& e) {
486                                         error_dialog (this, "Could not load KDM.");
487                                 }
488                         }
489                         if (dcp->needs_kdm()) {
490                                 /* We didn't get a KDM for this */
491                                 error_dialog (this, "This playlist cannot be loaded as a KDM is missing.");
492                                 deselect_playlist ();
493                                 return;
494                         }
495                 }
496                 shared_ptr<FFmpegContent> ffmpeg = dynamic_pointer_cast<FFmpegContent> (i.content);
497                 if (ffmpeg && ffmpeg->encrypted()) {
498                         optional<EncryptedECinemaKDM> kdm = get_kdm_from_directory (ffmpeg);
499                         if (kdm) {
500                                 try {
501                                         ffmpeg->add_kdm (*kdm);
502                                         ffmpeg->examine (_film, shared_ptr<Job>());
503                                 } catch (KDMError& e) {
504                                         error_dialog (this, "Could not load KDM.");
505                                 }
506                         } else {
507                                 error_dialog (this, "This playlist cannot be loaded as a KDM is missing.");
508                                 deselect_playlist ();
509                                 return;
510                         }
511                 }
512         }
513
514         _current_spl_view->DeleteAllItems ();
515
516         int N = 0;
517         BOOST_FOREACH (SPLEntry i, _playlists[selected].get()) {
518                 wxListItem it;
519                 it.SetId (N);
520                 it.SetColumn (0);
521                 it.SetText (std_to_wx(i.name));
522                 _current_spl_view->InsertItem (it);
523                 ++N;
524         }
525
526         _selected_playlist = selected;
527         _selected_playlist_position = position;
528         dialog.Pulse ();
529         reset_film ();
530         dialog.Pulse ();
531         update_current_content ();
532 }
533
534 void
535 SwaroopControls::reset_film ()
536 {
537         DCPOMATIC_ASSERT (_selected_playlist);
538         shared_ptr<Film> film (new Film(optional<boost::filesystem::path>()));
539         film->add_content (_playlists[*_selected_playlist].get()[_selected_playlist_position].content);
540         ResetFilm (film);
541 }
542
543 void
544 SwaroopControls::config_changed (int property)
545 {
546         Controls::config_changed (property);
547
548         if (property == Config::PLAYER_CONTENT_DIRECTORY) {
549                 _content_view->update ();
550         } else if (property == Config::PLAYER_PLAYLIST_DIRECTORY) {
551                 update_playlist_directory ();
552         }
553 }
554
555 void
556 SwaroopControls::set_film (shared_ptr<Film> film)
557 {
558         Controls::set_film (film);
559         setup_sensitivity ();
560 }
561
562 void
563 SwaroopControls::update_current_content ()
564 {
565         DCPOMATIC_ASSERT (_selected_playlist);
566
567         wxProgressDialog dialog (_("DCP-o-matic"), "Loading content");
568
569         SPLEntry const & e = _playlists[*_selected_playlist].get()[_selected_playlist_position];
570         _current_disable_timeline = e.disable_timeline;
571         _current_disable_next = !e.skippable;
572
573         setup_sensitivity ();
574         dialog.Pulse ();
575         reset_film ();
576 }
577
578 /** One piece of content in our SPL has finished playing */
579 void
580 SwaroopControls::viewer_finished ()
581 {
582         if (!_selected_playlist) {
583                 return;
584         }
585
586         bool const stop = _playlists[*_selected_playlist].get()[_selected_playlist_position].stop_after_play;
587
588         _selected_playlist_position++;
589         if (_selected_playlist_position < int(_playlists[*_selected_playlist].get().size())) {
590                 /* Next piece of content on the SPL */
591                 update_current_content ();
592                 if (!stop) {
593                         _viewer->start ();
594                 }
595         } else {
596                 /* Finished the whole SPL */
597                 _selected_playlist_position = 0;
598                 _viewer->set_background_image (true);
599                 ResetFilm (shared_ptr<Film>(new Film(optional<boost::filesystem::path>())));
600                 decrement_allowed_shows ();
601                 _play_button->Enable (true);
602                 _pause_button->Enable (false);
603         }
604 }