mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-26 15:37:20 +00:00
56f371216b
There is now an option to utilize shared memory for some CDClient tables by adding `CD_PROVIDER_MEMORY=1` to the CMakeVariables.txt file. Allows masterconfig.ini to specify another run command for the world server, to allow for easier debugging through `valgrind`.
75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include "GeneralUtils.h"
|
|
|
|
#include "Game.h"
|
|
#include "dLogger.h"
|
|
#include "dServer.h"
|
|
|
|
#include "CDTable.h"
|
|
|
|
#include "CDAbstractProvider.h"
|
|
|
|
template <
|
|
typename KeyType,
|
|
typename MappedType
|
|
>
|
|
class CDAbstractSqliteProvider : public CDAbstractProvider<KeyType, MappedType>
|
|
{
|
|
typedef std::pair<const KeyType, MappedType> ValueType;
|
|
|
|
public:
|
|
std::string m_Name;
|
|
std::function <ValueType(CppSQLite3Query&)> m_ParseEntry;
|
|
|
|
std::unordered_map<KeyType, MappedType> m_Entries;
|
|
|
|
CDAbstractSqliteProvider(std::string name, std::function <ValueType(CppSQLite3Query&)> parseEntry, bool cache)
|
|
{
|
|
m_Name = name;
|
|
m_ParseEntry = parseEntry;
|
|
|
|
LoadClient();
|
|
}
|
|
|
|
void LoadClient() override {
|
|
// First, get the size of the table
|
|
uint32_t size = 0;
|
|
auto tableSize = CDClientDatabase::ExecuteQuery("SELECT COUNT(*) FROM " + m_Name);
|
|
while (!tableSize.eof()) {
|
|
size = tableSize.getIntField(0, 0);
|
|
|
|
tableSize.nextRow();
|
|
}
|
|
|
|
tableSize.finalize();
|
|
|
|
// Reserve the size
|
|
m_Entries.reserve(size);
|
|
|
|
// Now get the data
|
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM " + m_Name);
|
|
while (!tableData.eof()) {
|
|
auto entry = m_ParseEntry(tableData);
|
|
|
|
m_Entries.insert(entry);
|
|
|
|
tableData.nextRow();
|
|
}
|
|
|
|
tableData.finalize();
|
|
}
|
|
|
|
void LoadHost() override {
|
|
return;
|
|
}
|
|
|
|
const MappedType& GetEntry(const KeyType& key, const MappedType& defaultValue) override {
|
|
auto it = m_Entries.find(key);
|
|
if (it != m_Entries.end()) {
|
|
return it->second;
|
|
}
|
|
return defaultValue;
|
|
}
|
|
};
|