1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/transport/internet/kcp/output.go
2016-06-29 10:34:34 +02:00

71 lines
1.2 KiB
Go

package kcp
import (
"io"
"sync"
"github.com/v2ray/v2ray-core/common/alloc"
v2io "github.com/v2ray/v2ray-core/common/io"
)
type SegmentWriter struct {
sync.Mutex
mtu uint32
buffer *alloc.Buffer
writer v2io.Writer
}
func NewSegmentWriter(mtu uint32, writer v2io.Writer) *SegmentWriter {
return &SegmentWriter{
mtu: mtu,
writer: writer,
}
}
func (this *SegmentWriter) Write(seg ISegment) {
this.Lock()
defer this.Unlock()
nBytes := seg.ByteSize()
if uint32(this.buffer.Len()+nBytes) > this.mtu {
this.FlushWithoutLock()
}
if this.buffer == nil {
this.buffer = alloc.NewSmallBuffer().Clear()
}
this.buffer.Append(seg.Bytes(nil))
}
func (this *SegmentWriter) FlushWithoutLock() {
this.writer.Write(this.buffer)
this.buffer = nil
}
func (this *SegmentWriter) Flush() {
this.Lock()
defer this.Unlock()
if this.buffer.Len() == 0 {
return
}
this.FlushWithoutLock()
}
type AuthenticationWriter struct {
Authenticator Authenticator
Writer io.Writer
}
func (this *AuthenticationWriter) Write(payload *alloc.Buffer) error {
defer payload.Release()
this.Authenticator.Seal(payload)
_, err := this.Writer.Write(payload.Value)
return err
}
func (this *AuthenticationWriter) Release() {}