No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / dcp_subtitle_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 "font.h"
21 #include "dcp_subtitle_content.h"
22 #include "raw_convert.h"
23 #include <dcp/interop_subtitle_asset.h>
24 #include <dcp/smpte_subtitle_asset.h>
25 #include <dcp/interop_load_font_node.h>
26 #include <boost/foreach.hpp>
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::list;
32 using boost::shared_ptr;
33 using boost::dynamic_pointer_cast;
34
35 DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, boost::filesystem::path path)
36         : Content (film, path)
37         , SubtitleContent (film, path)
38 {
39
40 }
41
42 DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
43         : Content (film, node)
44         , SubtitleContent (film, node, version)
45         , _length (node->number_child<DCPTime::Type> ("Length"))
46 {
47
48 }
49
50 void
51 DCPSubtitleContent::examine (shared_ptr<Job> job)
52 {
53         Content::examine (job);
54
55         shared_ptr<dcp::SubtitleAsset> sc = load (path (0));
56
57         /* Default to turning these subtitles on */
58         set_use_subtitles (true);
59
60         boost::mutex::scoped_lock lm (_mutex);
61
62         shared_ptr<dcp::InteropSubtitleAsset> iop = dynamic_pointer_cast<dcp::InteropSubtitleAsset> (sc);
63         if (iop) {
64                 _subtitle_language = iop->language ();
65         }
66         shared_ptr<dcp::SMPTESubtitleAsset> smpte = dynamic_pointer_cast<dcp::SMPTESubtitleAsset> (sc);
67         if (smpte) {
68                 _subtitle_language = smpte->language().get_value_or ("");
69         }
70
71         _length = DCPTime::from_seconds (sc->latest_subtitle_out().as_seconds ());
72
73         BOOST_FOREACH (shared_ptr<dcp::LoadFontNode> i, sc->load_font_nodes ()) {
74                 add_font (shared_ptr<Font> (new Font (i->id)));
75         }
76 }
77
78 DCPTime
79 DCPSubtitleContent::full_length () const
80 {
81         /* XXX: this assumes that the timing of the subtitle file is appropriate
82            for the DCP's frame rate.
83         */
84         return _length;
85 }
86
87 string
88 DCPSubtitleContent::summary () const
89 {
90         return path_summary() + " " + _("[subtitles]");
91 }
92
93 string
94 DCPSubtitleContent::technical_summary () const
95 {
96         return Content::technical_summary() + " - " + _("DCP XML subtitles");
97 }
98
99 void
100 DCPSubtitleContent::as_xml (xmlpp::Node* node) const
101 {
102         node->add_child("Type")->add_child_text ("DCPSubtitle");
103         Content::as_xml (node);
104         SubtitleContent::as_xml (node);
105         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
106 }