More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / string_text_file_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 "string_text_file_content.h"
22 #include "util.h"
23 #include "string_text_file.h"
24 #include "film.h"
25 #include "font.h"
26 #include "text_content.h"
27 #include <dcp/raw_convert.h>
28 #include <libxml++/libxml++.h>
29 #include <iostream>
30
31 #include "i18n.h"
32
33 using std::string;
34 using std::cout;
35 using boost::shared_ptr;
36 using boost::optional;
37 using dcp::raw_convert;
38
39 StringTextFileContent::StringTextFileContent (boost::filesystem::path path)
40         : Content (path)
41 {
42         text.push_back (shared_ptr<TextContent> (new TextContent (this, TEXT_OPEN_SUBTITLE, TEXT_UNKNOWN)));
43 }
44
45 StringTextFileContent::StringTextFileContent (cxml::ConstNodePtr node, int version)
46         : Content (node)
47         , _length (node->number_child<ContentTime::Type> ("Length"))
48 {
49         text = TextContent::from_xml (this, node, version);
50 }
51
52 void
53 StringTextFileContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
54 {
55         Content::examine (film, job);
56         StringTextFile s (shared_from_this ());
57
58         /* Default to turning these subtitles on */
59         only_text()->set_use (true);
60
61         boost::mutex::scoped_lock lm (_mutex);
62         _length = s.length ();
63         only_text()->add_font (shared_ptr<Font> (new Font (TEXT_FONT_ID)));
64 }
65
66 string
67 StringTextFileContent::summary () const
68 {
69         return path_summary() + " " + _("[subtitles]");
70 }
71
72 string
73 StringTextFileContent::technical_summary () const
74 {
75         return Content::technical_summary() + " - " + _("Text subtitles");
76 }
77
78 void
79 StringTextFileContent::as_xml (xmlpp::Node* node, bool with_paths) const
80 {
81         node->add_child("Type")->add_child_text ("TextSubtitle");
82         Content::as_xml (node, with_paths);
83
84         if (only_text()) {
85                 only_text()->as_xml (node);
86         }
87
88         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
89 }
90
91 DCPTime
92 StringTextFileContent::full_length (shared_ptr<const Film> film) const
93 {
94         FrameRateChange const frc (film, shared_from_this());
95         return DCPTime (_length, frc);
96 }
97
98 DCPTime
99 StringTextFileContent::approximate_length () const
100 {
101         return DCPTime (_length, FrameRateChange());
102 }