2023-08-29 14:59:31 +08:00
|
|
|
package repository
|
|
|
|
|
2023-09-06 16:20:36 +08:00
|
|
|
import (
|
|
|
|
"fmt"
|
2023-10-19 16:38:46 +08:00
|
|
|
"math"
|
2023-09-28 09:20:28 +08:00
|
|
|
|
2023-09-06 16:20:36 +08:00
|
|
|
"joylink.club/rtsssimulation/repository/model/proto"
|
|
|
|
)
|
2023-08-29 14:59:31 +08:00
|
|
|
|
|
|
|
type Repository struct {
|
2023-09-28 14:10:15 +08:00
|
|
|
id string
|
|
|
|
version string
|
2023-10-19 16:38:46 +08:00
|
|
|
coordinate *MapCoordinate // 基准坐标系类型,在列车画图时统一坐标系
|
2023-09-28 14:10:15 +08:00
|
|
|
physicalSectionMap map[string]*PhysicalSection
|
|
|
|
checkPointMap map[string]*CheckPoint
|
|
|
|
turnoutMap map[string]*Turnout
|
|
|
|
signalMap map[string]*Signal
|
|
|
|
responderMap map[string]*Transponder
|
|
|
|
slopeMap map[string]*Slope
|
|
|
|
sectionalCurvatureMap map[string]*SectionalCurvature
|
|
|
|
kilometerConvertMap map[string]*proto.KilometerConvert
|
|
|
|
relayMap map[string]*Relay
|
|
|
|
phaseFailureProtectorMap map[string]*PhaseFailureProtector
|
2023-10-10 11:05:26 +08:00
|
|
|
buttonMap map[string]*Button
|
2023-10-12 17:55:40 +08:00
|
|
|
psdMap map[string]*Psd
|
2023-10-13 15:26:25 +08:00
|
|
|
lightMap map[string]*Light
|
|
|
|
alarmMap map[string]*Alarm
|
|
|
|
stationMap map[string]*Station
|
2023-10-17 10:26:31 +08:00
|
|
|
mkxMap map[string]*Mkx
|
2023-10-20 13:13:44 +08:00
|
|
|
keyMap map[string]*Key
|
|
|
|
linkMap map[string]*Link
|
2023-11-01 16:52:03 +08:00
|
|
|
platformMap map[string]*Platform
|
2023-10-31 08:55:29 +08:00
|
|
|
centralizedMap map[string]*proto.CentralizedStationRef
|
2023-08-29 14:59:31 +08:00
|
|
|
}
|
|
|
|
|
2023-09-20 15:14:38 +08:00
|
|
|
func newRepository(id string, version string) *Repository {
|
2023-08-29 18:01:32 +08:00
|
|
|
return &Repository{
|
2023-09-28 14:10:15 +08:00
|
|
|
id: id,
|
|
|
|
version: version,
|
|
|
|
physicalSectionMap: make(map[string]*PhysicalSection),
|
|
|
|
checkPointMap: make(map[string]*CheckPoint),
|
|
|
|
turnoutMap: make(map[string]*Turnout),
|
|
|
|
signalMap: make(map[string]*Signal),
|
|
|
|
responderMap: make(map[string]*Transponder),
|
|
|
|
slopeMap: make(map[string]*Slope),
|
|
|
|
sectionalCurvatureMap: make(map[string]*SectionalCurvature),
|
|
|
|
kilometerConvertMap: make(map[string]*proto.KilometerConvert),
|
|
|
|
relayMap: make(map[string]*Relay),
|
|
|
|
phaseFailureProtectorMap: make(map[string]*PhaseFailureProtector),
|
|
|
|
linkMap: make(map[string]*Link),
|
2023-10-10 11:05:26 +08:00
|
|
|
buttonMap: make(map[string]*Button),
|
2023-10-12 17:55:40 +08:00
|
|
|
psdMap: make(map[string]*Psd),
|
2023-10-13 16:24:28 +08:00
|
|
|
lightMap: make(map[string]*Light),
|
|
|
|
alarmMap: make(map[string]*Alarm),
|
|
|
|
stationMap: make(map[string]*Station),
|
2023-10-17 10:26:31 +08:00
|
|
|
mkxMap: make(map[string]*Mkx),
|
2023-10-20 13:13:44 +08:00
|
|
|
keyMap: make(map[string]*Key),
|
2023-11-01 16:52:03 +08:00
|
|
|
platformMap: make(map[string]*Platform),
|
2023-10-31 08:58:40 +08:00
|
|
|
centralizedMap: make(map[string]*proto.CentralizedStationRef),
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 15:39:03 +08:00
|
|
|
// FindById 根据模型的复合id获取模型数据
|
|
|
|
func (repo *Repository) FindById(id string) Identity {
|
|
|
|
if md, ok := repo.turnoutMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
|
|
|
if md, ok := repo.signalMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
|
|
|
if md, ok := repo.relayMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
2023-11-09 14:18:02 +08:00
|
|
|
if md, ok := repo.physicalSectionMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
|
|
|
if md, ok := repo.checkPointMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
|
|
|
if md, ok := repo.responderMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
|
|
|
if md, ok := repo.stationMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
|
|
|
if md, ok := repo.platformMap[id]; ok {
|
|
|
|
return md
|
|
|
|
}
|
2023-09-25 15:39:03 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-09-20 15:14:38 +08:00
|
|
|
func (repo *Repository) PhysicalSectionList() []*PhysicalSection {
|
|
|
|
var list []*PhysicalSection
|
|
|
|
for _, model := range repo.physicalSectionMap {
|
|
|
|
list = append(list, model)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
2023-09-20 15:14:38 +08:00
|
|
|
return list
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
2023-09-20 15:14:38 +08:00
|
|
|
func (repo *Repository) CheckPointList() []*CheckPoint {
|
|
|
|
var list []*CheckPoint
|
|
|
|
for _, model := range repo.checkPointMap {
|
|
|
|
list = append(list, model)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
func (repo *Repository) TurnoutList() []*Turnout {
|
2023-09-20 15:14:38 +08:00
|
|
|
var list []*Turnout
|
|
|
|
for _, model := range repo.turnoutMap {
|
|
|
|
list = append(list, model)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
func (repo *Repository) SignalList() []*Signal {
|
2023-09-20 15:14:38 +08:00
|
|
|
var list []*Signal
|
|
|
|
for _, model := range repo.signalMap {
|
|
|
|
list = append(list, model)
|
2023-08-29 18:01:32 +08:00
|
|
|
}
|
2023-09-06 16:20:36 +08:00
|
|
|
return list
|
2023-08-29 18:01:32 +08:00
|
|
|
}
|
2023-09-14 15:06:51 +08:00
|
|
|
func (repo *Repository) ResponderList() []*Transponder {
|
2023-09-20 15:14:38 +08:00
|
|
|
var list []*Transponder
|
|
|
|
for _, model := range repo.responderMap {
|
|
|
|
list = append(list, model)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
return list
|
2023-08-29 18:01:32 +08:00
|
|
|
}
|
2023-09-06 16:20:36 +08:00
|
|
|
func (repo *Repository) SlopeList() []*Slope {
|
2023-09-20 15:14:38 +08:00
|
|
|
var list []*Slope
|
|
|
|
for _, model := range repo.slopeMap {
|
|
|
|
list = append(list, model)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
return list
|
2023-08-29 18:01:32 +08:00
|
|
|
}
|
2023-09-06 16:20:36 +08:00
|
|
|
func (repo *Repository) SectionalCurvatureList() []*SectionalCurvature {
|
2023-09-20 15:14:38 +08:00
|
|
|
var list []*SectionalCurvature
|
|
|
|
for _, model := range repo.sectionalCurvatureMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
func (repo *Repository) LinkList() []*Link {
|
|
|
|
var list []*Link
|
|
|
|
for _, model := range repo.linkMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
func (repo *Repository) KilometerConvertList() []*proto.KilometerConvert {
|
|
|
|
var list []*proto.KilometerConvert
|
|
|
|
for _, model := range repo.kilometerConvertMap {
|
|
|
|
list = append(list, model)
|
2023-09-22 15:13:24 +08:00
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
func (repo *Repository) RelayList() []*Relay {
|
|
|
|
var list []*Relay
|
|
|
|
for _, model := range repo.relayMap {
|
|
|
|
list = append(list, model)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
return list
|
2023-08-29 18:01:32 +08:00
|
|
|
}
|
|
|
|
|
2023-10-10 11:05:26 +08:00
|
|
|
func (repo *Repository) ButtonList() []*Button {
|
|
|
|
var list []*Button
|
|
|
|
for _, model := range repo.buttonMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2023-10-12 17:55:40 +08:00
|
|
|
func (repo *Repository) PsdList() []*Psd {
|
|
|
|
var list []*Psd
|
|
|
|
for _, model := range repo.psdMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2023-10-17 10:26:31 +08:00
|
|
|
func (repo *Repository) MkxList() []*Mkx {
|
|
|
|
var list []*Mkx
|
|
|
|
for _, model := range repo.mkxMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2023-10-10 11:05:26 +08:00
|
|
|
|
2023-10-17 15:05:13 +08:00
|
|
|
func (repo *Repository) StationList() []*Station {
|
|
|
|
var list []*Station
|
|
|
|
for _, model := range repo.stationMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
|
2023-10-20 13:13:44 +08:00
|
|
|
func (repo *Repository) KeyList() []*Key {
|
|
|
|
var list []*Key
|
|
|
|
for _, model := range repo.keyMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
|
2023-11-03 17:26:32 +08:00
|
|
|
func (repo *Repository) CiQcList() []*proto.CentralizedStationRef {
|
2023-10-31 09:24:39 +08:00
|
|
|
var list []*proto.CentralizedStationRef
|
|
|
|
for _, model := range repo.centralizedMap {
|
|
|
|
list = append(list, model)
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2023-11-07 17:47:41 +08:00
|
|
|
func (repo *Repository) GetCentralizedStationRef(centralizedStationId string) *proto.CentralizedStationRef {
|
|
|
|
return repo.centralizedMap[centralizedStationId]
|
|
|
|
}
|
2023-09-26 10:25:00 +08:00
|
|
|
func (repo *Repository) FindModel(deviceId string, deviceType proto.DeviceType) (Identity, error) {
|
2023-09-20 15:14:38 +08:00
|
|
|
switch deviceType {
|
|
|
|
case proto.DeviceType_DeviceType_PhysicalSection:
|
|
|
|
return repo.physicalSectionMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_CheckPoint:
|
|
|
|
return repo.checkPointMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_Turnout:
|
|
|
|
return repo.turnoutMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_Signal:
|
|
|
|
return repo.signalMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_Transponder:
|
|
|
|
return repo.responderMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_Slope:
|
|
|
|
return repo.slopeMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_SectionalCurvature:
|
|
|
|
return repo.sectionalCurvatureMap[deviceId], nil
|
|
|
|
case proto.DeviceType_DeviceType_Link:
|
|
|
|
return repo.linkMap[deviceId], nil
|
2023-11-01 16:52:03 +08:00
|
|
|
case proto.DeviceType_DeviceType_Psd:
|
|
|
|
return repo.psdMap[deviceId], nil
|
2023-09-20 15:14:38 +08:00
|
|
|
default:
|
2023-10-17 15:05:13 +08:00
|
|
|
return nil, fmt.Errorf("仓库中不存在[%s]类型的模型", deviceType)
|
2023-09-20 15:14:38 +08:00
|
|
|
}
|
|
|
|
}
|
2023-08-29 14:59:31 +08:00
|
|
|
|
2023-09-20 15:14:38 +08:00
|
|
|
func (repo *Repository) FindLink(id string) *Link {
|
|
|
|
return repo.linkMap[id]
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
2023-08-29 14:59:31 +08:00
|
|
|
|
2023-09-26 10:25:00 +08:00
|
|
|
func (repo *Repository) FindTurnout(id string) *Turnout {
|
|
|
|
return repo.turnoutMap[id]
|
|
|
|
}
|
|
|
|
|
2023-09-28 09:20:28 +08:00
|
|
|
func (repo *Repository) FindPhysicalSection(id string) *PhysicalSection {
|
|
|
|
return repo.physicalSectionMap[id]
|
|
|
|
}
|
|
|
|
|
2023-11-01 16:52:03 +08:00
|
|
|
func (repo *Repository) FindPsd(id string) *Psd {
|
|
|
|
return repo.psdMap[id]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *Repository) FindPlatfrom(id string) *Platform {
|
|
|
|
return repo.platformMap[id]
|
|
|
|
}
|
|
|
|
|
2023-09-20 15:14:38 +08:00
|
|
|
func (repo *Repository) AddPhysicalSection(section *PhysicalSection) {
|
|
|
|
repo.physicalSectionMap[section.Id()] = section
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
|
2023-10-20 15:05:56 +08:00
|
|
|
func (repo *Repository) ConvertKilometer(km *proto.Kilometer, cs string) (*proto.Kilometer, error) {
|
2023-09-28 14:22:21 +08:00
|
|
|
if km.CoordinateSystem == cs {
|
2023-10-20 15:05:56 +08:00
|
|
|
return km, nil
|
2023-09-28 14:22:21 +08:00
|
|
|
}
|
|
|
|
kc, err := repo.getKilometerConvert(km.CoordinateSystem, cs)
|
|
|
|
if err != nil {
|
2023-10-20 15:05:56 +08:00
|
|
|
return nil, err
|
|
|
|
// panic(err)
|
2023-09-28 14:22:21 +08:00
|
|
|
}
|
|
|
|
var sourceCsKm *proto.Kilometer
|
|
|
|
var targetCsKm *proto.Kilometer
|
|
|
|
if kc.KmA.CoordinateSystem == km.CoordinateSystem {
|
|
|
|
sourceCsKm = kc.KmA
|
|
|
|
targetCsKm = kc.KmB
|
|
|
|
} else {
|
|
|
|
sourceCsKm = kc.KmB
|
|
|
|
targetCsKm = kc.KmA
|
|
|
|
}
|
2023-09-28 14:57:51 +08:00
|
|
|
value := targetCsKm.Value + (km.Value - sourceCsKm.Value)
|
2023-09-28 14:22:21 +08:00
|
|
|
if value < 0 {
|
|
|
|
panic(fmt.Sprintf("公里标[%v]转换为坐标系[%s]的公里标的值[%d]小于0", km, cs, value))
|
|
|
|
}
|
2023-10-20 15:05:56 +08:00
|
|
|
return &proto.Kilometer{Value: value, CoordinateSystem: cs}, nil
|
2023-09-28 14:22:21 +08:00
|
|
|
}
|
|
|
|
|
2023-09-06 16:20:36 +08:00
|
|
|
func (repo *Repository) addKilometerConvert(kc *proto.KilometerConvert) {
|
2023-09-25 14:38:13 +08:00
|
|
|
repo.kilometerConvertMap[buildKilometerConvertKey(kc.KmA.CoordinateSystem, kc.KmB.CoordinateSystem)] = kc
|
|
|
|
repo.kilometerConvertMap[buildKilometerConvertKey(kc.KmB.CoordinateSystem, kc.KmA.CoordinateSystem)] = kc
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
2023-08-29 14:59:31 +08:00
|
|
|
|
2023-09-25 14:38:13 +08:00
|
|
|
func (repo *Repository) getKilometerConvert(cs1, cs2 string) (*proto.KilometerConvert, error) {
|
|
|
|
convert := repo.kilometerConvertMap[buildKilometerConvertKey(cs1, cs2)]
|
2023-09-06 16:20:36 +08:00
|
|
|
if convert == nil {
|
2023-10-17 15:05:13 +08:00
|
|
|
return nil, fmt.Errorf("没有[%s-%s]的公里标转换数据", cs1, cs2)
|
2023-09-06 16:20:36 +08:00
|
|
|
}
|
|
|
|
return convert, nil
|
|
|
|
}
|
2023-09-20 15:14:38 +08:00
|
|
|
|
2023-10-19 16:38:46 +08:00
|
|
|
// 获取地图坐标信息
|
2023-10-20 15:05:56 +08:00
|
|
|
func (repo *Repository) generateCoordinateInfo(coordinateSystem string) error {
|
2023-10-19 16:38:46 +08:00
|
|
|
coordinate := &MapCoordinate{
|
2023-10-19 17:36:39 +08:00
|
|
|
Coordinate: "MAIN_LINE",
|
2023-10-19 16:38:46 +08:00
|
|
|
MinCoordinate: int64(math.MaxInt64),
|
|
|
|
MaxCoordinate: int64(math.MinInt64),
|
|
|
|
}
|
2023-10-19 17:36:39 +08:00
|
|
|
if coordinateSystem != "" {
|
|
|
|
coordinate.Coordinate = coordinateSystem
|
|
|
|
}
|
2023-10-19 16:38:46 +08:00
|
|
|
for _, data := range repo.checkPointMap {
|
|
|
|
if data.km == nil || data.km.CoordinateSystem == "" {
|
|
|
|
continue
|
|
|
|
}
|
2023-10-20 15:05:56 +08:00
|
|
|
km, err := repo.ConvertKilometer(data.km, coordinate.Coordinate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-19 16:38:46 +08:00
|
|
|
if km.Value < coordinate.MinCoordinate {
|
|
|
|
coordinate.MinCoordinate = km.Value
|
|
|
|
}
|
|
|
|
if km.Value > coordinate.MaxCoordinate {
|
|
|
|
coordinate.MaxCoordinate = km.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if coordinate.Coordinate == "" {
|
2023-10-20 15:05:56 +08:00
|
|
|
return fmt.Errorf("无计轴公里标信息")
|
|
|
|
// panic("无计轴公里标信息")
|
2023-10-19 16:38:46 +08:00
|
|
|
}
|
|
|
|
repo.coordinate = coordinate
|
2023-10-20 15:05:56 +08:00
|
|
|
return nil
|
2023-10-19 16:38:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo Repository) GetCoordinateInfo() *MapCoordinate {
|
|
|
|
return repo.coordinate
|
|
|
|
}
|
|
|
|
|
2023-09-25 14:38:13 +08:00
|
|
|
func buildKilometerConvertKey(cs1 string, cs2 string) string {
|
|
|
|
return cs1 + cs2
|
2023-09-20 15:14:38 +08:00
|
|
|
}
|