mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
57 lines
1,018 B
Go
57 lines
1,018 B
Go
/** Node interface.
|
|
*
|
|
* @author Steffen Vogel <post@steffenvogel.de>
|
|
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license Apache 2.0
|
|
*********************************************************************************/
|
|
|
|
package nodes
|
|
|
|
const (
|
|
NodeSupportsPoll = (1 << iota)
|
|
NodeSupportsRead = (1 << iota)
|
|
NodeSupportsWrite = (1 << iota)
|
|
NodeRequiresWeb = (1 << iota)
|
|
NodeProvidesSignals = (1 << iota)
|
|
NodeInternal = (1 << iota)
|
|
NodeHidden = (1 << iota)
|
|
)
|
|
|
|
type NodeConstructor func() Node
|
|
|
|
type Node interface {
|
|
Close() error
|
|
|
|
Prepare() error
|
|
|
|
Parse(cfg []byte) error
|
|
|
|
Check() error
|
|
|
|
Start() error
|
|
Stop() error
|
|
|
|
Pause() error
|
|
Resume() error
|
|
Restart() error
|
|
|
|
Read() ([]byte, error)
|
|
Write(data []byte) error
|
|
|
|
Reverse() error
|
|
|
|
PollFDs() ([]int, error)
|
|
NetemFDs() ([]int, error)
|
|
|
|
Details() string
|
|
|
|
SetLogger(l Logger)
|
|
}
|
|
|
|
type NodeConfig struct {
|
|
Type string `json:"type"`
|
|
|
|
In struct{} `json:"in"`
|
|
|
|
Out struct{} `json:"out"`
|
|
}
|