Missing iostream includes for Arch.
[libsub.git] / src / stl_binary_reader.cc
1 /*
2     Copyright (C) 2014-2015 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 "stl_binary_reader.h"
21 #include "exceptions.h"
22 #include "iso6937.h"
23 #include "stl_util.h"
24 #include "compose.hpp"
25 #include <boost/lexical_cast.hpp>
26 #include <boost/algorithm/string.hpp>
27 #include <boost/locale.hpp>
28 #include <iostream>
29
30 using std::map;
31 using std::vector;
32 using std::cout;
33 using std::string;
34 using std::istream;
35 using boost::lexical_cast;
36 using boost::algorithm::replace_all;
37 using boost::is_any_of;
38 using boost::locale::conv::utf_to_utf;
39 using namespace sub;
40
41 STLBinaryReader::STLBinaryReader (istream& in)
42         : _buffer (new unsigned char[1024])
43 {
44         in.read ((char *) _buffer, 1024);
45         if (in.gcount() != 1024) {
46                 throw STLError ("Could not read GSI block from binary STL file");
47         }
48
49         code_page_number = atoi (get_string (0, 3).c_str ());
50         frame_rate = stl_dfc_to_frame_rate (get_string (3, 8));
51         display_standard = _tables.display_standard_file_to_enum (get_string (11, 1));
52         language_group = _tables.language_group_file_to_enum (get_string (12, 2));
53         language = _tables.language_file_to_enum (get_string (14, 2));
54         original_programme_title = get_string (16, 32);
55         original_episode_title = get_string (48, 32);
56         translated_programme_title = get_string (80, 32);
57         translated_episode_title = get_string (112, 32);
58         translator_name = get_string (144, 32);
59         translator_contact_details = get_string (176, 32);
60         subtitle_list_reference_code = get_string (208, 16);
61         creation_date = get_string (224, 6);
62         revision_date = get_string (230, 6);
63         revision_number = get_string (236, 2);
64
65         tti_blocks = atoi (get_string (238, 5).c_str ());
66         number_of_subtitles = atoi (get_string (243, 5).c_str ());
67         subtitle_groups = atoi (get_string (248, 3).c_str ());
68         maximum_characters = atoi (get_string (251, 2).c_str ());
69         maximum_rows = atoi (get_string (253, 2).c_str ());
70         timecode_status = _tables.timecode_status_file_to_enum (get_string (255, 1));
71         start_of_programme = get_string (256, 8);
72         first_in_cue = get_string (264, 8);
73         disks = atoi (get_string (272, 1).c_str ());
74         disk_sequence_number = atoi (get_string (273, 1).c_str ());
75         country_of_origin = get_string (274, 3);
76         publisher = get_string (277, 32);
77         editor_name = get_string (309, 32);
78         editor_contact_details = get_string (341, 32);
79
80         for (int i = 0; i < tti_blocks; ++i) {
81
82                 in.read ((char *) _buffer, 128);
83                 if (in.gcount() != 128) {
84                         throw STLError ("Could not read TTI block from binary STL file");
85                 }
86
87                 if (_tables.comment_file_to_enum (get_int (15, 1)) == COMMENT_YES) {
88                         continue;
89                 }
90
91                 string const whole = get_string (16, 112);
92
93                 /* Split the text up into lines (8Ah is a new line) */
94                 vector<string> lines;
95                 split (lines, whole, is_any_of ("\x8a"));
96
97                 for (size_t i = 0; i < lines.size(); ++i) {
98                         RawSubtitle sub;
99                         sub.from = get_timecode (5);
100                         sub.to = get_timecode (9);
101                         sub.vertical_position.line = get_int (13, 1) + i;
102                         sub.vertical_position.lines = maximum_rows;
103                         sub.vertical_position.reference = TOP_OF_SCREEN;
104
105                         string text;
106                         for (size_t j = 0; j < lines[i].size(); ++j) {
107
108                                 unsigned char const c = static_cast<unsigned char> (lines[i][j]);
109
110                                 if (c == 0x8f) {
111                                         /* Unused space i.e. end of line */
112                                         break;
113                                 }
114
115                                 if (c >= 0x80 && c <= 0x83) {
116                                         /* Italic or underline control code */
117                                         sub.text = utf_to_utf<char> (iso6937_to_utf16 (text.c_str()));
118                                         _subs.push_back (sub);
119                                         text.clear ();
120                                 }
121
122                                 switch (c) {
123                                 case 0x80:
124                                         sub.italic = true;
125                                         break;
126                                 case 0x81:
127                                         sub.italic = false;
128                                         break;
129                                 case 0x82:
130                                         sub.underline = true;
131                                         break;
132                                 case 0x83:
133                                         sub.underline = false;
134                                         break;
135                                 default:
136                                         text += lines[i][j];
137                                         break;
138                                 }
139                         }
140
141                         if (!text.empty ()) {
142                                 sub.text = utf_to_utf<char> (iso6937_to_utf16 (text.c_str()));
143                                 _subs.push_back (sub);
144                         }
145
146                         /* XXX: justification */
147                 }
148         }
149 }
150
151 STLBinaryReader::~STLBinaryReader ()
152 {
153         delete[] _buffer;
154 }
155
156 string
157 STLBinaryReader::get_string (int offset, int length) const
158 {
159         string s;
160         for (int i = 0; i < length; ++i) {
161                 s += _buffer[offset + i];
162         }
163
164         return s;
165 }
166
167 int
168 STLBinaryReader::get_int (int offset, int length) const
169 {
170         int v = 0;
171         for (int i = 0; i < length; ++i) {
172                 v |= _buffer[offset + i] << (8 * i);
173         }
174
175         return v;
176 }
177
178 Time
179 STLBinaryReader::get_timecode (int offset) const
180 {
181         return Time::from_hmsf (_buffer[offset], _buffer[offset + 1], _buffer[offset + 2], _buffer[offset + 3], Rational (frame_rate, 1));
182 }
183
184 map<string, string>
185 STLBinaryReader::metadata () const
186 {
187         map<string, string> m;
188
189         m["Code page number"] = lexical_cast<string> (code_page_number);
190         m["Frame rate"] = lexical_cast<string> (frame_rate);
191         m["Display standard"] = _tables.display_standard_enum_to_description (display_standard);
192         m["Language group"] = _tables.language_group_enum_to_description (language_group);
193         m["Language"] = _tables.language_enum_to_description (language);
194         m["Original programme title"] = original_programme_title;
195         m["Original episode title"] = original_episode_title;
196         m["Translated programme title"] = translated_programme_title;
197         m["Translated episode title"] = translated_episode_title;
198         m["Translator name"] = translator_name;
199         m["Translator contact details"] = translator_contact_details;
200         m["Subtitle list reference code"] = subtitle_list_reference_code;
201         m["Creation date"] = creation_date;
202         m["Revision date"] = revision_date;
203         m["Revision number"] = revision_number;
204         m["TTI blocks"] = lexical_cast<string> (tti_blocks);
205         m["Number of subtitles"] = lexical_cast<string> (number_of_subtitles);
206         m["Subtitle groups"] = lexical_cast<string> (subtitle_groups);
207         m["Maximum characters"] = lexical_cast<string> (maximum_characters);
208         m["Maximum rows"] = lexical_cast<string> (maximum_rows);
209         m["Timecode status"] = _tables.timecode_status_enum_to_description (timecode_status);
210         m["Start of programme"] = start_of_programme;
211         m["First in cue"] = first_in_cue;
212         m["Disks"] = lexical_cast<string> (disks);
213         m["Disk sequence number"] = lexical_cast<string> (disk_sequence_number);
214         m["Country of origin"] = country_of_origin;
215         m["Publisher"] = publisher;
216         m["Editor name"] = editor_name;
217         m["Editor contact details"] = editor_contact_details;
218
219         return m;
220 }