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