Fix various bugs in subtitle/ccap verification.
[libdcp.git] / src / reel_markers_asset.cc
1 /*
2     Copyright (C) 2019-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34
35 /** @file  src/reel_markers_asset.cc
36  *  @brief ReelMarkersAsset class
37  */
38
39
40 #include "reel_markers_asset.h"
41 #include "raw_convert.h"
42 #include "dcp_assert.h"
43 #include <libxml++/libxml++.h>
44
45
46 using std::string;
47 using std::map;
48 using std::max;
49 using boost::optional;
50 using std::shared_ptr;
51 using namespace dcp;
52
53
54 ReelMarkersAsset::ReelMarkersAsset (Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point)
55         : ReelAsset (make_uuid(), edit_rate, intrinsic_duration, entry_point)
56 {
57
58 }
59
60
61 ReelMarkersAsset::ReelMarkersAsset (cxml::ConstNodePtr node)
62         : ReelAsset (node)
63 {
64         auto list = node->node_child ("MarkerList");
65         DCP_ASSERT (list);
66         for (auto i: list->node_children("Marker")) {
67                 set (marker_from_string(i->string_child("Label")), dcp::Time(i->number_child<int64_t>("Offset"), edit_rate().as_float(), edit_rate().numerator));
68         }
69 }
70
71
72 string
73 ReelMarkersAsset::cpl_node_name (Standard) const
74 {
75         return "MainMarkers";
76 }
77
78
79 void
80 ReelMarkersAsset::set (Marker m, Time t)
81 {
82         _markers[m] = t;
83 }
84
85
86 void
87 ReelMarkersAsset::unset (Marker m)
88 {
89         _markers.erase (m);
90 }
91
92
93 optional<Time>
94 ReelMarkersAsset::get (Marker m) const
95 {
96         auto i = _markers.find (m);
97         if (i == _markers.end ()) {
98                 return {};
99         }
100         return i->second;
101 }
102
103
104 xmlpp::Node*
105 ReelMarkersAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const
106 {
107         int const tcr = edit_rate().numerator / edit_rate().denominator;
108         auto asset = write_to_cpl_asset (node, standard, optional<string>());
109         auto ml = asset->add_child("MarkerList");
110         for (auto const& i: _markers) {
111                 auto m = ml->add_child("Marker");
112                 m->add_child("Label")->add_child_text(marker_to_string(i.first));
113                 m->add_child("Offset")->add_child_text(raw_convert<string>(i.second.as_editable_units_ceil(tcr)));
114         }
115
116         return asset;
117 }
118
119 bool
120 ReelMarkersAsset::equals (shared_ptr<const ReelMarkersAsset> other, EqualityOptions opt, NoteHandler note) const
121 {
122         if (!asset_equals(other, opt, note)) {
123                 return false;
124         }
125
126         if (get(Marker::FFOC) != other->get(Marker::FFOC) ||
127             get(Marker::LFOC) != other->get(Marker::LFOC) ||
128             get(Marker::FFTC) != other->get(Marker::FFTC) ||
129             get(Marker::LFTC) != other->get(Marker::LFTC) ||
130             get(Marker::FFOI) != other->get(Marker::FFOI) ||
131             get(Marker::LFOI) != other->get(Marker::LFOI) ||
132             get(Marker::FFEC) != other->get(Marker::FFEC) ||
133             get(Marker::LFEC) != other->get(Marker::LFEC) ||
134             get(Marker::FFMC) != other->get(Marker::FFMC) ||
135             get(Marker::LFMC) != other->get(Marker::LFMC)) {
136                 return false;
137         }
138
139         return true;
140 }