2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2012-06-29 07:53:47 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2012-09-13 08:33:47 +00:00
|
|
|
"io/ioutil"
|
2011-12-16 14:51:26 +00:00
|
|
|
"log"
|
2012-06-29 07:53:47 +00:00
|
|
|
"net/url"
|
2012-09-11 00:08:52 +00:00
|
|
|
"pkg/util"
|
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
|
|
|
)
|
|
|
|
|
|
|
|
type Store struct {
|
2012-09-17 00:31:15 +00:00
|
|
|
volumes map[VolumeId]*Volume
|
|
|
|
dir string
|
|
|
|
Port int
|
|
|
|
PublicUrl string
|
|
|
|
MaxVolumeCount int
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2012-09-17 00:31:15 +00:00
|
|
|
func NewStore(port int, publicUrl, dirname string, maxVolumeCount int, volumeListString string) (s *Store) {
|
|
|
|
s = &Store{Port: port, 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-17 00:31:15 +00:00
|
|
|
if volumeListString != "" {
|
|
|
|
s.AddVolume(volumeListString, "00")
|
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
|
2012-09-13 07:04:56 +00:00
|
|
|
log.Println("Store started on dir:", dirname, "with", len(s.volumes), "volumes", volumeListString)
|
2011-12-29 01:46:38 +00:00
|
|
|
return
|
|
|
|
}
|
2012-09-13 07:04:56 +00:00
|
|
|
func (s *Store) AddVolume(volumeListString string, replicationType string) (e error) {
|
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
|
|
|
|
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-09-13 07:04:56 +00:00
|
|
|
e = s.addVolume(VolumeId(id), NewReplicationType(replicationType))
|
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 {
|
|
|
|
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-09-13 07:04:56 +00:00
|
|
|
if err := s.addVolume(VolumeId(id), NewReplicationType(replicationType)); 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
|
|
|
}
|
2012-09-11 00:08:52 +00:00
|
|
|
func (s *Store) addVolume(vid VolumeId, replicationType ReplicationType) error {
|
2012-06-29 07:53:47 +00:00
|
|
|
if s.volumes[vid] != nil {
|
2012-08-24 05:46:54 +00:00
|
|
|
return errors.New("Volume Id " + vid.String() + " already exists!")
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
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)
|
2012-06-29 07:53:47 +00:00
|
|
|
return nil
|
2011-12-16 14:51:26 +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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
func (s *Store) Status() []*VolumeInfo {
|
|
|
|
var stats []*VolumeInfo
|
2011-12-26 09:43:17 +00:00
|
|
|
for k, v := range s.volumes {
|
2012-08-24 05:56:14 +00:00
|
|
|
s := new(VolumeInfo)
|
2012-09-11 00:08:52 +00:00
|
|
|
s.Id, s.Size, s.RepType = VolumeId(k), v.Size(), v.replicaType
|
2012-09-17 00:31:15 +00:00
|
|
|
stats = append(stats, s)
|
2011-12-26 09:43:17 +00:00
|
|
|
}
|
|
|
|
return stats
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
func (s *Store) Join(mserver string) error {
|
2012-08-24 05:56:14 +00:00
|
|
|
stats := new([]*VolumeInfo)
|
2011-12-18 07:22:04 +00:00
|
|
|
for k, v := range s.volumes {
|
2012-08-24 05:56:14 +00:00
|
|
|
s := new(VolumeInfo)
|
2012-09-11 00:08:52 +00:00
|
|
|
s.Id, s.Size, s.RepType = VolumeId(k), v.Size(), v.replicaType
|
2011-12-17 06:47:23 +00:00
|
|
|
*stats = append(*stats, s)
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
bytes, _ := json.Marshal(stats)
|
|
|
|
values := make(url.Values)
|
|
|
|
values.Add("port", strconv.Itoa(s.Port))
|
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))
|
2012-09-17 00:31:15 +00:00
|
|
|
values.Add("maxVolumeCount", strconv.Itoa(s.MaxVolumeCount))
|
|
|
|
_, err := util.Post("http://"+mserver+"/dir/join", values)
|
|
|
|
return err
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
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 {
|
2012-09-17 00:31:15 +00:00
|
|
|
if v := s.volumes[i]; v != nil {
|
2012-09-11 00:08:52 +00:00
|
|
|
return v.write(n)
|
|
|
|
}
|
|
|
|
return 0
|
2012-01-19 00:49:41 +00:00
|
|
|
}
|
2012-08-24 05:46:54 +00:00
|
|
|
func (s *Store) Delete(i VolumeId, n *Needle) uint32 {
|
2012-09-17 00:31:15 +00:00
|
|
|
if v := s.volumes[i]; v != nil {
|
2012-09-11 00:08:52 +00:00
|
|
|
return v.delete(n)
|
|
|
|
}
|
|
|
|
return 0
|
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) {
|
2012-09-17 00:31:15 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
type VolumeLocations struct {
|
|
|
|
Vid VolumeId
|
|
|
|
Locations []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) SetVolumeLocations(volumeLocationList []VolumeLocations) error {
|
|
|
|
for _, volumeLocations := range volumeLocationList {
|
|
|
|
vid := volumeLocations.Vid
|
2012-09-17 00:31:15 +00:00
|
|
|
if v := s.volumes[vid]; v != nil {
|
2012-09-11 00:08:52 +00:00
|
|
|
v.locations = volumeLocations.Locations
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|