seaweedfs/go/topology/volume_location.go

59 lines
1.1 KiB
Go
Raw Normal View History

package topology
2012-09-11 00:08:52 +00:00
import ()
2012-09-19 23:48:04 +00:00
type VolumeLocationList struct {
2012-09-11 00:08:52 +00:00
list []*DataNode
}
2012-09-19 23:48:04 +00:00
func NewVolumeLocationList() *VolumeLocationList {
return &VolumeLocationList{}
}
2012-09-19 23:48:04 +00:00
func (dnll *VolumeLocationList) Head() *DataNode {
return dnll.list[0]
}
2012-09-19 23:48:04 +00:00
func (dnll *VolumeLocationList) Length() int {
2013-01-17 08:56:56 +00:00
return len(dnll.list)
2012-09-19 23:48:04 +00:00
}
func (dnll *VolumeLocationList) Add(loc *DataNode) bool {
2012-09-11 00:08:52 +00:00
for _, dnl := range dnll.list {
2012-09-12 08:07:23 +00:00
if loc.Ip == dnl.Ip && loc.Port == dnl.Port {
return false
2012-09-11 00:08:52 +00:00
}
}
dnll.list = append(dnll.list, loc)
return true
2012-09-11 00:08:52 +00:00
}
2012-11-07 09:51:43 +00:00
2012-09-19 23:48:04 +00:00
func (dnll *VolumeLocationList) Remove(loc *DataNode) bool {
2013-01-17 08:56:56 +00:00
for i, dnl := range dnll.list {
if loc.Ip == dnl.Ip && loc.Port == dnl.Port {
dnll.list = append(dnll.list[:i], dnll.list[i+1:]...)
return true
}
}
return false
2012-09-19 23:48:04 +00:00
}
2012-09-11 00:08:52 +00:00
2012-09-19 23:48:04 +00:00
func (dnll *VolumeLocationList) Refresh(freshThreshHold int64) {
2012-09-11 00:08:52 +00:00
var changed bool
for _, dnl := range dnll.list {
if dnl.LastSeen < freshThreshHold {
2012-09-11 00:08:52 +00:00
changed = true
break
}
}
if changed {
var l []*DataNode
for _, dnl := range dnll.list {
if dnl.LastSeen >= freshThreshHold {
2012-09-11 00:08:52 +00:00
l = append(l, dnl)
}
}
dnll.list = l
}
}