Bump libdcp for ReelMXF API change.
[libsub.git] / tools / dumpsubs.cc
1 /*
2     Copyright (C) 2014-2020 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "reader_factory.h"
21 #include "reader.h"
22 #include "collect.h"
23 #include "util.h"
24 #include <getopt.h>
25 #include <boost/filesystem.hpp>
26 #include <map>
27 #include <iostream>
28
29 using std::string;
30 using std::cerr;
31 using std::cout;
32 using std::map;
33 using std::shared_ptr;
34 using namespace sub;
35
36 static void
37 help (string n)
38 {
39         cerr << "Syntax: " << n << " <file>\n";
40 }
41
42 int
43 main (int argc, char* argv[])
44 {
45         int option_index = 0;
46         while (1) {
47                 static struct option long_options[] = {
48                         { "help", no_argument, 0, 'h'},
49                         { 0, 0, 0, 0 }
50                 };
51
52                 int c = getopt_long (argc, argv, "h", long_options, &option_index);
53
54                 if (c == -1) {
55                         break;
56                 }
57
58                 switch (c) {
59                 case 'h':
60                         help (argv[0]);
61                         exit (EXIT_SUCCESS);
62                 }
63         }
64
65         if (argc <= optind || argc > (optind + 1)) {
66                 help (argv[0]);
67                 exit (EXIT_FAILURE);
68         }
69
70         if (!boost::filesystem::exists (argv[optind])) {
71                 cerr << argv[0] << ": file " << argv[optind] << " not found.\n";
72                 exit (EXIT_FAILURE);
73         }
74
75         shared_ptr<Reader> reader = reader_factory (argv[optind]);
76         if (!reader) {
77                 cerr << argv[0] << ": could not read subtitle file " << argv[optind] << "\n";
78                 exit (EXIT_FAILURE);
79         }
80
81         sub::dump (reader, cout);
82
83         return 0;
84 }