2014-05-25 21:01:54 +00:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strconv"
|
2016-06-13 21:34:05 +00:00
|
|
|
"sync"
|
2014-05-25 21:01:54 +00:00
|
|
|
"time"
|
2015-05-26 17:29:49 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/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 {
|
2016-06-13 21:34:05 +00:00
|
|
|
sync.RWMutex
|
2014-05-25 21:01:54 +00:00
|
|
|
cache []VidInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vc *VidCache) Get(vid string) ([]Location, error) {
|
2015-05-26 17:29:49 +00:00
|
|
|
id, err := strconv.Atoi(vid)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(1).Infof("Unknown volume id %s", vid)
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-06-13 21:34:05 +00:00
|
|
|
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) {
|
2015-05-26 17:29:49 +00:00
|
|
|
id, err := strconv.Atoi(vid)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(1).Infof("Unknown volume id %s", vid)
|
|
|
|
return
|
|
|
|
}
|
2016-06-13 21:34:05 +00:00
|
|
|
vc.Lock()
|
|
|
|
defer vc.Unlock()
|
2015-05-26 17:29:49 +00:00
|
|
|
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{})
|
|
|
|
}
|
|
|
|
}
|
2015-05-26 17:29:49 +00:00
|
|
|
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
|
|
|
}
|