Various attempts to clean up DCP comparison code.
[libdcp.git] / src / reel_mxf_asset.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "reel_mxf_asset.h"
21 #include "mxf.h"
22 #include <libcxml/cxml.h>
23
24 using boost::shared_ptr;
25 using namespace dcp;
26
27 ReelMXFAsset::ReelMXFAsset ()
28         : ReelAsset ()
29 {
30
31 }
32
33 ReelMXFAsset::ReelMXFAsset (shared_ptr<MXF> mxf, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point)
34         : ReelAsset (mxf, edit_rate, intrinsic_duration, entry_point)
35         , _key_id (mxf->key_id ())
36 {
37
38 }
39
40 ReelMXFAsset::ReelMXFAsset (shared_ptr<const cxml::Node> node)
41         : ReelAsset (node)
42         , _key_id (node->optional_string_child ("KeyId").get_value_or (""))
43 {
44         if (_key_id.length() > 9) {
45                 _key_id = _key_id.substr (9);
46         }
47 }
48
49 void
50 ReelMXFAsset::write_to_cpl (xmlpp::Node* node, Standard s) const
51 {
52         ReelAsset::write_to_cpl (node, s);
53
54         xmlpp::Node::NodeList c = node->get_children ();
55         xmlpp::Node::NodeList::iterator i = c.begin();
56         while (i != c.end() && (*i)->get_name() != cpl_node_name ()) {
57                 ++i;
58         }
59
60         assert (i != c.end ());
61         
62         if (!_key_id.empty ()) {
63                 (*i)->add_child("KeyId")->add_child_text ("urn:uuid:" + _key_id);
64         }
65 }