/* Copyright (C) 2012-2021 Carl Hetherington 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 . */ #include "cross.h" #include "dcpomatic_assert.h" #include "dcpomatic_log.h" #include LIBDCP_DISABLE_WARNINGS #include LIBDCP_ENABLE_WARNINGS #include #include #include #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"); for (auto i: doc.node_children("MountPoint")) { _mount_points.push_back (i->content()); } _size = doc.number_child("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); for (auto i: _mount_points) { cxml::add_text_child(root, "MountPoint", i.string()); } 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.size() > 0) { name += " " + *_model; } else { name = *_model; } } if (name.size() == 0) { name = _("Unknown"); } return fmt::format(_("{} ({} GB) [{}]"), name, gb, _device); } string Drive::log_summary () const { string mp; for (auto i: _mount_points) { mp += i.string() + ","; } if (mp.empty()) { mp = "[none]"; } else { mp = mp.substr (0, mp.length() - 1); } return fmt::format( "Device {} mounted on {} size {} vendor {} model {}", _device, mp, _size, _vendor.get_value_or("[none]"), _model.get_value_or("[none]") ); }