config

package
v0.1.44 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 9, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// NMEA0183Type is used to identify the data as NMEA 0183 data
	NMEA0183Type = "nmea0183"
	// ModbusType is used to identify the data as Modbus data
	ModbusType = "modbus"
	// CSVType is used to identify the data as comma seperated values data
	CSVType = "csv"
	// JSONType is used to identify the data as json messages
	JSONType = "json"

	CanBusType = "canbus"

	SignalKType = "signalk"

	HttpType = "http"

	ParityMap string = "NOE" // None, Odd, Even
)
View Source
const (
	Coils = iota + 1
	DiscreteInputs
	HoldingRegisters
	InputRegisters
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AggregateMappingConfig added in v0.1.41

type AggregateMappingConfig struct {
	MappingConfig `mapstructure:",squash"`
	SourcePaths   []string `mapstructure:"sourcePaths"`
}

func NewAggregateMappingConfig added in v0.1.41

func NewAggregateMappingConfig(configFilePath string) []AggregateMappingConfig

type BigCacheConfig added in v0.1.18

type BigCacheConfig struct {
	LifeWindow       int `mapstructure:"lifeWindow"`       // time after which entry can be evicted, value in seconds
	HardMaxCacheSize int `mapstructure:"hardMaxCacheSize"` // cache will not allocate more memory than this limit, value in MB
}

func NewBigCacheConfig added in v0.1.18

func NewBigCacheConfig(configFilePath string) *BigCacheConfig

type CSVMapperConfig added in v0.1.43

type CSVMapperConfig struct {
	MapperConfig `mapstructure:",squash"`
	Separator    string `mapstructure:"separator" default:","`
	SplitLines   bool   `mapstructure:"splitLines" default:"false"`
}

func NewCSVMapperConfig added in v0.1.43

func NewCSVMapperConfig(configFilePath string) CSVMapperConfig

type CSVMappingConfig added in v0.1.16

type CSVMappingConfig struct {
	BeginsWith    string `mapstructure:"beginsWith"`
	MappingConfig `mapstructure:",squash"`
}

func NewCSVMappingConfig added in v0.1.16

func NewCSVMappingConfig(configFilePath string) []CSVMappingConfig

type CanBusMapperConfig added in v0.1.26

type CanBusMapperConfig struct {
	MapperConfig `mapstructure:",squash"`
	DbcFile      string `mapstructure:"dbcFile"`
}

func NewCanBusMapperConfig added in v0.1.26

func NewCanBusMapperConfig(configFilePath string) CanBusMapperConfig

type CanBusMappingConfig added in v0.1.26

type CanBusMappingConfig struct {
	MappingConfig `mapstructure:",squash"`
	Name          string `mapstructure:"name"`
	Origin        string `mapstructure:"origin"`
}

func NewCanBusMappingConfig added in v0.1.26

func NewCanBusMappingConfig(configFilePath string) []CanBusMappingConfig

type CollectorConfig

type CollectorConfig struct {
	Name         string   `mapstructure:"name"`
	URL          *url.URL `mapstructure:"_"`
	URLString    string   `mapstructure:"url"`
	Listen       bool     `mapstructure:"listen"`
	BaudRate     int      `mapstructure:"baudRate"`
	DataBits     int      `mapstructure:"dataBits"`
	StopBits     int      `mapstructure:"stopBits"`
	Parity       int      `mapstructure:"_"`
	ParityString string   `mapstructure:"parity"`
	Protocol     string   `mapstructure:"protocol"`
}

func NewCollectorConfig

func NewCollectorConfig(configFilePath string) *CollectorConfig

type EventConfig added in v0.1.38

type EventConfig struct {
	Expression string `mapstructure:"expression"`
}

func NewEventConfig added in v0.1.38

func NewEventConfig(configFilePath string) *EventConfig

type JSONMappingConfig added in v0.1.16

type JSONMappingConfig struct {
	MappingConfig `mapstructure:",squash"`
}

func NewJSONMappingConfig added in v0.1.16

func NewJSONMappingConfig(configFilePath string) []JSONMappingConfig

type LWEConfig added in v0.1.29

type LWEConfig struct {
	DestinationIdentification string `mapstructure:"destination_identification"`
	SourceIdentification      string `mapstructure:"source_identification"`
	IncludeTimestamp          bool   `mapstructure:"include_timestamp"`
	IncludeLineCount          bool   `mapstructure:"include_line_count"`
}

func NewLWEConfig added in v0.1.29

func NewLWEConfig(configFilePath string) *LWEConfig

type MQTTConfig added in v0.1.16

type MQTTConfig struct {
	URLString        string `mapstructure:"url"`
	Username         string `mapstructure:"username"`
	Password         string `mapstructure:"password"`
	Interval         int    `mapstructure:"interval"`         // interval to flush the cache in seconds, ignored for reader
	HardMaxCacheSize int    `mapstructure:"hardMaxCacheSize"` // maximum size of the cache in MBs, cache will be flushed when size is reached, ignored for reader
}

func NewMQTTConfig added in v0.1.16

func NewMQTTConfig(configFilePath string) *MQTTConfig

type MapperConfig

type MapperConfig struct {
	Context  string `mapstructure:"context"`
	Protocol string `mapstructure:"protocol"`
}

func NewMapperConfig

func NewMapperConfig(configFilePath string) MapperConfig

type MappingConfig added in v0.1.26

type MappingConfig struct {
	Expression         string `mapstructure:"expression"`
	CompiledExpression *vm.Program
	Path               string `mapstructure:"path"`
}

type ModbusMappingsConfig added in v0.1.16

type ModbusMappingsConfig struct {
	MappingConfig            `mapstructure:",squash"`
	Slave                    uint8  `mapstructure:"slave"`
	FunctionCode             uint16 `mapstructure:"functionCode"`
	Address                  uint16 `mapstructure:"address"`
	NumberOfCoilsOrRegisters uint16 `mapstructure:"numberOfCoilsOrRegisters"`
}

func NewModbusMappingsConfig added in v0.1.16

func NewModbusMappingsConfig(configFilePath string) []ModbusMappingsConfig

type OriginsConfig added in v0.1.30

type OriginsConfig struct {
	Origin string    `mapstructure:"origin"`
	Epoch  time.Time `mapstructure:"epoch"`
}

type PostgresqlConfig

type PostgresqlConfig struct {
	URLString          string  `mapstructure:"url"`
	BatchSize          int     `mapstructure:"batch_size"`
	BatchFlushInterval int     `mapstructure:"batch_flush_interval"`
	CompleteRatio      float64 `mapstructure:"complete_ratio" default:"1.00"` // a period is considered complete when local / remote >= CompleteRatio
}

func NewPostgresqlConfig

func NewPostgresqlConfig(configFilePath string) *PostgresqlConfig

type RateLimitConfig added in v0.1.41

type RateLimitConfig struct {
	Ratelimits      []RateLimitsConfig `mapstructure:"rateLimits"`
	DefaultInterval time.Duration      `mapstructure:"defaultInterval"`
}

func NewRateLimitConfig added in v0.1.41

func NewRateLimitConfig(configFilePath string) *RateLimitConfig

type RateLimitsConfig added in v0.1.41

type RateLimitsConfig struct {
	Path     string        `mapstructure:"path"`
	Interval time.Duration `mapstructure:"interval"`
}

type RegisterGroupConfig

type RegisterGroupConfig struct {
	Slave                  uint8         `mapstructure:"slave"`
	FunctionCode           uint16        `mapstructure:"functionCode"`
	Address                uint16        `mapstructure:"address"`
	NumberOfCoilsRegisters uint16        `mapstructure:"numberOfCoilsOrRegisters"`
	PollingInterval        time.Duration `mapstructure:"pollingInterval"`
}

func NewRegisterGroupsConfig

func NewRegisterGroupsConfig(configFilePath string) []RegisterGroupConfig

type SignalKConfig added in v0.1.18

type SignalKConfig struct {
	URLString        string            `mapstructure:"url"`
	URL              *url.URL          `mapstructure:"_"`
	Version          string            `mapstructure:"_"`
	SelfContext      string            `mapstructure:"self_context"`
	PostgresqlConfig *PostgresqlConfig `mapstructure:"database"`
	BigCacheConfig   *BigCacheConfig   `mapstructure:"cache"`
}

func NewSignalKConfig added in v0.1.18

func NewSignalKConfig(configFilePath string) *SignalKConfig

func (*SignalKConfig) WithVersion added in v0.1.18

func (c *SignalKConfig) WithVersion(version string) *SignalKConfig

type TransferConfig added in v0.1.28

type TransferConfig struct {
	PostgresqlConfig PostgresqlConfig `mapstructure:"database"`
	MQTTConfig       MQTTConfig       `mapstructure:"mqtt"`
	Origin           string           `mapstructure:"origin"`
	Origins          []OriginsConfig  `mapstructure:"origins"`
}

func NewTransferConfig added in v0.1.29

func NewTransferConfig(configFilePath string) *TransferConfig

type UrlGroupConfig added in v0.1.43

type UrlGroupConfig struct {
	Url             string        `mapstructure:"url"`
	PollingInterval time.Duration `mapstructure:"pollingInterval"`
}

func NewUrlGroupsConfig added in v0.1.43

func NewUrlGroupsConfig(configFilePath string) []UrlGroupConfig

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL