mirror of https://github.com/perkeep/perkeep.git
113 lines
3.3 KiB
Go
113 lines
3.3 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
|
|
|
|
import (
|
|
"io"
|
|
"time"
|
|
|
|
"camlistore.org/pkg/blobref"
|
|
"camlistore.org/pkg/blobserver"
|
|
"camlistore.org/pkg/client"
|
|
"camlistore.org/pkg/jsonconfig"
|
|
)
|
|
|
|
// remoteStorage is a blobserver.Storage proxy for a remote camlistore
|
|
// blobserver.
|
|
type remoteStorage struct {
|
|
*blobserver.SimpleBlobHubPartitionMap // but not really
|
|
client *client.Client
|
|
}
|
|
|
|
var _ = blobserver.Storage((*remoteStorage)(nil))
|
|
|
|
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")
|
|
skipStartupCheck := config.OptionalBool("skipStartupCheck", false)
|
|
if err := config.Validate(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
client := client.New(url)
|
|
err = client.SetupAuthFromConfig(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
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 blobref.SizedBlobRef, 1)
|
|
err = sto.EnumerateBlobs(c, "", 1, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return sto, nil
|
|
}
|
|
|
|
func (sto *remoteStorage) RemoveBlobs(blobs []*blobref.BlobRef) error {
|
|
return sto.client.RemoveBlobs(blobs)
|
|
}
|
|
|
|
func (sto *remoteStorage) StatBlobs(dest chan<- blobref.SizedBlobRef, blobs []*blobref.BlobRef, wait time.Duration) 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, wait)
|
|
}
|
|
|
|
func (sto *remoteStorage) ReceiveBlob(blob *blobref.BlobRef, source io.Reader) (outsb blobref.SizedBlobRef, outerr error) {
|
|
h := &client.UploadHandle{
|
|
BlobRef: blob,
|
|
Size: -1, // size isn't known; -1 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) FetchStreaming(b *blobref.BlobRef) (file io.ReadCloser, size int64, err error) {
|
|
return sto.client.FetchStreaming(b)
|
|
}
|
|
|
|
func (sto *remoteStorage) MaxEnumerate() int { return 1000 }
|
|
|
|
func (sto *remoteStorage) EnumerateBlobs(dest chan<- blobref.SizedBlobRef, after string, limit int, wait time.Duration) error {
|
|
return sto.client.EnumerateBlobsOpts(dest, client.EnumerateOpts{
|
|
After: after,
|
|
MaxWait: wait,
|
|
Limit: limit,
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
blobserver.RegisterStorageConstructor("remote", blobserver.StorageConstructor(newFromConfig))
|
|
}
|