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