1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

implement releasable interface in v2io

This commit is contained in:
v2ray 2016-03-10 00:33:14 +01:00
parent c7f6426c88
commit a341cab302

View File

@ -3,21 +3,26 @@ package crypto
import ( import (
"crypto/cipher" "crypto/cipher"
"io" "io"
"github.com/v2ray/v2ray-core/common"
) )
type cryptionReader struct { type CryptionReader struct {
stream cipher.Stream stream cipher.Stream
reader io.Reader reader io.Reader
} }
func NewCryptionReader(stream cipher.Stream, reader io.Reader) io.Reader { func NewCryptionReader(stream cipher.Stream, reader io.Reader) *CryptionReader {
return &cryptionReader{ return &CryptionReader{
stream: stream, stream: stream,
reader: reader, reader: reader,
} }
} }
func (this *cryptionReader) Read(data []byte) (int, error) { func (this *CryptionReader) Read(data []byte) (int, error) {
if this.reader == nil {
return 0, common.ErrorAlreadyReleased
}
nBytes, err := this.reader.Read(data) nBytes, err := this.reader.Read(data)
if nBytes > 0 { if nBytes > 0 {
this.stream.XORKeyStream(data[:nBytes], data[:nBytes]) this.stream.XORKeyStream(data[:nBytes], data[:nBytes])
@ -25,19 +30,32 @@ func (this *cryptionReader) Read(data []byte) (int, error) {
return nBytes, err return nBytes, err
} }
type cryptionWriter struct { func (this *CryptionReader) Release() {
this.reader = nil
this.stream = nil
}
type CryptionWriter struct {
stream cipher.Stream stream cipher.Stream
writer io.Writer writer io.Writer
} }
func NewCryptionWriter(stream cipher.Stream, writer io.Writer) io.Writer { func NewCryptionWriter(stream cipher.Stream, writer io.Writer) *CryptionWriter {
return &cryptionWriter{ return &CryptionWriter{
stream: stream, stream: stream,
writer: writer, writer: writer,
} }
} }
func (this *cryptionWriter) Write(data []byte) (int, error) { func (this *CryptionWriter) Write(data []byte) (int, error) {
if this.writer == nil {
return 0, common.ErrorAlreadyReleased
}
this.stream.XORKeyStream(data, data) this.stream.XORKeyStream(data, data)
return this.writer.Write(data) return this.writer.Write(data)
} }
func (this *CryptionWriter) Release() {
this.writer = nil
this.stream = nil
}