Skip to content

Commit

Permalink
Make output of file based blobstore human readable (uber#3246)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjdawson2016 authored and mkolodezny committed May 11, 2020
1 parent b5d7f4c commit 537cd01
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 22 deletions.
51 changes: 31 additions & 20 deletions common/blobstore/filestore/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,35 +64,51 @@ func NewFilestoreClient(cfg *config.FileBlobstore) (blobstore.Client, error) {
}

// Put stores a blob
func (c *client) Put(_ context.Context, request *blobstore.PutRequest) (*blobstore.PutResponse, error) {
data, err := c.serializeBlob(request.Blob)
func (c *client) Put(_ context.Context, request *blobstore.PutRequest) (resp *blobstore.PutResponse, err error) {
defer func() {
if err != nil {
os.Remove(c.bodyPath(request.Key))
os.Remove(c.tagsPath(request.Key))
}
}()
if err := util.WriteFile(c.bodyPath(request.Key), request.Blob.Body, os.FileMode(0666)); err != nil {
return nil, err
}
tagsData, err := json.Marshal(request.Blob.Tags)
if err != nil {
return nil, err
}
if err := util.WriteFile(c.filepath(request.Key), data, os.FileMode(0666)); err != nil {
if err := util.WriteFile(c.tagsPath(request.Key), tagsData, os.FileMode(0666)); err != nil {
return nil, err
}
return &blobstore.PutResponse{}, nil
}

// Get fetches a blob
func (c *client) Get(_ context.Context, request *blobstore.GetRequest) (*blobstore.GetResponse, error) {
data, err := util.ReadFile(c.filepath(request.Key))
data, err := util.ReadFile(c.bodyPath(request.Key))
if err != nil {
return nil, err
}
blob, err := c.deserializeBlob(data)
tagsData, err := util.ReadFile(c.tagsPath(request.Key))
if err != nil {
return nil, err
}
tags := make(map[string]string)
if err := json.Unmarshal(tagsData, &tags); err != nil {
return nil, err
}
return &blobstore.GetResponse{
Blob: blob,
Blob: blobstore.Blob{
Body: data,
Tags: tags,
},
}, nil
}

// Exists determines if a blob exists
func (c *client) Exists(_ context.Context, request *blobstore.ExistsRequest) (*blobstore.ExistsResponse, error) {
exists, err := util.FileExists(c.filepath(request.Key))
exists, err := util.FileExists(c.bodyPath(request.Key))
if err != nil {
return nil, err
}
Expand All @@ -103,7 +119,10 @@ func (c *client) Exists(_ context.Context, request *blobstore.ExistsRequest) (*b

// Delete deletes a blob
func (c *client) Delete(_ context.Context, request *blobstore.DeleteRequest) (*blobstore.DeleteResponse, error) {
if err := os.Remove(c.filepath(request.Key)); err != nil {
if err := os.Remove(c.bodyPath(request.Key)); err != nil {
return nil, err
}
if err := os.Remove(c.tagsPath(request.Key)); err != nil {
return nil, err
}
return &blobstore.DeleteResponse{}, nil
Expand All @@ -114,18 +133,10 @@ func (c *client) IsRetryableError(err error) bool {
return false
}

func (c *client) deserializeBlob(data []byte) (blobstore.Blob, error) {
var blob blobstore.Blob
if err := json.Unmarshal(data, &blob); err != nil {
return blobstore.Blob{}, err
}
return blob, nil
}

func (c *client) serializeBlob(blob blobstore.Blob) ([]byte, error) {
return json.Marshal(blob)
func (c *client) bodyPath(key string) string {
return fmt.Sprintf("%v/%v", c.outputDirectory, key)
}

func (c *client) filepath(key string) string {
return fmt.Sprintf("%v/%v", c.outputDirectory, key)
func (c *client) tagsPath(key string) string {
return fmt.Sprintf("%v/.%v.tags", c.outputDirectory, key)
}
2 changes: 1 addition & 1 deletion common/blobstore/filestore/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func (s *ClientSuite) TestCrudOperations() {
get2, err := c.Get(nil, &blobstore.GetRequest{Key: key2})
s.NoError(err)
s.Equal(map[string]string{"key1": "value1"}, get2.Blob.Tags)
s.Nil(get2.Blob.Body)
s.Empty(get2.Blob.Body)
get3, err := c.Get(nil, &blobstore.GetRequest{Key: key3})
s.NoError(err)
s.Equal(map[string]string{"key1": "value1", "key2": "value2"}, get3.Blob.Tags)
Expand Down
4 changes: 3 additions & 1 deletion common/blobstore/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@

package blobstore

import "context"
import (
"context"
)

type (
// Client defines the interface to a blobstore client.
Expand Down

0 comments on commit 537cd01

Please sign in to comment.