Files
osm2pgsql/tests/common-cleanup.hpp
Sarah Hoffmann 4dc31c5411 fixes for review comments
Mostly style fixes. Also increased the size for the test
cache to make Windows builds happy.
2019-11-15 21:52:42 +01:00

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