seaweedfs/weed/replication/sink/b2sink/b2_sink.go

140 lines
2.8 KiB
Go
Raw Normal View History

2018-10-24 06:59:40 +00:00
package B2Sink
import (
"context"
2018-11-04 19:58:59 +00:00
"strings"
2018-10-24 06:59:40 +00:00
"github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/replication/sink"
"github.com/chrislusf/seaweedfs/weed/replication/source"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/kurin/blazer/b2"
)
type B2Sink struct {
client *b2.Client
bucket string
dir string
filerSource *source.FilerSource
}
func init() {
sink.Sinks = append(sink.Sinks, &B2Sink{})
}
func (g *B2Sink) GetName() string {
return "backblaze"
}
func (g *B2Sink) GetSinkToDirectory() string {
return g.dir
}
func (g *B2Sink) Initialize(configuration util.Configuration, prefix string) error {
2018-10-24 06:59:40 +00:00
return g.initialize(
configuration.GetString(prefix+"b2_account_id"),
configuration.GetString(prefix+"b2_master_application_key"),
configuration.GetString(prefix+"bucket"),
configuration.GetString(prefix+"directory"),
2018-10-24 06:59:40 +00:00
)
}
func (g *B2Sink) SetSourceFiler(s *source.FilerSource) {
g.filerSource = s
}
func (g *B2Sink) initialize(accountId, accountKey, bucket, dir string) error {
2020-02-26 06:23:59 +00:00
client, err := b2.NewClient(context.Background(), accountId, accountKey)
2018-10-24 06:59:40 +00:00
if err != nil {
2018-11-04 19:58:59 +00:00
return err
2018-10-24 06:59:40 +00:00
}
g.client = client
g.bucket = bucket
g.dir = dir
return nil
}
func (g *B2Sink) DeleteEntry(key string, isDirectory, deleteIncludeChunks bool) error {
2018-10-24 06:59:40 +00:00
2018-11-04 19:58:59 +00:00
key = cleanKey(key)
2018-10-24 06:59:40 +00:00
if isDirectory {
key = key + "/"
}
bucket, err := g.client.Bucket(context.Background(), g.bucket)
2018-10-24 06:59:40 +00:00
if err != nil {
return err
}
targetObject := bucket.Object(key)
return targetObject.Delete(context.Background())
2018-10-24 06:59:40 +00:00
}
func (g *B2Sink) CreateEntry(key string, entry *filer_pb.Entry) error {
2018-10-24 06:59:40 +00:00
2018-11-04 19:58:59 +00:00
key = cleanKey(key)
2018-10-24 06:59:40 +00:00
if entry.IsDirectory {
return nil
}
totalSize := filer2.TotalSize(entry.Chunks)
2020-03-22 08:37:46 +00:00
chunkViews := filer2.ViewFromChunks(entry.Chunks, 0, int64(totalSize))
2018-10-24 06:59:40 +00:00
bucket, err := g.client.Bucket(context.Background(), g.bucket)
2018-10-24 06:59:40 +00:00
if err != nil {
return err
}
targetObject := bucket.Object(key)
writer := targetObject.NewWriter(context.Background())
2018-10-24 06:59:40 +00:00
for _, chunk := range chunkViews {
fileUrl, err := g.filerSource.LookupFileId(chunk.FileId)
2018-10-24 06:59:40 +00:00
if err != nil {
return err
}
var writeErr error
readErr := util.ReadUrlAsStream(fileUrl, nil, false, chunk.IsFullChunk, chunk.Offset, int(chunk.Size), func(data []byte) {
2018-10-24 06:59:40 +00:00
_, err := writer.Write(data)
if err != nil {
writeErr = err
}
})
if readErr != nil {
return readErr
}
if writeErr != nil {
return writeErr
}
}
return writer.Close()
}
func (g *B2Sink) UpdateEntry(key string, oldEntry *filer_pb.Entry, newParentPath string, newEntry *filer_pb.Entry, deleteIncludeChunks bool) (foundExistingEntry bool, err error) {
2018-11-04 19:58:59 +00:00
key = cleanKey(key)
2018-10-24 06:59:40 +00:00
// TODO improve efficiency
return false, nil
}
2018-11-04 19:58:59 +00:00
func cleanKey(key string) string {
if strings.HasPrefix(key, "/") {
key = key[1:]
}
return key
}