Start of STL binary reader; start of dumpsubs.
[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 <fstream>
21 #include <boost/algorithm/string.hpp>
22 #include "reader_factory.h"
23 #include "dcp_reader.h"
24 #include "stl_binary_reader.h"
25 #include "stl_text_reader.h"
26
27 using std::string;
28 using std::ifstream;
29 using boost::algorithm::ends_with;
30 using boost::shared_ptr;
31 using namespace sub;
32
33 shared_ptr<Reader>
34 sub::reader_factory (string file_name)
35 {
36         ifstream f (file_name.c_str ());
37         if (!f.good ()) {
38                 return shared_ptr<Reader> ();
39         }
40         
41         if (ends_with (file_name, ".xml") || ends_with (file_name, ".XML")) {
42                 return shared_ptr<Reader> (new DCPReader (f));
43         }
44
45         if (ends_with (file_name, ".stl") || ends_with (file_name, ".STL")) {
46                 /* Check the start of the DFC */
47                 char buffer[11];
48                 f.read (buffer, 11);
49                 f.seekg (0);
50                 if (f.gcount() == 11 && buffer[3] == 'S' && buffer[4] == 'T' && buffer[5] == 'L') {
51                         return shared_ptr<Reader> (new STLBinaryReader (f));
52                 } else {
53                         return shared_ptr<Reader> (new STLTextReader (f));
54                 }
55         }
56
57         return shared_ptr<Reader> ();
58 }