2013-11-12 10:21:22 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2014-09-24 16:47:09 +00:00
|
|
|
"github.com/aszxqw/weed-fs/go/storage"
|
2013-11-12 10:21:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Collection struct {
|
|
|
|
Name string
|
|
|
|
volumeSizeLimit uint64
|
2014-09-20 19:38:59 +00:00
|
|
|
storageType2VolumeLayout map[string]*VolumeLayout
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCollection(name string, volumeSizeLimit uint64) *Collection {
|
|
|
|
c := &Collection{Name: name, volumeSizeLimit: volumeSizeLimit}
|
2014-09-20 19:38:59 +00:00
|
|
|
c.storageType2VolumeLayout = make(map[string]*VolumeLayout)
|
2013-11-12 10:21:22 +00:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
func (c *Collection) GetOrCreateVolumeLayout(rp *storage.ReplicaPlacement, ttl *storage.TTL) *VolumeLayout {
|
|
|
|
keyString := rp.String()
|
|
|
|
if ttl != nil {
|
|
|
|
keyString += ttl.String()
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
if c.storageType2VolumeLayout[keyString] == nil {
|
|
|
|
c.storageType2VolumeLayout[keyString] = NewVolumeLayout(rp, ttl, c.volumeSizeLimit)
|
|
|
|
}
|
|
|
|
return c.storageType2VolumeLayout[keyString]
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) Lookup(vid storage.VolumeId) []*DataNode {
|
2014-09-20 19:38:59 +00:00
|
|
|
for _, vl := range c.storageType2VolumeLayout {
|
2013-11-12 10:21:22 +00:00
|
|
|
if vl != nil {
|
|
|
|
if list := vl.Lookup(vid); list != nil {
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-03-10 18:43:54 +00:00
|
|
|
|
|
|
|
func (c *Collection) ListVolumeServers() (nodes []*DataNode) {
|
2014-09-20 19:38:59 +00:00
|
|
|
for _, vl := range c.storageType2VolumeLayout {
|
2014-03-10 18:43:54 +00:00
|
|
|
if vl != nil {
|
|
|
|
if list := vl.ListVolumeServers(); list != nil {
|
|
|
|
nodes = append(nodes, list...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|