mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-29 14:25:31 +00:00
wrap payload for all processors
This commit is contained in:
26
internal/common/payload.go
Normal file
26
internal/common/payload.go
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
package common
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
)
|
||||||
|
|
||||||
|
type WrappedPayload struct {
|
||||||
|
Payload any
|
||||||
|
Modules any
|
||||||
|
Sender any
|
||||||
|
End bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetWrappedPayload(ctx context.Context, payload any) WrappedPayload {
|
||||||
|
templateData := WrappedPayload{Payload: payload}
|
||||||
|
modules := ctx.Value(ModulesContextKey)
|
||||||
|
if modules != nil {
|
||||||
|
templateData.Modules = modules
|
||||||
|
}
|
||||||
|
|
||||||
|
sender := ctx.Value(SenderContextKey)
|
||||||
|
if sender != nil {
|
||||||
|
templateData.Sender = sender
|
||||||
|
}
|
||||||
|
return templateData
|
||||||
|
}
|
||||||
@@ -13,20 +13,25 @@ type ArtNetPacketDecode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (apd *ArtNetPacketDecode) Process(ctx context.Context, payload any) (any, error) {
|
func (apd *ArtNetPacketDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, fmt.Errorf("artnet.packet.decode processor only accepts a []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("artnet.packet.decode processor only accepts a []byte")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadMessage, err := artnet.Decode(payloadBytes)
|
payloadMessage, err := artnet.Decode(payloadBytes)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (apd *ArtNetPacketDecode) Type() string {
|
func (apd *ArtNetPacketDecode) Type() string {
|
||||||
|
|||||||
@@ -13,19 +13,24 @@ type ArtNetPacketEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ape *ArtNetPacketEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (ape *ArtNetPacketEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadPacket, ok := common.GetAnyAs[artnet.ArtNetPacket](payload)
|
payloadPacket, ok := common.GetAnyAs[artnet.ArtNetPacket](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, fmt.Errorf("artnet.packet.encode processor only accepts an ArtNetPacket")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("artnet.packet.encode processor only accepts an ArtNetPacket")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadBytes, err := payloadPacket.MarshalBinary()
|
payloadBytes, err := payloadPacket.MarshalBinary()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadBytes, nil
|
wrappedPayload.Payload = payloadBytes
|
||||||
|
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ape *ArtNetPacketEncode) Type() string {
|
func (ape *ArtNetPacketEncode) Type() string {
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -13,11 +14,12 @@ type DebugLog struct {
|
|||||||
logger *slog.Logger
|
logger *slog.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func (dl *DebugLog) Process(ctx context.Context, payload any) (any, error) {
|
func (dl *DebugLog) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadString := fmt.Sprintf("%+v", payload)
|
payloadString := fmt.Sprintf("%+v", payload)
|
||||||
payloadType := fmt.Sprintf("%T", payload)
|
payloadType := fmt.Sprintf("%T", payload)
|
||||||
dl.logger.Debug("", "payload", payloadString, "payloadType", payloadType)
|
dl.logger.Debug("", "payload", payloadString, "payloadType", payloadType)
|
||||||
return payload, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (dl *DebugLog) Type() string {
|
func (dl *DebugLog) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/expr-lang/expr"
|
"github.com/expr-lang/expr"
|
||||||
"github.com/expr-lang/expr/vm"
|
"github.com/expr-lang/expr/vm"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -15,24 +16,29 @@ type FilterExpr struct {
|
|||||||
Program *vm.Program
|
Program *vm.Program
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fe *FilterExpr) Process(ctx context.Context, payload any) (any, error) {
|
func (fe *FilterExpr) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
exprEnv := GetEnvData(ctx, payload)
|
exprEnv := wrappedPayload
|
||||||
|
|
||||||
output, err := expr.Run(fe.Program, exprEnv)
|
output, err := expr.Run(fe.Program, exprEnv)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
outputBool, ok := output.(bool)
|
outputBool, ok := output.(bool)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, fmt.Errorf("filter.expr expression did not return a boolean")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("filter.expr expression did not return a boolean")
|
||||||
}
|
}
|
||||||
if !outputBool {
|
if !outputBool {
|
||||||
return nil, nil
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return payload, nil
|
wrappedPayload.Payload = exprEnv.Payload
|
||||||
|
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fe *FilterExpr) Type() string {
|
func (fe *FilterExpr) Type() string {
|
||||||
|
|||||||
@@ -15,18 +15,22 @@ type FilterRegex struct {
|
|||||||
Pattern *regexp.Regexp
|
Pattern *regexp.Regexp
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fr *FilterRegex) Process(ctx context.Context, payload any) (any, error) {
|
func (fr *FilterRegex) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadString, ok := common.GetAnyAs[string](payload)
|
payloadString, ok := common.GetAnyAs[string](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("filter.regex processor only accepts a string")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("filter.regex processor only accepts a string")
|
||||||
}
|
}
|
||||||
|
|
||||||
if !fr.Pattern.MatchString(payloadString) {
|
if !fr.Pattern.MatchString(payloadString) {
|
||||||
return nil, nil
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadString, nil
|
wrappedPayload.Payload = payloadString
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fr *FilterRegex) Type() string {
|
func (fr *FilterRegex) Type() string {
|
||||||
|
|||||||
@@ -15,18 +15,22 @@ type FloatParse struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fp *FloatParse) Process(ctx context.Context, payload any) (any, error) {
|
func (fp *FloatParse) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadString, ok := common.GetAnyAs[string](payload)
|
payloadString, ok := common.GetAnyAs[string](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("float.parse processor only accepts a string")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("float.parse processor only accepts a string")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadFloat, err := strconv.ParseFloat(payloadString, fp.BitSize)
|
payloadFloat, err := strconv.ParseFloat(payloadString, fp.BitSize)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
return payloadFloat, nil
|
wrappedPayload.Payload = payloadFloat
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fp *FloatParse) Type() string {
|
func (fp *FloatParse) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"math/rand/v2"
|
"math/rand/v2"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -16,16 +17,19 @@ type FloatRandom struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fr *FloatRandom) Process(ctx context.Context, payload any) (any, error) {
|
func (fr *FloatRandom) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
if fr.BitSize == 32 {
|
if fr.BitSize == 32 {
|
||||||
payloadFloat := rand.Float32()*(float32(fr.Max)-float32(fr.Min)) + float32(fr.Min)
|
payloadFloat := rand.Float32()*(float32(fr.Max)-float32(fr.Min)) + float32(fr.Min)
|
||||||
return payloadFloat, nil
|
wrappedPayload.Payload = payloadFloat
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
if fr.BitSize == 64 {
|
if fr.BitSize == 64 {
|
||||||
payloadFloat := rand.Float64()*(fr.Max-fr.Min) + fr.Min
|
payloadFloat := rand.Float64()*(fr.Max-fr.Min) + fr.Min
|
||||||
return payloadFloat, nil
|
wrappedPayload.Payload = payloadFloat
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
return nil, errors.New("float.random bitSize error: must be 32 or 64")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("float.random bitSize error: must be 32 or 64")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fr *FloatRandom) Type() string {
|
func (fr *FloatRandom) Type() string {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
freeD "github.com/jwetzell/free-d-go"
|
freeD "github.com/jwetzell/free-d-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -24,15 +25,16 @@ type FreeDCreate struct {
|
|||||||
Focus *template.Template
|
Focus *template.Template
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (fc *FreeDCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var idBuffer bytes.Buffer
|
var idBuffer bytes.Buffer
|
||||||
err := fc.Id.Execute(&idBuffer, templateData)
|
err := fc.Id.Execute(&idBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
idString := idBuffer.String()
|
idString := idBuffer.String()
|
||||||
@@ -40,14 +42,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
idNum, err := strconv.ParseUint(idString, 10, 8)
|
idNum, err := strconv.ParseUint(idString, 10, 8)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var panBuffer bytes.Buffer
|
var panBuffer bytes.Buffer
|
||||||
err = fc.Pan.Execute(&panBuffer, templateData)
|
err = fc.Pan.Execute(&panBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
panString := panBuffer.String()
|
panString := panBuffer.String()
|
||||||
@@ -55,14 +59,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
panNum, err := strconv.ParseFloat(panString, 32)
|
panNum, err := strconv.ParseFloat(panString, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var tiltBuffer bytes.Buffer
|
var tiltBuffer bytes.Buffer
|
||||||
err = fc.Tilt.Execute(&tiltBuffer, templateData)
|
err = fc.Tilt.Execute(&tiltBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
tiltString := tiltBuffer.String()
|
tiltString := tiltBuffer.String()
|
||||||
@@ -70,14 +76,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
tiltNum, err := strconv.ParseFloat(tiltString, 32)
|
tiltNum, err := strconv.ParseFloat(tiltString, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var rollBuffer bytes.Buffer
|
var rollBuffer bytes.Buffer
|
||||||
err = fc.Tilt.Execute(&rollBuffer, templateData)
|
err = fc.Tilt.Execute(&rollBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
rollString := rollBuffer.String()
|
rollString := rollBuffer.String()
|
||||||
@@ -85,14 +93,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
rollNum, err := strconv.ParseFloat(rollString, 32)
|
rollNum, err := strconv.ParseFloat(rollString, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var posXBuffer bytes.Buffer
|
var posXBuffer bytes.Buffer
|
||||||
err = fc.PosX.Execute(&posXBuffer, templateData)
|
err = fc.PosX.Execute(&posXBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
posXString := posXBuffer.String()
|
posXString := posXBuffer.String()
|
||||||
@@ -100,14 +110,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
posXNum, err := strconv.ParseFloat(posXString, 32)
|
posXNum, err := strconv.ParseFloat(posXString, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var posYBuffer bytes.Buffer
|
var posYBuffer bytes.Buffer
|
||||||
err = fc.PosY.Execute(&posYBuffer, templateData)
|
err = fc.PosY.Execute(&posYBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
posYString := posYBuffer.String()
|
posYString := posYBuffer.String()
|
||||||
@@ -115,14 +127,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
posYNum, err := strconv.ParseFloat(posYString, 32)
|
posYNum, err := strconv.ParseFloat(posYString, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var posZBuffer bytes.Buffer
|
var posZBuffer bytes.Buffer
|
||||||
err = fc.PosZ.Execute(&posZBuffer, templateData)
|
err = fc.PosZ.Execute(&posZBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
posZString := posZBuffer.String()
|
posZString := posZBuffer.String()
|
||||||
@@ -130,14 +144,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
posZNum, err := strconv.ParseFloat(posZString, 32)
|
posZNum, err := strconv.ParseFloat(posZString, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var zoomBuffer bytes.Buffer
|
var zoomBuffer bytes.Buffer
|
||||||
err = fc.Zoom.Execute(&zoomBuffer, templateData)
|
err = fc.Zoom.Execute(&zoomBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
zoomString := zoomBuffer.String()
|
zoomString := zoomBuffer.String()
|
||||||
@@ -145,14 +161,16 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
zoomNum, err := strconv.ParseInt(zoomString, 10, 32)
|
zoomNum, err := strconv.ParseInt(zoomString, 10, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var focusBuffer bytes.Buffer
|
var focusBuffer bytes.Buffer
|
||||||
err = fc.Focus.Execute(&focusBuffer, templateData)
|
err = fc.Focus.Execute(&focusBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
focusString := focusBuffer.String()
|
focusString := focusBuffer.String()
|
||||||
@@ -160,7 +178,8 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
focusNum, err := strconv.ParseInt(focusString, 10, 32)
|
focusNum, err := strconv.ParseInt(focusString, 10, 32)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadMessage := freeD.FreeDPosition{
|
payloadMessage := freeD.FreeDPosition{
|
||||||
@@ -175,7 +194,9 @@ func (fc *FreeDCreate) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
Focus: int32(focusNum),
|
Focus: int32(focusNum),
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fc *FreeDCreate) Type() string {
|
func (fc *FreeDCreate) Type() string {
|
||||||
|
|||||||
@@ -13,18 +13,22 @@ type FreeDDecode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fd *FreeDDecode) Process(ctx context.Context, payload any) (any, error) {
|
func (fd *FreeDDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("freed.decode processor only accepts a []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("freed.decode processor only accepts a []byte")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadMessage, err := freeD.Decode(payloadBytes)
|
payloadMessage, err := freeD.Decode(payloadBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fd *FreeDDecode) Type() string {
|
func (fd *FreeDDecode) Type() string {
|
||||||
|
|||||||
@@ -13,15 +13,19 @@ type FreeDEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fe *FreeDEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (fe *FreeDEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadPosition, ok := common.GetAnyAs[freeD.FreeDPosition](payload)
|
payloadPosition, ok := common.GetAnyAs[freeD.FreeDPosition](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("freed.decode processor only accepts a FreeDEncode")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("freed.decode processor only accepts a FreeDEncode")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadBytes := freeD.Encode(payloadPosition)
|
payloadBytes := freeD.Encode(payloadPosition)
|
||||||
return payloadBytes, nil
|
|
||||||
|
wrappedPayload.Payload = payloadBytes
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fe *FreeDEncode) Type() string {
|
func (fe *FreeDEncode) Type() string {
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import (
|
|||||||
"text/template"
|
"text/template"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -19,15 +20,16 @@ type HTTPRequestDo struct {
|
|||||||
URL *template.Template
|
URL *template.Template
|
||||||
}
|
}
|
||||||
|
|
||||||
func (hrd *HTTPRequestDo) Process(ctx context.Context, payload any) (any, error) {
|
func (hrd *HTTPRequestDo) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var urlBuffer bytes.Buffer
|
var urlBuffer bytes.Buffer
|
||||||
err := hrd.URL.Execute(&urlBuffer, templateData)
|
err := hrd.URL.Execute(&urlBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
urlString := urlBuffer.String()
|
urlString := urlBuffer.String()
|
||||||
@@ -36,26 +38,30 @@ func (hrd *HTTPRequestDo) Process(ctx context.Context, payload any) (any, error)
|
|||||||
request, err := http.NewRequest(hrd.Method, urlString, bytes.NewBuffer([]byte{}))
|
request, err := http.NewRequest(hrd.Method, urlString, bytes.NewBuffer([]byte{}))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
response, err := hrd.client.Do(request)
|
response, err := hrd.client.Do(request)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
body, err := io.ReadAll(response.Body)
|
body, err := io.ReadAll(response.Body)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO(jwetzell): support headers, etc
|
//TODO(jwetzell): support headers, etc
|
||||||
return HTTPResponse{
|
wrappedPayload.Payload = HTTPResponse{
|
||||||
Status: response.StatusCode,
|
Status: response.StatusCode,
|
||||||
Body: body,
|
Body: body,
|
||||||
}, nil
|
}
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (hrd *HTTPRequestDo) Type() string {
|
func (hrd *HTTPRequestDo) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -20,20 +21,21 @@ type HTTPResponse struct {
|
|||||||
Body []byte
|
Body []byte
|
||||||
}
|
}
|
||||||
|
|
||||||
func (hrc *HTTPResponseCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (hrc *HTTPResponseCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var bodyBuffer bytes.Buffer
|
var bodyBuffer bytes.Buffer
|
||||||
err := hrc.BodyTmpl.Execute(&bodyBuffer, templateData)
|
err := hrc.BodyTmpl.Execute(&bodyBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
wrappedPayload.Payload = HTTPResponse{
|
||||||
return HTTPResponse{
|
|
||||||
Status: hrc.Status,
|
Status: hrc.Status,
|
||||||
Body: bodyBuffer.Bytes(),
|
Body: bodyBuffer.Bytes(),
|
||||||
}, nil
|
}
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (hrc *HTTPResponseCreate) Type() string {
|
func (hrc *HTTPResponseCreate) Type() string {
|
||||||
|
|||||||
@@ -16,18 +16,22 @@ type IntParse struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ip *IntParse) Process(ctx context.Context, payload any) (any, error) {
|
func (ip *IntParse) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadString, ok := common.GetAnyAs[string](payload)
|
payloadString, ok := common.GetAnyAs[string](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("int.parse processor only accepts a string")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("int.parse processor only accepts a string")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadInt, err := strconv.ParseInt(payloadString, ip.Base, ip.BitSize)
|
payloadInt, err := strconv.ParseInt(payloadString, ip.Base, ip.BitSize)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
return payloadInt, nil
|
wrappedPayload.Payload = payloadInt
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ip *IntParse) Type() string {
|
func (ip *IntParse) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"math/rand/v2"
|
"math/rand/v2"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -15,9 +16,10 @@ type IntRandom struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ir *IntRandom) Process(ctx context.Context, payload any) (any, error) {
|
func (ir *IntRandom) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
payloadInt := rand.IntN(ir.Max-ir.Min+1) + ir.Min
|
payloadInt := rand.IntN(ir.Max-ir.Min+1) + ir.Min
|
||||||
return payloadInt, nil
|
wrappedPayload.Payload = payloadInt
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ir *IntRandom) Type() string {
|
func (ir *IntRandom) Type() string {
|
||||||
|
|||||||
@@ -17,14 +17,17 @@ type IntScale struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ir *IntScale) Process(ctx context.Context, payload any) (any, error) {
|
func (ir *IntScale) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadInt, ok := common.GetAnyAs[int](payload)
|
payloadInt, ok := common.GetAnyAs[int](payload)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("int.scale can only process an int")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("int.scale can only process an int")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadInt = (payloadInt-ir.InMin)*(ir.OutMax-ir.OutMin)/(ir.InMax-ir.InMin) + ir.OutMin
|
payloadInt = (payloadInt-ir.InMin)*(ir.OutMax-ir.OutMin)/(ir.InMax-ir.InMin) + ir.OutMin
|
||||||
return payloadInt, nil
|
wrappedPayload.Payload = payloadInt
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ir *IntScale) Type() string {
|
func (ir *IntScale) Type() string {
|
||||||
|
|||||||
@@ -13,14 +13,16 @@ type JsonDecode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (jd *JsonDecode) Process(ctx context.Context, payload any) (any, error) {
|
func (jd *JsonDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
|
|
||||||
payloadBytes, ok := common.GetAnyAsByteSlice(payload)
|
payloadBytes, ok := common.GetAnyAsByteSlice(payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
payloadString, ok := common.GetAnyAs[string](payload)
|
payloadString, ok := common.GetAnyAs[string](payload)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("json.decode can only process a string or []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("json.decode can only process a string or []byte")
|
||||||
}
|
}
|
||||||
payloadBytes = []byte(payloadString)
|
payloadBytes = []byte(payloadString)
|
||||||
}
|
}
|
||||||
@@ -29,10 +31,12 @@ func (jd *JsonDecode) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
|
|
||||||
err := json.Unmarshal(payloadBytes, &payloadJson)
|
err := json.Unmarshal(payloadBytes, &payloadJson)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadJson, nil
|
wrappedPayload.Payload = payloadJson
|
||||||
|
return wrappedPayload, nil
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -12,20 +13,23 @@ type JsonEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (je *JsonEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (je *JsonEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
var payloadBuffer bytes.Buffer
|
var payloadBuffer bytes.Buffer
|
||||||
|
|
||||||
err := json.NewEncoder(&payloadBuffer).Encode(payload)
|
err := json.NewEncoder(&payloadBuffer).Encode(payload)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadBytes := payloadBuffer.Bytes()
|
payloadBytes := payloadBuffer.Bytes()
|
||||||
|
|
||||||
payloadBytes = payloadBytes[0 : len(payloadBytes)-1]
|
payloadBytes = payloadBytes[0 : len(payloadBytes)-1]
|
||||||
|
|
||||||
return payloadBytes, nil
|
wrappedPayload.Payload = payloadBytes
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (je *JsonEncode) Type() string {
|
func (je *JsonEncode) Type() string {
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"gitlab.com/gomidi/midi/v2"
|
"gitlab.com/gomidi/midi/v2"
|
||||||
)
|
)
|
||||||
@@ -16,11 +17,11 @@ import (
|
|||||||
// TODO(jwetzell): support using numbers in config file treated as hardcoded values
|
// TODO(jwetzell): support using numbers in config file treated as hardcoded values
|
||||||
type MIDIMessageCreate struct {
|
type MIDIMessageCreate struct {
|
||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
ProcessFunc func(ctx context.Context, payload any) (any, error)
|
ProcessFunc func(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mmc *MIDIMessageCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (mmc *MIDIMessageCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
return mmc.ProcessFunc(ctx, payload)
|
return mmc.ProcessFunc(ctx, wrappedPayload)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mmc *MIDIMessageCreate) Type() string {
|
func (mmc *MIDIMessageCreate) Type() string {
|
||||||
@@ -64,14 +65,15 @@ func newMidiNoteOnCreate(config config.ProcessorConfig) (Processor, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, payload any) (any, error) {
|
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var channelBuffer bytes.Buffer
|
var channelBuffer bytes.Buffer
|
||||||
err := channelTemplate.Execute(&channelBuffer, templateData)
|
err := channelTemplate.Execute(&channelBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
||||||
@@ -80,7 +82,8 @@ func newMidiNoteOnCreate(config config.ProcessorConfig) (Processor, error) {
|
|||||||
err = noteTemplate.Execute(¬eBuffer, templateData)
|
err = noteTemplate.Execute(¬eBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
noteValue, err := strconv.ParseUint(noteBuffer.String(), 10, 8)
|
noteValue, err := strconv.ParseUint(noteBuffer.String(), 10, 8)
|
||||||
@@ -89,12 +92,14 @@ func newMidiNoteOnCreate(config config.ProcessorConfig) (Processor, error) {
|
|||||||
err = velocityTemplate.Execute(&velocityBuffer, templateData)
|
err = velocityTemplate.Execute(&velocityBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
velocityValue, err := strconv.ParseUint(velocityBuffer.String(), 10, 8)
|
velocityValue, err := strconv.ParseUint(velocityBuffer.String(), 10, 8)
|
||||||
payloadMessage := midi.NoteOn(uint8(channelValue), uint8(noteValue), uint8(velocityValue))
|
payloadMessage := midi.NoteOn(uint8(channelValue), uint8(noteValue), uint8(velocityValue))
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}}, nil
|
}}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -135,15 +140,16 @@ func newMidiNoteOffCreate(config config.ProcessorConfig) (Processor, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, payload any) (any, error) {
|
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var channelBuffer bytes.Buffer
|
var channelBuffer bytes.Buffer
|
||||||
err := channelTemplate.Execute(&channelBuffer, templateData)
|
err := channelTemplate.Execute(&channelBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
||||||
@@ -152,7 +158,8 @@ func newMidiNoteOffCreate(config config.ProcessorConfig) (Processor, error) {
|
|||||||
err = noteTemplate.Execute(¬eBuffer, templateData)
|
err = noteTemplate.Execute(¬eBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
noteValue, err := strconv.ParseUint(noteBuffer.String(), 10, 8)
|
noteValue, err := strconv.ParseUint(noteBuffer.String(), 10, 8)
|
||||||
@@ -161,13 +168,15 @@ func newMidiNoteOffCreate(config config.ProcessorConfig) (Processor, error) {
|
|||||||
err = velocityTemplate.Execute(&velocityBuffer, templateData)
|
err = velocityTemplate.Execute(&velocityBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
velocityValue, err := strconv.ParseUint(velocityBuffer.String(), 10, 8)
|
velocityValue, err := strconv.ParseUint(velocityBuffer.String(), 10, 8)
|
||||||
|
|
||||||
payloadMessage := midi.NoteOffVelocity(uint8(channelValue), uint8(noteValue), uint8(velocityValue))
|
payloadMessage := midi.NoteOffVelocity(uint8(channelValue), uint8(noteValue), uint8(velocityValue))
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}}, nil
|
}}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -208,15 +217,16 @@ func newMidiControlChangeCreate(config config.ProcessorConfig) (Processor, error
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, payload any) (any, error) {
|
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var channelBuffer bytes.Buffer
|
var channelBuffer bytes.Buffer
|
||||||
err := channelTemplate.Execute(&channelBuffer, templateData)
|
err := channelTemplate.Execute(&channelBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
||||||
@@ -225,7 +235,8 @@ func newMidiControlChangeCreate(config config.ProcessorConfig) (Processor, error
|
|||||||
err = controlTemplate.Execute(&controlBuffer, templateData)
|
err = controlTemplate.Execute(&controlBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
controlValue, err := strconv.ParseUint(controlBuffer.String(), 10, 8)
|
controlValue, err := strconv.ParseUint(controlBuffer.String(), 10, 8)
|
||||||
@@ -234,13 +245,15 @@ func newMidiControlChangeCreate(config config.ProcessorConfig) (Processor, error
|
|||||||
err = valueTemplate.Execute(&valueBuffer, templateData)
|
err = valueTemplate.Execute(&valueBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
valueValue, err := strconv.ParseUint(valueBuffer.String(), 10, 8)
|
valueValue, err := strconv.ParseUint(valueBuffer.String(), 10, 8)
|
||||||
|
|
||||||
payloadMessage := midi.ControlChange(uint8(channelValue), uint8(controlValue), uint8(valueValue))
|
payloadMessage := midi.ControlChange(uint8(channelValue), uint8(controlValue), uint8(valueValue))
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}}, nil
|
}}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -270,14 +283,15 @@ func newMidiProgramChangeCreate(config config.ProcessorConfig) (Processor, error
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, payload any) (any, error) {
|
return &MIDIMessageCreate{config: config, ProcessFunc: func(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var channelBuffer bytes.Buffer
|
var channelBuffer bytes.Buffer
|
||||||
err := channelTemplate.Execute(&channelBuffer, templateData)
|
err := channelTemplate.Execute(&channelBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
channelValue, err := strconv.ParseUint(channelBuffer.String(), 10, 8)
|
||||||
@@ -286,13 +300,15 @@ func newMidiProgramChangeCreate(config config.ProcessorConfig) (Processor, error
|
|||||||
err = programTemplate.Execute(&programBuffer, templateData)
|
err = programTemplate.Execute(&programBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
programValue, err := strconv.ParseUint(programBuffer.String(), 10, 8)
|
programValue, err := strconv.ParseUint(programBuffer.String(), 10, 8)
|
||||||
|
|
||||||
payloadMessage := midi.ProgramChange(uint8(channelValue), uint8(programValue))
|
payloadMessage := midi.ProgramChange(uint8(channelValue), uint8(programValue))
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}}, nil
|
}}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,16 +15,19 @@ type MIDIMessageDecode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mmd *MIDIMessageDecode) Process(ctx context.Context, payload any) (any, error) {
|
func (mmd *MIDIMessageDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("midi.message.decode processor only accepts a []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("midi.message.decode processor only accepts a []byte")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadMessage := midi.Message(payloadBytes)
|
payloadMessage := midi.Message(payloadBytes)
|
||||||
|
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mmd *MIDIMessageDecode) Type() string {
|
func (mmd *MIDIMessageDecode) Type() string {
|
||||||
|
|||||||
@@ -15,14 +15,17 @@ type MIDIMessageEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mme *MIDIMessageEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (mme *MIDIMessageEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadMessage, ok := common.GetAnyAs[midi.Message](payload)
|
payloadMessage, ok := common.GetAnyAs[midi.Message](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("midi.message.encode processor only accepts a midi.Message")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("midi.message.encode processor only accepts a midi.Message")
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadMessage.Bytes(), nil
|
wrappedPayload.Payload = payloadMessage.Bytes()
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mme *MIDIMessageEncode) Type() string {
|
func (mme *MIDIMessageEncode) Type() string {
|
||||||
|
|||||||
@@ -45,36 +45,44 @@ type MIDIPitchBend struct {
|
|||||||
Absolute uint16
|
Absolute uint16
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mmu *MIDIMessageUnpack) Process(ctx context.Context, payload any) (any, error) {
|
func (mmu *MIDIMessageUnpack) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadMidi, ok := common.GetAnyAs[midi.Message](payload)
|
payloadMidi, ok := common.GetAnyAs[midi.Message](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("midi.message.unpack processor only accepts a midi.Message")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("midi.message.unpack processor only accepts a midi.Message")
|
||||||
}
|
}
|
||||||
|
|
||||||
switch payloadMidi.Type() {
|
switch payloadMidi.Type() {
|
||||||
case midi.NoteOnMsg:
|
case midi.NoteOnMsg:
|
||||||
noteOnMsg := MIDINoteOn{}
|
noteOnMsg := MIDINoteOn{}
|
||||||
payloadMidi.GetNoteOn(¬eOnMsg.Channel, ¬eOnMsg.Note, ¬eOnMsg.Velocity)
|
payloadMidi.GetNoteOn(¬eOnMsg.Channel, ¬eOnMsg.Note, ¬eOnMsg.Velocity)
|
||||||
return noteOnMsg, nil
|
wrappedPayload.Payload = noteOnMsg
|
||||||
|
return wrappedPayload, nil
|
||||||
case midi.NoteOffMsg:
|
case midi.NoteOffMsg:
|
||||||
noteOffMsg := MIDINoteOff{}
|
noteOffMsg := MIDINoteOff{}
|
||||||
payloadMidi.GetNoteOff(¬eOffMsg.Channel, ¬eOffMsg.Note, ¬eOffMsg.Velocity)
|
payloadMidi.GetNoteOff(¬eOffMsg.Channel, ¬eOffMsg.Note, ¬eOffMsg.Velocity)
|
||||||
return noteOffMsg, nil
|
wrappedPayload.Payload = noteOffMsg
|
||||||
|
return wrappedPayload, nil
|
||||||
case midi.ControlChangeMsg:
|
case midi.ControlChangeMsg:
|
||||||
controlChangeMsg := MIDIControlChange{}
|
controlChangeMsg := MIDIControlChange{}
|
||||||
payloadMidi.GetControlChange(&controlChangeMsg.Channel, &controlChangeMsg.Control, &controlChangeMsg.Value)
|
payloadMidi.GetControlChange(&controlChangeMsg.Channel, &controlChangeMsg.Control, &controlChangeMsg.Value)
|
||||||
return controlChangeMsg, nil
|
wrappedPayload.Payload = controlChangeMsg
|
||||||
|
return wrappedPayload, nil
|
||||||
case midi.ProgramChangeMsg:
|
case midi.ProgramChangeMsg:
|
||||||
programChangeMsg := MIDIProgramChange{}
|
programChangeMsg := MIDIProgramChange{}
|
||||||
payloadMidi.GetProgramChange(&programChangeMsg.Channel, &programChangeMsg.Program)
|
payloadMidi.GetProgramChange(&programChangeMsg.Channel, &programChangeMsg.Program)
|
||||||
return programChangeMsg, nil
|
wrappedPayload.Payload = programChangeMsg
|
||||||
|
return wrappedPayload, nil
|
||||||
case midi.PitchBendMsg:
|
case midi.PitchBendMsg:
|
||||||
pitchBendMsg := MIDIPitchBend{}
|
pitchBendMsg := MIDIPitchBend{}
|
||||||
payloadMidi.GetPitchBend(&pitchBendMsg.Channel, &pitchBendMsg.Relative, &pitchBendMsg.Absolute)
|
payloadMidi.GetPitchBend(&pitchBendMsg.Channel, &pitchBendMsg.Relative, &pitchBendMsg.Absolute)
|
||||||
return pitchBendMsg, nil
|
wrappedPayload.Payload = pitchBendMsg
|
||||||
|
return wrappedPayload, nil
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("midi.message.unpack message type not supported %v", payloadMidi.Type())
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("midi.message.unpack message type not supported %v", payloadMidi.Type())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -60,17 +61,17 @@ func (mm MQTTMessage) Payload() []byte {
|
|||||||
|
|
||||||
func (mm MQTTMessage) Ack() {}
|
func (mm MQTTMessage) Ack() {}
|
||||||
|
|
||||||
func (mmc *MQTTMessageCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (mmc *MQTTMessageCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
// TODO(jwetzell): support templating
|
// TODO(jwetzell): support templating
|
||||||
|
|
||||||
message := MQTTMessage{
|
wrappedPayload.Payload = MQTTMessage{
|
||||||
topic: mmc.Topic,
|
topic: mmc.Topic,
|
||||||
qos: mmc.QoS,
|
qos: mmc.QoS,
|
||||||
retained: mmc.Retained,
|
retained: mmc.Retained,
|
||||||
payload: mmc.Payload,
|
payload: mmc.Payload,
|
||||||
}
|
}
|
||||||
|
|
||||||
return message, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mmc *MQTTMessageCreate) Type() string {
|
func (mmc *MQTTMessageCreate) Type() string {
|
||||||
|
|||||||
@@ -13,14 +13,16 @@ type MQTTMessageEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mme *MQTTMessageEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (mme *MQTTMessageEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadMessage, ok := common.GetAnyAs[mqtt.Message](payload)
|
payloadMessage, ok := common.GetAnyAs[mqtt.Message](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("mqtt.message.encode processor only accepts an mqtt.Message")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("mqtt.message.encode processor only accepts an mqtt.Message")
|
||||||
}
|
}
|
||||||
|
wrappedPayload.Payload = payloadMessage.Payload()
|
||||||
return payloadMessage.Payload(), nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mme *MQTTMessageEncode) Type() string {
|
func (mme *MQTTMessageEncode) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -20,14 +21,16 @@ type NATSMessageCreate struct {
|
|||||||
Payload *template.Template
|
Payload *template.Template
|
||||||
}
|
}
|
||||||
|
|
||||||
func (nmc *NATSMessageCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (nmc *NATSMessageCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
templateData := GetTemplateData(ctx, payload)
|
|
||||||
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var payloadBuffer bytes.Buffer
|
var payloadBuffer bytes.Buffer
|
||||||
err := nmc.Payload.Execute(&payloadBuffer, templateData)
|
err := nmc.Payload.Execute(&payloadBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadString := payloadBuffer.String()
|
payloadString := payloadBuffer.String()
|
||||||
@@ -36,17 +39,18 @@ func (nmc *NATSMessageCreate) Process(ctx context.Context, payload any) (any, er
|
|||||||
err = nmc.Subject.Execute(&subjectBuffer, templateData)
|
err = nmc.Subject.Execute(&subjectBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
subjectString := subjectBuffer.String()
|
subjectString := subjectBuffer.String()
|
||||||
|
|
||||||
message := NATSMessage{
|
wrappedPayload.Payload = NATSMessage{
|
||||||
Subject: subjectString,
|
Subject: subjectString,
|
||||||
Payload: []byte(payloadString),
|
Payload: []byte(payloadString),
|
||||||
}
|
}
|
||||||
|
|
||||||
return message, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (nmc *NATSMessageCreate) Type() string {
|
func (nmc *NATSMessageCreate) Type() string {
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import (
|
|||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
"github.com/jwetzell/osc-go"
|
"github.com/jwetzell/osc-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -20,25 +21,28 @@ type OSCMessageCreate struct {
|
|||||||
Types string
|
Types string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (omc *OSCMessageCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (omc *OSCMessageCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var addressBuffer bytes.Buffer
|
var addressBuffer bytes.Buffer
|
||||||
err := omc.Address.Execute(&addressBuffer, templateData)
|
err := omc.Address.Execute(&addressBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
addressString := addressBuffer.String()
|
addressString := addressBuffer.String()
|
||||||
|
|
||||||
if len(addressString) == 0 {
|
if len(addressString) == 0 {
|
||||||
return nil, errors.New("osc.message.create address must not be empty")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("osc.message.create address must not be empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
if addressString[0] != '/' {
|
if addressString[0] != '/' {
|
||||||
return nil, errors.New("osc.message.create address must start with '/'")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("osc.message.create address must start with '/'")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadMessage := &osc.OSCMessage{
|
payloadMessage := &osc.OSCMessage{
|
||||||
@@ -52,7 +56,8 @@ func (omc *OSCMessageCreate) Process(ctx context.Context, payload any) (any, err
|
|||||||
err := argTemplate.Execute(&argBuffer, templateData)
|
err := argTemplate.Execute(&argBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
argString := argBuffer.String()
|
argString := argBuffer.String()
|
||||||
@@ -60,7 +65,8 @@ func (omc *OSCMessageCreate) Process(ctx context.Context, payload any) (any, err
|
|||||||
typedArg, err := argToTypedArg(argString, omc.Types[argIndex])
|
typedArg, err := argToTypedArg(argString, omc.Types[argIndex])
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
args = append(args, typedArg)
|
args = append(args, typedArg)
|
||||||
@@ -70,7 +76,8 @@ func (omc *OSCMessageCreate) Process(ctx context.Context, payload any) (any, err
|
|||||||
payloadMessage.Args = args
|
payloadMessage.Args = args
|
||||||
}
|
}
|
||||||
|
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (omc *OSCMessageCreate) Type() string {
|
func (omc *OSCMessageCreate) Type() string {
|
||||||
|
|||||||
@@ -14,26 +14,32 @@ type OSCMessageDecode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (omd *OSCMessageDecode) Process(ctx context.Context, payload any) (any, error) {
|
func (omd *OSCMessageDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("osc.message.decode processor only accepts a []byte payload")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("osc.message.decode processor only accepts a []byte payload")
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(payloadBytes) == 0 {
|
if len(payloadBytes) == 0 {
|
||||||
return nil, errors.New("osc.message.decode processor can't work on empty []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("osc.message.decode processor can't work on empty []byte")
|
||||||
}
|
}
|
||||||
|
|
||||||
if payloadBytes[0] != '/' {
|
if payloadBytes[0] != '/' {
|
||||||
return nil, errors.New("osc.message.decode processor needs an OSC looking []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("osc.message.decode processor needs an OSC looking []byte")
|
||||||
}
|
}
|
||||||
|
|
||||||
message, err := osc.MessageFromBytes(payloadBytes)
|
message, err := osc.MessageFromBytes(payloadBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("osc.message.decode processor failed to decode OSC message: %w", err)
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("osc.message.decode processor failed to decode OSC message: %w", err)
|
||||||
}
|
}
|
||||||
return message, nil
|
wrappedPayload.Payload = message
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (omd *OSCMessageDecode) Type() string {
|
func (omd *OSCMessageDecode) Type() string {
|
||||||
|
|||||||
@@ -13,15 +13,17 @@ type OSCMessageEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ome *OSCMessageEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (ome *OSCMessageEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadMessage, ok := common.GetAnyAs[*osc.OSCMessage](payload)
|
payloadMessage, ok := common.GetAnyAs[*osc.OSCMessage](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("osc.message.encode processor only accepts an *OSCMessage")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("osc.message.encode processor only accepts an *OSCMessage")
|
||||||
}
|
}
|
||||||
|
|
||||||
bytes := payloadMessage.ToBytes()
|
wrappedPayload.Payload = payloadMessage.ToBytes()
|
||||||
return bytes, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ome *OSCMessageEncode) Type() string {
|
func (ome *OSCMessageEncode) Type() string {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import (
|
|||||||
|
|
||||||
type Processor interface {
|
type Processor interface {
|
||||||
Type() string
|
Type() string
|
||||||
Process(context.Context, any) (any, error)
|
Process(context.Context, common.WrappedPayload) (common.WrappedPayload, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type ProcessorRegistration struct {
|
type ProcessorRegistration struct {
|
||||||
@@ -41,38 +41,3 @@ var (
|
|||||||
processorRegistryMu sync.RWMutex
|
processorRegistryMu sync.RWMutex
|
||||||
ProcessorRegistry = make(map[string]ProcessorRegistration)
|
ProcessorRegistry = make(map[string]ProcessorRegistration)
|
||||||
)
|
)
|
||||||
|
|
||||||
type TemplateData struct {
|
|
||||||
Payload any
|
|
||||||
Modules any
|
|
||||||
Sender any
|
|
||||||
}
|
|
||||||
|
|
||||||
type EnvData struct {
|
|
||||||
Payload any
|
|
||||||
Sender any
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetTemplateData(ctx context.Context, payload any) TemplateData {
|
|
||||||
templateData := TemplateData{Payload: payload}
|
|
||||||
modules := ctx.Value(common.ModulesContextKey)
|
|
||||||
if modules != nil {
|
|
||||||
templateData.Modules = modules
|
|
||||||
}
|
|
||||||
|
|
||||||
sender := ctx.Value(common.SenderContextKey)
|
|
||||||
if sender != nil {
|
|
||||||
templateData.Sender = sender
|
|
||||||
}
|
|
||||||
return templateData
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetEnvData(ctx context.Context, payload any) EnvData {
|
|
||||||
envData := EnvData{Payload: payload}
|
|
||||||
|
|
||||||
sender := ctx.Value(common.SenderContextKey)
|
|
||||||
if sender != nil {
|
|
||||||
envData.Sender = sender
|
|
||||||
}
|
|
||||||
return envData
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -16,20 +16,26 @@ type RouterInput struct {
|
|||||||
logger *slog.Logger
|
logger *slog.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ro *RouterInput) Process(ctx context.Context, payload any) (any, error) {
|
func (ro *RouterInput) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
router, ok := ctx.Value(common.RouterContextKey).(common.RouteIO)
|
router, ok := ctx.Value(common.RouterContextKey).(common.RouteIO)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("router.input no router found")
|
|
||||||
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("router.input no router found")
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err := router.HandleInput(ctx, ro.SourceId, payload)
|
_, err := router.HandleInput(ctx, ro.SourceId, payload)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.New("router.input failed to send input")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("router.input failed to send input")
|
||||||
}
|
}
|
||||||
|
|
||||||
return payload, nil
|
wrappedPayload.Payload = payload
|
||||||
|
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ro *RouterInput) Type() string {
|
func (ro *RouterInput) Type() string {
|
||||||
|
|||||||
@@ -16,20 +16,22 @@ type RouterOutput struct {
|
|||||||
logger *slog.Logger
|
logger *slog.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ro *RouterOutput) Process(ctx context.Context, payload any) (any, error) {
|
func (ro *RouterOutput) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
router, ok := ctx.Value(common.RouterContextKey).(common.RouteIO)
|
router, ok := ctx.Value(common.RouterContextKey).(common.RouteIO)
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("router.output no router found")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("router.output no router found")
|
||||||
}
|
}
|
||||||
|
|
||||||
err := router.HandleOutput(ctx, ro.ModuleId, payload)
|
err := router.HandleOutput(ctx, ro.ModuleId, wrappedPayload.Payload)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("router.output failed to send output: %w", err)
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("router.output failed to send output: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return payload, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ro *RouterOutput) Type() string {
|
func (ro *RouterOutput) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/expr-lang/expr"
|
"github.com/expr-lang/expr"
|
||||||
"github.com/expr-lang/expr/vm"
|
"github.com/expr-lang/expr/vm"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -15,16 +16,18 @@ type ScriptExpr struct {
|
|||||||
Program *vm.Program
|
Program *vm.Program
|
||||||
}
|
}
|
||||||
|
|
||||||
func (se *ScriptExpr) Process(ctx context.Context, payload any) (any, error) {
|
func (se *ScriptExpr) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
exprEnv := GetEnvData(ctx, payload)
|
exprEnv := wrappedPayload
|
||||||
|
|
||||||
output, err := expr.Run(se.Program, exprEnv)
|
output, err := expr.Run(se.Program, exprEnv)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return output, nil
|
wrappedPayload.Payload = output
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (se *ScriptExpr) Type() string {
|
func (se *ScriptExpr) Type() string {
|
||||||
|
|||||||
@@ -18,42 +18,45 @@ type ScriptJS struct {
|
|||||||
Program string
|
Program string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sj *ScriptJS) Process(ctx context.Context, payload any) (any, error) {
|
func (sj *ScriptJS) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
//NOTE(jwetzell): some weird conversion going on with these types
|
//NOTE(jwetzell): some weird conversion going on with these types
|
||||||
_, isUint8Slice := common.GetAnyAs[[]uint8](payload)
|
_, isUint8Slice := common.GetAnyAs[[]uint8](wrappedPayload.Payload)
|
||||||
_, isbyteSlice := common.GetAnyAs[[]byte](payload)
|
_, isbyteSlice := common.GetAnyAs[[]byte](wrappedPayload.Payload)
|
||||||
|
|
||||||
if isUint8Slice || isbyteSlice {
|
if isUint8Slice || isbyteSlice {
|
||||||
intSlice, ok := common.GetAnyAsIntSlice(payload)
|
intSlice, ok := common.GetAnyAsIntSlice(wrappedPayload.Payload)
|
||||||
|
|
||||||
if ok {
|
if ok {
|
||||||
payload = intSlice
|
wrappedPayload.Payload = intSlice
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sj.vm.SetProperty(sj.vm.GlobalObject(), sj.payloadAtom, payload)
|
sj.vm.SetProperty(sj.vm.GlobalObject(), sj.payloadAtom, wrappedPayload.Payload)
|
||||||
|
|
||||||
sender := ctx.Value(common.SenderContextKey)
|
sj.vm.SetProperty(sj.vm.GlobalObject(), sj.senderAtom, wrappedPayload.Sender)
|
||||||
sj.vm.SetProperty(sj.vm.GlobalObject(), sj.senderAtom, sender)
|
|
||||||
|
|
||||||
_, err := sj.vm.Eval(sj.Program, quickjs.EvalGlobal)
|
_, err := sj.vm.Eval(sj.Program, quickjs.EvalGlobal)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
output, err := sj.vm.GetProperty(sj.vm.GlobalObject(), sj.payloadAtom)
|
output, err := sj.vm.GetProperty(sj.vm.GlobalObject(), sj.payloadAtom)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE(jwetzell): turn undefined into nil
|
// NOTE(jwetzell): turn undefined into nil
|
||||||
_, ok := output.(quickjs.Undefined)
|
_, ok := output.(quickjs.Undefined)
|
||||||
|
|
||||||
if ok {
|
if ok {
|
||||||
return nil, nil
|
wrappedPayload.End = true
|
||||||
|
wrappedPayload.Payload = nil
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE(jwetzell): turn object into map[string]interface{}
|
// NOTE(jwetzell): turn object into map[string]interface{}
|
||||||
@@ -61,12 +64,13 @@ func (sj *ScriptJS) Process(ctx context.Context, payload any) (any, error) {
|
|||||||
|
|
||||||
if ok {
|
if ok {
|
||||||
var outputMap map[string]interface{}
|
var outputMap map[string]interface{}
|
||||||
fmt.Println(outputObject.String())
|
|
||||||
err := json.Unmarshal([]byte(outputObject.String()), &outputMap)
|
err := json.Unmarshal([]byte(outputObject.String()), &outputMap)
|
||||||
return outputMap, err
|
wrappedPayload.Payload = outputMap
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return output, nil
|
wrappedPayload.Payload = output
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sj *ScriptJS) Type() string {
|
func (sj *ScriptJS) Type() string {
|
||||||
|
|||||||
@@ -16,27 +16,32 @@ type ScriptWASM struct {
|
|||||||
Function string
|
Function string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sw *ScriptWASM) Process(ctx context.Context, payload any) (any, error) {
|
func (sw *ScriptWASM) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, fmt.Errorf("script.wasm can only process a byte array")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("script.wasm can only process a byte array")
|
||||||
}
|
}
|
||||||
|
|
||||||
program, err := sw.Program.Instance(ctx, extism.PluginInstanceConfig{})
|
program, err := sw.Program.Instance(ctx, extism.PluginInstanceConfig{})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, output, err := program.Call(sw.Function, payloadBytes)
|
_, output, err := program.Call(sw.Function, payloadBytes)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
wrappedPayload.Payload = output
|
||||||
|
|
||||||
return output, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sw *ScriptWASM) Type() string {
|
func (sw *ScriptWASM) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -22,24 +23,26 @@ type SipAudioFileResponse struct {
|
|||||||
AudioFile string
|
AudioFile string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srac *SipResponseAudioCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (srac *SipResponseAudioCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var audioFileBuffer bytes.Buffer
|
var audioFileBuffer bytes.Buffer
|
||||||
err := srac.AudioFile.Execute(&audioFileBuffer, templateData)
|
err := srac.AudioFile.Execute(&audioFileBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
audioFileString := audioFileBuffer.String()
|
audioFileString := audioFileBuffer.String()
|
||||||
|
|
||||||
return SipAudioFileResponse{
|
wrappedPayload.Payload = SipAudioFileResponse{
|
||||||
PreWait: srac.PreWait,
|
PreWait: srac.PreWait,
|
||||||
PostWait: srac.PostWait,
|
PostWait: srac.PostWait,
|
||||||
AudioFile: audioFileString,
|
AudioFile: audioFileString,
|
||||||
}, nil
|
}
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srac *SipResponseAudioCreate) Type() string {
|
func (srac *SipResponseAudioCreate) Type() string {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
"regexp"
|
"regexp"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -25,28 +26,31 @@ type SipDTMFResponse struct {
|
|||||||
Digits string
|
Digits string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srdc *SipResponseDTMFCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (srdc *SipResponseDTMFCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var digitsBuffer bytes.Buffer
|
var digitsBuffer bytes.Buffer
|
||||||
err := srdc.Digits.Execute(&digitsBuffer, templateData)
|
err := srdc.Digits.Execute(&digitsBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
digitsString := digitsBuffer.String()
|
digitsString := digitsBuffer.String()
|
||||||
|
|
||||||
if !srdc.validDTMF.MatchString(digitsString) {
|
if !srdc.validDTMF.MatchString(digitsString) {
|
||||||
return nil, errors.New("sip.response.dtmf.create result of digits template contains invalid characters")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("sip.response.dtmf.create result of digits template contains invalid characters")
|
||||||
}
|
}
|
||||||
|
|
||||||
return SipDTMFResponse{
|
wrappedPayload.Payload = SipDTMFResponse{
|
||||||
PreWait: srdc.PreWait,
|
PreWait: srdc.PreWait,
|
||||||
PostWait: srdc.PostWait,
|
PostWait: srdc.PostWait,
|
||||||
Digits: digitsString,
|
Digits: digitsString,
|
||||||
}, nil
|
}
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (srdc *SipResponseDTMFCreate) Type() string {
|
func (srdc *SipResponseDTMFCreate) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -14,19 +15,20 @@ type StringCreate struct {
|
|||||||
Template *template.Template
|
Template *template.Template
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sc *StringCreate) Process(ctx context.Context, payload any) (any, error) {
|
func (sc *StringCreate) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
templateData := GetTemplateData(ctx, payload)
|
templateData := wrappedPayload
|
||||||
|
|
||||||
var templateBuffer bytes.Buffer
|
var templateBuffer bytes.Buffer
|
||||||
err := sc.Template.Execute(&templateBuffer, templateData)
|
err := sc.Template.Execute(&templateBuffer, templateData)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, err
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadString := templateBuffer.String()
|
wrappedPayload.Payload = templateBuffer.String()
|
||||||
|
|
||||||
return payloadString, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sc *StringCreate) Type() string {
|
func (sc *StringCreate) Type() string {
|
||||||
|
|||||||
@@ -12,16 +12,19 @@ type StringDecode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sd *StringDecode) Process(ctx context.Context, payload any) (any, error) {
|
func (sd *StringDecode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
payloadBytes, ok := common.GetAnyAs[[]byte](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("string.decode processor only accepts a []byte")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("string.decode processor only accepts a []byte")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadMessage := string(payloadBytes)
|
payloadMessage := string(payloadBytes)
|
||||||
|
|
||||||
return payloadMessage, nil
|
wrappedPayload.Payload = payloadMessage
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sd *StringDecode) Type() string {
|
func (sd *StringDecode) Type() string {
|
||||||
|
|||||||
@@ -12,16 +12,18 @@ type StringEncode struct {
|
|||||||
config config.ProcessorConfig
|
config config.ProcessorConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (se *StringEncode) Process(ctx context.Context, payload any) (any, error) {
|
func (se *StringEncode) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadString, ok := common.GetAnyAs[string](payload)
|
payloadString, ok := common.GetAnyAs[string](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("string.encode processor only accepts a string")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("string.encode processor only accepts a string")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadBytes := []byte(payloadString)
|
wrappedPayload.Payload = []byte(payloadString)
|
||||||
|
|
||||||
return payloadBytes, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (se *StringEncode) Type() string {
|
func (se *StringEncode) Type() string {
|
||||||
|
|||||||
@@ -15,16 +15,18 @@ type StringSplit struct {
|
|||||||
Separator string
|
Separator string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ss *StringSplit) Process(ctx context.Context, payload any) (any, error) {
|
func (ss *StringSplit) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
payloadString, ok := common.GetAnyAs[string](payload)
|
payloadString, ok := common.GetAnyAs[string](payload)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, errors.New("string.split only accepts a string")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("string.split only accepts a string")
|
||||||
}
|
}
|
||||||
|
|
||||||
payloadParts := strings.Split(payloadString, ss.Separator)
|
wrappedPayload.Payload = strings.Split(payloadString, ss.Separator)
|
||||||
|
|
||||||
return payloadParts, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ss *StringSplit) Type() string {
|
func (ss *StringSplit) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -14,23 +15,27 @@ type StructFieldGet struct {
|
|||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sf *StructFieldGet) Process(ctx context.Context, payload any) (any, error) {
|
func (sf *StructFieldGet) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
s := reflect.ValueOf(payload)
|
s := reflect.ValueOf(payload)
|
||||||
|
|
||||||
if s.Kind() != reflect.Struct {
|
if s.Kind() != reflect.Struct {
|
||||||
if s.Kind() == reflect.Pointer && s.Elem().Kind() == reflect.Struct {
|
if s.Kind() == reflect.Pointer && s.Elem().Kind() == reflect.Struct {
|
||||||
s = s.Elem()
|
s = s.Elem()
|
||||||
} else {
|
} else {
|
||||||
return nil, errors.New("struct.field.get processor only accepts a struct payload")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("struct.field.get processor only accepts a struct payload")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
field := s.FieldByName(sf.Name)
|
field := s.FieldByName(sf.Name)
|
||||||
if !field.IsValid() {
|
if !field.IsValid() {
|
||||||
return nil, fmt.Errorf("struct.field.get field '%s' does not exist", sf.Name)
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("struct.field.get field '%s' does not exist", sf.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
return field.Interface(), nil
|
wrappedPayload.Payload = field.Interface()
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sf *StructFieldGet) Type() string {
|
func (sf *StructFieldGet) Type() string {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -14,30 +15,36 @@ type StructMethodGet struct {
|
|||||||
Name string
|
Name string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sm *StructMethodGet) Process(ctx context.Context, payload any) (any, error) {
|
func (sm *StructMethodGet) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
|
payload := wrappedPayload.Payload
|
||||||
s := reflect.ValueOf(payload)
|
s := reflect.ValueOf(payload)
|
||||||
|
|
||||||
if s.Kind() != reflect.Struct {
|
if s.Kind() != reflect.Struct {
|
||||||
if s.Kind() == reflect.Pointer && s.Elem().Kind() == reflect.Struct {
|
if s.Kind() == reflect.Pointer && s.Elem().Kind() == reflect.Struct {
|
||||||
s = s.Elem()
|
s = s.Elem()
|
||||||
} else {
|
} else {
|
||||||
return nil, errors.New("struct.method.get processor only accepts a struct payload")
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, errors.New("struct.method.get processor only accepts a struct payload")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
method := s.MethodByName(sm.Name)
|
method := s.MethodByName(sm.Name)
|
||||||
if !method.IsValid() {
|
if !method.IsValid() {
|
||||||
return nil, fmt.Errorf("struct.method.get method '%s' does not exist", sm.Name)
|
wrappedPayload.End = true
|
||||||
|
return wrappedPayload, fmt.Errorf("struct.method.get method '%s' does not exist", sm.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
value := method.Call(nil)
|
value := method.Call(nil)
|
||||||
|
|
||||||
if len(value) == 0 {
|
if len(value) == 0 {
|
||||||
return nil, nil
|
wrappedPayload.End = true
|
||||||
|
wrappedPayload.Payload = nil
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(value) == 1 {
|
if len(value) == 1 {
|
||||||
return value[0].Interface(), nil
|
wrappedPayload.Payload = value[0].Interface()
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
results := make([]any, len(value))
|
results := make([]any, len(value))
|
||||||
@@ -46,7 +53,8 @@ func (sm *StructMethodGet) Process(ctx context.Context, payload any) (any, error
|
|||||||
results[i] = v.Interface()
|
results[i] = v.Interface()
|
||||||
}
|
}
|
||||||
|
|
||||||
return results, nil
|
wrappedPayload.Payload = results
|
||||||
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sm *StructMethodGet) Type() string {
|
func (sm *StructMethodGet) Type() string {
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jwetzell/artnet-go"
|
"github.com/jwetzell/artnet-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -57,15 +58,15 @@ func TestGoodArtnetPacketDecode(t *testing.T) {
|
|||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
|
||||||
got, err := packetDecoder.Process(t.Context(), test.payload)
|
got, err := packetDecoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("artnet.packet.decode processing failed: %s", err)
|
t.Fatalf("artnet.packet.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO(jwetzell): work out better way to compare the any/any
|
//TODO(jwetzell): work out better way to compare the any/any
|
||||||
if !reflect.DeepEqual(got, test.expected) {
|
if !reflect.DeepEqual(got.Payload, test.expected) {
|
||||||
t.Fatalf("artnet.packet.decode got %+v (%T), expected %+v (%T)", got, got, test.expected, test.expected)
|
t.Fatalf("artnet.packet.decode got %+v (%T), expected %+v (%T)", got.Payload, got.Payload, test.expected, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -93,7 +94,7 @@ func TestBadArtnetPacketDecode(t *testing.T) {
|
|||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
|
||||||
got, err := packetDecoder.Process(t.Context(), test.payload)
|
got, err := packetDecoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("artnet.packet.decode expected to fail but succeeded, got: %v", got)
|
t.Fatalf("artnet.packet.decode expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jwetzell/artnet-go"
|
"github.com/jwetzell/artnet-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -57,14 +58,14 @@ func TestGoodArtnetPacketEncode(t *testing.T) {
|
|||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
|
||||||
got, err := packetEncoder.Process(t.Context(), test.payload)
|
got, err := packetEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("artnet.packet.encode processing failed: %s", err)
|
t.Fatalf("artnet.packet.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO(jwetzell): work out better way to compare the any/any
|
//TODO(jwetzell): work out better way to compare the any/any
|
||||||
if !reflect.DeepEqual(got, test.expected) {
|
if !reflect.DeepEqual(got.Payload, test.expected) {
|
||||||
t.Fatalf("artnet.packet.encode got %+v (%T), expected %+v (%T)", got, got, test.expected, test.expected)
|
t.Fatalf("artnet.packet.encode got %+v (%T), expected %+v (%T)", got, got, test.expected, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -88,7 +89,7 @@ func TestBadArtnetPacketEncode(t *testing.T) {
|
|||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
|
||||||
got, err := packetEncoder.Process(t.Context(), test.payload)
|
got, err := packetEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("artnet.packet.encode expected to fail but succeeded, got: %v", got)
|
t.Fatalf("artnet.packet.encode expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -28,12 +29,12 @@ func TestDebugLogFromRegistry(t *testing.T) {
|
|||||||
payload := "test"
|
payload := "test"
|
||||||
expected := "test"
|
expected := "test"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("debug.log processing failed: %s", err)
|
t.Fatalf("debug.log processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != expected {
|
if got.Payload != expected {
|
||||||
t.Fatalf("debug.log got %+v, expected %+v", got, expected)
|
t.Fatalf("debug.log got %+v, expected %+v", got, expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
package processor_test
|
package processor_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -34,7 +34,7 @@ func TestGoodFilterExpr(t *testing.T) {
|
|||||||
name string
|
name string
|
||||||
params map[string]any
|
params map[string]any
|
||||||
payload any
|
payload any
|
||||||
expected any
|
match bool
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
name: "number",
|
name: "number",
|
||||||
@@ -44,9 +44,7 @@ func TestGoodFilterExpr(t *testing.T) {
|
|||||||
payload: TestStruct{
|
payload: TestStruct{
|
||||||
Int: 1,
|
Int: 1,
|
||||||
},
|
},
|
||||||
expected: TestStruct{
|
match: true,
|
||||||
Int: 1,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "string",
|
name: "string",
|
||||||
@@ -56,9 +54,7 @@ func TestGoodFilterExpr(t *testing.T) {
|
|||||||
payload: TestStruct{
|
payload: TestStruct{
|
||||||
String: "hello",
|
String: "hello",
|
||||||
},
|
},
|
||||||
expected: TestStruct{
|
match: true,
|
||||||
String: "hello",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "not matching",
|
name: "not matching",
|
||||||
@@ -68,7 +64,7 @@ func TestGoodFilterExpr(t *testing.T) {
|
|||||||
payload: TestStruct{
|
payload: TestStruct{
|
||||||
Int: 0,
|
Int: 0,
|
||||||
},
|
},
|
||||||
expected: nil,
|
match: false,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,15 +84,15 @@ func TestGoodFilterExpr(t *testing.T) {
|
|||||||
t.Fatalf("filter.expr failed to create processor: %s", err)
|
t.Fatalf("filter.expr failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("filter.expr processing failed: %s", err)
|
t.Fatalf("filter.expr processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO(jwetzell): work out better way to compare the any/any
|
//TODO(jwetzell): work out better way to compare the any/any
|
||||||
if !reflect.DeepEqual(got, test.expected) {
|
if got.End != !test.match {
|
||||||
t.Fatalf("filter.expr got %+v (%T), expected %+v (%T)", got, got, test.expected, test.expected)
|
t.Fatalf("filter.expr did fitler properly %+v (%T), expected %+v (%T)", got, got, test.match, test.match)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -162,7 +158,7 @@ func TestBadFilterExpr(t *testing.T) {
|
|||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("filter.expr expected to fail but succeeded, got: %v", got)
|
t.Fatalf("filter.expr expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
package processor_test
|
package processor_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -31,12 +31,12 @@ func TestStringFilterFromRegistry(t *testing.T) {
|
|||||||
payload := "hello"
|
payload := "hello"
|
||||||
expected := "hello"
|
expected := "hello"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("filter.regex processing failed: %s", err)
|
t.Fatalf("filter.regex processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotString, ok := got.(string)
|
gotString, ok := got.Payload.(string)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("filter.regex should return byte slice")
|
t.Fatalf("filter.regex should return byte slice")
|
||||||
@@ -52,25 +52,25 @@ func TestGoodStringFilter(t *testing.T) {
|
|||||||
name string
|
name string
|
||||||
params map[string]any
|
params map[string]any
|
||||||
payload string
|
payload string
|
||||||
expected any
|
match bool
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
name: "matches pattern",
|
name: "matches pattern",
|
||||||
payload: "hello",
|
payload: "hello",
|
||||||
params: map[string]any{"pattern": "hello"},
|
params: map[string]any{"pattern": "hello"},
|
||||||
expected: "hello",
|
match: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "does not match pattern",
|
name: "does not match pattern",
|
||||||
payload: "hello",
|
payload: "hello",
|
||||||
params: map[string]any{"pattern": "world"},
|
params: map[string]any{"pattern": "world"},
|
||||||
expected: nil,
|
match: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "basic regex",
|
name: "basic regex",
|
||||||
payload: "hello world",
|
payload: "hello world",
|
||||||
params: map[string]any{"pattern": ".* world"},
|
params: map[string]any{"pattern": ".* world"},
|
||||||
expected: "hello world",
|
match: true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,26 +90,14 @@ func TestGoodStringFilter(t *testing.T) {
|
|||||||
t.Fatalf("filter.regex failed to create processor: %s", err)
|
t.Fatalf("filter.regex failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("filter.regex processing failed: %s", err)
|
t.Fatalf("filter.regex processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if test.expected == nil {
|
if got.End != !test.match {
|
||||||
if got != nil {
|
t.Fatalf("filter.regex did not filter properly %+v, expected %+v", got, test.match)
|
||||||
t.Fatalf("filter.regex got %+v, expected nil", got)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
gotString, ok := got.(string)
|
|
||||||
if !ok {
|
|
||||||
t.Fatalf("filter.regex returned a %T payload: %s", got, got)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotString, test.expected) {
|
|
||||||
t.Fatalf("filter.regex got %+v, expected %+v", gotString, test.expected)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -173,10 +161,10 @@ func TestBadStringFilter(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("filter.regex expected to fail but got payload: %s", got)
|
t.Fatalf("filter.regex expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -75,14 +76,14 @@ func TestGoodFloatParse(t *testing.T) {
|
|||||||
t.Fatalf("float.parse failed to create processor: %s", err)
|
t.Fatalf("float.parse failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("float.parse processing failed: %s", err)
|
t.Fatalf("float.parse processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotFloat, ok := got.(float64)
|
gotFloat, ok := got.Payload.(float64)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("float.parse returned a %T payload: %s", got, got)
|
t.Fatalf("float.parse returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
if gotFloat != test.expected {
|
if gotFloat != test.expected {
|
||||||
t.Fatalf("float.parse got %f, expected %f", gotFloat, test.expected)
|
t.Fatalf("float.parse got %f, expected %f", gotFloat, test.expected)
|
||||||
@@ -151,7 +152,7 @@ func TestBadFloatParse(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("float.parse expected to fail but succeeded, got: %v", got)
|
t.Fatalf("float.parse expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -70,7 +71,7 @@ func TestGoodFloatRandom(t *testing.T) {
|
|||||||
t.Fatalf("float.random failed to create processor: %s", err)
|
t.Fatalf("float.random failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("float.random processing failed: %s", err)
|
t.Fatalf("float.random processing failed: %s", err)
|
||||||
}
|
}
|
||||||
@@ -82,16 +83,16 @@ func TestGoodFloatRandom(t *testing.T) {
|
|||||||
|
|
||||||
var gotFloat float64
|
var gotFloat float64
|
||||||
if bitSize == 32 {
|
if bitSize == 32 {
|
||||||
gotFloat32, ok := got.(float32)
|
gotFloat32, ok := got.Payload.(float32)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("float.random returned a %T payload: %s", got, got)
|
t.Fatalf("float.random returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
gotFloat = float64(gotFloat32)
|
gotFloat = float64(gotFloat32)
|
||||||
}
|
}
|
||||||
if bitSize == 64 {
|
if bitSize == 64 {
|
||||||
gotFloat64, ok := got.(float64)
|
gotFloat64, ok := got.Payload.(float64)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("float.random returned a %T payload: %s", got, got)
|
t.Fatalf("float.random returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
gotFloat = gotFloat64
|
gotFloat = gotFloat64
|
||||||
}
|
}
|
||||||
@@ -171,10 +172,10 @@ func TestBadFloatRandom(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("float.random expected to fail but got payload: %s", got)
|
t.Fatalf("float.random expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -96,14 +97,14 @@ func TestGoodIntParse(t *testing.T) {
|
|||||||
t.Fatalf("int.parse failed to create processor: %s", err)
|
t.Fatalf("int.parse failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("int.parse processing failed: %s", err)
|
t.Fatalf("int.parse processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotInt, ok := got.(int64)
|
gotInt, ok := got.Payload.(int64)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("int.parse returned a %T payload: %s", got, got)
|
t.Fatalf("int.parse returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
if gotInt != test.expected {
|
if gotInt != test.expected {
|
||||||
t.Fatalf("int.parse got %d, expected %d", gotInt, test.expected)
|
t.Fatalf("int.parse got %d, expected %d", gotInt, test.expected)
|
||||||
@@ -185,7 +186,7 @@ func TestBadIntParse(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("int.parse expected to fail but succeeded, got: %v", got)
|
t.Fatalf("int.parse expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -50,14 +51,14 @@ func TestIntRandomGoodConfig(t *testing.T) {
|
|||||||
|
|
||||||
payload := "12345"
|
payload := "12345"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("int.random processing failed: %s", err)
|
t.Fatalf("int.random processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotInt, ok := got.(int)
|
gotInt, ok := got.Payload.(int)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("int.random returned a %T payload: %s", got, got)
|
t.Fatalf("int.random returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if gotInt < 1 || gotInt > 10 {
|
if gotInt < 1 || gotInt > 10 {
|
||||||
@@ -97,14 +98,14 @@ func TestGoodIntRandom(t *testing.T) {
|
|||||||
t.Fatalf("int.random failed to create processor: %s", err)
|
t.Fatalf("int.random failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("int.random processing failed: %s", err)
|
t.Fatalf("int.random processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotInt, ok := got.(int)
|
gotInt, ok := got.Payload.(int)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("int.random returned a %T payload: %s", got, got)
|
t.Fatalf("int.random returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
minNum, ok := test.params["min"].(int)
|
minNum, ok := test.params["min"].(int)
|
||||||
@@ -182,10 +183,10 @@ func TestBadIntRandom(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("int.random expected to fail but got payload: %s", got)
|
t.Fatalf("int.random expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -68,14 +69,14 @@ func TestGoodIntScale(t *testing.T) {
|
|||||||
t.Fatalf("int.scale failed to create processor: %s", err)
|
t.Fatalf("int.scale failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("int.scale processing failed: %s", err)
|
t.Fatalf("int.scale processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotInt, ok := got.(int)
|
gotInt, ok := got.Payload.(int)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("int.scale returned a %T payload: %s", got, got)
|
t.Fatalf("int.scale returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if gotInt != test.expected {
|
if gotInt != test.expected {
|
||||||
@@ -156,10 +157,10 @@ func TestBadIntScale(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("int.scale expected to fail but got payload: %s", got)
|
t.Fatalf("int.scale expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -31,12 +32,12 @@ func TestJsonDecodeFromRegistry(t *testing.T) {
|
|||||||
"property": "hello",
|
"property": "hello",
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("json.decode processing failed: %s", err)
|
t.Fatalf("json.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMap, ok := got.(map[string]any)
|
gotMap, ok := got.Payload.(map[string]any)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("json.decode should return byte slice")
|
t.Fatalf("json.decode should return byte slice")
|
||||||
@@ -74,18 +75,18 @@ func TestGoodJsonDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := jsonDecoder.Process(t.Context(), test.payload)
|
got, err := jsonDecoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("json.decode processing failed: %s", err)
|
t.Fatalf("json.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMap, ok := got.(map[string]any)
|
gotMap, ok := got.Payload.(map[string]any)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("json.decode returned a %T payload: %s", got, got)
|
t.Fatalf("json.decode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotMap, test.expected) {
|
if !reflect.DeepEqual(gotMap, test.expected) {
|
||||||
t.Fatalf("json.decode got %x, expected %s", got, test.expected)
|
t.Fatalf("json.decode got %+v, expected %s", got, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -112,7 +113,7 @@ func TestBadJsonDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringEncoder.Process(t.Context(), test.payload)
|
got, err := stringEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("json.decode expected to fail but got payload: %+v", got)
|
t.Fatalf("json.decode expected to fail but got payload: %+v", got)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jwetzell/osc-go"
|
"github.com/jwetzell/osc-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -34,15 +35,15 @@ func TestJsonEncodeFromRegistry(t *testing.T) {
|
|||||||
|
|
||||||
expected := []byte("{\"property\":\"hello\"}")
|
expected := []byte("{\"property\":\"hello\"}")
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("json.encode processing failed: %s", err)
|
t.Fatalf("json.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("json.encode should return byte slice")
|
t.Fatalf("json.encode should return byte slice got %T: %+v", got.Payload, got.Payload)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotBytes, expected) {
|
if !slices.Equal(gotBytes, expected) {
|
||||||
@@ -68,18 +69,18 @@ func TestGoodJsonEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := jsonEncoder.Process(t.Context(), test.payload)
|
got, err := jsonEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("json.encode processing failed: %s", err)
|
t.Fatalf("json.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("json.encode returned a %T payload: %s", got, got)
|
t.Fatalf("json.encode returned a %T payload: %+v", got.Payload, got.Payload)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotBytes, test.expected) {
|
if !slices.Equal(gotBytes, test.expected) {
|
||||||
t.Fatalf("json.encode got %x, expected %s", got, test.expected)
|
t.Fatalf("json.encode got %+v, expected %s", got, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -101,7 +102,7 @@ func TestBadJsonEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringEncoder.Process(t.Context(), test.payload)
|
got, err := stringEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("json.encode expected to fail but got payload: %+v", got)
|
t.Fatalf("json.encode expected to fail but got payload: %+v", got)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
"gitlab.com/gomidi/midi/v2"
|
"gitlab.com/gomidi/midi/v2"
|
||||||
@@ -103,14 +104,14 @@ func TestGoodMIDIMessageCreate(t *testing.T) {
|
|||||||
t.Fatalf("midi.message.create failed to create processor: %s", err)
|
t.Fatalf("midi.message.create failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("midi.message.create processing failed: %s", err)
|
t.Fatalf("midi.message.create processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMessage, ok := got.(midi.Message)
|
gotMessage, ok := got.Payload.(midi.Message)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("midi.message.create returned a %T payload: %s", got, got)
|
t.Fatalf("midi.message.create returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotMessage, test.expected) {
|
if !reflect.DeepEqual(gotMessage, test.expected) {
|
||||||
@@ -279,7 +280,7 @@ func TestBadMIDIMessageCreate(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("midi.message.create expected to fail but succeeded, got: %v", got)
|
t.Fatalf("midi.message.create expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
"gitlab.com/gomidi/midi/v2"
|
"gitlab.com/gomidi/midi/v2"
|
||||||
@@ -44,14 +45,14 @@ func TestGoodMIDIMessageDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("midi.message.decode processing failed: %s", err)
|
t.Fatalf("midi.message.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMessage, ok := got.(midi.Message)
|
gotMessage, ok := got.Payload.(midi.Message)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("midi.message.decode returned a %T payload: %s", got, got)
|
t.Fatalf("midi.message.decode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotMessage, test.expected) {
|
if !reflect.DeepEqual(gotMessage, test.expected) {
|
||||||
@@ -78,7 +79,7 @@ func TestBadMIDIMessageDecode(t *testing.T) {
|
|||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("midi.message.decode expected to fail but succeeded, got: %v", got)
|
t.Fatalf("midi.message.decode expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"slices"
|
"slices"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
"gitlab.com/gomidi/midi/v2"
|
"gitlab.com/gomidi/midi/v2"
|
||||||
@@ -44,14 +45,14 @@ func TestGoodMIDIMessageEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := midiMessageEncoder.Process(t.Context(), test.payload)
|
got, err := midiMessageEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("midi.message.encode processing failed: %s", err)
|
t.Fatalf("midi.message.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("midi.message.encode returned a %T payload: %s", got, got)
|
t.Fatalf("midi.message.encode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotBytes, test.expected) {
|
if !slices.Equal(gotBytes, test.expected) {
|
||||||
@@ -77,10 +78,10 @@ func TestBadMIDIMessageEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := midiMessageEncoder.Process(t.Context(), test.payload)
|
got, err := midiMessageEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("midi.message.encode expected to fail but got payload: %s", got)
|
t.Fatalf("midi.message.encode expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("midi.message.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("midi.message.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
mqtt "github.com/eclipse/paho.mqtt.golang"
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -103,22 +104,22 @@ func TestGoodMQTTMessageCreate(t *testing.T) {
|
|||||||
t.Fatalf("mqtt.message.create failed to create processor: %s", err)
|
t.Fatalf("mqtt.message.create failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("mqtt.message.create processing failed: %s", err)
|
t.Fatalf("mqtt.message.create processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if test.expected == nil {
|
if test.expected == nil {
|
||||||
if got != nil {
|
if got.Payload != nil {
|
||||||
t.Fatalf("mqtt.message.create got %+v, expected nil", got)
|
t.Fatalf("mqtt.message.create got %+v, expected nil", got)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMessage, ok := got.(mqtt.Message)
|
gotMessage, ok := got.Payload.(mqtt.Message)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("mqtt.message.create returned a %T payload: %s", got, got)
|
t.Fatalf("mqtt.message.create returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotMessage, test.expected) {
|
if !reflect.DeepEqual(gotMessage, test.expected) {
|
||||||
@@ -227,7 +228,7 @@ func TestBadMQTTMessageCreate(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("mqtt.message.create expected to fail but succeeded, got: %v", got)
|
t.Fatalf("mqtt.message.create expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
mqtt "github.com/eclipse/paho.mqtt.golang"
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -44,18 +45,18 @@ func TestGoodMQTTMessageEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringEncoder.Process(t.Context(), test.payload)
|
got, err := stringEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("mqtt.message.encode processing failed: %s", err)
|
t.Fatalf("mqtt.message.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("mqtt.message.encode returned a %T payload: %s", got, got)
|
t.Fatalf("mqtt.message.encode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotBytes, test.expected) {
|
if !slices.Equal(gotBytes, test.expected) {
|
||||||
t.Fatalf("mqtt.message.encode got %s, expected %s", got, test.expected)
|
t.Fatalf("mqtt.message.encode got %+v, expected %s", got, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -77,10 +78,10 @@ func TestBadMQTTMessageEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringEncoder.Process(t.Context(), test.payload)
|
got, err := stringEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("mqtt.message.encode expected to fail but got payload: %s", got)
|
t.Fatalf("mqtt.message.encode expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("mqtt.message.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("mqtt.message.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jwetzell/osc-go"
|
"github.com/jwetzell/osc-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -149,22 +150,22 @@ func TestGoodOSCMessageCreate(t *testing.T) {
|
|||||||
t.Fatalf("osc.message.create failed to create processor: %s", err)
|
t.Fatalf("osc.message.create failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("osc.message.create processing failed: %s", err)
|
t.Fatalf("osc.message.create processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if test.expected == nil {
|
if test.expected == nil {
|
||||||
if got != nil {
|
if got.Payload != nil {
|
||||||
t.Fatalf("osc.message.create got %+v, expected nil", got)
|
t.Fatalf("osc.message.create got %+v, expected nil", got)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMessage, ok := got.(*osc.OSCMessage)
|
gotMessage, ok := got.Payload.(*osc.OSCMessage)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("osc.message.create returned a %T payload: %s", got, got)
|
t.Fatalf("osc.message.create returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotMessage, test.expected) {
|
if !reflect.DeepEqual(gotMessage, test.expected) {
|
||||||
@@ -286,7 +287,7 @@ func TestBadOSCMessageCreate(t *testing.T) {
|
|||||||
"address": "/test/{{.missing}}",
|
"address": "/test/{{.missing}}",
|
||||||
},
|
},
|
||||||
payload: "test",
|
payload: "test",
|
||||||
errorString: "template: address:1:8: executing \"address\" at <.missing>: can't evaluate field missing in type processor.TemplateData",
|
errorString: "template: address:1:8: executing \"address\" at <.missing>: can't evaluate field missing in type common.WrappedPayload",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "address doesn't start with slash",
|
name: "address doesn't start with slash",
|
||||||
@@ -304,7 +305,7 @@ func TestBadOSCMessageCreate(t *testing.T) {
|
|||||||
"types": "s",
|
"types": "s",
|
||||||
},
|
},
|
||||||
payload: "test",
|
payload: "test",
|
||||||
errorString: "template: arg:1:2: executing \"arg\" at <.missing>: can't evaluate field missing in type processor.TemplateData",
|
errorString: "template: arg:1:2: executing \"arg\" at <.missing>: can't evaluate field missing in type common.WrappedPayload",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -327,7 +328,7 @@ func TestBadOSCMessageCreate(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("osc.message.create expected to fail but succeeded, got: %v", got)
|
t.Fatalf("osc.message.create expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jwetzell/osc-go"
|
"github.com/jwetzell/osc-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -60,15 +61,15 @@ func TestGoodOSCMessageDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("osc.message.decode processing failed: %s", err)
|
t.Fatalf("osc.message.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotMessage, ok := got.(*osc.OSCMessage)
|
gotMessage, ok := got.Payload.(*osc.OSCMessage)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("osc.message.decode returned a %T payload: %s", got, got)
|
t.Fatalf("osc.message.decode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(gotMessage, test.expected) {
|
if !reflect.DeepEqual(gotMessage, test.expected) {
|
||||||
@@ -109,10 +110,10 @@ func TestBadOSCMessageDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("osc.message.decode expected to fail but got payload: %s", got)
|
t.Fatalf("osc.message.decode expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("osc.message.decode got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("osc.message.decode got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jwetzell/osc-go"
|
"github.com/jwetzell/osc-go"
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -59,14 +60,14 @@ func TestGoodOSCMessageEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("osc.message.encode processing failed: %s", err)
|
t.Fatalf("osc.message.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("osc.message.encode returned a %T payload: %s", got, got)
|
t.Fatalf("osc.message.encode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotBytes, test.expected) {
|
if !slices.Equal(gotBytes, test.expected) {
|
||||||
@@ -92,10 +93,10 @@ func TestBadOSCMessageEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("osc.message.encode expected to fail but got payload: %s", got)
|
t.Fatalf("osc.message.encode expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("osc.message.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("osc.message.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -44,8 +45,8 @@ type TestProcessor struct {
|
|||||||
func (p *TestProcessor) Type() string {
|
func (p *TestProcessor) Type() string {
|
||||||
return "test"
|
return "test"
|
||||||
}
|
}
|
||||||
func (p *TestProcessor) Process(ctx context.Context, input any) (any, error) {
|
func (p *TestProcessor) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
return input, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestProcessorBadRegistrationNoType(t *testing.T) {
|
func TestProcessorBadRegistrationNoType(t *testing.T) {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -75,14 +76,14 @@ func TestGoodScriptExpr(t *testing.T) {
|
|||||||
t.Fatalf("script.expr failed to create processor: %s", err)
|
t.Fatalf("script.expr failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("script.expr processing failed: %s", err)
|
t.Fatalf("script.expr processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO(jwetzell): work out better way to compare the any/any
|
//TODO(jwetzell): work out better way to compare the any/any
|
||||||
if got != test.expected {
|
if got.Payload != test.expected {
|
||||||
t.Fatalf("script.expr got %+v (%T), expected %+v (%T)", got, got, test.expected, test.expected)
|
t.Fatalf("script.expr got %+v (%T), expected %+v (%T)", got, got, test.expected, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -133,7 +134,7 @@ func TestBadScriptExpr(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("script.expr expected to fail but succeeded, got: %v", got)
|
t.Fatalf("script.expr expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"maps"
|
"maps"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -33,12 +34,12 @@ func TestScriptJSFromRegistry(t *testing.T) {
|
|||||||
payload := 1
|
payload := 1
|
||||||
expected := 2
|
expected := 2
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("script.js processing failed: %s", err)
|
t.Fatalf("script.js processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != expected {
|
if got.Payload != expected {
|
||||||
t.Fatalf("script.js got %+v, expected %+v", got, expected)
|
t.Fatalf("script.js got %+v, expected %+v", got, expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -142,7 +143,7 @@ func TestGoodScriptJS(t *testing.T) {
|
|||||||
t.Fatalf("script.js failed to create processor: %s", err)
|
t.Fatalf("script.js failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("script.js processing failed: %s", err)
|
t.Fatalf("script.js processing failed: %s", err)
|
||||||
@@ -150,7 +151,7 @@ func TestGoodScriptJS(t *testing.T) {
|
|||||||
|
|
||||||
//TODO(jwetzell): work out better way to compare the any/any
|
//TODO(jwetzell): work out better way to compare the any/any
|
||||||
|
|
||||||
gotMap, ok := got.(map[string]interface{})
|
gotMap, ok := got.Payload.(map[string]interface{})
|
||||||
if ok {
|
if ok {
|
||||||
// got a map
|
// got a map
|
||||||
expectedMap, ok := test.expected.(map[string]interface{})
|
expectedMap, ok := test.expected.(map[string]interface{})
|
||||||
@@ -162,8 +163,8 @@ func TestGoodScriptJS(t *testing.T) {
|
|||||||
t.Fatalf("script.js got %+v, expected %+v", got, test.expected)
|
t.Fatalf("script.js got %+v, expected %+v", got, test.expected)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if got != test.expected {
|
if got.Payload != test.expected {
|
||||||
t.Fatalf("script.js got %+v, expected %+v", got, test.expected)
|
t.Fatalf("script.js got %+v, expected %+v", got.Payload, test.expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -201,7 +202,7 @@ func TestBadScriptJS(t *testing.T) {
|
|||||||
Params: test.params,
|
Params: test.params,
|
||||||
})
|
})
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("script.js expected to fail but succeeded, got: %v", got)
|
t.Fatalf("script.js expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"slices"
|
"slices"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -74,15 +75,15 @@ func TestGoodScriptWASM(t *testing.T) {
|
|||||||
t.Fatalf("script.wasm failed to create processor: %s", err)
|
t.Fatalf("script.wasm failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("script.wasm processing failed: %s", err)
|
t.Fatalf("script.wasm processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("script.wasm returned a %T payload: %s", got, got)
|
t.Fatalf("script.wasm returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotBytes, test.expected) {
|
if !slices.Equal(gotBytes, test.expected) {
|
||||||
@@ -180,7 +181,7 @@ func TestBadScriptWASM(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("script.wasm expected to fail but succeeded, got: %v", got)
|
t.Fatalf("script.wasm expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -30,12 +31,12 @@ func TestStringCreateFromRegistry(t *testing.T) {
|
|||||||
payload := "hello"
|
payload := "hello"
|
||||||
expected := "hello"
|
expected := "hello"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.create processing failed: %s", err)
|
t.Fatalf("string.create processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != expected {
|
if got.Payload != expected {
|
||||||
t.Fatalf("string.create got %+v, expected %+v", got, expected)
|
t.Fatalf("string.create got %+v, expected %+v", got, expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -96,18 +97,18 @@ func TestGoodStringCreate(t *testing.T) {
|
|||||||
t.Fatalf("string.create failed to create processor: %s", err)
|
t.Fatalf("string.create failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.create processing failed: %s", err)
|
t.Fatalf("string.create processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotStrings, ok := got.(string)
|
gotStrings, ok := got.Payload.(string)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("string.create returned a %T payload: %s", got, got)
|
t.Fatalf("string.create returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
if gotStrings != test.expected {
|
if gotStrings != test.expected {
|
||||||
t.Fatalf("string.create got %s, expected %s", got, test.expected)
|
t.Fatalf("string.create got %+v, expected %s", got, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -148,7 +149,7 @@ func TestBadStringCreate(t *testing.T) {
|
|||||||
params: map[string]any{
|
params: map[string]any{
|
||||||
"template": "{{.Invalid}}",
|
"template": "{{.Invalid}}",
|
||||||
},
|
},
|
||||||
errorString: "template: template:1:2: executing \"template\" at <.Invalid>: can't evaluate field Invalid in type processor.TemplateData",
|
errorString: "template: template:1:2: executing \"template\" at <.Invalid>: can't evaluate field Invalid in type common.WrappedPayload",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -172,10 +173,10 @@ func TestBadStringCreate(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("string.create expected to fail but got payload: %s", got)
|
t.Fatalf("string.create expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -27,12 +28,12 @@ func TestStringDecodeFromRegistry(t *testing.T) {
|
|||||||
payload := []byte{'h', 'e', 'l', 'l', 'o'}
|
payload := []byte{'h', 'e', 'l', 'l', 'o'}
|
||||||
expected := "hello"
|
expected := "hello"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.decode processing failed: %s", err)
|
t.Fatalf("string.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != expected {
|
if got.Payload != expected {
|
||||||
t.Fatalf("string.decode got %+v, expected %+v", got, expected)
|
t.Fatalf("string.decode got %+v, expected %+v", got, expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -53,18 +54,18 @@ func TestGoodStringDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringDecoder.Process(t.Context(), test.payload)
|
got, err := stringDecoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.decode processing failed: %s", err)
|
t.Fatalf("string.decode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotString, ok := got.(string)
|
gotString, ok := got.Payload.(string)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("string.decode returned a %T payload: %s", got, got)
|
t.Fatalf("string.decode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if gotString != test.expected {
|
if gotString != test.expected {
|
||||||
t.Fatalf("string.decode got %s, expected %s", got, test.expected)
|
t.Fatalf("string.decode got %+v, expected %s", got, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -86,10 +87,10 @@ func TestBadStringDecode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringDecoder.Process(t.Context(), test.payload)
|
got, err := stringDecoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("string.decode expected to fail but got payload: %s", got)
|
t.Fatalf("string.decode expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("string.decode got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("string.decode got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"slices"
|
"slices"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -28,12 +29,12 @@ func TestStringEncodeFromRegistry(t *testing.T) {
|
|||||||
payload := "hello"
|
payload := "hello"
|
||||||
expected := []byte{'h', 'e', 'l', 'l', 'o'}
|
expected := []byte{'h', 'e', 'l', 'l', 'o'}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.encode processing failed: %s", err)
|
t.Fatalf("string.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("string.encode should return byte slice")
|
t.Fatalf("string.encode should return byte slice")
|
||||||
@@ -60,14 +61,14 @@ func TestGoodStringEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringEncoder.Process(t.Context(), test.payload)
|
got, err := stringEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.encode processing failed: %s", err)
|
t.Fatalf("string.encode processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotBytes, ok := got.([]byte)
|
gotBytes, ok := got.Payload.([]byte)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("string.encode returned a %T payload: %s", got, got)
|
t.Fatalf("string.encode returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
if !slices.Equal(gotBytes, test.expected) {
|
if !slices.Equal(gotBytes, test.expected) {
|
||||||
t.Fatalf("string.encode got %+v, expected %+v", gotBytes, test.expected)
|
t.Fatalf("string.encode got %+v, expected %+v", gotBytes, test.expected)
|
||||||
@@ -92,10 +93,10 @@ func TestBadStringEncode(t *testing.T) {
|
|||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
t.Run(test.name, func(t *testing.T) {
|
t.Run(test.name, func(t *testing.T) {
|
||||||
got, err := stringEncoder.Process(t.Context(), test.payload)
|
got, err := stringEncoder.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("string.encode expected to fail but got payload: %s", got)
|
t.Fatalf("string.encode expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("string.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("string.encode got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"slices"
|
"slices"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -31,12 +32,12 @@ func TestStringSplitFromRegistry(t *testing.T) {
|
|||||||
payload := "part1,part2,part3"
|
payload := "part1,part2,part3"
|
||||||
expected := []string{"part1", "part2", "part3"}
|
expected := []string{"part1", "part2", "part3"}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.split processing failed: %s", err)
|
t.Fatalf("string.split processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotStrings, ok := got.([]string)
|
gotStrings, ok := got.Payload.([]string)
|
||||||
|
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("string.split should return a slice of strings")
|
t.Fatalf("string.split should return a slice of strings")
|
||||||
@@ -78,14 +79,14 @@ func TestGoodStringSplit(t *testing.T) {
|
|||||||
t.Fatalf("string.split failed to create processor: %s", err)
|
t.Fatalf("string.split failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("string.split processing failed: %s", err)
|
t.Fatalf("string.split processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotStrings, ok := got.([]string)
|
gotStrings, ok := got.Payload.([]string)
|
||||||
if !ok {
|
if !ok {
|
||||||
t.Fatalf("string.split returned a %T payload: %s", got, got)
|
t.Fatalf("string.split returned a %T payload: %+v", got, got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !slices.Equal(gotStrings, test.expected) {
|
if !slices.Equal(gotStrings, test.expected) {
|
||||||
@@ -141,10 +142,10 @@ func TestBadStringSplit(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("string.split expected error but got none, payload: %s", got)
|
t.Fatalf("string.split expected error but got none, payload: %+v", got)
|
||||||
}
|
}
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
t.Fatalf("string.split got error '%s', expected '%s'", err.Error(), test.errorString)
|
t.Fatalf("string.split got error '%s', expected '%s'", err.Error(), test.errorString)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -30,12 +31,12 @@ func TestStructFieldGetFromRegistry(t *testing.T) {
|
|||||||
payload := TestStruct{Data: "hello"}
|
payload := TestStruct{Data: "hello"}
|
||||||
expected := "hello"
|
expected := "hello"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("struct.field.get processing failed: %s", err)
|
t.Fatalf("struct.field.get processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != expected {
|
if got.Payload != expected {
|
||||||
t.Fatalf("struct.field.get got %+v, expected %+v", got, expected)
|
t.Fatalf("struct.field.get got %+v, expected %+v", got, expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -96,14 +97,14 @@ func TestGoodStructFieldGet(t *testing.T) {
|
|||||||
t.Fatalf("struct.field.get failed to create processor: %s", err)
|
t.Fatalf("struct.field.get failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("struct.field.get processing failed: %s", err)
|
t.Fatalf("struct.field.get processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != test.expected {
|
if got.Payload != test.expected {
|
||||||
t.Fatalf("struct.field.get got %s, expected %s", got, test.expected)
|
t.Fatalf("struct.field.get got %+v, expected %s", got, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -168,10 +169,10 @@ func TestBadStructFieldGet(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("struct.field.get expected to fail but got payload: %s", got)
|
t.Fatalf("struct.field.get expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -31,12 +32,12 @@ func TestStructMethodGetFromRegistry(t *testing.T) {
|
|||||||
payload := TestStruct{Data: "hello"}
|
payload := TestStruct{Data: "hello"}
|
||||||
expected := "hello"
|
expected := "hello"
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("struct.method.get processing failed: %s", err)
|
t.Fatalf("struct.method.get processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != expected {
|
if got.Payload != expected {
|
||||||
t.Fatalf("struct.method.get got %+v, expected %+v", got, expected)
|
t.Fatalf("struct.method.get got %+v, expected %+v", got, expected)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -115,14 +116,14 @@ func TestGoodStructMethodGet(t *testing.T) {
|
|||||||
t.Fatalf("struct.method.get failed to create processor: %s", err)
|
t.Fatalf("struct.method.get failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("struct.method.get processing failed: %s", err)
|
t.Fatalf("struct.method.get processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !reflect.DeepEqual(got, test.expected) {
|
if !reflect.DeepEqual(got.Payload, test.expected) {
|
||||||
t.Fatalf("struct.method.get got %+v, expected %+v", got, test.expected)
|
t.Fatalf("struct.method.get got payload: %+v, expected %+v", got.Payload, test.expected)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -187,10 +188,10 @@ func TestBadStructMethodGet(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("struct.method.get expected to fail but got payload: %s", got)
|
t.Fatalf("struct.method.get expected to fail but got payload: %+v", got)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err.Error() != test.errorString {
|
if err.Error() != test.errorString {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package processor_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
)
|
)
|
||||||
@@ -58,13 +59,13 @@ func TestGoodTimeSleep(t *testing.T) {
|
|||||||
t.Fatalf("time.sleep failed to create processor: %s", err)
|
t.Fatalf("time.sleep failed to create processor: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("time.sleep processing failed: %s", err)
|
t.Fatalf("time.sleep processing failed: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if got != test.payload {
|
if got.Payload != test.payload {
|
||||||
t.Fatalf("time.sleep got %+v, expected %+v", got, test.payload)
|
t.Fatalf("time.sleep got %+v, expected %+v", got, test.payload)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -113,7 +114,7 @@ func TestBadTimeSleep(t *testing.T) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
got, err := processorInstance.Process(t.Context(), test.payload)
|
got, err := processorInstance.Process(t.Context(), common.GetWrappedPayload(t.Context(), test.payload))
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Fatalf("time.sleep expected to fail but succeeded, got: %v", got)
|
t.Fatalf("time.sleep expected to fail but succeeded, got: %v", got)
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -13,9 +14,9 @@ type TimeSleep struct {
|
|||||||
Duration time.Duration
|
Duration time.Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ts *TimeSleep) Process(ctx context.Context, payload any) (any, error) {
|
func (ts *TimeSleep) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
||||||
time.Sleep(ts.Duration)
|
time.Sleep(ts.Duration)
|
||||||
return payload, nil
|
return wrappedPayload, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ts *TimeSleep) Type() string {
|
func (ts *TimeSleep) Type() string {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/jwetzell/showbridge-go/internal/common"
|
||||||
"github.com/jwetzell/showbridge-go/internal/config"
|
"github.com/jwetzell/showbridge-go/internal/config"
|
||||||
"github.com/jwetzell/showbridge-go/internal/processor"
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
||||||
"go.opentelemetry.io/otel"
|
"go.opentelemetry.io/otel"
|
||||||
@@ -48,12 +49,13 @@ func (r *Route) Input() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *Route) ProcessPayload(ctx context.Context, payload any) (any, error) {
|
func (r *Route) ProcessPayload(ctx context.Context, payload any) (any, error) {
|
||||||
|
wrappedPayload := common.GetWrappedPayload(ctx, payload)
|
||||||
tracer := otel.Tracer("route")
|
tracer := otel.Tracer("route")
|
||||||
processCtx, processSpan := tracer.Start(ctx, "ProcessPayload", trace.WithAttributes(attribute.String("payload.type", fmt.Sprintf("%T", payload))))
|
processCtx, processSpan := tracer.Start(ctx, "ProcessPayload", trace.WithAttributes(attribute.String("payload.type", fmt.Sprintf("%T", payload))))
|
||||||
defer processSpan.End()
|
defer processSpan.End()
|
||||||
for processorIndex, processor := range r.processors {
|
for processorIndex, processor := range r.processors {
|
||||||
processorCtx, processorSpan := otel.Tracer("processor").Start(processCtx, "process", trace.WithAttributes(attribute.Int("processor.index", processorIndex), attribute.String("processor.type", processor.Type())))
|
processorCtx, processorSpan := otel.Tracer("processor").Start(processCtx, "process", trace.WithAttributes(attribute.Int("processor.index", processorIndex), attribute.String("processor.type", processor.Type())))
|
||||||
processedPayload, err := processor.Process(processorCtx, payload)
|
processedPayload, err := processor.Process(processorCtx, wrappedPayload)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
processorSpan.SetStatus(codes.Error, "route processor error")
|
processorSpan.SetStatus(codes.Error, "route processor error")
|
||||||
processorSpan.RecordError(err)
|
processorSpan.RecordError(err)
|
||||||
@@ -63,16 +65,16 @@ func (r *Route) ProcessPayload(ctx context.Context, payload any) (any, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
processorSpan.SetStatus(codes.Ok, "processor successful")
|
processorSpan.SetStatus(codes.Ok, "processor successful")
|
||||||
//NOTE(jwetzell) nil payload will result in the route being "terminated"
|
//NOTE(jwetzell) payload has been marked as an end
|
||||||
if processedPayload == nil {
|
if processedPayload.End {
|
||||||
processSpan.SetStatus(codes.Ok, "route processing terminated early due to nil payload")
|
processSpan.SetStatus(codes.Ok, "route processing terminated early due to processor signal")
|
||||||
processorSpan.End()
|
processorSpan.End()
|
||||||
return nil, nil
|
return processedPayload.Payload, nil
|
||||||
}
|
}
|
||||||
payload = processedPayload
|
wrappedPayload = processedPayload
|
||||||
processorSpan.End()
|
processorSpan.End()
|
||||||
}
|
}
|
||||||
processSpan.SetStatus(codes.Ok, "route processing successful")
|
processSpan.SetStatus(codes.Ok, "route processing successful")
|
||||||
|
|
||||||
return payload, nil
|
return wrappedPayload.Payload, nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ func TestRouteHandleNilPayload(t *testing.T) {
|
|||||||
t.Fatalf("route ProcessPayload returned error: %v", err)
|
t.Fatalf("route ProcessPayload returned error: %v", err)
|
||||||
}
|
}
|
||||||
if payload != nil {
|
if payload != nil {
|
||||||
t.Fatalf("route returned the wrong payload")
|
t.Fatalf("route returned the wrong payload: expected nil got %+v (%T)", payload, payload)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -143,14 +143,10 @@ func TestRouteHandleNilPayloadFromProcessor(t *testing.T) {
|
|||||||
t.Fatalf("route failed to create: %v", err)
|
t.Fatalf("route failed to create: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
payload, err := testRoute.ProcessPayload(context.WithValue(t.Context(), common.RouterContextKey, &MockRouter{}), "test")
|
_, err = testRoute.ProcessPayload(context.WithValue(t.Context(), common.RouterContextKey, &MockRouter{}), "test")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("route HandleOutput returned error for nil payload: %v", err)
|
t.Fatalf("route HandleOutput returned error for nil payload: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if payload != nil {
|
|
||||||
t.Fatalf("route returned the wrong payload")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestRouteUnknownProcessor(t *testing.T) {
|
func TestRouteUnknownProcessor(t *testing.T) {
|
||||||
|
|||||||
Reference in New Issue
Block a user