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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

337 lines
5.8 KiB
C++
Raw Normal View History

2018-08-21 00:25:44 +02:00
/** Utilities.
*
* @author Daniel Krebs <github@daniel-krebs.net>
2019-01-13 00:42:26 +01:00
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
2018-08-21 00:25:44 +02:00
* @license GNU General Public License (version 3)
*
* VILLAScommon
2018-08-21 00:25:44 +02:00
*
* 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 <vector>
#include <string>
2018-08-27 11:09:25 +02:00
#include <iostream>
2018-08-21 00:25:44 +02:00
2019-04-07 15:12:32 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdarg.h>
#include <string.h>
2018-08-27 11:09:25 +02:00
#include <unistd.h>
2019-04-07 15:12:32 +02:00
#include <math.h>
#include <pthread.h>
#include <ctype.h>
#include <fcntl.h>
2018-08-27 11:09:25 +02:00
2019-04-07 15:12:32 +02:00
#include <villas/config.h>
2018-08-27 11:09:25 +02:00
#include <villas/utils.h>
2018-08-21 00:25:44 +02:00
#include <villas/utils.hpp>
2018-08-27 11:09:25 +02:00
#include <villas/config.h>
2018-11-01 14:31:41 +01:00
#include <villas/log.hpp>
2018-08-21 00:25:44 +02:00
namespace villas {
namespace utils {
static pthread_t main_thread;
2018-08-21 00:25:44 +02:00
std::vector<std::string>
tokenize(std::string s, std::string delimiter)
{
std::vector<std::string> tokens;
size_t lastPos = 0;
size_t curentPos;
while((curentPos = s.find(delimiter, lastPos)) != std::string::npos) {
const size_t tokenLength = curentPos - lastPos;
tokens.push_back(s.substr(lastPos, tokenLength));
/* Advance in string */
2018-08-21 00:25:44 +02:00
lastPos = curentPos + delimiter.length();
}
/* Check if there's a last token behind the last delimiter. */
2018-08-21 00:25:44 +02:00
if(lastPos != s.length()) {
const size_t lastTokenLength = s.length() - lastPos;
tokens.push_back(s.substr(lastPos, lastTokenLength));
}
return tokens;
}
2018-08-27 11:09:25 +02:00
ssize_t read_random(char *buf, size_t len)
{
int fd;
2018-10-21 21:53:16 +01:00
ssize_t bytes = -1;
2018-08-27 11:09:25 +02:00
fd = open("/dev/urandom", O_RDONLY);
if (fd < 0)
return -1;
while (len) {
bytes = read(fd, buf, len);
if (bytes < 0)
break;
len -= bytes;
buf += bytes;
}
close(fd);
return bytes;
}
/* Setup exit handler */
int signals_init(void (*cb)(int signal, siginfo_t *sinfo, void *ctx))
{
int ret;
2018-11-30 21:43:37 +01:00
Logger logger = logging.get("signals");
2018-11-01 14:31:41 +01:00
logger->info("Initialize subsystem");
2018-08-27 11:09:25 +02:00
struct sigaction sa_quit;
sa_quit.sa_flags = SA_SIGINFO | SA_NODEFER;
sa_quit.sa_sigaction = cb;
struct sigaction sa_chld;
sa_chld.sa_flags = 0;
sa_chld.sa_handler = SIG_IGN;
main_thread = pthread_self();
sigemptyset(&sa_quit.sa_mask);
2019-04-07 11:25:39 +02:00
sigemptyset(&sa_chld.sa_mask);
2018-08-27 11:09:25 +02:00
2019-04-07 15:12:32 +02:00
ret = sigaction(SIGINT, &sa_quit, nullptr);
2018-08-27 11:09:25 +02:00
if (ret)
return ret;
2019-04-07 15:12:32 +02:00
ret = sigaction(SIGTERM, &sa_quit, nullptr);
2018-08-27 11:09:25 +02:00
if (ret)
return ret;
2019-04-07 15:12:32 +02:00
ret = sigaction(SIGALRM, &sa_quit, nullptr);
2018-08-27 11:09:25 +02:00
if (ret)
return ret;
2019-04-07 15:12:32 +02:00
ret = sigaction(SIGCHLD, &sa_chld, nullptr);
2018-08-27 11:09:25 +02:00
if (ret)
return ret;
return 0;
}
char * decolor(char *str)
{
char *p, *q;
bool inseq = false;
for (p = q = str; *p; p++) {
switch (*p) {
case 0x1b:
if (*(++p) == '[') {
inseq = true;
continue;
}
break;
case 'm':
if (inseq) {
inseq = false;
continue;
}
break;
}
if (!inseq) {
*q = *p;
q++;
}
}
*q = '\0';
return str;
}
extern "C" {
void killme(int sig)
{
/* Send only to main thread in case the ID was initilized by signals_init() */
if (main_thread)
pthread_kill(main_thread, sig);
else
kill(0, sig);
}
}
} /* namespace utils */
} /* namespace villas */
2019-04-07 15:12:32 +02:00
double box_muller(float m, float s)
{
double x1, x2, y1;
static double y2;
static int use_last = 0;
if (use_last) { /* use value from previous call */
y1 = y2;
use_last = 0;
}
else {
double w;
do {
x1 = 2.0 * randf() - 1.0;
x2 = 2.0 * randf() - 1.0;
w = x1*x1 + x2*x2;
} while (w >= 1.0);
w = sqrt(-2.0 * log(w) / w);
y1 = x1 * w;
y2 = x2 * w;
use_last = 1;
}
return m + y1 * s;
}
double randf()
{
return (double) random() / RAND_MAX;
}
char * strcatf(char **dest, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vstrcatf(dest, fmt, ap);
va_end(ap);
return *dest;
}
char * vstrcatf(char **dest, const char *fmt, va_list ap)
{
char *tmp;
int n = *dest ? strlen(*dest) : 0;
int i = vasprintf(&tmp, fmt, ap);
*dest = (char *)(realloc(*dest, n + i + 1));
if (*dest != NULL)
strncpy(*dest+n, tmp, i + 1);
free(tmp);
return *dest;
}
char * strf(const char *fmt, ...)
{
char *buf = NULL;
va_list ap;
va_start(ap, fmt);
vstrcatf(&buf, fmt, ap);
va_end(ap);
return buf;
}
char * vstrf(const char *fmt, va_list va)
{
char *buf = NULL;
vstrcatf(&buf, fmt, va);
return buf;
}
void * alloc(size_t bytes)
{
void *p = malloc(bytes);
if (!p)
error("Failed to allocate memory");
memset(p, 0, bytes);
return p;
}
void * memdup(const void *src, size_t bytes)
{
void *dst = alloc(bytes);
memcpy(dst, src, bytes);
return dst;
}
pid_t spawn(const char* name, char *const argv[])
{
pid_t pid;
pid = fork();
switch (pid) {
case -1: return -1;
case 0: return execvp(name, (char * const*) argv);
}
return pid;
}
size_t strlenp(const char *str)
{
size_t sz = 0;
for (const char *d = str; *d; d++) {
const unsigned char *c = (const unsigned char *) d;
if (isprint(*c))
sz++;
else if (c[0] == '\b')
sz--;
else if (c[0] == '\t')
sz += 4; /* tab width == 4 */
/* CSI sequence */
else if (c[0] == '\e' && c[1] == '[') {
c += 2;
while (*c && *c != 'm')
c++;
}
/* UTF-8 */
else if (c[0] >= 0xc2 && c[0] <= 0xdf) {
sz++;
c += 1;
}
else if (c[0] >= 0xe0 && c[0] <= 0xef) {
sz++;
c += 2;
}
else if (c[0] >= 0xf0 && c[0] <= 0xf4) {
sz++;
c += 3;
}
d = (const char *) c;
}
return sz;
}