Accessor for ClosedCaptionsDialog.
[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 using namespace dcpomatic;
39
40 StringTextFileContent::StringTextFileContent (boost::filesystem::path path)
41         : Content (path)
42 {
43         text.push_back (shared_ptr<TextContent> (new TextContent (this, TEXT_OPEN_SUBTITLE, TEXT_UNKNOWN)));
44 }
45
46 StringTextFileContent::StringTextFileContent (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 StringTextFileContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
55 {
56         Content::examine (film, job);
57         StringTextFile s (shared_from_this ());
58
59         /* Default to turning these subtitles on */
60         only_text()->set_use (true);
61
62         boost::mutex::scoped_lock lm (_mutex);
63         _length = s.length ();
64         only_text()->add_font (shared_ptr<Font> (new Font (TEXT_FONT_ID)));
65 }
66
67 string
68 StringTextFileContent::summary () const
69 {
70         return path_summary() + " " + _("[subtitles]");
71 }
72
73 string
74 StringTextFileContent::technical_summary () const
75 {
76         return Content::technical_summary() + " - " + _("Text subtitles");
77 }
78
79 void
80 StringTextFileContent::as_xml (xmlpp::Node* node, bool with_paths) const
81 {
82         node->add_child("Type")->add_child_text ("TextSubtitle");
83         Content::as_xml (node, with_paths);
84
85         if (only_text()) {
86                 only_text()->as_xml (node);
87         }
88
89         node->add_child("Length")->add_child_text (raw_convert<string> (_length.get ()));
90 }
91
92 DCPTime
93 StringTextFileContent::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 StringTextFileContent::approximate_length () const
101 {
102         return DCPTime (_length, FrameRateChange());
103 }
104
105 string
106 StringTextFileContent::identifier () const
107 {
108         string s = Content::identifier ();
109         s += "_" + only_text()->identifier();
110         return s;
111 }