rts-sim-testing-service/third_party/message/interlock.go

140 lines
3.6 KiB
Go
Raw Normal View History

2023-10-24 09:14:54 +08:00
package message
import "fmt"
// 消息包头解析
type InterlockMsgPkgHeader struct {
Header1 byte //包头1 1个字节
Header2 byte //包头2 1个字节
TypeCode uint8 //类型码 1个字节 0x02
SerialNumber uint8 //序列号 1个字节 序列号0~255
Reserve1 byte //预留 1个字节
Reserve2 byte //预留 1个字节
}
func (h *InterlockMsgPkgHeader) Encode() []byte {
return []byte{h.Header1, h.Header2, h.TypeCode, h.SerialNumber, h.Reserve1, h.Reserve2}
}
func (h *InterlockMsgPkgHeader) Decode(buf []byte) error {
if len(buf) < 6 {
return fmt.Errorf("数据少于6个字节")
}
h.Header1 = buf[0]
h.Header2 = buf[1]
h.TypeCode = buf[2]
h.SerialNumber = buf[3]
h.Reserve1 = buf[4]
h.Reserve2 = buf[5]
return nil
}
// 消息包尾解析
type InterlockMsgPkgTail struct {
Tail []byte // 包尾2个字节
}
func (t *InterlockMsgPkgTail) Encode() []byte {
if len(t.Tail) == 0 {
return make([]byte, 2)
}
return t.Tail
}
func (t *InterlockMsgPkgTail) Decode(buf []byte) error {
if len(buf) < 2 {
return fmt.Errorf("数据少于2个字节")
}
t.Tail = buf[len(buf)-2:]
return nil
}
// 发送给联锁的采集数据
type InterlockSendMsgPkg struct {
Header *InterlockMsgPkgHeader // 包头
2023-10-24 10:57:04 +08:00
Info []bool // 发给联锁的状态数据
2023-10-24 09:14:54 +08:00
Tail *InterlockMsgPkgTail // 包尾
}
2023-10-24 10:57:04 +08:00
var boolsToByteArrLen int = 8
2023-10-24 09:14:54 +08:00
func (m *InterlockSendMsgPkg) Encode() []byte {
var data []byte
data = append(data, m.Header.Encode()...)
2023-10-24 10:57:04 +08:00
for index, length, cycles := 0, len(m.Info), len(m.Info)/boolsToByteArrLen; index < cycles; index++ {
startIndex := index * boolsToByteArrLen
toByteArr := [8]bool{}
for i := 0; i < boolsToByteArrLen && startIndex < length; i++ {
startIndex = startIndex + i
toByteArr[i] = m.Info[startIndex+i]
}
data = append(data, boolsToByte(toByteArr))
}
2023-10-24 09:14:54 +08:00
data = append(data, m.Tail.Encode()...)
return data
}
2023-10-24 10:57:04 +08:00
// bool数组转byte
func boolsToByte(flags [8]bool) byte {
var result uint8
2023-10-25 11:09:29 +08:00
for index, b := range flags {
2023-10-24 10:57:04 +08:00
if b {
2023-10-25 11:09:29 +08:00
result = result + (1 << index)
2023-10-24 10:57:04 +08:00
}
}
return result
}
2023-10-24 09:14:54 +08:00
// 收到联锁发来的驱动数据
type InterlockReceiveMsgPkg struct {
toagent_len int32
et_out_num int32
tcc_output_len int32
Header *InterlockMsgPkgHeader // 包头
2023-10-24 10:57:04 +08:00
SyncZone []bool // 同步区状态
DriveInfo []bool // 驱动数据
TccInfo []bool // 应答器报文
2023-10-24 09:14:54 +08:00
Tail *InterlockMsgPkgTail // 包尾
}
// ET_OUT_NUM、TOAGENTLEN、TCC_OUTPUT_LEN应答器数量*131的具体数值取决于数据配置。
func NewInterlockReceiveMsgPkg(tlen, etLen, tccLen int32) *InterlockReceiveMsgPkg {
return &InterlockReceiveMsgPkg{
toagent_len: tlen,
et_out_num: etLen,
tcc_output_len: tccLen,
Header: &InterlockMsgPkgHeader{},
Tail: &InterlockMsgPkgTail{},
}
}
func (t *InterlockReceiveMsgPkg) Decode(buf []byte) error {
var preIndex, lastIndex int32 = 0, 6
// 包头
t.Header.Decode(buf[preIndex:lastIndex])
// 同步区状态
preIndex = lastIndex
lastIndex = lastIndex + t.toagent_len
2023-10-24 10:57:04 +08:00
t.parseByte(t.SyncZone, buf, preIndex, lastIndex)
2023-10-24 09:14:54 +08:00
// 驱动数据
preIndex = lastIndex
lastIndex = lastIndex + t.et_out_num
2023-10-24 10:57:04 +08:00
t.parseByte(t.DriveInfo, buf, preIndex, lastIndex)
2023-10-24 09:14:54 +08:00
// 应答器报文
preIndex = lastIndex
lastIndex = lastIndex + t.tcc_output_len
2023-10-24 10:57:04 +08:00
t.parseByte(t.TccInfo, buf, preIndex, lastIndex)
2023-10-24 09:14:54 +08:00
// 包尾
t.Tail.Decode(buf)
return nil
}
2023-10-24 10:57:04 +08:00
func (t *InterlockReceiveMsgPkg) parseByte(r []bool, buf []byte, start, end int32) {
for i := start; i < end; i++ {
b := buf[i]
for bit := 7; bit >= 0; bit-- {
r = append(r, (b&(1<<bit)) != 0)
}
}
}