2014-07-14 11:49:44 +00:00
|
|
|
/** Message related functions.
|
2014-06-05 09:34:29 +00:00
|
|
|
*
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
2015-06-02 21:53:04 +02:00
|
|
|
* @copyright 2014-2015, Institute for Automation of Complex Power Systems, EONERC
|
|
|
|
* This file is part of S2SS. All Rights Reserved. Proprietary and confidential.
|
2015-08-07 01:11:43 +02:00
|
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
2015-06-02 21:53:04 +02:00
|
|
|
*********************************************************************************/
|
2014-06-05 09:34:29 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-09-07 16:29:05 +00:00
|
|
|
#include <ctype.h>
|
2014-08-31 16:15:54 +00:00
|
|
|
|
|
|
|
#ifdef __linux__
|
2015-08-21 10:19:32 +02:00
|
|
|
#include <byteswap.h>
|
2014-09-04 13:25:21 +00:00
|
|
|
#elif defined(__PPC__) /* Xilinx toolchain */
|
2015-08-21 10:19:32 +02:00
|
|
|
#include <xil_io.h>
|
2015-10-08 10:51:48 +02:00
|
|
|
#define bswap_16(x) Xil_EndianSwap16(x)
|
2015-08-21 10:19:32 +02:00
|
|
|
#define bswap_32(x) Xil_EndianSwap32(x)
|
2014-08-31 16:15:54 +00:00
|
|
|
#endif
|
2014-06-05 09:34:29 +00:00
|
|
|
|
|
|
|
#include "msg.h"
|
2014-07-07 07:53:42 +00:00
|
|
|
#include "node.h"
|
2014-06-05 09:34:55 +00:00
|
|
|
#include "utils.h"
|
2014-06-05 09:34:29 +00:00
|
|
|
|
2014-07-18 16:05:49 +00:00
|
|
|
void msg_swap(struct msg *m)
|
2014-06-05 09:34:29 +00:00
|
|
|
{
|
2015-10-08 10:51:48 +02:00
|
|
|
m->length = bswap_16(m->length);
|
|
|
|
m->sequence = bswap_32(m->sequence);
|
|
|
|
m->ts.sec = bswap_32(m->ts.sec);
|
|
|
|
m->ts.nsec = bswap_32(m->ts.nsec);
|
|
|
|
|
|
|
|
for (int i = 0; i < m->length; i++)
|
2014-08-31 16:15:54 +00:00
|
|
|
m->data[i].i = bswap_32(m->data[i].i);
|
2014-07-18 16:05:49 +00:00
|
|
|
|
|
|
|
m->endian ^= 1;
|
|
|
|
}
|
|
|
|
|
2015-04-01 13:25:03 +02:00
|
|
|
int msg_verify(struct msg *m)
|
|
|
|
{
|
2015-06-02 22:39:15 +02:00
|
|
|
if (m->version != MSG_VERSION)
|
|
|
|
return -1;
|
|
|
|
else if (m->type != MSG_TYPE_DATA)
|
|
|
|
return -2;
|
|
|
|
else if ((m->length <= 0) || (m->length > MSG_VALUES))
|
|
|
|
return -3;
|
|
|
|
else if ((m->rsvd1 != 0) || (m->rsvd2 != 0))
|
|
|
|
return -4;
|
|
|
|
else
|
|
|
|
return 0;
|
2015-04-01 13:25:03 +02:00
|
|
|
}
|
|
|
|
|
2015-10-07 18:12:12 +02:00
|
|
|
int msg_fprint(FILE *f, struct msg *m, int flags, double offset)
|
2014-07-18 16:05:49 +00:00
|
|
|
{
|
2015-10-07 18:12:12 +02:00
|
|
|
fprintf(f, "%u", m->ts.sec);
|
|
|
|
|
|
|
|
if (flags & MSG_PRINT_NANOSECONDS)
|
|
|
|
fprintf(f, ".%09u", m->ts.nsec);
|
|
|
|
|
|
|
|
if (flags & MSG_PRINT_OFFSET)
|
|
|
|
fprintf(f, "%+g", offset);
|
|
|
|
|
|
|
|
if (flags & MSG_PRINT_SEQUENCE)
|
|
|
|
fprintf(f, "(%u)", m->sequence);
|
|
|
|
|
|
|
|
if (flags & MSG_PRINT_VALUES) {
|
|
|
|
for (int i = 0; i < m->length; i++)
|
|
|
|
fprintf(f, "\t%.6f", m->data[i].f);
|
|
|
|
}
|
2014-06-05 09:34:29 +00:00
|
|
|
|
|
|
|
fprintf(f, "\n");
|
2014-06-05 09:34:53 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-02 22:36:17 +02:00
|
|
|
/** @todo Currently only floating point values are supported */
|
2015-10-07 18:12:12 +02:00
|
|
|
int msg_fscan(FILE *f, struct msg *m, int *fl, double *off)
|
2014-06-05 09:34:53 +00:00
|
|
|
{
|
2014-09-07 16:29:05 +00:00
|
|
|
char line[MSG_VALUES * 16];
|
2015-10-07 18:12:12 +02:00
|
|
|
char *end, *ptr = line;
|
|
|
|
int flags = 0;
|
|
|
|
double offset;
|
|
|
|
|
|
|
|
m->version = MSG_VERSION;
|
|
|
|
m->endian = MSG_ENDIAN_HOST;
|
|
|
|
m->rsvd1 = m->rsvd2 = 0;
|
|
|
|
|
|
|
|
/* Format: Seconds.NanoSeconds+Offset(SequenceNumber) Value1 Value2 ...
|
|
|
|
* RegEx: (\d+(?:\.\d+)?)([-+]\d+(?:\.\d+)?(?:e[+-]?\d+)?)?(?:\((\d+)\))?
|
|
|
|
*
|
|
|
|
* Please note that only the seconds and at least one value are mandatory
|
|
|
|
*/
|
|
|
|
|
|
|
|
skip: if (fgets(line, sizeof(line), f) == NULL)
|
2015-09-22 16:15:30 +02:00
|
|
|
return -1; /* An error occured */
|
2015-08-07 01:11:43 +02:00
|
|
|
|
2015-10-09 17:32:35 +02:00
|
|
|
/* Skip whitespaces, empty and comment lines */
|
2015-10-11 08:53:24 +02:00
|
|
|
for (ptr = line; isspace(*ptr); ptr++);
|
2015-10-09 17:32:35 +02:00
|
|
|
if (*ptr == '\0' || *ptr == '#')
|
2015-10-07 18:12:12 +02:00
|
|
|
goto skip;
|
2015-06-02 22:36:17 +02:00
|
|
|
|
2015-10-07 18:12:12 +02:00
|
|
|
/* Mandatory: seconds */
|
|
|
|
m->ts.sec = (uint32_t) strtoul(ptr, &end, 10);
|
|
|
|
if (ptr == end)
|
|
|
|
return -2;
|
2015-06-02 22:36:17 +02:00
|
|
|
|
2015-10-07 18:12:12 +02:00
|
|
|
/* Optional: nano seconds */
|
|
|
|
if (*end == '.') {
|
|
|
|
ptr = end + 1;
|
2015-08-07 01:11:43 +02:00
|
|
|
|
2015-10-07 18:12:12 +02:00
|
|
|
m->ts.nsec = (uint32_t) strtoul(ptr, &end, 10);
|
|
|
|
if (ptr != end)
|
|
|
|
flags |= MSG_PRINT_NANOSECONDS;
|
|
|
|
else
|
|
|
|
return -3;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m->ts.nsec = 0;
|
|
|
|
|
|
|
|
/* Optional: offset / delay */
|
|
|
|
if (*end == '+' || *end == '-') {
|
|
|
|
ptr = end + 1;
|
2014-07-18 16:05:49 +00:00
|
|
|
|
2015-10-07 18:12:12 +02:00
|
|
|
offset = strtof(ptr, &end); /* offset is ignored for now */
|
|
|
|
if (ptr != end)
|
|
|
|
flags |= MSG_PRINT_OFFSET;
|
|
|
|
else
|
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Optional: sequence number */
|
|
|
|
if (*end == '(') {
|
|
|
|
ptr = end + 1;
|
|
|
|
|
|
|
|
m->sequence = (uint16_t) strtoul(ptr, &end, 10);
|
|
|
|
if (ptr != end && *end == ')')
|
|
|
|
flags |= MSG_PRINT_SEQUENCE;
|
|
|
|
else {
|
|
|
|
info(end);
|
|
|
|
return -5;
|
|
|
|
}
|
|
|
|
|
|
|
|
end = end + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m->sequence = 0;
|
|
|
|
|
|
|
|
for ( m->length = 0, ptr = end;
|
|
|
|
m->length < MSG_VALUES;
|
|
|
|
m->length++, ptr = end) {
|
|
|
|
|
|
|
|
/** @todo We only support floating point values at the moment */
|
|
|
|
m->data[m->length].f = strtod(ptr, &end);
|
|
|
|
|
|
|
|
if (end == ptr) /* there are no valid FP values anymore */
|
|
|
|
break;
|
2014-09-07 16:29:05 +00:00
|
|
|
}
|
2015-10-07 18:12:12 +02:00
|
|
|
|
|
|
|
if (m->length > 0)
|
|
|
|
flags |= MSG_PRINT_VALUES;
|
|
|
|
|
|
|
|
if (fl)
|
|
|
|
*fl = flags;
|
|
|
|
if (off && (flags & MSG_PRINT_OFFSET))
|
|
|
|
*off = offset;
|
2015-08-07 01:11:43 +02:00
|
|
|
|
2014-09-07 16:29:05 +00:00
|
|
|
return m->length;
|
2014-06-05 09:34:29 +00:00
|
|
|
}
|
|
|
|
|
2014-06-05 09:34:53 +00:00
|
|
|
void msg_random(struct msg *m)
|
2014-06-05 09:34:29 +00:00
|
|
|
{
|
2014-07-04 15:58:11 +00:00
|
|
|
for (int i = 0; i < m->length; i++)
|
2015-05-19 16:54:00 +02:00
|
|
|
m->data[i].f += box_muller(0, 1);
|
2014-06-05 09:34:29 +00:00
|
|
|
|
2014-08-31 15:25:59 +00:00
|
|
|
m->endian = MSG_ENDIAN_HOST;
|
2014-06-05 09:34:29 +00:00
|
|
|
}
|