summaryrefslogtreecommitdiff
path: root/src/lib/cross_common.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-01-18 00:08:44 +0100
committerCarl Hetherington <cth@carlh.net>2022-01-19 20:39:25 +0100
commit59bb9538218eee564ab3c07f923628e0a47bf207 (patch)
tree3c5fcf84532e850b4698a843dee96fe54668edbd /src/lib/cross_common.cc
parenta3c73134fad8a4261c7cd655ae7531b347a78ac7 (diff)
Extract osx_disks_to_drives to cross_common for tests.
Diffstat (limited to 'src/lib/cross_common.cc')
-rw-r--r--src/lib/cross_common.cc51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/lib/cross_common.cc b/src/lib/cross_common.cc
index 17546f712..250db3cd5 100644
--- a/src/lib/cross_common.cc
+++ b/src/lib/cross_common.cc
@@ -33,6 +33,7 @@ DCPOMATIC_ENABLE_WARNINGS
#include "i18n.h"
+using std::map;
using std::string;
using std::vector;
using boost::optional;
@@ -152,3 +153,53 @@ analyse_osx_media_path (string path)
}
+/* This is in _common so we can use it in unit tests */
+vector<Drive>
+osx_disks_to_drives (vector<OSXDisk> disks)
+{
+ using namespace boost::algorithm;
+
+ /* Mark disks containing mounted partitions as themselves mounted */
+ for (auto& i: disks) {
+ if (!i.whole) {
+ continue;
+ }
+ for (auto& j: disks) {
+ if (!j.mount_points.empty() && starts_with(j.mount_point, i.mount_point)) {
+ LOG_DISK("Marking %1 as mounted because %2 is", i.mount_point, j.mount_point);
+ std::copy(j.mount_points.begin(), j.mount_points.end(), back_inserter(i.mount_points));
+ }
+ }
+ }
+
+ /* Make a map of the PRT codes and mount points of mounted, synthesized disks */
+ map<string, vector<boost::filesystem::path>> mounted_synths;
+ for (auto const& i: disks) {
+ if (!i.real && !i.mount_points.empty()) {
+ LOG_DISK("Found a mounted synth %1 with %2", i.mount_point, i.prt);
+ mounted_synths[i.prt] = i.mount_points;
+ }
+ }
+
+ /* Mark containers of those mounted synths as themselves mounted */
+ for (auto& i: disks) {
+ if (i.real) {
+ auto j = mounted_synths.find(i.prt);
+ if (j != mounted_synths.end()) {
+ LOG_DISK("Marking %1 (%2) as mounted because it contains a mounted synth", i.mount_point, i.prt);
+ std::copy(j->second.begin(), j->second.end(), back_inserter(i.mount_points));
+ }
+ }
+ }
+
+ vector<Drive> drives;
+ for (auto const& i: disks) {
+ if (i.whole) {
+ /* A whole disk that is not a container for a mounted synth */
+ drives.push_back(Drive(i.mount_point, i.mount_points, i.size, i.vendor, i.model));
+ LOG_DISK_NC(drives.back().log_summary());
+ }
+ }
+
+ return drives;
+}