This repository was archived by the owner on Oct 22, 2021. It is now read-only.
generated from beyondstorage/go-service-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerated.go
723 lines (632 loc) · 18.5 KB
/
generated.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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
// Code generated by go generate via cmd/definitions; DO NOT EDIT.
package onedrive
import (
"context"
"io"
"net/http"
"time"
. "github.com/beyondstorage/go-storage/v4/pairs"
"github.com/beyondstorage/go-storage/v4/pkg/httpclient"
"github.com/beyondstorage/go-storage/v4/services"
. "github.com/beyondstorage/go-storage/v4/types"
)
var _ Storager
var _ services.ServiceError
var _ httpclient.Options
var _ time.Duration
var _ http.Request
var _ Error
// Type is the type for onedrive
const Type = "onedrive"
// ObjectSystemMetadata stores system metadata for object.
type ObjectSystemMetadata struct {
}
// GetObjectSystemMetadata will get ObjectSystemMetadata from Object.
//
// - This function should not be called by service implementer.
// - The returning ObjectServiceMetadata is read only and should not be modified.
func GetObjectSystemMetadata(o *Object) ObjectSystemMetadata {
sm, ok := o.GetSystemMetadata()
if ok {
return sm.(ObjectSystemMetadata)
}
return ObjectSystemMetadata{}
}
// setObjectSystemMetadata will set ObjectSystemMetadata into Object.
//
// - This function should only be called once, please make sure all data has been written before set.
func setObjectSystemMetadata(o *Object, sm ObjectSystemMetadata) {
o.SetSystemMetadata(sm)
}
// StorageSystemMetadata stores system metadata for storage meta.
type StorageSystemMetadata struct {
}
// GetStorageSystemMetadata will get SystemMetadata from StorageMeta.
//
// - The returning StorageSystemMetadata is read only and should not be modified.
func GetStorageSystemMetadata(s *StorageMeta) StorageSystemMetadata {
sm, ok := s.GetSystemMetadata()
if ok {
return sm.(StorageSystemMetadata)
}
return StorageSystemMetadata{}
}
// setStorageSystemMetadata will set SystemMetadata into StorageMeta.
//
// - This function should only be called once, please make sure all data has been written before set.
func setStorageSystemMetadata(s *StorageMeta, sm StorageSystemMetadata) {
s.SetSystemMetadata(sm)
}
// WithDefaultStoragePairs will apply default_storage_pairs value to Options.
//
// DefaultStoragePairs set default pairs for storager actions
func WithDefaultStoragePairs(v DefaultStoragePairs) Pair {
return Pair{
Key: "default_storage_pairs",
Value: v,
}
}
// WithDescription will apply description value to Options.
//
// Description description for target file/dir
func WithDescription(v string) Pair {
return Pair{
Key: "description",
Value: v,
}
}
// WithStorageFeatures will apply storage_features value to Options.
//
// StorageFeatures set storage features
func WithStorageFeatures(v StorageFeatures) Pair {
return Pair{
Key: "storage_features",
Value: v,
}
}
var pairMap = map[string]string{
"content_md5": "string",
"content_type": "string",
"context": "context.Context",
"continuation_token": "string",
"credential": "string",
"default_content_type": "string",
"default_io_callback": "func([]byte)",
"default_storage_pairs": "DefaultStoragePairs",
"description": "string",
"endpoint": "string",
"expire": "time.Duration",
"http_client_options": "*httpclient.Options",
"interceptor": "Interceptor",
"io_callback": "func([]byte)",
"list_mode": "ListMode",
"location": "string",
"multipart_id": "string",
"name": "string",
"object_mode": "ObjectMode",
"offset": "int64",
"size": "int64",
"storage_features": "StorageFeatures",
"work_dir": "string",
}
var (
_ Storager = &Storage{}
)
type StorageFeatures struct {
}
// pairStorageNew is the parsed struct
type pairStorageNew struct {
pairs []Pair
// Required pairs
HasCredential bool
Credential string
// Optional pairs
HasDefaultStoragePairs bool
DefaultStoragePairs DefaultStoragePairs
HasStorageFeatures bool
StorageFeatures StorageFeatures
HasWorkDir bool
WorkDir string
// Enable features
// Default pairs
hasDefaultContentType bool
DefaultContentType string
hasDefaultIoCallback bool
DefaultIoCallback func([]byte)
}
// parsePairStorageNew will parse Pair slice into *pairStorageNew
func parsePairStorageNew(opts []Pair) (pairStorageNew, error) {
result := pairStorageNew{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
// Required pairs
case "credential":
if result.HasCredential {
continue
}
result.HasCredential = true
result.Credential = v.Value.(string)
// Optional pairs
case "default_storage_pairs":
if result.HasDefaultStoragePairs {
continue
}
result.HasDefaultStoragePairs = true
result.DefaultStoragePairs = v.Value.(DefaultStoragePairs)
case "storage_features":
if result.HasStorageFeatures {
continue
}
result.HasStorageFeatures = true
result.StorageFeatures = v.Value.(StorageFeatures)
case "work_dir":
if result.HasWorkDir {
continue
}
result.HasWorkDir = true
result.WorkDir = v.Value.(string)
// Enable features
// Default pairs
case "default_content_type":
if result.hasDefaultContentType {
continue
}
result.hasDefaultContentType = true
result.DefaultContentType = v.Value.(string)
case "default_io_callback":
if result.hasDefaultIoCallback {
continue
}
result.hasDefaultIoCallback = true
result.DefaultIoCallback = v.Value.(func([]byte))
}
}
// Enable features
// Default pairs
if result.hasDefaultContentType {
result.HasDefaultStoragePairs = true
result.DefaultStoragePairs.Write = append(result.DefaultStoragePairs.Write, WithContentType(result.DefaultContentType))
}
if result.hasDefaultIoCallback {
result.HasDefaultStoragePairs = true
result.DefaultStoragePairs.Read = append(result.DefaultStoragePairs.Read, WithIoCallback(result.DefaultIoCallback))
result.DefaultStoragePairs.Write = append(result.DefaultStoragePairs.Write, WithIoCallback(result.DefaultIoCallback))
}
if !result.HasCredential {
return pairStorageNew{}, services.PairRequiredError{Keys: []string{"credential"}}
}
return result, nil
}
// DefaultStoragePairs is default pairs for specific action
type DefaultStoragePairs struct {
Create []Pair
Delete []Pair
List []Pair
Metadata []Pair
Read []Pair
Stat []Pair
Write []Pair
}
// pairStorageCreate is the parsed struct
type pairStorageCreate struct {
pairs []Pair
HasObjectMode bool
ObjectMode ObjectMode
}
// parsePairStorageCreate will parse Pair slice into *pairStorageCreate
func (s *Storage) parsePairStorageCreate(opts []Pair) (pairStorageCreate, error) {
result := pairStorageCreate{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "object_mode":
if result.HasObjectMode {
continue
}
result.HasObjectMode = true
result.ObjectMode = v.Value.(ObjectMode)
continue
default:
return pairStorageCreate{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairStorageDelete is the parsed struct
type pairStorageDelete struct {
pairs []Pair
HasObjectMode bool
ObjectMode ObjectMode
}
// parsePairStorageDelete will parse Pair slice into *pairStorageDelete
func (s *Storage) parsePairStorageDelete(opts []Pair) (pairStorageDelete, error) {
result := pairStorageDelete{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "object_mode":
if result.HasObjectMode {
continue
}
result.HasObjectMode = true
result.ObjectMode = v.Value.(ObjectMode)
continue
default:
return pairStorageDelete{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairStorageList is the parsed struct
type pairStorageList struct {
pairs []Pair
HasContinuationToken bool
ContinuationToken string
HasListMode bool
ListMode ListMode
}
// parsePairStorageList will parse Pair slice into *pairStorageList
func (s *Storage) parsePairStorageList(opts []Pair) (pairStorageList, error) {
result := pairStorageList{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "continuation_token":
if result.HasContinuationToken {
continue
}
result.HasContinuationToken = true
result.ContinuationToken = v.Value.(string)
continue
case "list_mode":
if result.HasListMode {
continue
}
result.HasListMode = true
result.ListMode = v.Value.(ListMode)
continue
default:
return pairStorageList{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairStorageMetadata is the parsed struct
type pairStorageMetadata struct {
pairs []Pair
}
// parsePairStorageMetadata will parse Pair slice into *pairStorageMetadata
func (s *Storage) parsePairStorageMetadata(opts []Pair) (pairStorageMetadata, error) {
result := pairStorageMetadata{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
default:
return pairStorageMetadata{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairStorageRead is the parsed struct
type pairStorageRead struct {
pairs []Pair
HasIoCallback bool
IoCallback func([]byte)
HasOffset bool
Offset int64
HasSize bool
Size int64
}
// parsePairStorageRead will parse Pair slice into *pairStorageRead
func (s *Storage) parsePairStorageRead(opts []Pair) (pairStorageRead, error) {
result := pairStorageRead{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "io_callback":
if result.HasIoCallback {
continue
}
result.HasIoCallback = true
result.IoCallback = v.Value.(func([]byte))
continue
case "offset":
if result.HasOffset {
continue
}
result.HasOffset = true
result.Offset = v.Value.(int64)
continue
case "size":
if result.HasSize {
continue
}
result.HasSize = true
result.Size = v.Value.(int64)
continue
default:
return pairStorageRead{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairStorageStat is the parsed struct
type pairStorageStat struct {
pairs []Pair
HasObjectMode bool
ObjectMode ObjectMode
}
// parsePairStorageStat will parse Pair slice into *pairStorageStat
func (s *Storage) parsePairStorageStat(opts []Pair) (pairStorageStat, error) {
result := pairStorageStat{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "object_mode":
if result.HasObjectMode {
continue
}
result.HasObjectMode = true
result.ObjectMode = v.Value.(ObjectMode)
continue
default:
return pairStorageStat{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairStorageWrite is the parsed struct
type pairStorageWrite struct {
pairs []Pair
HasContentMd5 bool
ContentMd5 string
HasContentType bool
ContentType string
HasDescription bool
Description string
HasIoCallback bool
IoCallback func([]byte)
}
// parsePairStorageWrite will parse Pair slice into *pairStorageWrite
func (s *Storage) parsePairStorageWrite(opts []Pair) (pairStorageWrite, error) {
result := pairStorageWrite{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "content_md5":
if result.HasContentMd5 {
continue
}
result.HasContentMd5 = true
result.ContentMd5 = v.Value.(string)
continue
case "content_type":
if result.HasContentType {
continue
}
result.HasContentType = true
result.ContentType = v.Value.(string)
continue
case "description":
if result.HasDescription {
continue
}
result.HasDescription = true
result.Description = v.Value.(string)
continue
case "io_callback":
if result.HasIoCallback {
continue
}
result.HasIoCallback = true
result.IoCallback = v.Value.(func([]byte))
continue
default:
return pairStorageWrite{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// Create will create a new object without any api call.
//
// ## Behavior
//
// - Create SHOULD NOT send any API call.
// - Create SHOULD accept ObjectMode pair as object mode.
//
// This function will create a context by default.
func (s *Storage) Create(path string, pairs ...Pair) (o *Object) {
pairs = append(pairs, s.defaultPairs.Create...)
var opt pairStorageCreate
// Ignore error while handling local funtions.
opt, _ = s.parsePairStorageCreate(pairs)
return s.create(path, opt)
}
// Delete will delete an object from service.
//
// ## Behavior
//
// - Delete only delete one and only one object.
// - Service DON'T NEED to support remove all.
// - User NEED to implement remove_all by themself.
// - Delete is idempotent.
// - Successful delete always return nil error.
// - Delete SHOULD never return `ObjectNotExist`
// - Delete DON'T NEED to check the object exist or not.
//
// This function will create a context by default.
func (s *Storage) Delete(path string, pairs ...Pair) (err error) {
ctx := context.Background()
return s.DeleteWithContext(ctx, path, pairs...)
}
// DeleteWithContext will delete an object from service.
//
// ## Behavior
//
// - Delete only delete one and only one object.
// - Service DON'T NEED to support remove all.
// - User NEED to implement remove_all by themself.
// - Delete is idempotent.
// - Successful delete always return nil error.
// - Delete SHOULD never return `ObjectNotExist`
// - Delete DON'T NEED to check the object exist or not.
func (s *Storage) DeleteWithContext(ctx context.Context, path string, pairs ...Pair) (err error) {
defer func() {
err = s.formatError("delete", err, path)
}()
pairs = append(pairs, s.defaultPairs.Delete...)
var opt pairStorageDelete
opt, err = s.parsePairStorageDelete(pairs)
if err != nil {
return
}
return s.delete(ctx, path, opt)
}
// List will return list a specific path.
//
// ## Behavior
//
// - Service SHOULD support default `ListMode`.
// - Service SHOULD implement `ListModeDir` without the check for `VirtualDir`.
// - Service DON'T NEED to `Stat` while in `List`.
//
// This function will create a context by default.
func (s *Storage) List(path string, pairs ...Pair) (oi *ObjectIterator, err error) {
ctx := context.Background()
return s.ListWithContext(ctx, path, pairs...)
}
// ListWithContext will return list a specific path.
//
// ## Behavior
//
// - Service SHOULD support default `ListMode`.
// - Service SHOULD implement `ListModeDir` without the check for `VirtualDir`.
// - Service DON'T NEED to `Stat` while in `List`.
func (s *Storage) ListWithContext(ctx context.Context, path string, pairs ...Pair) (oi *ObjectIterator, err error) {
defer func() {
err = s.formatError("list", err, path)
}()
pairs = append(pairs, s.defaultPairs.List...)
var opt pairStorageList
opt, err = s.parsePairStorageList(pairs)
if err != nil {
return
}
return s.list(ctx, path, opt)
}
// Metadata will return current storager metadata.
//
// This function will create a context by default.
func (s *Storage) Metadata(pairs ...Pair) (meta *StorageMeta) {
pairs = append(pairs, s.defaultPairs.Metadata...)
var opt pairStorageMetadata
// Ignore error while handling local funtions.
opt, _ = s.parsePairStorageMetadata(pairs)
return s.metadata(opt)
}
// Read will read the file's data.
//
// This function will create a context by default.
func (s *Storage) Read(path string, w io.Writer, pairs ...Pair) (n int64, err error) {
ctx := context.Background()
return s.ReadWithContext(ctx, path, w, pairs...)
}
// ReadWithContext will read the file's data.
func (s *Storage) ReadWithContext(ctx context.Context, path string, w io.Writer, pairs ...Pair) (n int64, err error) {
defer func() {
err = s.formatError("read", err, path)
}()
pairs = append(pairs, s.defaultPairs.Read...)
var opt pairStorageRead
opt, err = s.parsePairStorageRead(pairs)
if err != nil {
return
}
return s.read(ctx, path, w, opt)
}
// Stat will stat a path to get info of an object.
//
// ## Behavior
//
// - Stat SHOULD accept ObjectMode pair as hints.
// - Service COULD have different implementations for different object mode.
// - Service SHOULD check if returning ObjectMode is match
//
// This function will create a context by default.
func (s *Storage) Stat(path string, pairs ...Pair) (o *Object, err error) {
ctx := context.Background()
return s.StatWithContext(ctx, path, pairs...)
}
// StatWithContext will stat a path to get info of an object.
//
// ## Behavior
//
// - Stat SHOULD accept ObjectMode pair as hints.
// - Service COULD have different implementations for different object mode.
// - Service SHOULD check if returning ObjectMode is match
func (s *Storage) StatWithContext(ctx context.Context, path string, pairs ...Pair) (o *Object, err error) {
defer func() {
err = s.formatError("stat", err, path)
}()
pairs = append(pairs, s.defaultPairs.Stat...)
var opt pairStorageStat
opt, err = s.parsePairStorageStat(pairs)
if err != nil {
return
}
return s.stat(ctx, path, opt)
}
// Write will write data into a file.
//
// ## Behavior
//
// - Write SHOULD NOT return an error as the object exist.
// - Service that has native support for `overwrite` doesn't NEED to check the object exists or not.
// - Service that doesn't have native support for `overwrite` SHOULD check and delete the object if exists.
// - A successful write operation SHOULD be complete, which means the object's content and metadata should be the same as specified in write request.
//
// This function will create a context by default.
func (s *Storage) Write(path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error) {
ctx := context.Background()
return s.WriteWithContext(ctx, path, r, size, pairs...)
}
// WriteWithContext will write data into a file.
//
// ## Behavior
//
// - Write SHOULD NOT return an error as the object exist.
// - Service that has native support for `overwrite` doesn't NEED to check the object exists or not.
// - Service that doesn't have native support for `overwrite` SHOULD check and delete the object if exists.
// - A successful write operation SHOULD be complete, which means the object's content and metadata should be the same as specified in write request.
func (s *Storage) WriteWithContext(ctx context.Context, path string, r io.Reader, size int64, pairs ...Pair) (n int64, err error) {
defer func() {
err = s.formatError("write", err, path)
}()
pairs = append(pairs, s.defaultPairs.Write...)
var opt pairStorageWrite
opt, err = s.parsePairStorageWrite(pairs)
if err != nil {
return
}
return s.write(ctx, path, r, size, opt)
}
func init() {
services.RegisterStorager(Type, NewStorager)
services.RegisterSchema(Type, pairMap)
}