Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / string_text_file.cc
1 /*
2     Copyright (C) 2014-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "string_text_file.h"
22 #include "cross.h"
23 #include "exceptions.h"
24 #include "string_text_file_content.h"
25 #include <sub/subrip_reader.h>
26 #include <sub/ssa_reader.h>
27 #include <sub/stl_binary_reader.h>
28 #include <sub/collect.h>
29 #include <unicode/ucsdet.h>
30 #include <unicode/ucnv.h>
31 #include <iostream>
32
33 #include "i18n.h"
34
35 using std::vector;
36 using std::cout;
37 using std::string;
38 using boost::shared_ptr;
39 using boost::scoped_array;
40 using boost::optional;
41 using dcp::Data;
42 using namespace dcpomatic;
43
44 StringTextFile::StringTextFile (shared_ptr<const StringTextFileContent> content)
45 {
46         string ext = content->path(0).extension().string();
47         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
48
49         sub::Reader* reader = 0;
50
51         if (ext == ".stl") {
52                 FILE* f = fopen_boost (content->path(0), "rb");
53                 if (!f) {
54                         throw OpenFileError (content->path(0), errno, OpenFileError::READ);
55                 }
56                 try {
57                         reader = new sub::STLBinaryReader (f);
58                 } catch (...) {
59                         fclose (f);
60                         throw;
61                 }
62                 fclose (f);
63
64         } else {
65                 /* Text-based file; sort out its character encoding before we try to parse it */
66
67                 Data in (content->path (0));
68
69                 UErrorCode status = U_ZERO_ERROR;
70                 UCharsetDetector* detector = ucsdet_open (&status);
71                 ucsdet_setText (detector, reinterpret_cast<const char *> (in.data().get()), in.size(), &status);
72
73                 UCharsetMatch const * match = ucsdet_detect (detector, &status);
74                 char const * in_charset = ucsdet_getName (match, &status);
75
76                 UConverter* to_utf16 = ucnv_open (in_charset, &status);
77                 /* This is a guess; I think we should be able to encode any input in 4 times its input size */
78                 scoped_array<uint16_t> utf16 (new uint16_t[in.size() * 2]);
79                 int const utf16_len = ucnv_toUChars (
80                                 to_utf16, reinterpret_cast<UChar*>(utf16.get()), in.size() * 2,
81                                 reinterpret_cast<const char *> (in.data().get()), in.size(),
82                                 &status
83                                 );
84
85                 UConverter* to_utf8 = ucnv_open ("UTF-8", &status);
86                 /* Another guess */
87                 scoped_array<char> utf8 (new char[utf16_len * 2]);
88                 ucnv_fromUChars (to_utf8, utf8.get(), utf16_len * 2, reinterpret_cast<UChar*>(utf16.get()), utf16_len, &status);
89
90                 /* Fix OS X line endings */
91                 size_t utf8_len = strlen (utf8.get ());
92                 for (size_t i = 0; i < utf8_len; ++i) {
93                         if (utf8[i] == '\r' && ((i == utf8_len - 1) || utf8[i + 1] != '\n')) {
94                                 utf8[i] = '\n';
95                         }
96                 }
97
98                 ucsdet_close (detector);
99                 ucnv_close (to_utf16);
100                 ucnv_close (to_utf8);
101
102                 if (ext == ".srt") {
103                         reader = new sub::SubripReader (utf8.get());
104                 } else if (ext == ".ssa" || ext == ".ass") {
105                         reader = new sub::SSAReader (utf8.get());
106                 }
107         }
108
109         if (reader) {
110                 _subtitles = sub::collect<vector<sub::Subtitle> > (reader->subtitles ());
111         }
112
113         delete reader;
114 }
115
116 /** @return time of first subtitle, if there is one */
117 optional<ContentTime>
118 StringTextFile::first () const
119 {
120         if (_subtitles.empty()) {
121                 return optional<ContentTime>();
122         }
123
124         return ContentTime::from_seconds(_subtitles[0].from.all_as_seconds());
125 }
126
127 ContentTime
128 StringTextFile::length () const
129 {
130         if (_subtitles.empty ()) {
131                 return ContentTime ();
132         }
133
134         return ContentTime::from_seconds (_subtitles.back().to.all_as_seconds ());
135 }