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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/*
Copyright (C) 2012-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 "cross.h"
#include "dcpomatic_assert.h"
#include "dcpomatic_log.h"
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <libxml++/libxml++.h>
LIBDCP_ENABLE_WARNINGS
#include <fmt/format.h>
#include <boost/algorithm/string.hpp>
#include <iostream>
#include "i18n.h"
using std::map;
using std::string;
using std::vector;
using boost::optional;
Drive::Drive(string xml)
{
cxml::Document doc;
doc.read_string(xml);
_device = doc.string_child("Device");
#ifdef DCPOMATIC_OSX
_mounted = doc.bool_child("Mounted");
#else
for (auto i: doc.node_children("MountPoint")) {
_mount_points.push_back(i->content());
}
#endif
_size = doc.number_child<uint64_t>("Size");
_vendor = doc.optional_string_child("Vendor");
_model = doc.optional_string_child("Model");
}
string
Drive::as_xml() const
{
xmlpp::Document doc;
auto root = doc.create_root_node("Drive");
cxml::add_text_child(root, "Device", _device);
#ifdef DCPOMATIC_OSX
cxml::add_text_child(root, "Mounted", _mounted ? "1" : "0");
#else
for (auto i: _mount_points) {
cxml::add_text_child(root, "MountPoint", i.string());
}
#endif
cxml::add_text_child(root, "Size", fmt::to_string(_size));
if (_vendor) {
cxml::add_text_child(root, "Vendor", *_vendor);
}
if (_model) {
cxml::add_text_child(root, "Model", *_model);
}
return doc.write_to_string("UTF-8");
}
string
Drive::description() const
{
char gb[64];
snprintf(gb, 64, "%.1f", _size / 1000000000.0);
string name;
if (_vendor) {
name += *_vendor;
}
if (_model) {
if (!name.empty()) {
name += " " + *_model;
} else {
name = *_model;
}
}
if (name.empty()) {
name = _("Unknown");
}
return fmt::format(_("{} ({} GB) [{}]"), name, gb, _device);
}
string
Drive::log_summary() const
{
string mp;
#ifdef DCPOMATIC_OSX
if (_mounted) {
mp += "mounted ";
} else {
mp += "not mounted ";
}
#else
mp = "mounted on ";
for (auto i: _mount_points) {
mp += i.string() + ",";
}
if (_mount_points.empty()) {
mp = "[none]";
} else {
mp = mp.substr(0, mp.length() - 1);
}
#endif
return fmt::format(
"Device {} mounted on {} size {} vendor {} model {}",
_device, mp, _size, _vendor.get_value_or("[none]"), _model.get_value_or("[none]")
);
}
|