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 {
|
2018-07-11 09:01:33 +00:00
|
|
|
XMLName xml.Name `xml:"Configuration"`
|
|
|
|
Topo topology `xml:"Topology"`
|
2018-06-25 06:55:06 +00:00
|
|
|
ip2location map[string]loc // this is not used any more. leave it here for later.
|
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
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (c *Configuration) Locate(ip string, dcName string, rackName string) (dc string, rack string) {
|
2014-04-13 08:29:52 +00:00
|
|
|
if c != nil && c.ip2location != nil {
|
|
|
|
if loc, ok := c.ip2location[ip]; ok {
|
|
|
|
return loc.dcName, loc.rackName
|
2012-09-23 03:46:31 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
|
2014-04-13 08:29:52 +00:00
|
|
|
if dcName == "" {
|
|
|
|
dcName = "DefaultDataCenter"
|
|
|
|
}
|
|
|
|
|
|
|
|
if rackName == "" {
|
|
|
|
rackName = "DefaultRack"
|
|
|
|
}
|
|
|
|
|
|
|
|
return dcName, rackName
|
2012-09-22 07:01:13 +00:00
|
|
|
}
|