mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
C++
63 lines
1.3 KiB
C++
|
|
/******************************************************************************
|
|
* File: metrics_hub.h
|
|
* Description: Centralizes metrics interfaces to allow different metrics clients
|
|
* to get metrics
|
|
*****************************************************************************/
|
|
|
|
#ifndef METRICS_HUB_H
|
|
#define METRICS_HUB_H
|
|
|
|
#include <vector>
|
|
#include "srslte/common/threads.h"
|
|
|
|
namespace srslte {
|
|
|
|
template<typename metrics_t>
|
|
class metrics_interface
|
|
{
|
|
public:
|
|
virtual bool get_metrics(metrics_t &m) = 0;
|
|
};
|
|
|
|
template<typename metrics_t>
|
|
class metrics_listener
|
|
{
|
|
public:
|
|
virtual void set_metrics(metrics_t &m) = 0;
|
|
};
|
|
|
|
template<typename metrics_t>
|
|
class metrics_hub : public periodic_thread
|
|
{
|
|
public:
|
|
bool init(metrics_interface<metrics_t> *m_, float report_period_secs=1.0) {
|
|
m = m_;
|
|
start_periodic(report_period_secs*1e6);
|
|
return true;
|
|
}
|
|
void stop() {
|
|
thread_cancel();
|
|
}
|
|
|
|
void add_listener(metrics_listener<metrics_t> *listener) {
|
|
listeners.push_back(listener);
|
|
}
|
|
|
|
private:
|
|
void run_period() {
|
|
metrics_t metric;
|
|
m->get_metrics(metric);
|
|
for (uint32_t i=0;i<listeners.size();i++) {
|
|
listeners[i]->set_metrics(metric);
|
|
}
|
|
}
|
|
metrics_interface<metrics_t> *m;
|
|
std::vector<metrics_listener<metrics_t>*> listeners;
|
|
|
|
};
|
|
|
|
} // namespace srslte
|
|
|
|
#endif // METRICS_HUB_H
|