forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
142 lines (130 loc) · 4.13 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// The MIT License (MIT)
//
// Copyright (c) 2020 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package filestore
import (
"context"
"encoding/json"
"errors"
"fmt"
"os"
"github.com/uber/cadence/common/blobstore"
"github.com/uber/cadence/common/config"
"github.com/uber/cadence/common/util"
)
type (
client struct {
outputDirectory string
}
)
// NewFilestoreClient constructs a blobstore backed by local file system
func NewFilestoreClient(cfg *config.FileBlobstore) (blobstore.Client, error) {
if cfg == nil {
return nil, errors.New("file blobstore config is nil")
}
if len(cfg.OutputDirectory) == 0 {
return nil, errors.New("output directory not given for file blobstore")
}
outputDirectory := cfg.OutputDirectory
exists, err := util.DirectoryExists(outputDirectory)
if err != nil {
return nil, err
}
if !exists {
if err := util.MkdirAll(outputDirectory, os.FileMode(0766)); err != nil {
return nil, err
}
}
return &client{
outputDirectory: outputDirectory,
}, nil
}
// Put stores a 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.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.bodyPath(request.Key))
if err != nil {
return nil, err
}
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: 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.bodyPath(request.Key))
if err != nil {
return nil, err
}
return &blobstore.ExistsResponse{
Exists: exists,
}, nil
}
// Delete deletes a blob
func (c *client) Delete(_ context.Context, request *blobstore.DeleteRequest) (*blobstore.DeleteResponse, error) {
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
}
// IsRetryableError returns true if the error is retryable false otherwise
func (c *client) IsRetryableError(err error) bool {
return false
}
func (c *client) bodyPath(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)
}