diff options
author | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
---|---|---|
committer | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
commit | 404aeae4545d2426c089a5f8d5e82dae56f5212b (patch) | |
tree | 2d84e00af272b39fc04f3795ae06bc48970e57b5 /vendor/github.com/sirupsen/logrus/buffer_pool.go | |
parent | 209d8b0187ed025dec9ac149ebcced3462877bff (diff) | |
download | gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.tar.gz gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.zip |
Make Nix builds work
Diffstat (limited to 'vendor/github.com/sirupsen/logrus/buffer_pool.go')
-rw-r--r-- | vendor/github.com/sirupsen/logrus/buffer_pool.go | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/vendor/github.com/sirupsen/logrus/buffer_pool.go b/vendor/github.com/sirupsen/logrus/buffer_pool.go new file mode 100644 index 0000000..c7787f7 --- /dev/null +++ b/vendor/github.com/sirupsen/logrus/buffer_pool.go | |||
@@ -0,0 +1,43 @@ | |||
1 | package logrus | ||
2 | |||
3 | import ( | ||
4 | "bytes" | ||
5 | "sync" | ||
6 | ) | ||
7 | |||
8 | var ( | ||
9 | bufferPool BufferPool | ||
10 | ) | ||
11 | |||
12 | type BufferPool interface { | ||
13 | Put(*bytes.Buffer) | ||
14 | Get() *bytes.Buffer | ||
15 | } | ||
16 | |||
17 | type defaultPool struct { | ||
18 | pool *sync.Pool | ||
19 | } | ||
20 | |||
21 | func (p *defaultPool) Put(buf *bytes.Buffer) { | ||
22 | p.pool.Put(buf) | ||
23 | } | ||
24 | |||
25 | func (p *defaultPool) Get() *bytes.Buffer { | ||
26 | return p.pool.Get().(*bytes.Buffer) | ||
27 | } | ||
28 | |||
29 | // SetBufferPool allows to replace the default logrus buffer pool | ||
30 | // to better meets the specific needs of an application. | ||
31 | func SetBufferPool(bp BufferPool) { | ||
32 | bufferPool = bp | ||
33 | } | ||
34 | |||
35 | func init() { | ||
36 | SetBufferPool(&defaultPool{ | ||
37 | pool: &sync.Pool{ | ||
38 | New: func() interface{} { | ||
39 | return new(bytes.Buffer) | ||
40 | }, | ||
41 | }, | ||
42 | }) | ||
43 | } | ||