🐎 Max size 0 optimizations

This commit is contained in:
EntireTwix 2021-05-19 14:18:01 -07:00
parent 95bf549427
commit dc74da6072

View file

@ -103,6 +103,8 @@ public:
}
}
}
if constexpr (max_log_size)
{
if (state)
{
Transaction temp(a_name, b_name, amount);
@ -114,6 +116,7 @@ public:
b.log.AddTrans(std::move(temp2));
});
}
}
return state;
}
@ -169,6 +172,8 @@ public:
Json::Value GetLogs(const std::string &name, const std::string &attempt)
{
Json::Value res;
if constexpr (max_log_size)
{
if (!users.if_contains(name, [&res, &attempt](const User &u) {
if (u.password != XXH3_64bits(attempt.data(), attempt.size()))
{
@ -182,6 +187,7 @@ public:
{
return -1;
}
}
return res;
}
@ -226,9 +232,16 @@ public:
{
user_save.close();
for (const auto &u : temp.getMemberNames())
{
if constexpr(max_log_size)
{
users.try_emplace(u, temp[u]["balance"].asUInt(), std::move(temp[u]["password"].asUInt64()), std::move(temp[u]["log"]));
}
else
{
users.try_emplace(u, temp[u]["balance"].asUInt(), std::move(temp[u]["password"].asUInt64()), std::move(temp[u]["log"]));
}
}
}
}
} bank;