mirror of
https://github.com/minio/minio.git
synced 2025-11-21 18:26:04 -05:00
Bandwidth quotas now work on data returned from server
This commit is contained in:
@@ -18,6 +18,7 @@ package quota
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/minio-io/minio/pkg/iodine"
|
||||
"io"
|
||||
"net"
|
||||
"net/http"
|
||||
@@ -39,6 +40,11 @@ func (h *bandwidthQuotaHandler) ServeHTTP(w http.ResponseWriter, req *http.Reque
|
||||
quotas: h.quotas,
|
||||
ip: longIP,
|
||||
}
|
||||
w = quotaWriter{
|
||||
ResponseWriter: w,
|
||||
quotas: h.quotas,
|
||||
ip: longIP,
|
||||
}
|
||||
h.handler.ServeHTTP(w, req)
|
||||
}
|
||||
|
||||
@@ -63,15 +69,32 @@ type quotaReader struct {
|
||||
|
||||
func (q quotaReader) Read(b []byte) (int, error) {
|
||||
if q.quotas.IsQuotaMet(q.ip) {
|
||||
return 0, errors.New("Quota Met")
|
||||
return 0, iodine.New(errors.New("Quota Met"), nil)
|
||||
}
|
||||
n, err := q.ReadCloser.Read(b)
|
||||
q.quotas.Add(q.ip, int64(n))
|
||||
return n, err
|
||||
return n, iodine.New(err, nil)
|
||||
}
|
||||
|
||||
func (q quotaReader) Close() error {
|
||||
return q.ReadCloser.Close()
|
||||
return iodine.New(q.ReadCloser.Close(), nil)
|
||||
}
|
||||
|
||||
type quotaWriter struct {
|
||||
http.ResponseWriter
|
||||
quotas *quotaMap
|
||||
ip uint32
|
||||
}
|
||||
|
||||
func (q quotaWriter) Write(b []byte) (int, error) {
|
||||
if q.quotas.IsQuotaMet(q.ip) {
|
||||
return 0, iodine.New(errors.New("Quota Met"), nil)
|
||||
}
|
||||
q.quotas.Add(q.ip, int64(len(b)))
|
||||
n, err := q.ResponseWriter.Write(b)
|
||||
// remove from quota if a full write isn't performed
|
||||
q.quotas.Add(q.ip, int64(n-len(b)))
|
||||
return n, iodine.New(err, nil)
|
||||
}
|
||||
|
||||
func segmentSize(duration time.Duration) time.Duration {
|
||||
|
||||
Reference in New Issue
Block a user