tmpdir is a helper class representing a temporary directory. Unfortunately, it suffers for some problems such as lack of proper encapsulation and weak typing. This has caused bugs in the past when the user code accidentally modified the member variable with the path to the directory. This patch modernises tmpdir and updates its users. The path is stored in a std::filesystem::path and available read-only to the class users. mkdtemp and boost are replaced by standard solution. The users are update to use path more (when it didn't involve too many changes to their code) and stop using lw_shared_ptr to store the tmpdir when it wasn't necessary. tmpdir intentionally doesn't provide any helpers for getting the path as a string in order to discourage weak types. Message-Id: <20190207145727.491-1-pdziepak@scylladb.com>
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
/*
|
|
* Copyright (C) 2015 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <seastar/util/std-compat.hh>
|
|
|
|
#include "utils/UUID.hh"
|
|
|
|
// Creates a new empty directory with arbitrary name, which will be removed
|
|
// automatically when tmpdir object goes out of scope.
|
|
class tmpdir {
|
|
seastar::compat::filesystem::path _path;
|
|
|
|
private:
|
|
void remove() {
|
|
if (!_path.empty()) {
|
|
seastar::compat::filesystem::remove_all(_path);
|
|
}
|
|
}
|
|
|
|
public:
|
|
tmpdir()
|
|
: _path(seastar::compat::filesystem::temp_directory_path() /
|
|
fmt::format(FMT_STRING("scylla-{}"), utils::make_random_uuid())) {
|
|
seastar::compat::filesystem::create_directories(_path);
|
|
}
|
|
|
|
tmpdir(tmpdir&& other) noexcept : _path(std::exchange(other._path, {})) { }
|
|
tmpdir(const tmpdir&) = delete;
|
|
void operator=(tmpdir&& other) noexcept {
|
|
remove();
|
|
_path = std::exchange(other._path, {});
|
|
}
|
|
void operator=(const tmpdir&) = delete;
|
|
|
|
~tmpdir() {
|
|
remove();
|
|
}
|
|
|
|
const seastar::compat::filesystem::path& path() const noexcept { return _path; }
|
|
};
|