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