2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2013-09-02 06:58:21 +00:00
|
|
|
"code.google.com/p/weed-fs/go/glog"
|
2014-02-15 01:10:49 +00:00
|
|
|
"code.google.com/p/weed-fs/go/operation"
|
2013-02-27 06:54:22 +00:00
|
|
|
"code.google.com/p/weed-fs/go/util"
|
2012-06-29 07:53:47 +00:00
|
|
|
"encoding/json"
|
2014-02-15 01:10:49 +00:00
|
|
|
"errors"
|
2013-07-04 05:14:16 +00:00
|
|
|
"fmt"
|
2012-09-13 08:33:47 +00:00
|
|
|
"io/ioutil"
|
2014-02-15 01:10:49 +00:00
|
|
|
"math/rand"
|
2012-06-29 07:53:47 +00:00
|
|
|
"net/url"
|
2011-12-16 14:51:26 +00:00
|
|
|
"strconv"
|
2012-06-29 07:53:47 +00:00
|
|
|
"strings"
|
2011-12-16 14:51:26 +00:00
|
|
|
)
|
|
|
|
|
2013-07-13 18:38:01 +00:00
|
|
|
type DiskLocation struct {
|
|
|
|
directory string
|
|
|
|
maxVolumeCount int
|
2012-09-17 00:31:15 +00:00
|
|
|
volumes map[VolumeId]*Volume
|
2013-07-13 18:38:01 +00:00
|
|
|
}
|
2014-02-15 01:10:49 +00:00
|
|
|
type MasterNodes struct {
|
|
|
|
nodes []string
|
|
|
|
lastNode int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMasterNodes(bootstrapNode string) (mn *MasterNodes) {
|
|
|
|
mn = &MasterNodes{nodes: []string{bootstrapNode}, lastNode: -1}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
func (mn *MasterNodes) reset() {
|
|
|
|
if len(mn.nodes) > 1 && mn.lastNode > 0 {
|
|
|
|
mn.lastNode = -mn.lastNode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (mn *MasterNodes) findMaster() (string, error) {
|
|
|
|
if len(mn.nodes) == 0 {
|
|
|
|
return "", errors.New("No master node found!")
|
|
|
|
}
|
|
|
|
if mn.lastNode < 0 {
|
|
|
|
for _, m := range mn.nodes {
|
|
|
|
if masters, e := operation.ListMasters(m); e == nil {
|
|
|
|
mn.nodes = masters
|
|
|
|
mn.lastNode = rand.Intn(len(mn.nodes))
|
|
|
|
glog.V(2).Info("current master node is :", mn.nodes[mn.lastNode])
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(mn.nodes) == 1 {
|
|
|
|
return mn.nodes[0], nil
|
|
|
|
}
|
|
|
|
if mn.lastNode < 0 {
|
|
|
|
return "", errors.New("No master node avalable!")
|
|
|
|
}
|
|
|
|
return mn.nodes[mn.lastNode], nil
|
|
|
|
}
|
|
|
|
|
2013-07-13 18:38:01 +00:00
|
|
|
type Store struct {
|
|
|
|
Port int
|
|
|
|
Ip string
|
|
|
|
PublicUrl string
|
|
|
|
locations []*DiskLocation
|
2013-06-20 01:10:38 +00:00
|
|
|
dataCenter string //optional informaton, overwriting master setting if exists
|
|
|
|
rack string //optional information, overwriting master setting if exists
|
2012-12-23 00:26:02 +00:00
|
|
|
connected bool
|
|
|
|
volumeSizeLimit uint64 //read from the master
|
2014-02-15 01:10:49 +00:00
|
|
|
masterNodes *MasterNodes
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2013-07-13 18:38:01 +00:00
|
|
|
func NewStore(port int, ip, publicUrl string, dirnames []string, maxVolumeCounts []int) (s *Store) {
|
|
|
|
s = &Store{Port: port, Ip: ip, PublicUrl: publicUrl}
|
|
|
|
s.locations = make([]*DiskLocation, 0)
|
|
|
|
for i := 0; i < len(dirnames); i++ {
|
|
|
|
location := &DiskLocation{directory: dirnames[i], maxVolumeCount: maxVolumeCounts[i]}
|
|
|
|
location.volumes = make(map[VolumeId]*Volume)
|
|
|
|
location.loadExistingVolumes()
|
|
|
|
s.locations = append(s.locations, location)
|
|
|
|
}
|
2011-12-29 01:46:38 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-03 06:16:54 +00:00
|
|
|
func (s *Store) AddVolume(volumeListString string, collection string, replicaPlacement string) error {
|
|
|
|
rt, e := NewReplicaPlacementFromString(replicaPlacement)
|
2012-09-26 08:55:56 +00:00
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
for _, range_string := range strings.Split(volumeListString, ",") {
|
|
|
|
if strings.Index(range_string, "-") < 0 {
|
|
|
|
id_string := range_string
|
2012-11-07 09:51:43 +00:00
|
|
|
id, err := NewVolumeId(id_string)
|
2012-06-29 07:53:47 +00:00
|
|
|
if err != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", id_string)
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
2013-11-12 10:21:22 +00:00
|
|
|
e = s.addVolume(VolumeId(id), collection, rt)
|
2012-06-29 07:53:47 +00:00
|
|
|
} else {
|
|
|
|
pair := strings.Split(range_string, "-")
|
|
|
|
start, start_err := strconv.ParseUint(pair[0], 10, 64)
|
|
|
|
if start_err != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Start Id %s is not a valid unsigned integer!", pair[0])
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
|
|
|
end, end_err := strconv.ParseUint(pair[1], 10, 64)
|
|
|
|
if end_err != nil {
|
2013-07-13 18:38:01 +00:00
|
|
|
return fmt.Errorf("Volume End Id %s is not a valid unsigned integer!", pair[1])
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
|
|
|
for id := start; id <= end; id++ {
|
2013-11-12 10:21:22 +00:00
|
|
|
if err := s.addVolume(VolumeId(id), collection, rt); err != nil {
|
2012-09-13 08:33:47 +00:00
|
|
|
e = err
|
2012-09-13 07:04:56 +00:00
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-13 07:04:56 +00:00
|
|
|
return e
|
2011-12-29 01:46:38 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
func (s *Store) findVolume(vid VolumeId) *Volume {
|
|
|
|
for _, location := range s.locations {
|
|
|
|
if v, found := location.volumes[vid]; found {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (s *Store) findFreeLocation() (ret *DiskLocation) {
|
|
|
|
max := 0
|
|
|
|
for _, location := range s.locations {
|
|
|
|
currentFreeCount := location.maxVolumeCount - len(location.volumes)
|
|
|
|
if currentFreeCount > max {
|
|
|
|
max = currentFreeCount
|
|
|
|
ret = location
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2014-03-03 06:16:54 +00:00
|
|
|
func (s *Store) addVolume(vid VolumeId, collection string, replicaPlacement *ReplicaPlacement) error {
|
2013-07-13 18:38:01 +00:00
|
|
|
if s.findVolume(vid) != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Id %s already exists!", vid)
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
if location := s.findFreeLocation(); location != nil {
|
2014-03-03 06:16:54 +00:00
|
|
|
glog.V(0).Infoln("In dir", location.directory, "adds volume =", vid, ", collection =", collection, ", replicaPlacement =", replicaPlacement)
|
|
|
|
if volume, err := NewVolume(location.directory, collection, vid, replicaPlacement); err == nil {
|
2013-09-02 06:58:21 +00:00
|
|
|
location.volumes[vid] = volume
|
|
|
|
return nil
|
2013-07-20 03:38:00 +00:00
|
|
|
} else {
|
2013-09-02 06:58:21 +00:00
|
|
|
return err
|
2013-07-20 03:38:00 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
}
|
|
|
|
return fmt.Errorf("No more free space left")
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-11-07 09:51:43 +00:00
|
|
|
|
2012-11-24 01:03:27 +00:00
|
|
|
func (s *Store) CheckCompactVolume(volumeIdString string, garbageThresholdString string) (error, bool) {
|
2012-12-04 06:54:08 +00:00
|
|
|
vid, err := NewVolumeId(volumeIdString)
|
|
|
|
if err != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString), false
|
2012-12-04 06:54:08 +00:00
|
|
|
}
|
|
|
|
garbageThreshold, e := strconv.ParseFloat(garbageThresholdString, 32)
|
|
|
|
if e != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("garbageThreshold %s is not a valid float number!", garbageThresholdString), false
|
2012-12-04 06:54:08 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
|
|
|
return nil, garbageThreshold < v.garbageLevel()
|
|
|
|
}
|
|
|
|
return fmt.Errorf("volume id %s is not found during check compact!", vid), false
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2012-11-07 09:51:43 +00:00
|
|
|
func (s *Store) CompactVolume(volumeIdString string) error {
|
|
|
|
vid, err := NewVolumeId(volumeIdString)
|
|
|
|
if err != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
2013-09-29 05:18:52 +00:00
|
|
|
return v.Compact()
|
2013-07-13 18:38:01 +00:00
|
|
|
}
|
|
|
|
return fmt.Errorf("volume id %s is not found during compact!", vid)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
func (s *Store) CommitCompactVolume(volumeIdString string) error {
|
|
|
|
vid, err := NewVolumeId(volumeIdString)
|
|
|
|
if err != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString)
|
2012-12-04 06:54:08 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
|
|
|
return v.commitCompact()
|
|
|
|
}
|
|
|
|
return fmt.Errorf("volume id %s is not found during commit compact!", vid)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
func (s *Store) FreezeVolume(volumeIdString string) error {
|
|
|
|
vid, err := NewVolumeId(volumeIdString)
|
|
|
|
if err != nil {
|
2013-07-04 05:14:16 +00:00
|
|
|
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString)
|
2013-06-20 01:10:38 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
|
|
|
if v.readOnly {
|
|
|
|
return fmt.Errorf("Volume %s is already read-only", volumeIdString)
|
|
|
|
}
|
|
|
|
return v.freeze()
|
2013-06-20 01:10:38 +00:00
|
|
|
}
|
2013-07-20 02:37:10 +00:00
|
|
|
return fmt.Errorf("volume id %s is not found during freeze!", vid)
|
2013-06-20 01:10:38 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
func (l *DiskLocation) loadExistingVolumes() {
|
|
|
|
if dirs, err := ioutil.ReadDir(l.directory); err == nil {
|
2012-09-13 08:33:47 +00:00
|
|
|
for _, dir := range dirs {
|
|
|
|
name := dir.Name()
|
|
|
|
if !dir.IsDir() && strings.HasSuffix(name, ".dat") {
|
2013-11-12 10:21:22 +00:00
|
|
|
collection := ""
|
2012-09-13 08:33:47 +00:00
|
|
|
base := name[:len(name)-len(".dat")]
|
2013-11-12 10:21:22 +00:00
|
|
|
i := strings.Index(base, "_")
|
|
|
|
if i > 0 {
|
|
|
|
collection, base = base[0:i], base[i+1:]
|
|
|
|
}
|
2012-09-13 08:33:47 +00:00
|
|
|
if vid, err := NewVolumeId(base); err == nil {
|
2013-07-13 18:38:01 +00:00
|
|
|
if l.volumes[vid] == nil {
|
2014-03-03 06:16:54 +00:00
|
|
|
if v, e := NewVolume(l.directory, collection, vid, nil); e == nil {
|
2013-07-13 18:38:01 +00:00
|
|
|
l.volumes[vid] = v
|
2014-03-03 06:16:54 +00:00
|
|
|
glog.V(0).Infoln("data file", l.directory+"/"+name, "replicaPlacement =", v.ReplicaPlacement, "version =", v.Version(), "size =", v.Size())
|
2013-01-17 08:56:56 +00:00
|
|
|
}
|
2012-09-13 08:33:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("Store started on dir:", l.directory, "with", len(l.volumes), "volumes", "max", l.maxVolumeCount)
|
2012-09-13 08:33:47 +00:00
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
func (s *Store) Status() []*VolumeInfo {
|
|
|
|
var stats []*VolumeInfo
|
2013-07-13 18:38:01 +00:00
|
|
|
for _, location := range s.locations {
|
|
|
|
for k, v := range location.volumes {
|
|
|
|
s := &VolumeInfo{Id: VolumeId(k), Size: v.ContentSize(),
|
2013-11-12 10:21:22 +00:00
|
|
|
Collection: v.Collection,
|
2014-03-03 06:16:54 +00:00
|
|
|
ReplicaPlacement: v.ReplicaPlacement,
|
2013-11-12 10:21:22 +00:00
|
|
|
Version: v.Version(),
|
2013-07-13 18:38:01 +00:00
|
|
|
FileCount: v.nm.FileCount(),
|
|
|
|
DeleteCount: v.nm.DeletedCount(),
|
|
|
|
DeletedByteCount: v.nm.DeletedSize(),
|
|
|
|
ReadOnly: v.readOnly}
|
|
|
|
stats = append(stats, s)
|
|
|
|
}
|
2011-12-26 09:43:17 +00:00
|
|
|
}
|
|
|
|
return stats
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
|
|
|
|
type JoinResult struct {
|
|
|
|
VolumeSizeLimit uint64
|
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (s *Store) SetDataCenter(dataCenter string) {
|
|
|
|
s.dataCenter = dataCenter
|
|
|
|
}
|
|
|
|
func (s *Store) SetRack(rack string) {
|
|
|
|
s.rack = rack
|
|
|
|
}
|
2014-02-15 01:10:49 +00:00
|
|
|
|
|
|
|
func (s *Store) SetBootstrapMaster(bootstrapMaster string) {
|
|
|
|
s.masterNodes = NewMasterNodes(bootstrapMaster)
|
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
func (s *Store) Join() error {
|
2014-02-15 01:10:49 +00:00
|
|
|
masterNode, e := s.masterNodes.findMaster()
|
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
2012-08-24 05:56:14 +00:00
|
|
|
stats := new([]*VolumeInfo)
|
2013-07-13 18:38:01 +00:00
|
|
|
maxVolumeCount := 0
|
|
|
|
for _, location := range s.locations {
|
|
|
|
maxVolumeCount = maxVolumeCount + location.maxVolumeCount
|
|
|
|
for k, v := range location.volumes {
|
|
|
|
s := &VolumeInfo{Id: VolumeId(k), Size: uint64(v.Size()),
|
2013-11-12 10:21:22 +00:00
|
|
|
Collection: v.Collection,
|
2014-03-03 06:16:54 +00:00
|
|
|
ReplicaPlacement: v.ReplicaPlacement,
|
2013-11-12 10:21:22 +00:00
|
|
|
Version: v.Version(),
|
2013-07-13 18:38:01 +00:00
|
|
|
FileCount: v.nm.FileCount(),
|
|
|
|
DeleteCount: v.nm.DeletedCount(),
|
|
|
|
DeletedByteCount: v.nm.DeletedSize(),
|
|
|
|
ReadOnly: v.readOnly}
|
|
|
|
*stats = append(*stats, s)
|
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
bytes, _ := json.Marshal(stats)
|
|
|
|
values := make(url.Values)
|
2012-12-23 00:26:02 +00:00
|
|
|
if !s.connected {
|
|
|
|
values.Add("init", "true")
|
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
values.Add("port", strconv.Itoa(s.Port))
|
2012-09-26 08:55:56 +00:00
|
|
|
values.Add("ip", s.Ip)
|
2011-12-26 10:07:53 +00:00
|
|
|
values.Add("publicUrl", s.PublicUrl)
|
2011-12-16 14:51:26 +00:00
|
|
|
values.Add("volumes", string(bytes))
|
2013-07-13 18:38:01 +00:00
|
|
|
values.Add("maxVolumeCount", strconv.Itoa(maxVolumeCount))
|
2013-06-20 01:10:38 +00:00
|
|
|
values.Add("dataCenter", s.dataCenter)
|
|
|
|
values.Add("rack", s.rack)
|
2014-02-15 01:10:49 +00:00
|
|
|
jsonBlob, err := util.Post("http://"+masterNode+"/dir/join", values)
|
2012-12-04 06:54:08 +00:00
|
|
|
if err != nil {
|
2014-02-15 01:10:49 +00:00
|
|
|
s.masterNodes.reset()
|
2012-12-04 06:54:08 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
var ret JoinResult
|
|
|
|
if err := json.Unmarshal(jsonBlob, &ret); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
s.volumeSizeLimit = ret.VolumeSizeLimit
|
2012-12-23 00:26:02 +00:00
|
|
|
s.connected = true
|
2012-12-04 06:54:08 +00:00
|
|
|
return nil
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
func (s *Store) Close() {
|
2013-07-13 18:38:01 +00:00
|
|
|
for _, location := range s.locations {
|
|
|
|
for _, v := range location.volumes {
|
|
|
|
v.Close()
|
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
func (s *Store) Write(i VolumeId, n *Needle) (size uint32, err error) {
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(i); v != nil {
|
2013-04-15 02:34:37 +00:00
|
|
|
if v.readOnly {
|
2013-07-04 05:14:16 +00:00
|
|
|
err = fmt.Errorf("Volume %s is read only!", i)
|
2013-04-18 07:23:14 +00:00
|
|
|
return
|
2013-04-15 02:34:37 +00:00
|
|
|
} else {
|
2014-02-05 18:22:32 +00:00
|
|
|
if MaxPossibleVolumeSize >= v.ContentSize()+uint64(size) {
|
2013-07-04 05:14:16 +00:00
|
|
|
size, err = v.write(n)
|
|
|
|
} else {
|
|
|
|
err = fmt.Errorf("Volume Size Limit %d Exceeded! Current size is %d", s.volumeSizeLimit, v.ContentSize())
|
|
|
|
}
|
2014-02-05 18:36:37 +00:00
|
|
|
if s.volumeSizeLimit < v.ContentSize()+3*uint64(size) {
|
2014-02-05 18:22:32 +00:00
|
|
|
glog.V(0).Infoln("volume", i, "size", v.ContentSize(), "will exceed limit", s.volumeSizeLimit)
|
2014-02-05 18:36:37 +00:00
|
|
|
if e := s.Join(); e != nil {
|
2014-02-05 18:22:32 +00:00
|
|
|
glog.V(0).Infoln("error when reporting size:", e)
|
2013-04-15 02:34:37 +00:00
|
|
|
}
|
2013-02-27 06:54:22 +00:00
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("volume", i, "not found!")
|
2013-07-04 05:14:16 +00:00
|
|
|
err = fmt.Errorf("Volume %s not found!", i)
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
2012-01-19 00:49:41 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
func (s *Store) Delete(i VolumeId, n *Needle) (uint32, error) {
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(i); v != nil && !v.readOnly {
|
2012-09-11 00:08:52 +00:00
|
|
|
return v.delete(n)
|
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return 0, nil
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-08-24 05:46:54 +00:00
|
|
|
func (s *Store) Read(i VolumeId, n *Needle) (int, error) {
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(i); v != nil {
|
2012-09-11 00:08:52 +00:00
|
|
|
return v.read(n)
|
|
|
|
}
|
2013-07-04 05:14:16 +00:00
|
|
|
return 0, fmt.Errorf("Volume %s not found!", i)
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2012-09-21 00:58:29 +00:00
|
|
|
func (s *Store) GetVolume(i VolumeId) *Volume {
|
2013-07-13 18:38:01 +00:00
|
|
|
return s.findVolume(i)
|
2012-09-21 00:58:29 +00:00
|
|
|
}
|
2012-09-11 00:08:52 +00:00
|
|
|
|
2012-09-20 09:47:32 +00:00
|
|
|
func (s *Store) HasVolume(i VolumeId) bool {
|
2013-07-13 18:38:01 +00:00
|
|
|
v := s.findVolume(i)
|
|
|
|
return v != nil
|
2012-09-20 09:47:32 +00:00
|
|
|
}
|