summaryrefslogtreecommitdiff
path: root/src/types.cc
blob: c4ba88862e7ea7c646142e88b2746659734127a6 (plain)
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
/*
    Copyright (C) 2012-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/types.cc
 *  @brief Miscellaneous types
 */


#include "compose.hpp"
#include "dcp_assert.h"
#include "exceptions.h"
#include "raw_convert.h"
#include "types.h"
#include "warnings.h"
LIBDCP_DISABLE_WARNINGS
#include <libxml++/libxml++.h>
LIBDCP_ENABLE_WARNINGS
#include <boost/algorithm/string.hpp>
#include <string>
#include <vector>
#include <cmath>
#include <cstdio>
#include <iomanip>


using std::string;
using std::ostream;
using std::vector;
using namespace dcp;
using namespace boost;


bool dcp::operator== (dcp::Size const & a, dcp::Size const & b)
{
	return (a.width == b.width && a.height == b.height);
}


bool dcp::operator!= (dcp::Size const & a, dcp::Size const & b)
{
	return !(a == b);
}


/** Construct a Fraction from a string of the form "numerator denominator"
 *  e.g. "1 3".
 */
Fraction::Fraction (string s)
{
	vector<string> b;
	split (b, s, is_any_of (" "));
	if (b.size() != 2) {
		boost::throw_exception (XMLError("malformed fraction " + s + " in XML node"));
	}
	numerator = raw_convert<int> (b[0]);
	denominator = raw_convert<int> (b[1]);
}


string
Fraction::as_string () const
{
	return String::compose ("%1 %2", numerator, denominator);
}


bool
dcp::operator== (Fraction const & a, Fraction const & b)
{
	return (a.numerator == b.numerator && a.denominator == b.denominator);
}


bool
dcp::operator!= (Fraction const & a, Fraction const & b)
{
	return (a.numerator != b.numerator || a.denominator != b.denominator);
}


Colour::Colour (int r_, int g_, int b_)
	: r (r_)
	, g (g_)
	, b (b_)
{

}


Colour::Colour (string argb_hex)
{
	int alpha;
	if (sscanf (argb_hex.c_str(), "%2x%2x%2x%2x", &alpha, &r, &g, &b) != 4) {
		boost::throw_exception (XMLError ("could not parse colour string"));
	}
}


string
Colour::to_argb_string () const
{
	char buffer[9];
	snprintf (buffer, sizeof(buffer), "FF%02X%02X%02X", r, g, b);
	return buffer;
}


string
Colour::to_rgb_string () const
{
	char buffer[7];
	snprintf (buffer, sizeof(buffer), "%02X%02X%02X", r, g, b);
	return buffer;
}


bool
dcp::operator== (Colour const & a, Colour const & b)
{
	return (a.r == b.r && a.g == b.g && a.b == b.b);
}


bool
dcp::operator!= (Colour const & a, Colour const & b)
{
	return !(a == b);
}


string
dcp::effect_to_string (Effect e)
{
	switch (e) {
	case Effect::NONE:
		return "none";
	case Effect::BORDER:
		return "border";
	case Effect::SHADOW:
		return "shadow";
	}

	boost::throw_exception (MiscError("unknown effect type"));
}


Effect
dcp::string_to_effect (string s)
{
	if (s == "none") {
		return Effect::NONE;
	} else if (s == "border") {
		return Effect::BORDER;
	} else if (s == "shadow") {
		return Effect::SHADOW;
	}

	boost::throw_exception (ReadError("unknown subtitle effect type"));
}


string
dcp::direction_to_string (Direction v)
{
	switch (v) {
	case Direction::LTR:
		return "ltr";
	case Direction::RTL:
		return "rtl";
	case Direction::TTB:
		return "ttb";
	case Direction::BTT:
		return "btt";
	}

	boost::throw_exception (MiscError("unknown subtitle direction type"));
}


Direction
dcp::string_to_direction (string s)
{
	if (s == "ltr" || s == "horizontal") {
		return Direction::LTR;
	} else if (s == "rtl") {
		return Direction::RTL;
	} else if (s == "ttb" || s == "vertical") {
		return Direction::TTB;
	} else if (s == "btt") {
		return Direction::BTT;
	}

	boost::throw_exception (ReadError("unknown subtitle direction type"));
}


