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