mirror of
https://github.com/onyx-and-iris/vbantxt.git
synced 2025-04-04 13:23:51 +01:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
c7b9d75ea1 | |||
cc42e928e0 | |||
80a675cc6a | |||
6801d9e4e1 | |||
8aceb8229f | |||
b070fb615e | |||
b9d0578507 | |||
|
438543b87b | ||
585b4d4c14 | |||
29e6c2e8aa | |||
|
7d93ecb1c7 | ||
|
116ce30f53 |
29
.github/workflows/golang-ci.yml
vendored
Normal file
29
.github/workflows/golang-ci.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
name: Lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
timeout-minutes: 3
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '1.24'
|
||||||
|
- name: Install golangci-lint
|
||||||
|
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
||||||
|
- name: Run golangci-lint
|
||||||
|
run: golangci-lint run ./...
|
54
.golangci.yml
Normal file
54
.golangci.yml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
run:
|
||||||
|
# timeout for analysis, e.g. 30s, 3m, default is 1m
|
||||||
|
timeout: 3m
|
||||||
|
# exclude test files
|
||||||
|
tests: true
|
||||||
|
|
||||||
|
linters:
|
||||||
|
# Set to true runs only fast linters.
|
||||||
|
# Good option for 'lint on save', pre-commit hook or CI.
|
||||||
|
fast: true
|
||||||
|
|
||||||
|
disable-all: true
|
||||||
|
|
||||||
|
enable:
|
||||||
|
- gosimple
|
||||||
|
- govet
|
||||||
|
- ineffassign
|
||||||
|
- staticcheck
|
||||||
|
- unused
|
||||||
|
- gofmt
|
||||||
|
- gofumpt
|
||||||
|
- misspell
|
||||||
|
- unparam
|
||||||
|
- gosec
|
||||||
|
- asciicheck
|
||||||
|
- errname
|
||||||
|
- gci
|
||||||
|
- godot
|
||||||
|
- goimports
|
||||||
|
- revive
|
||||||
|
|
||||||
|
linters-settings:
|
||||||
|
gofmt:
|
||||||
|
rewrite-rules:
|
||||||
|
- pattern: 'interface{}'
|
||||||
|
replacement: 'any'
|
||||||
|
- pattern: 'a[b:len(a)]'
|
||||||
|
replacement: 'a[b:]'
|
||||||
|
|
||||||
|
misspell:
|
||||||
|
locale: UK
|
||||||
|
|
||||||
|
errcheck:
|
||||||
|
check-type-assertions: true
|
||||||
|
|
||||||
|
issues:
|
||||||
|
max-same-issues: 0
|
||||||
|
max-issues-per-linter: 0
|
||||||
|
exclude-use-default: false
|
||||||
|
exclude:
|
||||||
|
# gosec: Duplicated errcheck checks
|
||||||
|
- G104
|
||||||
|
# gosec: integer overflow conversion int -> uint32
|
||||||
|
- G115
|
13
CHANGELOG.md
13
CHANGELOG.md
@ -11,6 +11,19 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
|
|||||||
|
|
||||||
- [x]
|
- [x]
|
||||||
|
|
||||||
|
# [0.4.0] - 2025-04-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- `log-level` flag is now of type string. It accepts any one of trace, debug, info, warn, error, fatal or panic.
|
||||||
|
- It defaults to warn.
|
||||||
|
|
||||||
|
# [0.3.1] - 2025-03-31
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- The CLI now uses `os.UserConfigDir()` to load the default *config.toml*, which should respect `$XDG_CONFIG_HOME`. See [UserConfigDir](https://pkg.go.dev/os#UserConfigDir)
|
||||||
|
|
||||||
# [0.2.1] - 2024-11-07
|
# [0.2.1] - 2024-11-07
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
30
README.md
30
README.md
@ -9,10 +9,10 @@ For an outline of past/future changes refer to: [CHANGELOG](CHANGELOG.md)
|
|||||||
|
|
||||||
## Tested against
|
## Tested against
|
||||||
|
|
||||||
- Basic 1.0.8.4
|
- Basic 1.1.1.8
|
||||||
- Banana 2.0.6.4
|
- Banana 2.1.1.8
|
||||||
- Potato 3.0.2.4
|
- Potato 3.1.1.8
|
||||||
- Matrix 1.0.0.3
|
- Matrix 1.0.1.2
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ Command line flags will override values in a config.toml.
|
|||||||
|
|
||||||
## `Script files`
|
## `Script files`
|
||||||
|
|
||||||
The vbantxt-cli utility accepts a single string request or an array of string requests. This means you can pass scripts stored in files.
|
The vbantxt CLI accepts a single string request or an array of string requests. This means you can pass scripts stored in files.
|
||||||
|
|
||||||
For example, in Windows with Powershell you could:
|
For example, in Windows with Powershell you could:
|
||||||
|
|
||||||
@ -116,8 +116,22 @@ vbantxt -s=streamname "Point(ASIO128.IN[2],ASIO128.OUT[1]).dBGain = -8"
|
|||||||
|
|
||||||
## `Logging`
|
## `Logging`
|
||||||
|
|
||||||
Log level may be set by passing the `-l` flag with a number from 0 up to 6 where
|
The `-log-level` flag allows you to control the verbosity of the application's logging output.
|
||||||
|
|
||||||
0 = Panic, 1 = Fatal, 2 = Error, 3 = Warning, 4 = Info, 5 = Debug, 6 = Trace
|
Acceptable values for this flag are:
|
||||||
|
|
||||||
Log level defaults to Warning level.
|
- `trace`
|
||||||
|
- `debug`
|
||||||
|
- `info`
|
||||||
|
- `warn`
|
||||||
|
- `error`
|
||||||
|
- `fatal`
|
||||||
|
- `panic`
|
||||||
|
|
||||||
|
For example, to set the log level to `debug`, you can use:
|
||||||
|
|
||||||
|
```
|
||||||
|
vbantxt -s=streamname -log-level=debug "bus[0].eq.on=1 bus[1].gain=-12.8"
|
||||||
|
```
|
||||||
|
|
||||||
|
The default log level is `warn` if the flag is not specified.
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// Package main provides the configuration loading functionality for the vbantxt application.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -35,5 +35,4 @@ func TestLoadConfig_Errors(t *testing.T) {
|
|||||||
assert.ErrorContains(t, err, tc.err)
|
assert.ErrorContains(t, err, tc.err)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5,13 +5,23 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"slices"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/onyx-and-iris/vbantxt"
|
"github.com/onyx-and-iris/vbantxt"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type opts struct {
|
||||||
|
host string
|
||||||
|
port int
|
||||||
|
streamname string
|
||||||
|
bps int
|
||||||
|
channel int
|
||||||
|
ratelimit int
|
||||||
|
configPath string
|
||||||
|
loglevel string
|
||||||
|
}
|
||||||
|
|
||||||
func exit(err error) {
|
func exit(err error) {
|
||||||
_, _ = fmt.Fprintf(os.Stderr, "Error: %s", err)
|
_, _ = fmt.Fprintf(os.Stderr, "Error: %s", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
@ -22,7 +32,7 @@ func main() {
|
|||||||
host string
|
host string
|
||||||
port int
|
port int
|
||||||
streamname string
|
streamname string
|
||||||
loglevel int
|
loglevel string
|
||||||
configPath string
|
configPath string
|
||||||
bps int
|
bps int
|
||||||
channel int
|
channel int
|
||||||
@ -36,43 +46,74 @@ func main() {
|
|||||||
flag.StringVar(&streamname, "streamname", "Command1", "stream name for text requests")
|
flag.StringVar(&streamname, "streamname", "Command1", "stream name for text requests")
|
||||||
flag.StringVar(&streamname, "s", "Command1", "stream name for text requests (shorthand)")
|
flag.StringVar(&streamname, "s", "Command1", "stream name for text requests (shorthand)")
|
||||||
|
|
||||||
flag.IntVar(&bps, "bps", 0, "vban bps")
|
flag.IntVar(&bps, "bps", 256000, "vban bps")
|
||||||
flag.IntVar(&bps, "b", 0, "vban bps (shorthand)")
|
flag.IntVar(&bps, "b", 256000, "vban bps (shorthand)")
|
||||||
flag.IntVar(&channel, "channel", 0, "vban channel")
|
flag.IntVar(&channel, "channel", 0, "vban channel")
|
||||||
flag.IntVar(&channel, "c", 0, "vban channel (shorthand)")
|
flag.IntVar(&channel, "c", 0, "vban channel (shorthand)")
|
||||||
flag.IntVar(&ratelimit, "ratelimit", 20, "request ratelimit in milliseconds")
|
flag.IntVar(&ratelimit, "ratelimit", 20, "request ratelimit in milliseconds")
|
||||||
flag.IntVar(&ratelimit, "r", 20, "request ratelimit in milliseconds (shorthand)")
|
flag.IntVar(&ratelimit, "r", 20, "request ratelimit in milliseconds (shorthand)")
|
||||||
|
|
||||||
homeDir, err := os.UserHomeDir()
|
configDir, err := os.UserConfigDir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
exit(err)
|
exit(err)
|
||||||
}
|
}
|
||||||
defaultConfigPath := filepath.Join(homeDir, ".config", "vbantxt", "config.toml")
|
defaultConfigPath := filepath.Join(configDir, "vbantxt", "config.toml")
|
||||||
flag.StringVar(&configPath, "config", defaultConfigPath, "config path")
|
flag.StringVar(&configPath, "config", defaultConfigPath, "config path")
|
||||||
flag.StringVar(&configPath, "C", defaultConfigPath, "config path (shorthand)")
|
flag.StringVar(&configPath, "C", defaultConfigPath, "config path (shorthand)")
|
||||||
flag.IntVar(&loglevel, "loglevel", int(log.WarnLevel), "log level")
|
flag.StringVar(&loglevel, "log-level", "warn", "log level")
|
||||||
flag.IntVar(&loglevel, "l", int(log.WarnLevel), "log level (shorthand)")
|
flag.StringVar(&loglevel, "l", "warn", "log level (shorthand)")
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
if slices.Contains(log.AllLevels, log.Level(loglevel)) {
|
switch loglevel {
|
||||||
log.SetLevel(log.Level(loglevel))
|
case "trace":
|
||||||
|
log.SetLevel(log.TraceLevel)
|
||||||
|
case "debug":
|
||||||
|
log.SetLevel(log.DebugLevel)
|
||||||
|
case "info":
|
||||||
|
log.SetLevel(log.InfoLevel)
|
||||||
|
case "warn":
|
||||||
|
log.SetLevel(log.WarnLevel)
|
||||||
|
case "error":
|
||||||
|
log.SetLevel(log.ErrorLevel)
|
||||||
|
case "fatal":
|
||||||
|
log.SetLevel(log.FatalLevel)
|
||||||
|
case "panic":
|
||||||
|
log.SetLevel(log.PanicLevel)
|
||||||
|
default:
|
||||||
|
exit(fmt.Errorf("invalid log level: %s", loglevel))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
o := opts{
|
||||||
|
host: host,
|
||||||
|
port: port,
|
||||||
|
streamname: streamname,
|
||||||
|
bps: bps,
|
||||||
|
channel: channel,
|
||||||
|
ratelimit: ratelimit,
|
||||||
|
configPath: configPath,
|
||||||
|
loglevel: loglevel,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load the config only if the host, port, and streamname flags are not provided.
|
||||||
|
// This allows the user to override the config values with command line flags.
|
||||||
if !flagsPassed([]string{"host", "h", "port", "p", "streamname", "s"}) {
|
if !flagsPassed([]string{"host", "h", "port", "p", "streamname", "s"}) {
|
||||||
config, err := loadConfig(configPath)
|
config, err := loadConfig(configPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
exit(err)
|
exit(err)
|
||||||
}
|
}
|
||||||
host = config.Host
|
|
||||||
port = config.Port
|
|
||||||
streamname = config.Streamname
|
|
||||||
}
|
|
||||||
|
|
||||||
client, err := createClient(host, port, streamname, bps, channel, ratelimit)
|
o.host = config.Host
|
||||||
|
o.port = config.Port
|
||||||
|
o.streamname = config.Streamname
|
||||||
|
}
|
||||||
|
log.Debugf("opts: %+v", o)
|
||||||
|
|
||||||
|
client, closer, err := createClient(o)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
exit(err)
|
exit(err)
|
||||||
}
|
}
|
||||||
defer client.Close()
|
defer closer()
|
||||||
|
|
||||||
for _, arg := range flag.Args() {
|
for _, arg := range flag.Args() {
|
||||||
err := client.Send(arg)
|
err := client.Send(arg)
|
||||||
@ -82,16 +123,24 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func createClient(host string, port int, streamname string, bps, channel, ratelimit int) (*vbantxt.VbanTxt, error) {
|
// createClient creates a new vban client with the provided options.
|
||||||
|
func createClient(o opts) (*vbantxt.VbanTxt, func(), error) {
|
||||||
client, err := vbantxt.New(
|
client, err := vbantxt.New(
|
||||||
host,
|
o.host,
|
||||||
port,
|
o.port,
|
||||||
streamname,
|
o.streamname,
|
||||||
vbantxt.WithBPSOpt(bps),
|
vbantxt.WithBPSOpt(o.bps),
|
||||||
vbantxt.WithChannel(channel),
|
vbantxt.WithChannel(o.channel),
|
||||||
vbantxt.WithRateLimit(time.Duration(ratelimit)*time.Millisecond))
|
vbantxt.WithRateLimit(time.Duration(o.ratelimit)*time.Millisecond))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
return client, err
|
|
||||||
|
closer := func() {
|
||||||
|
if err := client.Close(); err != nil {
|
||||||
|
log.Error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return client, closer, err
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// Package vbantxt provides utilities for handling VBAN text errors.
|
||||||
package vbantxt
|
package vbantxt
|
||||||
|
|
||||||
// Error is used to define sentinel errors.
|
// Error is used to define sentinel errors.
|
||||||
|
10
go.mod
10
go.mod
@ -1,16 +1,18 @@
|
|||||||
module github.com/onyx-and-iris/vbantxt
|
module github.com/onyx-and-iris/vbantxt
|
||||||
|
|
||||||
go 1.19
|
go 1.23.0
|
||||||
|
|
||||||
|
toolchain go1.24.1
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/BurntSushi/toml v1.2.1
|
github.com/BurntSushi/toml v1.5.0
|
||||||
github.com/sirupsen/logrus v1.9.0
|
github.com/sirupsen/logrus v1.9.3
|
||||||
github.com/stretchr/testify v1.9.0
|
github.com/stretchr/testify v1.9.0
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
|
golang.org/x/sys v0.31.0 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
)
|
)
|
||||||
|
11
go.sum
11
go.sum
@ -1,18 +1,19 @@
|
|||||||
github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
|
github.com/BurntSushi/toml v1.5.0 h1:W5quZX/G/csjUnuI8SUYlsHs9M38FC7znL0lIO+DvMg=
|
||||||
github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
|
github.com/BurntSushi/toml v1.5.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=
|
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
|
||||||
github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
||||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 h1:0A+M6Uqn+Eje4kHMK80dtF3JCXC4ykBgQG4Fe06QRhQ=
|
|
||||||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
|
||||||
|
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
@ -9,14 +9,14 @@ import (
|
|||||||
// Option is a functional option type that allows us to configure the VbanTxt.
|
// Option is a functional option type that allows us to configure the VbanTxt.
|
||||||
type Option func(*VbanTxt)
|
type Option func(*VbanTxt)
|
||||||
|
|
||||||
// WithRateLimit is a functional option to set the ratelimit for requests
|
// WithRateLimit is a functional option to set the ratelimit for requests.
|
||||||
func WithRateLimit(ratelimit time.Duration) Option {
|
func WithRateLimit(ratelimit time.Duration) Option {
|
||||||
return func(vt *VbanTxt) {
|
return func(vt *VbanTxt) {
|
||||||
vt.ratelimit = ratelimit
|
vt.ratelimit = ratelimit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithBPSOpt is a functional option to set the bps index for {VbanTxt}.packet
|
// WithBPSOpt is a functional option to set the bps index for {VbanTxt}.packet.
|
||||||
func WithBPSOpt(bps int) Option {
|
func WithBPSOpt(bps int) Option {
|
||||||
return func(vt *VbanTxt) {
|
return func(vt *VbanTxt) {
|
||||||
bpsIndex := indexOf(BpsOpts, bps)
|
bpsIndex := indexOf(BpsOpts, bps)
|
||||||
@ -28,7 +28,7 @@ func WithBPSOpt(bps int) Option {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithChannel is a functional option to set the channel for {VbanTxt}.packet
|
// WithChannel is a functional option to set the channel for {VbanTxt}.packet.
|
||||||
func WithChannel(channel int) Option {
|
func WithChannel(channel int) Option {
|
||||||
return func(vt *VbanTxt) {
|
return func(vt *VbanTxt) {
|
||||||
vt.packet.channel = channel
|
vt.packet.channel = channel
|
||||||
|
15
packet.go
15
packet.go
@ -13,9 +13,12 @@ const (
|
|||||||
headerSz = 4 + 1 + 1 + 1 + 1 + 16 + 4
|
headerSz = 4 + 1 + 1 + 1 + 1 + 16 + 4
|
||||||
)
|
)
|
||||||
|
|
||||||
var BpsOpts = []int{0, 110, 150, 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 31250,
|
// BpsOpts defines the available baud rate options.
|
||||||
|
var BpsOpts = []int{
|
||||||
|
0, 110, 150, 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 31250,
|
||||||
38400, 57600, 115200, 128000, 230400, 250000, 256000, 460800, 921600,
|
38400, 57600, 115200, 128000, 230400, 250000, 256000, 460800, 921600,
|
||||||
1000000, 1500000, 2000000, 3000000}
|
1000000, 1500000, 2000000, 3000000,
|
||||||
|
}
|
||||||
|
|
||||||
type packet struct {
|
type packet struct {
|
||||||
streamname []byte
|
streamname []byte
|
||||||
@ -39,17 +42,17 @@ func newPacket(streamname string) packet {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// sr defines the samplerate for the request
|
// sr defines the samplerate for the request.
|
||||||
func (p *packet) sr() byte {
|
func (p *packet) sr() byte {
|
||||||
return byte(vbanProtocolTxt + p.bpsIndex)
|
return byte(vbanProtocolTxt + p.bpsIndex)
|
||||||
}
|
}
|
||||||
|
|
||||||
// nbc defines the channel of the request
|
// nbc defines the channel of the request.
|
||||||
func (p *packet) nbc() byte {
|
func (p *packet) nbc() byte {
|
||||||
return byte(p.channel)
|
return byte(p.channel)
|
||||||
}
|
}
|
||||||
|
|
||||||
// header returns a fully formed packet header
|
// header returns a fully formed packet header.
|
||||||
func (p *packet) header() []byte {
|
func (p *packet) header() []byte {
|
||||||
p.hbuf.Reset()
|
p.hbuf.Reset()
|
||||||
p.hbuf.WriteString("VBAN")
|
p.hbuf.WriteString("VBAN")
|
||||||
@ -62,7 +65,7 @@ func (p *packet) header() []byte {
|
|||||||
return p.hbuf.Bytes()
|
return p.hbuf.Bytes()
|
||||||
}
|
}
|
||||||
|
|
||||||
// bumpFrameCounter increments the frame counter by 1
|
// bumpFrameCounter increments the frame counter by 1.
|
||||||
func (p *packet) bumpFrameCounter() {
|
func (p *packet) bumpFrameCounter() {
|
||||||
x := binary.LittleEndian.Uint32(p.framecounter)
|
x := binary.LittleEndian.Uint32(p.framecounter)
|
||||||
binary.LittleEndian.PutUint32(p.framecounter, x+1)
|
binary.LittleEndian.PutUint32(p.framecounter, x+1)
|
||||||
|
@ -7,12 +7,12 @@ import (
|
|||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
// udpConn represents the UDP client
|
// udpConn represents the UDP client.
|
||||||
type udpConn struct {
|
type udpConn struct {
|
||||||
conn *net.UDPConn
|
conn *net.UDPConn
|
||||||
}
|
}
|
||||||
|
|
||||||
// newUDPConn returns a UDP client
|
// newUDPConn returns a UDP client.
|
||||||
func newUDPConn(host string, port int) (udpConn, error) {
|
func newUDPConn(host string, port int) (udpConn, error) {
|
||||||
udpAddr, err := net.ResolveUDPAddr("udp4", fmt.Sprintf("%s:%d", host, port))
|
udpAddr, err := net.ResolveUDPAddr("udp4", fmt.Sprintf("%s:%d", host, port))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -27,7 +27,7 @@ func newUDPConn(host string, port int) (udpConn, error) {
|
|||||||
return udpConn{conn: conn}, nil
|
return udpConn{conn: conn}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write implements the io.WriteCloser interface
|
// Write implements the io.WriteCloser interface.
|
||||||
func (u udpConn) Write(buf []byte) (int, error) {
|
func (u udpConn) Write(buf []byte) (int, error) {
|
||||||
n, err := u.conn.Write(buf)
|
n, err := u.conn.Write(buf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -38,7 +38,7 @@ func (u udpConn) Write(buf []byte) (int, error) {
|
|||||||
return n, nil
|
return n, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close implements the io.WriteCloser interface
|
// Close implements the io.WriteCloser interface.
|
||||||
func (u udpConn) Close() error {
|
func (u udpConn) Close() error {
|
||||||
err := u.conn.Close()
|
err := u.conn.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -49,7 +49,7 @@ func (vt VbanTxt) Send(cmd string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close is responsible for closing the UDP Client connection
|
// Close is responsible for closing the UDP Client connection.
|
||||||
func (vt VbanTxt) Close() error {
|
func (vt VbanTxt) Close() error {
|
||||||
err := vt.udpConn.Close()
|
err := vt.udpConn.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -28,14 +28,14 @@ func run(t *testing.T, client *vbantxt.VbanTxt, script []byte) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestSendVm(t *testing.T) {
|
func TestSendVm(t *testing.T) {
|
||||||
client, err := vbantxt.New("vm.local", 6980, "onyx")
|
client, err := vbantxt.New("localhost", 6980, "onyx")
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
run(t, client, vm)
|
run(t, client, vm)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSendMatrix(t *testing.T) {
|
func TestSendMatrix(t *testing.T) {
|
||||||
client, err := vbantxt.New("vm.local", 6990, "onyx")
|
client, err := vbantxt.New("localhost", 6990, "onyx")
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
run(t, client, matrix)
|
run(t, client, matrix)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user