2012-08-29 15:58:03 +08:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2012-09-03 05:33:48 +08:00
|
|
|
_ "fmt"
|
|
|
|
"pkg/storage"
|
2012-08-29 15:58:03 +08:00
|
|
|
)
|
|
|
|
|
2012-09-09 07:25:44 +08:00
|
|
|
type DataNode struct {
|
2012-09-03 05:33:48 +08:00
|
|
|
NodeImpl
|
|
|
|
volumes map[storage.VolumeId]*storage.VolumeInfo
|
2012-09-10 15:18:07 +08:00
|
|
|
ip string
|
|
|
|
port int
|
|
|
|
publicUrl string
|
|
|
|
lastSeen int64 // unix time in seconds
|
2012-08-29 15:58:03 +08:00
|
|
|
}
|
2012-09-03 05:33:48 +08:00
|
|
|
|
2012-09-09 07:25:44 +08:00
|
|
|
func NewDataNode(id string) *DataNode {
|
|
|
|
s := &DataNode{}
|
2012-09-03 05:33:48 +08:00
|
|
|
s.id = NodeId(id)
|
2012-09-09 07:25:44 +08:00
|
|
|
s.nodeType = "DataNode"
|
2012-09-03 05:33:48 +08:00
|
|
|
s.volumes = make(map[storage.VolumeId]*storage.VolumeInfo)
|
|
|
|
return s
|
2012-08-31 16:35:11 +08:00
|
|
|
}
|
2012-09-10 15:18:07 +08:00
|
|
|
func (dn *DataNode) CreateOneVolume(r int, vid storage.VolumeId) storage.VolumeId {
|
|
|
|
dn.AddVolume(&storage.VolumeInfo{Id: vid, Size: 32 * 1024 * 1024 * 1024})
|
2012-09-03 05:33:48 +08:00
|
|
|
return vid
|
2012-08-29 15:58:03 +08:00
|
|
|
}
|
2012-09-10 15:18:07 +08:00
|
|
|
func (dn *DataNode) AddVolume(v *storage.VolumeInfo) {
|
|
|
|
dn.volumes[v.Id] = v
|
|
|
|
dn.UpAdjustActiveVolumeCountDelta(1)
|
|
|
|
dn.UpAdjustMaxVolumeId(v.Id)
|
|
|
|
dn.GetTopology().RegisterVolume(v,dn)
|
|
|
|
}
|
|
|
|
func (dn *DataNode) GetTopology() *Topology {
|
|
|
|
p := dn.parent
|
|
|
|
for p.Parent()!=nil{
|
|
|
|
p = p.Parent()
|
|
|
|
}
|
|
|
|
t := p.(*Topology)
|
|
|
|
return t
|
2012-08-29 15:58:03 +08:00
|
|
|
}
|