|
@@ -67,6 +67,10 @@ func StartInductanceTCP() {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if len(deviceId) != 16 {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+
|
|
model.Mutex.Lock()
|
|
model.Mutex.Lock()
|
|
if existingConn, exists := model.ConnectionMap[deviceId]; exists {
|
|
if existingConn, exists := model.ConnectionMap[deviceId]; exists {
|
|
logger.Get().Printf("Connection from %s already exists for deviceId %d, closing new connection\n", remoteAddr, deviceId)
|
|
logger.Get().Printf("Connection from %s already exists for deviceId %d, closing new connection\n", remoteAddr, deviceId)
|
|
@@ -74,6 +78,7 @@ func StartInductanceTCP() {
|
|
delete(model.ConnectionMap, deviceId) // 清理旧连接
|
|
delete(model.ConnectionMap, deviceId) // 清理旧连接
|
|
}
|
|
}
|
|
model.ConnectionMap[deviceId] = conn
|
|
model.ConnectionMap[deviceId] = conn
|
|
|
|
+ logger.Get().Printf("lis Accept conn = %s, 添加进入 %s \n", remoteAddr, deviceId)
|
|
model.Mutex.Unlock()
|
|
model.Mutex.Unlock()
|
|
|
|
|
|
// 使用新的协程处理新的连接
|
|
// 使用新的协程处理新的连接
|
|
@@ -180,17 +185,24 @@ func parseData(data *model.QueueData) {
|
|
case "fe":
|
|
case "fe":
|
|
switch toString[4:8] { // 开关灯
|
|
switch toString[4:8] { // 开关灯
|
|
case "0000", "0001", "0002", "0003", "0004", "0005", "0006", "0007":
|
|
case "0000", "0001", "0002", "0003", "0004", "0005", "0006", "0007":
|
|
|
|
+ logger.Get().Println(dev.Sn + "-----" + toString)
|
|
|
|
+ zhi, _ := strconv.Atoi(toString[7:8])
|
|
if toString[8:12] == "0000" {
|
|
if toString[8:12] == "0000" {
|
|
- for i, loop := range dev.DeviceLoops {
|
|
|
|
- loop.State = 0
|
|
|
|
- dev.DeviceLoops[i] = loop
|
|
|
|
- }
|
|
|
|
|
|
+ dev.DeviceLoops[zhi].State = 0
|
|
} else if toString[8:12] == "ff00" {
|
|
} else if toString[8:12] == "ff00" {
|
|
- for i, loop := range dev.DeviceLoops {
|
|
|
|
- loop.State = 1
|
|
|
|
- dev.DeviceLoops[i] = loop
|
|
|
|
|
|
+ dev.DeviceLoops[zhi].State = 1
|
|
|
|
+ }
|
|
|
|
+ for i, device := range reg.Devices {
|
|
|
|
+ if device.Sn == data.Id {
|
|
|
|
+ reg.Devices[i] = dev
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ regions, err := utils.SaveRegionOnData(reg)
|
|
|
|
+ err = service.SaveData(regions)
|
|
|
|
+ if err != nil {
|
|
|
|
+ logger.Get().Errorln("设备回路状态" + err.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
}
|
|
}
|
|
switch toString[2:6] {
|
|
switch toString[2:6] {
|
|
case "0101":
|
|
case "0101":
|
|
@@ -201,12 +213,15 @@ func parseData(data *model.QueueData) {
|
|
service.Cron{}.RelayOnOffTimeTaskSn(data.Id)
|
|
service.Cron{}.RelayOnOffTimeTaskSn(data.Id)
|
|
}
|
|
}
|
|
reg.Devices[i].OnlineTime = time.Now()
|
|
reg.Devices[i].OnlineTime = time.Now()
|
|
- for i2, _ := range device.DeviceLoops {
|
|
|
|
- if toString[6:8] == "ff" || toString[6:8] == "0f" {
|
|
|
|
- device.DeviceLoops[i2].State = 1
|
|
|
|
- } else if toString[6:8] == "00" {
|
|
|
|
- device.DeviceLoops[i2].State = 0
|
|
|
|
- }
|
|
|
|
|
|
+ two, err := utils.SixteenTurnsTwo(toString[6:8])
|
|
|
|
+ if err != nil {
|
|
|
|
+ logger.Get().Errorln("16转2进制" + err.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ for i2, _ := range reg.Devices[i].DeviceLoops {
|
|
|
|
+ state := string(two[7-i2])
|
|
|
|
+ zhi, _ := strconv.Atoi(state)
|
|
|
|
+ reg.Devices[i].DeviceLoops[i2].State = zhi
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -220,7 +235,6 @@ func parseData(data *model.QueueData) {
|
|
case "01":
|
|
case "01":
|
|
switch toString[2:6] {
|
|
switch toString[2:6] {
|
|
case "0336":
|
|
case "0336":
|
|
- logger.Get().Println(data.Id + "----" + toString)
|
|
|
|
batteryVoltage, _ := strconv.ParseInt(toString[6:10], 16, 64)
|
|
batteryVoltage, _ := strconv.ParseInt(toString[6:10], 16, 64)
|
|
batteryCurrent, _ := strconv.ParseInt(toString[10:14], 16, 64)
|
|
batteryCurrent, _ := strconv.ParseInt(toString[10:14], 16, 64)
|
|
batteryPlateVoltage, _ := strconv.ParseInt(toString[38:42], 16, 64)
|
|
batteryPlateVoltage, _ := strconv.ParseInt(toString[38:42], 16, 64)
|