Replace DCP parser with basic version that uses libdcp.
[libsub.git] / src / reader_factory.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 "stl_binary_reader.h"
22 #include "stl_text_reader.h"
23 #include "dcp_reader.h"
24 #include <libxml++/libxml++.h>
25 #include <boost/algorithm/string.hpp>
26 #include <fstream>
27
28 using std::string;
29 using std::ifstream;
30 using boost::algorithm::ends_with;
31 using boost::shared_ptr;
32 using namespace sub;
33
34 shared_ptr<Reader>
35 sub::reader_factory (boost::filesystem::path file_name)
36 {
37         string ext = file_name.extension().string();
38         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
39
40         if (ext == ".xml") {
41                 return shared_ptr<Reader> (new DCPReader (file_name));
42         }
43
44         if (ext == ".mxf") {
45                 /* Assume this is some MXF-wrapped SMPTE subtitles */
46                 return shared_ptr<Reader> (new DCPReader (file_name));
47         }
48
49         if (ext == ".stl") {
50                 /* Check the start of the DFC */
51                 ifstream f (file_name.string().c_str ());
52                 char buffer[11];
53                 f.read (buffer, 11);
54                 f.seekg (0);
55                 if (f.gcount() == 11 && buffer[3] == 'S' && buffer[4] == 'T' && buffer[5] == 'L') {
56                         return shared_ptr<Reader> (new STLBinaryReader (f));
57                 } else {
58                         return shared_ptr<Reader> (new STLTextReader (f));
59                 }
60         }
61
62         return shared_ptr<Reader> ();
63 }