Bläddra i källkod

`safe_rename` automatically falls back to copy in case of cross_device_link

default_compile_flags
vector-of-bool 5 år sedan
förälder
incheckning
6a5859738a
2 ändrade filer med 31 tillägg och 0 borttagningar
  1. +29
    -0
      src/dds/util.cpp
  2. +2
    -0
      src/dds/util.hpp

+ 29
- 0
src/dds/util.cpp Visa fil

@@ -1,5 +1,7 @@
#include "./util.hpp"

#include <spdlog/fmt/fmt.h>

#include <filesystem>
#include <fstream>
#include <sstream>
@@ -29,3 +31,30 @@ std::string dds::slurp_file(const fs::path& path, std::error_code& ec) {
out << file.rdbuf();
return std::move(out).str();
}

void dds::safe_rename(path_ref source, path_ref dest) {
std::error_code ec;
fs::rename(source, dest, ec);
if (!ec) {
return;
}

if (ec != std::errc::cross_device_link) {
throw std::system_error(ec,
fmt::format("Failed to move item [{}] to [{}]",
source.string(),
dest.string()));
}

auto tmp = dest;
tmp.replace_filename(tmp.filename().string() + ".tmp-dds-mv");
try {
fs::remove_all(tmp);
fs::copy(source, tmp, fs::copy_options::recursive);
} catch (...) {
fs::remove_all(tmp, ec);
throw;
}
fs::rename(tmp, dest);
fs::remove_all(source);
}

+ 2
- 0
src/dds/util.hpp Visa fil

@@ -70,6 +70,8 @@ inline std::string slurp_file(const fs::path& path) {
return contents;
}

void safe_rename(path_ref source, path_ref dest);

} // namespace file_utils

template <typename Container, typename Predicate>

Laddar…
Avbryt
Spara