forked from rai-project/grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snappy.go
56 lines (47 loc) · 1.04 KB
/
snappy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package grpc
import (
"io"
"io/ioutil"
"sync"
"github.com/golang/snappy"
)
// NB: The grpc.{Compressor,Decompressor} implementations need to be goroutine
// safe as multiple goroutines may be using the same compressor/decompressor
// for different streams on the same connection.
var snappyWriterPool sync.Pool
var snappyReaderPool sync.Pool
type snappyCompressor struct {
}
func (snappyCompressor) Do(w io.Writer, p []byte) error {
z, ok := snappyWriterPool.Get().(*snappy.Writer)
if !ok {
z = snappy.NewBufferedWriter(w)
} else {
z.Reset(w)
}
_, err := z.Write(p)
if err == nil {
err = z.Flush()
}
snappyWriterPool.Put(z)
return err
}
func (snappyCompressor) Type() string {
return "snappy"
}
type snappyDecompressor struct {
}
func (snappyDecompressor) Do(r io.Reader) ([]byte, error) {
z, ok := snappyReaderPool.Get().(*snappy.Reader)
if !ok {
z = snappy.NewReader(r)
} else {
z.Reset(r)
}
b, err := ioutil.ReadAll(z)
snappyReaderPool.Put(z)
return b, err
}
func (snappyDecompressor) Type() string {
return "snappy"
}