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

54 lines
1.0 KiB
Go
Raw Normal View History

2012-08-24 11:56:09 +08:00
package topology
import (
2012-09-14 16:17:13 +08:00
"strconv"
)
2012-08-24 11:56:09 +08:00
type Rack struct {
NodeImpl
2012-09-14 16:17:13 +08:00
ipRange *IpRange
2012-08-24 11:56:09 +08:00
}
2012-08-31 16:35:11 +08:00
func NewRack(id string) *Rack {
2012-08-31 16:35:11 +08:00
r := &Rack{}
r.id = NodeId(id)
r.nodeType = "Rack"
r.children = make(map[NodeId]Node)
2012-08-31 16:35:11 +08:00
return r
}
2012-09-14 16:17:13 +08:00
func (r *Rack) MatchLocationRange(ip string) bool{
if r.ipRange == nil {
return true
}
return r.ipRange.Match(ip)
}
func (r *Rack) GetOrCreateDataNode(ip string, port int, publicUrl string, maxVolumeCount int) *DataNode{
2012-09-14 16:17:13 +08:00
for _, c := range r.Children() {
dn := c.(*DataNode)
if dn.MatchLocation(ip,port) {
return dn
}
}
dn := NewDataNode("DataNode"+ip+":"+strconv.Itoa(port))
dn.Ip = ip
dn.Port = port
dn.PublicUrl = publicUrl
dn.maxVolumeCount = maxVolumeCount
2012-09-14 16:17:13 +08:00
r.LinkChildNode(dn)
return dn
}
func (rack *Rack) ToMap() interface{}{
m := make(map[string]interface{})
m["Free"] = rack.FreeSpace()
var dns []interface{}
for _, c := range rack.Children() {
dn := c.(*DataNode)
dns = append(dns, dn.ToMap())
}
m["DataNodes"] = dns
return m
}