ba0021cfc156fb7c13fef27befc3973f74744493
[libdcp.git] / src / reel_markers_asset.cc
1 /*
2     Copyright (C) 2019 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 #include "reel_markers_asset.h"
35 #include "raw_convert.h"
36 #include "dcp_assert.h"
37 #include <libxml++/libxml++.h>
38 #include <boost/foreach.hpp>
39
40 using std::string;
41 using std::map;
42 using std::max;
43 using boost::optional;
44 using std::shared_ptr;
45 using namespace dcp;
46
47 ReelMarkersAsset::ReelMarkersAsset (Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point)
48         : ReelAsset (make_uuid(), edit_rate, intrinsic_duration, entry_point)
49 {
50
51 }
52
53 ReelMarkersAsset::ReelMarkersAsset (cxml::ConstNodePtr node)
54         : ReelAsset (node)
55 {
56         cxml::ConstNodePtr list = node->node_child ("MarkerList");
57         DCP_ASSERT (list);
58         BOOST_FOREACH (cxml::ConstNodePtr i, list->node_children("Marker")) {
59                 set (marker_from_string(i->string_child("Label")), dcp::Time(i->number_child<int64_t>("Offset"), edit_rate().as_float(), edit_rate().numerator));
60         }
61 }
62
63 string
64 ReelMarkersAsset::cpl_node_name (Standard) const
65 {
66         return "MainMarkers";
67 }
68
69 void
70 ReelMarkersAsset::set (Marker m, Time t)
71 {
72         _markers[m] = t;
73 }
74
75 void
76 ReelMarkersAsset::unset (Marker m)
77 {
78         _markers.erase (m);
79 }
80
81 optional<Time>
82 ReelMarkersAsset::get (Marker m) const
83 {
84         map<Marker, Time>::const_iterator i = _markers.find (m);
85         if (i == _markers.end ()) {
86                 return optional<Time>();
87         }
88         return i->second;
89 }
90
91 xmlpp::Node*
92 ReelMarkersAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const
93 {
94         int const tcr = edit_rate().numerator / edit_rate().denominator;
95         xmlpp::Node* asset = write_to_cpl_asset (node, standard, optional<string>());
96         xmlpp::Node* ml = asset->add_child("MarkerList");
97         for (map<Marker, Time>::const_iterator i = _markers.begin(); i != _markers.end(); ++i) {
98                 xmlpp::Node* m = ml->add_child("Marker");
99                 m->add_child("Label")->add_child_text (marker_to_string(i->first));
100                 m->add_child("Offset")->add_child_text (raw_convert<string>(i->second.as_editable_units(tcr)));
101         }
102
103         return asset;
104 }
105
106 bool
107 ReelMarkersAsset::equals (shared_ptr<const ReelMarkersAsset> other, EqualityOptions opt, NoteHandler note) const
108 {
109         if (!asset_equals(other, opt, note)) {
110                 return false;
111         }
112
113         if (get(Marker::FFOC) != other->get(Marker::FFOC) ||
114             get(Marker::LFOC) != other->get(Marker::LFOC) ||
115             get(Marker::FFTC) != other->get(Marker::FFTC) ||
116             get(Marker::LFTC) != other->get(Marker::LFTC) ||
117             get(Marker::FFOI) != other->get(Marker::FFOI) ||
118             get(Marker::LFOI) != other->get(Marker::LFOI) ||
119             get(Marker::FFEC) != other->get(Marker::FFEC) ||
120             get(Marker::LFEC) != other->get(Marker::LFEC) ||
121             get(Marker::FFMC) != other->get(Marker::FFMC) ||
122             get(Marker::LFMC) != other->get(Marker::LFMC)) {
123                 return false;
124         }
125
126         return true;
127 }