infra
/
goutils
Archived
1
0
Fork 0
This repository has been archived on 2022-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
goutils/buf/string_queue.go

43 lines
751 B
Go

package buf
import (
"container/list"
)
// 블럭되지 않는 큐체널
func NewStringQueue() (chan<- string, <-chan string) {
send := make(chan string, 1)
receive := make(chan string, 1)
go manageStringQueue(send, receive)
return send, receive
}
func manageStringQueue(send <-chan string, receive chan<- string) {
queue := list.New()
for {
if front := queue.Front(); front == nil {
if send == nil {
close(receive)
return
}
value, ok := <-send
if !ok {
close(receive)
return
}
queue.PushBack(value)
} else {
select {
case receive <- front.Value.(string):
queue.Remove(front)
case value, ok := <-send:
if ok {
queue.PushBack(value)
} else {
send = nil
}
}
}
}
}