More STL binary reading stuff.
[libsub.git] / tools / dumpsubs.cc
1 /*
2     Copyright (C) 2014 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 <map>
21 #include <boost/filesystem.hpp>
22 #include <getopt.h>
23 #include "reader_factory.h"
24 #include "reader.h"
25
26 using std::string;
27 using std::cerr;
28 using std::cout;
29 using std::map;
30 using std::list;
31 using boost::shared_ptr;
32 using namespace sub;
33
34 static void
35 help (string n)
36 {
37         cerr << "Syntax: " << n << " <file>\n";
38 }
39
40 int
41 main (int argc, char* argv[])
42 {
43         int option_index = 0;
44         while (1) {
45                 static struct option long_options[] = {
46                         { "help", no_argument, 0, 'h'},
47                         { 0, 0, 0, 0 }
48                 };
49
50                 int c = getopt_long (argc, argv, "h", long_options, &option_index);
51
52                 if (c == -1) {
53                         break;
54                 }
55
56                 switch (c) {
57                 case 'h':
58                         help (argv[0]);
59                         exit (EXIT_SUCCESS);
60                 }
61         }
62
63         if (argc <= optind || argc > (optind + 1)) {
64                 help (argv[0]);
65                 exit (EXIT_FAILURE);
66         }
67
68         if (!boost::filesystem::exists (argv[optind])) {
69                 cerr << argv[0] << ": file " << argv[optind] << " not found.\n";
70                 exit (EXIT_FAILURE);
71         }
72
73         shared_ptr<Reader> reader = reader_factory (argv[optind]);
74         if (!reader) {
75                 cerr << argv[0] << ": could not read subtitle file " << argv[optind] << "\n";
76                 exit (EXIT_FAILURE);
77         }
78
79         map<string, string> metadata = reader->metadata ();
80         for (map<string, string>::const_iterator i = metadata.begin(); i != metadata.end(); ++i) {
81                 cout << i->first << ": " << i->second << "\n";
82         }
83
84         list<sub::Subtitle> subs = reader->subtitles ();
85         for (list<sub::Subtitle>::const_iterator i = subs.begin(); i != subs.end(); ++i) {
86                 cout << i->text << "\n";
87         }
88
89         return 0;
90 }