string
dcp::marker_to_string (dcp::Marker m)
{
	switch (m) {
	case Marker::FFOC:
		return "FFOC";
	case Marker::LFOC:
		return "LFOC";
	case Marker::FFTC:
		return "FFTC";
	case Marker::LFTC:
		return "LFTC";
	case Marker::FFOI:
		return "FFOI";
	case Marker::LFOI:
		return "LFOI";
	case Marker::FFEC:
		return "FFEC";
	case Marker::LFEC:
		return "LFEC";
	case Marker::FFMC:
		return "FFMC";
	case Marker::LFMC:
		return "LFMC";
	}

	DCP_ASSERT (false);
}


dcp::Marker
dcp::marker_from_string (string s)
{
	if (s == "FFOC") {
		return Marker::FFOC;
	} else if (s == "LFOC") {
		return Marker::LFOC;
	} else if (s == "FFTC") {
		return Marker::FFTC;
	} else if (s == "LFTC") {
		return Marker::LFTC;
	} else if (s == "FFOI") {
		return Marker::FFOI;
	} else if (s == "LFOI") {
		return Marker::LFOI;
	} else if (s == "FFEC") {
		return Marker::FFEC;
	} else if (s == "LFEC") {
		return Marker::LFEC;
	} else if (s == "FFMC") {
		return Marker::FFMC;
	} else if (s == "LFMC") {
		return Marker::LFMC;
	}

	DCP_ASSERT (false);
}


ContentVersion::ContentVersion ()
	: id ("urn:uuid:" + make_uuid())
{

}


ContentVersion::ContentVersion (cxml::ConstNodePtr node)
	: id(node->string_child("Id"))
	, label_text(node->string_child("LabelText"))
{

}


ContentVersion::ContentVersion (string label_text_)
	: id ("urn:uuid:" + make_uuid())
	, label_text (label_text_)
{

}


void
ContentVersion::as_xml (xmlpp::Element* parent) const
{
	auto cv = cxml::add_child(parent, "ContentVersion");
	cxml::add_text_child(cv, "Id", id);
	cxml::add_text_child(cv, "LabelText", label_text);
}


Luminance::Luminance (cxml::ConstNodePtr node)
	: _value(raw_convert<float>(node->content()))
	, _unit(string_to_unit(node->string_attribute("units")))
{

}


Luminance::Luminance (float value, Unit unit)
	: _unit (unit)
{
	set_value (value);
}


void
Luminance::set_value (float v)
{
	if (v < 0) {
		throw dcp::MiscError (String::compose("Invalid luminance value %1", v));
	}

	_value = v;
}


void
Luminance::as_xml (xmlpp::Element* parent, string ns) const
{
	auto lum = cxml::add_child(parent, "Luminance", ns);
	lum->set_attribute("units", unit_to_string(_unit));
	lum->add_child_text(raw_convert<string>(_value, 3));
}


string
Luminance::unit_to_string (Unit u)
{
	switch (u) {
	case Unit::CANDELA_PER_SQUARE_METRE:
		return "candela-per-square-metre";
	case Unit::FOOT_LAMBERT:
		return "foot-lambert";
	default:
		DCP_ASSERT (false);
	}

	return {};
}


Luminance::Unit
Luminance::string_to_unit (string u)
{
	if (u == "candela-per-square-metre") {
		return Unit::CANDELA_PER_SQUARE_METRE;
	} else if (u == "foot-lambert") {
		return Unit::FOOT_LAMBERT;
	}

	throw XMLError (String::compose("Invalid luminance unit %1", u));
}


float
Luminance::value_in_foot_lamberts () const
{
	switch (_unit) {
	case Unit::CANDELA_PER_SQUARE_METRE:
		return _value / 3.426;
	case Unit::FOOT_LAMBERT:
		return _value;
	default:
		DCP_ASSERT (false);
	}
}


bool
dcp::operator== (Luminance const& a, Luminance const& b)
{
	return fabs(a.value() - b.value()) < 0.001 && a.unit() == b.unit();
}


MainSoundConfiguration::MainSoundConfiguration (string s)
{
	vector<string> parts;
	boost::split (parts, s, boost::is_any_of("/"));
	if (parts.empty()) {
		throw MainSoundConfigurationError(s);
	}

	if (parts[0] == "51") {
		_field = MCASoundField::FIVE_POINT_ONE;
	} else if (parts[0] == "71") {
		_field = MCASoundField::SEVEN_POINT_ONE;
	} else {
		_field = MCASoundField::OTHER;
	}

	if (parts.size() < 2) {
		/* I think it's OK to just have the sound field descriptor with no channels, though
		 * to me it's not clear and I might be wrong.
		 */
		return;
	}

	vector<string> channels;
	boost::split (channels, parts[1], boost::is_any_of(","));

	if (channels.size() > 16) {
		throw MainSoundConfigurationError (s);
	}

	for (auto i: channels) {
		if (i == "-") {
			_channels.push_back(optional<Channel>());
		} else {
			_channels.push_back(mca_id_to_channel(i));
		}
	}
}


