Initial work on SMPTE subtitles.
[libdcp.git] / src / mxf.cc
1 /*
2     Copyright (C) 2012-2014 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 made up of MXF files.
22  */
23
24 #include "raw_convert.h"
25 #include "AS_DCP.h"
26 #include "KM_prng.h"
27 #include "KM_util.h"
28 #include "mxf.h"
29 #include "util.h"
30 #include "metadata.h"
31 #include "exceptions.h"
32 #include "dcp_assert.h"
33 #include "compose.hpp"
34 #include <libxml++/nodes/element.h>
35 #include <boost/filesystem.hpp>
36 #include <iostream>
37
38 using std::string;
39 using std::list;
40 using std::pair;
41 using boost::shared_ptr;
42 using boost::dynamic_pointer_cast;
43 using namespace dcp;
44
45 MXF::MXF ()
46         : _decryption_context (0)
47 {
48
49 }
50
51 MXF::~MXF ()
52 {
53         delete _decryption_context;
54 }
55
56 void
57 MXF::fill_writer_info (ASDCP::WriterInfo* writer_info, string id, Standard standard) const
58 {
59         writer_info->ProductVersion = _metadata.product_version;
60         writer_info->CompanyName = _metadata.company_name;
61         writer_info->ProductName = _metadata.product_name.c_str();
62
63         if (standard == INTEROP) {
64                 writer_info->LabelSetType = ASDCP::LS_MXF_INTEROP;
65         } else {
66                 writer_info->LabelSetType = ASDCP::LS_MXF_SMPTE;
67         }
68         unsigned int c;
69         Kumu::hex2bin (id.c_str(), writer_info->AssetUUID, Kumu::UUID_Length, &c);
70         DCP_ASSERT (c == Kumu::UUID_Length);
71
72         if (_key_id) {
73                 Kumu::GenRandomUUID (writer_info->ContextID);
74                 writer_info->EncryptedEssence = true;
75
76                 unsigned int c;
77                 Kumu::hex2bin (_key_id.get().c_str(), writer_info->CryptographicKeyID, Kumu::UUID_Length, &c);
78                 DCP_ASSERT (c == Kumu::UUID_Length);
79         }
80 }
81
82 /** Set the (private) key that will be used to encrypt or decrypt this MXF's content.
83  *  This is the top-secret key that is distributed (itself encrypted) to cinemas
84  *  via Key Delivery Messages (KDMs).
85  *  @param key Key to use.
86  */
87 void
88 MXF::set_key (Key key)
89 {
90         _key = key;
91
92         if (!_key_id) {
93                 /* No key ID so far; we now need one */
94                 _key_id = make_uuid ();
95         }
96         
97         _decryption_context = new ASDCP::AESDecContext;
98         if (ASDCP_FAILURE (_decryption_context->InitKey (_key->value ()))) {
99                 throw MiscError ("could not set up decryption context");
100         }
101 }
102
103 string
104 MXF::read_writer_info (ASDCP::WriterInfo const & info)
105 {
106         char buffer[64];
107
108         Kumu::bin2UUIDhex (info.CryptographicKeyID, ASDCP::UUIDlen, buffer, sizeof (buffer));
109         _key_id = buffer;
110
111         _metadata.read (info);
112         
113         Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer));
114         return buffer;
115 }