Switch away from the many-constructor-arguments approach to a hopefully simpler API.
[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 <fstream>
26 #include <boost/filesystem.hpp>
27 #include <boost/lexical_cast.hpp>
28 #include <boost/function.hpp>
29 #include <libxml++/nodes/element.h>
30 #include "AS_DCP.h"
31 #include "KM_util.h"
32 #include "asset.h"
33 #include "util.h"
34 #include "metadata.h"
35
36 using namespace std;
37 using namespace boost;
38 using namespace libdcp;
39
40 Asset::Asset (boost::filesystem::path directory, string 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) 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);
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         asset->add_child("Type")->add_child_text ("application/mxf");
63 }
64
65 void
66 Asset::write_to_assetmap (xmlpp::Node* node) const
67 {
68         xmlpp::Node* asset = node->add_child ("Asset");
69         asset->add_child("Id")->add_child_text ("urn:uuid:" + _uuid);
70         xmlpp::Node* chunk_list = asset->add_child ("ChunkList");
71         xmlpp::Node* chunk = chunk_list->add_child ("Chunk");
72         chunk->add_child("Path")->add_child_text (_file_name);
73         chunk->add_child("VolumeIndex")->add_child_text ("1");
74         chunk->add_child("Offset")->add_child_text ("0");
75         chunk->add_child("Length")->add_child_text (lexical_cast<string> (filesystem::file_size(path())));
76 }
77
78 filesystem::path
79 Asset::path () const
80 {
81         filesystem::path p;
82         p /= _directory;
83         p /= _file_name;
84         return p;
85 }
86
87 string
88 Asset::digest () const
89 {
90         if (_digest.empty ()) {
91                 _digest = make_digest (path().string(), 0);
92         }
93
94         return _digest;
95 }
96
97 void
98 Asset::compute_digest (boost::function<void (float)> progress)
99 {
100         if (!_digest.empty ()) {
101                 return;
102         }
103
104         _digest = make_digest (path().string(), &progress);
105 }
106
107 bool
108 Asset::equals (shared_ptr<const Asset> other, EqualityOptions, boost::function<void (NoteType, string)> note) const
109 {
110         if (_edit_rate != other->_edit_rate) {
111                 note (ERROR, "asset edit rates differ");
112                 return false;
113         }
114         
115         if (_intrinsic_duration != other->_intrinsic_duration) {
116                 note (ERROR, "asset intrinsic durations differ");
117         }
118
119         if (_duration != other->_duration) {
120                 note (ERROR, "asset durations differ");
121         }
122
123         return true;
124 }