Fix a couple of errors in Interop XML
[libdcp.git] / src / asset.cc
1 /*
2     Copyright (C) 2012 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 /** @file  src/asset.cc
21  *  @brief Parent class for assets of DCPs.
22  */
23
24 #include <iostream>
25 #include <boost/filesystem.hpp>
26 #include <boost/lexical_cast.hpp>
27 #include <boost/function.hpp>
28 #include <libxml++/nodes/element.h>
29 #include "AS_DCP.h"
30 #include "KM_util.h"
31 #include "asset.h"
32 #include "util.h"
33 #include "metadata.h"
34 #include "compose.hpp"
35
36 using namespace std;
37 using namespace boost;
38 using namespace libdcp;
39
40 Asset::Asset (boost::filesystem::path directory, boost::filesystem::path file_name)
41         : _directory (directory)
42         , _file_name (file_name)
43         , _uuid (make_uuid ())
44         , _edit_rate (0)
45         , _entry_point (0)
46         , _intrinsic_duration (0)
47         , _duration (0)
48 {
49         if (_file_name.empty ()) {
50                 _file_name = _uuid + ".xml";
51         }
52 }
53
54 void
55 Asset::write_to_pkl (xmlpp::Node* node, bool interop) const
56 {
57         xmlpp::Node* asset = node->add_child ("Asset");
58         asset->add_child("Id")->add_child_text ("urn:uuid:" + _uuid);
59         asset->add_child("AnnotationText")->add_child_text (_file_name.string ());
60         asset->add_child("Hash")->add_child_text (digest ());
61         asset->add_child("Size")->add_child_text (lexical_cast<string> (filesystem::file_size(path())));
62         if (interop) {
63                 asset->add_child("Type")->add_child (String::compose ("application/x-smpte-mxf;asdcpKind=%1", asdcp_kind ()));
64         } else {
65                 asset->add_child("Type")->add_child_text ("application/mxf");
66         }
67 }
68
69 void
70 Asset::write_to_assetmap (xmlpp::Node* node) const
71 {
72         xmlpp::Node* asset = node->add_child ("Asset");
73         asset->add_child("Id")->add_child_text ("urn:uuid:" + _uuid);
74         xmlpp::Node* chunk_list = asset->add_child ("ChunkList");
75         xmlpp::Node* chunk = chunk_list->add_child ("Chunk");
76         chunk->add_child("Path")->add_child_text (_file_name.string ());
77         chunk->add_child("VolumeIndex")->add_child_text ("1");
78         chunk->add_child("Offset")->add_child_text ("0");
79         chunk->add_child("Length")->add_child_text (lexical_cast<string> (filesystem::file_size(path())));
80 }
81
82 filesystem::path
83 Asset::path () const
84 {
85         filesystem::path p;
86         p /= _directory;
87         p /= _file_name;
88         return p;
89 }
90
91 string
92 Asset::digest () const
93 {
94         if (_digest.empty ()) {
95                 _digest = make_digest (path().string(), 0);
96         }
97
98         return _digest;
99 }
100
101 void
102 Asset::compute_digest (boost::function<void (float)> progress)
103 {
104         if (!_digest.empty ()) {
105                 return;
106         }
107
108         _digest = make_digest (path().string(), &progress);
109 }
110
111 bool
112 Asset::equals (shared_ptr<const Asset> other, EqualityOptions, boost::function<void (NoteType, string)> note) const
113 {
114         if (_edit_rate != other->_edit_rate) {
115                 note (ERROR, "asset edit rates differ");
116                 return false;
117         }
118         
119         if (_intrinsic_duration != other->_intrinsic_duration) {
120                 note (ERROR, "asset intrinsic durations differ");
121         }
122
123         if (_duration != other->_duration) {
124                 note (ERROR, "asset durations differ");
125         }
126
127         return true;
128 }