You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/StatCounters.h

129 lines
2.2 KiB

#ifndef __CLASS_STAT_COUNTERS_H
#define __CLASS_STAT_COUNTERS_H
#include "proxysql_atomic.h"
#define PROXYSQL_STATSCOUNTERS_NOLOCK
class StatCounters {
private:
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
bool with_lock;
rwlock_t _lock;
#endif
int last;
int keep;
void cleanup() {
int i;
int l=last%len;
if (l<keep) {
for (i=l+1; i <= len+l-keep; i++) {
val[i]=0;
}
} else {
for (i=l+1 ; i<len; i++) {
val[i]=0;
}
for (i=0; i <= l-keep ; i++) {
val[i]=0;
}
}
}
public:
int len;
int *val;
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
StatCounters(int _l, int _k) {
#else
StatCounters(int _l, int _k, bool _wl=false) {
with_lock=_wl;
if (with_lock)
spinlock_rwlock_init(&_lock);
#endif
last=0;
keep=_k;
len=_l;
val=(int *)malloc(sizeof(int)*len);
int i;
for (i=0;i<len;i++) {
val[i]=0;
}
}
~StatCounters() {
free(val);
}
void set(int _i, int _v) {
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrlock(&_lock);
#endif
if ( _i > last ) {
last=_i; cleanup();
}
val[_i%len]=_v;
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrunlock(&_lock);
#endif
}
void incr(int _i) {
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrlock(&_lock);
#endif
if ( _i > last ) {
if ( _i > last + keep ) val[_i%len]=0;
last=_i; cleanup();
}
val[_i%len]++;
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrunlock(&_lock);
#endif
}
void decr(int _i) {
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrlock(&_lock);
#endif
if ( _i > last ) {
if ( _i > last + keep ) val[_i%len]=0;
last=_i; cleanup();
}
val[_i%len]--;
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrunlock(&_lock);
#endif
}
int sum(int _i, int _k) {
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrlock(&_lock);
#endif
if ( _i > last ) {
if ( _i > last + keep ) val[_i%len]=0;
last=_i; cleanup();
}
int i;
int ret=0;
for (i=0; i<_k; i++) {
ret+=val[(_i-i)%len];
}
#ifdef PROXYSQL_STATSCOUNTERS_NOLOCK
#else
if (with_lock)
spin_wrunlock(&_lock);
#endif
return ret;
}
};
#endif /* __CLASS_STAT_COUNTERS_H */