4ad29dde8226a75d6eaffdf7f022804f42f04e7f
[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 std::string;
37 using boost::shared_ptr;
38 using boost::lexical_cast;
39 using namespace libdcp;
40
41 Asset::Asset (boost::filesystem::path directory, boost::filesystem::path file_name)
42         : _directory (directory)
43         , _file_name (file_name)
44         , _uuid (make_uuid ())
45         , _edit_rate (0)
46         , _entry_point (0)
47         , _intrinsic_duration (0)
48         , _duration (0)
49 {
50         if (_file_name.empty ()) {
51                 _file_name = _uuid + ".xml";
52         }
53 }
54
55 void
56 Asset::write_to_pkl (xmlpp::Node* node, bool interop) const
57 {
58         xmlpp::Node* asset = node->add_child ("Asset");
59         asset->add_child("Id")->add_child_text ("urn:uuid:" + _uuid);
60         asset->add_child("AnnotationText")->add_child_text (_file_name.string ());
61         asset->add_child("Hash")->add_child_text (digest ());
62         asset->add_child("Size")->add_child_text (lexical_cast<string> (boost::filesystem::file_size(path())));
63         if (interop) {
64                 asset->add_child("Type")->add_child_text (String::compose ("application/x-smpte-mxf;asdcpKind=%1", asdcp_kind ()));
65         } else {
66                 asset->add_child("Type")->add_child_text ("application/mxf");
67         }
68 }
69
70 void
71 Asset::write_to_assetmap (xmlpp::Node* node) const
72 {
73         xmlpp::Node* asset = node->add_child ("Asset");
74         asset->add_child("Id")->add_child_text ("urn:uuid:" + _uuid);
75         xmlpp::Node* chunk_list = asset->add_child ("ChunkList");
76         xmlpp::Node* chunk = chunk_list->add_child ("Chunk");
77         chunk->add_child("Path")->add_child_text (_file_name.string ());
78         chunk->add_child("VolumeIndex")->add_child_text ("1");
79         chunk->add_child("Offset")->add_child_text ("0");
80         chunk->add_child("Length")->add_child_text (lexical_cast<string> (boost::filesystem::file_size(path())));
81 }
82
83 boost::filesystem::path
84 Asset::path () const
85 {
86         boost::filesystem::path p;
87         p /= _directory;
88         p /= _file_name;
89         return p;
90 }
91
92 string
93 Asset::digest () const
94 {
95         if (_digest.empty ()) {
96                 _digest = make_digest (path().string(), 0);
97         }
98
99         return _digest;
100 }
101
102 void
103 Asset::compute_digest (boost::function<void (float)> progress)
104 {
105         if (!_digest.empty ()) {
106                 return;
107         }
108
109         _digest = make_digest (path().string(), &progress);
110 }
111
112 bool
113 Asset::equals (shared_ptr<const Asset> other, EqualityOptions, boost::function<void (NoteType, string)> note) const
114 {
115         if (_edit_rate != other->_edit_rate) {
116                 note (ERROR, "asset edit rates differ");
117                 return false;
118         }
119         
120         if (_intrinsic_duration != other->_intrinsic_duration) {
121                 note (ERROR, "asset intrinsic durations differ");
122         }
123
124         if (_duration != other->_duration) {
125                 note (ERROR, "asset durations differ");
126         }
127
128         return true;
129 }