gpt4 book ai didi

go - 如何从goroutine的channel持续接收数据

转载 作者:IT王子 更新时间:2023-10-29 00:42:10 27 4
gpt4 key购买 nike

我是 Golang 的初学者。我做了一个关于 Go channel 的练习。我打开并从主 goroutine 中的文件读取数据,然后将数据传递给第二个 goroutine 以保存到另一个带有 channel 的文件。 我的代码很流畅

  func main() {
f, err := os.OpenFile("test.go", os.O_RDONLY, 0600)
ch := make(chan []byte)
buf := make([]byte, 10)
bytes_len, err := f.Read(buf)
fmt.Println("ReadLen:", bytes_len)
if err != nil {
fmt.Println("Error: ", err)
return
}
go WriteFile(ch)
for {
ch<-buf
bytes_len, err = f.Read(buf)
if err != nil {
fmt.Println("error=", err)
break
}
if bytes_len < 10 {
ch<-buf[:bytes_len]
fmt.Println("Finished!")
break
}
}
time.Sleep(1e9)
f.Close()
}

func WriteFile(ch <-chan []byte) {
fmt.Println("* begin!")
f, err := os.OpenFile("/home/GoProgram/test/test.file", os.O_RDWR|os.O_APPEND|os.O_CREATE, 0660)
if err != nil {
fmt.Println("* Error:", err)
return
}
/* Method1: use the "select" will write to target file OK, but it is too slow!!!
for {
select {
case bytes, ok:= <-ch:
if ok {
f.Write(bytes)
} else {
fmt.Println("* file closed!")
break
}
default:
fmt.Println("* waiting data!")
}
} \*/
// Method 2: use "for {if}", this will get messed text in target file, not identical with the source file.
for {
if bytes, ok := <-ch; ok {
f.Write(bytes)
fmt.Println("* buff=", string(bytes))
bytes = nil
ok = false
} else {
fmt.Println("** End ", string(bytes), " ", ok)
break
}
}

/* Method 3: use "for range", this will get messed text like in method2
for data:= range ch {
f.Write(data)
//fmt.Println("* Data:", string(data))
}
\*/
f.Close()
}

我的问题是为什么Method2和Method3会在目标文件中得到乱码?我该如何解决?

最佳答案

方法 2 和方法 3 弄乱了文本,因为在读取器和写入器共享的缓冲区上存在竞争。

下面是上述程序可能的语句执行顺序:

 R: bytes_len, err = f.Read(buf)  
R: ch<-buf[:bytes_len]
W: bytes, ok := <-ch; ok
R: bytes_len, err = f.Read(buf) // this writes over buffer
W: f.Write(bytes) // writes data from second read

运行你的程序 with the race dectector .它会为您标记问题。

解决该问题的一种方法是复制数据。例如,从读取的字节创建一个字符串并将该字符串发送到 channel 。

另一种选择是将 goroutines 与 io.Pipe 连接起来.一个 goroutine 从源读取并写入管道。另一个 goroutine 从管道读取并写入目的地。管道负责同步问题。

关于go - 如何从goroutine的channel持续接收数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34215373/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com