123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- package lc
- import (
- "fmt"
- "github.com/sirupsen/logrus"
- "lc-smartX/util"
- "lc-smartX/util/gopool"
- "net"
- "strings"
- "time"
- )
- type Controller interface {
- StartServer()
- }
- var Ctl = IntersectionCtl{
- Main: time.NewTicker(5 * time.Second),
- Sub: time.NewTicker(5 * time.Second),
- ReTicker: time.NewTicker(18 * time.Second),
- }
- type IntersectionCtl struct {
- MainState byte
- SubState byte
- MainDevices []IntersectionDevice
- SubDevices []IntersectionDevice
- ReTicker *time.Ticker
- Main *time.Ticker
- Sub *time.Ticker
- }
- type MainNotifier struct{}
- // Notify 主路来车,通知支路设备
- func (m MainNotifier) Notify() {
- Ctl.Main.Reset(5 * time.Second)
- if Ctl.MainState != 1 {
- Ctl.MainState = 1
- for _, v := range Ctl.SubDevices {
- if v.S.IsLive {
- gopool.Go(v.Call)
- }
- }
- }
- }
- type SubNotifier struct{}
- // Notify 支路来车,通知主路设备
- func (s SubNotifier) Notify() {
- Ctl.Sub.Reset(5 * time.Second)
- if Ctl.SubState != 1 {
- Ctl.SubState = 1
- for _, v := range Ctl.MainDevices {
- if v.S.IsLive {
- gopool.Go(v.Call)
- }
- }
- }
- }
- func (ctl *IntersectionCtl) StartServer() {
- RegisterCallback(1, &SubNotifier{})
- RegisterCallback(0, &MainNotifier{})
- //先创建响应设备
- for _, v := range util.Config.OutputDevices {
- iDevice := IntersectionDevice{
- Info: v,
- }
- iDevice.ReConnect() //初次连接
- if iDevice.Info.Branch == 1 {
- ctl.MainDevices = append(ctl.MainDevices, iDevice)
- } else {
- ctl.SubDevices = append(ctl.SubDevices, iDevice)
- }
- }
- logrus.Info("主路输出设备列表:", ctl.MainDevices)
- logrus.Info("支路输出设备列表:", ctl.SubDevices)
- fmt.Println("主路输出设备列表:", ctl.MainDevices)
- fmt.Println("支路输出设备列表:", ctl.SubDevices)
- for {
- select {
- case <-ctl.Main.C: //检查主路状态->支路输出设备作出响应
- for _, v := range Ctl.SubDevices {
- if v.S.IsLive && ctl.MainState == 1 {
- back := func() {
- v.S.Lock(1, "P000")
- }
- gopool.Go(back)
- //go v.S.Lock(1, "P000")
- }
- }
- ctl.MainState = 0
- case <-ctl.Sub.C: //检查支路状态->主路输出设备作出响应
- for _, v := range Ctl.MainDevices {
- if v.S.IsLive && ctl.SubState == 1 {
- back := func() {
- v.S.Lock(1, "P000")
- }
- gopool.Go(back)
- //go v.S.Lock(1, "P000")
- }
- }
- ctl.SubState = 0
- case <-ctl.ReTicker.C: //每18s尝试重连
- gopool.Go(func() {
- for _, v := range ctl.MainDevices {
- if v.S.IsLive {
- continue
- }
- logrus.Info("reconnect")
- fmt.Println("reconnect")
- v.ReConnect()
- }
- })
- gopool.Go(func() {
- for _, v := range ctl.SubDevices {
- if v.S.IsLive {
- continue
- }
- logrus.Info("reconnect")
- fmt.Println("reconnect")
- v.ReConnect()
- }
- })
- }
- }
- }
- // LServer ###
- // ===
- // ===
- // ===
- // === todo 服务器模式没测通,屏没有连接服务器
- var LServer LedServer
- type LedServer struct {
- }
- func (ls LedServer) Start() {
- listener, err := net.Listen("tcp", "192.168.110.69"+util.Config.LedServerAddr)
- if err != nil {
- fmt.Println("服务启动失败:", err)
- return
- }
- fmt.Println("led屏服务启动成功!addr:", listener.Addr())
- for {
- conn, err := listener.Accept()
- if err != nil {
- continue
- }
- go func(c net.Conn) {
- ip := strings.Split(c.RemoteAddr().String(), ":")[0]
- for i, v := range Ctl.MainDevices {
- if v.Info.ScreenIp == ip {
- fmt.Println("主路屏幕注册,ip:", ip)
- screen := NewScreen(v.Info.Name, c)
- Ctl.MainDevices[i].S = screen
- }
- }
- for i, v := range Ctl.SubDevices {
- if v.Info.ScreenIp == ip {
- fmt.Println("支路屏幕注册,ip:", ip)
- screen := NewScreen(v.Info.Name, c)
- Ctl.SubDevices[i].S = screen
- }
- }
- }(conn)
- }
- }
|