You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/syncx/resourcemanager.go

79 lines
1.7 KiB
Go

4 years ago
package syncx
import (
"io"
"sync"
"github.com/zeromicro/go-zero/core/errorx"
4 years ago
)
// A ResourceManager is a manager that used to manage resources.
4 years ago
type ResourceManager struct {
resources map[string]io.Closer
singleFlight SingleFlight
lock sync.RWMutex
4 years ago
}
// NewResourceManager returns a ResourceManager.
4 years ago
func NewResourceManager() *ResourceManager {
return &ResourceManager{
resources: make(map[string]io.Closer),
singleFlight: NewSingleFlight(),
4 years ago
}
}
// Close closes the manager.
// Don't use the ResourceManager after Close() called.
4 years ago
func (manager *ResourceManager) Close() error {
manager.lock.Lock()
defer manager.lock.Unlock()
var be errorx.BatchError
for _, resource := range manager.resources {
if err := resource.Close(); err != nil {
be.Add(err)
}
}
// release resources to avoid using it later
manager.resources = nil
4 years ago
return be.Err()
}
// GetResource returns the resource associated with given key.
func (manager *ResourceManager) GetResource(key string, create func() (io.Closer, error)) (
io.Closer, error) {
val, err := manager.singleFlight.Do(key, func() (any, error) {
4 years ago
manager.lock.RLock()
resource, ok := manager.resources[key]
manager.lock.RUnlock()
if ok {
return resource, nil
}
resource, err := create()
if err != nil {
return nil, err
}
manager.lock.Lock()
defer manager.lock.Unlock()
4 years ago
manager.resources[key] = resource
return resource, nil
})
if err != nil {
return nil, err
}
return val.(io.Closer), nil
}
// Inject injects the resource associated with given key.
func (manager *ResourceManager) Inject(key string, resource io.Closer) {
manager.lock.Lock()
manager.resources[key] = resource
manager.lock.Unlock()
}