tdlight/tddb/td/db/TsSeqKeyValue.h

92 lines
2.3 KiB
C
Raw Normal View History

//
2024-01-01 01:07:21 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/db/SeqKeyValue.h"
2023-08-05 15:09:36 +02:00
#include "td/utils/common.h"
2023-07-27 12:58:20 +02:00
#include "td/utils/FlatHashMap.h"
#include "td/utils/port/RwMutex.h"
#include "td/utils/Slice.h"
#include <utility>
namespace td {
class TsSeqKeyValue {
public:
using SeqNo = SeqKeyValue::SeqNo;
TsSeqKeyValue() = default;
explicit TsSeqKeyValue(SeqKeyValue kv) : kv_(std::move(kv)) {
}
TsSeqKeyValue(TsSeqKeyValue &&) = default;
TsSeqKeyValue &operator=(TsSeqKeyValue &&) = default;
TsSeqKeyValue(const TsSeqKeyValue &) = delete;
TsSeqKeyValue &operator=(const TsSeqKeyValue &) = delete;
~TsSeqKeyValue() = default;
SeqNo set(Slice key, Slice value) {
auto lock = rw_mutex_.lock_write().move_as_ok();
return kv_.set(key, value);
}
2022-08-17 15:52:27 +02:00
std::pair<SeqNo, RwMutex::WriteLock> set_and_lock(Slice key, Slice value) {
auto lock = rw_mutex_.lock_write().move_as_ok();
return std::make_pair(kv_.set(key, value), std::move(lock));
}
2022-08-17 15:52:27 +02:00
SeqNo erase(const string &key) {
auto lock = rw_mutex_.lock_write().move_as_ok();
return kv_.erase(key);
}
2022-08-17 15:52:27 +02:00
2023-02-12 01:29:19 +01:00
SeqNo erase_batch(vector<string> keys) {
auto lock = rw_mutex_.lock_write().move_as_ok();
return kv_.erase_batch(std::move(keys));
}
std::pair<SeqNo, RwMutex::WriteLock> erase_and_lock(const string &key) {
auto lock = rw_mutex_.lock_write().move_as_ok();
return std::make_pair(kv_.erase(key), std::move(lock));
}
2022-08-17 15:52:27 +02:00
string get(const string &key) const {
auto lock = rw_mutex_.lock_read().move_as_ok();
return kv_.get(key);
}
2022-08-17 15:52:27 +02:00
bool isset(const string &key) const {
2022-08-17 15:52:27 +02:00
auto lock = rw_mutex_.lock_read().move_as_ok();
return kv_.isset(key);
}
size_t size() const {
return kv_.size();
}
2022-08-17 15:52:27 +02:00
2023-07-27 12:58:20 +02:00
FlatHashMap<string, string> get_all() const {
auto lock = rw_mutex_.lock_write().move_as_ok();
return kv_.get_all();
}
2022-08-17 15:52:27 +02:00
2022-10-12 14:59:58 +02:00
// non-thread-safe method
SeqKeyValue &inner() {
return kv_;
}
auto lock() {
return rw_mutex_.lock_write().move_as_ok();
}
private:
mutable RwMutex rw_mutex_;
SeqKeyValue kv_;
};
} // namespace td