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.
102 lines
2.6 KiB
C++
102 lines
2.6 KiB
C++
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* By using this file, you agree to the terms and conditions set
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
* the distribution.
|
|
*
|
|
*/
|
|
|
|
/******************************************************************************
|
|
* File: metrics_hub.h
|
|
* Description: Centralizes metrics interfaces to allow different metrics clients
|
|
* to get metrics
|
|
*****************************************************************************/
|
|
|
|
#ifndef SRSRAN_METRICS_HUB_H
|
|
#define SRSRAN_METRICS_HUB_H
|
|
|
|
#include "srsran/common/threads.h"
|
|
#include <chrono>
|
|
#include <mutex>
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
namespace srsran {
|
|
|
|
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(const metrics_t& m, const uint32_t period_usec) = 0;
|
|
virtual void stop() = 0;
|
|
};
|
|
|
|
template <typename metrics_t>
|
|
class metrics_hub : public periodic_thread
|
|
{
|
|
public:
|
|
metrics_hub() : sleep_start(std::chrono::steady_clock::now()), periodic_thread("METRICS_HUB") {}
|
|
bool init(metrics_interface<metrics_t>* m_, float report_period_secs_ = 1.0)
|
|
{
|
|
m = m_;
|
|
// Start with user-default priority
|
|
start_periodic(report_period_secs_ * 1e6, -2);
|
|
return true;
|
|
}
|
|
void stop()
|
|
{
|
|
stop_thread();
|
|
// stop all listeners
|
|
for (uint32_t i = 0; i < listeners.size(); i++) {
|
|
listeners[i]->stop();
|
|
}
|
|
thread_cancel();
|
|
wait_thread_finish();
|
|
}
|
|
|
|
void add_listener(metrics_listener<metrics_t>* listener)
|
|
{
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
listeners.push_back(listener);
|
|
}
|
|
|
|
private:
|
|
void run_period()
|
|
{
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
// get current time and check how long we slept
|
|
auto period_usec =
|
|
std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::steady_clock::now() - sleep_start);
|
|
|
|
if (m) {
|
|
metrics_t metric = {};
|
|
m->get_metrics(&metric);
|
|
for (uint32_t i = 0; i < listeners.size(); i++) {
|
|
listeners[i]->set_metrics(metric, period_usec.count());
|
|
}
|
|
}
|
|
// store start of sleep period
|
|
sleep_start = std::chrono::steady_clock::now();
|
|
}
|
|
metrics_interface<metrics_t>* m = nullptr;
|
|
std::vector<metrics_listener<metrics_t>*> listeners;
|
|
std::chrono::steady_clock::time_point sleep_start;
|
|
std::mutex mutex;
|
|
};
|
|
|
|
} // namespace srsran
|
|
|
|
#endif // SRSRAN_METRICS_HUB_H
|