blob: c7f79969ce440cc7390682c4cd861d7a7af18d4a [file] [log] [blame]
package disruptor
import "sync/atomic"
type SharedWriter struct {
written *Cursor
upstream Barrier
capacity int64
gate *Cursor
mask int64
shift uint8
committed []int32
}
func NewSharedWriter(write *SharedWriterBarrier, upstream Barrier) *SharedWriter {
return &SharedWriter{
written: write.written,
upstream: upstream,
capacity: write.capacity,
gate: NewCursor(),
mask: write.mask,
shift: write.shift,
committed: write.committed,
}
}
func (this *SharedWriter) Reserve(count int64) int64 {
for {
previous := this.written.Load()
upper := previous + count
for upper-this.capacity > this.gate.Load() {
this.gate.Store(this.upstream.Read(0))
}
if atomic.CompareAndSwapInt64(&this.written.sequence, previous, upper) {
return upper
}
}
}
func (this *SharedWriter) Commit(lower, upper int64) {
// POTENTIAL TODO: start from upper and work toward lower
// this may have the effect of keeping a batch together which
// might otherwise be split up...
for lower <= upper {
this.committed[lower&this.mask] = int32(lower >> this.shift)
lower++
}
}