Clean up sqlite3 code a bunch

This commit is contained in:
sfan5 2025-02-18 16:18:38 +01:00
parent 527a56f22e
commit bbe2f8f404
3 changed files with 73 additions and 69 deletions

View File

@ -6,36 +6,58 @@
#include "db-sqlite3.h" #include "db-sqlite3.h"
#include "types.h" #include "types.h"
#define SQLRES(f, good) \ #define SQLRES(r, good) do { \
result = (sqlite3_##f);\ auto _result = (r); \
if (result != good) {\ if (_result != good) \
throw std::runtime_error(sqlite3_errmsg(db));\ throw std::runtime_error(sqlite3_errmsg(db)); \
} while (0)
#define SQLOK(r) SQLRES(r, SQLITE_OK)
// make sure a row is available. intended to be used outside a loop.
// compare result to SQLITE_ROW afterwards.
#define SQLROW1(stmt) \
while ((result = sqlite3_step(stmt)) == SQLITE_BUSY) \
usleep(10000); /* wait some time and try again */ \
if (result != SQLITE_ROW && result != SQLITE_DONE) { \
throw std::runtime_error(sqlite3_errmsg(db)); \
}
// make sure next row is available. intended to be used in a while(sqlite3_step) loop
#define SQLROW2() \
if (result == SQLITE_BUSY) { \
usleep(10000); /* wait some time and try again */ \
continue; \
} else if (result != SQLITE_ROW) { \
throw std::runtime_error(sqlite3_errmsg(db)); \
} }
#define SQLOK(f) SQLRES(f, SQLITE_OK)
DBSQLite3::DBSQLite3(const std::string &mapdir) DBSQLite3::DBSQLite3(const std::string &mapdir)
{ {
int result;
std::string db_name = mapdir + "map.sqlite"; std::string db_name = mapdir + "map.sqlite";
SQLOK(open_v2(db_name.c_str(), &db, SQLITE_OPEN_READONLY | auto flags = SQLITE_OPEN_READONLY |
SQLITE_OPEN_PRIVATECACHE, 0)) SQLITE_OPEN_PRIVATECACHE;
#ifdef SQLITE_OPEN_EXRESCODE
flags |= SQLITE_OPEN_EXRESCODE;
#endif
SQLOK(sqlite3_open_v2(db_name.c_str(), &db, flags, 0));
SQLOK(prepare_v2(db, SQLOK(sqlite3_prepare_v2(db,
"SELECT pos, data FROM blocks WHERE pos BETWEEN ? AND ?", "SELECT pos, data FROM blocks WHERE pos BETWEEN ? AND ?",
-1, &stmt_get_blocks_z, NULL)) -1, &stmt_get_blocks_z, NULL));
SQLOK(prepare_v2(db, SQLOK(sqlite3_prepare_v2(db,
"SELECT data FROM blocks WHERE pos = ?", "SELECT data FROM blocks WHERE pos = ?",
-1, &stmt_get_block_exact, NULL)) -1, &stmt_get_block_exact, NULL));
SQLOK(prepare_v2(db, SQLOK(sqlite3_prepare_v2(db,
"SELECT pos FROM blocks", "SELECT pos FROM blocks",
-1, &stmt_get_block_pos, NULL)) -1, &stmt_get_block_pos, NULL));
SQLOK(prepare_v2(db, SQLOK(sqlite3_prepare_v2(db,
"SELECT pos FROM blocks WHERE pos BETWEEN ? AND ?", "SELECT pos FROM blocks WHERE pos BETWEEN ? AND ?",
-1, &stmt_get_block_pos_z, NULL)) -1, &stmt_get_block_pos_z, NULL));
} }
@ -52,14 +74,9 @@ DBSQLite3::~DBSQLite3()
} }
inline void DBSQLite3::getPosRange(int64_t &min, int64_t &max, int16_t zPos, inline void DBSQLite3::getPosRange(int64_t &min, int64_t &max,
int16_t zPos2) const int16_t zPos, int16_t zPos2)
{ {
/* The range of block positions is [-2048, 2047], which turns into [0, 4095]
* when casted to unsigned. This didn't actually help me understand the
* numbers below, but I wanted to write it down.
*/
// Magic numbers! // Magic numbers!
min = encodeBlockPos(BlockPos(0, -2048, zPos)); min = encodeBlockPos(BlockPos(0, -2048, zPos));
max = encodeBlockPos(BlockPos(0, 2048, zPos2)) - 1; max = encodeBlockPos(BlockPos(0, 2048, zPos2)) - 1;
@ -81,24 +98,20 @@ std::vector<BlockPos> DBSQLite3::getBlockPos(BlockPos min, BlockPos max)
if (max.z > 2048) if (max.z > 2048)
max.z = 2048; max.z = 2048;
getPosRange(minPos, maxPos, min.z, max.z - 1); getPosRange(minPos, maxPos, min.z, max.z - 1);
SQLOK(bind_int64(stmt, 1, minPos)) SQLOK(sqlite3_bind_int64(stmt, 1, minPos));
SQLOK(bind_int64(stmt, 2, maxPos)) SQLOK(sqlite3_bind_int64(stmt, 2, maxPos));
} }
std::vector<BlockPos> positions; std::vector<BlockPos> positions;
while ((result = sqlite3_step(stmt)) != SQLITE_DONE) { while ((result = sqlite3_step(stmt)) != SQLITE_DONE) {
if (result == SQLITE_BUSY) { // Wait some time and try again SQLROW2()
usleep(10000);
} else if (result != SQLITE_ROW) {
throw std::runtime_error(sqlite3_errmsg(db));
}
int64_t posHash = sqlite3_column_int64(stmt, 0); int64_t posHash = sqlite3_column_int64(stmt, 0);
BlockPos pos = decodeBlockPos(posHash); BlockPos pos = decodeBlockPos(posHash);
if(pos.x >= min.x && pos.x < max.x && pos.y >= min.y && pos.y < max.y) if(pos.x >= min.x && pos.x < max.x && pos.y >= min.y && pos.y < max.y)
positions.emplace_back(pos); positions.emplace_back(pos);
} }
SQLOK(reset(stmt)); SQLOK(sqlite3_reset(stmt));
return positions; return positions;
} }
@ -111,24 +124,17 @@ void DBSQLite3::loadBlockCache(int16_t zPos)
int64_t minPos, maxPos; int64_t minPos, maxPos;
getPosRange(minPos, maxPos, zPos, zPos); getPosRange(minPos, maxPos, zPos, zPos);
SQLOK(bind_int64(stmt_get_blocks_z, 1, minPos)); SQLOK(sqlite3_bind_int64(stmt_get_blocks_z, 1, minPos));
SQLOK(bind_int64(stmt_get_blocks_z, 2, maxPos)); SQLOK(sqlite3_bind_int64(stmt_get_blocks_z, 2, maxPos));
while ((result = sqlite3_step(stmt_get_blocks_z)) != SQLITE_DONE) { while ((result = sqlite3_step(stmt_get_blocks_z)) != SQLITE_DONE) {
if (result == SQLITE_BUSY) { // Wait some time and try again SQLROW2()
usleep(10000);
} else if (result != SQLITE_ROW) {
throw std::runtime_error(sqlite3_errmsg(db));
}
int64_t posHash = sqlite3_column_int64(stmt_get_blocks_z, 0); int64_t posHash = sqlite3_column_int64(stmt_get_blocks_z, 0);
BlockPos pos = decodeBlockPos(posHash); BlockPos pos = decodeBlockPos(posHash);
const unsigned char *data = reinterpret_cast<const unsigned char *>( blockCache[pos.x].emplace_back(pos, read_blob(stmt_get_blocks_z, 1));
sqlite3_column_blob(stmt_get_blocks_z, 1));
size_t size = sqlite3_column_bytes(stmt_get_blocks_z, 1);
blockCache[pos.x].emplace_back(pos, ustring(data, size));
} }
SQLOK(reset(stmt_get_blocks_z)) SQLOK(sqlite3_reset(stmt_get_blocks_z));
} }
@ -175,22 +181,12 @@ void DBSQLite3::getBlocksByPos(BlockList &blocks,
for (auto pos : positions) { for (auto pos : positions) {
int64_t dbPos = encodeBlockPos(pos); int64_t dbPos = encodeBlockPos(pos);
SQLOK(bind_int64(stmt_get_block_exact, 1, dbPos)); SQLOK(sqlite3_bind_int64(stmt_get_block_exact, 1, dbPos));
while ((result = sqlite3_step(stmt_get_block_exact)) == SQLITE_BUSY) { SQLROW1(stmt_get_block_exact)
usleep(10000); // Wait some time and try again if (result == SQLITE_ROW)
} blocks.emplace_back(pos, read_blob(stmt_get_block_exact, 0));
if (result == SQLITE_DONE) {
// no data
} else if (result != SQLITE_ROW) {
throw std::runtime_error(sqlite3_errmsg(db));
} else {
const unsigned char *data = reinterpret_cast<const unsigned char *>(
sqlite3_column_blob(stmt_get_block_exact, 0));
size_t size = sqlite3_column_bytes(stmt_get_block_exact, 0);
blocks.emplace_back(pos, ustring(data, size));
}
SQLOK(reset(stmt_get_block_exact)) SQLOK(sqlite3_reset(stmt_get_block_exact));
} }
} }

