Compare commits

...

7 Commits

Author SHA1 Message Date
Joel Wetzell b7e0d879bc Merge pull request #179 from jwetzell/fix/in-out-framer
make sure to use a distinct framer for both directions of communication
2026-06-01 21:35:58 -05:00
Joel Wetzell 9b76ee8195 make sure to use a distinct framer for both directions of communication 2026-06-01 21:32:14 -05:00
Joel Wetzell d48a89d1ef reword description 2026-06-01 18:30:19 -05:00
Joel Wetzell b01bebea54 Merge pull request #178 from jwetzell/processor-params-schema-descriptions
add description information to params for processors
2026-06-01 17:56:39 -05:00
Joel Wetzell 73905e1274 add description information to params for processors 2026-06-01 17:55:30 -05:00
Joel Wetzell 56566cf666 Merge pull request #177 from jwetzell/module-params-descriptions
add description information to params for modules
2026-06-01 17:39:30 -05:00
Joel Wetzell 5d1e6622cb add description information to params for modules 2026-06-01 17:39:00 -05:00
51 changed files with 420 additions and 292 deletions
+4 -2
View File
@@ -22,8 +22,10 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"dsn": { "dsn": {
Type: "string", Title: "Data Source Name",
MinLength: new(1), Description: "the data source name (DSN) for the SQLite database",
Type: "string",
MinLength: new(1),
}, },
}, },
Required: []string{"dsn"}, Required: []string{"dsn"},
+5 -4
View File
@@ -24,10 +24,11 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port for the HTTP server to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Maximum: jsonschema.Ptr[float64](65535),
}, },
}, },
Required: []string{"port"}, Required: []string{"port"},
+3 -2
View File
@@ -22,8 +22,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"port": { "port": {
Title: "Port", Title: "Port",
Type: "string", Description: "the name of the MIDI port to listen to",
Type: "string",
}, },
}, },
Required: []string{"port"}, Required: []string{"port"},
+3 -2
View File
@@ -24,8 +24,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"port": { "port": {
Title: "Port", Title: "Port",
Type: "string", Description: "the name of the MIDI port to send messages to",
Type: "string",
}, },
}, },
Required: []string{"port"}, Required: []string{"port"},
+19 -14
View File
@@ -22,28 +22,33 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"broker": { "broker": {
Title: "Broker URL", Title: "Broker URL",
Type: "string", Description: "the URL of the MQTT broker to connect to",
Type: "string",
}, },
"topic": { "topic": {
Title: "Topic", Title: "Topic",
Type: "string", Description: "an MQTT topic to subscribe to",
Type: "string",
}, },
"clientId": { "clientId": {
Title: "Client ID", Title: "Client ID",
Type: "string", Description: "the client ID to use when connecting to the MQTT broker",
Type: "string",
}, },
"qos": { "qos": {
Title: "QoS", Title: "QoS",
Type: "integer", Description: "the QoS level to use when publishing messages",
Minimum: jsonschema.Ptr[float64](0), Type: "integer",
Maximum: jsonschema.Ptr[float64](2), Minimum: jsonschema.Ptr[float64](0),
Default: json.RawMessage(`0`), Maximum: jsonschema.Ptr[float64](2),
Default: json.RawMessage(`0`),
}, },
"retained": { "retained": {
Title: "Retained", Title: "Retained",
Type: "boolean", Description: "whether to set the retained flag when publishing messages",
Default: json.RawMessage(`false`), Type: "boolean",
Default: json.RawMessage(`false`),
}, },
}, },
Required: []string{"broker", "topic", "clientId"}, Required: []string{"broker", "topic", "clientId"},
+6 -4
View File
@@ -20,12 +20,14 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"url": { "url": {
Title: "NATS Server URL", Title: "NATS Server URL",
Type: "string", Description: "the URL of the NATS server to connect to",
Type: "string",
}, },
"subject": { "subject": {
Title: "Subject", Title: "Subject",
Type: "string", Description: "the subject to subscribe to",
Type: "string",
}, },
}, },
Required: []string{"url", "subject"}, Required: []string{"url", "subject"},
+10 -8
View File
@@ -24,16 +24,18 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"ip": { "ip": {
Title: "IP", Title: "IP",
Type: "string", Description: "the IP address to bind the NATS server to",
Default: json.RawMessage(`"0.0.0.0"`), Type: "string",
Default: json.RawMessage(`"0.0.0.0"`),
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port for the NATS server to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Default: json.RawMessage(`4222`), Maximum: jsonschema.Ptr[float64](65535),
Default: json.RawMessage(`4222`),
}, },
}, },
Required: []string{}, Required: []string{},
+8 -4
View File
@@ -21,12 +21,16 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"host": { "host": {
Type: "string", Title: "Host",
Description: "the hostname or IP address of the Redis server to connect to",
Type: "string",
}, },
"port": { "port": {
Type: "integer", Title: "Port",
Minimum: jsonschema.Ptr[float64](1), Description: "the port to use when connecting to the Redis server",
Maximum: jsonschema.Ptr[float64](65535), Type: "integer",
Minimum: jsonschema.Ptr[float64](1),
Maximum: jsonschema.Ptr[float64](65535),
}, },
}, },
Required: []string{"host", "port"}, Required: []string{"host", "port"},
+29 -15
View File
@@ -25,17 +25,20 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"port": { "port": {
Title: "Port", Title: "Port",
Type: "string", Description: "the name of the serial port to connect to",
Type: "string",
}, },
"baudRate": { "baudRate": {
Title: "Baud Rate", Title: "Baud Rate",
Type: "integer", Description: "the baud rate to use when connecting to the serial port",
Type: "integer",
}, },
"framing": { "framing": {
Title: "Framing Method", Title: "Framing Method",
Type: "string", Description: "the method to use for framing messages on the serial port",
Enum: []any{"LF", "CR", "CRLF", "SLIP", "RAW"}, Type: "string",
Enum: []any{"LF", "CR", "CRLF", "SLIP", "RAW"},
}, },
}, },
Required: []string{"port", "baudRate", "framing"}, Required: []string{"port", "baudRate", "framing"},
@@ -53,12 +56,14 @@ func init() {
return nil, fmt.Errorf("serial.client framing error: %w", err) return nil, fmt.Errorf("serial.client framing error: %w", err)
} }
framer := framer.GetFramer(framingMethodString) inFramer := framer.GetFramer(framingMethodString)
if framer == nil { if inFramer == nil {
return nil, fmt.Errorf("serial.client unknown framing method: %s", framingMethodString) return nil, fmt.Errorf("serial.client unknown framing method: %s", framingMethodString)
} }
outFramer := framer.GetFramer(framingMethodString)
baudRateInt, err := params.GetInt("baudRate") baudRateInt, err := params.GetInt("baudRate")
if err != nil { if err != nil {
return nil, fmt.Errorf("serial.client baudRate error: %w", err) return nil, fmt.Errorf("serial.client baudRate error: %w", err)
@@ -68,7 +73,7 @@ func init() {
BaudRate: baudRateInt, BaudRate: baudRateInt,
} }
return &SerialClient{config: config, Port: portString, Framer: framer, Mode: &mode, logger: CreateLogger(config)}, nil return &SerialClient{config: config, Port: portString, inFramer: inFramer, outFramer: outFramer, Mode: &mode, logger: CreateLogger(config)}, nil
}, },
}) })
} }
@@ -78,7 +83,8 @@ type SerialClient struct {
ctx context.Context ctx context.Context
inputHandler common.InputHandler inputHandler common.InputHandler
Port string Port string
Framer framer.Framer inFramer framer.Framer
outFramer framer.Framer
Mode *serial.Mode Mode *serial.Mode
port serial.Port port serial.Port
logger *slog.Logger logger *slog.Logger
@@ -139,13 +145,13 @@ func (sc *SerialClient) Start(ctx context.Context, inputHandler common.InputHand
byteCount, err := sc.port.Read(buffer) byteCount, err := sc.port.Read(buffer)
if err != nil { if err != nil {
sc.Framer.Clear() sc.inFramer.Clear()
break READ break READ
} }
if sc.Framer != nil { if sc.inFramer != nil {
if byteCount > 0 { if byteCount > 0 {
messages := sc.Framer.Decode(buffer[0:byteCount]) messages := sc.inFramer.Decode(buffer[0:byteCount])
for _, message := range messages { for _, message := range messages {
if sc.inputHandler != nil { if sc.inputHandler != nil {
sc.inputHandler(sc.ctx, sc.Id(), message) sc.inputHandler(sc.ctx, sc.Id(), message)
@@ -172,7 +178,7 @@ func (sc *SerialClient) Output(ctx context.Context, payload any) error {
return errors.New("serial.client can only output bytes") return errors.New("serial.client can only output bytes")
} }
_, err := sc.port.Write(sc.Framer.Encode(payloadBytes)) _, err := sc.port.Write(sc.outFramer.Encode(payloadBytes))
return err return err
} }
@@ -185,4 +191,12 @@ func (sc *SerialClient) Stop() {
if sc.port != nil { if sc.port != nil {
sc.port.Close() sc.port.Close()
} }
if sc.inFramer != nil {
sc.inFramer.Clear()
}
if sc.outFramer != nil {
sc.outFramer.Clear()
}
} }
+19 -15
View File
@@ -29,27 +29,31 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"ip": { "ip": {
Title: "IP", Title: "IP",
Type: "string", Description: "the IP address to bind the SIP server to",
Default: json.RawMessage(`"0.0.0.0"`), Type: "string",
Default: json.RawMessage(`"0.0.0.0"`),
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port for the SIP server to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Default: json.RawMessage(`5060`), Maximum: jsonschema.Ptr[float64](65535),
Default: json.RawMessage(`5060`),
}, },
"transport": { "transport": {
Title: "Transport", Title: "Transport",
Type: "string", Description: "the transport protocol to use for the SIP server",
Enum: []any{"udp", "tcp", "ws", "udp4", "tcp4"}, Type: "string",
Default: json.RawMessage(`"udp"`), Enum: []any{"udp", "tcp", "ws", "udp4", "tcp4"},
Default: json.RawMessage(`"udp"`),
}, },
"userAgent": { "userAgent": {
Title: "User Agent", Title: "User Agent",
Type: "string", Description: "the user agent string to use",
Default: json.RawMessage(`"showbridge"`), Type: "string",
Default: json.RawMessage(`"showbridge"`),
}, },
}, },
Required: []string{}, Required: []string{},
+24 -19
View File
@@ -30,33 +30,38 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"ip": { "ip": {
Title: "IP", Title: "IP",
Type: "string", Description: "the IP address to bind the SIP server to",
Default: json.RawMessage(`"0.0.0.0"`), Type: "string",
Default: json.RawMessage(`"0.0.0.0"`),
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port for the SIP server to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Default: json.RawMessage(`5060`), Maximum: jsonschema.Ptr[float64](65535),
Default: json.RawMessage(`5060`),
}, },
"transport": { "transport": {
Title: "Transport", Title: "Transport",
Type: "string", Description: "the transport protocol to use for the SIP server",
Enum: []any{"udp", "tcp", "ws", "udp4", "tcp4"}, Type: "string",
Default: json.RawMessage(`"udp"`), Enum: []any{"udp", "tcp", "ws", "udp4", "tcp4"},
Default: json.RawMessage(`"udp"`),
}, },
"userAgent": { "userAgent": {
Title: "User Agent", Title: "User Agent",
Type: "string", Description: "the user agent string to use",
Default: json.RawMessage(`"showbridge"`), Type: "string",
Default: json.RawMessage(`"showbridge"`),
}, },
"separator": { "separator": {
Title: "DTMF Separator", Title: "DTMF Separator",
Type: "string", Description: "the DTMF character to use as a separator between DTMF digit groups",
MinLength: new(1), Type: "string",
MaxLength: new(1), MinLength: new(1),
MaxLength: new(1),
}, },
}, },
Required: []string{"separator"}, Required: []string{"separator"},
+30 -16
View File
@@ -23,19 +23,22 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"host": { "host": {
Title: "Host", Title: "Host",
Type: "string", Description: "the hostname or IP address of the TCP server to connect to",
Type: "string",
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port of the TCP server to connect to",
Minimum: jsonschema.Ptr[float64](1), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1),
Maximum: jsonschema.Ptr[float64](65535),
}, },
"framing": { "framing": {
Title: "Framing Method", Title: "Framing Method",
Type: "string", Description: "the method used to frame messages over the TCP connection",
Enum: []any{"LF", "CR", "CRLF", "SLIP", "RAW"}, Type: "string",
Enum: []any{"LF", "CR", "CRLF", "SLIP", "RAW"},
}, },
}, },
Required: []string{"host", "port", "framing"}, Required: []string{"host", "port", "framing"},
@@ -63,19 +66,22 @@ func init() {
return nil, fmt.Errorf("net.tcp.client framing error: %w", err) return nil, fmt.Errorf("net.tcp.client framing error: %w", err)
} }
framer := framer.GetFramer(framingMethodString) inFramer := framer.GetFramer(framingMethodString)
if framer == nil { if inFramer == nil {
return nil, fmt.Errorf("net.tcp.client unknown framing method: %s", framingMethodString) return nil, fmt.Errorf("net.tcp.client unknown framing method: %s", framingMethodString)
} }
return &TCPClient{framer: framer, Addr: addr, config: config, logger: CreateLogger(config)}, nil
outFramer := framer.GetFramer(framingMethodString)
return &TCPClient{inFramer: inFramer, outFramer: outFramer, Addr: addr, config: config, logger: CreateLogger(config)}, nil
}, },
}) })
} }
type TCPClient struct { type TCPClient struct {
config config.ModuleConfig config config.ModuleConfig
framer framer.Framer inFramer framer.Framer
outFramer framer.Framer
conn *net.TCPConn conn *net.TCPConn
ctx context.Context ctx context.Context
inputHandler common.InputHandler inputHandler common.InputHandler
@@ -132,9 +138,9 @@ CONNECT_RETRY:
break READ break READ
} }
if tc.framer != nil { if tc.inFramer != nil {
if byteCount > 0 { if byteCount > 0 {
messages := tc.framer.Decode(buffer[0:byteCount]) messages := tc.inFramer.Decode(buffer[0:byteCount])
for _, message := range messages { for _, message := range messages {
if tc.inputHandler != nil { if tc.inputHandler != nil {
tc.inputHandler(tc.ctx, tc.Id(), message) tc.inputHandler(tc.ctx, tc.Id(), message)
@@ -169,7 +175,7 @@ func (tc *TCPClient) Output(ctx context.Context, payload any) error {
if !ok { if !ok {
return errors.New("net.tcp.client is only able to output bytes") return errors.New("net.tcp.client is only able to output bytes")
} }
_, err := tc.conn.Write(tc.framer.Encode(payloadBytes)) _, err := tc.conn.Write(tc.inFramer.Encode(payloadBytes))
return err return err
} }
@@ -182,4 +188,12 @@ func (tc *TCPClient) Stop() {
if tc.conn != nil { if tc.conn != nil {
tc.conn.Close() tc.conn.Close()
} }
if tc.inFramer != nil {
tc.inFramer.Clear()
}
if tc.outFramer != nil {
tc.outFramer.Clear()
}
} }
+20 -17
View File
@@ -26,20 +26,23 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"ip": { "ip": {
Title: "IP", Title: "IP",
Type: "string", Description: "the IP address to bind the TCP server to",
Default: json.RawMessage(`"0.0.0.0"`), Type: "string",
Default: json.RawMessage(`"0.0.0.0"`),
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port for the TCP server to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Maximum: jsonschema.Ptr[float64](65535),
}, },
"framing": { "framing": {
Title: "Framing Method", Title: "Framing Method",
Type: "string", Description: "the method used to frame messages over the TCP connection",
Enum: []any{"LF", "CR", "CRLF", "SLIP", "RAW"}, Type: "string",
Enum: []any{"LF", "CR", "CRLF", "SLIP", "RAW"},
}, },
}, },
Required: []string{"port", "framing"}, Required: []string{"port", "framing"},
@@ -78,7 +81,7 @@ func init() {
if err != nil { if err != nil {
return nil, err return nil, err
} }
return &TCPServer{InFramer: inFramer, OutFramer: outFramer, framerType: framingMethodString, Addr: addr, config: moduleConfig, logger: CreateLogger(moduleConfig)}, nil return &TCPServer{inFramer: inFramer, outFramer: outFramer, framerType: framingMethodString, Addr: addr, config: moduleConfig, logger: CreateLogger(moduleConfig)}, nil
}, },
}) })
} }
@@ -91,8 +94,8 @@ type tcpConnection struct {
type TCPServer struct { type TCPServer struct {
config config.ModuleConfig config config.ModuleConfig
Addr *net.TCPAddr Addr *net.TCPAddr
InFramer framer.Framer inFramer framer.Framer
OutFramer framer.Framer outFramer framer.Framer
framerType string framerType string
ctx context.Context ctx context.Context
inputHandler common.InputHandler inputHandler common.InputHandler
@@ -146,9 +149,9 @@ func (ts *TCPServer) handleClient(client *net.TCPConn) {
} }
break break
} }
if ts.InFramer != nil { if ts.inFramer != nil {
if byteCount > 0 { if byteCount > 0 {
messages := ts.InFramer.Decode(buffer[0:byteCount]) messages := ts.inFramer.Decode(buffer[0:byteCount])
for _, message := range messages { for _, message := range messages {
if ts.inputHandler != nil { if ts.inputHandler != nil {
ts.inputHandler(ts.ctx, ts.Id(), message) ts.inputHandler(ts.ctx, ts.Id(), message)
@@ -216,11 +219,11 @@ func (ts *TCPServer) Output(ctx context.Context, payload any) error {
defer ts.connectionsMu.Unlock() defer ts.connectionsMu.Unlock()
var errorString strings.Builder var errorString strings.Builder
if ts.OutFramer == nil { if ts.outFramer == nil {
return errors.New("no output framer configured") return errors.New("no output framer configured")
} }
outputBytes := ts.OutFramer.Encode(payloadBytes) outputBytes := ts.outFramer.Encode(payloadBytes)
for _, connection := range ts.connections { for _, connection := range ts.connections {
_, err := connection.conn.Write(outputBytes) _, err := connection.conn.Write(outputBytes)
+1 -1
View File
@@ -20,8 +20,8 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"duration": { "duration": {
Title: "Duration", Title: "Duration",
Description: "time in milliseconds between emitted events",
Type: "integer", Type: "integer",
Description: "Interval duration in milliseconds",
}, },
}, },
Required: []string{"duration"}, Required: []string{"duration"},
+1 -1
View File
@@ -20,8 +20,8 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"duration": { "duration": {
Title: "Duration", Title: "Duration",
Description: "time in milliseconds before the timer fires",
Type: "integer", Type: "integer",
Description: "Interval duration in milliseconds",
}, },
}, },
Required: []string{"duration"}, Required: []string{"duration"},
+8 -6
View File
@@ -21,14 +21,16 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"host": { "host": {
Title: "Host", Title: "Host",
Type: "string", Description: "the hostname or IP address of the UDP server to connect to",
Type: "string",
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port of the UDP server to connect to",
Minimum: jsonschema.Ptr[float64](1), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1),
Maximum: jsonschema.Ptr[float64](65535),
}, },
}, },
Required: []string{"host", "port"}, Required: []string{"host", "port"},
+8 -6
View File
@@ -22,14 +22,16 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"ip": { "ip": {
Title: "IP", Title: "IP",
Type: "string", Description: "the multicast address to listen on",
Type: "string",
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Maximum: jsonschema.Ptr[float64](65535),
}, },
}, },
Required: []string{"ip", "port"}, Required: []string{"ip", "port"},
+15 -12
View File
@@ -23,22 +23,25 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"ip": { "ip": {
Title: "IP", Title: "IP",
Type: "string", Description: "the IP address to bind the UDP server to",
Default: json.RawMessage(`"0.0.0.0"`), Type: "string",
Default: json.RawMessage(`"0.0.0.0"`),
}, },
"port": { "port": {
Title: "Port", Title: "Port",
Type: "integer", Description: "the port for the UDP server to listen on",
Minimum: jsonschema.Ptr[float64](1024), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1024),
Maximum: jsonschema.Ptr[float64](65535),
}, },
"bufferSize": { "bufferSize": {
Title: "Buffer Size", Title: "Buffer Size",
Type: "integer", Description: "the size of the buffer for incoming UDP messages",
Minimum: jsonschema.Ptr[float64](1), Type: "integer",
Maximum: jsonschema.Ptr[float64](65535), Minimum: jsonschema.Ptr[float64](1),
Default: json.RawMessage("2048"), Maximum: jsonschema.Ptr[float64](65535),
Default: json.RawMessage("2048"),
}, },
}, },
Required: []string{"port"}, Required: []string{"port"},
+3 -2
View File
@@ -23,8 +23,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"url": { "url": {
Title: "URL", Title: "URL",
Type: "string", Description: "the URL of the WebSocket server to connect",
Type: "string",
}, },
}, },
Required: []string{"url"}, Required: []string{"url"},
+2 -2
View File
@@ -22,13 +22,13 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"module": { "module": {
Title: "Module ID", Title: "Module ID",
Type: "string",
Description: "ID of the database module to query", Description: "ID of the database module to query",
Type: "string",
}, },
"query": { "query": {
Title: "Query", Title: "Query",
Type: "string",
Description: "SQL query to execute", Description: "SQL query to execute",
Type: "string",
}, },
}, },
Required: []string{"module", "query"}, Required: []string{"module", "query"},
+3 -2
View File
@@ -19,8 +19,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"expression": { "expression": {
Title: "Expression", Title: "Expression",
Type: "string", Description: "Expr expression to evaluate, must return a boolean",
Type: "string",
}, },
}, },
Required: []string{"expression"}, Required: []string{"expression"},
+2 -2
View File
@@ -18,9 +18,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"rate": { "rate": {
Type: "integer",
Title: "Rate", Title: "Rate",
Description: "The number of events to allow per second.", Description: "number of events to allow per second",
Type: "integer",
}, },
}, },
Required: []string{"rate"}, Required: []string{"rate"},
+3 -2
View File
@@ -19,8 +19,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"pattern": { "pattern": {
Title: "Pattern", Title: "Pattern",
Type: "string", Description: "regex pattern to match against",
Type: "string",
}, },
}, },
Required: []string{"pattern"}, Required: []string{"pattern"},
+5 -4
View File
@@ -20,10 +20,11 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"bitSize": { "bitSize": {
Title: "Bit Size", Title: "Bit Size",
Type: "integer", Description: "bit size of the resulting float",
Enum: []any{32, 64}, Type: "integer",
Default: json.RawMessage("64"), Enum: []any{32, 64},
Default: json.RawMessage("64"),
}, },
}, },
AdditionalProperties: &jsonschema.Schema{Not: &jsonschema.Schema{}}, AdditionalProperties: &jsonschema.Schema{Not: &jsonschema.Schema{}},
+11 -8
View File
@@ -20,18 +20,21 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"bitSize": { "bitSize": {
Title: "Bit Size", Title: "Bit Size",
Type: "integer", Description: "bit size of the resulting float",
Enum: []any{32, 64}, Type: "integer",
Default: json.RawMessage("32"), Enum: []any{32, 64},
Default: json.RawMessage("32"),
}, },
"min": { "min": {
Title: "Minimum", Title: "Minimum",
Type: "number", Description: "inclusive minimum value of the random float",
Type: "number",
}, },
"max": { "max": {
Title: "Maximum", Title: "Maximum",
Type: "number", Description: "exclusive maximum value of the random float",
Type: "number",
}, },
}, },
Required: []string{"min", "max"}, Required: []string{"min", "max"},
+27 -18
View File
@@ -21,40 +21,49 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"id": { "id": {
Title: "Camera ID", Title: "Camera ID",
Type: "string", Description: "ID of the camera this FreeD position corresponds to",
Type: "string",
}, },
"pan": { "pan": {
Title: "Pan", Title: "Pan",
Type: "string", Description: "pan angle of the camera",
Type: "string",
}, },
"tilt": { "tilt": {
Title: "Tilt", Title: "Tilt",
Type: "string", Description: "tilt angle of the camera",
Type: "string",
}, },
"roll": { "roll": {
Title: "Roll", Title: "Roll",
Type: "string", Description: "roll angle of the camera",
Type: "string",
}, },
"posX": { "posX": {
Title: "Position X", Title: "Position X",
Type: "string", Description: "X coordinate of the camera's position",
Type: "string",
}, },
"posY": { "posY": {
Title: "Position Y", Title: "Position Y",
Type: "string", Description: "Y coordinate of the camera's position",
Type: "string",
}, },
"posZ": { "posZ": {
Title: "Position Z", Title: "Position Z",
Type: "string", Description: "Z coordinate of the camera's position",
Type: "string",
}, },
"zoom": { "zoom": {
Title: "Zoom", Title: "Zoom",
Type: "string", Description: "zoom level of the camera",
Type: "string",
}, },
"focus": { "focus": {
Title: "Focus", Title: "Focus",
Type: "string", Description: "focus level of the camera",
Type: "string",
}, },
}, },
Required: []string{ Required: []string{
+7 -5
View File
@@ -22,13 +22,15 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"method": { "method": {
Title: "HTTP Method", Title: "HTTP Method",
Type: "string", Description: "method to use for the HTTP request",
Enum: []any{"GET", "POST", "PUT", "PATCH", "DELETE"}, Type: "string",
Enum: []any{"GET", "POST", "PUT", "PATCH", "DELETE"},
}, },
"url": { "url": {
Title: "URL", Title: "URL",
Type: "string", Description: "URL to send the HTTP request to",
Type: "string",
}, },
}, },
Required: []string{"method", "url"}, Required: []string{"method", "url"},
+6 -4
View File
@@ -19,12 +19,14 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"status": { "status": {
Title: "Status Code", Title: "Status Code",
Type: "integer", Description: "status code to set on the response",
Type: "integer",
}, },
"bodyTemplate": { "bodyTemplate": {
Title: "Body Template", Title: "Body Template",
Type: "string", Description: "template for the response body",
Type: "string",
}, },
}, },
Required: []string{"status", "bodyTemplate"}, Required: []string{"status", "bodyTemplate"},
+10 -8
View File
@@ -20,16 +20,18 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"base": { "base": {
Title: "Base", Title: "Base",
Type: "integer", Description: "numerical base to use for parsing the integer",
Enum: []any{0, 2, 8, 10, 16}, Type: "integer",
Default: json.RawMessage("10"), Enum: []any{0, 2, 8, 10, 16},
Default: json.RawMessage("10"),
}, },
"bitSize": { "bitSize": {
Title: "Bit Size", Title: "Bit Size",
Type: "integer", Description: "bit size of the resulting integer",
Enum: []any{0, 8, 16, 32, 64}, Type: "integer",
Default: json.RawMessage("64"), Enum: []any{0, 8, 16, 32, 64},
Default: json.RawMessage("64"),
}, },
}, },
AdditionalProperties: &jsonschema.Schema{Not: &jsonschema.Schema{}}, AdditionalProperties: &jsonschema.Schema{Not: &jsonschema.Schema{}},
+6 -4
View File
@@ -19,12 +19,14 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"min": { "min": {
Title: "Minimum", Title: "Minimum",
Type: "integer", Description: "inclusive minimum value of the random integer",
Type: "integer",
}, },
"max": { "max": {
Title: "Maximum", Title: "Maximum",
Type: "integer", Description: "inclusive maximum value of the random integer",
Type: "integer",
}, },
}, },
Required: []string{"min", "max"}, Required: []string{"min", "max"},
+12 -8
View File
@@ -18,20 +18,24 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"inMin": { "inMin": {
Title: "Input Minimum", Title: "Input Minimum",
Type: "integer", Description: "minimum value of the input integer",
Type: "integer",
}, },
"inMax": { "inMax": {
Title: "Input Maximum", Title: "Input Maximum",
Type: "integer", Description: "maximum value of the input integer",
Type: "integer",
}, },
"outMin": { "outMin": {
Title: "Output Minimum", Title: "Output Minimum",
Type: "integer", Description: "minimum value of the output integer",
Type: "integer",
}, },
"outMax": { "outMax": {
Title: "Output Maximum", Title: "Output Maximum",
Type: "integer", Description: "maximum value of the output integer",
Type: "integer",
}, },
}, },
Required: []string{"inMin", "inMax", "outMin", "outMax"}, Required: []string{"inMin", "inMax", "outMin", "outMax"},
+6 -4
View File
@@ -19,12 +19,14 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"module": { "module": {
Title: "Module ID", Title: "Module ID",
Type: "string", Description: "ID of the key-value module to get the value from",
Type: "string",
}, },
"key": { "key": {
Title: "Key", Title: "Key",
Type: "string", Description: "key to retrieve from the key-value module",
Type: "string",
}, },
}, },
Required: []string{"module", "key"}, Required: []string{"module", "key"},
+6 -4
View File
@@ -19,12 +19,14 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"module": { "module": {
Title: "Module ID", Title: "Module ID",
Type: "string", Description: "ID of the key-value module to set the value in",
Type: "string",
}, },
"key": { "key": {
Title: "Key", Title: "Key",
Type: "string", Description: "key to set in the key-value module",
Type: "string",
}, },
}, },
Required: []string{"module", "key"}, Required: []string{"module", "key"},
@@ -23,16 +23,19 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"channel": { "channel": {
Title: "Channel", Title: "Channel",
Type: "string", Description: "channel number for the control change message",
Type: "string",
}, },
"control": { "control": {
Title: "Control", Title: "Control",
Type: "string", Description: "control number for the control change message",
Type: "string",
}, },
"value": { "value": {
Title: "Value", Title: "Value",
Type: "string", Description: "value for the control change message",
Type: "string",
}, },
}, },
Required: []string{"channel", "control", "value"}, Required: []string{"channel", "control", "value"},
+9 -6
View File
@@ -23,16 +23,19 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"channel": { "channel": {
Title: "Channel", Title: "Channel",
Type: "string", Description: "channel number for the note off message",
Type: "string",
}, },
"note": { "note": {
Title: "Note", Title: "Note",
Type: "string", Description: "note number for the note off message",
Type: "string",
}, },
"velocity": { "velocity": {
Title: "Velocity", Title: "Velocity",
Type: "string", Description: "velocity for the note off message",
Type: "string",
}, },
}, },
Required: []string{"channel", "note", "velocity"}, Required: []string{"channel", "note", "velocity"},
+9 -6
View File
@@ -23,16 +23,19 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"channel": { "channel": {
Title: "Channel", Title: "Channel",
Type: "string", Description: "channel number for the note on message",
Type: "string",
}, },
"note": { "note": {
Title: "Note", Title: "Note",
Type: "string", Description: "note number for the note on message",
Type: "string",
}, },
"velocity": { "velocity": {
Title: "Velocity", Title: "Velocity",
Type: "string", Description: "velocity for the note on message",
Type: "string",
}, },
}, },
Required: []string{"channel", "note", "velocity"}, Required: []string{"channel", "note", "velocity"},
@@ -23,12 +23,14 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"channel": { "channel": {
Title: "Channel", Title: "Channel",
Type: "string", Description: "channel number for the program change message",
Type: "string",
}, },
"program": { "program": {
Title: "Program", Title: "Program",
Type: "string", Description: "program number for the program change message",
Type: "string",
}, },
}, },
Required: []string{"type", "channel", "program"}, Required: []string{"type", "channel", "program"},
+1 -1
View File
@@ -20,8 +20,8 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"module": { "module": {
Title: "Module ID", Title: "Module ID",
Type: "string",
Description: "ID of module to send output to", Description: "ID of module to send output to",
Type: "string",
}, },
}, },
Required: []string{"module"}, Required: []string{"module"},
+9 -6
View File
@@ -23,19 +23,22 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"address": { "address": {
Title: "Address", Title: "Address",
Type: "string", Description: "OSC address for the message",
Type: "string",
}, },
"args": { "args": {
Title: "Arguments", Title: "Arguments",
Type: "array", Description: "arguments for the OSC message",
Type: "array",
Items: &jsonschema.Schema{ Items: &jsonschema.Schema{
Type: "string", Type: "string",
}, },
}, },
"types": { "types": {
Title: "Argument Types", Title: "Argument Types",
Type: "string", Description: "string of OSC types corresponding to the arguments in args",
Type: "string",
}, },
}, },
Required: []string{"address"}, Required: []string{"address"},
+2 -2
View File
@@ -22,13 +22,13 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"module": { "module": {
Title: "Module ID", Title: "Module ID",
Type: "string",
Description: "ID of the module to publish to", Description: "ID of the module to publish to",
Type: "string",
}, },
"topic": { "topic": {
Title: "Topic", Title: "Topic",
Description: "topic to publish to",
Type: "string", Type: "string",
Description: "Topic to publish to",
}, },
}, },
Required: []string{"module", "topic"}, Required: []string{"module", "topic"},
+1 -1
View File
@@ -20,8 +20,8 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"source": { "source": {
Title: "Source", Title: "Source",
Type: "string",
Description: "source to report as to the router", Description: "source to report as to the router",
Type: "string",
}, },
}, },
Required: []string{"source"}, Required: []string{"source"},
+3 -2
View File
@@ -25,8 +25,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"expression": { "expression": {
Title: "Expression", Title: "Expression",
Type: "string", Description: "Expr expression to evaluate",
Type: "string",
}, },
}, },
Required: []string{"expression"}, Required: []string{"expression"},
+3 -2
View File
@@ -18,8 +18,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"program": { "program": {
Title: "Program", Title: "Program",
Type: "string", Description: "JavaScript program to run",
Type: "string",
}, },
}, },
Required: []string{"program"}, Required: []string{"program"},
+11 -8
View File
@@ -20,18 +20,21 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"path": { "path": {
Title: "Path", Title: "Path",
Type: "string", Description: "path to the WASM plugin to load",
Type: "string",
}, },
"function": { "function": {
Title: "Function", Title: "Function",
Type: "string", Description: "exported function to call on the WASM plugin",
Default: json.RawMessage(`"process"`), Type: "string",
Default: json.RawMessage(`"process"`),
}, },
"enableWasi": { "enableWasi": {
Title: "Enable WASI", Title: "Enable WASI",
Type: "boolean", Description: "whether to enable WASI when running the WASM plugin",
Default: json.RawMessage("false"), Type: "boolean",
Default: json.RawMessage("false"),
}, },
}, },
Required: []string{"path"}, Required: []string{"path"},
@@ -19,15 +19,19 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"preWait": { "preWait": {
Title: "Pre Wait (ms)", Title: "Pre Wait (ms)",
Type: "integer", Description: "number of milliseconds to wait before playing the audio",
}, Type: "integer",
"postWait": {
Title: "Post Wait (ms)",
Type: "integer",
}, },
"audioFile": { "audioFile": {
Type: "string", Title: "Audio File",
Description: "path to the audio file to play",
Type: "string",
},
"postWait": {
Title: "Post Wait (ms)",
Description: "number of milliseconds to wait after playing the audio",
Type: "integer",
}, },
}, },
Required: []string{"preWait", "postWait", "audioFile"}, Required: []string{"preWait", "postWait", "audioFile"},
+11 -7
View File
@@ -21,15 +21,19 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"preWait": { "preWait": {
Title: "Pre Wait (ms)", Title: "Pre Wait (ms)",
Type: "integer", Description: "number of milliseconds to wait before sending the DTMF tones",
}, Type: "integer",
"postWait": {
Title: "Post Wait (ms)",
Type: "integer",
}, },
"digits": { "digits": {
Type: "string", Title: "Digits",
Description: "DTMF digits to send",
Type: "string",
},
"postWait": {
Title: "Post Wait (ms)",
Description: "number of milliseconds to wait after sending the DTMF tones",
Type: "integer",
}, },
}, },
Required: []string{"preWait", "postWait", "digits"}, Required: []string{"preWait", "postWait", "digits"},
+3 -2
View File
@@ -19,8 +19,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"template": { "template": {
Title: "Template", Title: "Template",
Type: "string", Description: "template to evaluate",
Type: "string",
}, },
}, },
Required: []string{"template"}, Required: []string{"template"},
+3 -2
View File
@@ -19,8 +19,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"separator": { "separator": {
Title: "Separator", Title: "Separator",
Type: "string", Description: "separator to split the string on",
Type: "string",
}, },
}, },
Required: []string{"separator"}, Required: []string{"separator"},
+3 -2
View File
@@ -19,8 +19,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"name": { "name": {
Title: "Field Name", Title: "Field Name",
Type: "string", Description: "name of the struct field to extract",
Type: "string",
}, },
}, },
Required: []string{"name"}, Required: []string{"name"},
+3 -2
View File
@@ -19,8 +19,9 @@ func init() {
Type: "object", Type: "object",
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"name": { "name": {
Title: "Method Name", Title: "Method Name",
Type: "string", Description: "name of the struct method to extract and call (with no arguments)",
Type: "string",
}, },
}, },
Required: []string{"name"}, Required: []string{"name"},
+1 -1
View File
@@ -19,8 +19,8 @@ func init() {
Properties: map[string]*jsonschema.Schema{ Properties: map[string]*jsonschema.Schema{
"duration": { "duration": {
Title: "Duration", Title: "Duration",
Description: "time to sleep in milliseconds",
Type: "integer", Type: "integer",
Description: "Duration to sleep in milliseconds",
}, },
}, },
Required: []string{"duration"}, Required: []string{"duration"},