mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-24 05:18:40 +00:00
[Repositories] Add GetMaxId, Count (#2371)
* [Repositories] Add GetMaxId, Count * Update cmake with repositories, regenerate extended repos * Remove license from files * Simplify receivers * Receiver simplify remaining * Simplify receivers final * Pass params by const reference * Modernize grid tables * Remove guild members since it doesn't conform as a generatable table * PR comment
This commit is contained in:
@@ -79,15 +79,15 @@ public:
|
||||
|
||||
static Saylink NewEntity()
|
||||
{
|
||||
Saylink entry{};
|
||||
Saylink e{};
|
||||
|
||||
entry.id = 0;
|
||||
entry.phrase = "";
|
||||
e.id = 0;
|
||||
e.phrase = "";
|
||||
|
||||
return entry;
|
||||
return e;
|
||||
}
|
||||
|
||||
static Saylink GetSaylinkEntry(
|
||||
static Saylink GetSaylink(
|
||||
const std::vector<Saylink> &saylinks,
|
||||
int saylink_id
|
||||
)
|
||||
@@ -116,12 +116,12 @@ public:
|
||||
|
||||
auto row = results.begin();
|
||||
if (results.RowCount() == 1) {
|
||||
Saylink entry{};
|
||||
Saylink e{};
|
||||
|
||||
entry.id = atoi(row[0]);
|
||||
entry.phrase = row[1] ? row[1] : "";
|
||||
e.id = atoi(row[0]);
|
||||
e.phrase = row[1] ? row[1] : "";
|
||||
|
||||
return entry;
|
||||
return e;
|
||||
}
|
||||
|
||||
return NewEntity();
|
||||
@@ -146,22 +146,22 @@ public:
|
||||
|
||||
static int UpdateOne(
|
||||
Database& db,
|
||||
Saylink saylink_entry
|
||||
const Saylink &e
|
||||
)
|
||||
{
|
||||
std::vector<std::string> update_values;
|
||||
std::vector<std::string> v;
|
||||
|
||||
auto columns = Columns();
|
||||
|
||||
update_values.push_back(columns[1] + " = '" + Strings::Escape(saylink_entry.phrase) + "'");
|
||||
v.push_back(columns[1] + " = '" + Strings::Escape(e.phrase) + "'");
|
||||
|
||||
auto results = db.QueryDatabase(
|
||||
fmt::format(
|
||||
"UPDATE {} SET {} WHERE {} = {}",
|
||||
TableName(),
|
||||
Strings::Implode(", ", update_values),
|
||||
Strings::Implode(", ", v),
|
||||
PrimaryKey(),
|
||||
saylink_entry.id
|
||||
e.id
|
||||
)
|
||||
);
|
||||
|
||||
@@ -170,49 +170,49 @@ public:
|
||||
|
||||
static Saylink InsertOne(
|
||||
Database& db,
|
||||
Saylink saylink_entry
|
||||
Saylink e
|
||||
)
|
||||
{
|
||||
std::vector<std::string> insert_values;
|
||||
std::vector<std::string> v;
|
||||
|
||||
insert_values.push_back(std::to_string(saylink_entry.id));
|
||||
insert_values.push_back("'" + Strings::Escape(saylink_entry.phrase) + "'");
|
||||
v.push_back(std::to_string(e.id));
|
||||
v.push_back("'" + Strings::Escape(e.phrase) + "'");
|
||||
|
||||
auto results = db.QueryDatabase(
|
||||
fmt::format(
|
||||
"{} VALUES ({})",
|
||||
BaseInsert(),
|
||||
Strings::Implode(",", insert_values)
|
||||
Strings::Implode(",", v)
|
||||
)
|
||||
);
|
||||
|
||||
if (results.Success()) {
|
||||
saylink_entry.id = results.LastInsertedID();
|
||||
return saylink_entry;
|
||||
e.id = results.LastInsertedID();
|
||||
return e;
|
||||
}
|
||||
|
||||
saylink_entry = NewEntity();
|
||||
e = NewEntity();
|
||||
|
||||
return saylink_entry;
|
||||
return e;
|
||||
}
|
||||
|
||||
static int InsertMany(
|
||||
Database& db,
|
||||
std::vector<Saylink> saylink_entries
|
||||
const std::vector<Saylink> &entries
|
||||
)
|
||||
{
|
||||
std::vector<std::string> insert_chunks;
|
||||
|
||||
for (auto &saylink_entry: saylink_entries) {
|
||||
std::vector<std::string> insert_values;
|
||||
for (auto &e: entries) {
|
||||
std::vector<std::string> v;
|
||||
|
||||
insert_values.push_back(std::to_string(saylink_entry.id));
|
||||
insert_values.push_back("'" + Strings::Escape(saylink_entry.phrase) + "'");
|
||||
v.push_back(std::to_string(e.id));
|
||||
v.push_back("'" + Strings::Escape(e.phrase) + "'");
|
||||
|
||||
insert_chunks.push_back("(" + Strings::Implode(",", insert_values) + ")");
|
||||
insert_chunks.push_back("(" + Strings::Implode(",", v) + ")");
|
||||
}
|
||||
|
||||
std::vector<std::string> insert_values;
|
||||
std::vector<std::string> v;
|
||||
|
||||
auto results = db.QueryDatabase(
|
||||
fmt::format(
|
||||
@@ -239,18 +239,18 @@ public:
|
||||
all_entries.reserve(results.RowCount());
|
||||
|
||||
for (auto row = results.begin(); row != results.end(); ++row) {
|
||||
Saylink entry{};
|
||||
Saylink e{};
|
||||
|
||||
entry.id = atoi(row[0]);
|
||||
entry.phrase = row[1] ? row[1] : "";
|
||||
e.id = atoi(row[0]);
|
||||
e.phrase = row[1] ? row[1] : "";
|
||||
|
||||
all_entries.push_back(entry);
|
||||
all_entries.push_back(e);
|
||||
}
|
||||
|
||||
return all_entries;
|
||||
}
|
||||
|
||||
static std::vector<Saylink> GetWhere(Database& db, std::string where_filter)
|
||||
static std::vector<Saylink> GetWhere(Database& db, const std::string &where_filter)
|
||||
{
|
||||
std::vector<Saylink> all_entries;
|
||||
|
||||
@@ -265,18 +265,18 @@ public:
|
||||
all_entries.reserve(results.RowCount());
|
||||
|
||||
for (auto row = results.begin(); row != results.end(); ++row) {
|
||||
Saylink entry{};
|
||||
Saylink e{};
|
||||
|
||||
entry.id = atoi(row[0]);
|
||||
entry.phrase = row[1] ? row[1] : "";
|
||||
e.id = atoi(row[0]);
|
||||
e.phrase = row[1] ? row[1] : "";
|
||||
|
||||
all_entries.push_back(entry);
|
||||
all_entries.push_back(e);
|
||||
}
|
||||
|
||||
return all_entries;
|
||||
}
|
||||
|
||||
static int DeleteWhere(Database& db, std::string where_filter)
|
||||
static int DeleteWhere(Database& db, const std::string &where_filter)
|
||||
{
|
||||
auto results = db.QueryDatabase(
|
||||
fmt::format(
|
||||
@@ -301,6 +301,32 @@ public:
|
||||
return (results.Success() ? results.RowsAffected() : 0);
|
||||
}
|
||||
|
||||
static int64 GetMaxId(Database& db)
|
||||
{
|
||||
auto results = db.QueryDatabase(
|
||||
fmt::format(
|
||||
"SELECT COALESCE(MAX({}), 0) FROM {}",
|
||||
PrimaryKey(),
|
||||
TableName()
|
||||
)
|
||||
);
|
||||
|
||||
return (results.Success() && results.begin()[0] ? strtoll(results.begin()[0], nullptr, 10) : 0);
|
||||
}
|
||||
|
||||
static int64 Count(Database& db, const std::string &where_filter = "")
|
||||
{
|
||||
auto results = db.QueryDatabase(
|
||||
fmt::format(
|
||||
"SELECT COUNT(*) FROM {} {}",
|
||||
TableName(),
|
||||
(where_filter.empty() ? "" : "WHERE " + where_filter)
|
||||
)
|
||||
);
|
||||
|
||||
return (results.Success() && results.begin()[0] ? strtoll(results.begin()[0], nullptr, 10) : 0);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif //EQEMU_BASE_SAYLINK_REPOSITORY_H
|
||||
|
||||
Reference in New Issue
Block a user