MainSoundConfiguration::MainSoundConfiguration (MCASoundField field, int channels)
	: _field (field)
{
	_channels.resize (channels);
}


string
MainSoundConfiguration::to_string () const
{
	string c;
	switch (_field) {
	case MCASoundField::FIVE_POINT_ONE:
		c = "51/";
		break;
	case MCASoundField::SEVEN_POINT_ONE:
		c = "71/";
		break;
	default:
		DCP_ASSERT(false);
	}

	for (auto i: _channels) {
		if (!i) {
			c += "-,";
		} else {
			c += channel_to_mca_id(*i, _field) + ",";
		}
	}

	if (c.length() > 0) {
		c = c.substr(0, c.length() - 1);
	}

	return c;
}


optional<Channel>
MainSoundConfiguration::mapping (int index) const
{
	DCP_ASSERT (static_cast<size_t>(index) < _channels.size());
	return _channels[index];
}


void
MainSoundConfiguration::set_mapping (int index, Channel c)
{
	DCP_ASSERT (static_cast<size_t>(index) < _channels.size());
	_channels[index] = c;
}


string
dcp::status_to_string (Status s)
{
	switch (s) {
	case Status::FINAL:
		return "final";
	case Status::TEMP:
		return "temp";
	case Status::PRE:
		return "pre";
	default:
		DCP_ASSERT (false);
	}
}


Status
dcp::string_to_status (string s)
{
	if (s == "final") {
		return Status::FINAL;
	} else if (s == "temp") {
		return Status::TEMP;
	} else if (s == "pre") {
		return Status::PRE;
	}

	DCP_ASSERT (false);
}


Channel
dcp::mca_id_to_channel (string id)
{
	transform(id.begin(), id.end(), id.begin(), ::tolower);

	if (id == "l") {
		return Channel::LEFT;
	} else if (id == "r") {
		return Channel::RIGHT;
	} else if (id == "c") {
		return Channel::CENTRE;
	} else if (id == "lfe") {
		return Channel::LFE;
	} else if (id == "ls" || id == "lss" || id == "lslss") {
		return Channel::LS;
	} else if (id == "rs" || id == "rss" || id == "rsrss") {
		return Channel::RS;
	} else if (id == "hi") {
		return Channel::HI;
	} else if (id == "vin" || id == "vi-n") {
		return Channel::VI;
	} else if (id == "lrs" || id == "lsr") {
		return Channel::BSL;
	} else if (id == "rrs" || id == "rsr") {
		return Channel::BSR;
	} else if (id == "dbox") {
		return Channel::MOTION_DATA;
	} else if (id == "sync" || id == "fsksync") {
		return Channel::SYNC_SIGNAL;
	} else if (id == "slvs") {
		return Channel::SIGN_LANGUAGE;
	}

	throw UnknownChannelIdError (id);
}


string
dcp::channel_to_mca_id (Channel c, MCASoundField field)
{
	switch (c) {
	case Channel::LEFT:
		return "L";
	case Channel::RIGHT:
		return "R";
	case Channel::CENTRE:
		return "C";
	case Channel::LFE:
		return "LFE";
	case Channel::LS:
		return field == MCASoundField::FIVE_POINT_ONE ? "Ls" : "Lss";
	case Channel::RS:
		return field == MCASoundField::FIVE_POINT_ONE ? "Rs" : "Rss";
	case Channel::HI:
		return "HI";
	case Channel::VI:
		return "VIN";
	case Channel::BSL:
		return "Lrs";
	case Channel::BSR:
		return "Rrs";
	case Channel::MOTION_DATA:
		return "DBOX";
	case Channel::SYNC_SIGNAL:
		return "FSKSync";
	case Channel::SIGN_LANGUAGE:
		return "SLVS";
	default:
		break;
	}

	DCP_ASSERT (false);
}


