seaweedfs/weed-fs/src/pkg/storage/store.go

196 lines
5.6 KiB
Go
Raw Normal View History

package storage
import (
"encoding/json"
"errors"
2012-09-13 08:33:47 +00:00
"io/ioutil"
"log"
"net/url"
2012-09-11 00:08:52 +00:00
"pkg/util"
"strconv"
"strings"
)
type Store struct {
volumes map[VolumeId]*Volume
dir string
Port int
2012-09-26 08:55:56 +00:00
Ip string
PublicUrl string
MaxVolumeCount int
//read from the master
masterNode string
volumeSizeLimit uint64
}
2012-09-26 08:55:56 +00:00
func NewStore(port int, ip, publicUrl, dirname string, maxVolumeCount int) (s *Store) {
s = &Store{Port: port, Ip: ip, PublicUrl: publicUrl, dir: dirname, MaxVolumeCount: maxVolumeCount}
2012-08-24 05:46:54 +00:00
s.volumes = make(map[VolumeId]*Volume)
2012-09-13 08:33:47 +00:00
s.loadExistingVolumes()
2012-09-23 21:51:25 +00:00
log.Println("Store started on dir:", dirname, "with", len(s.volumes), "volumes")
return
}
2012-09-26 08:55:56 +00:00
func (s *Store) AddVolume(volumeListString string, replicationType string) error {
2012-09-30 09:20:33 +00:00
rt, e := NewReplicationTypeFromString(replicationType)
2012-09-26 08:55:56 +00:00
if e != nil {
return e
}
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)
if err != nil {
return errors.New("Volume Id " + id_string + " is not a valid unsigned integer!")
}
e = s.addVolume(VolumeId(id), rt)
} else {
pair := strings.Split(range_string, "-")
start, start_err := strconv.ParseUint(pair[0], 10, 64)
if start_err != nil {
return errors.New("Volume Start Id" + pair[0] + " is not a valid unsigned integer!")
}
end, end_err := strconv.ParseUint(pair[1], 10, 64)
if end_err != nil {
return errors.New("Volume End Id" + pair[1] + " is not a valid unsigned integer!")
}
for id := start; id <= end; id++ {
if err := s.addVolume(VolumeId(id), rt); err != nil {
2012-09-13 08:33:47 +00:00
e = err
2012-09-13 07:04:56 +00:00
}
}
}
}
2012-09-13 07:04:56 +00:00
return e
}
2012-09-11 00:08:52 +00:00
func (s *Store) addVolume(vid VolumeId, replicationType ReplicationType) error {
if s.volumes[vid] != nil {
2012-08-24 05:46:54 +00:00
return errors.New("Volume Id " + vid.String() + " already exists!")
}
2012-09-13 08:33:47 +00:00
log.Println("In dir", s.dir, "adds volume =", vid, ", replicationType =", replicationType)
2012-09-11 00:08:52 +00:00
s.volumes[vid] = NewVolume(s.dir, vid, replicationType)
return nil
}
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) {
vid, err := NewVolumeId(volumeIdString)
if err != nil {
return errors.New("Volume Id " + volumeIdString + " is not a valid unsigned integer!"), false
}
garbageThreshold, e := strconv.ParseFloat(garbageThresholdString, 32)
if e != nil {
return errors.New("garbageThreshold " + garbageThresholdString + " is not a valid float number!"), false
}
return nil, garbageThreshold < s.volumes[vid].garbageLevel()
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 {
return errors.New("Volume Id " + volumeIdString + " is not a valid unsigned integer!")
}
return s.volumes[vid].compact()
}
func (s *Store) CommitCompactVolume(volumeIdString string) error {
vid, err := NewVolumeId(volumeIdString)
if err != nil {
return errors.New("Volume Id " + volumeIdString + " is not a valid unsigned integer!")
}
return s.volumes[vid].commitCompact()
2012-11-07 09:51:43 +00:00
}
2012-09-13 08:33:47 +00:00
func (s *Store) loadExistingVolumes() {
if dirs, err := ioutil.ReadDir(s.dir); err == nil {
for _, dir := range dirs {
name := dir.Name()
if !dir.IsDir() && strings.HasSuffix(name, ".dat") {
base := name[:len(name)-len(".dat")]
if vid, err := NewVolumeId(base); err == nil {
if s.volumes[vid] == nil {
v := NewVolume(s.dir, vid, CopyNil)
s.volumes[vid] = v
log.Println("In dir", s.dir, "reads volume = ", vid, ", replicationType =", v.replicaType)
}
}
}
}
}
}
func (s *Store) Status() []*VolumeInfo {
var stats []*VolumeInfo
for k, v := range s.volumes {
2012-08-24 05:56:14 +00:00
s := new(VolumeInfo)
s.Id, s.Size, s.RepType, s.FileCount, s.DeleteCount, s.DeletedByteCount = VolumeId(k), v.ContentSize(), v.replicaType, v.nm.fileCounter, v.nm.deletionCounter, v.nm.deletionByteCounter
stats = append(stats, s)
}
return stats
}
type JoinResult struct {
VolumeSizeLimit uint64
}
func (s *Store) SetMaster(mserver string) {
s.masterNode = mserver
}
func (s *Store) Join() error {
2012-08-24 05:56:14 +00:00
stats := new([]*VolumeInfo)
for k, v := range s.volumes {
2012-08-24 05:56:14 +00:00
s := new(VolumeInfo)
s.Id, s.Size, s.RepType, s.FileCount, s.DeleteCount, s.DeletedByteCount = VolumeId(k), uint64(v.Size()), v.replicaType, v.nm.fileCounter, v.nm.deletionCounter, v.nm.deletionByteCounter
*stats = append(*stats, s)
}
bytes, _ := json.Marshal(stats)
values := make(url.Values)
values.Add("port", strconv.Itoa(s.Port))
2012-09-26 08:55:56 +00:00
values.Add("ip", s.Ip)
values.Add("publicUrl", s.PublicUrl)
values.Add("volumes", string(bytes))
values.Add("maxVolumeCount", strconv.Itoa(s.MaxVolumeCount))
jsonBlob, err := util.Post("http://"+s.masterNode+"/dir/join", values)
if err != nil {
return err
}
var ret JoinResult
if err := json.Unmarshal(jsonBlob, &ret); err != nil {
return err
}
s.volumeSizeLimit = ret.VolumeSizeLimit
return nil
}
func (s *Store) Close() {
for _, v := range s.volumes {
v.Close()
}
}
2012-08-24 05:46:54 +00:00
func (s *Store) Write(i VolumeId, n *Needle) uint32 {
if v := s.volumes[i]; v != nil {
size := v.write(n)
if s.volumeSizeLimit < v.ContentSize()+uint64(size) {
s.Join()
}
return size
2012-09-11 00:08:52 +00:00
}
log.Println("volume", i, "not found!")
2012-09-11 00:08:52 +00:00
return 0
}
2012-08-24 05:46:54 +00:00
func (s *Store) Delete(i VolumeId, n *Needle) uint32 {
if v := s.volumes[i]; v != nil {
2012-09-11 00:08:52 +00:00
return v.delete(n)
}
return 0
}
2012-08-24 05:46:54 +00:00
func (s *Store) Read(i VolumeId, n *Needle) (int, error) {
if v := s.volumes[i]; v != nil {
2012-09-11 00:08:52 +00:00
return v.read(n)
}
return 0, errors.New("Not Found")
}
2012-09-21 00:58:29 +00:00
func (s *Store) GetVolume(i VolumeId) *Volume {
2012-09-26 08:55:56 +00:00
return s.volumes[i]
2012-09-21 00:58:29 +00:00
}
2012-09-11 00:08:52 +00:00
func (s *Store) HasVolume(i VolumeId) bool {
2012-09-26 08:55:56 +00:00
_, ok := s.volumes[i]
return ok
}