d8972c14b9f774f933aef782634ec8fefe9c9acc
[libsub.git] / src / subrip_reader.cc
1 /*
2     Copyright (C) 2014-2020 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 /** @file  src/subrip_reader.cc
21  *  @brief SubripReader class.
22  */
23
24 #include "subrip_reader.h"
25 #include "exceptions.h"
26 #include "util.h"
27 #include "sub_assert.h"
28 #include "raw_convert.h"
29 #include "ssa_reader.h"
30 #include <boost/algorithm/string.hpp>
31 #include <boost/lexical_cast.hpp>
32 #include <boost/regex.hpp>
33 #include <boost/bind.hpp>
34 #include <cstdio>
35 #include <vector>
36 #include <iostream>
37
38 using std::string;
39 using std::vector;
40 using std::cout;
41 using std::hex;
42 using boost::lexical_cast;
43 using boost::to_upper;
44 using boost::optional;
45 using boost::function;
46 using boost::algorithm::replace_all;
47 using namespace sub;
48
49 /** @param s Subtitle string encoded in UTF-8 */
50 SubripReader::SubripReader (string s)
51 {
52         this->read (boost::bind(&get_line_string, &s));
53 }
54
55 /** @param f Subtitle file encoded in UTF-8 */
56 SubripReader::SubripReader (FILE* f)
57 {
58         this->read (boost::bind (&get_line_file, f));
59 }
60
61 void
62 SubripReader::read (function<optional<string> ()> get_line)
63 {
64         enum {
65                 COUNTER,
66                 METADATA,
67                 CONTENT
68         } state = COUNTER;
69
70         RawSubtitle rs;
71
72         rs.vertical_position.line = 0;
73         rs.vertical_position.reference = TOP_OF_SUBTITLE;
74
75         while (true) {
76                 auto line = get_line ();
77                 if (!line) {
78                         break;
79                 }
80
81                 trim_right_if (*line, boost::is_any_of ("\n\r"));
82                 remove_unicode_bom (line);
83
84                 /* Keep some history in case there is an error to report */
85                 _context.push_back (*line);
86                 if (_context.size() > 5) {
87                         _context.pop_front ();
88                 }
89
90                 switch (state) {
91                 case COUNTER:
92                 {
93                         if (line->empty ()) {
94                                 /* a blank line at the start is ok */
95                                 break;
96                         }
97
98                         state = METADATA;
99
100                         /* Reset stuff that should not persist across separate subtitles */
101                         rs.bold = false;
102                         rs.italic = false;
103                         rs.underline = false;
104                         rs.vertical_position.line = 0;
105                         rs.vertical_position.reference = TOP_OF_SUBTITLE;
106                 }
107                 break;
108                 case METADATA:
109                 {
110                         vector<string> p;
111
112                         /* Further trim this line, removing spaces from the end */
113                         trim_right_if (*line, boost::is_any_of (" "));
114
115                         boost::algorithm::split (p, *line, boost::algorithm::is_any_of (" "), boost::token_compress_on);
116                         if (p.size() != 3 && p.size() != 7) {
117                                 for (int i = 0; i < 2; ++i) {
118                                         optional<string> ex = get_line ();
119                                         if (ex) {
120                                                 _context.push_back (*ex);
121                                         }
122                                 }
123                                 throw SubripError (*line, "a time/position line", _context);
124                         }
125
126                         rs.from = convert_time (p[0]);
127                         rs.to = convert_time (p[2]);
128
129                         /* XXX: should not ignore coordinate specifications */
130
131                         state = CONTENT;
132                         break;
133                 }
134                 case CONTENT:
135                         if (line->empty ()) {
136                                 state = COUNTER;
137                         } else {
138                                 convert_line (*line, rs);
139                                 rs.vertical_position.line = rs.vertical_position.line.get() + 1;
140                         }
141                         break;
142                 }
143         }
144 }
145
146 Time
147 SubripReader::convert_time (string t)
148 {
149         vector<string> a;
150         boost::algorithm::split (a, t, boost::is_any_of (":"));
151         if (a.size() != 3) {
152                 throw SubripError (t, "time in the format h:m:s,ms", _context);
153         }
154
155         vector<string> b;
156         boost::algorithm::split (b, a[2], boost::is_any_of (","));
157         if (b.size() != 2) {
158                 throw SubripError (t, "time in the format h:m:s,ms", _context);
159         }
160
161         int h, m, s, ms;
162
163         try {
164                 h = lexical_cast<int>(a[0]);
165         } catch (boost::bad_lexical_cast &) {
166                 throw SubripError (t, "integer hour value", _context);
167         }
168
169         try {
170                 m = lexical_cast<int>(a[1]);
171         } catch (boost::bad_lexical_cast &) {
172                 throw SubripError (t, "integer minute value", _context);
173         }
174
175         try {
176                 s = lexical_cast<int>(b[0]);
177         } catch (boost::bad_lexical_cast &) {
178                 throw SubripError (t, "integer second value", _context);
179         }
180
181         try {
182                 ms = lexical_cast<int>(b[1]);
183         } catch (boost::bad_lexical_cast &) {
184                 throw SubripError (t, "integer millisecond value", _context);
185         }
186
187         return Time::from_hms (h, m, s, ms);
188 }
189
190 void
191 SubripReader::convert_line (string t, RawSubtitle& p)
192 {
193         enum {
194                 TEXT,
195                 TAG
196         } state = TEXT;
197
198         string tag;
199
200         vector<Colour> colours;
201         colours.push_back (Colour (1, 1, 1));
202
203         for (size_t i = 0; i < t.size(); ++i) {
204                 switch (state) {
205                 case TEXT:
206                         if (t[i] == '<' || t[i] == '{') {
207                                 state = TAG;
208                         } else {
209                                 p.text += t[i];
210                         }
211                         break;
212                 case TAG:
213                         if (t[i] == '>' || t[i] == '}') {
214                                 if (tag == "b") {
215                                         maybe_content (p);
216                                         p.bold = true;
217                                 } else if (tag == "/b") {
218                                         maybe_content (p);
219                                         p.bold = false;
220                                 } else if (tag == "i") {
221                                         maybe_content (p);
222                                         p.italic = true;
223                                 } else if (tag == "/i") {
224                                         maybe_content (p);
225                                         p.italic = false;
226                                 } else if (tag == "u") {
227                                         maybe_content (p);
228                                         p.underline = true;
229                                 } else if (tag == "/u") {
230                                         maybe_content (p);
231                                         p.underline = false;
232                                 } else if (boost::starts_with (tag, "font")) {
233                                         maybe_content (p);
234                                         boost::regex re (".*color=\"?#([[:xdigit:]]+)\"?");
235                                         boost::smatch match;
236                                         if (boost::regex_search (tag, match, re) && string (match[1]).size() == 6) {
237                                                 p.colour = Colour::from_rgb_hex (match[1]);
238                                                 colours.push_back (p.colour);
239                                         } else {
240                                                 re = boost::regex (
241                                                         ".*color=\"rgba\\("
242                                                         "[[:space:]]*([[:digit:]]+)[[:space:]]*,"
243                                                         "[[:space:]]*([[:digit:]]+)[[:space:]]*,"
244                                                         "[[:space:]]*([[:digit:]]+)[[:space:]]*,"
245                                                         "[[:space:]]*([[:digit:]]+)[[:space:]]*"
246                                                         "\\)\""
247                                                         );
248                                                 if (boost::regex_search (tag, match, re) && match.size() == 5) {
249                                                         p.colour.r = raw_convert<int>(string(match[1])) / 255.0;
250                                                         p.colour.g = raw_convert<int>(string(match[2])) / 255.0;
251                                                         p.colour.b = raw_convert<int>(string(match[3])) / 255.0;
252                                                         colours.push_back (p.colour);
253                                                 } else {
254                                                         throw SubripError (tag, "a colour in the format #rrggbb or rgba(rr,gg,bb,aa)", _context);
255                                                 }
256                                         }
257                                 } else if (tag == "/font") {
258                                         maybe_content (p);
259                                         SUB_ASSERT (!colours.empty());
260                                         colours.pop_back ();
261                                         p.colour = colours.back ();
262                                 } else if (tag.size() > 0 && tag[0] == '\\') {
263                                         SSAReader::parse_style (p, tag, 288, 288);
264                                 }
265                                 tag.clear ();
266                                 state = TEXT;
267                         } else {
268                                 tag += tolower (t[i]);
269                         }
270                         break;
271                 }
272         }
273
274         /* Strip Unicode U+202B (right-to-left embedding) as sometimes it is rendered
275            as a missing character.  This may be a hack.
276         */
277         replace_all (p.text, "\xe2\x80\xab", "");
278
279         maybe_content (p);
280 }
281
282 /* Push p into _subs if it has some text, and clear the text out of p */
283 void
284 SubripReader::maybe_content (RawSubtitle& p)
285 {
286         if (!p.text.empty ()) {
287                 _subs.push_back (p);
288                 p.text.clear ();
289         }
290 }