-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal: Add and use a generic pool instead of using sync.Pool direc…
…tly (#1262)
- Loading branch information
Showing
10 changed files
with
211 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Copyright (c) 2023 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
// Package pool provides internal pool utilities. | ||
package pool | ||
|
||
import ( | ||
"sync" | ||
) | ||
|
||
// A Pool is a generic wrapper around [sync.Pool] to provide strongly-typed | ||
// object pooling. | ||
// | ||
// Note that SA6002 (ref: https://staticcheck.io/docs/checks/#SA6002) will | ||
// not be detected, so all internal pool use must take care to only store | ||
// pointer types. | ||
type Pool[T any] struct { | ||
pool sync.Pool | ||
} | ||
|
||
// New returns a new [Pool] for T, and will use fn to construct new Ts when | ||
// the pool is empty. | ||
func New[T any](fn func() T) *Pool[T] { | ||
return &Pool[T]{ | ||
pool: sync.Pool{ | ||
New: func() any { | ||
return fn() | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
// Get gets a T from the pool, or creates a new one if the pool is empty. | ||
func (p *Pool[T]) Get() T { | ||
return p.pool.Get().(T) | ||
} | ||
|
||
// Put returns x into the pool. | ||
func (p *Pool[T]) Put(x T) { | ||
p.pool.Put(x) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// Copyright (c) 2023 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package pool_test | ||
|
||
import ( | ||
"runtime/debug" | ||
"sync" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"go.uber.org/zap/internal/pool" | ||
) | ||
|
||
type pooledValue[T any] struct { | ||
value T | ||
} | ||
|
||
func TestNew(t *testing.T) { | ||
// Disable GC to avoid the victim cache during the test. | ||
defer debug.SetGCPercent(debug.SetGCPercent(-1)) | ||
|
||
p := pool.New(func() *pooledValue[string] { | ||
return &pooledValue[string]{ | ||
value: "new", | ||
} | ||
}) | ||
|
||
// Probabilistically, 75% of sync.Pool.Put calls will succeed when -race | ||
// is enabled (see ref below); attempt to make this quasi-deterministic by | ||
// brute force (i.e., put significantly more objects in the pool than we | ||
// will need for the test) in order to avoid testing without race enabled. | ||
// | ||
// ref: https://cs.opensource.google/go/go/+/refs/tags/go1.20.2:src/sync/pool.go;l=100-103 | ||
for i := 0; i < 1_000; i++ { | ||
p.Put(&pooledValue[string]{ | ||
value: t.Name(), | ||
}) | ||
} | ||
|
||
// Ensure that we always get the expected value. Note that this must only | ||
// run a fraction of the number of times that Put is called above. | ||
for i := 0; i < 10; i++ { | ||
func() { | ||
x := p.Get() | ||
defer p.Put(x) | ||
require.Equal(t, t.Name(), x.value) | ||
}() | ||
} | ||
|
||
// Depool all objects that might be in the pool to ensure that it's empty. | ||
for i := 0; i < 1_000; i++ { | ||
p.Get() | ||
} | ||
|
||
// Now that the pool is empty, it should use the value specified in the | ||
// underlying sync.Pool.New func. | ||
require.Equal(t, "new", p.Get().value) | ||
} | ||
|
||
func TestNew_Race(t *testing.T) { | ||
p := pool.New(func() *pooledValue[int] { | ||
return &pooledValue[int]{ | ||
value: -1, | ||
} | ||
}) | ||
|
||
var wg sync.WaitGroup | ||
defer wg.Wait() | ||
|
||
// Run a number of goroutines that read and write pool object fields to | ||
// tease out races. | ||
for i := 0; i < 1_000; i++ { | ||
i := i | ||
|
||
wg.Add(1) | ||
go func() { | ||
defer wg.Done() | ||
|
||
x := p.Get() | ||
defer p.Put(x) | ||
|
||
// Must both read and write the field. | ||
if n := x.value; n >= -1 { | ||
x.value = i | ||
} | ||
}() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.