forked from agntcy/dir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.go
More file actions
277 lines (225 loc) · 7.77 KB
/
Copy pathstore.go
File metadata and controls
277 lines (225 loc) · 7.77 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// Copyright AGNTCY Contributors (https://github.com/agntcy)
// SPDX-License-Identifier: Apache-2.0
package client
import (
"context"
"fmt"
corev1 "github.com/agntcy/dir/api/core/v1"
signv1 "github.com/agntcy/dir/api/sign/v1"
storev1 "github.com/agntcy/dir/api/store/v1"
)
// Push sends a complete record to the store and returns a record reference.
// The record must be ≤4MB as per the v1 store service specification.
func (c *Client) Push(ctx context.Context, record *corev1.Record) (*corev1.RecordRef, error) {
// Create streaming client
stream, err := c.StoreServiceClient.Push(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create push stream: %w", err)
}
// Send complete record (up to 4MB)
if err := stream.Send(record); err != nil {
return nil, fmt.Errorf("failed to send record: %w", err)
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive response for this record
recordRef, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive record ref: %w", err)
}
return recordRef, nil
}
// Pull retrieves a complete record from the store using its reference.
func (c *Client) Pull(ctx context.Context, recordRef *corev1.RecordRef) (*corev1.Record, error) {
// Create streaming client
stream, err := c.StoreServiceClient.Pull(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create pull stream: %w", err)
}
// Send record reference
if err := stream.Send(recordRef); err != nil {
return nil, fmt.Errorf("failed to send record ref: %w", err)
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive complete record
record, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive record: %w", err)
}
return record, nil
}
// Lookup retrieves metadata for a record using its reference.
func (c *Client) Lookup(ctx context.Context, recordRef *corev1.RecordRef) (*corev1.RecordMeta, error) {
// Create streaming client
stream, err := c.StoreServiceClient.Lookup(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create lookup stream: %w", err)
}
// Send record reference
if err := stream.Send(recordRef); err != nil {
return nil, fmt.Errorf("failed to send record ref: %w", err)
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive record metadata
recordMeta, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive record metadata: %w", err)
}
return recordMeta, nil
}
// Delete removes a record from the store using its reference.
func (c *Client) Delete(ctx context.Context, recordRef *corev1.RecordRef) error {
// Create streaming client
stream, err := c.StoreServiceClient.Delete(ctx)
if err != nil {
return fmt.Errorf("failed to create delete stream: %w", err)
}
// Send record reference
if err := stream.Send(recordRef); err != nil {
return fmt.Errorf("failed to send record ref: %w", err)
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return fmt.Errorf("failed to close send stream: %w", err)
}
// For delete, we don't expect a response (just confirmation of completion)
// The stream will close when the operation is complete
return nil
}
// PushBatch sends multiple records in a single stream for efficiency.
// This takes advantage of the streaming interface for batch operations.
//
//nolint:dupl // Similar structure to PullBatch but semantically different operations
func (c *Client) PushBatch(ctx context.Context, records []*corev1.Record) ([]*corev1.RecordRef, error) {
if len(records) == 0 {
return nil, nil
}
// Create streaming client
stream, err := c.StoreServiceClient.Push(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create push stream: %w", err)
}
// Send all records
for i, record := range records {
if err := stream.Send(record); err != nil {
return nil, fmt.Errorf("failed to send record %d: %w", i, err)
}
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive all responses
var refs []*corev1.RecordRef //nolint:prealloc // We don't know the number of records in advance
for i := range records {
recordRef, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive record ref %d: %w", i, err)
}
refs = append(refs, recordRef)
}
return refs, nil
}
// PullBatch retrieves multiple records in a single stream for efficiency.
//
//nolint:dupl // Similar structure to PushBatch but semantically different operations
func (c *Client) PullBatch(ctx context.Context, recordRefs []*corev1.RecordRef) ([]*corev1.Record, error) {
if len(recordRefs) == 0 {
return nil, nil
}
// Create streaming client
stream, err := c.StoreServiceClient.Pull(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create pull stream: %w", err)
}
// Send all record references
for i, recordRef := range recordRefs {
if err := stream.Send(recordRef); err != nil {
return nil, fmt.Errorf("failed to send record ref %d: %w", i, err)
}
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive all records
var records []*corev1.Record //nolint:prealloc // We don't know the number of records in advance
for i := range recordRefs {
record, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive record %d: %w", i, err)
}
records = append(records, record)
}
return records, nil
}
// PushWithOptions sends a record with optional OCI artifacts like signatures to the store.
func (c *Client) PushWithOptions(ctx context.Context, record *corev1.Record, signature *signv1.Signature) (*storev1.PushWithOptionsResponse, error) {
// Create streaming client
stream, err := c.StoreServiceClient.PushWithOptions(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create push with options stream: %w", err)
}
// Create push options
options := &storev1.PushOptions{
Signature: signature,
}
// Create request
request := &storev1.PushWithOptionsRequest{
Record: record,
Options: options,
}
// Send request
if err := stream.Send(request); err != nil {
return nil, fmt.Errorf("failed to send push with options request: %w", err)
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive response
response, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive push with options response: %w", err)
}
return response, nil
}
// PullWithOptions retrieves a record along with its associated OCI artifacts.
func (c *Client) PullWithOptions(ctx context.Context, recordRef *corev1.RecordRef, includeSignature bool) (*storev1.PullWithOptionsResponse, error) {
// Create streaming client
stream, err := c.StoreServiceClient.PullWithOptions(ctx)
if err != nil {
return nil, fmt.Errorf("failed to create pull with options stream: %w", err)
}
// Create pull options
options := &storev1.PullOptions{
IncludeSignature: includeSignature,
}
// Create request
request := &storev1.PullWithOptionsRequest{
RecordRef: recordRef,
Options: options,
}
// Send request
if err := stream.Send(request); err != nil {
return nil, fmt.Errorf("failed to send pull with options request: %w", err)
}
// Close send stream
if err := stream.CloseSend(); err != nil {
return nil, fmt.Errorf("failed to close send stream: %w", err)
}
// Receive response
response, err := stream.Recv()
if err != nil {
return nil, fmt.Errorf("failed to receive pull with options response: %w", err)
}
return response, nil
}