2013-08-14 14:26:51 +08:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2015-03-09 16:10:01 +08:00
|
|
|
"fmt"
|
2013-08-14 14:26:51 +08:00
|
|
|
"net/url"
|
|
|
|
"strconv"
|
2014-10-27 02:34:55 +08:00
|
|
|
|
2016-06-03 09:09:14 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2013-08-14 14:26:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type AssignResult struct {
|
2014-04-16 00:20:04 +08:00
|
|
|
Fid string `json:"fid,omitempty"`
|
|
|
|
Url string `json:"url,omitempty"`
|
|
|
|
PublicUrl string `json:"publicUrl,omitempty"`
|
2015-04-07 05:17:36 +08:00
|
|
|
Count uint64 `json:"count,omitempty"`
|
2014-04-16 00:20:04 +08:00
|
|
|
Error string `json:"error,omitempty"`
|
2013-08-14 14:26:51 +08:00
|
|
|
}
|
|
|
|
|
2016-06-23 11:19:09 +08:00
|
|
|
/*
|
|
|
|
options params meaning:
|
|
|
|
options[0] main data Center
|
|
|
|
options[1] main rack
|
|
|
|
options[2] main data node
|
|
|
|
*/
|
|
|
|
func Assign(server string, count uint64, replication string, collection string, ttl string, options ...string) (*AssignResult, error) {
|
2013-08-14 14:26:51 +08:00
|
|
|
values := make(url.Values)
|
2015-04-07 05:17:36 +08:00
|
|
|
values.Add("count", strconv.FormatUint(count, 10))
|
2013-08-14 14:26:51 +08:00
|
|
|
if replication != "" {
|
|
|
|
values.Add("replication", replication)
|
|
|
|
}
|
2014-03-10 14:54:07 +08:00
|
|
|
if collection != "" {
|
|
|
|
values.Add("collection", collection)
|
|
|
|
}
|
2014-09-21 03:38:59 +08:00
|
|
|
if ttl != "" {
|
|
|
|
values.Add("ttl", ttl)
|
|
|
|
}
|
2016-06-23 11:19:09 +08:00
|
|
|
|
|
|
|
var dataCenter, rack, dataNode string
|
|
|
|
switch len(options) {
|
|
|
|
case 1:
|
|
|
|
dataCenter = options[0]
|
|
|
|
case 2:
|
|
|
|
dataCenter = options[0]
|
|
|
|
rack = options[1]
|
|
|
|
case 3:
|
|
|
|
dataCenter = options[0]
|
|
|
|
rack = options[1]
|
|
|
|
dataNode = options[2]
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
if dataCenter != "" {
|
|
|
|
values.Add("dataCenter", dataCenter)
|
|
|
|
}
|
|
|
|
if rack != "" {
|
|
|
|
values.Add("rack", rack)
|
|
|
|
}
|
|
|
|
if dataNode != "" {
|
|
|
|
values.Add("dataNode", dataNode)
|
|
|
|
}
|
|
|
|
|
2013-08-14 14:26:51 +08:00
|
|
|
jsonBlob, err := util.Post("http://"+server+"/dir/assign", values)
|
|
|
|
glog.V(2).Info("assign result :", string(jsonBlob))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var ret AssignResult
|
|
|
|
err = json.Unmarshal(jsonBlob, &ret)
|
|
|
|
if err != nil {
|
2015-03-20 01:48:28 +08:00
|
|
|
return nil, fmt.Errorf("/dir/assign result JSON unmarshal error:%v, json:%s", err, string(jsonBlob))
|
2013-08-14 14:26:51 +08:00
|
|
|
}
|
|
|
|
if ret.Count <= 0 {
|
|
|
|
return nil, errors.New(ret.Error)
|
|
|
|
}
|
|
|
|
return &ret, nil
|
|
|
|
}
|