diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-17 22:56:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-19 20:39:20 +0100 |
| commit | a3c73134fad8a4261c7cd655ae7531b347a78ac7 (patch) | |
| tree | 968eb89c191e0287a64bd7ca67bed5614c49e734 /src/lib/cross_osx.cc | |
| parent | 9bc077322d49107fc464f4cfd2d66e9c2860f0a3 (diff) | |
Extract part of analyse_media_path to cross_common for tests.
Diffstat (limited to 'src/lib/cross_osx.cc')
| -rw-r--r-- | src/lib/cross_osx.cc | 37 |
1 files changed, 3 insertions, 34 deletions
diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc index d9355e161..03438a220 100644 --- a/src/lib/cross_osx.cc +++ b/src/lib/cross_osx.cc @@ -309,14 +309,7 @@ get_model (CFDictionaryRef& description) } -struct MediaPath -{ - bool real; ///< true for a "real" disk, false for a synthesized APFS one - std::string prt; ///< "PRT" entry from the media path -}; - - -static optional<MediaPath> +static optional<OSXMediaPath> analyse_media_path (CFDictionaryRef& description) { using namespace boost::algorithm; @@ -335,31 +328,7 @@ analyse_media_path (CFDictionaryRef& description) string path(path_key_cstr); LOG_DISK("MediaPathKey is %1", path); - - if (path.find("/IOHDIXController") != string::npos) { - /* This is a disk image, so we completely ignore it */ - LOG_DISK_NC("Ignoring this as it seems to be a disk image"); - return {}; - } - - MediaPath mp; - if (starts_with(path, "IODeviceTree:")) { - mp.real = true; - } else if (starts_with(path, "IOService:")) { - mp.real = false; - } else { - return {}; - } - - vector<string> bits; - split(bits, path, boost::is_any_of("/")); - for (auto i: bits) { - if (starts_with(i, "PRT")) { - mp.prt = i; - } - } - - return mp; + return analyse_osx_media_path (path); } @@ -467,7 +436,7 @@ disk_appeared (DADiskRef disk, void* context) } LOG_DISK( - "%1 prt %2 whole %3 mounted %4", + "%1 prt=%2 %3 %4", this_disk.real ? "Real" : "Synth", this_disk.prt, this_disk.whole ? "whole" : "part", |
