mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
146 lines
4.7 KiB
C
146 lines
4.7 KiB
C
/** Read / write sample data in different formats.
|
|
*
|
|
* @file
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2014-2020, 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/>.
|
|
*********************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <villas/advio.hpp>
|
|
#include <villas/common.hpp>
|
|
#include <villas/node.h>
|
|
#include <villas/signal.h>
|
|
|
|
/* Forward declarations */
|
|
struct sample;
|
|
struct format_type;
|
|
|
|
enum class IOFlags {
|
|
/* Bits 0-7 are reserved for for flags defined by enum sample_flags */
|
|
FLUSH = (1 << 8), /**< Flush the output stream after each chunk of samples. */
|
|
NONBLOCK = (1 << 9), /**< Dont block io_read() while waiting for new samples. */
|
|
NEWLINES = (1 << 10), /**< The samples of this format are newline delimited. */
|
|
DESTROY_SIGNALS = (1 << 11), /**< Signal descriptors are managed by this IO instance. Destroy them in io_destoy() */
|
|
HAS_BINARY_PAYLOAD = (1 << 12) /**< This IO instance en/decodes binary payloads. */
|
|
};
|
|
|
|
enum class IOMode {
|
|
STDIO,
|
|
ADVIO,
|
|
CUSTOM
|
|
};
|
|
|
|
struct io {
|
|
enum State state;
|
|
int flags;
|
|
char delimiter; /**< Newline delimiter. */
|
|
char separator; /**< Column separator (used by csv and villas.human formats only) */
|
|
|
|
struct io_direction {
|
|
/** A format type can use this file handle or overwrite the
|
|
* format::{open,close,eof,rewind} functions and the private
|
|
* data in io::_vd.
|
|
*/
|
|
union {
|
|
FILE *std;
|
|
AFILE *adv;
|
|
} stream;
|
|
|
|
char *buffer;
|
|
size_t buflen;
|
|
} in, out;
|
|
|
|
struct vlist *signals; /**< Signal meta data for parsed samples by io_scan() */
|
|
bool header_printed;
|
|
|
|
enum IOMode mode;
|
|
|
|
void *_vd;
|
|
const struct format_type *_vt;
|
|
};
|
|
|
|
int io_init(struct io *io, const struct format_type *fmt, struct vlist *signals, int flags) __attribute__ ((warn_unused_result));
|
|
|
|
int io_init2(struct io *io, const struct format_type *fmt, const char *dt, int flags) __attribute__ ((warn_unused_result));
|
|
|
|
int io_destroy(struct io *io) __attribute__ ((warn_unused_result));
|
|
|
|
int io_open(struct io *io, const char *uri);
|
|
|
|
int io_close(struct io *io);
|
|
|
|
void io_header(struct io *io, const struct sample *smp);
|
|
|
|
void io_footer(struct io *io);
|
|
|
|
int io_print(struct io *io, struct sample *smps[], unsigned cnt);
|
|
|
|
int io_scan(struct io *io, struct sample *smps[], unsigned cnt);
|
|
|
|
int io_eof(struct io *io);
|
|
|
|
void io_rewind(struct io *io);
|
|
|
|
int io_flush(struct io *io);
|
|
|
|
int io_fd(struct io *io);
|
|
|
|
const struct format_type * io_type(struct io *io);
|
|
|
|
int io_stream_open(struct io *io, const char *uri);
|
|
|
|
int io_stream_close(struct io *io);
|
|
|
|
int io_stream_eof(struct io *io);
|
|
|
|
void io_stream_rewind(struct io *io);
|
|
|
|
int io_stream_fd(struct io *io);
|
|
|
|
int io_stream_flush(struct io *io);
|
|
|
|
FILE * io_stream_input(struct io *io);
|
|
FILE * io_stream_output(struct io *io);
|
|
|
|
/** Parse samples from the buffer \p buf with a length of \p len bytes.
|
|
*
|
|
* @param buf[in] The buffer of data which should be parsed / de-serialized.
|
|
* @param len[in] The length of the buffer \p buf.
|
|
* @param rbytes[out] The number of bytes which have been read from \p buf.
|
|
* @param smps[out] The array of pointers to samples.
|
|
* @param cnt[in] The number of pointers in the array \p smps.
|
|
*
|
|
* @retval >=0 The number of samples which have been parsed from \p buf and written into \p smps.
|
|
* @retval <0 Something went wrong.
|
|
*/
|
|
int io_sscan(struct io *io, const char *buf, size_t len, size_t *rbytes, struct sample *smps[], unsigned cnt);
|
|
|
|
/** Print \p cnt samples from \p smps into buffer \p buf of length \p len.
|
|
*
|
|
* @param buf[out] The buffer which should be filled with serialized data.
|
|
* @param len[in] The length of the buffer \p buf.
|
|
* @param rbytes[out] The number of bytes which have been written to \p buf. Ignored if nullptr.
|
|
* @param smps[in] The array of pointers to samples.
|
|
* @param cnt[in] The number of pointers in the array \p smps.
|
|
*
|
|
* @retval >=0 The number of samples from \p smps which have been written into \p buf.
|
|
* @retval <0 Something went wrong.
|
|
*/
|
|
int io_sprint(struct io *io, char *buf, size_t len, size_t *wbytes, struct sample *smps[], unsigned cnt);
|