View File

@ -17,16 +17,24 @@ public:
bool preferRangeQueries() const override { return false; } bool preferRangeQueries() const override { return false; }
private: private:
inline void getPosRange(int64_t &min, int64_t &max, int16_t zPos, static inline void getPosRange(int64_t &min, int64_t &max, int16_t zPos,
int16_t zPos2) const; int16_t zPos2);
void loadBlockCache(int16_t zPos); void loadBlockCache(int16_t zPos);
sqlite3 *db; static inline ustring read_blob(sqlite3_stmt *stmt, int iCol)
{
auto *data = reinterpret_cast<const unsigned char *>(
sqlite3_column_blob(stmt, iCol));
size_t size = sqlite3_column_bytes(stmt, iCol);
return ustring(data, size);
}
sqlite3_stmt *stmt_get_block_pos; sqlite3 *db = NULL;
sqlite3_stmt *stmt_get_block_pos_z;
sqlite3_stmt *stmt_get_blocks_z; sqlite3_stmt *stmt_get_block_pos = NULL;
sqlite3_stmt *stmt_get_block_exact; sqlite3_stmt *stmt_get_block_pos_z = NULL;
sqlite3_stmt *stmt_get_blocks_z = NULL;
sqlite3_stmt *stmt_get_block_exact = NULL;
int16_t blockCachedZ = -10000; int16_t blockCachedZ = -10000;
std::unordered_map<int16_t, BlockList> blockCache; // indexed by X std::unordered_map<int16_t, BlockList> blockCache; // indexed by X

