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

100 lines
2.6 KiB
Go
Raw Normal View History

package storage
import (
"encoding/json"
"errors"
"log"
"net/url"
"strconv"
"strings"
2012-08-24 02:10:55 +00:00
"pkg/topology"
"pkg/util"
)
type Store struct {
2012-08-24 05:46:54 +00:00
volumes map[VolumeId]*Volume
dir string
Port int
PublicUrl string
}
func NewStore(port int, publicUrl, dirname string, volumeListString string) (s *Store) {
s = &Store{Port: port, PublicUrl: publicUrl, dir: dirname}
2012-08-24 05:46:54 +00:00
s.volumes = make(map[VolumeId]*Volume)
s.AddVolume(volumeListString)
log.Println("Store started on dir:", dirname, "with", len(s.volumes), "volumes")
return
}
func (s *Store) AddVolume(volumeListString string) error {
for _, range_string := range strings.Split(volumeListString, ",") {
if strings.Index(range_string, "-") < 0 {
id_string := range_string
id, err := strconv.ParseUint(id_string, 10, 64)
if err != nil {
return errors.New("Volume Id " + id_string + " is not a valid unsigned integer!")
}
2012-08-24 05:46:54 +00:00
s.addVolume(VolumeId(id))
} 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++ {
2012-08-24 05:46:54 +00:00
s.addVolume(VolumeId(id))
}
}
}
return nil
}
2012-08-24 05:46:54 +00:00
func (s *Store) addVolume(vid VolumeId) error {
if s.volumes[vid] != nil {
2012-08-24 05:46:54 +00:00
return errors.New("Volume Id " + vid.String() + " already exists!")
}
2012-08-24 05:46:54 +00:00
s.volumes[vid] = NewVolume(s.dir, vid)
return nil
}
2012-08-24 02:10:55 +00:00
func (s *Store) Status() *[]*topology.VolumeInfo {
stats := new([]*topology.VolumeInfo)
for k, v := range s.volumes {
2012-08-24 02:10:55 +00:00
s := new(topology.VolumeInfo)
s.Id, s.Size = topology.VolumeId(k), v.Size()
*stats = append(*stats, s)
}
return stats
}
func (s *Store) Join(mserver string) {
2012-08-24 02:10:55 +00:00
stats := new([]*topology.VolumeInfo)
for k, v := range s.volumes {
2012-08-24 02:10:55 +00:00
s := new(topology.VolumeInfo)
s.Id, s.Size = topology.VolumeId(k), v.Size()
*stats = append(*stats, s)
}
bytes, _ := json.Marshal(stats)
values := make(url.Values)
values.Add("port", strconv.Itoa(s.Port))
values.Add("publicUrl", s.PublicUrl)
values.Add("volumes", string(bytes))
util.Post("http://"+mserver+"/dir/join", values)
}
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 {
return s.volumes[i].write(n)
}
2012-08-24 05:46:54 +00:00
func (s *Store) Delete(i VolumeId, n *Needle) uint32 {
return s.volumes[i].delete(n)
}
2012-08-24 05:46:54 +00:00
func (s *Store) Read(i VolumeId, n *Needle) (int, error) {
return s.volumes[i].read(n)
}