forked from beyondstorage/go-service-minio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generated.go
1107 lines (948 loc) · 28.2 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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by go generate via cmd/definitions; DO NOT EDIT.
package minio
import (
"context"
"io"
"time"
"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
// Type is the type for minio
const Type = "minio"
// ObjectSystemMetadata stores system metadata for object.
type ObjectSystemMetadata struct {
// StorageClass
StorageClass string
}
// 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)
}
// WithDefaultServicePairs will apply default_service_pairs value to Options.
//
// DefaultServicePairs set default pairs for service actions
func WithDefaultServicePairs(v DefaultServicePairs) Pair {
return Pair{
Key: "default_service_pairs",
Value: v,
}
}
// 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,
}
}
// WithServiceFeatures will apply service_features value to Options.
//
// ServiceFeatures set service features
func WithServiceFeatures(v ServiceFeatures) Pair {
return Pair{
Key: "service_features",
Value: v,
}
}
// WithStorageClass will apply storage_class value to Options.
//
// StorageClass
func WithStorageClass(v string) Pair {
return Pair{
Key: "storage_class",
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_service_pairs": "DefaultServicePairs",
"default_storage_pairs": "DefaultStoragePairs",
"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",
"service_features": "ServiceFeatures",
"size": "int64",
"storage_class": "string",
"storage_features": "StorageFeatures",
"work_dir": "string",
}
var (
_ Servicer = &Service{}
)
type ServiceFeatures struct {
}
// pairServiceNew is the parsed struct
type pairServiceNew struct {
pairs []Pair
// Required pairs
HasCredential bool
Credential string
HasEndpoint bool
Endpoint string
// Optional pairs
HasDefaultServicePairs bool
DefaultServicePairs DefaultServicePairs
HasServiceFeatures bool
ServiceFeatures ServiceFeatures
}
// parsePairServiceNew will parse Pair slice into *pairServiceNew
func parsePairServiceNew(opts []Pair) (pairServiceNew, error) {
result := pairServiceNew{
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)
case "endpoint":
if result.HasEndpoint {
continue
}
result.HasEndpoint = true
result.Endpoint = v.Value.(string)
// Optional pairs
case "default_service_pairs":
if result.HasDefaultServicePairs {
continue
}
result.HasDefaultServicePairs = true
result.DefaultServicePairs = v.Value.(DefaultServicePairs)
case "service_features":
if result.HasServiceFeatures {
continue
}
result.HasServiceFeatures = true
result.ServiceFeatures = v.Value.(ServiceFeatures)
}
}
if !result.HasCredential {
return pairServiceNew{}, services.PairRequiredError{Keys: []string{"credential"}}
}
if !result.HasEndpoint {
return pairServiceNew{}, services.PairRequiredError{Keys: []string{"endpoint"}}
}
return result, nil
}
// DefaultServicePairs is default pairs for specific action
type DefaultServicePairs struct {
Create []Pair
Delete []Pair
Get []Pair
List []Pair
}
// pairServiceCreate is the parsed struct
type pairServiceCreate struct {
pairs []Pair
}
// parsePairServiceCreate will parse Pair slice into *pairServiceCreate
func (s *Service) parsePairServiceCreate(opts []Pair) (pairServiceCreate, error) {
result := pairServiceCreate{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
default:
return pairServiceCreate{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairServiceDelete is the parsed struct
type pairServiceDelete struct {
pairs []Pair
}
// parsePairServiceDelete will parse Pair slice into *pairServiceDelete
func (s *Service) parsePairServiceDelete(opts []Pair) (pairServiceDelete, error) {
result := pairServiceDelete{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
default:
return pairServiceDelete{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairServiceGet is the parsed struct
type pairServiceGet struct {
pairs []Pair
}
// parsePairServiceGet will parse Pair slice into *pairServiceGet
func (s *Service) parsePairServiceGet(opts []Pair) (pairServiceGet, error) {
result := pairServiceGet{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
default:
return pairServiceGet{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// pairServiceList is the parsed struct
type pairServiceList struct {
pairs []Pair
}
// parsePairServiceList will parse Pair slice into *pairServiceList
func (s *Service) parsePairServiceList(opts []Pair) (pairServiceList, error) {
result := pairServiceList{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
default:
return pairServiceList{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// Create will create a new storager instance.
//
// This function will create a context by default.
func (s *Service) Create(name string, pairs ...Pair) (store Storager, err error) {
ctx := context.Background()
return s.CreateWithContext(ctx, name, pairs...)
}
// CreateWithContext will create a new storager instance.
func (s *Service) CreateWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error) {
defer func() {
err = s.formatError("create", err, name)
}()
pairs = append(pairs, s.defaultPairs.Create...)
var opt pairServiceCreate
opt, err = s.parsePairServiceCreate(pairs)
if err != nil {
return
}
return s.create(ctx, name, opt)
}
// Delete will delete a storager instance.
//
// This function will create a context by default.
func (s *Service) Delete(name string, pairs ...Pair) (err error) {
ctx := context.Background()
return s.DeleteWithContext(ctx, name, pairs...)
}
// DeleteWithContext will delete a storager instance.
func (s *Service) DeleteWithContext(ctx context.Context, name string, pairs ...Pair) (err error) {
defer func() {
err = s.formatError("delete", err, name)
}()
pairs = append(pairs, s.defaultPairs.Delete...)
var opt pairServiceDelete
opt, err = s.parsePairServiceDelete(pairs)
if err != nil {
return
}
return s.delete(ctx, name, opt)
}
// Get will get a valid storager instance for service.
//
// This function will create a context by default.
func (s *Service) Get(name string, pairs ...Pair) (store Storager, err error) {
ctx := context.Background()
return s.GetWithContext(ctx, name, pairs...)
}
// GetWithContext will get a valid storager instance for service.
func (s *Service) GetWithContext(ctx context.Context, name string, pairs ...Pair) (store Storager, err error) {
defer func() {
err = s.formatError("get", err, name)
}()
pairs = append(pairs, s.defaultPairs.Get...)
var opt pairServiceGet
opt, err = s.parsePairServiceGet(pairs)
if err != nil {
return
}
return s.get(ctx, name, opt)
}
// List will list all storager instances under this service.
//
// This function will create a context by default.
func (s *Service) List(pairs ...Pair) (sti *StoragerIterator, err error) {
ctx := context.Background()
return s.ListWithContext(ctx, pairs...)
}
// ListWithContext will list all storager instances under this service.
func (s *Service) ListWithContext(ctx context.Context, pairs ...Pair) (sti *StoragerIterator, err error) {
defer func() {
err = s.formatError("list", err, "")
}()
pairs = append(pairs, s.defaultPairs.List...)
var opt pairServiceList
opt, err = s.parsePairServiceList(pairs)
if err != nil {
return
}
return s.list(ctx, opt)
}
var (
_ Copier = &Storage{}
_ Reacher = &Storage{}
_ Storager = &Storage{}
)
type StorageFeatures struct {
// VirtualDir virtual_dir feature is designed for a service that doesn't have native dir support but wants to provide simulated operations.
//
// - If this feature is disabled (the default behavior), the service will behave like it doesn't have any dir support.
// - If this feature is enabled, the service will support simulated dir behavior in create_dir, create, list, delete, and so on.
//
// This feature was introduced in GSP-109.
VirtualDir bool
}
// pairStorageNew is the parsed struct
type pairStorageNew struct {
pairs []Pair
// Required pairs
HasName bool
Name string
// Optional pairs
HasDefaultStoragePairs bool
DefaultStoragePairs DefaultStoragePairs
HasStorageFeatures bool
StorageFeatures StorageFeatures
HasWorkDir bool
WorkDir string
}
// 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 "name":
if result.HasName {
continue
}
result.HasName = true
result.Name = 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)
}
}
if !result.HasName {
return pairStorageNew{}, services.PairRequiredError{Keys: []string{"name"}}
}
return result, nil
}
// DefaultStoragePairs is default pairs for specific action
type DefaultStoragePairs struct {
Copy []Pair
Create []Pair
Delete []Pair
List []Pair
Metadata []Pair
Reach []Pair
Read []Pair
Stat []Pair
Write []Pair
}
// pairStorageCopy is the parsed struct
type pairStorageCopy struct {
pairs []Pair
}
// parsePairStorageCopy will parse Pair slice into *pairStorageCopy
func (s *Storage) parsePairStorageCopy(opts []Pair) (pairStorageCopy, error) {
result := pairStorageCopy{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
default:
return pairStorageCopy{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// 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
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 "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
}
// pairStorageReach is the parsed struct
type pairStorageReach struct {
pairs []Pair
HasExpire bool
Expire time.Duration
}
// parsePairStorageReach will parse Pair slice into *pairStorageReach
func (s *Storage) parsePairStorageReach(opts []Pair) (pairStorageReach, error) {
result := pairStorageReach{
pairs: opts,
}
for _, v := range opts {
switch v.Key {
case "expire":
if result.HasExpire {
continue
}
result.HasExpire = true
result.Expire = v.Value.(time.Duration)
continue
default:
return pairStorageReach{}, 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
HasIoCallback bool
IoCallback func([]byte)
HasStorageClass bool
StorageClass string
}
// 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 "io_callback":
if result.HasIoCallback {
continue
}
result.HasIoCallback = true
result.IoCallback = v.Value.(func([]byte))
continue
case "storage_class":
if result.HasStorageClass {
continue
}
result.HasStorageClass = true
result.StorageClass = v.Value.(string)
continue
default:
return pairStorageWrite{}, services.PairUnsupportedError{Pair: v}
}
}
// Check required pairs.
return result, nil
}
// Copy will copy an Object or multiple object in the service.
//
// ## Behavior
//
// - Copy only copy one and only one object.
// - Service DON'T NEED to support copy a non-empty directory or copy files recursively.
// - User NEED to implement copy a non-empty directory and copy recursively by themself.
// - Copy a file to a directory SHOULD return `ErrObjectModeInvalid`.
// - Copy SHOULD NOT return an error as dst object exists.
// - Service that has native support for `overwrite` doesn't NEED to check the dst object exists or not.
// - Service that doesn't have native support for `overwrite` SHOULD check and delete the dst object if exists.
// - A successful copy opration should be complete, which means the dst object's content and metadata should be the same as src object.
//
// This function will create a context by default.
func (s *Storage) Copy(src string, dst string, pairs ...Pair) (err error) {
ctx := context.Background()
return s.CopyWithContext(ctx, src, dst, pairs...)
}
// CopyWithContext will copy an Object or multiple object in the service.
//
// ## Behavior
//
// - Copy only copy one and only one object.
// - Service DON'T NEED to support copy a non-empty directory or copy files recursively.
// - User NEED to implement copy a non-empty directory and copy recursively by themself.
// - Copy a file to a directory SHOULD return `ErrObjectModeInvalid`.
// - Copy SHOULD NOT return an error as dst object exists.
// - Service that has native support for `overwrite` doesn't NEED to check the dst object exists or not.
// - Service that doesn't have native support for `overwrite` SHOULD check and delete the dst object if exists.
// - A successful copy opration should be complete, which means the dst object's content and metadata should be the same as src object.
func (s *Storage) CopyWithContext(ctx context.Context, src string, dst string, pairs ...Pair) (err error) {
defer func() {
err = s.formatError("copy", err, src, dst)
}()
pairs = append(pairs, s.defaultPairs.Copy...)
var opt pairStorageCopy
opt, err = s.parsePairStorageCopy(pairs)
if err != nil {
return
}
return s.copy(ctx, src, dst, opt)
}
// 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)
}
// Reach will provide a way, which can reach the object.
//
// This function will create a context by default.
func (s *Storage) Reach(path string, pairs ...Pair) (url string, err error) {
ctx := context.Background()
return s.ReachWithContext(ctx, path, pairs...)
}
// ReachWithContext will provide a way, which can reach the object.
func (s *Storage) ReachWithContext(ctx context.Context, path string, pairs ...Pair) (url string, err error) {
defer func() {
err = s.formatError("reach", err, path)
}()
pairs = append(pairs, s.defaultPairs.Reach...)
var opt pairStorageReach
opt, err = s.parsePairStorageReach(pairs)
if err != nil {
return
}
return s.reach(ctx, path, opt)
}