server.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package lc
  2. import (
  3. "fmt"
  4. "github.com/sirupsen/logrus"
  5. "lc-smartX/util"
  6. "lc-smartX/util/gopool"
  7. "net"
  8. "strings"
  9. "time"
  10. )
  11. type Controller interface {
  12. StartServer()
  13. }
  14. var Ctl = IntersectionCtl{
  15. Main: time.NewTicker(5 * time.Second),
  16. Sub: time.NewTicker(5 * time.Second),
  17. ReTicker: time.NewTicker(18 * time.Second),
  18. }
  19. type IntersectionCtl struct {
  20. MainState byte
  21. SubState byte
  22. MainDevices []IntersectionDevice
  23. SubDevices []IntersectionDevice
  24. ReTicker *time.Ticker
  25. Main *time.Ticker
  26. Sub *time.Ticker
  27. }
  28. type MainNotifier struct{}
  29. // Notify 主路来车,通知支路设备
  30. func (m MainNotifier) Notify() {
  31. Ctl.Main.Reset(5 * time.Second)
  32. if Ctl.MainState != 1 {
  33. Ctl.MainState = 1
  34. for _, v := range Ctl.SubDevices {
  35. if v.S.IsLive {
  36. gopool.Go(v.Call)
  37. }
  38. }
  39. }
  40. }
  41. type SubNotifier struct{}
  42. // Notify 支路来车,通知主路设备
  43. func (s SubNotifier) Notify() {
  44. Ctl.Sub.Reset(5 * time.Second)
  45. if Ctl.SubState != 1 {
  46. Ctl.SubState = 1
  47. for _, v := range Ctl.MainDevices {
  48. if v.S.IsLive {
  49. gopool.Go(v.Call)
  50. }
  51. }
  52. }
  53. }
  54. func (ctl *IntersectionCtl) StartServer() {
  55. RegisterCallback(1, &SubNotifier{})
  56. RegisterCallback(0, &MainNotifier{})
  57. //先创建响应设备
  58. for _, v := range util.Config.OutputDevices {
  59. iDevice := IntersectionDevice{
  60. Info: v,
  61. }
  62. iDevice.ReConnect() //初次连接
  63. if iDevice.Info.Branch == 1 {
  64. ctl.MainDevices = append(ctl.MainDevices, iDevice)
  65. } else {
  66. ctl.SubDevices = append(ctl.SubDevices, iDevice)
  67. }
  68. }
  69. logrus.Info("主路输出设备列表:", ctl.MainDevices)
  70. logrus.Info("支路输出设备列表:", ctl.SubDevices)
  71. fmt.Println("主路输出设备列表:", ctl.MainDevices)
  72. fmt.Println("支路输出设备列表:", ctl.SubDevices)
  73. for {
  74. select {
  75. case <-ctl.Main.C: //检查主路状态->支路输出设备作出响应
  76. for _, v := range Ctl.SubDevices {
  77. if v.S.IsLive && ctl.MainState == 1 {
  78. back := func() {
  79. v.S.Lock(1, "P000")
  80. }
  81. gopool.Go(back)
  82. //go v.S.Lock(1, "P000")
  83. }
  84. }
  85. ctl.MainState = 0
  86. case <-ctl.Sub.C: //检查支路状态->主路输出设备作出响应
  87. for _, v := range Ctl.MainDevices {
  88. if v.S.IsLive && ctl.SubState == 1 {
  89. back := func() {
  90. v.S.Lock(1, "P000")
  91. }
  92. gopool.Go(back)
  93. //go v.S.Lock(1, "P000")
  94. }
  95. }
  96. ctl.SubState = 0
  97. case <-ctl.ReTicker.C: //每18s尝试重连
  98. gopool.Go(func() {
  99. for _, v := range ctl.MainDevices {
  100. if v.S.IsLive {
  101. continue
  102. }
  103. logrus.Info("reconnect")
  104. fmt.Println("reconnect")
  105. v.ReConnect()
  106. }
  107. })
  108. gopool.Go(func() {
  109. for _, v := range ctl.SubDevices {
  110. if v.S.IsLive {
  111. continue
  112. }
  113. logrus.Info("reconnect")
  114. fmt.Println("reconnect")
  115. v.ReConnect()
  116. }
  117. })
  118. }
  119. }
  120. }
  121. // LServer ###
  122. // ===
  123. // ===
  124. // ===
  125. // === todo 服务器模式没测通,屏没有连接服务器
  126. var LServer LedServer
  127. type LedServer struct {
  128. }
  129. func (ls LedServer) Start() {
  130. listener, err := net.Listen("tcp", "192.168.110.69"+util.Config.LedServerAddr)
  131. if err != nil {
  132. fmt.Println("服务启动失败:", err)
  133. return
  134. }
  135. fmt.Println("led屏服务启动成功!addr:", listener.Addr())
  136. for {
  137. conn, err := listener.Accept()
  138. if err != nil {
  139. continue
  140. }
  141. go func(c net.Conn) {
  142. ip := strings.Split(c.RemoteAddr().String(), ":")[0]
  143. for i, v := range Ctl.MainDevices {
  144. if v.Info.ScreenIp == ip {
  145. fmt.Println("主路屏幕注册,ip:", ip)
  146. screen := NewScreen(v.Info.Name, c)
  147. Ctl.MainDevices[i].S = screen
  148. }
  149. }
  150. for i, v := range Ctl.SubDevices {
  151. if v.Info.ScreenIp == ip {
  152. fmt.Println("支路屏幕注册,ip:", ip)
  153. screen := NewScreen(v.Info.Name, c)
  154. Ctl.SubDevices[i].S = screen
  155. }
  156. }
  157. }(conn)
  158. }
  159. }