mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-02 14:00:25 +08:00
46 lines
880 B
Go
46 lines
880 B
Go
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
|
//go:build !plus || !linux
|
|
|
|
package compressions
|
|
|
|
import (
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/andybalholm/brotli"
|
|
)
|
|
|
|
type BrotliReader struct {
|
|
BaseReader
|
|
|
|
reader *brotli.Reader
|
|
}
|
|
|
|
func NewBrotliReader(reader io.Reader) (Reader, error) {
|
|
return sharedBrotliReaderPool.Get(reader)
|
|
}
|
|
|
|
func newBrotliReader(reader io.Reader) (Reader, error) {
|
|
return &BrotliReader{reader: brotli.NewReader(reader)}, nil
|
|
}
|
|
|
|
func (this *BrotliReader) Read(p []byte) (n int, err error) {
|
|
n, err = this.reader.Read(p)
|
|
if err != nil && strings.Contains(err.Error(), "excessive") {
|
|
err = io.EOF
|
|
}
|
|
return
|
|
}
|
|
|
|
func (this *BrotliReader) Reset(reader io.Reader) error {
|
|
return this.reader.Reset(reader)
|
|
}
|
|
|
|
func (this *BrotliReader) RawClose() error {
|
|
return nil
|
|
}
|
|
|
|
func (this *BrotliReader) Close() error {
|
|
return this.Finish(this)
|
|
}
|