mirror of https://github.com/perkeep/perkeep.git
66 lines
1.7 KiB
Go
66 lines
1.7 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 blobserver
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
"os"
|
|
"time"
|
|
|
|
"camlistore.org/pkg/blobref"
|
|
)
|
|
|
|
type NoImplStorage struct {
|
|
}
|
|
|
|
var _ Storage = (*NoImplStorage)(nil)
|
|
|
|
func (nis *NoImplStorage) GetBlobHub() BlobHub {
|
|
return nil
|
|
}
|
|
|
|
func (nis *NoImplStorage) Fetch(*blobref.BlobRef) (file blobref.ReadSeekCloser, size int64, err error) {
|
|
return nil, 0, os.ErrNotExist
|
|
}
|
|
|
|
func (nis *NoImplStorage) FetchStreaming(*blobref.BlobRef) (file io.ReadCloser, size int64, err error) {
|
|
return nil, 0, os.ErrNotExist
|
|
}
|
|
|
|
func (nis *NoImplStorage) ReceiveBlob(blob *blobref.BlobRef, source io.Reader) (sb blobref.SizedBlobRef, err error) {
|
|
err = errors.New("ReceiveBlob not implemented")
|
|
return
|
|
}
|
|
|
|
func (nis *NoImplStorage) StatBlobs(dest chan<- blobref.SizedBlobRef,
|
|
blobs []*blobref.BlobRef,
|
|
wait time.Duration) error {
|
|
return errors.New("Stat not implemented")
|
|
}
|
|
|
|
func (nis *NoImplStorage) EnumerateBlobs(dest chan<- blobref.SizedBlobRef,
|
|
after string,
|
|
limit int,
|
|
wait time.Duration) error {
|
|
return errors.New("EnumerateBlobs not implemented")
|
|
}
|
|
|
|
func (nis *NoImplStorage) RemoveBlobs(blobs []*blobref.BlobRef) error {
|
|
return errors.New("Remove not implemented")
|
|
}
|