You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
819 B
44 lines
819 B
package topology
|
|
|
|
import ()
|
|
|
|
type DataNodeLocationList struct {
|
|
list []*DataNode
|
|
}
|
|
|
|
func NewDataNodeLocationList() *DataNodeLocationList {
|
|
return &DataNodeLocationList{}
|
|
}
|
|
|
|
func (dnll *DataNodeLocationList) Head() *DataNode {
|
|
return dnll.list[0]
|
|
}
|
|
|
|
func (dnll *DataNodeLocationList) Add(loc *DataNode) bool {
|
|
for _, dnl := range dnll.list {
|
|
if loc.Ip == dnl.Ip && loc.Port == dnl.Port {
|
|
return false
|
|
}
|
|
}
|
|
dnll.list = append(dnll.list, loc)
|
|
return true
|
|
}
|
|
|
|
func (dnll *DataNodeLocationList) Refresh(freshThreshHold int64) {
|
|
var changed bool
|
|
for _, dnl := range dnll.list {
|
|
if dnl.lastSeen < freshThreshHold {
|
|
changed = true
|
|
break
|
|
}
|
|
}
|
|
if changed {
|
|
var l []*DataNode
|
|
for _, dnl := range dnll.list {
|
|
if dnl.lastSeen >= freshThreshHold {
|
|
l = append(l, dnl)
|
|
}
|
|
}
|
|
dnll.list = l
|
|
}
|
|
}
|