2012-08-24 11:56:09 +08:00
|
|
|
package topology
|
|
|
|
|
2012-08-28 16:04:39 +08:00
|
|
|
import (
|
2012-09-14 16:17:13 +08:00
|
|
|
"strconv"
|
2012-08-28 16:04:39 +08:00
|
|
|
)
|
2012-08-24 11:56:09 +08:00
|
|
|
|
|
|
|
type Rack struct {
|
2012-09-03 05:33:48 +08:00
|
|
|
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
|
|
|
|
2012-09-03 05:33:48 +08:00
|
|
|
func NewRack(id string) *Rack {
|
2012-08-31 16:35:11 +08:00
|
|
|
r := &Rack{}
|
2012-09-03 05:33:48 +08:00
|
|
|
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) *DataNode{
|
|
|
|
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
|
|
|
|
r.LinkChildNode(dn)
|
|
|
|
return dn
|
|
|
|
}
|