2020-05-08 22:10:49 +02:00
|
|
|
#pragma once
|
2014-04-26 15:01:35 +02:00
|
|
|
|
|
|
|
#include "db.h"
|
2020-03-27 16:12:26 +01:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <utility>
|
2020-03-27 21:10:00 +01:00
|
|
|
#include <functional>
|
2020-03-27 11:12:24 +01:00
|
|
|
#include <hiredis/hiredis.h>
|
2014-04-26 15:01:35 +02:00
|
|
|
|
|
|
|
class DBRedis : public DB {
|
|
|
|
public:
|
|
|
|
DBRedis(const std::string &mapdir);
|
2020-03-27 16:12:26 +01:00
|
|
|
std::vector<BlockPos> getBlockPos(BlockPos min, BlockPos max) override;
|
|
|
|
void getBlocksOnXZ(BlockList &blocks, int16_t x, int16_t z,
|
|
|
|
int16_t min_y, int16_t max_y) override;
|
2020-03-27 21:10:00 +01:00
|
|
|
void getBlocksByPos(BlockList &blocks,
|
|
|
|
const std::vector<BlockPos> &positions) override;
|
2020-03-27 16:12:26 +01:00
|
|
|
~DBRedis() override;
|
|
|
|
|
2020-03-27 21:10:00 +01:00
|
|
|
bool preferRangeQueries() const override { return false; }
|
|
|
|
|
2014-04-26 15:01:35 +02:00
|
|
|
private:
|
2020-03-27 16:12:26 +01:00
|
|
|
using pos2d = std::pair<int16_t, int16_t>;
|
2020-03-27 21:10:00 +01:00
|
|
|
static const char *replyTypeStr(int type);
|
2016-10-09 00:27:31 +02:00
|
|
|
|
2014-04-26 15:01:35 +02:00
|
|
|
void loadPosCache();
|
2020-03-27 21:10:00 +01:00
|
|
|
void HMGET(const std::vector<BlockPos> &positions,
|
|
|
|
std::function<void(std::size_t, ustring)> result);
|
2014-04-26 15:01:35 +02:00
|
|
|
|
2020-03-27 16:12:26 +01:00
|
|
|
// indexed by Z, contains all (x,y) position pairs
|
|
|
|
std::unordered_map<int16_t, std::vector<pos2d>> posCache;
|
2014-04-26 15:01:35 +02:00
|
|
|
|
|
|
|
redisContext *ctx;
|
|
|
|
std::string hash;
|
|
|
|
};
|