Merge branch 'master' into subtitle-content
[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
23 #include "i18n.h"
24
25 using std::stringstream;
26 using std::string;
27 using boost::shared_ptr;
28
29 SubRipContent::SubRipContent (shared_ptr<const Film> film, boost::filesystem::path path)
30         : Content (film, path)
31         , SubtitleContent (film, path)
32 {
33
34 }
35
36 SubRipContent::SubRipContent (shared_ptr<const Film> film, shared_ptr<const cxml::Node> node, int version)
37         : Content (film, node)
38         , SubtitleContent (film, node)
39 {
40
41 }
42
43 void
44 SubRipContent::examine (boost::shared_ptr<Job>)
45 {
46
47 }
48
49 string
50 SubRipContent::summary () const
51 {
52         return path_summary() + " " + _("[subtitles]");
53 }
54
55 string
56 SubRipContent::technical_summary () const
57 {
58         return Content::technical_summary() + " - " + _("SubRip subtitles");
59 }
60
61 string
62 SubRipContent::information () const
63 {
64         
65 }
66         
67 void
68 SubRipContent::as_xml (xmlpp::Node* node)
69 {
70         node->add_child("Type")->add_child_text ("SubRip");
71         Content::as_xml (node);
72         SubtitleContent::as_xml (node);
73 }
74
75 Time
76 SubRipContent::full_length () const
77 {
78
79 }
80
81 string
82 SubRipContent::identifier () const
83 {
84         LocaleGuard lg;
85
86         stringstream s;
87         s << Content::identifier()
88           << "_" << subtitle_scale()
89           << "_" << subtitle_offset();
90
91         return s.str ();
92 }
93