Modify KDM generation to work with CPLs rather than DCPs, and allow
[dcpomatic.git] / src / wx / kdm_dialog.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <wx/treectrl.h>
21 #include <wx/datectrl.h>
22 #include <wx/timectrl.h>
23 #include <wx/stdpaths.h>
24 #include <wx/listctrl.h>
25 #include <libcxml/cxml.h>
26 #include "lib/cinema.h"
27 #include "lib/config.h"
28 #include "lib/film.h"
29 #include "kdm_dialog.h"
30 #include "cinema_dialog.h"
31 #include "screen_dialog.h"
32 #include "wx_util.h"
33 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
34 #include "dir_picker_ctrl.h"
35 #else
36 #include <wx/filepicker.h>
37 #endif
38
39 using std::string;
40 using std::map;
41 using std::list;
42 using std::pair;
43 using std::cout;
44 using std::vector;
45 using std::make_pair;
46 using boost::shared_ptr;
47
48 KDMDialog::KDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
49         : wxDialog (parent, wxID_ANY, _("Make KDMs"))
50 {
51         /* Main sizer */
52         wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
53
54         /* Font for sub-headings */
55         wxFont subheading_font (*wxNORMAL_FONT);
56         subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
57
58
59         /* Sub-heading: Screens */
60         wxStaticText* h = new wxStaticText (this, wxID_ANY, _("Screens"));
61         h->SetFont (subheading_font);
62         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL);
63         
64         wxBoxSizer* targets = new wxBoxSizer (wxHORIZONTAL);
65         _targets = new wxTreeCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_MULTIPLE | wxTR_HAS_BUTTONS);
66         targets->Add (_targets, 1, wxEXPAND | wxTOP | wxRIGHT, DCPOMATIC_SIZER_GAP);
67
68         _root = _targets->AddRoot ("Foo");
69
70         list<shared_ptr<Cinema> > c = Config::instance()->cinemas ();
71         for (list<shared_ptr<Cinema> >::iterator i = c.begin(); i != c.end(); ++i) {
72                 add_cinema (*i);
73         }
74
75         _targets->ExpandAll ();
76
77         wxBoxSizer* target_buttons = new wxBoxSizer (wxVERTICAL);
78
79         _add_cinema = new wxButton (this, wxID_ANY, _("Add Cinema..."));
80         target_buttons->Add (_add_cinema, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
81         _edit_cinema = new wxButton (this, wxID_ANY, _("Edit Cinema..."));
82         target_buttons->Add (_edit_cinema, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
83         _remove_cinema = new wxButton (this, wxID_ANY, _("Remove Cinema"));
84         target_buttons->Add (_remove_cinema, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
85         
86         _add_screen = new wxButton (this, wxID_ANY, _("Add Screen..."));
87         target_buttons->Add (_add_screen, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
88         _edit_screen = new wxButton (this, wxID_ANY, _("Edit Screen..."));
89         target_buttons->Add (_edit_screen, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
90         _remove_screen = new wxButton (this, wxID_ANY, _("Remove Screen"));
91         target_buttons->Add (_remove_screen, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
92
93         targets->Add (target_buttons, 0, 0);
94
95         vertical->Add (targets, 1, wxEXPAND);
96
97
98         /* Sub-heading: Timing */
99         h = new wxStaticText (this, wxID_ANY, _("Timing"));
100         h->SetFont (subheading_font);
101         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
102         
103         wxFlexGridSizer* table = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
104         add_label_to_sizer (table, this, _("From"), true);
105         wxDateTime from;
106         from.SetToCurrent ();
107         _from_date = new wxDatePickerCtrl (this, wxID_ANY, from);
108         table->Add (_from_date, 1, wxEXPAND);
109         _from_time = new wxTimePickerCtrl (this, wxID_ANY, from);
110         table->Add (_from_time, 1, wxEXPAND);
111
112         add_label_to_sizer (table, this, _("Until"), true);
113         wxDateTime to = from;
114         /* 1 week from now */
115         to.Add (wxDateSpan (0, 0, 1, 0));
116         _until_date = new wxDatePickerCtrl (this, wxID_ANY, to);
117         table->Add (_until_date, 1, wxEXPAND);
118         _until_time = new wxTimePickerCtrl (this, wxID_ANY, to);
119         table->Add (_until_time, 1, wxEXPAND);
120
121         vertical->Add (table, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
122
123
124         /* Sub-heading: CPL */
125         h = new wxStaticText (this, wxID_ANY, _("CPL"));
126         h->SetFont (subheading_font);
127         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
128         
129         /* CPL choice */
130         wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
131         add_label_to_sizer (s, this, _("CPL"), true);
132         _cpl = new wxChoice (this, wxID_ANY);
133         s->Add (_cpl, 1, wxEXPAND);
134         _cpl_browse = new wxButton (this, wxID_ANY, _("Browse..."));
135         s->Add (_cpl_browse, 0);
136         vertical->Add (s, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP + 2);
137
138         /* CPL details */
139         table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
140         add_label_to_sizer (table, this, _("DCP directory"), true);
141         _dcp_directory = new wxStaticText (this, wxID_ANY, "");
142         table->Add (_dcp_directory);
143         add_label_to_sizer (table, this, _("CPL ID"), true);
144         _cpl_id = new wxStaticText (this, wxID_ANY, "");
145         table->Add (_cpl_id);
146         add_label_to_sizer (table, this, _("CPL annotation text"), true);
147         _cpl_annotation_text = new wxStaticText (this, wxID_ANY, "");
148         table->Add (_cpl_annotation_text);
149         vertical->Add (table, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP + 2);
150         
151         _cpls = film->cpls ();
152         update_cpl_choice ();
153         
154
155         /* Sub-heading: Output */
156         h = new wxStaticText (this, wxID_ANY, _("Output"));
157         h->SetFont (subheading_font);
158         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
159         
160         table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, 0);
161
162         _write_to = new wxRadioButton (this, wxID_ANY, _("Write to"));
163         table->Add (_write_to, 1, wxEXPAND);
164
165 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
166         _folder = new DirPickerCtrl (this); 
167 #else   
168         _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));
169 #endif
170
171         _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
172         
173         table->Add (_folder, 1, wxEXPAND);
174
175         _email = new wxRadioButton (this, wxID_ANY, _("Send by email"));
176         table->Add (_email, 1, wxEXPAND);
177         table->AddSpacer (0);
178         
179         vertical->Add (table, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
180
181         /* Make an overall sizer to get a nice border, and put some buttons in */
182
183         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
184         overall_sizer->Add (vertical, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
185
186         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
187         if (buttons) {
188                 overall_sizer->Add (buttons, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_Y_GAP);
189         }
190
191         _write_to->SetValue (true);
192
193         /* Bind */
194
195         _targets->Bind       (wxEVT_COMMAND_TREE_SEL_CHANGED, boost::bind (&KDMDialog::setup_sensitivity, this));
196
197         _add_cinema->Bind    (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::add_cinema_clicked, this));
198         _edit_cinema->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_cinema_clicked, this));
199         _remove_cinema->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_cinema_clicked, this));
200
201         _add_screen->Bind    (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::add_screen_clicked, this));
202         _edit_screen->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_screen_clicked, this));
203         _remove_screen->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_screen_clicked, this));
204
205         _cpl->Bind           (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&KDMDialog::update_cpl_summary, this));
206         _cpl_browse->Bind    (wxEVT_COMMAND_BUTTON_CLICKED,  boost::bind (&KDMDialog::cpl_browse_clicked, this));
207
208         _write_to->Bind      (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
209         _email->Bind         (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
210
211         setup_sensitivity ();
212
213         SetSizer (overall_sizer);
214         overall_sizer->Layout ();
215         overall_sizer->SetSizeHints (this);
216 }
217
218 list<pair<wxTreeItemId, shared_ptr<Cinema> > >
219 KDMDialog::selected_cinemas () const
220 {
221         wxArrayTreeItemIds s;
222         _targets->GetSelections (s);
223
224         list<pair<wxTreeItemId, shared_ptr<Cinema> > > c;
225         for (size_t i = 0; i < s.GetCount(); ++i) {
226                 map<wxTreeItemId, shared_ptr<Cinema> >::const_iterator j = _cinemas.find (s[i]);
227                 if (j != _cinemas.end ()) {
228                         c.push_back (make_pair (j->first, j->second));
229                 }
230         }
231
232         return c;
233 }
234
235 list<pair<wxTreeItemId, shared_ptr<Screen> > >
236 KDMDialog::selected_screens () const
237 {
238         wxArrayTreeItemIds s;
239         _targets->GetSelections (s);
240
241         list<pair<wxTreeItemId, shared_ptr<Screen> > > c;
242         for (size_t i = 0; i < s.GetCount(); ++i) {
243                 map<wxTreeItemId, shared_ptr<Screen> >::const_iterator j = _screens.find (s[i]);
244                 if (j != _screens.end ()) {
245                         c.push_back (make_pair (j->first, j->second));
246                 }
247         }
248
249         return c;
250 }
251
252 void
253 KDMDialog::setup_sensitivity ()
254 {
255         bool const sc = selected_cinemas().size() == 1;
256         bool const ss = selected_screens().size() == 1;
257         bool const sd = _cpl->GetSelection() != -1;
258         
259         _edit_cinema->Enable (sc);
260         _remove_cinema->Enable (sc);
261         
262         _add_screen->Enable (sc);
263         _edit_screen->Enable (ss);
264         _remove_screen->Enable (ss);
265
266         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK));
267         ok->Enable ((selected_cinemas().size() > 0 || selected_screens().size() > 0) && sd);
268
269         _folder->Enable (_write_to->GetValue ());
270 }
271
272 void
273 KDMDialog::add_cinema (shared_ptr<Cinema> c)
274 {
275         _cinemas[_targets->AppendItem (_root, std_to_wx (c->name))] = c;
276
277         list<shared_ptr<Screen> > sc = c->screens ();
278         for (list<shared_ptr<Screen> >::iterator i = sc.begin(); i != sc.end(); ++i) {
279                 add_screen (c, *i);
280         }
281 }
282
283 void
284 KDMDialog::add_screen (shared_ptr<Cinema> c, shared_ptr<Screen> s)
285 {
286         map<wxTreeItemId, shared_ptr<Cinema> >::const_iterator i = _cinemas.begin();
287         while (i != _cinemas.end() && i->second != c) {
288                 ++i;
289         }
290
291         if (i == _cinemas.end()) {
292                 return;
293         }
294
295         _screens[_targets->AppendItem (i->first, std_to_wx (s->name))] = s;
296 }
297
298 void
299 KDMDialog::add_cinema_clicked ()
300 {
301         CinemaDialog* d = new CinemaDialog (this, "Add Cinema");
302         d->ShowModal ();
303
304         shared_ptr<Cinema> c (new Cinema (d->name(), d->email()));
305         Config::instance()->add_cinema (c);
306         add_cinema (c);
307
308         d->Destroy ();
309 }
310
311 void
312 KDMDialog::edit_cinema_clicked ()
313 {
314         if (selected_cinemas().size() != 1) {
315                 return;
316         }
317
318         pair<wxTreeItemId, shared_ptr<Cinema> > c = selected_cinemas().front();
319         
320         CinemaDialog* d = new CinemaDialog (this, "Edit cinema", c.second->name, c.second->email);
321         d->ShowModal ();
322
323         c.second->name = d->name ();
324         c.second->email = d->email ();
325         _targets->SetItemText (c.first, std_to_wx (d->name()));
326
327         Config::instance()->changed ();
328
329         d->Destroy ();  
330 }
331
332 void
333 KDMDialog::remove_cinema_clicked ()
334 {
335         if (selected_cinemas().size() != 1) {
336                 return;
337         }
338
339         pair<wxTreeItemId, shared_ptr<Cinema> > c = selected_cinemas().front();
340
341         Config::instance()->remove_cinema (c.second);
342         _targets->Delete (c.first);
343 }
344
345 void
346 KDMDialog::add_screen_clicked ()
347 {
348         if (selected_cinemas().size() != 1) {
349                 return;
350         }
351
352         shared_ptr<Cinema> c = selected_cinemas().front().second;
353         
354         ScreenDialog* d = new ScreenDialog (this, "Add Screen");
355         if (d->ShowModal () != wxID_OK) {
356                 return;
357         }
358
359         shared_ptr<Screen> s (new Screen (d->name(), d->certificate()));
360         c->add_screen (s);
361         add_screen (c, s);
362
363         Config::instance()->changed ();
364
365         d->Destroy ();
366 }
367
368 void
369 KDMDialog::edit_screen_clicked ()
370 {
371         if (selected_screens().size() != 1) {
372                 return;
373         }
374
375         pair<wxTreeItemId, shared_ptr<Screen> > s = selected_screens().front();
376         
377         ScreenDialog* d = new ScreenDialog (this, "Edit screen", s.second->name, s.second->certificate);
378         d->ShowModal ();
379
380         s.second->name = d->name ();
381         s.second->certificate = d->certificate ();
382         _targets->SetItemText (s.first, std_to_wx (d->name()));
383
384         Config::instance()->changed ();
385
386         d->Destroy ();
387 }
388
389 void
390 KDMDialog::remove_screen_clicked ()
391 {
392         if (selected_screens().size() != 1) {
393                 return;
394         }
395
396         pair<wxTreeItemId, shared_ptr<Screen> > s = selected_screens().front();
397
398         map<wxTreeItemId, shared_ptr<Cinema> >::iterator i = _cinemas.begin ();
399         while (i != _cinemas.end ()) {
400                 list<shared_ptr<Screen> > sc = i->second->screens ();
401                 if (find (sc.begin(), sc.end(), s.second) != sc.end ()) {
402                         break;
403                 }
404         }
405
406         if (i == _cinemas.end()) {
407                 return;
408         }
409
410         i->second->remove_screen (s.second);
411         _targets->Delete (s.first);
412
413         Config::instance()->changed ();
414 }
415
416 list<shared_ptr<Screen> >
417 KDMDialog::screens () const
418 {
419         list<shared_ptr<Screen> > s;
420
421         list<pair<wxTreeItemId, shared_ptr<Cinema> > > cinemas = selected_cinemas ();
422         for (list<pair<wxTreeItemId, shared_ptr<Cinema> > >::iterator i = cinemas.begin(); i != cinemas.end(); ++i) {
423                 list<shared_ptr<Screen> > sc = i->second->screens ();
424                 for (list<shared_ptr<Screen> >::const_iterator j = sc.begin(); j != sc.end(); ++j) {
425                         s.push_back (*j);
426                 }
427         }
428
429         list<pair<wxTreeItemId, shared_ptr<Screen> > > screens = selected_screens ();
430         for (list<pair<wxTreeItemId, shared_ptr<Screen> > >::iterator i = screens.begin(); i != screens.end(); ++i) {
431                 s.push_back (i->second);
432         }
433
434         s.sort ();
435         s.unique ();
436
437         return s;
438 }
439
440 boost::posix_time::ptime
441 KDMDialog::from () const
442 {
443         return posix_time (_from_date, _from_time);
444 }
445
446 boost::posix_time::ptime
447 KDMDialog::posix_time (wxDatePickerCtrl* date_picker, wxTimePickerCtrl* time_picker)
448 {
449         wxDateTime const date = date_picker->GetValue ();
450         wxDateTime const time = time_picker->GetValue ();
451         return boost::posix_time::ptime (
452                 boost::gregorian::date (date.GetYear(), date.GetMonth() + 1, date.GetDay()),
453                 boost::posix_time::time_duration (time.GetHour(), time.GetMinute(), time.GetSecond())
454                 );
455 }
456
457 boost::posix_time::ptime
458 KDMDialog::until () const
459 {
460         return posix_time (_until_date, _until_time);
461 }
462
463 boost::filesystem::path
464 KDMDialog::cpl () const
465 {
466         int const item = _cpl->GetSelection ();
467         assert (item >= 0);
468         return _cpls[item].cpl_file;
469 }
470
471 boost::filesystem::path
472 KDMDialog::directory () const
473 {
474         return wx_to_std (_folder->GetPath ());
475 }
476
477 bool
478 KDMDialog::write_to () const
479 {
480         return _write_to->GetValue ();
481 }
482
483 void
484 KDMDialog::update_cpl_choice ()
485 {
486         _cpl->Clear ();
487         
488         for (vector<CPLSummary>::const_iterator i = _cpls.begin(); i != _cpls.end(); ++i) {
489                 _cpl->Append (std_to_wx (i->cpl_id));
490
491                 if (_cpls.size() > 0) {
492                         _cpl->SetSelection (0);
493                 }
494         }
495
496         update_cpl_summary ();
497 }
498
499 void
500 KDMDialog::update_cpl_summary ()
501 {
502         int const n = _cpl->GetSelection();
503         if (n == wxNOT_FOUND) {
504                 return;
505         }
506
507         _dcp_directory->SetLabel (std_to_wx (_cpls[n].dcp_directory));
508         _cpl_id->SetLabel (std_to_wx (_cpls[n].cpl_id));
509         _cpl_annotation_text->SetLabel (std_to_wx (_cpls[n].cpl_annotation_text));
510 }
511
512 void
513 KDMDialog::cpl_browse_clicked ()
514 {
515         wxFileDialog d (this, _("Select CPL XML file"), wxEmptyString, wxEmptyString, "*.xml");
516         if (d.ShowModal() == wxID_CANCEL) {
517                 return;
518         }
519
520         boost::filesystem::path cpl_file (wx_to_std (d.GetPath ()));
521         boost::filesystem::path dcp_dir = cpl_file.parent_path ();
522
523         /* XXX: hack alert */
524         cxml::Document cpl_document ("CompositionPlaylist");
525         cpl_document.read_file (cpl_file);
526
527         try {
528                 _cpls.push_back (
529                         CPLSummary (
530                                 dcp_dir.filename().string(),
531                                 cpl_document.string_child("Id").substr (9),
532                                 cpl_document.string_child ("ContentTitleText"),
533                                 cpl_file
534                                 )
535                         );
536         } catch (cxml::Error) {
537                 error_dialog (this, _("This is not a valid CPL file"));
538                 return;
539         }
540         
541         update_cpl_choice ();
542         _cpl->SetSelection (_cpls.size() - 1);
543         update_cpl_summary ();
544 }