mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
219 lines
4.2 KiB
C
219 lines
4.2 KiB
C
/** Reading and writing simulation samples in various formats.
|
|
*
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2017, 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 <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "io.h"
|
|
#include "utils.h"
|
|
#include "sample.h"
|
|
|
|
int io_init(struct io *io, struct io_format *fmt, int flags)
|
|
{
|
|
io->_vt = fmt;
|
|
io->_vd = alloc(fmt->size);
|
|
|
|
io->flags = flags;
|
|
|
|
return io->_vt->init ? io->_vt->init(io) : 0;
|
|
}
|
|
|
|
int io_destroy(struct io *io)
|
|
{
|
|
int ret;
|
|
|
|
ret = io->_vt->destroy ? io->_vt->destroy(io) : 0;
|
|
if (ret)
|
|
return ret;
|
|
|
|
free(io->_vd);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int io_stream_open(struct io *io, const char *uri, const char *mode)
|
|
{
|
|
int ret;
|
|
|
|
if (uri) {
|
|
if (aislocal(uri)) {
|
|
io->mode = IO_MODE_STDIO;
|
|
|
|
io->stdio.input =
|
|
io->stdio.output = fopen(uri, mode);
|
|
|
|
if (io->stdio.output == NULL)
|
|
return -1;
|
|
|
|
ret = setvbuf(io->stdio.output, NULL, _IOLBF, BUFSIZ);
|
|
if (ret)
|
|
return -1;
|
|
}
|
|
else {
|
|
io->mode = IO_MODE_ADVIO;
|
|
|
|
io->advio.input =
|
|
io->advio.output = afopen(uri, mode);
|
|
|
|
if (io->advio.output == NULL)
|
|
return -1;
|
|
}
|
|
}
|
|
else {
|
|
io->mode = IO_MODE_STDIO;
|
|
io->flags |= IO_FLAG_FLUSH;
|
|
|
|
io->stdio.input = stdin;
|
|
io->stdio.output = stdout;
|
|
|
|
ret = setvbuf(io->stdio.input, NULL, _IOLBF, BUFSIZ);
|
|
if (ret)
|
|
return -1;
|
|
|
|
ret = setvbuf(io->stdio.output, NULL, _IOLBF, BUFSIZ);
|
|
if (ret)
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int io_stream_close(struct io *io)
|
|
{
|
|
switch (io->mode) {
|
|
case IO_MODE_ADVIO:
|
|
return afclose(io->advio.input);
|
|
case IO_MODE_STDIO:
|
|
return io->stdio.input != stdin ? fclose(io->stdio.input) : 0;
|
|
case IO_MODE_CUSTOM:
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int io_stream_flush(struct io *io)
|
|
{
|
|
switch (io->mode) {
|
|
case IO_MODE_ADVIO:
|
|
return afflush(io->advio.output);
|
|
case IO_MODE_STDIO:
|
|
return fflush(io->stdio.output);
|
|
case IO_MODE_CUSTOM:
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int io_stream_eof(struct io *io)
|
|
{
|
|
switch (io->mode) {
|
|
case IO_MODE_ADVIO:
|
|
return afeof(io->advio.input);
|
|
case IO_MODE_STDIO:
|
|
return feof(io->stdio.input);
|
|
case IO_MODE_CUSTOM:
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void io_stream_rewind(struct io *io)
|
|
{
|
|
switch (io->mode) {
|
|
case IO_MODE_ADVIO:
|
|
return arewind(io->advio.input);
|
|
case IO_MODE_STDIO:
|
|
return rewind(io->stdio.input);
|
|
case IO_MODE_CUSTOM: { }
|
|
}
|
|
}
|
|
|
|
int io_open(struct io *io, const char *uri, const char *mode)
|
|
{
|
|
return io->_vt->open
|
|
? io->_vt->open(io, uri, mode)
|
|
: io_stream_open(io, uri, mode);
|
|
}
|
|
|
|
int io_close(struct io *io)
|
|
{
|
|
return io->_vt->close
|
|
? io->_vt->close(io)
|
|
: io_stream_close(io);
|
|
}
|
|
|
|
int io_flush(struct io *io)
|
|
{
|
|
return io->_vt->flush
|
|
? io->_vt->flush(io)
|
|
: io_stream_flush(io);
|
|
}
|
|
|
|
int io_eof(struct io *io)
|
|
{
|
|
return io->_vt->eof
|
|
? io->_vt->eof(io)
|
|
: io_stream_eof(io);
|
|
}
|
|
|
|
void io_rewind(struct io *io)
|
|
{
|
|
io->_vt->rewind
|
|
? io->_vt->rewind(io)
|
|
: io_stream_rewind(io);
|
|
}
|
|
|
|
int io_print(struct io *io, struct sample *smps[], size_t cnt)
|
|
{
|
|
int ret;
|
|
|
|
if (io->_vt->print)
|
|
ret = io->_vt->print(io, smps, cnt);
|
|
else {
|
|
FILE *f = io->mode == IO_MODE_ADVIO
|
|
? io->advio.output->file
|
|
: io->stdio.output;
|
|
|
|
ret = io->_vt->fprint(f, smps, cnt, io->flags);
|
|
}
|
|
|
|
if (io->flags & IO_FLAG_FLUSH)
|
|
io_flush(io);
|
|
|
|
return ret;
|
|
}
|
|
|
|
int io_scan(struct io *io, struct sample *smps[], size_t cnt)
|
|
{
|
|
if (io->_vt->scan)
|
|
return io->_vt->scan(io, smps, cnt);
|
|
else {
|
|
FILE *f = io->mode == IO_MODE_ADVIO
|
|
? io->advio.input->file
|
|
: io->stdio.input;
|
|
|
|
return io->_vt->fscan(f, smps, cnt, NULL);
|
|
}
|
|
}
|