syncs: add generic Pool (#12759)

Pool is a type-safe wrapper over sync.Pool.

Updates tailscale/corp#11038
Updates #cleanup

Signed-off-by: Joe Tsai <joetsai@digital-static.net>
This commit is contained in:
Joe Tsai
2024-07-10 09:39:52 -07:00
committed by GitHub
parent 986d60a094
commit e92f4c6af8
2 changed files with 61 additions and 0 deletions

30
syncs/pool_test.go Normal file
View File

@ -0,0 +1,30 @@
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
package syncs
import "testing"
func TestPool(t *testing.T) {
var pool Pool[string]
s := pool.Get() // should not panic
if s != "" {
t.Fatalf("got %q, want %q", s, "")
}
pool.New = func() string { return "new" }
s = pool.Get()
if s != "new" {
t.Fatalf("got %q, want %q", s, "new")
}
var found bool
for range 1000 {
pool.Put("something")
found = pool.Get() == "something"
if found {
break
}
}
if !found {
t.Fatalf("unable to get any value put in the pool")
}
}