More renaming.
[dcpomatic.git] / src / lib / text_file_decoder.cc
1 /*
2     Copyright (C) 2014-2016 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 "text_file_decoder.h"
22 #include "text_file_content.h"
23 #include "text_content.h"
24 #include <dcp/subtitle_string.h>
25 #include <boost/foreach.hpp>
26 #include <iostream>
27
28 using std::list;
29 using std::vector;
30 using std::string;
31 using std::cout;
32 using std::max;
33 using boost::shared_ptr;
34 using boost::optional;
35 using boost::dynamic_pointer_cast;
36
37 TextTextDecoder::TextTextDecoder (shared_ptr<const TextFileContent> content, shared_ptr<Log> log)
38         : TextFile (content)
39         , _next (0)
40 {
41         subtitle.reset (new TextDecoder (this, content->subtitle, log));
42 }
43
44 void
45 TextTextDecoder::seek (ContentTime time, bool accurate)
46 {
47         /* It's worth back-tracking a little here as decoding is cheap and it's nice if we don't miss
48            too many subtitles when seeking.
49         */
50         time -= ContentTime::from_seconds (5);
51         if (time < ContentTime()) {
52                 time = ContentTime();
53         }
54
55         Decoder::seek (time, accurate);
56
57         _next = 0;
58         while (_next < _subtitles.size() && ContentTime::from_seconds (_subtitles[_next].from.all_as_seconds ()) < time) {
59                 ++_next;
60         }
61 }
62
63 bool
64 TextTextDecoder::pass ()
65 {
66         if (_next >= _subtitles.size ()) {
67                 return true;
68         }
69
70         ContentTimePeriod const p = content_time_period (_subtitles[_next]);
71         subtitle->emit_plain (p, _subtitles[_next]);
72
73         ++_next;
74         return false;
75 }
76
77 ContentTimePeriod
78 TextTextDecoder::content_time_period (sub::Subtitle s) const
79 {
80         return ContentTimePeriod (
81                 ContentTime::from_seconds (s.from.all_as_seconds()),
82                 ContentTime::from_seconds (s.to.all_as_seconds())
83                 );
84 }