seaweedfs/weed-fs/src/pkg/topology/data_node.go

59 lines
1.3 KiB
Go
Raw Normal View History

package topology
import (
_ "fmt"
"pkg/storage"
)
2012-09-08 23:25:44 +00:00
type DataNode struct {
NodeImpl
volumes map[storage.VolumeId]*storage.VolumeInfo
2012-09-12 08:07:23 +00:00
Ip string
Port int
PublicUrl string
LastSeen int64 // unix time in seconds
}
2012-09-08 23:25:44 +00:00
func NewDataNode(id string) *DataNode {
s := &DataNode{}
s.id = NodeId(id)
2012-09-08 23:25:44 +00:00
s.nodeType = "DataNode"
s.volumes = make(map[storage.VolumeId]*storage.VolumeInfo)
return s
2012-08-31 08:35:11 +00:00
}
func (dn *DataNode) CreateOneVolume(r int, vid storage.VolumeId) storage.VolumeId {
dn.AddOrUpdateVolume(&storage.VolumeInfo{Id: vid})
return vid
}
func (dn *DataNode) AddOrUpdateVolume(v *storage.VolumeInfo) {
if dn.volumes[v.Id] == nil {
dn.volumes[v.Id] = v
dn.UpAdjustActiveVolumeCountDelta(1)
dn.UpAdjustMaxVolumeId(v.Id)
}else{
dn.volumes[v.Id] = v
}
}
func (dn *DataNode) GetTopology() *Topology {
p := dn.parent
for p.Parent() != nil {
p = p.Parent()
}
t := p.(*Topology)
return t
}
2012-09-14 08:17:13 +00:00
func (dn *DataNode) MatchLocation(ip string, port int) bool {
return dn.Ip == ip && dn.Port == port
}
func (dn *DataNode) ToMap() interface{} {
ret := make(map[string]interface{})
ret["Ip"] = dn.Ip
ret["Port"] = dn.Port
ret["Volumes"] = dn.GetActiveVolumeCount()
ret["MaxVolumeCount"] = dn.GetMaxVolumeCount()
ret["FreeVolumeCount"] = dn.FreeSpace()
ret["PublicUrl"] = dn.PublicUrl
return ret
2012-09-14 08:17:13 +00:00
}