blob: 9b3ae86c065656ad71394e0b01575ed30f2af4e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "subtitle_analysis.h"
#include "exceptions.h"
#include <libcxml/cxml.h>
#include <dcp/raw_convert.h>
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <libxml++/libxml++.h>
LIBDCP_ENABLE_WARNINGS
using std::make_shared;
using std::shared_ptr;
using std::string;
using dcp::raw_convert;
int const SubtitleAnalysis::_current_state_version = 1;
SubtitleAnalysis::SubtitleAnalysis (boost::filesystem::path path)
{
cxml::Document f ("SubtitleAnalysis");
f.read_file (path);
if (f.optional_number_child<int>("Version").get_value_or(1) < _current_state_version) {
/* Too old. Throw an exception so that this analysis is re-run. */
throw OldFormatError ("Subtitle analysis file is too old");
}
cxml::NodePtr bounding_box = f.optional_node_child("BoundingBox");
if (bounding_box) {
_bounding_box = dcpomatic::Rect<double> ();
_bounding_box->x = bounding_box->number_child<double>("X");
_bounding_box->y = bounding_box->number_child<double>("Y");
_bounding_box->width = bounding_box->number_child<double>("Width");
_bounding_box->height = bounding_box->number_child<double>("Height");
}
_analysis_x_offset = f.number_child<double>("AnalysisXOffset");
_analysis_y_offset = f.number_child<double>("AnalysisYOffset");
}
void
SubtitleAnalysis::write (boost::filesystem::path path) const
{
auto doc = make_shared<xmlpp::Document>();
xmlpp::Element* root = doc->create_root_node ("SubtitleAnalysis");
root->add_child("Version")->add_child_text (raw_convert<string>(_current_state_version));
if (_bounding_box) {
auto bounding_box = root->add_child("BoundingBox");
bounding_box->add_child("X")->add_child_text(raw_convert<string>(_bounding_box->x));
bounding_box->add_child("Y")->add_child_text(raw_convert<string>(_bounding_box->y));
bounding_box->add_child("Width")->add_child_text(raw_convert<string>(_bounding_box->width));
bounding_box->add_child("Height")->add_child_text(raw_convert<string>(_bounding_box->height));
}
root->add_child("AnalysisXOffset")->add_child_text(raw_convert<string>(_analysis_x_offset));
root->add_child("AnalysisYOffset")->add_child_text(raw_convert<string>(_analysis_y_offset));
doc->write_to_file_formatted (path.string());
}
|