2021-12-05 17:54:36 +00:00
|
|
|
#include "CDProximityMonitorComponentTable.h"
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
void CDProximityMonitorComponentTable::LoadValuesFromDatabase() {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
// First, get the size of the table
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t size = 0;
|
2021-12-05 17:54:36 +00:00
|
|
|
auto tableSize = CDClientDatabase::ExecuteQuery("SELECT COUNT(*) FROM ProximityMonitorComponent");
|
|
|
|
while (!tableSize.eof()) {
|
|
|
|
size = tableSize.getIntField(0, 0);
|
|
|
|
|
|
|
|
tableSize.nextRow();
|
|
|
|
}
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
tableSize.finalize();
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
// Reserve the size
|
|
|
|
this->entries.reserve(size);
|
|
|
|
|
|
|
|
// Now get the data
|
|
|
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM ProximityMonitorComponent");
|
|
|
|
while (!tableData.eof()) {
|
|
|
|
CDProximityMonitorComponent entry;
|
2023-01-07 09:48:59 +00:00
|
|
|
entry.id = tableData.getIntField("id", -1);
|
|
|
|
entry.Proximities = tableData.getStringField("Proximities", "");
|
|
|
|
entry.LoadOnClient = tableData.getIntField("LoadOnClient", -1);
|
|
|
|
entry.LoadOnServer = tableData.getIntField("LoadOnServer", -1);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
this->entries.push_back(entry);
|
|
|
|
tableData.nextRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
tableData.finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<CDProximityMonitorComponent> CDProximityMonitorComponentTable::Query(std::function<bool(CDProximityMonitorComponent)> predicate) {
|
|
|
|
|
|
|
|
std::vector<CDProximityMonitorComponent> data = cpplinq::from(this->entries)
|
|
|
|
>> cpplinq::where(predicate)
|
|
|
|
>> cpplinq::to_vector();
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDProximityMonitorComponent>& CDProximityMonitorComponentTable::GetEntries() const {
|
2021-12-05 17:54:36 +00:00
|
|
|
return this->entries;
|
|
|
|
}
|
2023-01-07 09:48:59 +00:00
|
|
|
|