Various bits related to subtitle font handling, particularly copying fonts to the...
[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_content.h>
24 #include <dcp/smpte_subtitle_content.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
34 DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, boost::filesystem::path path)
35         : Content (film, path)
36         , SubtitleContent (film, path)
37 {
38         
39 }
40
41 DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
42         : Content (film, node)
43         , SubtitleContent (film, node, version)
44         , _length (node->number_child<DCPTime::Type> ("Length"))
45 {
46
47 }
48
49 void
50 DCPSubtitleContent::examine (shared_ptr<Job> job)
51 {
52         Content::examine (job);
53
54         shared_ptr<dcp::SubtitleContent> sc = load (path (0));
55         
56         boost::mutex::scoped_lock lm (_mutex);
57         
58         _subtitle_language = sc->language ();
59         _length = DCPTime::from_seconds (sc->latest_subtitle_out().to_seconds ());
60
61         BOOST_FOREACH (shared_ptr<dcp::LoadFontNode> i, sc->load_font_nodes ()) {
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 }