forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
directories.hh
50 lines (39 loc) · 924 Bytes
/
directories.hh
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
/*
* Copyright (C) 2019-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include <set>
#include <vector>
#include <seastar/core/future.hh>
#include <seastar/core/smp.hh>
#include "utils/file_lock.hh"
using namespace seastar;
namespace db {
class config;
}
namespace utils {
class directories {
public:
class set {
public:
void add(fs::path path);
void add(sstring path);
void add(std::vector<sstring> path);
void add_sharded(sstring path);
const std::set<fs::path> get_paths() const {
return _paths;
}
private:
std::set<fs::path> _paths;
};
directories(bool developer_mode);
future<> create_and_verify(set dir_set);
static future<> verify_owner_and_mode(std::filesystem::path path);
private:
bool _developer_mode;
std::vector<file_lock> _locks;
};
} // namespace utils