mirror of
https://gitee.com/johng/gf
synced 2026-06-06 02:25:47 +08:00
add TQueue --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: hailaz <739476267@qq.com>
135 lines
3.8 KiB
Go
135 lines
3.8 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
package gqueue
|
|
|
|
import (
|
|
"math"
|
|
|
|
"github.com/gogf/gf/v2/container/glist"
|
|
"github.com/gogf/gf/v2/container/gtype"
|
|
)
|
|
|
|
// TQueue is a concurrent-safe queue built on doubly linked list and channel.
|
|
type TQueue[T any] struct {
|
|
limit int // Limit for queue size.
|
|
list *glist.TList[T] // Underlying list structure for data maintaining.
|
|
closed *gtype.Bool // Whether queue is closed.
|
|
events chan struct{} // Events for data writing.
|
|
C chan T // Underlying channel for data reading.
|
|
}
|
|
|
|
// NewTQueue returns an empty queue object.
|
|
// Optional parameter `limit` is used to limit the size of the queue, which is unlimited in default.
|
|
// When `limit` is given, the queue will be static and high performance which is comparable with stdlib channel.
|
|
func NewTQueue[T any](limit ...int) *TQueue[T] {
|
|
q := &TQueue[T]{
|
|
closed: gtype.NewBool(),
|
|
}
|
|
if len(limit) > 0 && limit[0] > 0 {
|
|
q.limit = limit[0]
|
|
q.C = make(chan T, limit[0])
|
|
} else {
|
|
q.list = glist.NewT[T](true)
|
|
q.events = make(chan struct{}, math.MaxInt32)
|
|
q.C = make(chan T, defaultQueueSize)
|
|
go q.asyncLoopFromListToChannel()
|
|
}
|
|
return q
|
|
}
|
|
|
|
// Push pushes the data `v` into the queue.
|
|
// Note that it would panic if Push is called after the queue is closed.
|
|
func (q *TQueue[T]) Push(v T) {
|
|
if q.limit > 0 {
|
|
q.C <- v
|
|
} else {
|
|
q.list.PushBack(v)
|
|
if len(q.events) < defaultQueueSize {
|
|
q.events <- struct{}{}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Pop pops an item from the queue in FIFO way.
|
|
// Note that it would return nil immediately if Pop is called after the queue is closed.
|
|
func (q *TQueue[T]) Pop() T {
|
|
return <-q.C
|
|
}
|
|
|
|
// Close closes the queue.
|
|
// Notice: It would notify all goroutines return immediately,
|
|
// which are being blocked reading using Pop method.
|
|
func (q *TQueue[T]) Close() {
|
|
if !q.closed.Cas(false, true) {
|
|
return
|
|
}
|
|
if q.events != nil {
|
|
close(q.events)
|
|
}
|
|
if q.limit > 0 {
|
|
close(q.C)
|
|
} else {
|
|
for range defaultBatchSize {
|
|
q.Pop()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Len returns the length of the queue.
|
|
// Note that the result might not be accurate if using unlimited queue size as there's an
|
|
// asynchronous channel reading the list constantly.
|
|
func (q *TQueue[T]) Len() (length int64) {
|
|
bufferedSize := int64(len(q.C))
|
|
if q.limit > 0 {
|
|
return bufferedSize
|
|
}
|
|
// If the queue is unlimited and the buffered size is exactly the default size,
|
|
// it means there might be some data in the list not synchronized to channel yet.
|
|
// So we need to add 1 to the buffered size to make the result more accurate.
|
|
if bufferedSize == defaultQueueSize {
|
|
bufferedSize++
|
|
}
|
|
return int64(q.list.Size()) + bufferedSize
|
|
}
|
|
|
|
// Size is alias of Len.
|
|
//
|
|
// Deprecated: use Len instead.
|
|
func (q *TQueue[T]) Size() int64 {
|
|
return q.Len()
|
|
}
|
|
|
|
// asyncLoopFromListToChannel starts an asynchronous goroutine,
|
|
// which handles the data synchronization from list `q.list` to channel `q.C`.
|
|
func (q *TQueue[T]) asyncLoopFromListToChannel() {
|
|
defer func() {
|
|
if q.closed.Val() {
|
|
_ = recover()
|
|
}
|
|
}()
|
|
for !q.closed.Val() {
|
|
<-q.events
|
|
for !q.closed.Val() {
|
|
if bufferLength := q.list.Len(); bufferLength > 0 {
|
|
// When q.C is closed, it will panic here, especially q.C is being blocked for writing.
|
|
// If any error occurs here, it will be caught by recover and be ignored.
|
|
for range bufferLength {
|
|
q.C <- q.list.PopFront()
|
|
}
|
|
} else {
|
|
break
|
|
}
|
|
}
|
|
// Clear q.events to remain just one event to do the next synchronization check.
|
|
for i := 0; i < len(q.events)-1; i++ {
|
|
<-q.events
|
|
}
|
|
}
|
|
// It should be here to close `q.C` if `q` is unlimited size.
|
|
// It's the sender's responsibility to close channel when it should be closed.
|
|
close(q.C)
|
|
}
|