Bv2.1 8.5: Features must have FFEC/FFMC markers.
[libdcp.git] / tools / dcpverify.cc
1 /*
2     Copyright (C) 2020 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 #include "verify.h"
35 #include "compose.hpp"
36 #include "common.h"
37 #include <boost/bind.hpp>
38 #include <boost/optional.hpp>
39 #include <boost/filesystem.hpp>
40 #include <boost/foreach.hpp>
41 #include <getopt.h>
42 #include <iostream>
43 #include <cstdlib>
44
45 using std::cout;
46 using std::cerr;
47 using std::string;
48 using std::vector;
49 using std::list;
50 using boost::bind;
51 using boost::optional;
52
53 static void
54 help (string n)
55 {
56         cerr << "Syntax: " << n << " [OPTION] <DCP>\n"
57              << "  -V, --version           show libdcp version\n"
58              << "  -h, --help              show this help\n"
59              << "  --ignore-missing-assets don't give errors about missing assets\n"
60              << "  --ignore-bv21-smpte     don't give the SMPTE Bv2.1 error about a DCP not being SMPTE\n"
61              << "  -q, --quiet             don't report progress\n";
62 }
63
64 void
65 stage (bool quiet, string s, optional<boost::filesystem::path> path)
66 {
67         if (quiet) {
68                 return;
69         }
70
71         if (path) {
72                 cout << s << ": " << path->string() << "\n";
73         } else {
74                 cout << s << "\n";
75         }
76 }
77
78 void
79 progress ()
80 {
81
82 }
83
84 int
85 main (int argc, char* argv[])
86 {
87         dcp::init ();
88
89         bool ignore_missing_assets = false;
90         bool ignore_bv21_smpte = false;
91         bool quiet = false;
92
93         int option_index = 0;
94         while (true) {
95                 static struct option long_options[] = {
96                         { "version", no_argument, 0, 'V' },
97                         { "help", no_argument, 0, 'h' },
98                         { "ignore-missing-assets", no_argument, 0, 'A' },
99                         { "ignore-bv21-smpte", no_argument, 0, 'B' },
100                         { "quiet", no_argument, 0, 'q' },
101                         { 0, 0, 0, 0 }
102                 };
103
104                 int c = getopt_long (argc, argv, "VhABq", long_options, &option_index);
105
106                 if (c == -1) {
107                         break;
108                 }
109
110                 switch (c) {
111                 case 'V':
112                         cout << "dcpverify version " << LIBDCP_VERSION << "\n";
113                         exit (EXIT_SUCCESS);
114                 case 'h':
115                         help (argv[0]);
116                         exit (EXIT_SUCCESS);
117                 case 'A':
118                         ignore_missing_assets = true;
119                         break;
120                 case 'B':
121                         ignore_bv21_smpte = true;
122                         break;
123                 case 'q':
124                         quiet = true;
125                         break;
126                 }
127         }
128
129         if (argc <= optind) {
130                 help (argv[0]);
131                 exit (EXIT_FAILURE);
132         }
133
134         if (!boost::filesystem::exists (argv[optind])) {
135                 cerr << argv[0] << ": DCP " << argv[optind] << " not found.\n";
136                 exit (EXIT_FAILURE);
137         }
138
139         vector<boost::filesystem::path> directories;
140         directories.push_back (argv[optind]);
141         auto notes = dcp::verify (directories, bind(&stage, quiet, _1, _2), bind(&progress), "xsd");
142         dcp::filter_notes (notes, ignore_missing_assets);
143
144         bool failed = false;
145         BOOST_FOREACH (dcp::VerificationNote i, notes) {
146                 if (ignore_bv21_smpte && i.code() == dcp::VerificationNote::NOT_SMPTE) {
147                         continue;
148                 }
149                 switch (i.type()) {
150                 case dcp::VerificationNote::VERIFY_ERROR:
151                         cout << "Error: " << note_to_string(i) << "\n";
152                         failed = true;
153                         break;
154                 case dcp::VerificationNote::VERIFY_BV21_ERROR:
155                         cout << "Bv2.1 error: " << note_to_string(i) << "\n";
156                         break;
157                 case dcp::VerificationNote::VERIFY_WARNING:
158                         cout << "Warning: " << note_to_string(i) << "\n";
159                         break;
160                 }
161         }
162
163         if (!failed && !quiet) {
164                 cout << "DCP verified OK.\n";
165         }
166
167         exit (failed ? EXIT_FAILURE : EXIT_SUCCESS);
168 }