chore(event_adder_impl): reuse constant p_size
All checks were successful
continuous-integration/drone/push Build is passing

size of pools array will stay the same anyway
This commit is contained in:
surtur 2021-12-08 04:14:54 +01:00
parent c401a47ca7
commit 82288fe20d
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -9,22 +9,22 @@ namespace accumulator {
class EventAdderImpl final : public EventAdder {
private:
static constexpr const uint8_t p_size{32};
int pool;
static unsigned int source_id;
static accumulator::Pool pools[32];
static accumulator::Pool pools[p_size];
public:
EventAdderImpl(const unsigned int source_id, const accumulator::Pool pools[32]) {
this->source_id = source_id;
static constexpr const uint64_t pools_size{pools.size()};
for (unsigned int i = 0; i < pools_size; i++) {
for (unsigned int i = 0; i < this->p_size; i++) {
this->pools[i] = pools[i];
}
this->pool = 0;
}
void add(std::vector<char> event) override {
this->pool = (this->pool + 1) % pools.size();
this->pool = (this->pool + 1) % p_size;
pools[this->pool].add_entropy(source_id, event);
}