2014-03-30 18:28:04 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2021-06-06 20:13:33 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-09-20 23:00:01 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2014-03-30 18:28:04 +00:00
|
|
|
"net/http"
|
2021-01-24 08:01:44 +00:00
|
|
|
"strings"
|
2021-03-30 09:10:50 +00:00
|
|
|
"sync/atomic"
|
2019-06-25 16:49:27 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2014-03-30 18:28:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (fs *FilerServer) filerHandler(w http.ResponseWriter, r *http.Request) {
|
2021-01-24 08:01:44 +00:00
|
|
|
|
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
// proxy to volume servers
|
|
|
|
var fileId string
|
|
|
|
if strings.HasPrefix(r.RequestURI, "/?proxyChunkId=") {
|
|
|
|
fileId = r.RequestURI[len("/?proxyChunkId="):]
|
|
|
|
}
|
|
|
|
if fileId != "" {
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("proxy").Inc()
|
2021-01-28 23:23:46 +00:00
|
|
|
fs.proxyToVolumeServer(w, r, fileId)
|
2021-01-24 08:01:44 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("proxy").Observe(time.Since(start).Seconds())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-20 23:00:01 +00:00
|
|
|
w.Header().Set("Server", "SeaweedFS Filer "+util.VERSION)
|
2020-10-31 23:44:03 +00:00
|
|
|
if r.Header.Get("Origin") != "" {
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
|
|
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
|
|
|
}
|
2014-03-30 18:28:04 +00:00
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
2021-01-24 08:01:44 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("get").Inc()
|
2021-07-19 09:59:12 +00:00
|
|
|
fs.GetOrHeadHandler(w, r)
|
2021-01-24 08:01:44 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("get").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
case "HEAD":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("head").Inc()
|
2021-07-19 09:59:12 +00:00
|
|
|
fs.GetOrHeadHandler(w, r)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("head").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
case "DELETE":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("delete").Inc()
|
2020-11-09 09:00:07 +00:00
|
|
|
if _, ok := r.URL.Query()["tagging"]; ok {
|
2020-11-16 00:59:28 +00:00
|
|
|
fs.DeleteTaggingHandler(w, r)
|
2020-11-09 09:00:07 +00:00
|
|
|
} else {
|
|
|
|
fs.DeleteHandler(w, r)
|
|
|
|
}
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("delete").Observe(time.Since(start).Seconds())
|
2021-03-30 09:10:50 +00:00
|
|
|
case "POST", "PUT":
|
|
|
|
|
|
|
|
// wait until in flight data is less than the limit
|
|
|
|
contentLength := getContentLength(r)
|
|
|
|
fs.inFlightDataLimitCond.L.Lock()
|
2021-06-06 20:13:33 +00:00
|
|
|
for fs.option.ConcurrentUploadLimit != 0 && atomic.LoadInt64(&fs.inFlightDataSize) > fs.option.ConcurrentUploadLimit {
|
|
|
|
glog.V(4).Infof("wait because inflight data %d > %d", fs.inFlightDataSize, fs.option.ConcurrentUploadLimit)
|
2021-03-30 09:10:50 +00:00
|
|
|
fs.inFlightDataLimitCond.Wait()
|
|
|
|
}
|
|
|
|
fs.inFlightDataLimitCond.L.Unlock()
|
2021-08-10 21:34:13 +00:00
|
|
|
atomic.AddInt64(&fs.inFlightDataSize, contentLength)
|
2021-03-30 09:10:50 +00:00
|
|
|
defer func() {
|
|
|
|
atomic.AddInt64(&fs.inFlightDataSize, -contentLength)
|
|
|
|
fs.inFlightDataLimitCond.Signal()
|
|
|
|
}()
|
|
|
|
|
|
|
|
if r.Method == "PUT" {
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("put").Inc()
|
|
|
|
if _, ok := r.URL.Query()["tagging"]; ok {
|
|
|
|
fs.PutTaggingHandler(w, r)
|
|
|
|
} else {
|
2021-03-31 04:07:34 +00:00
|
|
|
fs.PostHandler(w, r, contentLength)
|
2021-03-30 09:10:50 +00:00
|
|
|
}
|
|
|
|
stats.FilerRequestHistogram.WithLabelValues("put").Observe(time.Since(start).Seconds())
|
|
|
|
} else { // method == "POST"
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("post").Inc()
|
2021-03-31 04:07:34 +00:00
|
|
|
fs.PostHandler(w, r, contentLength)
|
2021-03-30 09:10:50 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("post").Observe(time.Since(start).Seconds())
|
2020-11-09 09:00:07 +00:00
|
|
|
}
|
2020-10-31 23:44:03 +00:00
|
|
|
case "OPTIONS":
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("options").Inc()
|
|
|
|
OptionsHandler(w, r, false)
|
|
|
|
stats.FilerRequestHistogram.WithLabelValues("head").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-28 03:14:22 +00:00
|
|
|
|
|
|
|
func (fs *FilerServer) readonlyFilerHandler(w http.ResponseWriter, r *http.Request) {
|
2020-09-20 23:00:01 +00:00
|
|
|
w.Header().Set("Server", "SeaweedFS Filer "+util.VERSION)
|
2020-10-31 23:44:03 +00:00
|
|
|
if r.Header.Get("Origin") != "" {
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
|
|
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
|
|
|
}
|
2019-06-25 16:49:27 +00:00
|
|
|
start := time.Now()
|
2017-05-28 03:14:22 +00:00
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("get").Inc()
|
2021-07-19 09:59:12 +00:00
|
|
|
fs.GetOrHeadHandler(w, r)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("get").Observe(time.Since(start).Seconds())
|
2017-05-28 03:14:22 +00:00
|
|
|
case "HEAD":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("head").Inc()
|
2021-07-19 09:59:12 +00:00
|
|
|
fs.GetOrHeadHandler(w, r)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("head").Observe(time.Since(start).Seconds())
|
2020-10-31 23:44:03 +00:00
|
|
|
case "OPTIONS":
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("options").Inc()
|
|
|
|
OptionsHandler(w, r, true)
|
|
|
|
stats.FilerRequestHistogram.WithLabelValues("head").Observe(time.Since(start).Seconds())
|
2017-05-28 03:14:22 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-31 23:44:03 +00:00
|
|
|
|
|
|
|
func OptionsHandler(w http.ResponseWriter, r *http.Request, isReadOnly bool) {
|
|
|
|
if isReadOnly {
|
|
|
|
w.Header().Add("Access-Control-Allow-Methods", "GET, OPTIONS")
|
|
|
|
} else {
|
|
|
|
w.Header().Add("Access-Control-Allow-Methods", "PUT, POST, GET, DELETE, OPTIONS")
|
|
|
|
}
|
|
|
|
w.Header().Add("Access-Control-Allow-Headers", "*")
|
2020-10-31 23:45:38 +00:00
|
|
|
}
|