71feeed10f2744c2917521dc2ce4e031f9f7e091
[dcpomatic.git] / src / wx / dkdm_dialog.cc
1 /*
2     Copyright (C) 2012-2020 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 "dkdm_dialog.h"
22 #include "wx_util.h"
23 #include "recipients_panel.h"
24 #include "kdm_timing_panel.h"
25 #include "dkdm_output_panel.h"
26 #include "kdm_cpl_panel.h"
27 #include "confirm_kdm_email_dialog.h"
28 #include "static_text.h"
29 #include "dcpomatic_button.h"
30 #include "lib/film.h"
31 #include "lib/kdm_with_metadata.h"
32 #include "lib/job_manager.h"
33 #include "lib/config.h"
34 #include <libcxml/cxml.h>
35 #include <dcp/exceptions.h>
36 #include <wx/treectrl.h>
37 #include <wx/listctrl.h>
38 #include <iostream>
39
40 using std::string;
41 using std::exception;
42 using std::map;
43 using std::list;
44 using std::pair;
45 using std::cout;
46 using std::vector;
47 using std::make_pair;
48 using std::runtime_error;
49 using boost::shared_ptr;
50 using boost::bind;
51 using boost::optional;
52
53 DKDMDialog::DKDMDialog (wxWindow* parent, shared_ptr<const Film> film)
54         : wxDialog (parent, wxID_ANY, _("Make DKDMs"))
55         , _film (film)
56 {
57         /* Main sizers */
58         wxBoxSizer* horizontal = new wxBoxSizer (wxHORIZONTAL);
59         wxBoxSizer* left = new wxBoxSizer (wxVERTICAL);
60         wxBoxSizer* right = new wxBoxSizer (wxVERTICAL);
61
62         horizontal->Add (left, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP * 4);
63         horizontal->Add (right, 1, wxEXPAND);
64
65         /* Font for sub-headings */
66         wxFont subheading_font (*wxNORMAL_FONT);
67         subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
68
69         /* Sub-heading: Screens */
70         wxStaticText* h = new StaticText (this, _("Recipients"));
71         h->SetFont (subheading_font);
72         left->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
73         _recipients = new RecipientsPanel (this);
74         left->Add (_recipients, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
75
76         /* Sub-heading: Timing */
77         /// TRANSLATORS: translate the word "Timing" here; do not include the "KDM|" prefix
78         h = new StaticText (this, S_("KDM|Timing"));
79         h->SetFont (subheading_font);
80         right->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP * 2);
81         _timing = new KDMTimingPanel (this);
82         right->Add (_timing);
83
84         /* Sub-heading: CPL */
85         h = new StaticText (this, _("CPL"));
86         h->SetFont (subheading_font);
87         right->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP * 2);
88
89         vector<CPLSummary> cpls;
90         BOOST_FOREACH (CPLSummary const & i, film->cpls()) {
91                 if (i.encrypted) {
92                         cpls.push_back (i);
93                 }
94         }
95
96         _cpl = new KDMCPLPanel (this, cpls);
97         right->Add (_cpl, 0, wxEXPAND);
98
99         /* Sub-heading: Output */
100         h = new StaticText (this, _("Output"));
101         h->SetFont (subheading_font);
102         right->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
103         _output = new DKDMOutputPanel (this);
104         right->Add (_output, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
105
106         _make = new Button (this, _("Make DKDMs"));
107         right->Add (_make, 0, wxTOP | wxBOTTOM, DCPOMATIC_SIZER_GAP);
108
109         /* Make an overall sizer to get a nice border */
110
111         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
112         overall_sizer->Add (horizontal, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
113
114         /* Bind */
115
116         _recipients->RecipientsChanged.connect (boost::bind(&DKDMDialog::setup_sensitivity, this));
117         _timing->TimingChanged.connect (boost::bind(&DKDMDialog::setup_sensitivity, this));
118         _make->Bind (wxEVT_BUTTON, boost::bind(&DKDMDialog::make_clicked, this));
119
120         setup_sensitivity ();
121
122         SetSizer (overall_sizer);
123         overall_sizer->Layout ();
124         overall_sizer->SetSizeHints (this);
125 }
126
127 void
128 DKDMDialog::setup_sensitivity ()
129 {
130         _recipients->setup_sensitivity ();
131         _output->setup_sensitivity ();
132         _make->Enable (!_recipients->recipients().empty() && _timing->valid() && _cpl->has_selected());
133 }
134
135 bool
136 DKDMDialog::confirm_overwrite (boost::filesystem::path path)
137 {
138         return confirm_dialog (
139                 this,
140                 wxString::Format (_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(path.string()).data())
141                 );
142 }
143
144 void
145 DKDMDialog::make_clicked ()
146 {
147         shared_ptr<const Film> film = _film.lock ();
148         DCPOMATIC_ASSERT (film);
149
150         list<KDMWithMetadataPtr> kdms;
151         try {
152                 BOOST_FOREACH (shared_ptr<DKDMRecipient> i, _recipients->recipients()) {
153                         KDMWithMetadataPtr p = kdm_for_dkdm_recipient (film, _cpl->cpl(), i, _timing->from(), _timing->until());
154                         if (p) {
155                                 kdms.push_back (p);
156                         }
157                 }
158         } catch (dcp::BadKDMDateError& e) {
159                 if (e.starts_too_early()) {
160                         error_dialog (this, _("The KDM start period is before (or close to) the start of the signing certificate's validity period.  Use a later start time for this KDM."));
161                 } else {
162                         error_dialog (this, _("The KDM end period is after (or close to) the end of the signing certficates' validity period.  Either use an earlier end time for this KDM or re-create your signing certificates in the DCP-o-matic preferences window."));
163                 }
164                 return;
165         } catch (runtime_error& e) {
166                 error_dialog (this, std_to_wx(e.what()));
167                 return;
168         }
169
170         pair<shared_ptr<Job>, int> result = _output->make (kdms, film->name(), bind(&DKDMDialog::confirm_overwrite, this, _1));
171         if (result.first) {
172                 JobManager::instance()->add (result.first);
173         }
174
175         if (result.second > 0) {
176                 /* XXX: proper plural form support in wxWidgets? */
177                 wxString s = result.second == 1 ? _("%d DKDM written to %s") : _("%d DKDMs written to %s");
178                 message_dialog (
179                         this,
180                         wxString::Format (s, result.second, std_to_wx(_output->directory().string()).data())
181                         );
182         }
183 }