From 350afcbc40fffd8c8780180e153a2ee91088f562 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 9 Apr 2020 00:58:42 +0200 Subject: Tidy up nanomsg class API; add unmounting for Linux. --- src/lib/cross_linux.cc | 46 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 10 deletions(-) (limited to 'src/lib/cross_linux.cc') diff --git a/src/lib/cross_linux.cc b/src/lib/cross_linux.cc index 8c81c5008..14a7e5b47 100644 --- a/src/lib/cross_linux.cc +++ b/src/lib/cross_linux.cc @@ -24,6 +24,7 @@ #include "dcpomatic_log.h" #include "config.h" #include "exceptions.h" +#include "dcpomatic_log.h" #include #include extern "C" { @@ -37,6 +38,7 @@ extern "C" { #include #include #include +#include #include #include #include @@ -256,25 +258,34 @@ running_32_on_64 () return false; } -vector -get_drives () +vector > +get_mounts (string prefix) { - vector drives; + vector > mounts; - using namespace boost::filesystem; - list mounted_devices; std::ifstream f("/proc/mounts"); string line; while (f.good()) { getline(f, line); vector bits; boost::algorithm::split (bits, line, boost::is_any_of(" ")); - if (bits.size() > 0 && boost::algorithm::starts_with(bits[0], "/dev/")) { - mounted_devices.push_back(bits[0]); - LOG_DISK("Mounted device %1", bits[0]); + if (bits.size() > 1 && boost::algorithm::starts_with(bits[0], prefix)) { + mounts.push_back(make_pair(bits[0], bits[1])); + LOG_DISK("Found mounted device %1 from prefix %2", bits[0], prefix); } } + return mounts; +} + +vector +get_drives () +{ + vector drives; + + using namespace boost::filesystem; + vector > mounted_devices = get_mounts("/dev/"); + for (directory_iterator i = directory_iterator("/sys/block"); i != directory_iterator(); ++i) { string const name = i->path().filename().string(); path device_type_file("/sys/block/" + name + "/device/type"); @@ -300,8 +311,8 @@ get_drives () model = dcp::file_to_string("/sys/block/" + name + "/device/model"); boost::trim(*model); } catch (...) {} - BOOST_FOREACH (string j, mounted_devices) { - if (boost::algorithm::starts_with(j, "/dev/" + name)) { + for (vector >::const_iterator j = mounted_devices.begin(); j != mounted_devices.end(); ++j) { + if (boost::algorithm::starts_with(j->first, "/dev/" + name)) { mounted = true; } } @@ -342,3 +353,18 @@ config_path () p /= "dcpomatic2"; return p; } + +bool +unmount_drive (string drive) +{ + vector > mounts = get_mounts (drive); + for (vector >::const_iterator i = mounts.begin(); i != mounts.end(); ++i) { + int const r = umount(i->second.c_str()); + LOG_DISK("Tried to unmount %1 and got %2 and %3", i->second, r, errno); + if (r == -1) { + return false; + } + } + return true; +} + -- cgit v1.2.3