2022-07-22 08:53:05 +00:00
|
|
|
package pilorama
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
cidSDK "github.com/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
|
|
"go.etcd.io/bbolt"
|
|
|
|
)
|
|
|
|
|
|
|
|
type batch struct {
|
|
|
|
forest *boltForest
|
|
|
|
timer *time.Timer
|
|
|
|
mtx sync.Mutex
|
|
|
|
start sync.Once
|
|
|
|
cid cidSDK.ID
|
|
|
|
treeID string
|
|
|
|
results []chan<- error
|
|
|
|
operations []*Move
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *batch) trigger() {
|
|
|
|
b.mtx.Lock()
|
|
|
|
if b.timer != nil {
|
|
|
|
b.timer.Stop()
|
|
|
|
b.timer = nil
|
|
|
|
}
|
|
|
|
b.mtx.Unlock()
|
|
|
|
b.start.Do(b.run)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *batch) run() {
|
|
|
|
sort.Slice(b.operations, func(i, j int) bool {
|
|
|
|
return b.operations[i].Time < b.operations[j].Time
|
|
|
|
})
|
2023-01-18 06:38:42 +00:00
|
|
|
fullID := bucketName(b.cid, b.treeID)
|
2022-07-22 08:53:05 +00:00
|
|
|
err := b.forest.db.Update(func(tx *bbolt.Tx) error {
|
2023-01-18 06:38:42 +00:00
|
|
|
bLog, bTree, err := b.forest.getTreeBuckets(tx, fullID)
|
2022-07-22 08:53:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-01-25 11:12:02 +00:00
|
|
|
var lm Move
|
2022-07-22 08:53:05 +00:00
|
|
|
return b.forest.applyOperation(bLog, bTree, b.operations, &lm)
|
|
|
|
})
|
|
|
|
for i := range b.operations {
|
|
|
|
b.results[i] <- err
|
|
|
|
}
|
|
|
|
}
|