Use libxml++ for writing 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 <fstream>
26 #include <boost/filesystem.hpp>
27 #include <boost/function.hpp>
28 #include <boost/lexical_cast.hpp>
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 (string directory, string file_name, int edit_rate, int intrinsic_duration)
40         : _directory (directory)
41         , _file_name (file_name)
42         , _uuid (make_uuid ())
43         , _edit_rate (edit_rate)
44         , _entry_point (0)
45         , _intrinsic_duration (intrinsic_duration)
46         , _duration (intrinsic_duration)
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);
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);
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());
91         }
92
93         return _digest;
94 }
95
96
97 bool
98 Asset::equals (shared_ptr<const Asset> other, EqualityOptions, boost::function<void (NoteType, string)> note) const
99 {
100         if (_edit_rate != other->_edit_rate) {
101                 note (ERROR, "MXF edit rates differ");
102                 return false;
103         }
104         
105         if (_intrinsic_duration != other->_intrinsic_duration) {
106                 note (ERROR, "MXF intrinsic durations differ");
107                 return false;
108         }
109
110         if (_duration != other->_duration) {
111                 note (ERROR, "MXF durations differ");
112                 return false;
113         }
114
115         return true;
116 }