diff options
Diffstat (limited to 'go/storage/disk_location.go')
| -rw-r--r-- | go/storage/disk_location.go | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/go/storage/disk_location.go b/go/storage/disk_location.go new file mode 100644 index 000000000..146e53ed6 --- /dev/null +++ b/go/storage/disk_location.go @@ -0,0 +1,44 @@ +package storage + +import ( + "io/ioutil" + "strings" + + "github.com/chrislusf/seaweedfs/go/glog" +) + +type DiskLocation struct { + Directory string + MaxVolumeCount int + volumes map[VolumeId]*Volume +} + +func (mn *DiskLocation) reset() { +} + +func (l *DiskLocation) loadExistingVolumes(needleMapKind NeedleMapType) { + if dirs, err := ioutil.ReadDir(l.Directory); err == nil { + for _, dir := range dirs { + name := dir.Name() + if !dir.IsDir() && strings.HasSuffix(name, ".dat") { + collection := "" + base := name[:len(name)-len(".dat")] + i := strings.LastIndex(base, "_") + if i > 0 { + collection, base = base[0:i], base[i+1:] + } + if vid, err := NewVolumeId(base); err == nil { + if l.volumes[vid] == nil { + if v, e := NewVolume(l.Directory, collection, vid, needleMapKind, nil, nil); e == nil { + l.volumes[vid] = v + glog.V(0).Infof("data file %s, replicaPlacement=%s v=%d size=%d ttl=%s", l.Directory+"/"+name, v.ReplicaPlacement, v.Version(), v.Size(), v.Ttl.String()) + } else { + glog.V(0).Infof("new volume %s error %s", name, e) + } + } + } + } + } + } + glog.V(0).Infoln("Store started on dir:", l.Directory, "with", len(l.volumes), "volumes", "max", l.MaxVolumeCount) +} |
