-
Notifications
You must be signed in to change notification settings - Fork 273
/
multi.go
173 lines (157 loc) · 5.06 KB
/
multi.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Copyright 2020-2021 Buf Technologies, 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 storage
import (
"context"
"github.com/bufbuild/buf/private/pkg/storage/storageutil"
)
// MultiReadBucket takes the union of the ReadBuckets.
//
// If no readBuckets are given, this returns a no-op ReadBucket.
// If one readBucket is given, this returns the original ReadBucket.
// Otherwise, this returns a ReadBucket that will get from all buckets.
//
// This expects and validates that no paths overlap between the ReadBuckets.
// This assumes that buckets are logically unique.
func MultiReadBucket(readBuckets ...ReadBucket) ReadBucket {
switch len(readBuckets) {
case 0:
return nopReadBucket{}
case 1:
return readBuckets[0]
default:
return newMultiReadBucket(readBuckets, false)
}
}
// MultiReadBucketSkipMultipleLocations takes the union of the ReadBuckets.
//
// If no readBuckets are given, this returns a no-op ReadBucket.
// If one readBucket is given, this returns the original ReadBucket.
// Otherwise, this returns a ReadBucket that will get from all buckets.
//
// This allows overlap between the ReadBuckets. If there are overlapping paths,
// the first ReadBucket given with the path is used.
func MultiReadBucketSkipMultipleLocations(readBuckets ...ReadBucket) ReadBucket {
switch len(readBuckets) {
case 0:
return nopReadBucket{}
case 1:
return readBuckets[0]
default:
return newMultiReadBucket(readBuckets, true)
}
}
type multiReadBucket struct {
delegates []ReadBucket
skipMultipleLocations bool
}
func newMultiReadBucket(
delegates []ReadBucket,
skipMultipleLocations bool,
) *multiReadBucket {
return &multiReadBucket{
delegates: delegates,
skipMultipleLocations: skipMultipleLocations,
}
}
func (m *multiReadBucket) Get(ctx context.Context, path string) (ReadObjectCloser, error) {
_, delegateIndex, err := m.getObjectInfoAndDelegateIndex(ctx, path)
if err != nil {
return nil, err
}
return m.delegates[delegateIndex].Get(ctx, path)
}
func (m *multiReadBucket) Stat(ctx context.Context, path string) (ObjectInfo, error) {
objectInfo, _, err := m.getObjectInfoAndDelegateIndex(ctx, path)
return objectInfo, err
}
func (m *multiReadBucket) Walk(ctx context.Context, prefix string, f func(ObjectInfo) error) error {
seenPathToExternalPath := make(map[string]string)
for _, delegate := range m.delegates {
if err := delegate.Walk(
ctx,
prefix,
func(objectInfo ObjectInfo) error {
path := objectInfo.Path()
externalPath := objectInfo.ExternalPath()
if existingExternalPath, ok := seenPathToExternalPath[path]; ok {
// if we explicitly say to skip, do so
if m.skipMultipleLocations {
return nil
}
// this does not return all paths that are matching, unlike Get and Stat
// we do not want to continue iterating, as calling Walk on the same path could cause errors downstream
// as callers expect a single call per path.
return NewErrExistsMultipleLocations(path, existingExternalPath, externalPath)
}
seenPathToExternalPath[path] = externalPath
return f(objectInfo)
},
); err != nil {
return err
}
}
return nil
}
func (m *multiReadBucket) getObjectInfoAndDelegateIndex(
ctx context.Context,
path string,
) (ObjectInfo, int, error) {
var objectInfos []ObjectInfo
var delegateIndices []int
for i, delegate := range m.delegates {
objectInfo, err := delegate.Stat(ctx, path)
if err != nil {
if IsNotExist(err) {
continue
}
return nil, 0, err
}
objectInfos = append(objectInfos, objectInfo)
delegateIndices = append(delegateIndices, i)
}
switch len(objectInfos) {
case 0:
return nil, 0, NewErrNotExist(path)
case 1:
return objectInfos[0], delegateIndices[0], nil
default:
if m.skipMultipleLocations {
return objectInfos[0], delegateIndices[0], nil
}
externalPaths := make([]string, len(objectInfos))
for i, objectInfo := range objectInfos {
externalPaths[i] = objectInfo.ExternalPath()
}
return nil, 0, NewErrExistsMultipleLocations(path, externalPaths...)
}
}
type nopReadBucket struct{}
func (nopReadBucket) Get(ctx context.Context, path string) (ReadObjectCloser, error) {
return nil, nopGetStat(path)
}
func (nopReadBucket) Stat(ctx context.Context, path string) (ObjectInfo, error) {
return nil, nopGetStat(path)
}
func (nopReadBucket) Walk(ctx context.Context, prefix string, f func(ObjectInfo) error) error {
_, err := storageutil.ValidatePrefix(prefix)
return err
}
func nopGetStat(path string) error {
path, err := storageutil.ValidatePath(path)
if err != nil {
return err
}
return NewErrNotExist(path)
}