-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathbatch.go
53 lines (42 loc) · 972 Bytes
/
batch.go
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
53
package agent
import (
"errors"
"github.com/raystack/meteor/models"
)
// batch contains the configuration for a batch
type batch struct {
data []models.Record
capacity int
}
// newBatch returns a new batch
func newBatch(capacity int) *batch {
return &batch{
capacity: capacity,
}
}
// add appends a record to the batch
func (b *batch) add(d models.Record) error {
if b.isFull() {
return errors.New("batch: cannot add, batch is full")
}
b.data = append(b.data, d)
return nil
}
// flush removes all records from the batch
func (b *batch) flush() []models.Record {
data := b.data
b.data = []models.Record{}
return data
}
// isFull returns true if the batch is full
func (b *batch) isFull() bool {
// size 0 means there is no limit, hence will not ever be full
if b.capacity == 0 {
return false
}
return len(b.data) >= b.capacity
}
// isEmpty returns true if the batch is empty
func (b *batch) isEmpty() bool {
return len(b.data) == 0
}