Merge master.
[dcpomatic.git] / src / lib / subrip_content.cc
1 /*
2     Copyright (C) 2014 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
25 #include "i18n.h"
26
27 using std::stringstream;
28 using std::string;
29 using std::cout;
30 using boost::shared_ptr;
31 using boost::lexical_cast;
32
33 SubRipContent::SubRipContent (shared_ptr<const Film> film, boost::filesystem::path path)
34         : Content (film, path)
35         , SubtitleContent (film, path)
36 {
37
38 }
39
40 SubRipContent::SubRipContent (shared_ptr<const Film> film, shared_ptr<const cxml::Node> node, int version)
41         : Content (film, node)
42         , SubtitleContent (film, node, version)
43         , _length (node->number_child<int64_t> ("Length"))
44 {
45
46 }
47
48 void
49 SubRipContent::examine (boost::shared_ptr<Job> job)
50 {
51         Content::examine (job);
52         SubRip s (shared_from_this ());
53         shared_ptr<const Film> film = _film.lock ();
54         DCPTime len (s.length (), film->active_frame_rate_change (position ()));
55
56         boost::mutex::scoped_lock lm (_mutex);
57         _length = len;
58 }
59
60 string
61 SubRipContent::summary () const
62 {
63         return path_summary() + " " + _("[subtitles]");
64 }
65
66 string
67 SubRipContent::technical_summary () const
68 {
69         return Content::technical_summary() + " - " + _("SubRip subtitles");
70 }
71
72 string
73 SubRipContent::information () const
74 {
75         
76 }
77         
78 void
79 SubRipContent::as_xml (xmlpp::Node* node) const
80 {
81         LocaleGuard lg;
82         
83         node->add_child("Type")->add_child_text ("SubRip");
84         Content::as_xml (node);
85         SubtitleContent::as_xml (node);
86         node->add_child("Length")->add_child_text (lexical_cast<string> (_length.get ()));
87 }
88
89 DCPTime
90 SubRipContent::full_length () const
91 {
92         /* XXX: this assumes that the timing of the SubRip file is appropriate
93            for the DCP's frame rate.
94         */
95         return _length;
96 }
97
98 string
99 SubRipContent::identifier () const
100 {
101         LocaleGuard lg;
102
103         stringstream s;
104         s << Content::identifier()
105           << "_" << subtitle_scale()
106           << "_" << subtitle_x_offset()
107           << "_" << subtitle_y_offset();
108
109         return s.str ();
110 }