Tidying.
[libdcp.git] / src / mxf.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libdcp is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34
35 /** @file  src/mxf.cc
36  *  @brief MXF class
37  */
38
39
40 #include "raw_convert.h"
41 #include "mxf.h"
42 #include "util.h"
43 #include "metadata.h"
44 #include "exceptions.h"
45 #include "dcp_assert.h"
46 #include "compose.hpp"
47 #include <asdcp/AS_DCP.h>
48 #include <asdcp/KM_prng.h>
49 #include <asdcp/KM_util.h>
50 #include <libxml++/nodes/element.h>
51 #include <boost/filesystem.hpp>
52 #include <iostream>
53
54
55 using std::string;
56 using std::cout;
57 using std::list;
58 using std::pair;
59 using std::shared_ptr;
60 using std::dynamic_pointer_cast;
61 using namespace dcp;
62
63
64 MXF::MXF ()
65         : _context_id (make_uuid ())
66 {
67         /* Subclasses can create MXFs with unspecified _standard but are expected to fill
68            _standard in once the MXF is read.
69         */
70 }
71
72
73 MXF::MXF (Standard standard)
74         : _context_id (make_uuid ())
75         , _standard (standard)
76 {
77
78 }
79
80
81 void
82 MXF::fill_writer_info (ASDCP::WriterInfo* writer_info, string id) const
83 {
84         writer_info->ProductVersion = _metadata.product_version;
85         writer_info->CompanyName = _metadata.company_name;
86         writer_info->ProductName = _metadata.product_name;
87
88         DCP_ASSERT (_standard);
89         if (_standard == Standard::INTEROP) {
90                 writer_info->LabelSetType = ASDCP::LS_MXF_INTEROP;
91         } else {
92                 writer_info->LabelSetType = ASDCP::LS_MXF_SMPTE;
93         }
94         unsigned int c;
95         Kumu::hex2bin (id.c_str(), writer_info->AssetUUID, Kumu::UUID_Length, &c);
96         DCP_ASSERT (c == Kumu::UUID_Length);
97
98         writer_info->UsesHMAC = true;
99
100         if (_key_id) {
101                 Kumu::hex2bin (_context_id.c_str(), writer_info->ContextID, Kumu::UUID_Length, &c);
102                 writer_info->EncryptedEssence = true;
103
104                 unsigned int c;
105                 Kumu::hex2bin (_key_id.get().c_str(), writer_info->CryptographicKeyID, Kumu::UUID_Length, &c);
106                 DCP_ASSERT (c == Kumu::UUID_Length);
107         }
108 }
109
110
111 void
112 MXF::set_key (Key key)
113 {
114         _key = key;
115
116         if (!_key_id) {
117                 /* No key ID so far; we now need one */
118                 _key_id = make_uuid ();
119         }
120 }
121
122
123 string
124 MXF::read_writer_info (ASDCP::WriterInfo const & info)
125 {
126         char buffer[64];
127
128         if (info.EncryptedEssence) {
129                 Kumu::bin2UUIDhex (info.CryptographicKeyID, ASDCP::UUIDlen, buffer, sizeof (buffer));
130                 _key_id = buffer;
131         }
132
133         switch (info.LabelSetType) {
134         case ASDCP::LS_MXF_INTEROP:
135                 _standard = Standard::INTEROP;
136                 break;
137         case ASDCP::LS_MXF_SMPTE:
138                 _standard = Standard::SMPTE;
139                 break;
140         default:
141                 throw ReadError ("Unrecognised label set type in MXF");
142         }
143
144         _metadata.read (info);
145
146         Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer));
147         return buffer;
148 }