autotier
Automatic Tiering Fuse Filesystem
rocksDbHelpers.hpp
1 /*
2  * Copyright (C) 2019-2021 Joshua Boudreau <jboudreau@45drives.com>
3  *
4  * This file is part of autotier.
5  *
6  * autotier is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * autotier is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with autotier. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
20 #pragma once
21 
22 #include <mutex>
23 #include <rocksdb/db.h>
24 #include <rocksdb/slice_transform.h>
25 #include <string>
26 
31 namespace l {
36  class PathSliceTransform : public ::rocksdb::SliceTransform {
37  public:
38  const char *Name() const {
39  return "Path Slice Transform";
40  }
41  ::rocksdb::Slice Transform(const ::rocksdb::Slice &key) const {
42  std::string key_str = key.ToString();
43  return ::rocksdb::Slice(key_str.substr(0, key_str.find('/')));
44  }
45  bool InDomain(const ::rocksdb::Slice &key) const {
46  return key.ToString().find('/') != std::string::npos;
47  }
48  bool InRange(const ::rocksdb::Slice & /*dst*/) const {
49  return false;
50  }
51  bool FullLengthEnabled(size_t * /*len*/) const {
52  return false;
53  }
54  virtual bool SameResultWhenAppended(const ::rocksdb::Slice & /*prefix*/) const {
55  return false;
56  }
57  };
58 
65 
70  namespace rocksdb {
75  extern std::mutex global_lock_;
76  } // namespace rocksdb
77 } // namespace l
l::NewPathSliceTransform
const PathSliceTransform * NewPathSliceTransform()
Construct new PathSliceTransform on heap and return pointer.
Definition: rocksDbHelpers.cpp:22
l::rocksdb::global_lock_
std::mutex global_lock_
Mutex lock to synchronize updating of RocksDB database.
Definition: rocksDbHelpers.cpp:28
l::PathSliceTransform
Used to make rocksdb lookups faster, groups keys by first dir in path.
Definition: rocksDbHelpers.hpp:36
l
Local namespace.
Definition: helpers.cpp:28