2021-06-16 10:36:19 -04:00
|
|
|
/** Redis node-type
|
|
|
|
*
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
|
|
* @copyright 2014-2021, Institute for Automation of Complex Power Systems, EONERC
|
|
|
|
* @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/>.
|
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <chrono>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include <villas/nodes/redis.hpp>
|
|
|
|
#include <villas/nodes/redis_helpers.hpp>
|
|
|
|
#include <villas/utils.hpp>
|
|
|
|
#include <villas/sample.h>
|
|
|
|
#include <villas/exceptions.hpp>
|
|
|
|
#include <villas/super_node.hpp>
|
|
|
|
#include <villas/exceptions.hpp>
|
|
|
|
#include <villas/timing.h>
|
2021-07-20 19:35:15 +02:00
|
|
|
#include <villas/node/config.h>
|
2021-06-16 10:36:19 -04:00
|
|
|
|
|
|
|
/* Forward declartions */
|
|
|
|
static struct vnode_type p;
|
2021-07-20 21:05:54 +02:00
|
|
|
static void redis_on_message(struct vnode *n, const std::string &channel, const std::string &msg);
|
2021-06-16 10:36:19 -04:00
|
|
|
|
|
|
|
using namespace villas;
|
|
|
|
using namespace villas::node;
|
|
|
|
using namespace villas::utils;
|
|
|
|
using namespace sw::redis;
|
|
|
|
|
|
|
|
static std::unordered_map<ConnectionOptions, RedisConnection*> connections;
|
|
|
|
|
|
|
|
RedisConnection::RedisConnection(const ConnectionOptions &opts) :
|
|
|
|
context(opts),
|
|
|
|
subscriber(context.subscriber()),
|
|
|
|
logger(logging.get("nodes:redis"))
|
|
|
|
{
|
|
|
|
/* Enable keyspace notifications */
|
|
|
|
context.command("config", "set", "notify-keyspace-events", "K$h");
|
|
|
|
|
2021-07-20 21:05:54 +02:00
|
|
|
subscriber.on_message([this](const std::string &channel, const std::string &msg) {
|
2021-06-16 10:36:19 -04:00
|
|
|
onMessage(channel, msg);
|
|
|
|
});
|
|
|
|
|
|
|
|
logger->info("New connection: {}", opts);
|
|
|
|
|
|
|
|
state = State::INITIALIZED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RedisConnection * RedisConnection::get(const ConnectionOptions &opts)
|
|
|
|
{
|
|
|
|
RedisConnection *conn;
|
|
|
|
|
|
|
|
auto it = connections.find(opts);
|
|
|
|
if (it != connections.end())
|
|
|
|
conn = it->second;
|
|
|
|
else {
|
|
|
|
try {
|
|
|
|
conn = new RedisConnection(opts);
|
|
|
|
} catch (IoError &e) {
|
|
|
|
throw RuntimeError(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
connections[opts] = conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
2021-07-20 21:05:54 +02:00
|
|
|
void RedisConnection::onMessage(const std::string &channel, const std::string &msg)
|
2021-06-16 10:36:19 -04:00
|
|
|
{
|
|
|
|
auto itp = subscriberMap.equal_range(channel);
|
|
|
|
for (auto it = itp.first; it != itp.second; ++it) {
|
|
|
|
struct vnode *n = it->second;
|
|
|
|
|
|
|
|
redis_on_message(n, channel, msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RedisConnection::subscribe(struct vnode *n, const std::string &channel)
|
|
|
|
{
|
|
|
|
subscriber.subscribe(channel);
|
|
|
|
|
|
|
|
subscriberMap.emplace(channel, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RedisConnection::unsubscribe(struct vnode *n, const std::string &channel)
|
|
|
|
{
|
|
|
|
auto itp = subscriberMap.equal_range(channel);
|
|
|
|
for (auto it = itp.first; it != itp.second; ++it) {
|
|
|
|
if (it->second == n)
|
|
|
|
subscriberMap.erase(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subscriberMap.count(channel) == 0)
|
|
|
|
subscriber.subscribe(channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RedisConnection::start()
|
|
|
|
{
|
|
|
|
if (state == State::RUNNING)
|
|
|
|
return; /* Already running */
|
|
|
|
|
|
|
|
state = State::RUNNING;
|
|
|
|
|
|
|
|
thread = std::thread(&RedisConnection::loop, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RedisConnection::stop()
|
|
|
|
{
|
|
|
|
state = State::STOPPING;
|
|
|
|
|
|
|
|
thread.join();
|
|
|
|
|
|
|
|
state = State::INITIALIZED;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RedisConnection::loop()
|
|
|
|
{
|
|
|
|
while (state == State::RUNNING) {
|
|
|
|
try {
|
|
|
|
subscriber.consume();
|
|
|
|
}
|
|
|
|
catch (const TimeoutError &e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
catch (const ReplyError &e) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
catch (const Error &e) {
|
|
|
|
/* Create a new subscriber */
|
|
|
|
subscriber = context.subscriber();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int redis_get(struct vnode *n, struct sample * const smps[], unsigned cnt)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
switch (r->mode) {
|
|
|
|
case RedisMode::KEY: {
|
|
|
|
auto value = r->conn->context.get(r->key);
|
|
|
|
if (value) {
|
|
|
|
size_t rbytes, bytes = value->size();
|
|
|
|
ret = r->formatter->sscan(value->c_str(), bytes, &rbytes, smps, cnt);
|
|
|
|
|
|
|
|
if (rbytes != bytes)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
case RedisMode::HASH: {
|
|
|
|
struct sample *smp = smps[0];
|
|
|
|
|
|
|
|
for (unsigned j = 0; j < vlist_length(&n->in.signals); j++) {
|
|
|
|
struct signal *sig = (struct signal *) vlist_at(&n->in.signals, j);
|
|
|
|
union signal_data *data = &smp->data[j];
|
|
|
|
|
|
|
|
*data = sig->init;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unordered_map<std::string, std::string> kvs;
|
|
|
|
r->conn->context.hgetall(r->key, std::inserter(kvs, kvs.begin()));
|
|
|
|
|
|
|
|
int max_idx = -1;
|
|
|
|
for (auto &it : kvs) {
|
|
|
|
auto &name = it.first;
|
|
|
|
auto &value = it.second;
|
|
|
|
|
|
|
|
struct signal *sig = vlist_lookup_name<struct signal>(&n->in.signals, name);
|
|
|
|
if (!sig)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto idx = vlist_index(&n->in.signals, sig);
|
|
|
|
if (idx > max_idx)
|
|
|
|
max_idx = idx;
|
|
|
|
|
|
|
|
char *end;
|
|
|
|
ret = signal_data_parse_str(&smp->data[idx], sig->type, value.c_str(), &end);
|
|
|
|
if (ret < 0)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
smp->flags = 0;
|
|
|
|
smp->length = max_idx + 1;
|
|
|
|
|
|
|
|
if (smp->length > 0)
|
|
|
|
smp->flags |= (int) SampleFlags::HAS_DATA;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-20 21:05:54 +02:00
|
|
|
static void redis_on_message(struct vnode *n, const std::string &channel, const std::string &msg)
|
2021-06-16 10:36:19 -04:00
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
n->logger->debug("Message: {}: {}", channel, msg);
|
|
|
|
|
|
|
|
int alloc, scanned, pushed;
|
|
|
|
unsigned cnt = n->in.vectorize;
|
|
|
|
struct sample *smps[cnt];
|
|
|
|
|
|
|
|
alloc = sample_alloc_many(&r->pool, smps, cnt);
|
|
|
|
if (alloc < 0) {
|
|
|
|
n->logger->error("Failed to allocate samples");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if ((unsigned) alloc < cnt)
|
|
|
|
n->logger->warn("Pool underrun");
|
|
|
|
|
|
|
|
switch (r->mode) {
|
|
|
|
case RedisMode::CHANNEL: {
|
|
|
|
size_t rbytes;
|
|
|
|
scanned = r->formatter->sscan(msg.c_str(), msg.size(), &rbytes, smps, alloc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case RedisMode::HASH:
|
|
|
|
case RedisMode::KEY:
|
|
|
|
scanned = redis_get(n, smps, cnt);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scanned < 0) {
|
|
|
|
n->logger->error("Failed to decode samples");
|
|
|
|
pushed = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
pushed = queue_signalled_push_many(&r->queue, (void **) smps, scanned);
|
|
|
|
if (pushed < 0) {
|
|
|
|
n->logger->error("Failed to enqueue");
|
|
|
|
pushed = 0;
|
|
|
|
}
|
|
|
|
else if (pushed != scanned)
|
|
|
|
n->logger->warn("Queue underrun");
|
|
|
|
|
|
|
|
out: sample_decref_many(smps + pushed, alloc - pushed);
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_init(struct vnode *n)
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
r->mode = RedisMode::KEY;
|
|
|
|
r->formatter = nullptr;
|
|
|
|
r->notify = true;
|
|
|
|
r->rate = 1.0;
|
|
|
|
|
|
|
|
new (&r->options) ConnectionOptions;
|
|
|
|
new (&r->task) Task(CLOCK_REALTIME);
|
|
|
|
new (&r->key) std::string();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_destroy(struct vnode *n)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
if (r->formatter)
|
|
|
|
delete r->formatter;
|
|
|
|
|
|
|
|
using string = std::string;
|
|
|
|
|
|
|
|
r->options.~ConnectionOptions();
|
|
|
|
r->key.~string();
|
|
|
|
r->task.~Task();
|
|
|
|
|
|
|
|
ret = queue_signalled_destroy(&r->queue);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = pool_destroy(&r->pool);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_parse(struct vnode *n, json_t *json)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
json_error_t err;
|
|
|
|
json_t *json_ssl = nullptr;
|
|
|
|
json_t *json_format = nullptr;
|
|
|
|
|
|
|
|
const char *host = nullptr;
|
|
|
|
const char *path = nullptr;
|
|
|
|
const char *user = nullptr;
|
|
|
|
const char *password = nullptr;
|
|
|
|
const char *mode = nullptr;
|
|
|
|
const char *uri = nullptr;
|
|
|
|
const char *key = nullptr;
|
|
|
|
const char *channel = nullptr;
|
|
|
|
int keepalive = -1;
|
|
|
|
int db = -1;
|
|
|
|
int notify = -1;
|
|
|
|
|
|
|
|
double connect_timeout = -1;
|
|
|
|
double socket_timeout = -1;
|
|
|
|
|
|
|
|
ret = json_unpack_ex(json, &err, 0, "{ s?: o, s?: s, s?: s, s?: i, s?: s, s?: s, s?: s, s?: i, s?: { s?: F, s?: F }, s?: o, s?: b, s?: s, s?: s, s?: s, s?: b, s?: F }",
|
|
|
|
"format", &json_format,
|
|
|
|
"uri", &uri,
|
|
|
|
"host", &host,
|
|
|
|
"port", &r->options.port,
|
|
|
|
"path", &path,
|
|
|
|
"user", &user,
|
|
|
|
"password", &password,
|
|
|
|
"db", &db,
|
|
|
|
"timeout",
|
|
|
|
"connect", &connect_timeout,
|
|
|
|
"socket", &socket_timeout,
|
|
|
|
"ssl", &json_ssl,
|
|
|
|
"keepalive", &keepalive,
|
|
|
|
"mode", &mode,
|
|
|
|
"key", &key,
|
|
|
|
"channel", &channel,
|
|
|
|
"notify", ¬ify,
|
|
|
|
"rate", &r->rate
|
|
|
|
);
|
|
|
|
if (ret)
|
|
|
|
throw ConfigError(json, err, "node-config-node-redis", "Failed to parse node configuration");
|
|
|
|
|
2021-07-20 19:35:15 +02:00
|
|
|
#ifdef REDISPP_WITH_TLS
|
2021-06-16 10:36:19 -04:00
|
|
|
if (json_ssl) {
|
|
|
|
const char *cacert;
|
|
|
|
const char *cacertdir;
|
|
|
|
const char *cert;
|
|
|
|
const char *key;
|
|
|
|
|
|
|
|
int enabled = 1;
|
|
|
|
|
|
|
|
ret = json_unpack_ex(json_ssl, &err, 0, "{ s?: b, s?: s, s?: s, s?: s, s?: s }",
|
|
|
|
"enabled", &enabled,
|
|
|
|
"cacert", &cacert,
|
|
|
|
"cacertdir", &cacertdir,
|
|
|
|
"cert", &cert,
|
|
|
|
"key", &key
|
|
|
|
);
|
|
|
|
if (ret)
|
|
|
|
throw ConfigError(json, err, "node-config-node-redis-ssl", "Failed to parse Redis SSL configuration");
|
|
|
|
|
|
|
|
r->options.tls.enabled = enabled != 0;
|
|
|
|
|
|
|
|
r->options.tls.cacert = cacert;
|
|
|
|
r->options.tls.cacertdir = cacertdir;
|
|
|
|
r->options.tls.cert = cert;
|
|
|
|
r->options.tls.key = key;
|
|
|
|
|
|
|
|
if (host)
|
|
|
|
r->options.tls.sni = host;
|
|
|
|
}
|
2021-07-20 19:35:15 +02:00
|
|
|
#else
|
|
|
|
throw ConfigError(json_ssl, "node-config-node-redis-ssl", "This built of the redis++ library does not support SSL");
|
|
|
|
#endif /* REDISPP_WITH_TLS */
|
2021-06-16 10:36:19 -04:00
|
|
|
|
|
|
|
/* Mode */
|
|
|
|
if (mode) {
|
|
|
|
if (!strcmp(mode, "key") || !strcmp(mode, "set-get"))
|
|
|
|
r->mode = RedisMode::KEY;
|
|
|
|
else if (!strcmp(mode, "hash") || !strcmp(mode, "hset-hget"))
|
|
|
|
r->mode = RedisMode::HASH;
|
|
|
|
else if (!strcmp(mode, "channel") || !strcmp(mode, "pub-sub"))
|
|
|
|
r->mode = RedisMode::CHANNEL;
|
|
|
|
else
|
|
|
|
throw ConfigError(json, "node-config-node-redis-mode", "Invalid Redis mode: {}", mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Format */
|
|
|
|
r->formatter = json_format
|
|
|
|
? FormatFactory::make(json_format)
|
|
|
|
: FormatFactory::make("json");
|
|
|
|
if (!r->formatter)
|
|
|
|
throw ConfigError(json_format, "node-config-node-redis-format", "Invalid format configuration");
|
|
|
|
|
|
|
|
if (key && r->mode == RedisMode::KEY)
|
|
|
|
r->key = key;
|
|
|
|
if (channel && r->mode == RedisMode::CHANNEL)
|
|
|
|
r->key = channel;
|
|
|
|
|
|
|
|
if (notify >= 0)
|
|
|
|
r->notify = notify != 0;
|
|
|
|
|
|
|
|
/* Connection options */
|
|
|
|
if (uri)
|
|
|
|
r->options = ConnectionOptions(uri);
|
|
|
|
|
|
|
|
if (db >= 0)
|
|
|
|
r->options.db = db;
|
|
|
|
|
|
|
|
if (user)
|
|
|
|
r->options.user = user;
|
|
|
|
|
|
|
|
if (password)
|
|
|
|
r->options.password = password;
|
|
|
|
|
|
|
|
if (host)
|
|
|
|
r->options.host = host;
|
|
|
|
|
|
|
|
if (path)
|
|
|
|
r->options.path = path;
|
|
|
|
|
|
|
|
if (keepalive >= 0)
|
|
|
|
r->options.keep_alive = keepalive != 0;
|
|
|
|
|
|
|
|
if (socket_timeout >= 0)
|
|
|
|
r->options.socket_timeout = std::chrono::milliseconds((int) (1000 * socket_timeout));
|
|
|
|
|
|
|
|
if (connect_timeout >= 0)
|
|
|
|
r->options.connect_timeout = std::chrono::milliseconds((int) (1000 * connect_timeout));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_check(struct vnode *n)
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
if (!r->options.host.empty() && !r->options.path.empty())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (r->options.db < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char * redis_print(struct vnode *n)
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
std::stringstream ss;
|
|
|
|
|
|
|
|
ss << "mode=" << r->mode
|
|
|
|
<< ", key=" << r->key
|
|
|
|
<< ", notify=" << (r->notify ? "yes" : "no");
|
|
|
|
|
|
|
|
if (!r->notify)
|
|
|
|
ss << ", rate=" << r->rate;
|
|
|
|
|
|
|
|
ss << ", " << r->options;
|
|
|
|
|
|
|
|
return strdup(ss.str().c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_prepare(struct vnode *n)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
r->options.type = r->options.path.empty()
|
|
|
|
? ConnectionType::TCP
|
|
|
|
: ConnectionType::UNIX;
|
|
|
|
|
|
|
|
if (r->key.empty())
|
|
|
|
r->key = node_name_short(n);
|
|
|
|
|
|
|
|
ret = queue_signalled_init(&r->queue, 1024);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = pool_init(&r->pool, 1024, SAMPLE_LENGTH(64));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
r->conn = RedisConnection::get(r->options);
|
|
|
|
if (!r->conn)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_start(struct vnode *n)
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
r->formatter->start(&n->in.signals, ~(int) SampleFlags::HAS_OFFSET);
|
|
|
|
|
|
|
|
if (!r->notify)
|
|
|
|
r->task.setRate(r->rate);
|
|
|
|
|
|
|
|
switch (r->mode) {
|
|
|
|
case RedisMode::CHANNEL:
|
|
|
|
r->conn->subscribe(n, r->key);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RedisMode::HASH:
|
|
|
|
case RedisMode::KEY:
|
|
|
|
if (r->notify) {
|
|
|
|
auto pattern = fmt::format("__keyspace@{}__:{}", r->options.db, r->key);
|
|
|
|
r->conn->subscribe(n, pattern);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
r->conn->start();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_stop(struct vnode *n)
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
r->conn->stop();
|
|
|
|
|
|
|
|
if (!r->notify)
|
|
|
|
r->task.stop();
|
|
|
|
|
|
|
|
switch (r->mode) {
|
|
|
|
case RedisMode::CHANNEL:
|
|
|
|
r->conn->unsubscribe(n, r->key);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RedisMode::HASH:
|
|
|
|
case RedisMode::KEY:
|
|
|
|
if (r->notify) {
|
|
|
|
auto pattern = fmt::format("__keyspace@{}__:{}", r->options.db, r->key);
|
|
|
|
r->conn->unsubscribe(n, pattern);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_read(struct vnode *n, struct sample * const smps[], unsigned cnt)
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
/* Wait for new data */
|
|
|
|
if (r->notify || r->mode == RedisMode::CHANNEL) {
|
|
|
|
int pulled_cnt;
|
|
|
|
struct sample *pulled_smps[cnt];
|
|
|
|
|
|
|
|
pulled_cnt = queue_signalled_pull_many(&r->queue, (void **) pulled_smps, cnt);
|
|
|
|
|
|
|
|
sample_copy_many(smps, pulled_smps, pulled_cnt);
|
|
|
|
sample_decref_many(pulled_smps, pulled_cnt);
|
|
|
|
|
|
|
|
return pulled_cnt;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (r->task.wait() == 0)
|
|
|
|
throw SystemError("Failed to wait for task");
|
|
|
|
|
|
|
|
return redis_get(n, smps, cnt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_write(struct vnode *n, struct sample * const smps[], unsigned cnt)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
switch (r->mode) {
|
|
|
|
case RedisMode::CHANNEL:
|
|
|
|
for (unsigned i = 0; i < cnt; i++) {
|
|
|
|
char buf[1500];
|
|
|
|
size_t wbytes;
|
|
|
|
|
|
|
|
ret = r->formatter->sprint(buf, sizeof(buf), &wbytes, &smps[i], cnt);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
auto value = std::string_view(buf, wbytes);
|
|
|
|
|
|
|
|
r->conn->context.publish(r->key, value);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RedisMode::KEY: {
|
|
|
|
char buf[1500];
|
|
|
|
size_t wbytes;
|
|
|
|
|
|
|
|
ret = r->formatter->sprint(buf, sizeof(buf), &wbytes, smps, cnt);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
auto value = std::string_view(buf, wbytes);
|
|
|
|
|
|
|
|
r->conn->context.set(r->key, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case RedisMode::HASH: {
|
|
|
|
/* We only update the signals with their latest value here. */
|
|
|
|
struct sample *smp = smps[cnt - 1];
|
|
|
|
|
|
|
|
std::unordered_map<std::string, std::string> kvs;
|
|
|
|
|
|
|
|
for (unsigned j = 0; j < MIN(vlist_length(smp->signals), smp->length); j++) {
|
|
|
|
struct signal *sig = (struct signal *) vlist_at(smp->signals, j);
|
|
|
|
union signal_data *data = &smp->data[j];
|
|
|
|
|
|
|
|
char val[128];
|
|
|
|
signal_data_print_str(data, sig->type, val, sizeof(val), 16);
|
|
|
|
|
|
|
|
kvs[sig->name] = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
r->conn->context.hmset(r->key, kvs.begin(), kvs.end());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
int redis_poll_fds(struct vnode *n, int fds[])
|
|
|
|
{
|
|
|
|
struct redis *r = (struct redis *) n->_vd;
|
|
|
|
|
|
|
|
fds[0] = r->notify
|
|
|
|
? queue_signalled_fd(&r->queue)
|
|
|
|
: r->task.getFD();
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__((constructor(110)))
|
|
|
|
static void register_plugin() {
|
|
|
|
p.name = "redis";
|
|
|
|
p.description = "Redis key-value store";
|
|
|
|
p.vectorize = 0;
|
|
|
|
p.size = sizeof(struct redis);
|
|
|
|
p.init = redis_init;
|
|
|
|
p.destroy = redis_destroy;
|
|
|
|
p.parse = redis_parse;
|
|
|
|
p.check = redis_check;
|
|
|
|
p.print = redis_print;
|
|
|
|
p.prepare = redis_prepare;
|
|
|
|
p.start = redis_start;
|
|
|
|
p.stop = redis_stop;
|
|
|
|
p.read = redis_read;
|
|
|
|
p.write = redis_write;
|
|
|
|
p.poll_fds = redis_poll_fds;
|
|
|
|
|
|
|
|
if (!node_types)
|
|
|
|
node_types = new NodeTypeList();
|
|
|
|
|
|
|
|
node_types->push_back(&p);
|
|
|
|
}
|