54bd631cb6586a03dc7ee15c9831193e78c78e56
[dcpomatic.git] / src / lib / dcp_subtitle_content.cc
1 /*
2     Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "font.h"
22 #include "dcp_subtitle_content.h"
23 #include "film.h"
24 #include "text_content.h"
25 #include <dcp/raw_convert.h>
26 #include <dcp/interop_subtitle_asset.h>
27 #include <dcp/smpte_subtitle_asset.h>
28 #include <dcp/interop_load_font_node.h>
29 #include <libxml++/libxml++.h>
30 #include <boost/foreach.hpp>
31
32 #include "i18n.h"
33
34 using std::string;
35 using std::list;
36 using boost::shared_ptr;
37 using boost::dynamic_pointer_cast;
38 using dcp::raw_convert;
39
40 DCPSubtitleContent::DCPSubtitleContent (boost::filesystem::path path)
41         : Content (path)
42 {
43         text.push_back (shared_ptr<TextContent> (new TextContent (this, TEXT_OPEN_SUBTITLE, TEXT_OPEN_SUBTITLE)));
44 }
45
46 DCPSubtitleContent::DCPSubtitleContent (cxml::ConstNodePtr node, int version)
47         : Content (node)
48         , _length (node->number_child<ContentTime::Type> ("Length"))
49 {
50         text = TextContent::from_xml (this, node, version);
51 }
52
53 void
54 DCPSubtitleContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
55 {
56         Content::examine (film, job);
57
58         shared_ptr<dcp::SubtitleAsset> sc = load (path (0));
59
60         shared_ptr<dcp::InteropSubtitleAsset> iop = dynamic_pointer_cast<dcp::InteropSubtitleAsset> (sc);
61         shared_ptr<dcp::SMPTESubtitleAsset> smpte = dynamic_pointer_cast<dcp::SMPTESubtitleAsset> (sc);
62         if (smpte) {
63                 set_video_frame_rate (smpte->edit_rate().numerator);
64         }
65
66         boost::mutex::scoped_lock lm (_mutex);
67
68         /* Default to turning these subtitles on */
69         only_text()->set_use (true);
70
71         if (iop) {
72                 only_text()->set_language (iop->language ());
73         } else if (smpte) {
74                 only_text()->set_language (smpte->language().get_value_or (""));
75         }
76
77         _length = ContentTime::from_seconds (sc->latest_subtitle_out().as_seconds ());
78
79         BOOST_FOREACH (shared_ptr<dcp::LoadFontNode> i, sc->load_font_nodes ()) {
80                 only_text()->add_font (shared_ptr<Font> (new Font (i->id)));
81         }
82 }
83
84 DCPTime
85 DCPSubtitleContent::full_length (shared_ptr<const Film> film) const
86 {
87         FrameRateChange const frc (film, shared_from_this());
88         return DCPTime (_length, frc);
89 }
90
91 DCPTime
92 DCPSubtitleContent::approximate_length () const
93 {
94         return DCPTime (_length, FrameRateChange());
95 }
96
97 string
98 DCPSubtitleContent::summary () const
99 {
100         return path_summary() + " " + _("[subtitles]");
101 }
102
103 string
104 DCPSubtitleContent::technical_summary () const
105 {
106         return Content::technical_summary() + " - " + _("DCP XML subtitles");
107 }
108
109 void
110 DCPSubtitleContent::as_xml (xmlpp::Node* node, bool with_paths) const
111 {
112         node->add_child("Type")->add_child_text ("DCPSubtitle");
113         Content::as_xml (node, with_paths);
114
115         if (only_text()) {
116                 only_text()->as_xml (node);
117         }
118
119         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
120 }