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