12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package lc
- import (
- "lc-smartX/util"
- "lc-smartX/util/gopool"
- "time"
- )
- type SmartXServer interface {
- Serve()
- }
- func StartSmartXServer(s SmartXServer) {
- s.Serve()
- }
- type IntersectionServer struct {
- MainState byte
- SubState byte
- MainDevices []IDevice
- SubDevices []IDevice
- ReTicker *time.Ticker
- Main *time.Ticker
- Sub *time.Ticker
- }
- type MainNotifier struct{ s *IntersectionServer }
- // Notify 主路来车,通知支路设备
- func (m MainNotifier) Notify() {
- m.s.Main.Reset(5 * time.Second)
- if m.s.MainState != 1 {
- m.s.MainState = 1
- for _, v := range m.s.SubDevices {
- gopool.Go(v.Call)
- }
- }
- }
- type SubNotifier struct{ s *IntersectionServer }
- // Notify 支路来车,通知主路设备
- func (sub SubNotifier) Notify() {
- sub.s.Sub.Reset(5 * time.Second)
- if sub.s.SubState != 1 {
- sub.s.SubState = 1
- for _, v := range sub.s.MainDevices {
- gopool.Go(v.Call)
- }
- }
- }
- func (is *IntersectionServer) Serve() {
- RegisterCallback(1, &SubNotifier{is})
- RegisterCallback(0, &MainNotifier{is})
- //先创建响应设备
- for _, v := range util.Config.OutputDevices {
- iDevice := &IntersectionDevice{
- Info: v,
- Screen: NewScreen(v.Name, v.ScreenIp, v.ScreenPort),
- }
- if iDevice.Info.Branch == 1 {
- is.MainDevices = append(is.MainDevices, iDevice)
- } else {
- is.SubDevices = append(is.SubDevices, iDevice)
- }
- }
- for {
- select {
- case <-is.Main.C: //检查主路状态->支路输出设备回到初始状态
- for _, v := range is.SubDevices {
- if is.MainState == 1 {
- gopool.Go(v.Rollback)
- }
- }
- is.MainState = 0
- case <-is.Sub.C: //检查支路状态->主路输出设备作出响应
- for _, v := range is.MainDevices {
- if is.SubState == 1 {
- gopool.Go(v.Rollback)
- }
- }
- is.SubState = 0
- case <-is.ReTicker.C: //每19s检查并尝试重连
- gopool.Go(func() {
- for _, v := range is.MainDevices {
- gopool.Go(v.Reconnect)
- }
- })
- gopool.Go(func() {
- for _, v := range is.SubDevices {
- gopool.Go(v.Reconnect)
- }
- })
- }
- }
- }
|