swaroop: remove unused _film variable.
[dcpomatic.git] / src / tools / dcpomatic_playlist.cc
1 /*
2     Copyright (C) 2018 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 "../wx/wx_util.h"
22 #include "../wx/wx_signal_manager.h"
23 #include "../wx/content_view.h"
24 #include "../wx/dcpomatic_button.h"
25 #include "../lib/util.h"
26 #include "../lib/config.h"
27 #include "../lib/cross.h"
28 #include "../lib/film.h"
29 #include "../lib/dcp_content.h"
30 #include "../lib/spl_entry.h"
31 #include "../lib/spl.h"
32 #include <wx/wx.h>
33 #include <wx/listctrl.h>
34 #include <wx/imaglist.h>
35
36 using std::exception;
37 using std::cout;
38 using std::string;
39 using boost::optional;
40 using boost::shared_ptr;
41 using boost::weak_ptr;
42 using boost::bind;
43 using boost::dynamic_pointer_cast;
44
45 class ContentDialog : public wxDialog, public ContentStore
46 {
47 public:
48         ContentDialog (wxWindow* parent)
49                 : wxDialog (parent, wxID_ANY, _("Add content"), wxDefaultPosition, wxSize(800, 640))
50                 , _content_view (new ContentView(this))
51         {
52                 _content_view->update ();
53
54                 wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
55                 SetSizer (overall_sizer);
56
57                 overall_sizer->Add (_content_view, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
58
59                 wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
60                 if (buttons) {
61                         overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
62                 }
63
64                 overall_sizer->Layout ();
65         }
66
67         shared_ptr<Content> selected () const
68         {
69                 return _content_view->selected ();
70         }
71
72         shared_ptr<Content> get (string digest) const
73         {
74                 return _content_view->get (digest);
75         }
76
77 private:
78         ContentView* _content_view;
79 };
80
81 class DOMFrame : public wxFrame
82 {
83 public:
84         explicit DOMFrame (wxString const & title)
85                 : wxFrame (0, -1, title)
86                 , _content_dialog (new ContentDialog(this))
87         {
88                 /* Use a panel as the only child of the Frame so that we avoid
89                    the dark-grey background on Windows.
90                 */
91                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
92                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
93
94                 _list = new wxListCtrl (
95                         overall_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL
96                         );
97
98                 _list->AppendColumn (_("Name"), wxLIST_FORMAT_LEFT, 400);
99                 _list->AppendColumn (_("CPL"), wxLIST_FORMAT_LEFT, 350);
100                 _list->AppendColumn (_("Type"), wxLIST_FORMAT_CENTRE, 100);
101                 _list->AppendColumn (_("Format"), wxLIST_FORMAT_CENTRE, 75);
102                 _list->AppendColumn (_("Encrypted"), wxLIST_FORMAT_CENTRE, 90);
103                 _list->AppendColumn (_("Skippable"), wxLIST_FORMAT_CENTRE, 90);
104                 _list->AppendColumn (_("Disable timeline"), wxLIST_FORMAT_CENTRE, 125);
105                 _list->AppendColumn (_("Stop after play"), wxLIST_FORMAT_CENTRE, 125);
106
107                 wxImageList* images = new wxImageList (16, 16);
108                 wxIcon tick_icon;
109                 wxIcon no_tick_icon;
110 #ifdef DCPOMATIX_OSX
111                 tick_icon.LoadFile ("tick.png", wxBITMAP_TYPE_PNG_RESOURCE);
112                 no_tick_icon.LoadFile ("no_tick.png", wxBITMAP_TYPE_PNG_RESOURCE);
113 #else
114                 boost::filesystem::path tick_path = shared_path() / "tick.png";
115                 tick_icon.LoadFile (std_to_wx(tick_path.string()));
116                 boost::filesystem::path no_tick_path = shared_path() / "no_tick.png";
117                 no_tick_icon.LoadFile (std_to_wx(no_tick_path.string()));
118 #endif
119                 images->Add (tick_icon);
120                 images->Add (no_tick_icon);
121
122                 _list->SetImageList (images, wxIMAGE_LIST_SMALL);
123
124                 main_sizer->Add (_list, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
125
126                 wxBoxSizer* button_sizer = new wxBoxSizer (wxVERTICAL);
127                 _up = new Button (overall_panel, _("Up"));
128                 _down = new Button (overall_panel, _("Down"));
129                 _add = new Button (overall_panel, _("Add"));
130                 _remove = new Button (overall_panel, _("Remove"));
131                 _save = new Button (overall_panel, _("Save playlist"));
132                 _load = new Button (overall_panel, _("Load playlist"));
133                 button_sizer->Add (_up, 0, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
134                 button_sizer->Add (_down, 0, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
135                 button_sizer->Add (_add, 0, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
136                 button_sizer->Add (_remove, 0, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
137                 button_sizer->Add (_save, 0, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
138                 button_sizer->Add (_load, 0, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
139
140                 main_sizer->Add (button_sizer, 0, wxALL, DCPOMATIC_SIZER_GAP);
141                 overall_panel->SetSizer (main_sizer);
142
143                 _list->Bind (wxEVT_LEFT_DOWN, bind(&DOMFrame::list_left_click, this, _1));
144                 _list->Bind (wxEVT_COMMAND_LIST_ITEM_SELECTED, boost::bind (&DOMFrame::selection_changed, this));
145                 _list->Bind (wxEVT_COMMAND_LIST_ITEM_DESELECTED, boost::bind (&DOMFrame::selection_changed, this));
146                 _up->Bind (wxEVT_BUTTON, bind(&DOMFrame::up_clicked, this));
147                 _down->Bind (wxEVT_BUTTON, bind(&DOMFrame::down_clicked, this));
148                 _add->Bind (wxEVT_BUTTON, bind(&DOMFrame::add_clicked, this));
149                 _remove->Bind (wxEVT_BUTTON, bind(&DOMFrame::remove_clicked, this));
150                 _save->Bind (wxEVT_BUTTON, bind(&DOMFrame::save_clicked, this));
151                 _load->Bind (wxEVT_BUTTON, bind(&DOMFrame::load_clicked, this));
152
153                 setup_sensitivity ();
154         }
155
156 private:
157
158         void add (SPLEntry e)
159         {
160                 wxListItem item;
161                 item.SetId (_list->GetItemCount());
162                 long const N = _list->InsertItem (item);
163                 set_item (N, e);
164                 _playlist.add (e);
165         }
166
167         void selection_changed ()
168         {
169                 setup_sensitivity ();
170         }
171
172         void set_item (long N, SPLEntry e)
173         {
174                 _list->SetItem (N, 0, std_to_wx(e.name));
175                 _list->SetItem (N, 1, std_to_wx(e.id));
176                 _list->SetItem (N, 2, std_to_wx(dcp::content_kind_to_string(e.kind)));
177                 _list->SetItem (N, 3, e.type == SPLEntry::DCP ? _("DCP") : _("E-cinema"));
178                 _list->SetItem (N, 4, e.encrypted ? _("Y") : _("N"));
179                 _list->SetItem (N, COLUMN_SKIPPABLE, wxEmptyString, e.skippable ? 0 : 1);
180                 _list->SetItem (N, COLUMN_DISABLE_TIMELINE, wxEmptyString, e.disable_timeline ? 0 : 1);
181                 _list->SetItem (N, COLUMN_STOP_AFTER_PLAY, wxEmptyString, e.stop_after_play ? 0 : 1);
182         }
183
184         void setup_sensitivity ()
185         {
186                 int const num_selected = _list->GetSelectedItemCount ();
187                 long int selected = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
188                 _up->Enable (selected > 0);
189                 _down->Enable (selected != -1 && selected < (_list->GetItemCount() - 1));
190                 _remove->Enable (num_selected > 0);
191         }
192
193         void list_left_click (wxMouseEvent& ev)
194         {
195                 int flags;
196                 long item = _list->HitTest (ev.GetPosition(), flags, 0);
197                 int x = ev.GetPosition().x;
198                 optional<int> column;
199                 for (int i = 0; i < _list->GetColumnCount(); ++i) {
200                         x -= _list->GetColumnWidth (i);
201                         if (x < 0) {
202                                 column = i;
203                                 break;
204                         }
205                 }
206
207                 if (item != -1 && column) {
208                         switch (*column) {
209                         case COLUMN_SKIPPABLE:
210                                 _playlist[item].skippable = !_playlist[item].skippable;
211                                 break;
212                         case COLUMN_DISABLE_TIMELINE:
213                                 _playlist[item].disable_timeline = !_playlist[item].disable_timeline;
214                                 break;
215                         case COLUMN_STOP_AFTER_PLAY:
216                                 _playlist[item].stop_after_play = !_playlist[item].stop_after_play;
217                                 break;
218                         default:
219                                 ev.Skip ();
220                         }
221                         set_item (item, _playlist[item]);
222                 } else {
223                         ev.Skip ();
224                 }
225         }
226
227         void add_clicked ()
228         {
229                 int const r = _content_dialog->ShowModal ();
230                 if (r == wxID_OK) {
231                         shared_ptr<Content> content = _content_dialog->selected ();
232                         if (content) {
233                                 add (SPLEntry(content));
234                         }
235                 }
236         }
237
238         void up_clicked ()
239         {
240                 long int s = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
241                 if (s < 1) {
242                         return;
243                 }
244
245                 SPLEntry tmp = _playlist[s];
246                 _playlist[s] = _playlist[s-1];
247                 _playlist[s-1] = tmp;
248
249                 set_item (s - 1, _playlist[s-1]);
250                 set_item (s, _playlist[s]);
251         }
252
253         void down_clicked ()
254         {
255                 long int s = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
256                 if (s > (_list->GetItemCount() - 1)) {
257                         return;
258                 }
259
260                 SPLEntry tmp = _playlist[s];
261                 _playlist[s] = _playlist[s+1];
262                 _playlist[s+1] = tmp;
263
264                 set_item (s + 1, _playlist[s+1]);
265                 set_item (s, _playlist[s]);
266         }
267
268         void remove_clicked ()
269         {
270                 long int s = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
271                 if (s == -1) {
272                         return;
273                 }
274
275                 _playlist.remove (s);
276                 _list->DeleteItem (s);
277         }
278
279         void save_clicked ()
280         {
281                 Config* c = Config::instance ();
282                 wxString default_dir = c->player_playlist_directory() ? std_to_wx(c->player_playlist_directory()->string()) : wxString(wxEmptyString);
283                 wxFileDialog* d = new wxFileDialog (this, _("Select playlist file"), default_dir, wxEmptyString, wxT("XML files (*.xml)|*.xml"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
284                 if (d->ShowModal() == wxID_OK) {
285                         _playlist.write (wx_to_std(d->GetPath()));
286                 }
287         }
288
289         void load_clicked ()
290         {
291                 Config* c = Config::instance ();
292                 wxString default_dir = c->player_playlist_directory() ? std_to_wx(c->player_playlist_directory()->string()) : wxString(wxEmptyString);
293                 wxFileDialog* d = new wxFileDialog (this, _("Select playlist file"), default_dir, wxEmptyString, wxT("XML files (*.xml)|*.xml"));
294                 if (d->ShowModal() == wxID_OK) {
295                         _list->DeleteAllItems ();
296                         _playlist.read (wx_to_std(d->GetPath()), _content_dialog);
297                         if (!_playlist.missing()) {
298                                 BOOST_FOREACH (SPLEntry i, _playlist.get()) {
299                                         add (i);
300                                 }
301                         } else {
302                                 error_dialog (this, _("Some content in this playlist was not found."));
303                         }
304                 }
305         }
306
307         wxListCtrl* _list;
308         wxButton* _up;
309         wxButton* _down;
310         wxButton* _add;
311         wxButton* _remove;
312         wxButton* _save;
313         wxButton* _load;
314         SPL _playlist;
315         ContentDialog* _content_dialog;
316
317         enum {
318                 COLUMN_SKIPPABLE = 5,
319                 COLUMN_DISABLE_TIMELINE = 6,
320                 COLUMN_STOP_AFTER_PLAY = 7
321         };
322 };
323
324 /** @class App
325  *  @brief The magic App class for wxWidgets.
326  */
327 class App : public wxApp
328 {
329 public:
330         App ()
331                 : wxApp ()
332                 , _frame (0)
333         {}
334
335 private:
336
337         bool OnInit ()
338         try
339         {
340                 SetAppName (_("DCP-o-matic KDM Creator"));
341
342                 if (!wxApp::OnInit()) {
343                         return false;
344                 }
345
346 #ifdef DCPOMATIC_LINUX
347                 unsetenv ("UBUNTU_MENUPROXY");
348 #endif
349
350                 #ifdef __WXOSX__
351                 ProcessSerialNumber serial;
352                 GetCurrentProcess (&serial);
353                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
354 #endif
355
356                 dcpomatic_setup_path_encoding ();
357
358                 /* Enable i18n; this will create a Config object
359                    to look for a force-configured language.  This Config
360                    object will be wrong, however, because dcpomatic_setup
361                    hasn't yet been called and there aren't any filters etc.
362                    set up yet.
363                 */
364                 dcpomatic_setup_i18n ();
365
366                 /* Set things up, including filters etc.
367                    which will now be internationalised correctly.
368                 */
369                 dcpomatic_setup ();
370
371                 /* Force the configuration to be re-loaded correctly next
372                    time it is needed.
373                 */
374                 Config::drop ();
375
376                 _frame = new DOMFrame (_("DCP-o-matic Playlist Editor"));
377                 SetTopWindow (_frame);
378                 _frame->Maximize ();
379                 _frame->Show ();
380
381                 signal_manager = new wxSignalManager (this);
382                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
383
384                 return true;
385         }
386         catch (exception& e)
387         {
388                 error_dialog (0, _("DCP-o-matic could not start"), std_to_wx(e.what()));
389                 return true;
390         }
391
392         /* An unhandled exception has occurred inside the main event loop */
393         bool OnExceptionInMainLoop ()
394         {
395                 try {
396                         throw;
397                 } catch (FileError& e) {
398                         error_dialog (
399                                 0,
400                                 wxString::Format (
401                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
402                                         std_to_wx (e.what()),
403                                         std_to_wx (e.file().string().c_str ())
404                                         )
405                                 );
406                 } catch (exception& e) {
407                         error_dialog (
408                                 0,
409                                 wxString::Format (
410                                         _("An exception occurred: %s.\n\n") + " " + REPORT_PROBLEM,
411                                         std_to_wx (e.what ())
412                                         )
413                                 );
414                 } catch (...) {
415                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
416                 }
417
418                 /* This will terminate the program */
419                 return false;
420         }
421
422         void OnUnhandledException ()
423         {
424                 error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
425         }
426
427         void idle ()
428         {
429                 signal_manager->ui_idle ();
430         }
431
432         DOMFrame* _frame;
433 };
434
435 IMPLEMENT_APP (App)