Bump libdcp for build fixes.
[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 "subrip_reader.h"
25 #include "sub_assert.h"
26 #include <libxml++/libxml++.h>
27 #include <boost/algorithm/string.hpp>
28 #include <fstream>
29
30 using std::string;
31 using std::ifstream;
32 using boost::algorithm::ends_with;
33 using boost::shared_ptr;
34 using namespace sub;
35
36 shared_ptr<Reader>
37 sub::reader_factory (boost::filesystem::path file_name)
38 {
39         string ext = file_name.extension().string();
40         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
41
42         if (ext == ".xml") {
43                 return shared_ptr<Reader> (new DCPReader (file_name));
44         }
45
46         if (ext == ".mxf") {
47                 /* Assume this is some MXF-wrapped SMPTE subtitles */
48                 return shared_ptr<Reader> (new DCPReader (file_name));
49         }
50
51         if (ext == ".stl") {
52                 /* Check the start of the DFC */
53                 ifstream f (file_name.string().c_str ());
54                 char buffer[11];
55                 f.read (buffer, 11);
56                 f.seekg (0);
57                 if (f.gcount() == 11 && buffer[3] == 'S' && buffer[4] == 'T' && buffer[5] == 'L') {
58                         return shared_ptr<Reader> (new STLBinaryReader (f));
59                 } else {
60                         return shared_ptr<Reader> (new STLTextReader (f));
61                 }
62         }
63
64         if (ext == ".srt") {
65                 FILE* f = fopen (file_name.string().c_str(), "r");
66                 SUB_ASSERT (f);
67                 shared_ptr<Reader> r (new SubripReader(f));
68                 fclose (f);
69                 return r;
70         }
71
72         return shared_ptr<Reader> ();
73 }