瀏覽代碼

implement releasable interface in v2io

v2ray 9 年之前
父節點
當前提交
a341cab302
共有 1 個文件被更改,包括 26 次插入8 次删除
  1. 26 8
      common/crypto/io.go

+ 26 - 8
common/crypto/io.go

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