124 lines
3.0 KiB
C++
124 lines
3.0 KiB
C++
#pragma once
|
|
#include <Arduino.h>
|
|
class TimeAverage{
|
|
double factor=0.3;
|
|
double current=0;
|
|
unsigned long count=0;
|
|
unsigned long max=0;
|
|
bool init=false;
|
|
public:
|
|
TimeAverage(double factor){
|
|
this->factor=factor;
|
|
}
|
|
void add(unsigned long diff){
|
|
if (diff > max) max=diff;
|
|
count++;
|
|
if (! init){
|
|
current=(double)diff;
|
|
init=true;
|
|
}
|
|
else{
|
|
double add=((double)diff - current)*factor;
|
|
current+=add;
|
|
}
|
|
}
|
|
double getCurrent(){
|
|
return current;
|
|
}
|
|
|
|
unsigned long getCount(){
|
|
return count;
|
|
}
|
|
void resetMax(){
|
|
max=0;
|
|
}
|
|
unsigned long getMax(){
|
|
return max;
|
|
}
|
|
|
|
};
|
|
class TimeMonitor{
|
|
TimeAverage **times=NULL;
|
|
struct timeval *current=NULL;
|
|
struct timeval start;
|
|
unsigned long lastLog=0;
|
|
unsigned long lastLogCount=0;
|
|
unsigned long count=0;
|
|
unsigned long max=0;
|
|
size_t len;
|
|
unsigned long tdiff(struct timeval &tnew,struct timeval &told){
|
|
time_t sdiff=tnew.tv_sec-told.tv_sec;
|
|
time_t udiff=0;
|
|
if (tnew.tv_usec < told.tv_usec){
|
|
if (sdiff > 0) {
|
|
sdiff--;
|
|
udiff=tnew.tv_usec+1000000UL-told.tv_usec;
|
|
}
|
|
}
|
|
else{
|
|
udiff=tnew.tv_usec-told.tv_usec;
|
|
}
|
|
return sdiff * 1000000UL +udiff;
|
|
}
|
|
public:
|
|
TimeMonitor(size_t len,double factor=0.3){
|
|
this->len=len;
|
|
times=new TimeAverage*[len];
|
|
for (size_t i=0;i<len;i++){
|
|
times[i]=new TimeAverage(factor);
|
|
}
|
|
current=new struct timeval[len];
|
|
reset();
|
|
count=0;
|
|
}
|
|
void reset(){
|
|
gettimeofday(&start,NULL);
|
|
for (size_t i=0;i<len;i++) current[i]={0,0};
|
|
count++;
|
|
|
|
}
|
|
String getLog(){
|
|
unsigned long now=millis();
|
|
String log;
|
|
if (lastLog != 0){
|
|
unsigned long num=count-lastLogCount;
|
|
unsigned long tdif=now-lastLog;
|
|
if (tdif > 0){
|
|
log+=String((double)(num*1000)/(double)tdif);
|
|
log+="/s[";
|
|
log+=String(max);
|
|
log+="us]#";
|
|
}
|
|
}
|
|
lastLog=now;
|
|
lastLogCount=count;
|
|
max=0;
|
|
for (size_t i=1;i<len;i++){
|
|
if (times[i]->getCount()){
|
|
log+=String(i);
|
|
log+=":";
|
|
log+=String(times[i]->getCurrent());
|
|
log+="[";
|
|
log+=String(times[i]->getMax());
|
|
log+="],";
|
|
}
|
|
}
|
|
for (size_t i=0;i<len;i++){
|
|
times[i]->resetMax();
|
|
}
|
|
return log;
|
|
}
|
|
void setTime(size_t index){
|
|
if (index < 1 || index >= len) return;
|
|
struct timeval *sv=&start;
|
|
for (size_t i=0;i<index;i++){
|
|
if (current[i].tv_usec != 0 || current[i].tv_usec != 0) sv=¤t[i];
|
|
}
|
|
gettimeofday(¤t[index],NULL);
|
|
unsigned long currentv=tdiff(current[index],*sv);
|
|
unsigned long startDiff=tdiff(current[index],start);
|
|
if (startDiff > max) max=startDiff;
|
|
times[index-1]->add(currentv);
|
|
}
|
|
};
|