perkeep/pkg/blobserver/handlers/enumerate.go

137 lines
3.5 KiB
Go
Raw Normal View History

2011-01-28 07:07:18 +00:00
/*
Copyright 2011 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package handlers
2010-07-26 03:34:04 +00:00
import (
"fmt"
"io"
"log"
"net/http"
2010-07-26 05:18:21 +00:00
"strconv"
"time"
"camlistore.org/pkg/blob"
"camlistore.org/pkg/blobserver"
"camlistore.org/pkg/context"
2010-07-26 03:34:04 +00:00
)
const defaultMaxEnumerate = 10000
const defaultEnumerateSize = 100
2010-07-26 05:18:21 +00:00
func CreateEnumerateHandler(storage blobserver.BlobEnumerator) http.Handler {
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
handleEnumerateBlobs(rw, req, storage)
})
}
2010-07-26 05:18:21 +00:00
const errMsgMaxWaitSecWithAfter = "Can't use 'maxwaitsec' with 'after'.\n"
func handleEnumerateBlobs(rw http.ResponseWriter, req *http.Request, storage blobserver.BlobEnumerator) {
// Potential input parameters
formValueLimit := req.FormValue("limit")
formValueMaxWaitSec := req.FormValue("maxwaitsec")
formValueAfter := req.FormValue("after")
maxEnumerate := defaultMaxEnumerate
if config, ok := storage.(blobserver.MaxEnumerateConfig); ok {
maxEnumerate = config.MaxEnumerate()
}
limit := defaultEnumerateSize
if formValueLimit != "" {
n, err := strconv.ParseUint(formValueLimit, 10, 32)
if err != nil || n > uint64(maxEnumerate) {
limit = maxEnumerate
} else {
limit = int(n)
}
2010-07-26 05:18:21 +00:00
}
2011-02-26 22:03:10 +00:00
waitSeconds := 0
if formValueMaxWaitSec != "" {
waitSeconds, _ = strconv.Atoi(formValueMaxWaitSec)
if waitSeconds != 0 && formValueAfter != "" {
rw.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(rw, errMsgMaxWaitSecWithAfter)
return
}
2011-02-26 22:03:10 +00:00
switch {
case waitSeconds < 0:
waitSeconds = 0
case waitSeconds > 30:
// TODO: don't hard-code 30. push this up into a blobserver interface
// for getting the configuration of the server (ultimately a flag in
// in the binary)
waitSeconds = 30
}
}
rw.Header().Set("Content-Type", "text/javascript; charset=utf-8")
io.WriteString(rw, "{\n \"blobs\": [\n")
2010-07-26 05:18:21 +00:00
loop := true
2010-08-03 03:49:39 +00:00
needsComma := false
deadline := time.Now().Add(time.Duration(waitSeconds) * time.Second)
after := ""
for loop && (waitSeconds == 0 || time.Now().After(deadline)) {
if waitSeconds == 0 {
loop = false
}
blobch := make(chan blob.SizedRef, 100)
resultch := make(chan error, 1)
go func() {
resultch <- storage.EnumerateBlobs(context.TODO(), blobch, formValueAfter, limit)
}()
gotBlobs := 0
for sb := range blobch {
gotBlobs++
loop = false
blobName := sb.Ref.String()
if needsComma {
io.WriteString(rw, ",\n")
}
fmt.Fprintf(rw, " {\"blobRef\": \"%s\", \"size\": %d}",
blobName, sb.Size)
after = blobName
needsComma = true
}
if gotBlobs < limit {
after = ""
}
if err := <-resultch; err != nil {
log.Printf("Error during enumerate: %v", err)
fmt.Fprintf(rw, "{{{ SERVER ERROR }}}")
return
}
if loop {
blobserver.WaitForBlob(storage, deadline, nil)
2010-08-03 03:49:39 +00:00
}
2010-07-26 05:18:21 +00:00
}
io.WriteString(rw, "\n ]")
2010-07-26 05:18:21 +00:00
if after != "" {
fmt.Fprintf(rw, ",\n \"continueAfter\": \"%s\"", after)
2010-07-26 05:18:21 +00:00
}
2011-02-26 22:03:10 +00:00
const longPollSupported = true
if longPollSupported {
io.WriteString(rw, ",\n \"canLongPoll\": true")
2011-02-26 22:03:10 +00:00
}
io.WriteString(rw, "\n}\n")
2010-07-26 03:34:04 +00:00
}