dqftyn1717 2018-05-14 08:50
浏览 370
已采纳

Golang:中断有时间的无限轮询。睡眠

I am using the following simple polling mechanism:

    func poll() {

        for {
            if a {
                device1()
                time.Sleep(time.Second * 10)
            } else {
                sensor1()
                time.Sleep(time.Second * 10)
            }
        }
    }

I need to poll the device1 only if "a" is true otherwise poll the sensor1. Now here "a" will be set to true by clicking the button on UI which will be a random act.

But because of time.Sleep, delay get introduced while checking the condition.

Is there any way to immediately stop time.Sleep when I get the value for "a"? what are the possible ways to implement such interrupts while polling in golang?

  • 写回答

1条回答 默认 最新

  • duankun9280 2018-05-14 10:07
    关注

    You cannot interrupt a time.Sleep().

    Instead if you need to listen to other "events" while waiting for something, you should use channels and the select statements. A select is similar to a switch, but with the cases all referring to communication operations.

    The good thing of select is that you may list multiple cases, all refering to comm. ops (e.g. channel receives or sends), and whichever operation can proceed will be chosen (choosing one randomly if multiple can proceed). If none can proceed, it will block (wait) until one of the comm. ops can proceed (unless there's a default).

    A "timeout" event may be realized using time.After(), or a series of "continuous" timeout events (ticks or heartbeats) using time.Ticker.

    You should change your button handler to send a value (the button state) on a channel, so receiving from this channel can be added to the select inside poll(), and processed "immediately" (without waiting for a timeout or the next tick event).

    See this example:

    func poll(buttonCh <-chan bool) {
        isDevice := false
    
        read := func() {
            if isDevice {
                device1()
            } else {
                sensor1()
            }
        }
    
        ticker := time.NewTicker(1 * time.Second)
        defer func() { ticker.Stop() }()
    
        for {
            select {
            case isDevice = <-buttonCh:
            case <-ticker.C:
                read()
            }
        }
    }
    
    func device1() { log.Println("reading device1") }
    func sensor1() { log.Println("reading sensor1") }
    

    Testing it:

    buttonCh := make(chan bool)
    
    // simulate a click after 2.5 seconds:
    go func() {
        time.Sleep(2500 * time.Millisecond)
        buttonCh <- true
    }()
    
    go poll(buttonCh)
    time.Sleep(5500 * time.Millisecond)
    

    Output (try it on the Go Playground):

    2009/11/10 23:00:01 reading sensor1
    2009/11/10 23:00:02 reading sensor1
    2009/11/10 23:00:03 reading device1
    2009/11/10 23:00:04 reading device1
    2009/11/10 23:00:05 reading device1
    

    This solution makes it easy to add any number of event sources without changing anything. For example if you want to add a "shutdown" event and a "read-now" event to the above solution, this is how it would look like:

    for {
        select {
        case isDevice = <-buttonCh:
        case <-ticker.C:
            read()
        case <-readNowCh:
            read()
        case <-shutdownCh:
            return
        }
    }
    

    Where shutdownCh is a channel with any element type, and to signal shutdown, you do that by closing it:

    var shutdownCh = make(chan struct{})
    
    // Somewhere in your app:
    close(shutdownCh)
    

    Closing the channel has the advantage that you may have any number of goroutines "monitoring" it, all will receive the shutdown (this is like broadcasting). Receive from a closed channel can proceed immediately, yielding the zero-value of the channel's element type.

    To issue an "immediate read" action, you would send a value on readNowCh.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