Missed update to private test repo version.
[dcpomatic.git] / src / lib / dcp_subtitle_content.cc
1 /*
2     Copyright (C) 2014-2021 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
31 #include "i18n.h"
32
33 using std::dynamic_pointer_cast;
34 using std::list;
35 using std::make_shared;
36 using std::shared_ptr;
37 using std::string;
38 using dcp::raw_convert;
39 using namespace dcpomatic;
40
41 DCPSubtitleContent::DCPSubtitleContent (boost::filesystem::path path)
42         : Content (path)
43 {
44         text.push_back (make_shared<TextContent>(this, TextType::OPEN_SUBTITLE, TextType::OPEN_SUBTITLE));
45 }
46
47 DCPSubtitleContent::DCPSubtitleContent (cxml::ConstNodePtr node, int version)
48         : Content (node)
49         , _length (node->number_child<ContentTime::Type> ("Length"))
50 {
51         list<string> notes;
52         text = TextContent::from_xml (this, node, version, notes);
53 }
54
55 void
56 DCPSubtitleContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
57 {
58         Content::examine (film, job);
59
60         auto sc = load (path(0));
61
62         auto iop = dynamic_pointer_cast<dcp::InteropSubtitleAsset>(sc);
63         auto smpte = dynamic_pointer_cast<dcp::SMPTESubtitleAsset>(sc);
64         if (smpte) {
65                 set_video_frame_rate (smpte->edit_rate().numerator);
66         }
67
68         boost::mutex::scoped_lock lm (_mutex);
69
70         /* Default to turning these subtitles on */
71         only_text()->set_use (true);
72
73         _length = ContentTime::from_seconds (sc->latest_subtitle_out().as_seconds());
74
75         sc->fix_empty_font_ids ();
76
77         auto font_data = sc->font_data();
78         for (auto node: sc->load_font_nodes()) {
79                 auto data = font_data.find(node->id);
80                 if (data != font_data.end()) {
81                         only_text()->add_font(make_shared<Font>(node->id, data->second));
82                 } else {
83                         only_text()->add_font(make_shared<Font>(node->id));
84                 }
85         }
86
87         if (only_text()->fonts().empty()) {
88                 only_text()->add_font(make_shared<Font>(""));
89         }
90 }
91
92 DCPTime
93 DCPSubtitleContent::full_length (shared_ptr<const Film> film) const
94 {
95         FrameRateChange const frc (film, shared_from_this());
96         return DCPTime (_length, frc);
97 }
98
99 DCPTime
100 DCPSubtitleContent::approximate_length () const
101 {
102         return DCPTime (_length, FrameRateChange());
103 }
104
105 string
106 DCPSubtitleContent::summary () const
107 {
108         return path_summary() + " " + _("[subtitles]");
109 }
110
111 string
112 DCPSubtitleContent::technical_summary () const
113 {
114         return Content::technical_summary() + " - " + _("DCP XML subtitles");
115 }
116
117 void
118 DCPSubtitleContent::as_xml (xmlpp::Node* node, bool with_paths) const
119 {
120         node->add_child("Type")->add_child_text ("DCPSubtitle");
121         Content::as_xml (node, with_paths);
122
123         if (only_text()) {
124                 only_text()->as_xml (node);
125         }
126
127         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
128 }