mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 13:27:39 +03:00
Merge ThreadSafeReader into ReadWaiter interface
This commit is contained in:
parent
335ac47e45
commit
0e0da26649
13 changed files with 258 additions and 285 deletions
|
@ -8,14 +8,16 @@ import (
|
|||
"sync/atomic"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
"github.com/sagernet/sing/common/debug"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
F "github.com/sagernet/sing/common/format"
|
||||
)
|
||||
|
||||
type Buffer struct {
|
||||
data []byte
|
||||
start int
|
||||
end int
|
||||
refs int32
|
||||
refs atomic.Int32
|
||||
managed bool
|
||||
closed bool
|
||||
}
|
||||
|
@ -281,24 +283,40 @@ func (b *Buffer) FullReset() {
|
|||
}
|
||||
|
||||
func (b *Buffer) IncRef() {
|
||||
atomic.AddInt32(&b.refs, 1)
|
||||
b.refs.Add(1)
|
||||
}
|
||||
|
||||
func (b *Buffer) DecRef() {
|
||||
atomic.AddInt32(&b.refs, -1)
|
||||
b.refs.Add(-1)
|
||||
}
|
||||
|
||||
func (b *Buffer) Release() {
|
||||
if b == nil || b.closed || !b.managed {
|
||||
return
|
||||
}
|
||||
if atomic.LoadInt32(&b.refs) > 0 {
|
||||
if b.refs.Load() > 0 {
|
||||
return
|
||||
}
|
||||
common.Must(Put(b.data))
|
||||
*b = Buffer{closed: true}
|
||||
}
|
||||
|
||||
func (b *Buffer) Leak() {
|
||||
if debug.Enabled {
|
||||
if b == nil || b.closed || !b.managed {
|
||||
return
|
||||
}
|
||||
refs := b.refs.Load()
|
||||
if refs == 0 {
|
||||
panic("leaking buffer")
|
||||
} else {
|
||||
panic(F.ToString("leaking buffer with ", refs, " references"))
|
||||
}
|
||||
} else {
|
||||
b.Release()
|
||||
}
|
||||
}
|
||||
|
||||
func (b *Buffer) Cut(start int, end int) *Buffer {
|
||||
b.start += start
|
||||
b.end = len(b.data) - end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue