7 Commits

Author SHA1 Message Date
jixishi 68f285b5ed up 2024-04-26 22:33:08 +08:00
jixishi d2f8c8a268 增加Ctrl组合键发送指令.ctrl 如.ctrl c 2024-04-26 22:29:16 +08:00
jixishi 8d4273df77 增加交互式配置支持 2024-04-26 22:29:00 +08:00
jixishi 92c92e67e1 增加交互式配置支持 2024-04-26 22:23:32 +08:00
jixishi 604e5bb4ad 修复帧指定的错误参数指向 2024-04-26 12:49:32 +08:00
jixishi e3415ae05a 去除TCP服务端连接 2024-04-26 11:55:26 +08:00
jixishi d19c09e4cd TCP|UDP 客户端数据转发支持更新 帧长设置支持 2024-04-26 11:03:44 +08:00
8 changed files with 257 additions and 31 deletions
+11 -3
View File
@@ -10,10 +10,12 @@
* [x] 双向编码转换 * [x] 双向编码转换
* [x] 活动端口探测 * [x] 活动端口探测
* [x] 数据日志保存 * [x] 数据日志保存
* [ ] 自动断帧设置 * [x] Hex断帧设置
* [x] UDP数据转发
* [x] TCP数据转发
* [x] 参数交互配置
* [x] Ctrl组合键
* [ ] 文件接收发送 * [ ] 文件接收发送
* [ ] UDP数据转发
* [ ] TCP数据转发
## 运行示例 ## 运行示例
@@ -34,3 +36,9 @@
5. Hex发送 `./COM -p COM8 -b 115200` 5. Hex发送 `./COM -p COM8 -b 115200`
![img5.png](image/img5.png) ![img5.png](image/img5.png)
6. 交互配置 `./COM`
![img6.png](image/img6.png)
7. Ctrl组合键发送指令.ctrl `.ctrl c`
![img7.png](image/img7.png)
+15 -6
View File
@@ -18,7 +18,7 @@ var commands []Command
func cmdhelp() { func cmdhelp() {
var page = 0 var page = 0
fmt.Printf(">-------Help(%v)-------<\n", page) strout(out, config.outputCode, fmt.Sprintf(">-------Help(%v)-------<\n", page))
for i := 0; i < len(commands); i++ { for i := 0; i < len(commands); i++ {
strout(out, config.outputCode, fmt.Sprintf(" %-10v --%v\n", commands[i].name, commands[i].description)) strout(out, config.outputCode, fmt.Sprintf(" %-10v --%v\n", commands[i].name, commands[i].description))
} }
@@ -27,12 +27,21 @@ func cmdexit() {
os.Exit(0) os.Exit(0)
} }
func cmdargs() { func cmdargs() {
fmt.Printf(">-------Args(%v)-------<\n", len(args)-1) strout(out, config.outputCode, fmt.Sprintf(">-------Args(%v)-------<\n", len(args)-1))
fmt.Printf("%q\n", args[1:]) strout(out, config.outputCode, fmt.Sprintf("%q\n", args[1:]))
}
func cmdctrl() {
b := []byte(args[1])
x := []byte{b[0] & 0x1f}
_, err = serialPort.Write(x)
if err != nil {
log.Fatal(err)
}
strout(out, config.outputCode, fmt.Sprintf("Ctrl+%s\n", b))
} }
func cmdhex() { func cmdhex() {
fmt.Printf(">-----Hex Send-----<\n") strout(out, config.outputCode, fmt.Sprintf(">-----Hex Send-----<\n"))
fmt.Printf("%q\n", args[1:]) strout(out, config.outputCode, fmt.Sprintf("%q\n", args[1:]))
s := strings.Join(args[1:], "") s := strings.Join(args[1:], "")
b, err := hex.DecodeString(s) b, err := hex.DecodeString(s)
if err != nil { if err != nil {
@@ -45,7 +54,7 @@ func cmdhex() {
} }
func cmdinit() { func cmdinit() {
commands = append(commands, Command{name: ".help", description: "帮助信息", function: cmdhelp}) commands = append(commands, Command{name: ".help", description: "帮助信息", function: cmdhelp})
commands = append(commands, Command{name: ".args", description: "参数信息", function: cmdargs}) commands = append(commands, Command{name: ".ctrl", description: "发送Ctrl组合键", function: cmdctrl})
commands = append(commands, Command{name: ".hex", description: "发送Hex", function: cmdhex}) commands = append(commands, Command{name: ".hex", description: "发送Hex", function: cmdhex})
commands = append(commands, Command{name: ".exit", description: "退出终端", function: cmdexit}) commands = append(commands, Command{name: ".exit", description: "退出终端", function: cmdexit})
} }
+3 -6
View File
@@ -17,31 +17,28 @@ type Config struct {
enableLog bool enableLog bool
logFilePath string logFilePath string
forWard int forWard int
frameSize int
address string address string
} }
type FoeWardMode int type FoeWardMode int
const ( const (
NOT FoeWardMode = iota NOT FoeWardMode = iota
TCPS
TCPC TCPC
UDPS
UDPC UDPC
) )
var config Config var config Config
func setForWard() (conn net.Conn) { func setForWardClient() (conn net.Conn) {
switch FoeWardMode(config.forWard) { switch FoeWardMode(config.forWard) {
case TCPS: case NOT:
case TCPC: case TCPC:
conn, err = net.Dial("tcp", config.address) conn, err = net.Dial("tcp", config.address)
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }
case UDPS:
case UDPC: case UDPC:
conn, err = net.Dial("udp", config.address) conn, err = net.Dial("udp", config.address)
if err != nil { if err != nil {
+171 -2
View File
@@ -3,6 +3,18 @@ package main
import ( import (
"flag" "flag"
"fmt" "fmt"
"github.com/charmbracelet/bubbles/key"
inf "github.com/fzdwx/infinite"
"github.com/fzdwx/infinite/color"
"github.com/fzdwx/infinite/components"
"github.com/fzdwx/infinite/components/input/text"
"github.com/fzdwx/infinite/components/selection/confirm"
"github.com/fzdwx/infinite/components/selection/singleselect"
"github.com/fzdwx/infinite/style"
"github.com/fzdwx/infinite/theme"
"go.bug.st/serial"
"log"
"strconv"
"strings" "strings"
) )
@@ -38,10 +50,21 @@ var (
endStr = Flag{ptrVal{string: &config.endStr}, "e", "end", Val{string: "\n"}, "终端换行符"} endStr = Flag{ptrVal{string: &config.endStr}, "e", "end", Val{string: "\n"}, "终端换行符"}
enableLog = Flag{ptrVal{bool: &config.enableLog}, "l", "log", Val{bool: false}, "是否启用日志保存"} enableLog = Flag{ptrVal{bool: &config.enableLog}, "l", "log", Val{bool: false}, "是否启用日志保存"}
logFilePath = Flag{ptrVal{string: &config.logFilePath}, "P", "Path", Val{string: "./Log.txt"}, "日志保存路径"} logFilePath = Flag{ptrVal{string: &config.logFilePath}, "P", "Path", Val{string: "./Log.txt"}, "日志保存路径"}
forWard = Flag{ptrVal{int: &config.forWard}, "f", "forward", Val{int: 0}, "转发模式(0: 无 1:TCP-S 2:TCP-C 3:UDP-S 4:UDP-C)"} forWard = Flag{ptrVal{int: &config.forWard}, "f", "forward", Val{int: 0}, "转发模式(0: 无 1:TCP-C 2:UDP-C)"}
address = Flag{ptrVal{string: &config.address}, "a", "address", Val{string: "127.0.0.1:12345"}, "转发服务地址"} address = Flag{ptrVal{string: &config.address}, "a", "address", Val{string: "127.0.0.1:12345"}, "转发服务地址"}
frameSize = Flag{ptrVal{int: &config.frameSize}, "F", "Frame", Val{int: 16}, "帧大小"}
parityBit = Flag{ptrVal{int: &config.parityBit}, "v", "verify", Val{int: 0}, "奇偶校验(0:无校验、1:奇校验、2:偶校验、3:1校验、4:0校验)"} parityBit = Flag{ptrVal{int: &config.parityBit}, "v", "verify", Val{int: 0}, "奇偶校验(0:无校验、1:奇校验、2:偶校验、3:1校验、4:0校验)"}
flags = []Flag{portName, baudRate, dataBits, stopBits, outputCode, inputCode, endStr, enableLog, logFilePath, forWard, address, parityBit} flags = []Flag{portName, baudRate, dataBits, stopBits, outputCode, inputCode, endStr, enableLog, logFilePath, forWard, address, frameSize, parityBit}
)
var (
bauds = []string{"自定义", "300", "600", "1200", "2400", "4800", "9600",
"14400", "19200", "38400", "56000", "57600", "115200", "128000",
"256000", "460800", "512000", "750000", "921600", "1500000"}
datas = []string{"5", "6", "7", "8"}
stops = []string{"1", "1.5", "2"}
paritys = []string{"无校验", "奇校验", "偶校验", "1校验", "0校验"}
forwards = []string{"No", "TCP-C", "UDP-C"}
) )
type ValType int type ValType int
@@ -98,3 +121,149 @@ func flagInit(f *Flag) {
flag.IntVar(f.v.int, f.lStr, f.dv.int, f.help) flag.IntVar(f.v.int, f.lStr, f.dv.int, f.help)
} }
} }
func getCliFlag() {
ports, err := serial.GetPortsList()
if err != nil {
log.Fatal(err)
}
inputs := components.NewInput()
inputs.Prompt = "Filtering: "
inputs.PromptStyle = style.New().Bold().Italic().Fg(color.LightBlue)
selectKeymap := singleselect.DefaultSingleKeyMap()
selectKeymap.Confirm = key.NewBinding(
key.WithKeys("enter"),
key.WithHelp("enter", "finish select"),
)
selectKeymap.Choice = key.NewBinding(
key.WithKeys("enter"),
key.WithHelp("enter", "finish select"),
)
selectKeymap.NextPage = key.NewBinding(
key.WithKeys("right"),
key.WithHelp("->", "next page"),
)
selectKeymap.PrevPage = key.NewBinding(
key.WithKeys("left"),
key.WithHelp("<-", "prev page"),
)
s, _ := inf.NewSingleSelect(
ports,
singleselect.WithKeyBinding(selectKeymap),
singleselect.WithPageSize(4),
singleselect.WithFilterInput(inputs),
).Display("选择串口")
config.portName = ports[s]
s, _ = inf.NewSingleSelect(
bauds,
singleselect.WithKeyBinding(selectKeymap),
singleselect.WithPageSize(4),
).Display("选择波特率")
if s != 0 {
config.baudRate, _ = strconv.Atoi(bauds[s])
} else {
b, _ := inf.NewText(
text.WithPrompt("BaudRate:"),
text.WithPromptStyle(theme.DefaultTheme.PromptStyle),
text.WithDefaultValue("115200"),
).Display()
config.baudRate, _ = strconv.Atoi(b)
}
v, _ := inf.NewConfirmWithSelection(
confirm.WithPrompt("启用Hex"),
).Display()
if v {
config.inputCode = "hex"
}
v, _ = inf.NewConfirmWithSelection(
confirm.WithPrompt("启用高级配置"),
).Display()
if v {
s, _ = inf.NewSingleSelect(
datas,
singleselect.WithKeyBinding(selectKeymap),
singleselect.WithPageSize(4),
singleselect.WithFilterInput(inputs),
).Display("选择数据位")
config.dataBits, _ = strconv.Atoi(datas[s])
s, _ = inf.NewSingleSelect(
stops,
singleselect.WithKeyBinding(selectKeymap),
singleselect.WithPageSize(4),
singleselect.WithFilterInput(inputs),
).Display("选择停止位")
config.stopBits = s
s, _ = inf.NewSingleSelect(
paritys,
singleselect.WithKeyBinding(selectKeymap),
singleselect.WithPageSize(4),
singleselect.WithFilterInput(inputs),
).Display("选择校验位")
config.parityBit = s
t, _ := inf.NewText(
text.WithPrompt("换行符:"),
text.WithPromptStyle(theme.DefaultTheme.PromptStyle),
text.WithDefaultValue(endStr.dv.string),
).Display()
config.endStr = t
v, _ = inf.NewConfirmWithSelection(
confirm.WithDefaultYes(),
confirm.WithPrompt("启用编码转换"),
).Display()
if v {
t, _ = inf.NewText(
text.WithPrompt("输入编码:"),
text.WithPromptStyle(theme.DefaultTheme.PromptStyle),
text.WithDefaultValue(inputCode.dv.string),
).Display()
config.inputCode = t
t, _ = inf.NewText(
text.WithPrompt("输出编码:"),
text.WithPromptStyle(theme.DefaultTheme.PromptStyle),
text.WithDefaultValue(outputCode.dv.string),
).Display()
config.outputCode = t
}
s, _ = inf.NewSingleSelect(
forwards,
singleselect.WithKeyBinding(selectKeymap),
singleselect.WithPageSize(3),
singleselect.WithFilterInput(inputs),
).Display("选择转发模式")
if s != 0 {
config.forWard = s
t, _ = inf.NewText(
text.WithPrompt("地址:"),
text.WithPromptStyle(theme.DefaultTheme.PromptStyle),
text.WithDefaultValue(address.dv.string),
).Display()
config.address = t
}
e, _ := inf.NewConfirmWithSelection(
confirm.WithDefaultYes(),
confirm.WithPrompt("启用日志"),
).Display()
config.enableLog = e
if e {
t, _ = inf.NewText(
text.WithPrompt("Path:"),
text.WithPromptStyle(theme.DefaultTheme.PromptStyle),
text.WithDefaultValue(logFilePath.dv.string),
).Display()
config.logFilePath = t
}
}
}
+25 -2
View File
@@ -3,12 +3,35 @@ module COM
go 1.22 go 1.22
require ( require (
github.com/fzdwx/infinite v0.12.1
github.com/zimolab/charsetconv v0.1.2 github.com/zimolab/charsetconv v0.1.2
go.bug.st/serial v1.6.2 go.bug.st/serial v1.6.2
) )
require ( require (
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/charmbracelet/bubbles v0.16.1 // indirect
github.com/charmbracelet/bubbletea v0.24.2 // indirect
github.com/charmbracelet/lipgloss v0.7.1 // indirect
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect
github.com/creack/goselect v0.1.2 // indirect github.com/creack/goselect v0.1.2 // indirect
golang.org/x/sys v0.4.0 // indirect github.com/duke-git/lancet/v2 v2.2.1 // indirect
golang.org/x/text v0.6.0 // indirect github.com/fzdwx/iter v0.0.0-20230511075109-0afee9319312 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.15.1 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/rotisserie/eris v0.5.4 // indirect
github.com/sahilm/fuzzy v0.1.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
golang.org/x/sync v0.2.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.9.0 // indirect
) )
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 633 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

+32 -12
View File
@@ -8,6 +8,7 @@ import (
"go.bug.st/serial" "go.bug.st/serial"
"io" "io"
"log" "log"
"net"
"os" "os"
"strings" "strings"
) )
@@ -49,13 +50,23 @@ func init() {
for _, f := range flags { for _, f := range flags {
flagInit(&f) flagInit(&f)
} }
flag.Func("h", "获取帮助", func(s string) error {
ports, err := checkPortAvailability(s)
if err != nil {
fmt.Println(err)
printUsage(ports)
os.Exit(0)
}
return err
})
cmdinit() cmdinit()
} }
func input(in io.Reader) { func input(in io.Reader) {
input := bufio.NewScanner(in) input := bufio.NewScanner(in)
var ok = false var ok = false
for input.Scan() { for {
input.Scan()
ok = false ok = false
args = strings.Split(input.Text(), " ") args = strings.Split(input.Text(), " ")
for _, cmd := range commands { for _, cmd := range commands {
@@ -74,7 +85,7 @@ func input(in io.Reader) {
log.Fatal(err) log.Fatal(err)
} }
} }
err := serialPort.Drain() err = serialPort.Drain()
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }
@@ -88,10 +99,10 @@ func strout(out io.Writer, cs, str string) {
} }
} }
func output(out io.Writer) { func output() {
if strings.Compare(config.inputCode, "hex") == 0 { if strings.Compare(config.inputCode, "hex") == 0 {
b := make([]byte, 16) b := make([]byte, 16)
r, _ := io.LimitReader(serialPort, 16).Read(b) r, _ := io.LimitReader(serialPort, int64(config.frameSize)).Read(b)
if r != 0 { if r != 0 {
strout(out, config.outputCode, fmt.Sprintf("% X %q \n", b, b)) strout(out, config.outputCode, fmt.Sprintf("% X %q \n", b, b))
} }
@@ -104,6 +115,10 @@ func output(out io.Writer) {
} }
func main() { func main() {
flag.Parse() flag.Parse()
if config.portName == "" {
getCliFlag()
}
ports, err := checkPortAvailability(config.portName) ports, err := checkPortAvailability(config.portName)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
@@ -123,21 +138,26 @@ func main() {
defer func(port serial.Port) { defer func(port serial.Port) {
err := port.Close() err := port.Close()
if err != nil { if err != nil {
log.Fatal(err)
} }
}(serialPort) }(serialPort)
if FoeWardMode(config.forWard) != NOT { if FoeWardMode(config.forWard) != NOT {
conn := setForWard() conn := setForWardClient()
ins = append(ins, conn) ins = append(ins, conn)
outs = append(outs, conn) outs = append(outs, conn)
defer conn.Close() defer func(conn net.Conn) {
err := conn.Close()
if err != nil {
log.Fatal(err)
}
}(conn)
}
if len(ins) != 0 {
for _, reader := range ins {
go input(reader)
} }
if len(ins) != 1 {
in = io.MultiReader(ins...)
} }
go input(in)
if config.enableLog { if config.enableLog {
f, err := os.OpenFile(config.logFilePath, os.O_RDWR|os.O_APPEND|os.O_CREATE, 0666) f, err := os.OpenFile(config.logFilePath, os.O_RDWR|os.O_APPEND|os.O_CREATE, 0666)
if err != nil { if err != nil {
@@ -149,6 +169,6 @@ func main() {
out = io.MultiWriter(outs...) out = io.MultiWriter(outs...)
} }
for { for {
output(out) output()
} }
} }