2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// 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/utils/common.h"
|
2022-06-27 12:30:18 +02:00
|
|
|
#include "td/utils/Promise.h"
|
2022-02-07 22:04:34 +01:00
|
|
|
#include "td/utils/Slice.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-02-09 15:05:27 +01:00
|
|
|
#include <unordered_map>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
2018-03-08 16:01:45 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class KeyValueSyncInterface {
|
|
|
|
public:
|
|
|
|
// SeqNo is used to restore total order on all write queries.
|
|
|
|
// Some implementations may return 0 as SeqNo.
|
|
|
|
using SeqNo = uint64;
|
|
|
|
|
|
|
|
KeyValueSyncInterface() = default;
|
|
|
|
KeyValueSyncInterface(const KeyValueSyncInterface &) = delete;
|
|
|
|
KeyValueSyncInterface &operator=(const KeyValueSyncInterface &) = delete;
|
|
|
|
KeyValueSyncInterface(KeyValueSyncInterface &&) = default;
|
|
|
|
KeyValueSyncInterface &operator=(KeyValueSyncInterface &&) = default;
|
|
|
|
virtual ~KeyValueSyncInterface() = default;
|
2018-03-08 16:01:45 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual SeqNo set(string key, string value) = 0;
|
2018-03-08 16:01:45 +01:00
|
|
|
|
|
|
|
virtual bool isset(const string &key) = 0;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual string get(const string &key) = 0;
|
2018-03-08 16:01:45 +01:00
|
|
|
|
2022-02-09 15:05:27 +01:00
|
|
|
virtual std::unordered_map<string, string> prefix_get(Slice prefix) = 0;
|
2019-01-06 23:58:09 +01:00
|
|
|
|
2022-02-09 15:05:27 +01:00
|
|
|
virtual std::unordered_map<string, string> get_all() = 0;
|
2019-01-06 23:58:09 +01:00
|
|
|
|
2018-03-08 16:01:45 +01:00
|
|
|
virtual SeqNo erase(const string &key) = 0;
|
2019-01-07 00:44:29 +01:00
|
|
|
|
|
|
|
virtual void erase_by_prefix(Slice prefix) = 0;
|
|
|
|
|
|
|
|
virtual void force_sync(Promise<> &&promise) = 0;
|
2020-07-14 18:10:26 +02:00
|
|
|
|
|
|
|
virtual void close(Promise<> promise) = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
2018-03-08 16:01:45 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|