seaweedfs/weed/operation/lookup_vid_cache.go

60 lines
1.2 KiB
Go
Raw Normal View History

2014-05-25 21:01:54 +00:00
package operation
import (
"errors"
"strconv"
"sync"
2014-05-25 21:01:54 +00:00
"time"
"github.com/chrislusf/seaweedfs/weed/glog"
2014-05-25 21:01:54 +00:00
)
2019-01-06 03:52:38 +00:00
var ErrorNotFound = errors.New("not found")
2014-05-25 21:01:54 +00:00
type VidInfo struct {
Locations []Location
NextRefreshTime time.Time
}
type VidCache struct {
sync.RWMutex
2014-05-25 21:01:54 +00:00
cache []VidInfo
}
func (vc *VidCache) Get(vid string) ([]Location, error) {
id, err := strconv.Atoi(vid)
if err != nil {
glog.V(1).Infof("Unknown volume id %s", vid)
return nil, err
}
vc.RLock()
defer vc.RUnlock()
2014-05-25 21:01:54 +00:00
if 0 < id && id <= len(vc.cache) {
if vc.cache[id-1].Locations == nil {
2019-01-06 03:52:38 +00:00
return nil, errors.New("not set")
2014-05-25 21:01:54 +00:00
}
if vc.cache[id-1].NextRefreshTime.Before(time.Now()) {
2019-01-06 03:52:38 +00:00
return nil, errors.New("expired")
2014-05-25 21:01:54 +00:00
}
return vc.cache[id-1].Locations, nil
}
2019-01-06 03:52:38 +00:00
return nil, ErrorNotFound
2014-05-25 21:01:54 +00:00
}
func (vc *VidCache) Set(vid string, locations []Location, duration time.Duration) {
id, err := strconv.Atoi(vid)
if err != nil {
glog.V(1).Infof("Unknown volume id %s", vid)
return
}
vc.Lock()
defer vc.Unlock()
if id > len(vc.cache) {
2014-05-25 21:01:54 +00:00
for i := id - len(vc.cache); i > 0; i-- {
vc.cache = append(vc.cache, VidInfo{})
}
}
if id > 0 {
vc.cache[id-1].Locations = locations
vc.cache[id-1].NextRefreshTime = time.Now().Add(duration)
}
2014-05-25 21:01:54 +00:00
}