BOOST_FOREACH.
[dcpomatic.git] / src / wx / kdm_cpl_panel.cc
1 /*
2     Copyright (C) 2015-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 "kdm_cpl_panel.h"
22 #include "wx_util.h"
23 #include "static_text.h"
24 #include "dcpomatic_button.h"
25 #include "lib/warnings.h"
26 DCPOMATIC_DISABLE_WARNINGS
27 #include <libxml++/libxml++.h>
28 DCPOMATIC_ENABLE_WARNINGS
29 #include <libcxml/cxml.h>
30
31 using std::vector;
32
33 KDMCPLPanel::KDMCPLPanel (wxWindow* parent, vector<CPLSummary> cpls)
34         : wxPanel (parent, wxID_ANY)
35         , _cpls (cpls)
36 {
37         wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
38
39         /* CPL choice */
40         wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
41         add_label_to_sizer (s, this, _("CPL"), true);
42         _cpl = new wxChoice (this, wxID_ANY);
43         s->Add (_cpl, 1, wxEXPAND);
44         _cpl_browse = new Button (this, _("Browse..."));
45         s->Add (_cpl_browse, 0, wxLEFT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
46         vertical->Add (s, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP + 2);
47
48         /* CPL details */
49         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
50         add_label_to_sizer (table, this, _("DCP directory"), true);
51         _dcp_directory = new StaticText (this, "");
52         table->Add (_dcp_directory);
53         add_label_to_sizer (table, this, _("CPL ID"), true);
54         _cpl_id = new StaticText (this, "");
55         table->Add (_cpl_id);
56         add_label_to_sizer (table, this, _("CPL annotation text"), true);
57         _cpl_annotation_text = new StaticText (this, "");
58         table->Add (_cpl_annotation_text);
59         vertical->Add (table, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP + 2);
60
61         update_cpl_choice ();
62
63         _cpl->Bind        (wxEVT_CHOICE, boost::bind (&KDMCPLPanel::update_cpl_summary, this));
64         _cpl_browse->Bind (wxEVT_BUTTON,  boost::bind (&KDMCPLPanel::cpl_browse_clicked, this));
65
66         SetSizerAndFit (vertical);
67 }
68
69 void
70 KDMCPLPanel::update_cpl_choice ()
71 {
72         _cpl->Clear ();
73
74         for (auto const& i: _cpls) {
75                 _cpl->Append (std_to_wx(i.cpl_id));
76
77                 if (_cpls.size() > 0) {
78                         _cpl->SetSelection (0);
79                 }
80         }
81
82         update_cpl_summary ();
83 }
84
85 void
86 KDMCPLPanel::update_cpl_summary ()
87 {
88         int const n = _cpl->GetSelection();
89         if (n == wxNOT_FOUND) {
90                 return;
91         }
92
93         _dcp_directory->SetLabel (std_to_wx (_cpls[n].dcp_directory));
94         _cpl_id->SetLabel (std_to_wx (_cpls[n].cpl_id));
95         _cpl_annotation_text->SetLabel (std_to_wx (_cpls[n].cpl_annotation_text));
96 }
97
98 void
99 KDMCPLPanel::cpl_browse_clicked ()
100 {
101         wxFileDialog* d = new wxFileDialog (this, _("Select CPL XML file"), wxEmptyString, wxEmptyString, "*.xml");
102         if (d->ShowModal() == wxID_CANCEL) {
103                 d->Destroy ();
104                 return;
105         }
106
107         boost::filesystem::path cpl_file (wx_to_std (d->GetPath ()));
108         boost::filesystem::path dcp_dir = cpl_file.parent_path ();
109
110         d->Destroy ();
111
112         try {
113                 /* XXX: hack alert */
114                 cxml::Document cpl_document ("CompositionPlaylist");
115                 cpl_document.read_file (cpl_file);
116
117                 bool encrypted = false;
118                 for (auto i: cpl_document.node_children("ReelList")) {
119                         for (auto j: i->node_children("Reel")) {
120                                 for (auto k: j->node_children("AssetList")) {
121                                         for (auto l: k->node_children()) {
122                                                 if (!l->node_children("KeyId").empty()) {
123                                                         encrypted = true;
124                                                 }
125                                         }
126                                 }
127                         }
128                 }
129
130                 if (!encrypted) {
131                         error_dialog (this, _("This CPL contains no encrypted assets."));
132                         return;
133                 }
134
135                 /* We're ignoring the CPLSummary timestamp stuff here and just putting the new one in at the end
136                    of the list, then selecting it.
137                 */
138
139                 _cpls.push_back (
140                         CPLSummary (
141                                 dcp_dir.filename().string(),
142                                 cpl_document.string_child("Id").substr (9),
143                                 cpl_document.string_child("ContentTitleText"),
144                                 cpl_file,
145                                 encrypted,
146                                 0
147                                 )
148                         );
149         } catch (xmlpp::exception& e) {
150                 error_dialog (this, _("This is not a valid CPL file"), std_to_wx(e.what()));
151                 return;
152         } catch (cxml::Error& e) {
153                 error_dialog (this, _("This is not a valid CPL file"), std_to_wx(e.what()));
154                 return;
155         }
156
157         update_cpl_choice ();
158         _cpl->SetSelection (_cpls.size() - 1);
159         update_cpl_summary ();
160 }
161
162 boost::filesystem::path
163 KDMCPLPanel::cpl () const
164 {
165         int const item = _cpl->GetSelection ();
166         DCPOMATIC_ASSERT (item >= 0);
167         return _cpls[item].cpl_file;
168 }
169
170 bool
171 KDMCPLPanel::has_selected () const
172 {
173         return _cpl->GetSelection() != -1;
174 }