Fix use of Z as a timezone (meaning UTC).
[libdcp.git] / tools / dcprecover.cc
1 /*
2     Copyright (C) 2018-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 #include "asset_factory.h"
36 #include "cpl.h"
37 #include "dcp.h"
38 #include "exceptions.h"
39 #include "filesystem.h"
40 #include "reel_asset.h"
41 #include "warnings.h"
42 #include <getopt.h>
43 LIBDCP_DISABLE_WARNINGS
44 #include <libxml++/libxml++.h>
45 LIBDCP_ENABLE_WARNINGS
46 #include <boost/filesystem.hpp>
47 #include <iostream>
48
49
50 using std::cerr;
51 using std::cout;
52 using std::make_shared;
53 using std::shared_ptr;
54 using std::string;
55 using std::vector;
56 using boost::optional;
57
58
59 static void
60 help (string n)
61 {
62         cerr << "Syntax: " << n << " [OPTION] <DCP>]\n"
63              << "  -h, --help         show this help\n"
64              << "  -o, --output       output DCP directory\n";
65 }
66
67
68 int
69 main (int argc, char* argv[])
70 {
71         dcp::init ();
72
73         int option_index = 0;
74         optional<boost::filesystem::path> output;
75         while (true) {
76                 struct option long_options[] = {
77                         { "help", no_argument, 0, 'h' },
78                         { "output", required_argument, 0, 'o' },
79                         { 0, 0, 0, 0 }
80                 };
81
82                 int c = getopt_long (argc, argv, "ho:", long_options, &option_index);
83
84                 if (c == -1) {
85                         break;
86                 }
87
88                 switch (c) {
89                 case 'h':
90                         help (argv[0]);
91                         exit (EXIT_SUCCESS);
92                 case 'o':
93                         output = optarg;
94                         break;
95                 }
96         }
97
98         if (optind >= argc) {
99                 help (argv[0]);
100                 exit (EXIT_FAILURE);
101         }
102
103         boost::filesystem::path dcp_dir = argv[optind];
104
105         /* Try to read it and report errors */
106
107         dcp::DCP dcp (dcp_dir);
108         vector<dcp::VerificationNote> notes;
109         try {
110                 dcp.read (&notes, true);
111         } catch (dcp::ReadError& e) {
112                 cout << "Error:" <<  e.what() << "\n";
113         }
114
115         for (auto i: notes) {
116                 cout << "Error: " << dcp::note_to_string(i) << "\n";
117         }
118
119         /* Look for a CPL */
120
121         shared_ptr<dcp::CPL> cpl;
122         for (auto i: dcp::filesystem::directory_iterator(dcp_dir)) {
123                 if (i.path().extension() == ".xml") {
124                         try {
125                                 cpl = make_shared<dcp::CPL>(i.path());
126                         } catch (dcp::ReadError& e) {
127                                 cout << "Error: " << e.what() << "\n";
128                         } catch (xmlpp::parse_error& e) {
129                                 cout << "Error: " << e.what() << "\n";
130                         }
131                 }
132         }
133
134         if (cpl) {
135                 cout << "Got a CPL!\n";
136
137                 if (!output) {
138                         cerr << "No output directory specified.\n";
139                         exit(1);
140                 }
141
142                 /* Read all MXF assets */
143                 vector<shared_ptr<dcp::Asset>> assets;
144                 for (auto i: dcp::filesystem::directory_iterator(dcp_dir)) {
145                         if (i.path().extension() == ".mxf") {
146                                 try {
147                                         auto asset = dcp::asset_factory(i.path(), true);
148                                         asset->set_file (*output / i.path().filename());
149                                         cout << "Hashing " << i.path().filename() << "\n";
150                                         asset->hash([](int64_t done, int64_t size) {
151                                                 cout << (float(done) * 100 / size) << "%               \r";
152                                         });
153                                         cout << "100%                     \n";
154                                         assets.push_back (asset);
155                                 } catch (dcp::ReadError& e) {
156                                         cout << "Error: " << e.what() << "\n";
157                                 }
158                         }
159                 }
160
161                 dcp::DCP fixed (*output);
162                 fixed.add (cpl);
163                 fixed.resolve_refs (assets);
164                 fixed.write_xml ();
165                 cout << "Fixed XML files written to " << output->string() << "\n";
166         }
167
168         return 0;
169 }