From 08dcf2f03568296b4d6e8fe9073c0e6c2339812c Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Thu, 20 Sep 2012 18:02:56 -0700 Subject: [PATCH] refactoring allocate_volume operation --- weed-fs/src/pkg/operation/allocate_volume.go | 33 ++++++++++++++++++++ weed-fs/src/pkg/replication/volume_growth.go | 29 ++--------------- 2 files changed, 35 insertions(+), 27 deletions(-) create mode 100644 weed-fs/src/pkg/operation/allocate_volume.go diff --git a/weed-fs/src/pkg/operation/allocate_volume.go b/weed-fs/src/pkg/operation/allocate_volume.go new file mode 100644 index 000000000..771ec40eb --- /dev/null +++ b/weed-fs/src/pkg/operation/allocate_volume.go @@ -0,0 +1,33 @@ +package operation + +import ( + "encoding/json" + "errors" + "net/url" + "pkg/storage" + "pkg/topology" + "pkg/util" + "strconv" +) + +type AllocateVolumeResult struct { + Error string +} + +func AllocateVolume(dn *topology.DataNode, vid storage.VolumeId, repType storage.ReplicationType) error { + values := make(url.Values) + values.Add("volume", vid.String()) + values.Add("replicationType", repType.String()) + jsonBlob, err := util.Post("http://"+dn.Ip+":"+strconv.Itoa(dn.Port)+"/admin/assign_volume", values) + if err != nil { + return err + } + var ret AllocateVolumeResult + if err := json.Unmarshal(jsonBlob, &ret); err != nil { + return err + } + if ret.Error != "" { + return errors.New(ret.Error) + } + return nil +} diff --git a/weed-fs/src/pkg/replication/volume_growth.go b/weed-fs/src/pkg/replication/volume_growth.go index 0176033d8..39597f2a6 100644 --- a/weed-fs/src/pkg/replication/volume_growth.go +++ b/weed-fs/src/pkg/replication/volume_growth.go @@ -1,15 +1,12 @@ package replication import ( - "encoding/json" "errors" "fmt" "math/rand" - "net/url" "pkg/storage" "pkg/topology" - "pkg/util" - "strconv" + "pkg/operation" ) /* @@ -125,7 +122,7 @@ func (vg *VolumeGrowth) GrowByCountAndType(count int, repType storage.Replicatio } func (vg *VolumeGrowth) grow(topo *topology.Topology, vid storage.VolumeId, repType storage.ReplicationType, servers ...*topology.DataNode) error { for _, server := range servers { - if err := AllocateVolume(server, vid, repType); err == nil { + if err := operation.AllocateVolume(server, vid, repType); err == nil { vi := storage.VolumeInfo{Id: vid, Size: 0, RepType:repType} server.AddOrUpdateVolume(vi) topo.RegisterVolumeLayout(&vi, server) @@ -137,25 +134,3 @@ func (vg *VolumeGrowth) grow(topo *topology.Topology, vid storage.VolumeId, repT } return nil } - -type AllocateVolumeResult struct { - Error string -} - -func AllocateVolume(dn *topology.DataNode, vid storage.VolumeId, repType storage.ReplicationType) error { - values := make(url.Values) - values.Add("volume", vid.String()) - values.Add("replicationType", repType.String()) - jsonBlob, err := util.Post("http://"+dn.Ip+":"+strconv.Itoa(dn.Port)+"/admin/assign_volume", values) - if err != nil { - return err - } - var ret AllocateVolumeResult - if err := json.Unmarshal(jsonBlob, &ret); err != nil { - return err - } - if ret.Error != "" { - return errors.New(ret.Error) - } - return nil -}