Remove unused code.
[dcpomatic.git] / src / lib / dcp_subtitle_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 "font.h"
21 #include "dcp_subtitle_content.h"
22 #include <dcp/interop_subtitle_content.h>
23 #include <dcp/interop_load_font.h>
24 #include <dcp/raw_convert.h>
25
26 #include "i18n.h"
27
28 using std::string;
29 using std::list;
30 using boost::shared_ptr;
31 using dcp::raw_convert;
32
33 DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, boost::filesystem::path path)
34         : Content (film, path)
35         , SubtitleContent (film, path)
36 {
37         
38 }
39
40 DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
41         : Content (film, node)
42         , SubtitleContent (film, node, version)
43         , _length (node->number_child<DCPTime::Type> ("Length"))
44 {
45
46 }
47
48 void
49 DCPSubtitleContent::examine (shared_ptr<Job> job, bool calculate_digest)
50 {
51         Content::examine (job, calculate_digest);
52         
53         dcp::InteropSubtitleContent sc (path (0));
54
55         boost::mutex::scoped_lock lm (_mutex);
56         
57         _subtitle_language = sc.language ();
58         _length = DCPTime::from_seconds (sc.latest_subtitle_out().to_seconds ());
59
60         list<shared_ptr<dcp::InteropLoadFont> > fonts = sc.load_font_nodes ();
61         for (list<shared_ptr<dcp::InteropLoadFont> >::const_iterator i = fonts.begin(); i != fonts.end(); ++i) {
62                 _fonts.push_back (shared_ptr<Font> (new Font ((*i)->id)));
63         }
64 }
65
66 DCPTime
67 DCPSubtitleContent::full_length () const
68 {
69         /* XXX: this assumes that the timing of the subtitle file is appropriate
70            for the DCP's frame rate.
71         */
72         return _length;
73 }
74
75 string
76 DCPSubtitleContent::summary () const
77 {
78         return path_summary() + " " + _("[subtitles]");
79 }
80
81 string
82 DCPSubtitleContent::technical_summary () const
83 {
84         return Content::technical_summary() + " - " + _("DCP XML subtitles");
85 }
86       
87 void
88 DCPSubtitleContent::as_xml (xmlpp::Node* node) const
89 {
90         node->add_child("Type")->add_child_text ("DCPSubtitle");
91         Content::as_xml (node);
92         SubtitleContent::as_xml (node);
93         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
94 }