mirror of
https://github.com/osm2pgsql-dev/osm2pgsql.git
synced 2025-08-22 19:42:12 +00:00

Mostly style fixes. Also increased the size for the test cache to make Windows builds happy.
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
#ifndef OSM2PGSQL_TESTS_COMMON_CLEANUP_HPP
|
|
#define OSM2PGSQL_TESTS_COMMON_CLEANUP_HPP
|
|
|
|
#include <string>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
namespace testing {
|
|
namespace 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) noexcept
|
|
{
|
|
boost::system::error_code ec;
|
|
boost::filesystem::remove(m_filename, ec);
|
|
if (ec && warn) {
|
|
fprintf(stderr, "WARNING: Unable to remove \"%s\": %s\n",
|
|
m_filename.c_str(), ec.message().c_str());
|
|
}
|
|
}
|
|
|
|
std::string m_filename;
|
|
};
|
|
|
|
} // namespace cleanup
|
|
} // namespace testing
|
|
|
|
#endif // OSM2PGSQL_TESTS_COMMON_CLEANUP_HPP
|