2013-09-10 15:49:43 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 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.
|
|
|
|
*/
|
2012-10-22 23:18:44 +02:00
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-10-22 23:18:44 +02:00
|
|
|
|
2013-09-10 15:49:43 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#if USE_LEVELDB
|
2012-10-22 23:18:44 +02:00
|
|
|
|
2017-04-01 14:48:16 +02:00
|
|
|
#include <string>
|
2013-09-10 15:49:43 +02:00
|
|
|
#include "database.h"
|
2012-10-22 23:18:44 +02:00
|
|
|
#include "leveldb/db.h"
|
2013-09-10 15:49:43 +02:00
|
|
|
|
2017-04-23 14:35:08 +02:00
|
|
|
class Database_LevelDB : public MapDatabase
|
2012-10-22 23:18:44 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-16 21:31:57 +01:00
|
|
|
Database_LevelDB(const std::string &savedir);
|
2012-10-22 23:18:44 +02:00
|
|
|
~Database_LevelDB();
|
2014-11-16 21:31:57 +01:00
|
|
|
|
2016-05-14 12:23:15 +02:00
|
|
|
bool saveBlock(const v3s16 &pos, const std::string &data);
|
|
|
|
void loadBlock(const v3s16 &pos, std::string *block);
|
|
|
|
bool deleteBlock(const v3s16 &pos);
|
|
|
|
void listAllLoadableBlocks(std::vector<v3s16> &dst);
|
2014-11-16 21:31:57 +01:00
|
|
|
|
2017-04-23 14:35:08 +02:00
|
|
|
void beginSave() {}
|
|
|
|
void endSave() {}
|
2017-05-26 17:03:46 +02:00
|
|
|
|
2012-10-22 23:18:44 +02:00
|
|
|
private:
|
2014-11-16 21:31:57 +01:00
|
|
|
leveldb::DB *m_database;
|
2012-10-22 23:18:44 +02:00
|
|
|
};
|
2014-11-16 21:31:57 +01:00
|
|
|
|
|
|
|
#endif // USE_LEVELDB
|