2022-03-01 17:17:15 +01:00
|
|
|
#include "ProgressPrinter.h"
|
2022-03-04 15:14:02 +01:00
|
|
|
|
2022-03-01 17:17:15 +01:00
|
|
|
#include "fsfw/serviceinterface/ServiceInterfaceStream.h"
|
|
|
|
|
|
|
|
ProgressPrinter::ProgressPrinter(std::string name, uint32_t numSteps)
|
|
|
|
: name(name), numSteps(numSteps) {}
|
|
|
|
|
2022-03-04 15:14:02 +01:00
|
|
|
ProgressPrinter::~ProgressPrinter() {}
|
2022-03-01 17:17:15 +01:00
|
|
|
|
|
|
|
void ProgressPrinter::print(uint32_t currentStep) {
|
|
|
|
float progressInPercent = static_cast<float>(currentStep) / static_cast<float>(numSteps) * 100;
|
|
|
|
if (static_cast<uint32_t>(progressInPercent) >= nextProgressPrint) {
|
|
|
|
sif::info << name << " progress: " << progressInPercent << " %" << std::endl;
|
|
|
|
nextProgressPrint += FIVE_PERCENT;
|
|
|
|
}
|
|
|
|
}
|