summaryrefslogtreecommitdiff
path: root/src/database-redis.h
diff options
context:
space:
mode:
authorSfan5 <sfan5@live.de>2014-04-08 21:39:21 +0200
committerSfan5 <sfan5@live.de>2014-04-16 22:05:06 +0200
commit674be38fc262aab78ed75141c70e5c02830ca80d (patch)
tree4d3b6db33b957116f8e3bfaffa8456ff6dd12048 /src/database-redis.h
parentdb60ae0459a7711bdaca2dff94c2e87e8e97796d (diff)
downloadminetest-674be38fc262aab78ed75141c70e5c02830ca80d.tar.gz
minetest-674be38fc262aab78ed75141c70e5c02830ca80d.tar.bz2
minetest-674be38fc262aab78ed75141c70e5c02830ca80d.zip
Add redis database backend
Diffstat (limited to 'src/database-redis.h')
-rw-r--r--src/database-redis.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/database-redis.h b/src/database-redis.h
new file mode 100644
index 000000000..da76775d4
--- /dev/null
+++ b/src/database-redis.h
@@ -0,0 +1,50 @@
+/*
+Minetest
+Copyright (C) 2014 celeron55, Perttu Ahola <celeron55@gmail.com>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License along
+with this program; if not, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+*/
+
+#ifndef DATABASE_REDIS_HEADER
+#define DATABASE_REDIS_HEADER
+
+#include "config.h"
+
+#if USE_REDIS
+
+#include "database.h"
+#include <hiredis.h>
+#include <string>
+
+class ServerMap;
+
+class Database_Redis : public Database
+{
+public:
+ Database_Redis(ServerMap *map, std::string savedir);
+ virtual void beginSave();
+ virtual void endSave();
+ virtual void saveBlock(MapBlock *block);
+ virtual MapBlock* loadBlock(v3s16 blockpos);
+ virtual void listAllLoadableBlocks(std::list<v3s16> &dst);
+ virtual int Initialized(void);
+ ~Database_Redis();
+private:
+ ServerMap *srvmap;
+ redisContext *ctx;
+ std::string hash;
+};
+#endif
+#endif