summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/transport/vnet/chunk_queue.go
blob: 7b24462244a99066699c001fd28bc6f583f6eb0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package vnet

import (
	"sync"
)

type chunkQueue struct {
	chunks  []Chunk
	maxSize int // 0 or negative value: unlimited
	mutex   sync.RWMutex
}

func newChunkQueue(maxSize int) *chunkQueue {
	return &chunkQueue{maxSize: maxSize}
}

func (q *chunkQueue) push(c Chunk) bool {
	q.mutex.Lock()
	defer q.mutex.Unlock()

	if q.maxSize > 0 && len(q.chunks) >= q.maxSize {
		return false // dropped
	}

	q.chunks = append(q.chunks, c)
	return true
}

func (q *chunkQueue) pop() (Chunk, bool) {
	q.mutex.Lock()
	defer q.mutex.Unlock()

	if len(q.chunks) == 0 {
		return nil, false
	}

	c := q.chunks[0]
	q.chunks = q.chunks[1:]

	return c, true
}

func (q *chunkQueue) peek() Chunk {
	q.mutex.RLock()
	defer q.mutex.RUnlock()

	if len(q.chunks) == 0 {
		return nil
	}

	return q.chunks[0]
}