This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
fortuna/event_adder_impl.h
surtur 872e6f7f9f
All checks were successful
continuous-integration/drone/push Build is passing
add event_adder_impl
2021-12-08 03:58:18 +01:00

35 lines
765 B
C++

#ifndef FORTUNA_EVENT_ADDER_IMPL_H
#define FORTUNA_EVENT_ADDER_IMPL_H
#include "event_adder.h"
#include "pool.h"
namespace fortuna {
namespace accumulator {
class EventAdderImpl final : public EventAdder {
private:
int pool;
static unsigned int source_id;
static accumulator::Pool pools[32];
public:
EventAdderImpl(const unsigned int source_id, const accumulator::Pool pools[32]) {
this->source_id = source_id;
for (unsigned int i = 0; i < pools.size(); i++) {
this->pools[i] = pools[i];
}
this->pool = 0;
}
void add(std::vector<char> event) override {
this->pool = (this->pool + 1) % pools.size();
pools[this->pool].add_entropy(source_id, event);
}
};
} //namespace accumulator
} //namespace fortuna
#endif//FORTUNA_EVENT_ADDER_IMPL_H