seaweedfs/weed/operation/assign_file_id.go

69 lines
1.5 KiB
Go
Raw Normal View History

package operation
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"strconv"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"
)
2016-06-26 02:50:18 +00:00
type VolumeAssignRequest struct {
Count uint64
Replication string
Collection string
Ttl string
DataCenter string
Rack string
DataNode string
}
type AssignResult struct {
Fid string `json:"fid,omitempty"`
Url string `json:"url,omitempty"`
PublicUrl string `json:"publicUrl,omitempty"`
Count uint64 `json:"count,omitempty"`
Error string `json:"error,omitempty"`
}
2016-06-26 02:50:18 +00:00
func Assign(server string, r *VolumeAssignRequest) (*AssignResult, error) {
values := make(url.Values)
2016-06-26 02:50:18 +00:00
values.Add("count", strconv.FormatUint(r.Count, 10))
if r.Replication != "" {
values.Add("replication", r.Replication)
}
2016-06-26 02:50:18 +00:00
if r.Collection != "" {
values.Add("collection", r.Collection)
}
2016-06-26 02:50:18 +00:00
if r.Ttl != "" {
values.Add("ttl", r.Ttl)
}
2016-06-26 02:50:18 +00:00
if r.DataCenter != "" {
values.Add("dataCenter", r.DataCenter)
2016-06-23 03:19:09 +00:00
}
2016-06-26 02:50:18 +00:00
if r.Rack != "" {
values.Add("rack", r.Rack)
2016-06-23 03:19:09 +00:00
}
2016-06-26 02:50:18 +00:00
if r.DataNode != "" {
values.Add("dataNode", r.DataNode)
2016-06-23 03:19:09 +00:00
}
jsonBlob, err := util.Post("http://"+server+"/dir/assign", values)
glog.V(2).Infof("assign result from %s : %s", server, string(jsonBlob))
if err != nil {
return nil, err
}
var ret AssignResult
err = json.Unmarshal(jsonBlob, &ret)
if err != nil {
2015-03-19 17:48:28 +00:00
return nil, fmt.Errorf("/dir/assign result JSON unmarshal error:%v, json:%s", err, string(jsonBlob))
}
if ret.Count <= 0 {
return nil, errors.New(ret.Error)
}
return &ret, nil
}