Merge branch 'master' of ssh://git.carlh.net/home/carl/git/libdcp
[libdcp.git] / tools / dcpverify.cc
1 /*
2     Copyright (C) 2019 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 <boost/bind.hpp>
36 #include <boost/optional.hpp>
37 #include <boost/filesystem.hpp>
38 #include <boost/foreach.hpp>
39 #include <getopt.h>
40 #include <iostream>
41 #include <cstdlib>
42
43 using std::cout;
44 using std::cerr;
45 using std::string;
46 using std::vector;
47 using std::list;
48 using boost::bind;
49 using boost::optional;
50
51 static void
52 help (string n)
53 {
54         cerr << "Syntax: " << n << " [OPTION] <DCP>\n"
55              << "  -V, --version   show libdcp version\n"
56              << "  -h, --help      show this help\n";
57 }
58
59 void
60 stage (string s, optional<boost::filesystem::path> path)
61 {
62         if (path) {
63                 cout << s << ": " << path->string() << "\n";
64         } else {
65                 cout << s << "\n";
66         }
67 }
68
69 void
70 progress ()
71 {
72
73 }
74
75 int
76 main (int argc, char* argv[])
77 {
78         int option_index = 0;
79         while (true) {
80                 static struct option long_options[] = {
81                         { "version", no_argument, 0, 'V'},
82                         { "help", no_argument, 0, 'h'},
83                         { 0, 0, 0, 0 }
84                 };
85
86                 int c = getopt_long (argc, argv, "Vh", long_options, &option_index);
87
88                 if (c == -1) {
89                         break;
90                 }
91
92                 switch (c) {
93                 case 'V':
94                         cout << "dcpverify version " << LIBDCP_VERSION << "\n";
95                         exit (EXIT_SUCCESS);
96                 case 'h':
97                         help (argv[0]);
98                         exit (EXIT_SUCCESS);
99                 }
100         }
101
102         if (argc <= optind) {
103                 help (argv[0]);
104                 exit (EXIT_FAILURE);
105         }
106
107         if (!boost::filesystem::exists (argv[optind])) {
108                 cerr << argv[0] << ": DCP " << argv[optind] << " not found.\n";
109                 exit (EXIT_FAILURE);
110         }
111
112         vector<boost::filesystem::path> directories;
113         directories.push_back (argv[optind]);
114         list<dcp::VerificationNote> notes = dcp::verify (directories, bind(&stage, _1, _2), bind(&progress));
115
116         bool failed = false;
117         BOOST_FOREACH (dcp::VerificationNote i, notes) {
118                 switch (i.type()) {
119                 case dcp::VerificationNote::VERIFY_ERROR:
120                         cout << "Error: " << i.note() << "\n";
121                         failed = true;
122                         break;
123                 case dcp::VerificationNote::VERIFY_WARNING:
124                         cout << "Warning: " << i.note() << "\n";
125                         break;
126                 case dcp::VerificationNote::VERIFY_NOTE:
127                         cout << "Note: " << i.note() << "\n";
128                         break;
129                 }
130         }
131
132         if (!failed) {
133                 cout << "DCP verified OK.\n";
134         }
135
136         exit (failed ? EXIT_FAILURE : EXIT_SUCCESS);
137 }