Dmitrii Stepanov
3bc1229062
All checks were successful
DCO action / DCO (pull_request) Successful in 1m18s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m24s
Tests and linters / Tests with -race (pull_request) Successful in 3m36s
Tests and linters / Tests (1.21) (pull_request) Successful in 3m46s
Tests and linters / Lint (pull_request) Successful in 4m25s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
package native
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
)
|
|
|
|
const networkCacheTTL = time.Minute
|
|
|
|
var networkInfoCache = &networkInfoCacheT{}
|
|
|
|
type networkInfoCacheT struct {
|
|
guard sync.RWMutex
|
|
current *netmap.NetworkInfo
|
|
fetchTS time.Time
|
|
}
|
|
|
|
func (c *networkInfoCacheT) getOrFetch(ctx context.Context, cli *client.Client) (*netmap.NetworkInfo, error) {
|
|
if v := c.get(); v != nil {
|
|
return v, nil
|
|
}
|
|
return c.fetch(ctx, cli)
|
|
}
|
|
|
|
func (c *networkInfoCacheT) get() *netmap.NetworkInfo {
|
|
c.guard.RLock()
|
|
defer c.guard.RUnlock()
|
|
|
|
if c.current == nil || time.Since(c.fetchTS) > networkCacheTTL {
|
|
return nil
|
|
}
|
|
|
|
return c.current
|
|
}
|
|
|
|
func (c *networkInfoCacheT) fetch(ctx context.Context, cli *client.Client) (*netmap.NetworkInfo, error) {
|
|
c.guard.Lock()
|
|
defer c.guard.Unlock()
|
|
|
|
if time.Since(c.fetchTS) <= networkCacheTTL {
|
|
return c.current, nil
|
|
}
|
|
|
|
res, err := cli.NetworkInfo(ctx, client.PrmNetworkInfo{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
v := res.Info()
|
|
c.current = &v
|
|
c.fetchTS = time.Now()
|
|
|
|
return c.current, nil
|
|
}
|