perkeep/pkg/blobserver/remote/remote.go

133 lines
3.8 KiB
Go

/*
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 remote registers the "remote" blobserver storage type, storing
and fetching blobs from a remote Camlistore server, speaking the HTTP
protocol.
Example low-level config:
"/peer/": {
"handler": "storage-remote",
"handlerArgs": {
"url": "http://10.0.0.17/base",
"auth": "userpass:user:pass",
"skipStartupCheck": false
}
},
*/
package remote
import (
"io"
"log"
"os"
"camlistore.org/pkg/blob"
"camlistore.org/pkg/blobserver"
"camlistore.org/pkg/client"
"camlistore.org/pkg/context"
"camlistore.org/pkg/jsonconfig"
)
// remoteStorage is a blobserver.Storage proxy for a remote camlistore
// blobserver.
type remoteStorage struct {
client *client.Client
}
var _ = blobserver.Storage((*remoteStorage)(nil))
// NewFromClient returns a new Storage implementation using the
// provided Camlistore client.
func NewFromClient(c *client.Client) blobserver.Storage {
return &remoteStorage{client: c}
}
func newFromConfig(_ blobserver.Loader, config jsonconfig.Obj) (storage blobserver.Storage, err error) {
url := config.RequiredString("url")
auth := config.RequiredString("auth")
skipStartupCheck := config.OptionalBool("skipStartupCheck", false)
if err := config.Validate(); err != nil {
return nil, err
}
client := client.New(url)
if err = client.SetupAuthFromString(auth); err != nil {
return nil, err
}
client.SetLogger(log.New(os.Stderr, "remote", log.LstdFlags))
sto := &remoteStorage{
client: client,
}
if !skipStartupCheck {
// Do a quick dummy operation to check that our credentials are
// correct.
// TODO(bradfitz,mpl): skip this operation smartly if it turns out this is annoying/slow for whatever reason.
c := make(chan blob.SizedRef, 1)
err = sto.EnumerateBlobs(context.TODO(), c, "", 1)
if err != nil {
return nil, err
}
}
return sto, nil
}
func (sto *remoteStorage) RemoveBlobs(blobs []blob.Ref) error {
return sto.client.RemoveBlobs(blobs)
}
func (sto *remoteStorage) StatBlobs(dest chan<- blob.SizedRef, blobs []blob.Ref) error {
// TODO: cache the stat response's uploadUrl to save a future
// stat later? otherwise clients will just Stat + Upload, but
// Upload will also Stat. should be smart and make sure we
// avoid ReceiveBlob's Stat whenever it would be redundant.
return sto.client.StatBlobs(dest, blobs)
}
func (sto *remoteStorage) ReceiveBlob(blob blob.Ref, source io.Reader) (outsb blob.SizedRef, outerr error) {
h := &client.UploadHandle{
BlobRef: blob,
Size: 0, // size isn't known; 0 is fine, but TODO: ask source if it knows its size
Contents: source,
}
pr, err := sto.client.Upload(h)
if err != nil {
outerr = err
return
}
return pr.SizedBlobRef(), nil
}
func (sto *remoteStorage) Fetch(b blob.Ref) (file io.ReadCloser, size uint32, err error) {
return sto.client.Fetch(b)
}
func (sto *remoteStorage) MaxEnumerate() int { return 1000 }
func (sto *remoteStorage) EnumerateBlobs(ctx *context.Context, dest chan<- blob.SizedRef, after string, limit int) error {
return sto.client.EnumerateBlobsOpts(ctx, dest, client.EnumerateOpts{
After: after,
Limit: limit,
})
}
func init() {
blobserver.RegisterStorageConstructor("remote", blobserver.StorageConstructor(newFromConfig))
}