2012-08-29 07:58:03 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2012-09-02 21:33:48 +00:00
|
|
|
_ "fmt"
|
|
|
|
"pkg/storage"
|
2012-08-29 07:58:03 +00:00
|
|
|
)
|
|
|
|
|
2012-09-08 23:25:44 +00:00
|
|
|
type DataNode struct {
|
2012-09-02 21:33:48 +00:00
|
|
|
NodeImpl
|
|
|
|
volumes map[storage.VolumeId]*storage.VolumeInfo
|
2012-09-10 07:18:07 +00:00
|
|
|
ip string
|
|
|
|
port int
|
|
|
|
publicUrl string
|
|
|
|
lastSeen int64 // unix time in seconds
|
2012-08-29 07:58:03 +00:00
|
|
|
}
|
2012-09-02 21:33:48 +00:00
|
|
|
|
2012-09-08 23:25:44 +00:00
|
|
|
func NewDataNode(id string) *DataNode {
|
|
|
|
s := &DataNode{}
|
2012-09-02 21:33:48 +00:00
|
|
|
s.id = NodeId(id)
|
2012-09-08 23:25:44 +00:00
|
|
|
s.nodeType = "DataNode"
|
2012-09-02 21:33:48 +00:00
|
|
|
s.volumes = make(map[storage.VolumeId]*storage.VolumeInfo)
|
|
|
|
return s
|
2012-08-31 08:35:11 +00:00
|
|
|
}
|
2012-09-10 07:18:07 +00: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-02 21:33:48 +00:00
|
|
|
return vid
|
2012-08-29 07:58:03 +00:00
|
|
|
}
|
2012-09-10 07:18:07 +00: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 07:58:03 +00:00
|
|
|
}
|