ac982c9ed17457be8df058e72a61e47d14142581
[dcpomatic.git] / src / lib / subrip_content.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 "subrip_content.h"
21 #include "util.h"
22 #include "subrip.h"
23 #include "film.h"
24 #include "font.h"
25 #include "raw_convert.h"
26 #include <libxml++/libxml++.h>
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::cout;
32 using boost::shared_ptr;
33 using boost::lexical_cast;
34
35 std::string const SubRipContent::font_id = "font";
36
37 SubRipContent::SubRipContent (shared_ptr<const Film> film, boost::filesystem::path path)
38         : Content (film, path)
39         , SubtitleContent (film, path)
40 {
41
42 }
43
44 SubRipContent::SubRipContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
45         : Content (film, node)
46         , SubtitleContent (film, node, version)
47         , _length (node->number_child<DCPTime::Type> ("Length"))
48 {
49
50 }
51
52 void
53 SubRipContent::examine (boost::shared_ptr<Job> job)
54 {
55         Content::examine (job);
56         SubRip s (shared_from_this ());
57
58         shared_ptr<const Film> film = _film.lock ();
59         DCPOMATIC_ASSERT (film);
60
61         DCPTime len (s.length (), film->active_frame_rate_change (position ()));
62
63         /* Default to turning these subtitles on */
64         set_use_subtitles (true);
65
66         boost::mutex::scoped_lock lm (_mutex);
67         _length = len;
68         add_font (shared_ptr<Font> (new Font (font_id)));
69 }
70
71 string
72 SubRipContent::summary () const
73 {
74         return path_summary() + " " + _("[subtitles]");
75 }
76
77 string
78 SubRipContent::technical_summary () const
79 {
80         return Content::technical_summary() + " - " + _("SubRip subtitles");
81 }
82
83 void
84 SubRipContent::as_xml (xmlpp::Node* node) const
85 {
86         node->add_child("Type")->add_child_text ("SubRip");
87         Content::as_xml (node);
88         SubtitleContent::as_xml (node);
89         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
90 }
91
92 DCPTime
93 SubRipContent::full_length () const
94 {
95         /* XXX: this assumes that the timing of the SubRip file is appropriate
96            for the DCP's frame rate.
97         */
98         return _length;
99 }