2012-09-22 07:01:13 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2012-09-23 03:46:31 +00:00
|
|
|
"encoding/xml"
|
2012-09-22 07:01:13 +00:00
|
|
|
)
|
|
|
|
|
2012-09-23 03:46:31 +00:00
|
|
|
type loc struct {
|
|
|
|
dcName string
|
|
|
|
rackName string
|
|
|
|
}
|
2012-09-22 07:01:13 +00:00
|
|
|
type rack struct {
|
2012-09-23 03:46:31 +00:00
|
|
|
Name string `xml:"name,attr"`
|
|
|
|
Ips []string `xml:"Ip"`
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|
|
|
|
type dataCenter struct {
|
2012-09-23 03:46:31 +00:00
|
|
|
Name string `xml:"name,attr"`
|
|
|
|
Racks []rack `xml:"Rack"`
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|
|
|
|
type topology struct {
|
2012-09-23 03:46:31 +00:00
|
|
|
DataCenters []dataCenter `xml:"DataCenter"`
|
|
|
|
}
|
|
|
|
type Configuration struct {
|
|
|
|
XMLName xml.Name `xml:"Configuration"`
|
|
|
|
Topo topology `xml:"Topology"`
|
|
|
|
ip2location map[string]loc
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|
2012-09-23 03:46:31 +00:00
|
|
|
|
|
|
|
func NewConfiguration(b []byte) (*Configuration, error) {
|
|
|
|
c := &Configuration{}
|
|
|
|
err := xml.Unmarshal(b, c)
|
|
|
|
c.ip2location = make(map[string]loc)
|
|
|
|
for _, dc := range c.Topo.DataCenters {
|
|
|
|
for _, rack := range dc.Racks {
|
|
|
|
for _, ip := range rack.Ips {
|
|
|
|
c.ip2location[ip] = loc{dcName: dc.Name, rackName: rack.Name}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return c, err
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|
|
|
|
|
2012-09-23 03:46:31 +00:00
|
|
|
func (c *Configuration) String() string {
|
|
|
|
if b, e := xml.MarshalIndent(c, " ", " "); e == nil {
|
|
|
|
return string(b)
|
|
|
|
}
|
|
|
|
return ""
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|
|
|
|
|
2012-09-23 03:46:31 +00:00
|
|
|
func (c *Configuration) Locate(ip string) (dc string, rack string) {
|
|
|
|
if c != nil && c.ip2location != nil {
|
|
|
|
if loc, ok := c.ip2location[ip]; ok {
|
|
|
|
return loc.dcName, loc.rackName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "DefaultDataCenter", "DefaultRack"
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|