为了账号安全,请及时绑定邮箱和手机立即绑定

使用停止通道停止 bufio.Scanner

使用停止通道停止 bufio.Scanner

Go
倚天杖 2022-05-23 17:09:55
我正在写一些从os.Stdin使用bufio.Scanner类似的读取行的东西:for s.scanner.Scan() {  line := s.scanner.Text()  // process line}这是在 goroutine 中运行的,我希望能够在 achan struct{}关闭时停止它。然而,Scan直到有另一条线为止,我不知道如何阻止它,如果没有更多的输入,它将无限期地阻塞。谁能在这里指出我正确的方向?
查看完整描述

1 回答

?
芜湖不芜

TA贡献1796条经验 获得超7个赞

通过再创建一个间接并忽略底层,我们可以停止。


// actual reading, converts input stream to a channel

func readUnderlying(lines chan interface{}) {

    s := bufio.NewScanner(os.Stdin)

    for s.Scan() {

        lines <- s.Text()

    }

    lines <- s.Err()

}


func read(stop chan struct{}) {

    input := make(chan interface{}) // input stream

    go readUnderlying(input) // go and read

    for {

        select { // read or close

        case lineOrErr := <-input:

            fmt.Println(lineOrErr)

        case <-stop:

            return

        }

    }

}


func main() {

    stop := make(chan struct{})

    go read(stop)


    // wait some to simulate blocking

    time.Sleep(time.Second * 20) // it will print what is given

    close(stop)

    time.Sleep(time.Second * 20) // stopped so no more processing

}


查看完整回答
反对 回复 2022-05-23
  • 1 回答
  • 0 关注
  • 151 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信