string
dcp::channel_to_mca_name (Channel c, MCASoundField field)
{
	switch (c) {
	case Channel::LEFT:
		return "Left";
	case Channel::RIGHT:
		return "Right";
	case Channel::CENTRE:
		return "Center";
	case Channel::LFE:
		return "LFE";
	case Channel::LS:
		return field == MCASoundField::FIVE_POINT_ONE ? "Left Surround" : "Left Side Surround";
	case Channel::RS:
		return field == MCASoundField::FIVE_POINT_ONE ? "Right Surround" : "Right Side Surround";
	case Channel::HI:
		return "Hearing Impaired";
	case Channel::VI:
		return "Visually Impaired-Narrative";
	case Channel::BSL:
		return "Left Rear Surround";
	case Channel::BSR:
		return "Right Rear Surround";
	case Channel::MOTION_DATA:
		return "D-BOX Motion Code Primary Stream";
	case Channel::SYNC_SIGNAL:
		return "FSK Sync";
	case Channel::SIGN_LANGUAGE:
		return "Sign Language Video Stream";
	default:
		break;
	}

	DCP_ASSERT (false);
}


ASDCP::UL
dcp::channel_to_mca_universal_label (Channel c, MCASoundField field, ASDCP::Dictionary const* dict)
{
	static byte_t sync_signal[] = {
		0x06, 0x0e, 0x2b, 0x34, 0x04, 0x01, 0x01, 0x0d, 0x03, 0x02, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00
	};

	static byte_t sign_language[] = {
		0x06, 0x0e, 0x2b, 0x34, 0x04, 0x01, 0x01, 0x0d, 0x0d, 0x0f, 0x03, 0x02, 0x01, 0x01, 0x00, 0x00
	};

	switch (c) {
	case Channel::LEFT:
		return dict->ul(ASDCP::MDD_DCAudioChannel_L);
	case Channel::RIGHT:
		return dict->ul(ASDCP::MDD_DCAudioChannel_R);
	case Channel::CENTRE:
		return dict->ul(ASDCP::MDD_DCAudioChannel_C);
	case Channel::LFE:
		return dict->ul(ASDCP::MDD_DCAudioChannel_LFE);
	case Channel::LS:
		return dict->ul(field == MCASoundField::FIVE_POINT_ONE ? ASDCP::MDD_DCAudioChannel_Ls : ASDCP::MDD_DCAudioChannel_Lss);
	case Channel::RS:
		return dict->ul(field == MCASoundField::FIVE_POINT_ONE ? ASDCP::MDD_DCAudioChannel_Rs : ASDCP::MDD_DCAudioChannel_Rss);
	case Channel::HI:
		return dict->ul(ASDCP::MDD_DCAudioChannel_HI);
	case Channel::VI:
		return dict->ul(ASDCP::MDD_DCAudioChannel_VIN);
	case Channel::BSL:
		return dict->ul(ASDCP::MDD_DCAudioChannel_Lrs);
	case Channel::BSR:
		return dict->ul(ASDCP::MDD_DCAudioChannel_Rrs);
	case Channel::MOTION_DATA:
		return dict->ul(ASDCP::MDD_DBOXMotionCodePrimaryStream);
	case Channel::SYNC_SIGNAL:
		return ASDCP::UL(sync_signal);
	case Channel::SIGN_LANGUAGE:
		return ASDCP::UL(sign_language);
	default:
		break;
	}

	DCP_ASSERT (false);
}


vector<dcp::Channel>
dcp::used_audio_channels ()
{
	return {
		Channel::LEFT,
		Channel::RIGHT,
		Channel::CENTRE,
		Channel::LFE,
		Channel::LS,
		Channel::RS,
		Channel::HI,
		Channel::VI,
		Channel::BSL,
		Channel::BSR,
		Channel::MOTION_DATA,
		Channel::SYNC_SIGNAL,
		Channel::SIGN_LANGUAGE
	};
}


string
dcp::formulation_to_string (dcp::Formulation formulation)
{
	switch (formulation) {
	case Formulation::MODIFIED_TRANSITIONAL_1:
		return "modified-transitional-1";
	case Formulation::MULTIPLE_MODIFIED_TRANSITIONAL_1:
		return "multiple-modified-transitional-1";
	case Formulation::DCI_ANY:
		return "dci-any";
	case Formulation::DCI_SPECIFIC:
		return "dci-specific";
	}

	DCP_ASSERT (false);
}


dcp::Formulation
dcp::string_to_formulation (string formulation)
{
	if (formulation == "modified-transitional-1") {
		return Formulation::MODIFIED_TRANSITIONAL_1;
	} else if (formulation == "multiple-modified-transitional-1") {
		return Formulation::MULTIPLE_MODIFIED_TRANSITIONAL_1;
	} else if (formulation == "dci-any") {
		return Formulation::DCI_ANY;
	} else if (formulation == "dci-specific") {
		return Formulation::DCI_SPECIFIC;
	}

	DCP_ASSERT (false);
}