Merge branch 'master' of https://git.code.tencent.com/beijing-rtss-test/bj-rtsts-server-go
This commit is contained in:
commit
583fea2654
@ -16,6 +16,7 @@ import (
|
||||
"joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/memory"
|
||||
"joylink.club/bj-rtsts-server/config"
|
||||
"joylink.club/bj-rtsts-server/dto"
|
||||
"joylink.club/bj-rtsts-server/dto/request_proto"
|
||||
apiproto "joylink.club/bj-rtsts-server/grpcproto"
|
||||
"joylink.club/bj-rtsts-server/middleware"
|
||||
"joylink.club/bj-rtsts-server/service"
|
||||
@ -230,23 +231,24 @@ func removeTrain(c *gin.Context) {
|
||||
// @Accept json
|
||||
// @Produce json
|
||||
// @Param Authorization header string true "JWT Token"
|
||||
// @Param RemoveTrainDto body dto.SwitchOperationReqDto true "ATS测试仿真-操作道岔"
|
||||
// @Param TurnoutOperationReq body request_proto.TurnoutOperationReq true "ATS测试仿真-操作道岔"
|
||||
//
|
||||
// @Success 200 {object} string
|
||||
// @Failure 500 {object} dto.ErrorDto
|
||||
// @Router /api/v1/simulation/switch/operation [post]
|
||||
func switchOperation(c *gin.Context) {
|
||||
req := &dto.SwitchOperationReqDto{}
|
||||
req := &request_proto.TurnoutOperationReq{}
|
||||
if err := c.ShouldBind(&req); err != nil {
|
||||
panic(dto.ErrorDto{Code: dto.ArgumentParseError, Message: err.Error()})
|
||||
}
|
||||
simulation := checkDeviceDataAndReturn(req.SimulationId)
|
||||
slog.Info("传入状态参数", req)
|
||||
memory.ChangeTurnoutState(simulation, &state.SwitchState{
|
||||
Id: req.DeviceId,
|
||||
Normal: req.TurnNormal,
|
||||
Reverse: req.TurnReverse,
|
||||
}, req.MapId)
|
||||
memory.HandleTurnoutOperation(simulation, req)
|
||||
// memory.ChangeTurnoutState(simulation, &state.SwitchState{
|
||||
// Id: req.DeviceId,
|
||||
// Normal: req.TurnNormal,
|
||||
// Reverse: req.TurnReverse,
|
||||
// }, req.MapId)
|
||||
c.JSON(http.StatusOK, "ok")
|
||||
}
|
||||
|
||||
@ -271,7 +273,7 @@ func signalOperation(c *gin.Context) {
|
||||
if err := c.ShouldBind(&req); err != nil {
|
||||
panic(dto.ErrorDto{Code: dto.ArgumentParseError, Message: err.Error()})
|
||||
}
|
||||
simulation := checkDeviceDataAndReturn(req.SimulationId)
|
||||
// simulation := checkDeviceDataAndReturn(req.SimulationId)
|
||||
slog.Info("传入状态参数", req)
|
||||
memory.ChangeSignalState(simulation, req.MapId, req.DeviceId, req.Aspect)
|
||||
c.JSON(http.StatusOK, "ok")
|
||||
|
@ -2,6 +2,7 @@ package memory
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"joylink.club/bj-rtsts-server/ats/verify/protos/graphicData"
|
||||
"joylink.club/bj-rtsts-server/ats/verify/protos/state"
|
||||
"joylink.club/ecs"
|
||||
|
@ -5,11 +5,13 @@ import (
|
||||
|
||||
"joylink.club/ecs"
|
||||
"joylink.club/rtsssimulation/component"
|
||||
"joylink.club/rtsssimulation/component/component_proto"
|
||||
"joylink.club/rtsssimulation/entity"
|
||||
"joylink.club/rtsssimulation/fi"
|
||||
|
||||
"joylink.club/bj-rtsts-server/ats/verify/protos/graphicData"
|
||||
"joylink.club/bj-rtsts-server/ats/verify/protos/state"
|
||||
"joylink.club/bj-rtsts-server/dto/request_proto"
|
||||
)
|
||||
|
||||
// 道岔相关道岔操作方法
|
||||
@ -22,6 +24,31 @@ func ChangeTurnoutState(simulation *VerifySimulation, status *state.SwitchState,
|
||||
}
|
||||
}
|
||||
|
||||
// 处理道岔操作
|
||||
func HandleTurnoutOperation(simulation *VerifySimulation, req *request_proto.TurnoutOperationReq) {
|
||||
uid := QueryUidByMidAndComId(req.MapId, req.DeviceId, &graphicData.Turnout{})
|
||||
switch req.Operation {
|
||||
case request_proto.Turnout_DC:
|
||||
fi.DriveTurnoutDCOn(simulation.World, uid)
|
||||
case request_proto.Turnout_CancelDC:
|
||||
fi.DriveTurnoutDCOff(simulation.World, uid)
|
||||
case request_proto.Turnout_FC:
|
||||
fi.DriveTurnoutFCOn(simulation.World, uid)
|
||||
case request_proto.Turnout_CancelFC:
|
||||
fi.DriveTurnoutFCOff(simulation.World, uid)
|
||||
case request_proto.Turnout_SetSB:
|
||||
fi.SetTurnoutFault(simulation.World, uid, component_proto.Turnout_SB)
|
||||
case request_proto.Turnout_CancelSB:
|
||||
fi.CancelTurnoutFault(simulation.World, uid, component_proto.Turnout_SB)
|
||||
case request_proto.Turnout_SetJC:
|
||||
fi.SetTurnoutFault(simulation.World, uid, component_proto.Turnout_JC)
|
||||
case request_proto.Turnout_CancelJC:
|
||||
fi.CancelTurnoutFault(simulation.World, uid, component_proto.Turnout_JC)
|
||||
default:
|
||||
panic(fmt.Sprintf("未知的道岔操作:%s", req.Operation))
|
||||
}
|
||||
}
|
||||
|
||||
// 获取全部的道岔状态,动力学使用
|
||||
func GetAllTurnoutState(sim *VerifySimulation) []*state.SwitchState {
|
||||
var switchArr []*state.SwitchState
|
||||
|
29
docs/docs.go
29
docs/docs.go
@ -2987,11 +2987,11 @@ const docTemplate = `{
|
||||
},
|
||||
{
|
||||
"description": "ATS测试仿真-操作道岔",
|
||||
"name": "RemoveTrainDto",
|
||||
"name": "TurnoutOperationReq",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"$ref": "#/definitions/dto.SwitchOperationReqDto"
|
||||
"$ref": "#/definitions/request_proto.TurnoutOperationReq"
|
||||
}
|
||||
}
|
||||
],
|
||||
@ -4791,31 +4791,6 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"dto.SwitchOperationReqDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"id",
|
||||
"mapId",
|
||||
"simulationId"
|
||||
],
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"mapId": {
|
||||
"type": "integer"
|
||||
},
|
||||
"simulationId": {
|
||||
"type": "string"
|
||||
},
|
||||
"turnNormal": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"turnReverse": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dto.TokenRespDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -2980,11 +2980,11 @@
|
||||
},
|
||||
{
|
||||
"description": "ATS测试仿真-操作道岔",
|
||||
"name": "RemoveTrainDto",
|
||||
"name": "TurnoutOperationReq",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"$ref": "#/definitions/dto.SwitchOperationReqDto"
|
||||
"$ref": "#/definitions/request_proto.TurnoutOperationReq"
|
||||
}
|
||||
}
|
||||
],
|
||||
@ -4784,31 +4784,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"dto.SwitchOperationReqDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"id",
|
||||
"mapId",
|
||||
"simulationId"
|
||||
],
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"mapId": {
|
||||
"type": "integer"
|
||||
},
|
||||
"simulationId": {
|
||||
"type": "string"
|
||||
},
|
||||
"turnNormal": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"turnReverse": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dto.TokenRespDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -257,23 +257,6 @@ definitions:
|
||||
simulationId:
|
||||
type: string
|
||||
type: object
|
||||
dto.SwitchOperationReqDto:
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
mapId:
|
||||
type: integer
|
||||
simulationId:
|
||||
type: string
|
||||
turnNormal:
|
||||
type: boolean
|
||||
turnReverse:
|
||||
type: boolean
|
||||
required:
|
||||
- id
|
||||
- mapId
|
||||
- simulationId
|
||||
type: object
|
||||
dto.TokenRespDto:
|
||||
properties:
|
||||
code:
|
||||
@ -2414,10 +2397,10 @@ paths:
|
||||
type: string
|
||||
- description: ATS测试仿真-操作道岔
|
||||
in: body
|
||||
name: RemoveTrainDto
|
||||
name: TurnoutOperationReq
|
||||
required: true
|
||||
schema:
|
||||
$ref: '#/definitions/dto.SwitchOperationReqDto'
|
||||
$ref: '#/definitions/request_proto.TurnoutOperationReq'
|
||||
produces:
|
||||
- application/json
|
||||
responses:
|
||||
|
13
dto/simulation_dto/turnout.go
Normal file
13
dto/simulation_dto/turnout.go
Normal file
@ -0,0 +1,13 @@
|
||||
package simulationdto
|
||||
|
||||
import (
|
||||
"joylink.club/bj-rtsts-server/dto/request_proto"
|
||||
)
|
||||
|
||||
// 道岔操作请求DTO
|
||||
type TurnoutOperationReqDto struct {
|
||||
SimulationId string `form:"simulationId" json:"simulationId" binding:"required"`
|
||||
MapId int32 `json:"mapId" from:"mapId" binding:"required"`
|
||||
DeviceId string `form:"id" json:"id" binding:"required"`
|
||||
Operation request_proto.Turnout_Operation `form:"operation" json:"operation" binding:"required"`
|
||||
}
|
27
dto/simulation_dto/turnout_test.go
Normal file
27
dto/simulation_dto/turnout_test.go
Normal file
@ -0,0 +1,27 @@
|
||||
package simulationdto_test
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"joylink.club/bj-rtsts-server/dto/request_proto"
|
||||
)
|
||||
|
||||
func TestTurnoutOperationReqDto(t *testing.T) {
|
||||
b, err := json.Marshal(&request_proto.TurnoutOperationReq{
|
||||
SimulationId: "1",
|
||||
MapId: 2,
|
||||
DeviceId: "3",
|
||||
Operation: 2,
|
||||
})
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
var o request_proto.TurnoutOperationReq
|
||||
err = json.Unmarshal(b, &o)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
assert.Equal(t, request_proto.Turnout_Operation(2), o.Operation)
|
||||
}
|
Loading…
Reference in New Issue
Block a user