2013-11-12 10:21:22 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2015-01-08 07:54:50 +00:00
|
|
|
"fmt"
|
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2013-11-12 10:21:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Collection struct {
|
|
|
|
Name string
|
|
|
|
volumeSizeLimit uint64
|
2014-12-09 04:29:25 +00:00
|
|
|
storageType2VolumeLayout *util.ConcurrentReadMap
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCollection(name string, volumeSizeLimit uint64) *Collection {
|
|
|
|
c := &Collection{Name: name, volumeSizeLimit: volumeSizeLimit}
|
2014-12-09 04:29:25 +00:00
|
|
|
c.storageType2VolumeLayout = util.NewConcurrentReadMap()
|
2013-11-12 10:21:22 +00:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2015-01-08 07:54:50 +00:00
|
|
|
func (c *Collection) String() string {
|
|
|
|
return fmt.Sprintf("Name:%s, volumeSizeLimit:%d, storageType2VolumeLayout:%v", c.Name, c.volumeSizeLimit, c.storageType2VolumeLayout)
|
|
|
|
}
|
|
|
|
|
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-12-09 04:29:25 +00:00
|
|
|
vl := c.storageType2VolumeLayout.Get(keyString, func() interface{} {
|
|
|
|
return NewVolumeLayout(rp, ttl, c.volumeSizeLimit)
|
|
|
|
})
|
|
|
|
return vl.(*VolumeLayout)
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) Lookup(vid storage.VolumeId) []*DataNode {
|
2016-05-30 19:30:26 +00:00
|
|
|
for _, vl := range c.storageType2VolumeLayout.Items() {
|
2013-11-12 10:21:22 +00:00
|
|
|
if vl != nil {
|
2014-12-09 04:29:25 +00:00
|
|
|
if list := vl.(*VolumeLayout).Lookup(vid); list != nil {
|
2013-11-12 10:21:22 +00:00
|
|
|
return list
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-03-10 18:43:54 +00:00
|
|
|
|
|
|
|
func (c *Collection) ListVolumeServers() (nodes []*DataNode) {
|
2016-05-30 19:30:26 +00:00
|
|
|
for _, vl := range c.storageType2VolumeLayout.Items() {
|
2014-03-10 18:43:54 +00:00
|
|
|
if vl != nil {
|
2014-12-09 04:29:25 +00:00
|
|
|
if list := vl.(*VolumeLayout).ListVolumeServers(); list != nil {
|
2014-03-10 18:43:54 +00:00
|
|
|
nodes = append(nodes, list...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|