1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/lib/hooks/stats.cpp

290 lines
6.1 KiB
C++
Raw Permalink Normal View History

2019-03-26 15:33:47 +01:00
/** Statistic hooks.
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
2020-01-20 17:17:00 +01:00
* @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
2019-03-26 15:33:47 +01:00
* @license GNU General Public License (version 3)
*
* VILLASnode
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************************/
/** @addtogroup hooks Hook functions
* @{
*/
#include <memory>
2019-03-26 15:33:47 +01:00
2020-03-04 13:07:20 +01:00
#include <villas/common.hpp>
#include <villas/advio.hpp>
2019-03-26 15:33:47 +01:00
#include <villas/hook.hpp>
#include <villas/node/exceptions.hpp>
2019-06-23 13:35:42 +02:00
#include <villas/stats.hpp>
2019-03-26 15:33:47 +01:00
#include <villas/node.h>
#include <villas/timing.h>
namespace villas {
namespace node {
class StatsHook;
class StatsWriteHook : public Hook {
protected:
StatsHook *parent;
public:
2020-08-25 21:00:52 +02:00
StatsWriteHook(StatsHook *pa, struct vpath *p, struct vnode *n, int fl, int prio, bool en = true) :
Hook(p, n, fl, prio, en),
parent(pa)
{
2019-06-23 16:13:23 +02:00
state = State::CHECKED;
}
virtual Hook::Reason process(sample *smp);
};
class StatsReadHook : public Hook {
protected:
sample *last;
StatsHook *parent;
public:
2020-08-25 21:00:52 +02:00
StatsReadHook(StatsHook *pa, struct vpath *p, struct vnode *n, int fl, int prio, bool en = true) :
Hook(p, n, fl, prio, en),
last(nullptr),
parent(pa)
{
2019-06-23 16:13:23 +02:00
state = State::CHECKED;
}
virtual void start()
{
2019-06-23 16:13:23 +02:00
assert(state == State::PREPARED);
last = nullptr;
2019-06-23 16:13:23 +02:00
state = State::STARTED;
}
virtual void stop()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
if (last)
sample_decref(last);
2019-06-23 16:13:23 +02:00
state = State::STOPPED;
}
virtual Hook::Reason process(sample *smp);
};
2019-03-26 15:33:47 +01:00
class StatsHook : public Hook {
friend StatsReadHook;
friend StatsWriteHook;
2019-03-26 15:33:47 +01:00
protected:
StatsReadHook *readHook;
StatsWriteHook *writeHook;
2019-06-23 13:35:42 +02:00
enum Stats::Format format;
2019-03-26 15:33:47 +01:00
int verbose;
int warmup;
int buckets;
std::shared_ptr<Stats> stats;
2019-03-26 15:33:47 +01:00
AFILE *output;
std::string uri;
2019-03-26 15:33:47 +01:00
public:
2020-08-25 21:00:52 +02:00
StatsHook(struct vpath *p, struct vnode *n, int fl, int prio, bool en = true) :
2019-03-26 15:33:47 +01:00
Hook(p, n, fl, prio, en),
2019-06-23 13:35:42 +02:00
format(Stats::Format::HUMAN),
2019-03-26 15:33:47 +01:00
verbose(0),
warmup(500),
buckets(20),
output(nullptr),
uri()
2019-03-26 15:33:47 +01:00
{
readHook = new StatsReadHook(this, p, n, fl, prio, en);
writeHook = new StatsWriteHook(this, p, n, fl, prio, en);
if (!readHook || !writeHook)
throw MemoryAllocationError();
/* Add child hooks */
if (node) {
vlist_push(&node->in.hooks, (void *) readHook);
vlist_push(&node->out.hooks, (void *) writeHook);
}
2019-03-26 15:33:47 +01:00
}
StatsHook & operator=(const StatsHook&) = delete;
StatsHook(const StatsHook&) = delete;
2019-03-26 15:33:47 +01:00
virtual void start()
{
2019-06-23 16:13:23 +02:00
assert(state == State::PREPARED);
2019-03-26 15:33:47 +01:00
if (!uri.empty()) {
output = afopen(uri.c_str(), "w+");
2019-03-26 15:33:47 +01:00
if (!output)
throw RuntimeError("Failed to open file '{}' for writing", uri);
}
2019-06-23 16:13:23 +02:00
state = State::STARTED;
2019-03-26 15:33:47 +01:00
}
virtual void stop()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
stats->print(uri.empty() ? stdout : output->file, format, verbose);
2019-03-26 15:33:47 +01:00
if (!uri.empty())
2019-03-26 15:33:47 +01:00
afclose(output);
2019-06-23 16:13:23 +02:00
state = State::STOPPED;
2019-03-26 15:33:47 +01:00
}
virtual void restart()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
stats->reset();
2019-03-26 15:33:47 +01:00
}
virtual Hook::Reason process(sample *smp)
{
// Only call readHook if it hasnt been added to the node's hook list
if (!node)
return readHook->process(smp);
return Hook::Reason::OK;
}
2019-03-26 15:33:47 +01:00
virtual void periodic()
{
2019-06-23 16:13:23 +02:00
assert(state == State::STARTED);
2019-03-26 15:33:47 +01:00
stats->printPeriodic(uri.empty() ? stdout : output->file, format, node);
2019-03-26 15:33:47 +01:00
}
virtual void parse(json_t *cfg)
{
2019-06-23 13:35:42 +02:00
int ret;
2019-03-26 15:33:47 +01:00
json_error_t err;
2019-06-23 16:13:23 +02:00
assert(state != State::STARTED);
2019-03-26 15:33:47 +01:00
2020-08-28 19:49:36 +02:00
Hook::parse(cfg);
2019-03-26 15:33:47 +01:00
const char *f = nullptr;
const char *u = nullptr;
ret = json_unpack_ex(cfg, &err, 0, "{ s?: s, s?: b, s?: i, s?: i, s?: s }",
"format", &f,
"verbose", &verbose,
"warmup", &warmup,
"buckets", &buckets,
"output", &u
);
if (ret)
throw ConfigError(cfg, err, "node-config-hook-stats");
if (f) {
2019-06-23 13:35:42 +02:00
try {
format = Stats::lookupFormat(f);
2020-08-17 17:09:55 +02:00
} catch (const std::invalid_argument &e) {
2019-03-26 15:33:47 +01:00
throw ConfigError(cfg, "node-config-hook-stats", "Invalid statistic output format: {}", f);
2019-06-23 13:35:42 +02:00
}
2019-03-26 15:33:47 +01:00
}
if (u)
uri = u;
2019-03-26 15:33:47 +01:00
2019-06-23 16:13:23 +02:00
state = State::PARSED;
2019-03-26 15:33:47 +01:00
}
virtual void prepare()
{
assert(state == State::CHECKED);
stats = std::make_shared<villas::Stats>(buckets, warmup);
/* Register statistic object to path.
*
* This allows the path code to update statistics. */
if (node)
node->stats = stats;
state = State::PREPARED;
}
2019-03-26 15:33:47 +01:00
};
Hook::Reason StatsWriteHook::process(sample *smp)
{
timespec now = time_now();
parent->stats->update(Stats::Metric::AGE, time_delta(&smp->ts.received, &now));
return Reason::OK;
}
Hook::Reason StatsReadHook::process(sample *smp)
{
if (last) {
if (smp->flags & last->flags & (int) SampleFlags::HAS_TS_RECEIVED)
parent->stats->update(Stats::Metric::GAP_RECEIVED, time_delta(&last->ts.received, &smp->ts.received));
if (smp->flags & last->flags & (int) SampleFlags::HAS_TS_ORIGIN)
parent->stats->update(Stats::Metric::GAP_SAMPLE, time_delta(&last->ts.origin, &smp->ts.origin));
if ((smp->flags & (int) SampleFlags::HAS_TS_ORIGIN) && (smp->flags & (int) SampleFlags::HAS_TS_RECEIVED))
parent->stats->update(Stats::Metric::OWD, time_delta(&smp->ts.origin, &smp->ts.received));
if (smp->flags & last->flags & (int) SampleFlags::HAS_SEQUENCE) {
int dist = smp->sequence - (int32_t) last->sequence;
if (dist != 1)
parent->stats->update(Stats::Metric::SMPS_REORDERED, dist);
}
}
sample_incref(smp);
if (last)
sample_decref(last);
last = smp;
return Reason::OK;
}
2019-03-26 15:33:47 +01:00
/* Register hook */
static char n[] = "stats";
static char d[] = "Collect statistics for the current path";
static HookPlugin<StatsHook, n, d, (int) Hook::Flags::NODE_READ> p;
2019-03-26 15:33:47 +01:00
} /* namespace node */
} /* namespace villas */
/** @} */