Merge branch 'master' of ssh://carlh.dnsalias.org/home/carl/git/libdcp
[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 "AS_DCP.h"
28 #include "KM_util.h"
29 #include "asset.h"
30 #include "util.h"
31 #include "metadata.h"
32
33 using namespace std;
34 using namespace boost;
35 using namespace libdcp;
36
37 Asset::Asset (string directory, string file_name)
38         : _directory (directory)
39         , _file_name (file_name)
40         , _uuid (make_uuid ())
41 {
42         if (_file_name.empty ()) {
43                 _file_name = _uuid + ".xml";
44         }
45 }
46
47 void
48 Asset::write_to_pkl (ostream& s) const
49 {
50         s << "    <Asset>\n"
51           << "      <Id>urn:uuid:" << _uuid << "</Id>\n"
52           << "      <AnnotationText>" << _file_name << "</AnnotationText>\n"
53           << "      <Hash>" << digest() << "</Hash>\n"
54           << "      <Size>" << filesystem::file_size(path()) << "</Size>\n"
55           << "      <Type>application/mxf</Type>\n"
56           << "    </Asset>\n";
57 }
58
59 void
60 Asset::write_to_assetmap (ostream& s) const
61 {
62         s << "    <Asset>\n"
63           << "      <Id>urn:uuid:" << _uuid << "</Id>\n"
64           << "      <ChunkList>\n"
65           << "        <Chunk>\n"
66           << "          <Path>" << _file_name << "</Path>\n"
67           << "          <VolumeIndex>1</VolumeIndex>\n"
68           << "          <Offset>0</Offset>\n"
69           << "          <Length>" << filesystem::file_size(path()) << "</Length>\n"
70           << "        </Chunk>\n"
71           << "      </ChunkList>\n"
72           << "    </Asset>\n";
73 }
74
75 filesystem::path
76 Asset::path () const
77 {
78         filesystem::path p;
79         p /= _directory;
80         p /= _file_name;
81         return p;
82 }
83
84 string
85 Asset::digest () const
86 {
87         if (_digest.empty ()) {
88                 _digest = make_digest (path().string(), 0);
89         }
90
91         return _digest;
92 }