View File

@ -43,8 +43,8 @@ typedef std::list<Block> BlockList;
class DB { class DB {
protected: protected:
// Helpers that implement the hashed positions used by most backends // Helpers that implement the hashed positions used by most backends
inline int64_t encodeBlockPos(const BlockPos pos) const; static inline int64_t encodeBlockPos(const BlockPos pos);
inline BlockPos decodeBlockPos(int64_t hash) const; static inline BlockPos decodeBlockPos(int64_t hash);
public: public:
/* Return all block positions inside the range given by min and max, /* Return all block positions inside the range given by min and max,
@ -98,7 +98,7 @@ static inline int64_t pythonmodulo(int64_t i, int64_t mod)
} }
inline int64_t DB::encodeBlockPos(const BlockPos pos) const inline int64_t DB::encodeBlockPos(const BlockPos pos)
{ {
return (uint64_t) pos.z * 0x1000000 + return (uint64_t) pos.z * 0x1000000 +
(uint64_t) pos.y * 0x1000 + (uint64_t) pos.y * 0x1000 +
@ -106,7 +106,7 @@ inline int64_t DB::encodeBlockPos(const BlockPos pos) const
} }
inline BlockPos DB::decodeBlockPos(int64_t hash) const inline BlockPos DB::decodeBlockPos(int64_t hash)
{ {
BlockPos pos; BlockPos pos;
pos.x = unsigned_to_signed(pythonmodulo(hash, 4096), 2048); pos.x = unsigned_to_signed(pythonmodulo(hash, 4096), 2048);