/* Copyright (C) 2016 Carl Hetherington This file is part of libdcp. libdcp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. libdcp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with libdcp. If not, see . In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file, and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than OpenSSL. If you modify file(s) with this exception, you may extend this exception to your version of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, then also delete it here. */ #include "encrypted_kdm.h" #include "decrypted_kdm.h" #include "crypto_context.h" #include "key.h" #include "util.h" #include "atmos_asset.h" #include "atmos_frame.h" #include "atmos_asset_reader.h" #include "atmos_asset_writer.h" #include "exceptions.h" #include #include #include using std::string; using std::cerr; using std::cout; using boost::optional; using std::shared_ptr; static void help (string n) { cerr << "Syntax: " << n << " [OPTION] ]\n" << " -v, --version show libdcp version\n" << " -h, --help show this help\n" << " -o, --output output filename\n" << " -k, --kdm KDM file\n" << " -p, --private-key private key file\n"; } int main (int argc, char* argv[]) { dcp::init (); optional output_file; optional kdm_file; optional private_key_file; int option_index = 0; while (true) { struct option long_options[] = { { "version", no_argument, 0, 'v' }, { "help", no_argument, 0, 'h' }, { "output", required_argument, 0, 'o'}, { "kdm", required_argument, 0, 'k'}, { "private-key", required_argument, 0, 'p'}, { 0, 0, 0, 0 } }; int c = getopt_long (argc, argv, "vho:k:p:", long_options, &option_index); if (c == -1) { break; } switch (c) { case 'v': cout << "libdcp version " << LIBDCP_VERSION << "\n"; exit (EXIT_SUCCESS); case 'h': help (argv[0]); exit (EXIT_SUCCESS); case 'o': output_file = optarg; break; case 'k': kdm_file = optarg; break; case 'p': private_key_file = optarg; break; } } if (optind >= argc) { help (argv[0]); exit (EXIT_FAILURE); } boost::filesystem::path input_file = argv[optind]; if (!output_file) { cerr << "You must specify -o or --output\n"; exit (EXIT_FAILURE); } if (!kdm_file) { cerr << "You must specify -k or --kdm\n"; exit (EXIT_FAILURE); } if (!private_key_file) { cerr << "You must specify -p or --private-key\n"; exit (EXIT_FAILURE); } dcp::EncryptedKDM encrypted_kdm (dcp::file_to_string (kdm_file.get ())); dcp::DecryptedKDM decrypted_kdm (encrypted_kdm, dcp::file_to_string (private_key_file.get())); /* XXX: only works for Atmos! */ try { dcp::AtmosAsset in (input_file); shared_ptr reader = in.start_read (); dcp::AtmosAsset out ( in.edit_rate(), in.first_frame(), in.max_channel_count(), in.max_object_count(), in.atmos_version() ); shared_ptr writer = out.start_write (output_file.get()); for (int64_t i = 0; i < in.intrinsic_duration(); ++i) { shared_ptr f = reader->get_frame (i); writer->write (f->data(), f->size()); } } catch (dcp::ReadError& e) { cerr << "Unknown MXF format.\n"; return EXIT_FAILURE; } return 0; }