1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/include/villas/nodes/iec61850_sv.hpp

99 lines
2.4 KiB
C++
Raw Normal View History

/** Node type: IEC 61850-9-2 (Sampled Values)
*
* @file
2022-03-15 09:18:01 -04:00
* @author Steffen Vogel <svogel2@eonerc.rwth-aachen.de>
2022-03-15 09:28:57 -04:00
* @copyright 2014-2022, 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 <cstdint>
2017-06-13 03:18:16 +02:00
#include <libiec61850/sv_publisher.h>
#include <libiec61850/sv_subscriber.h>
2017-06-13 03:18:16 +02:00
2018-03-28 14:15:08 +02:00
#include <villas/queue_signalled.h>
#include <villas/pool.hpp>
#include <villas/list.hpp>
#include <villas/nodes/iec61850.hpp>
namespace villas {
namespace node {
2021-06-21 16:11:42 -04:00
/* Forward declarations */
class NodeCompat;
2021-06-21 16:11:42 -04:00
struct iec61850_sv {
2017-06-13 03:18:16 +02:00
char *interface;
int app_id;
struct ether_addr dst_address;
2017-06-13 03:18:16 +02:00
struct {
bool enabled;
2017-06-13 03:18:16 +02:00
SVSubscriber subscriber;
SVReceiver receiver;
struct CQueueSignalled queue;
struct Pool pool;
struct List signals; /**< Mappings of type struct iec61850_type_descriptor */
int total_size;
} in;
2017-06-13 03:18:16 +02:00
struct {
bool enabled;
SVPublisher publisher;
SVPublisher_ASDU asdu;
char *svid;
int vlan_priority;
int vlan_id;
int smpmod;
int smprate;
int confrev;
struct List signals; /**< Mappings of type struct iec61850_type_descriptor */
int total_size;
} out;
};
int iec61850_sv_type_stop();
int iec61850_sv_parse(NodeCompat *n, json_t *json);
char * iec61850_sv_print(NodeCompat *n);
int iec61850_sv_start(NodeCompat *n);
int iec61850_sv_stop(NodeCompat *n);
int iec61850_sv_destroy(NodeCompat *n);
int iec61850_sv_read(NodeCompat *n, struct Sample * const smps[], unsigned cnt);
int iec61850_sv_write(NodeCompat *n, struct Sample * const smps[], unsigned cnt);
int iec61850_sv_poll_fds(NodeCompat *n, int fds[]);
} /* namespace node */
} /* namespace villas */