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