-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_photo_gen.go
1005 lines (886 loc) · 21.3 KB
/
tl_photo_gen.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 gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
)
// PhotoEmpty represents TL type `photoEmpty#2331b22d`.
// Empty constructor, non-existent photo
//
// See https://core.telegram.org/constructor/photoEmpty for reference.
type PhotoEmpty struct {
// Photo identifier
ID int64
}
// PhotoEmptyTypeID is TL type id of PhotoEmpty.
const PhotoEmptyTypeID = 0x2331b22d
func (p *PhotoEmpty) Zero() bool {
if p == nil {
return true
}
if !(p.ID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *PhotoEmpty) String() string {
if p == nil {
return "PhotoEmpty(nil)"
}
type Alias PhotoEmpty
return fmt.Sprintf("PhotoEmpty%+v", Alias(*p))
}
// FillFrom fills PhotoEmpty from given interface.
func (p *PhotoEmpty) FillFrom(from interface {
GetID() (value int64)
}) {
p.ID = from.GetID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*PhotoEmpty) TypeID() uint32 {
return PhotoEmptyTypeID
}
// TypeName returns name of type in TL schema.
func (*PhotoEmpty) TypeName() string {
return "photoEmpty"
}
// TypeInfo returns info about TL type.
func (p *PhotoEmpty) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "photoEmpty",
ID: PhotoEmptyTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "ID",
SchemaName: "id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *PhotoEmpty) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
}
b.PutID(PhotoEmptyTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *PhotoEmpty) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
}
b.PutLong(p.ID)
return nil
}
// GetID returns value of ID field.
func (p *PhotoEmpty) GetID() (value int64) {
return p.ID
}
// Decode implements bin.Decoder.
func (p *PhotoEmpty) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
}
if err := b.ConsumeID(PhotoEmptyTypeID); err != nil {
return fmt.Errorf("unable to decode photoEmpty#2331b22d: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *PhotoEmpty) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode photoEmpty#2331b22d: field id: %w", err)
}
p.ID = value
}
return nil
}
// construct implements constructor of PhotoClass.
func (p PhotoEmpty) construct() PhotoClass { return &p }
// Ensuring interfaces in compile-time for PhotoEmpty.
var (
_ bin.Encoder = &PhotoEmpty{}
_ bin.Decoder = &PhotoEmpty{}
_ bin.BareEncoder = &PhotoEmpty{}
_ bin.BareDecoder = &PhotoEmpty{}
_ PhotoClass = &PhotoEmpty{}
)
// Photo represents TL type `photo#fb197a65`.
// Photo
//
// See https://core.telegram.org/constructor/photo for reference.
type Photo struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Whether the photo has mask stickers attached to it
HasStickers bool
// ID
ID int64
// Access hash
AccessHash int64
// file reference¹
//
// Links:
// 1) https://core.telegram.org/api/file_reference
FileReference []byte
// Date of upload
Date int
// Available sizes for download
Sizes []PhotoSizeClass
// For animated profiles¹, the MPEG4 videos
//
// Links:
// 1) https://core.telegram.org/api/files#animated-profile-pictures
//
// Use SetVideoSizes and GetVideoSizes helpers.
VideoSizes []VideoSize
// DC ID to use for download
DCID int
}
// PhotoTypeID is TL type id of Photo.
const PhotoTypeID = 0xfb197a65
func (p *Photo) Zero() bool {
if p == nil {
return true
}
if !(p.Flags.Zero()) {
return false
}
if !(p.HasStickers == false) {
return false
}
if !(p.ID == 0) {
return false
}
if !(p.AccessHash == 0) {
return false
}
if !(p.FileReference == nil) {
return false
}
if !(p.Date == 0) {
return false
}
if !(p.Sizes == nil) {
return false
}
if !(p.VideoSizes == nil) {
return false
}
if !(p.DCID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (p *Photo) String() string {
if p == nil {
return "Photo(nil)"
}
type Alias Photo
return fmt.Sprintf("Photo%+v", Alias(*p))
}
// FillFrom fills Photo from given interface.
func (p *Photo) FillFrom(from interface {
GetHasStickers() (value bool)
GetID() (value int64)
GetAccessHash() (value int64)
GetFileReference() (value []byte)
GetDate() (value int)
GetSizes() (value []PhotoSizeClass)
GetVideoSizes() (value []VideoSize, ok bool)
GetDCID() (value int)
}) {
p.HasStickers = from.GetHasStickers()
p.ID = from.GetID()
p.AccessHash = from.GetAccessHash()
p.FileReference = from.GetFileReference()
p.Date = from.GetDate()
p.Sizes = from.GetSizes()
if val, ok := from.GetVideoSizes(); ok {
p.VideoSizes = val
}
p.DCID = from.GetDCID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*Photo) TypeID() uint32 {
return PhotoTypeID
}
// TypeName returns name of type in TL schema.
func (*Photo) TypeName() string {
return "photo"
}
// TypeInfo returns info about TL type.
func (p *Photo) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "photo",
ID: PhotoTypeID,
}
if p == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "HasStickers",
SchemaName: "has_stickers",
Null: !p.Flags.Has(0),
},
{
Name: "ID",
SchemaName: "id",
},
{
Name: "AccessHash",
SchemaName: "access_hash",
},
{
Name: "FileReference",
SchemaName: "file_reference",
},
{
Name: "Date",
SchemaName: "date",
},
{
Name: "Sizes",
SchemaName: "sizes",
},
{
Name: "VideoSizes",
SchemaName: "video_sizes",
Null: !p.Flags.Has(1),
},
{
Name: "DCID",
SchemaName: "dc_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (p *Photo) Encode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photo#fb197a65 as nil")
}
b.PutID(PhotoTypeID)
return p.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (p *Photo) EncodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't encode photo#fb197a65 as nil")
}
if !(p.HasStickers == false) {
p.Flags.Set(0)
}
if !(p.VideoSizes == nil) {
p.Flags.Set(1)
}
if err := p.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode photo#fb197a65: field flags: %w", err)
}
b.PutLong(p.ID)
b.PutLong(p.AccessHash)
b.PutBytes(p.FileReference)
b.PutInt(p.Date)
b.PutVectorHeader(len(p.Sizes))
for idx, v := range p.Sizes {
if v == nil {
return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d is nil", idx)
}
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d: %w", idx, err)
}
}
if p.Flags.Has(1) {
b.PutVectorHeader(len(p.VideoSizes))
for idx, v := range p.VideoSizes {
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode photo#fb197a65: field video_sizes element with index %d: %w", idx, err)
}
}
}
b.PutInt(p.DCID)
return nil
}
// SetHasStickers sets value of HasStickers conditional field.
func (p *Photo) SetHasStickers(value bool) {
if value {
p.Flags.Set(0)
p.HasStickers = true
} else {
p.Flags.Unset(0)
p.HasStickers = false
}
}
// GetHasStickers returns value of HasStickers conditional field.
func (p *Photo) GetHasStickers() (value bool) {
return p.Flags.Has(0)
}
// GetID returns value of ID field.
func (p *Photo) GetID() (value int64) {
return p.ID
}
// GetAccessHash returns value of AccessHash field.
func (p *Photo) GetAccessHash() (value int64) {
return p.AccessHash
}
// GetFileReference returns value of FileReference field.
func (p *Photo) GetFileReference() (value []byte) {
return p.FileReference
}
// GetDate returns value of Date field.
func (p *Photo) GetDate() (value int) {
return p.Date
}
// GetSizes returns value of Sizes field.
func (p *Photo) GetSizes() (value []PhotoSizeClass) {
return p.Sizes
}
// MapSizes returns field Sizes wrapped in PhotoSizeClassArray helper.
func (p *Photo) MapSizes() (value PhotoSizeClassArray) {
return PhotoSizeClassArray(p.Sizes)
}
// SetVideoSizes sets value of VideoSizes conditional field.
func (p *Photo) SetVideoSizes(value []VideoSize) {
p.Flags.Set(1)
p.VideoSizes = value
}
// GetVideoSizes returns value of VideoSizes conditional field and
// boolean which is true if field was set.
func (p *Photo) GetVideoSizes() (value []VideoSize, ok bool) {
if !p.Flags.Has(1) {
return value, false
}
return p.VideoSizes, true
}
// GetDCID returns value of DCID field.
func (p *Photo) GetDCID() (value int) {
return p.DCID
}
// Decode implements bin.Decoder.
func (p *Photo) Decode(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photo#fb197a65 to nil")
}
if err := b.ConsumeID(PhotoTypeID); err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: %w", err)
}
return p.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (p *Photo) DecodeBare(b *bin.Buffer) error {
if p == nil {
return fmt.Errorf("can't decode photo#fb197a65 to nil")
}
{
if err := p.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field flags: %w", err)
}
}
p.HasStickers = p.Flags.Has(0)
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field id: %w", err)
}
p.ID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field access_hash: %w", err)
}
p.AccessHash = value
}
{
value, err := b.Bytes()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field file_reference: %w", err)
}
p.FileReference = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field date: %w", err)
}
p.Date = value
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
}
for idx := 0; idx < headerLen; idx++ {
value, err := DecodePhotoSize(b)
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
}
p.Sizes = append(p.Sizes, value)
}
}
if p.Flags.Has(1) {
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
}
for idx := 0; idx < headerLen; idx++ {
var value VideoSize
if err := value.Decode(b); err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
}
p.VideoSizes = append(p.VideoSizes, value)
}
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode photo#fb197a65: field dc_id: %w", err)
}
p.DCID = value
}
return nil
}
// construct implements constructor of PhotoClass.
func (p Photo) construct() PhotoClass { return &p }
// Ensuring interfaces in compile-time for Photo.
var (
_ bin.Encoder = &Photo{}
_ bin.Decoder = &Photo{}
_ bin.BareEncoder = &Photo{}
_ bin.BareDecoder = &Photo{}
_ PhotoClass = &Photo{}
)
// PhotoClass represents Photo generic type.
//
// See https://core.telegram.org/type/Photo for reference.
//
// Example:
// g, err := tg.DecodePhoto(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.PhotoEmpty: // photoEmpty#2331b22d
// case *tg.Photo: // photo#fb197a65
// default: panic(v)
// }
type PhotoClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() PhotoClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
// Photo identifier
GetID() (value int64)
// AsNotEmpty tries to map PhotoClass to Photo.
AsNotEmpty() (*Photo, bool)
}
// AsInput tries to map Photo to InputPhoto.
func (p *Photo) AsInput() *InputPhoto {
value := new(InputPhoto)
value.ID = p.GetID()
value.AccessHash = p.GetAccessHash()
value.FileReference = p.GetFileReference()
return value
}
// AsInputPhotoFileLocation tries to map Photo to InputPhotoFileLocation.
func (p *Photo) AsInputPhotoFileLocation() *InputPhotoFileLocation {
value := new(InputPhotoFileLocation)
value.ID = p.GetID()
value.AccessHash = p.GetAccessHash()
value.FileReference = p.GetFileReference()
return value
}
// AsNotEmpty tries to map PhotoEmpty to Photo.
func (p *PhotoEmpty) AsNotEmpty() (*Photo, bool) {
return nil, false
}
// AsNotEmpty tries to map Photo to Photo.
func (p *Photo) AsNotEmpty() (*Photo, bool) {
return p, true
}
// DecodePhoto implements binary de-serialization for PhotoClass.
func DecodePhoto(buf *bin.Buffer) (PhotoClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case PhotoEmptyTypeID:
// Decoding photoEmpty#2331b22d.
v := PhotoEmpty{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
}
return &v, nil
case PhotoTypeID:
// Decoding photo#fb197a65.
v := Photo{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode PhotoClass: %w", bin.NewUnexpectedID(id))
}
}
// Photo boxes the PhotoClass providing a helper.
type PhotoBox struct {
Photo PhotoClass
}
// Decode implements bin.Decoder for PhotoBox.
func (b *PhotoBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode PhotoBox to nil")
}
v, err := DecodePhoto(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.Photo = v
return nil
}
// Encode implements bin.Encode for PhotoBox.
func (b *PhotoBox) Encode(buf *bin.Buffer) error {
if b == nil || b.Photo == nil {
return fmt.Errorf("unable to encode PhotoClass as nil")
}
return b.Photo.Encode(buf)
}
// PhotoClassArray is adapter for slice of PhotoClass.
type PhotoClassArray []PhotoClass
// Sort sorts slice of PhotoClass.
func (s PhotoClassArray) Sort(less func(a, b PhotoClass) bool) PhotoClassArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of PhotoClass.
func (s PhotoClassArray) SortStable(less func(a, b PhotoClass) bool) PhotoClassArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of PhotoClass.
func (s PhotoClassArray) Retain(keep func(x PhotoClass) bool) PhotoClassArray {
n := 0
for _, x := range s {
if keep(x) {
s[n] = x
n++
}
}
s = s[:n]
return s
}
// First returns first element of slice (if exists).
func (s PhotoClassArray) First() (v PhotoClass, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PhotoClassArray) Last() (v PhotoClass, ok bool) {
if len(s) < 1 {
return
}
return s[len(s)-1], true
}
// PopFirst returns first element of slice (if exists) and deletes it.
func (s *PhotoClassArray) PopFirst() (v PhotoClass, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[0]
// Delete by index from SliceTricks.
copy(a[0:], a[1:])
var zero PhotoClass
a[len(a)-1] = zero
a = a[:len(a)-1]
*s = a
return v, true
}
// Pop returns last element of slice (if exists) and deletes it.
func (s *PhotoClassArray) Pop() (v PhotoClass, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[len(a)-1]
a = a[:len(a)-1]
*s = a
return v, true
}
// AsPhotoEmpty returns copy with only PhotoEmpty constructors.
func (s PhotoClassArray) AsPhotoEmpty() (to PhotoEmptyArray) {
for _, elem := range s {
value, ok := elem.(*PhotoEmpty)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AsPhoto returns copy with only Photo constructors.
func (s PhotoClassArray) AsPhoto() (to PhotoArray) {
for _, elem := range s {
value, ok := elem.(*Photo)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AppendOnlyNotEmpty appends only NotEmpty constructors to
// given slice.
func (s PhotoClassArray) AppendOnlyNotEmpty(to []*Photo) []*Photo {
for _, elem := range s {
value, ok := elem.AsNotEmpty()
if !ok {
continue
}
to = append(to, value)
}
return to
}
// AsNotEmpty returns copy with only NotEmpty constructors.
func (s PhotoClassArray) AsNotEmpty() (to []*Photo) {
return s.AppendOnlyNotEmpty(to)
}
// FirstAsNotEmpty returns first element of slice (if exists).
func (s PhotoClassArray) FirstAsNotEmpty() (v *Photo, ok bool) {
value, ok := s.First()
if !ok {
return
}
return value.AsNotEmpty()
}
// LastAsNotEmpty returns last element of slice (if exists).
func (s PhotoClassArray) LastAsNotEmpty() (v *Photo, ok bool) {
value, ok := s.Last()
if !ok {
return
}
return value.AsNotEmpty()
}
// PopFirstAsNotEmpty returns element of slice (if exists).
func (s *PhotoClassArray) PopFirstAsNotEmpty() (v *Photo, ok bool) {
value, ok := s.PopFirst()
if !ok {
return
}
return value.AsNotEmpty()
}
// PopAsNotEmpty returns element of slice (if exists).
func (s *PhotoClassArray) PopAsNotEmpty() (v *Photo, ok bool) {
value, ok := s.Pop()
if !ok {
return
}
return value.AsNotEmpty()
}
// PhotoEmptyArray is adapter for slice of PhotoEmpty.
type PhotoEmptyArray []PhotoEmpty
// Sort sorts slice of PhotoEmpty.
func (s PhotoEmptyArray) Sort(less func(a, b PhotoEmpty) bool) PhotoEmptyArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of PhotoEmpty.
func (s PhotoEmptyArray) SortStable(less func(a, b PhotoEmpty) bool) PhotoEmptyArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of PhotoEmpty.
func (s PhotoEmptyArray) Retain(keep func(x PhotoEmpty) bool) PhotoEmptyArray {
n := 0
for _, x := range s {
if keep(x) {
s[n] = x
n++
}
}
s = s[:n]
return s
}
// First returns first element of slice (if exists).
func (s PhotoEmptyArray) First() (v PhotoEmpty, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PhotoEmptyArray) Last() (v PhotoEmpty, ok bool) {
if len(s) < 1 {
return
}
return s[len(s)-1], true
}
// PopFirst returns first element of slice (if exists) and deletes it.
func (s *PhotoEmptyArray) PopFirst() (v PhotoEmpty, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[0]
// Delete by index from SliceTricks.
copy(a[0:], a[1:])
var zero PhotoEmpty
a[len(a)-1] = zero
a = a[:len(a)-1]
*s = a
return v, true
}
// Pop returns last element of slice (if exists) and deletes it.
func (s *PhotoEmptyArray) Pop() (v PhotoEmpty, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[len(a)-1]
a = a[:len(a)-1]
*s = a
return v, true
}
// PhotoArray is adapter for slice of Photo.
type PhotoArray []Photo
// Sort sorts slice of Photo.
func (s PhotoArray) Sort(less func(a, b Photo) bool) PhotoArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of Photo.
func (s PhotoArray) SortStable(less func(a, b Photo) bool) PhotoArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of Photo.
func (s PhotoArray) Retain(keep func(x Photo) bool) PhotoArray {
n := 0
for _, x := range s {
if keep(x) {
s[n] = x
n++
}
}
s = s[:n]
return s
}
// First returns first element of slice (if exists).
func (s PhotoArray) First() (v Photo, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s PhotoArray) Last() (v Photo, ok bool) {
if len(s) < 1 {
return
}
return s[len(s)-1], true
}
// PopFirst returns first element of slice (if exists) and deletes it.
func (s *PhotoArray) PopFirst() (v Photo, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[0]
// Delete by index from SliceTricks.
copy(a[0:], a[1:])
var zero Photo
a[len(a)-1] = zero
a = a[:len(a)-1]
*s = a
return v, true
}
// Pop returns last element of slice (if exists) and deletes it.
func (s *PhotoArray) Pop() (v Photo, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[len(a)-1]
a = a[:len(a)-1]
*s = a
return v, true
}
// SortByDate sorts slice of Photo by Date.
func (s PhotoArray) SortByDate() PhotoArray {
return s.Sort(func(a, b Photo) bool {
return a.GetDate() < b.GetDate()
})
}
// SortStableByDate sorts slice of Photo by Date.