2017-08-14 14:42:07 +02:00
|
|
|
/** Read / write sample data in different formats.
|
2017-04-15 21:22:19 +02:00
|
|
|
*
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
|
|
* @copyright 2017, Institute for Automation of Complex Power Systems, EONERC
|
2017-04-27 12:56:43 +02: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.
|
2017-05-05 19:24:16 +00:00
|
|
|
*
|
2017-04-27 12:56:43 +02:00
|
|
|
* 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.
|
2017-05-05 19:24:16 +00:00
|
|
|
*
|
2017-04-27 12:56:43 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-04-15 21:22:19 +02:00
|
|
|
*********************************************************************************/
|
2017-04-15 20:38:58 +02:00
|
|
|
|
2017-08-14 14:42:07 +02:00
|
|
|
#include <stdlib.h>
|
2017-08-05 21:02:09 +02:00
|
|
|
#include <stdio.h>
|
2017-04-15 20:38:58 +02:00
|
|
|
|
2017-09-04 16:03:11 +02:00
|
|
|
#include "plugin.h"
|
2017-08-14 14:42:07 +02:00
|
|
|
#include "io_format.h"
|
|
|
|
|
2017-09-04 14:28:55 +02:00
|
|
|
int io_format_sscan(struct io_format *fmt, char *buf, size_t len, size_t *rbytes, struct sample *smps[], unsigned cnt, int flags)
|
2017-08-14 14:42:07 +02:00
|
|
|
{
|
2017-09-04 14:28:55 +02:00
|
|
|
flags |= fmt->flags;
|
|
|
|
|
2017-08-14 14:42:07 +02:00
|
|
|
return fmt->sscan ? fmt->sscan(buf, len, rbytes, smps, cnt, flags) : -1;
|
|
|
|
}
|
2017-04-15 20:38:58 +02:00
|
|
|
|
2017-08-14 14:42:07 +02:00
|
|
|
int io_format_sprint(struct io_format *fmt, char *buf, size_t len, size_t *wbytes, struct sample *smps[], unsigned cnt, int flags)
|
|
|
|
{
|
2017-08-23 16:51:15 +02:00
|
|
|
flags |= fmt->flags;
|
|
|
|
|
2017-08-14 14:42:07 +02:00
|
|
|
return fmt->sprint ? fmt->sprint(buf, len, wbytes, smps, cnt, flags) : -1;
|
|
|
|
}
|
2017-04-15 20:38:58 +02:00
|
|
|
|
2017-09-04 14:28:55 +02:00
|
|
|
int io_format_fscan(struct io_format *fmt, FILE *f, struct sample *smps[], unsigned cnt, int flags)
|
2017-08-14 14:42:07 +02:00
|
|
|
{
|
|
|
|
return fmt->sprint ? fmt->fscan(f, smps, cnt, flags) : -1;
|
|
|
|
}
|
2017-04-15 20:38:58 +02:00
|
|
|
|
2017-08-14 14:42:07 +02:00
|
|
|
int io_format_fprint(struct io_format *fmt, FILE *f, struct sample *smps[], unsigned cnt, int flags)
|
|
|
|
{
|
|
|
|
return fmt->fprint ? fmt->fprint(f, smps, cnt, flags) : -1;
|
2017-09-04 14:28:55 +02:00
|
|
|
}
|
2017-09-04 16:03:11 +02:00
|
|
|
|
|
|
|
struct io_format * io_format_lookup(const char *name)
|
|
|
|
{
|
|
|
|
struct plugin *p;
|
|
|
|
|
|
|
|
p = plugin_lookup(PLUGIN_TYPE_IO, name);
|
|
|
|
if (!p)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &p->io;
|
|
|
|
}
|