1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#ifndef OSM2PGSQL_TESTS_COMMON_CLEANUP_HPP
#define OSM2PGSQL_TESTS_COMMON_CLEANUP_HPP
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2025 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
#include "format.hpp"
#include <filesystem>
#include <string>
namespace testing::cleanup {
/**
* RAII structure to remove a file upon destruction.
*
* Per default will also make sure that the file does not exist
* when it is constructed.
*/
class file_t
{
public:
file_t(std::string const &filename, bool remove_on_construct = true)
: m_filename(filename)
{
if (remove_on_construct) {
delete_file(false);
}
}
~file_t() noexcept { delete_file(true); }
private:
void delete_file(bool warn) const noexcept
{
if (m_filename.empty()) {
return;
}
std::error_code ec;
if (!std::filesystem::remove(m_filename, ec) && warn) {
fmt::print(stderr, "WARNING: Unable to remove \"{}\": {}\n",
m_filename, ec.message());
}
}
std::string m_filename;
};
} // namespace testing::cleanup
#endif // OSM2PGSQL_TESTS_COMMON_CLEANUP_HPP
|