2024-07-04 09:26:37 +08:00
|
|
|
|
package train_pc_sim
|
|
|
|
|
|
|
|
|
|
import (
|
2024-09-10 15:37:40 +08:00
|
|
|
|
"fmt"
|
2024-07-04 09:26:37 +08:00
|
|
|
|
"joylink.club/bj-rtsts-server/dto/state_proto"
|
|
|
|
|
"joylink.club/bj-rtsts-server/third_party/message"
|
|
|
|
|
"joylink.club/bj-rtsts-server/third_party/tcp"
|
2024-07-19 15:24:28 +08:00
|
|
|
|
"joylink.club/bj-rtsts-server/third_party/tpapi"
|
2024-07-11 14:58:34 +08:00
|
|
|
|
"log/slog"
|
2024-07-04 09:26:37 +08:00
|
|
|
|
)
|
|
|
|
|
|
2024-07-19 15:24:28 +08:00
|
|
|
|
type TrainPcReciverData struct {
|
|
|
|
|
tpapi.ThirdPartyApiService
|
|
|
|
|
clientKey string
|
|
|
|
|
tcpClient *tcp.TcpClient
|
|
|
|
|
pcSimManage TrainPcSimManage
|
2024-09-10 15:37:40 +08:00
|
|
|
|
state tpapi.ThirdPartyApiServiceState
|
|
|
|
|
speedPlace *message.TrainSpeedPlaceReportMsg
|
|
|
|
|
train *state_proto.TrainState
|
|
|
|
|
success bool
|
|
|
|
|
aPort bool
|
2024-07-04 09:26:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-19 15:24:28 +08:00
|
|
|
|
func (rd *TrainPcReciverData) Name() string {
|
|
|
|
|
return Name
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 服务状态
|
|
|
|
|
func (rd *TrainPcReciverData) State() tpapi.ThirdPartyApiServiceState {
|
|
|
|
|
return rd.state
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (d *TrainPcReciverData) updateState(state tpapi.ThirdPartyApiServiceState) {
|
|
|
|
|
d.state = state
|
|
|
|
|
}
|
|
|
|
|
func (d *TrainPcReciverData) readError(err error) {
|
|
|
|
|
slog.Error("连接车载pc仿真tcp服务断开", err)
|
|
|
|
|
d.updateState(tpapi.ThirdPartyState_Broken)
|
|
|
|
|
d.tcpClient = nil
|
|
|
|
|
}
|
2024-09-10 15:37:40 +08:00
|
|
|
|
|
2024-07-19 15:24:28 +08:00
|
|
|
|
func (d *TrainPcReciverData) ServiceDesc() string {
|
2024-09-10 15:37:40 +08:00
|
|
|
|
if d.aPort {
|
|
|
|
|
return fmt.Sprintf("%v-A端", d.clientKey)
|
|
|
|
|
} else {
|
|
|
|
|
return fmt.Sprintf("%v-B端", d.clientKey)
|
|
|
|
|
}
|
2024-07-19 15:24:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-09-10 15:37:40 +08:00
|
|
|
|
func (rd *TrainPcReciverData) receiverDataHandle(n int, data []byte) {
|
2024-07-19 15:24:28 +08:00
|
|
|
|
train := rd.train
|
2024-09-10 15:37:40 +08:00
|
|
|
|
//vs := train.VobcState
|
2024-07-19 15:24:28 +08:00
|
|
|
|
if train == nil {
|
|
|
|
|
slog.Error("车载输出数字量,未找到连接车载pc仿真的列车")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if !train.ConnState.Conn {
|
|
|
|
|
slog.Error("车载输出数字量,,列车未连接车载pc仿真")
|
|
|
|
|
return
|
2024-07-04 09:26:37 +08:00
|
|
|
|
}
|
2024-09-10 15:37:40 +08:00
|
|
|
|
//a := rd.tcpClient.RemoteInfo()
|
|
|
|
|
//slog.Info(fmt.Sprintf("nw:%v ,add:%v", a.Network(), a.String()), rd.aPort)
|
|
|
|
|
//slog.Info(fmt.Sprintf("接受atp信息 列车:%v 列车端口:%v ,钥匙1:%v,钥匙2:%v", train.Id, rd.aPort, train.VobcState.Tc1Active, train.VobcState.Tc2Active))
|
|
|
|
|
receiveData := data[:n]
|
|
|
|
|
trainPcMsgs := message.TrainPcSimDecode(receiveData)
|
|
|
|
|
|
2024-07-04 09:26:37 +08:00
|
|
|
|
for _, baseMsg := range trainPcMsgs {
|
2024-09-10 15:37:40 +08:00
|
|
|
|
|
2024-07-04 09:26:37 +08:00
|
|
|
|
switch baseMsg.Type {
|
|
|
|
|
//case RECIVE_TRAIN_CREATE_REMOVE:
|
|
|
|
|
// pc.trainPcSimManage.TrainPcSimConnOrRemoveHandle(baseMsg.Data[0])
|
2024-07-11 14:58:34 +08:00
|
|
|
|
case message.RECIVE_TRAIN_INTERFACE_CABINET_OUTR:
|
2024-09-10 15:37:40 +08:00
|
|
|
|
|
|
|
|
|
rd.pcSimManage.TrainPcSimDigitalOutInfoHandle(rd.aPort, rd.tcpClient, train, baseMsg.Data)
|
2024-08-15 14:54:16 +08:00
|
|
|
|
|
2024-07-04 09:26:37 +08:00
|
|
|
|
case message.RECIVE_TRAIN_INTERFACE_CABINET_OUTR_BACK:
|
2024-07-19 15:24:28 +08:00
|
|
|
|
rd.pcSimManage.TrainPcSimDigitalReportHandle(train, baseMsg.Data)
|
2024-07-04 09:26:37 +08:00
|
|
|
|
case message.RECIVE_TRAIN_QUERY_STATUS:
|
2024-09-10 18:55:15 +08:00
|
|
|
|
rd.pcSimManage.TrainBtmQuery2(train, baseMsg.Data, rd.aPort)
|
2024-07-04 09:26:37 +08:00
|
|
|
|
case message.RECIVE_TRAIN_MOCK_DATA:
|
2024-07-19 15:24:28 +08:00
|
|
|
|
rd.pcSimManage.TrainPcSimMockInfo(train, baseMsg.Data)
|
2024-07-04 09:26:37 +08:00
|
|
|
|
|
|
|
|
|
//case RECIVE_TRAIN_DOOR_MODE:
|
|
|
|
|
// pc.trainPcSimManage.TrainDoorModeHandle(baseMsg.Data[0])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|