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