1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
/*
Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
libdcp is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
libdcp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with libdcp. If not, see <http://www.gnu.org/licenses/>.
In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations
including the two.
You must obey the GNU General Public License in all respects
for all of the code used other than OpenSSL. If you modify
file(s) with this exception, you may extend this exception to your
version of the file(s), but you are not obligated to do so. If you
do not wish to do so, delete this exception statement from your
version. If you delete this exception statement from all source
files in the program, then also delete it here.
*/
/** @file src/reel.cc
* @brief Reel class
*/
#include "decrypted_kdm.h"
#include "decrypted_kdm_key.h"
#include "equality_options.h"
#include "interop_text_asset.h"
#include "mono_picture_asset.h"
#include "picture_asset.h"
#include "reel.h"
#include "reel_atmos_asset.h"
#include "reel_closed_caption_asset.h"
#include "reel_interop_closed_caption_asset.h"
#include "reel_interop_subtitle_asset.h"
#include "reel_markers_asset.h"
#include "reel_mono_picture_asset.h"
#include "reel_smpte_closed_caption_asset.h"
#include "reel_smpte_subtitle_asset.h"
#include "reel_sound_asset.h"
#include "reel_stereo_picture_asset.h"
#include "reel_subtitle_asset.h"
#include "smpte_text_asset.h"
#include "sound_asset.h"
#include "stereo_picture_asset.h"
#include "text_asset.h"
#include "util.h"
#include <libxml++/nodes/element.h>
#include <stdint.h>
using std::string;
using std::cout;
using std::min;
using std::make_shared;
using std::shared_ptr;
using std::dynamic_pointer_cast;
using std::vector;
using namespace dcp;
Reel::Reel (std::shared_ptr<const cxml::Node> node, dcp::Standard standard)
: Object (remove_urn_uuid (node->string_child ("Id")))
{
auto asset_list = node->node_child ("AssetList");
auto main_picture = asset_list->optional_node_child ("MainPicture");
if (main_picture) {
_main_picture = make_shared<ReelMonoPictureAsset>(main_picture);
}
auto main_stereoscopic_picture = asset_list->optional_node_child ("MainStereoscopicPicture");
if (main_stereoscopic_picture) {
_main_picture = make_shared<ReelStereoPictureAsset>(main_stereoscopic_picture);
}
auto main_sound = asset_list->optional_node_child ("MainSound");
if (main_sound) {
_main_sound = make_shared<ReelSoundAsset>(main_sound);
}
auto main_subtitle = asset_list->optional_node_child ("MainSubtitle");
if (main_subtitle) {
switch (standard) {
case Standard::INTEROP:
_main_subtitle = make_shared<ReelInteropSubtitleAsset>(main_subtitle);
break;
case Standard::SMPTE:
_main_subtitle = make_shared<ReelSMPTESubtitleAsset>(main_subtitle);
break;
}
}
auto main_markers = asset_list->optional_node_child ("MainMarkers");
if (main_markers) {
_main_markers = make_shared<ReelMarkersAsset>(main_markers);
}
/* XXX: it's not ideal that we silently tolerate Interop or SMPTE nodes here */
/* XXX: not sure if Interop supports multiple closed captions */
auto closed_captions = asset_list->node_children ("MainClosedCaption");
if (closed_captions.empty()) {
closed_captions = asset_list->node_children ("ClosedCaption");
}
for (auto i: closed_captions) {
switch (standard) {
case Standard::INTEROP:
_closed_captions.push_back (make_shared<ReelInteropClosedCaptionAsset>(i));
break;
case Standard::SMPTE:
_closed_captions.push_back (make_shared<ReelSMPTEClosedCaptionAsset>(i));
break;
}
}
auto atmos = asset_list->optional_node_child ("AuxData");
if (atmos) {
_atmos = make_shared<ReelAtmosAsset>(atmos);
}
node->ignore_child ("AnnotationText");
node->done ();
}
xmlpp::Element *
Reel::write_to_cpl (xmlpp::Element* node, Standard standard) const
{
auto reel = node->add_child ("Reel");
reel->add_child("Id")->add_child_text("urn:uuid:" + _id);
xmlpp::Element* asset_list = reel->add_child ("AssetList");
if (_main_markers) {
_main_markers->write_to_cpl (asset_list, standard);
}
if (_main_picture && dynamic_pointer_cast<ReelMonoPictureAsset> (_main_picture)) {
/* Mono pictures come before other stuff... */
_main_picture->write_to_cpl (asset_list, standard);
}
if (_main_sound) {
_main_sound->write_to_cpl (asset_list, standard);
}
if (_main_subtitle) {
_main_subtitle->write_to_cpl (asset_list, standard);
}
for (auto i: _closed_captions) {
i->write_to_cpl (asset_list, standard);
}
if (_main_picture && dynamic_pointer_cast<ReelStereoPictureAsset> (_main_picture)) {
/* ... but stereo pictures must come after */
_main_picture->write_to_cpl (asset_list, standard);
}
if (_atmos) {
_atmos->write_to_cpl (asset_list, standard);
}
return asset_list;
}
bool
Reel::equals(std::shared_ptr<const Reel> other, EqualityOptions const& opt, NoteHandler note) const
{
if ((_main_picture && !other->_main_picture) || (!_main_picture && other->_main_picture)) {
note (NoteType::ERROR, "Reel: picture assets differ");
return false;
}
if (_main_picture && !_main_picture->equals (other->_main_picture, opt, note)) {
return false;
}
if ((_main_sound && !other->_main_sound) || (!_main_sound && other->_main_sound)) {
note (NoteType::ERROR, "Reel: sound assets differ");
return false;
}
if (_main_sound && !_main_sound->equals (other->_main_sound, opt, note)) {
return false;
}
if ((_main_subtitle && !other->_main_subtitle) || (!_main_subtitle && other->_main_subtitle)) {
note (NoteType::ERROR, "Reel: subtitle assets differ");
return false;
}
bool same_type = false;
{
auto interop = dynamic_pointer_cast<ReelInteropSubtitleAsset>(_main_subtitle);
auto interop_other = dynamic_pointer_cast<ReelInteropSubtitleAsset>(other->_main_subtitle);
if (interop && interop_other) {
same_type = true;
if (!interop->equals(interop_other, opt, note)) {
return false;
}
}
}
{
auto smpte = dynamic_pointer_cast<ReelSMPTESubtitleAsset>(_main_subtitle);
auto smpte_other = dynamic_pointer_cast<ReelSMPTESubtitleAsset>(other->_main_subtitle);
if (smpte && smpte_other) {
same_type = true;
if (!smpte->equals(smpte_other, opt, note)) {
return false;
}
}
}
if ((_main_subtitle || other->_main_subtitle) && !same_type) {
return false;
}
if ((_main_markers && !other->_main_markers) || (!_main_markers && other->_main_markers)) {
note (NoteType::ERROR, "Reel: one has markers and the other does not");
return false;
}
if (_main_markers && !_main_markers->equals(other->_main_markers, opt, note)) {
note (NoteType::ERROR, "Reel: marker assets differ");
return false;
}
if (_closed_captions.size() != other->_closed_captions.size()) {
return false;
}
auto i = _closed_captions.begin();
auto j = other->_closed_captions.begin();
while (i != _closed_captions.end()) {
if (!(*i)->equals(*j, opt, note)) {
return false;
}
++i;
++j;
}
if ((_atmos && !other->_atmos) || (!_atmos && other->_atmos)) {
note (NoteType::ERROR, "Reel: atmos assets differ");
return false;
}
if (_atmos && !_atmos->equals (other->_atmos, opt, note)) {
return false;
}
return true;
}
bool
Reel::any_encrypted () const
{
auto ecc = false;
for (auto i: _closed_captions) {
if (i->encrypted()) {
ecc = true;
}
}
return (
(_main_picture && _main_picture->encrypted()) ||
(_main_sound && _main_sound->encrypted()) ||
(_main_subtitle && _main_subtitle->encrypted()) ||
ecc ||
(_atmos && _atmos->encrypted())
);
}
bool
Reel::all_encrypted () const
{
auto ecc = true;
for (auto i: _closed_captions) {
if (!i->encrypted()) {
ecc = false;
}
}
return (
(!_main_picture || _main_picture->encrypted()) &&
(!_main_sound || _main_sound->encrypted()) &&
(!_main_subtitle || _main_subtitle->encrypted()) &&
ecc &&
(!_atmos || _atmos->encrypted())
);
}
void
Reel::add (DecryptedKDM const & kdm)
{
give_kdm_to_assets (kdm);
/* We have to keep the KDMs that we are given, as they will not be passed to unresolved assets.
* After we resolve some assets we will re-call give_kdm_to_assets() with all the KDMs that
* we have been given so far.
*/
_kdms.push_back (kdm);
}
void
Reel::give_kdm_to_assets (DecryptedKDM const & kdm)
{
for (auto const& i: kdm.keys()) {
if (_main_picture && i.id() == _main_picture->key_id() && _main_picture->asset_ref().resolved()) {
_main_picture->asset()->set_key (i.key());
}
if (_main_sound && i.id() == _main_sound->key_id() && _main_sound->asset_ref().resolved()) {
_main_sound->asset()->set_key (i.key());
}
if (_main_subtitle) {
auto smpte = dynamic_pointer_cast<ReelSMPTESubtitleAsset>(_main_subtitle);
if (smpte && i.id() == smpte->key_id() && smpte->asset_ref().resolved()) {
smpte->smpte_asset()->set_key(i.key());
}
}
for (auto j: _closed_captions) {
auto smpte = dynamic_pointer_cast<ReelSMPTESubtitleAsset>(j);
if (smpte && i.id() == smpte->key_id() && smpte->asset_ref().resolved()) {
smpte->smpte_asset()->set_key(i.key());
}
}
if (_atmos && i.id() == _atmos->key_id() && _atmos->asset_ref().resolved()) {
_atmos->asset()->set_key (i.key());
}
}
}
void
Reel::add (shared_ptr<ReelAsset> asset)
{
if (auto p = dynamic_pointer_cast<ReelPictureAsset>(asset)) {
_main_picture = p;
} else if (auto so = dynamic_pointer_cast<ReelSoundAsset>(asset)) {
_main_sound = so;
} else if (auto su = dynamic_pointer_cast<ReelSubtitleAsset>(asset)) {
_main_subtitle = su;
} else if (auto m = dynamic_pointer_cast<ReelMarkersAsset>(asset)) {
_main_markers = m;
} else if (auto c = dynamic_pointer_cast<ReelClosedCaptionAsset>(asset)) {
_closed_captions.push_back (c);
} else if (auto a = dynamic_pointer_cast<ReelAtmosAsset>(asset)) {
_atmos = a;
} else {
DCP_ASSERT(false);
}
}
vector<shared_ptr<ReelAsset>>
Reel::assets () const
{
vector<shared_ptr<ReelAsset>> a;
if (_main_picture) {
a.push_back (_main_picture);
}
if (_main_sound) {
a.push_back (_main_sound);
}
if (_main_subtitle) {
a.push_back (_main_subtitle);
}
std::copy (_closed_captions.begin(), _closed_captions.end(), back_inserter(a));
if (_atmos) {
a.push_back (_atmos);
}
return a;
}
void
Reel::resolve_refs (vector<shared_ptr<Asset>> assets)
{
if (_main_picture) {
_main_picture->asset_ref().resolve(assets);
}
if (_main_sound) {
_main_sound->asset_ref().resolve(assets);
}
if (_main_subtitle) {
_main_subtitle->asset_ref().resolve(assets);
/* Interop subtitle handling is all special cases */
if (_main_subtitle->asset_ref().resolved()) {
auto iop = dynamic_pointer_cast<InteropTextAsset>(_main_subtitle->asset_ref().asset());
if (iop) {
iop->resolve_fonts (assets);
}
}
}
for (auto i: _closed_captions) {
i->asset_ref().resolve(assets);
/* Interop subtitle handling is all special cases */
if (i->asset_ref().resolved()) {
auto iop = dynamic_pointer_cast<InteropTextAsset>(i->asset_ref().asset());
if (iop) {
iop->resolve_fonts (assets);
}
}
}
if (_atmos) {
_atmos->asset_ref().resolve (assets);
}
for (auto const& i: _kdms) {
give_kdm_to_assets (i);
}
}
int64_t
Reel::duration () const
{
if (_main_picture) {
return _main_picture->actual_duration();
}
int64_t d = INT64_MAX;
if (_main_sound) {
d = min (d, _main_sound->actual_duration());
}
if (_main_subtitle) {
d = min (d, _main_subtitle->actual_duration());
}
if (_main_markers) {
d = min (d, _main_markers->actual_duration());
}
for (auto i: _closed_captions) {
d = min (d, i->actual_duration());
}
if (_atmos) {
d = min (d, _atmos->actual_duration());
}
DCP_ASSERT (d < INT64_MAX);
return d;
}
|