2013-12-02 09:37:36 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2015-01-08 08:19:32 +00:00
|
|
|
"fmt"
|
2013-12-02 09:37:36 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
2013-12-02 09:37:36 +00:00
|
|
|
)
|
|
|
|
|
2014-04-14 06:56:15 +00:00
|
|
|
func (ms *MasterServer) lookupVolumeId(vids []string, collection string) (volumeLocations map[string]operation.LookupResult) {
|
|
|
|
volumeLocations = make(map[string]operation.LookupResult)
|
2014-04-14 06:41:34 +00:00
|
|
|
for _, vid := range vids {
|
|
|
|
commaSep := strings.Index(vid, ",")
|
|
|
|
if commaSep > 0 {
|
|
|
|
vid = vid[0:commaSep]
|
|
|
|
}
|
|
|
|
if _, ok := volumeLocations[vid]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
volumeId, err := storage.NewVolumeId(vid)
|
|
|
|
if err == nil {
|
|
|
|
machines := ms.Topo.Lookup(collection, volumeId)
|
|
|
|
if machines != nil {
|
2014-04-14 06:56:15 +00:00
|
|
|
var ret []operation.Location
|
2014-04-14 06:41:34 +00:00
|
|
|
for _, dn := range machines {
|
2014-04-14 06:56:15 +00:00
|
|
|
ret = append(ret, operation.Location{Url: dn.Url(), PublicUrl: dn.PublicUrl})
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
2014-04-14 06:56:15 +00:00
|
|
|
volumeLocations[vid] = operation.LookupResult{VolumeId: vid, Locations: ret}
|
2014-04-14 06:41:34 +00:00
|
|
|
} else {
|
2014-04-14 06:56:15 +00:00
|
|
|
volumeLocations[vid] = operation.LookupResult{VolumeId: vid, Error: "volumeId not found."}
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-14 06:56:15 +00:00
|
|
|
volumeLocations[vid] = operation.LookupResult{VolumeId: vid, Error: "Unknown volumeId format."}
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Takes one volumeId only, can not do batch lookup
|
2013-12-02 09:37:36 +00:00
|
|
|
func (ms *MasterServer) dirLookupHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vid := r.FormValue("volumeId")
|
|
|
|
commaSep := strings.Index(vid, ",")
|
|
|
|
if commaSep > 0 {
|
|
|
|
vid = vid[0:commaSep]
|
|
|
|
}
|
2014-04-14 06:41:34 +00:00
|
|
|
vids := []string{vid}
|
|
|
|
collection := r.FormValue("collection") //optional, but can be faster if too many collections
|
|
|
|
volumeLocations := ms.lookupVolumeId(vids, collection)
|
|
|
|
location := volumeLocations[vid]
|
2015-01-08 08:19:32 +00:00
|
|
|
httpStatus := http.StatusOK
|
2014-04-14 06:41:34 +00:00
|
|
|
if location.Error != "" {
|
2015-01-08 08:19:32 +00:00
|
|
|
httpStatus = http.StatusNotFound
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, httpStatus, location)
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This can take batched volumeIds, &volumeId=x&volumeId=y&volumeId=z
|
|
|
|
func (ms *MasterServer) volumeLookupHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
r.ParseForm()
|
|
|
|
vids := r.Form["volumeId"]
|
|
|
|
collection := r.FormValue("collection") //optional, but can be faster if too many collections
|
|
|
|
volumeLocations := ms.lookupVolumeId(vids, collection)
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusOK, volumeLocations)
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ms *MasterServer) dirAssignHandler(w http.ResponseWriter, r *http.Request) {
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.AssignRequest()
|
2015-04-06 21:17:36 +00:00
|
|
|
requestedCount, e := strconv.ParseUint(r.FormValue("count"), 10, 64)
|
|
|
|
if e != nil || requestedCount == 0 {
|
2014-04-13 08:29:52 +00:00
|
|
|
requestedCount = 1
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
|
|
|
option, err := ms.getVolumeGrowOption(r)
|
2013-12-02 09:37:36 +00:00
|
|
|
if err != nil {
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusNotAcceptable, operation.AssignResult{Error: err.Error()})
|
2013-12-02 09:37:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-10-26 06:45:31 +00:00
|
|
|
if !ms.Topo.HasWritableVolume(option) {
|
2014-03-16 06:03:49 +00:00
|
|
|
if ms.Topo.FreeSpace() <= 0 {
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusNotFound, operation.AssignResult{Error: "No free volumes left!"})
|
2013-12-02 09:37:36 +00:00
|
|
|
return
|
2015-03-10 07:20:31 +00:00
|
|
|
}
|
|
|
|
ms.vgLock.Lock()
|
|
|
|
defer ms.vgLock.Unlock()
|
|
|
|
if !ms.Topo.HasWritableVolume(option) {
|
|
|
|
if _, err = ms.vg.AutomaticGrowByType(option, ms.Topo); err != nil {
|
|
|
|
writeJsonError(w, r, http.StatusInternalServerError,
|
|
|
|
fmt.Errorf("Cannot grow volume group! %v", err))
|
|
|
|
return
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
fid, count, dn, err := ms.Topo.PickForWrite(requestedCount, option)
|
2013-12-02 09:37:36 +00:00
|
|
|
if err == nil {
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusOK, operation.AssignResult{Fid: fid, Url: dn.Url(), PublicUrl: dn.PublicUrl, Count: count})
|
2013-12-02 09:37:36 +00:00
|
|
|
} else {
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusNotAcceptable, operation.AssignResult{Error: err.Error()})
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
}
|