ASDCPLib builds.
[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 #include <boost/filesystem.hpp>
21 #include "AS_DCP.h"
22 #include "KM_util.h"
23 #include "asset.h"
24 #include "util.h"
25 #include "tags.h"
26
27 using namespace std;
28 using namespace boost;
29 using namespace libdcp;
30
31 /** Construct an Asset.
32  *  @param p Pathname of MXF file.
33  *  @param fps Frames per second.
34  *  @param len Length in frames.
35  */
36
37 Asset::Asset (string p, int fps, int len)
38         : _mxf_path (p)
39         , _fps (fps)
40         , _length (len)
41         , _uuid (make_uuid ())
42 {
43         
44 }
45
46 void
47 Asset::write_to_pkl (ostream& s) const
48 {
49         s << "      <Id>urn:uuid:" << _uuid << "</Id>\n"
50           << "      <AnnotationText>" << filesystem::path(_mxf_path).filename() << "</AnnotationText>\n"
51           << "      <Hash>" << _digest << "</Hash>\n"
52           << "      <Size>" << filesystem::file_size(_mxf_path) << "</Size>\n"
53           << "      <Type>application/mxf</Type>\n";
54 }
55
56 void
57 Asset::write_to_assetmap (ostream& s) const
58 {
59         s << "    <Asset>\n"
60           << "      <Id>urn:uuid:" << _uuid << "</Id>\n"
61           << "      <ChunkList>\n"
62           << "        <Chunk>\n"
63           << "          <Path>" << filesystem::path(_mxf_path).filename() << "</Path>\n"
64           << "          <VolumeIndex>1</VolumeIndex>\n"
65           << "          <Offset>0</Offset>\n"
66           << "          <Length>" << filesystem::file_size(_mxf_path) << "</Length>\n"
67           << "        </Chunk>\n"
68           << "      </ChunkList>\n"
69           << "    </Asset>\n";
70 }
71
72 void
73 Asset::fill_writer_info (ASDCP::WriterInfo* writer_info) const
74 {
75         writer_info->ProductVersion = Tags::instance()->product_version;
76         writer_info->CompanyName = Tags::instance()->company_name;
77         writer_info->ProductName = Tags::instance()->product_name.c_str();
78
79         writer_info->LabelSetType = ASDCP::LS_MXF_SMPTE;
80         Kumu::GenRandomUUID (writer_info->AssetUUID);
81 }