-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
tl_file_location_gen.go
802 lines (701 loc) · 18.4 KB
/
tl_file_location_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
// Code generated by gotdgen, DO NOT EDIT.
package e2e
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"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
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
)
// FileLocationUnavailable represents TL type `fileLocationUnavailable#7c596b46`.
//
// See https://core.telegram.org/constructor/fileLocationUnavailable for reference.
type FileLocationUnavailable struct {
// VolumeID field of FileLocationUnavailable.
VolumeID int64
// LocalID field of FileLocationUnavailable.
LocalID int
// Secret field of FileLocationUnavailable.
Secret int64
}
// FileLocationUnavailableTypeID is TL type id of FileLocationUnavailable.
const FileLocationUnavailableTypeID = 0x7c596b46
func (f *FileLocationUnavailable) Zero() bool {
if f == nil {
return true
}
if !(f.VolumeID == 0) {
return false
}
if !(f.LocalID == 0) {
return false
}
if !(f.Secret == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (f *FileLocationUnavailable) String() string {
if f == nil {
return "FileLocationUnavailable(nil)"
}
type Alias FileLocationUnavailable
return fmt.Sprintf("FileLocationUnavailable%+v", Alias(*f))
}
// FillFrom fills FileLocationUnavailable from given interface.
func (f *FileLocationUnavailable) FillFrom(from interface {
GetVolumeID() (value int64)
GetLocalID() (value int)
GetSecret() (value int64)
}) {
f.VolumeID = from.GetVolumeID()
f.LocalID = from.GetLocalID()
f.Secret = from.GetSecret()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*FileLocationUnavailable) TypeID() uint32 {
return FileLocationUnavailableTypeID
}
// TypeName returns name of type in TL schema.
func (*FileLocationUnavailable) TypeName() string {
return "fileLocationUnavailable"
}
// TypeInfo returns info about TL type.
func (f *FileLocationUnavailable) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "fileLocationUnavailable",
ID: FileLocationUnavailableTypeID,
}
if f == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "VolumeID",
SchemaName: "volume_id",
},
{
Name: "LocalID",
SchemaName: "local_id",
},
{
Name: "Secret",
SchemaName: "secret",
},
}
return typ
}
// Encode implements bin.Encoder.
func (f *FileLocationUnavailable) Encode(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't encode fileLocationUnavailable#7c596b46 as nil")
}
b.PutID(FileLocationUnavailableTypeID)
b.PutLong(f.VolumeID)
b.PutInt(f.LocalID)
b.PutLong(f.Secret)
return nil
}
// GetVolumeID returns value of VolumeID field.
func (f *FileLocationUnavailable) GetVolumeID() (value int64) {
return f.VolumeID
}
// GetLocalID returns value of LocalID field.
func (f *FileLocationUnavailable) GetLocalID() (value int) {
return f.LocalID
}
// GetSecret returns value of Secret field.
func (f *FileLocationUnavailable) GetSecret() (value int64) {
return f.Secret
}
// Decode implements bin.Decoder.
func (f *FileLocationUnavailable) Decode(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't decode fileLocationUnavailable#7c596b46 to nil")
}
if err := b.ConsumeID(FileLocationUnavailableTypeID); err != nil {
return fmt.Errorf("unable to decode fileLocationUnavailable#7c596b46: %w", err)
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode fileLocationUnavailable#7c596b46: field volume_id: %w", err)
}
f.VolumeID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode fileLocationUnavailable#7c596b46: field local_id: %w", err)
}
f.LocalID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode fileLocationUnavailable#7c596b46: field secret: %w", err)
}
f.Secret = value
}
return nil
}
// construct implements constructor of FileLocationClass.
func (f FileLocationUnavailable) construct() FileLocationClass { return &f }
// Ensuring interfaces in compile-time for FileLocationUnavailable.
var (
_ bin.Encoder = &FileLocationUnavailable{}
_ bin.Decoder = &FileLocationUnavailable{}
_ FileLocationClass = &FileLocationUnavailable{}
)
// FileLocation represents TL type `fileLocation#53d69076`.
//
// See https://core.telegram.org/constructor/fileLocation for reference.
type FileLocation struct {
// DCID field of FileLocation.
DCID int
// VolumeID field of FileLocation.
VolumeID int64
// LocalID field of FileLocation.
LocalID int
// Secret field of FileLocation.
Secret int64
}
// FileLocationTypeID is TL type id of FileLocation.
const FileLocationTypeID = 0x53d69076
func (f *FileLocation) Zero() bool {
if f == nil {
return true
}
if !(f.DCID == 0) {
return false
}
if !(f.VolumeID == 0) {
return false
}
if !(f.LocalID == 0) {
return false
}
if !(f.Secret == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (f *FileLocation) String() string {
if f == nil {
return "FileLocation(nil)"
}
type Alias FileLocation
return fmt.Sprintf("FileLocation%+v", Alias(*f))
}
// FillFrom fills FileLocation from given interface.
func (f *FileLocation) FillFrom(from interface {
GetDCID() (value int)
GetVolumeID() (value int64)
GetLocalID() (value int)
GetSecret() (value int64)
}) {
f.DCID = from.GetDCID()
f.VolumeID = from.GetVolumeID()
f.LocalID = from.GetLocalID()
f.Secret = from.GetSecret()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*FileLocation) TypeID() uint32 {
return FileLocationTypeID
}
// TypeName returns name of type in TL schema.
func (*FileLocation) TypeName() string {
return "fileLocation"
}
// TypeInfo returns info about TL type.
func (f *FileLocation) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "fileLocation",
ID: FileLocationTypeID,
}
if f == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "DCID",
SchemaName: "dc_id",
},
{
Name: "VolumeID",
SchemaName: "volume_id",
},
{
Name: "LocalID",
SchemaName: "local_id",
},
{
Name: "Secret",
SchemaName: "secret",
},
}
return typ
}
// Encode implements bin.Encoder.
func (f *FileLocation) Encode(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't encode fileLocation#53d69076 as nil")
}
b.PutID(FileLocationTypeID)
b.PutInt(f.DCID)
b.PutLong(f.VolumeID)
b.PutInt(f.LocalID)
b.PutLong(f.Secret)
return nil
}
// GetDCID returns value of DCID field.
func (f *FileLocation) GetDCID() (value int) {
return f.DCID
}
// GetVolumeID returns value of VolumeID field.
func (f *FileLocation) GetVolumeID() (value int64) {
return f.VolumeID
}
// GetLocalID returns value of LocalID field.
func (f *FileLocation) GetLocalID() (value int) {
return f.LocalID
}
// GetSecret returns value of Secret field.
func (f *FileLocation) GetSecret() (value int64) {
return f.Secret
}
// Decode implements bin.Decoder.
func (f *FileLocation) Decode(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't decode fileLocation#53d69076 to nil")
}
if err := b.ConsumeID(FileLocationTypeID); err != nil {
return fmt.Errorf("unable to decode fileLocation#53d69076: %w", err)
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode fileLocation#53d69076: field dc_id: %w", err)
}
f.DCID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode fileLocation#53d69076: field volume_id: %w", err)
}
f.VolumeID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode fileLocation#53d69076: field local_id: %w", err)
}
f.LocalID = value
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode fileLocation#53d69076: field secret: %w", err)
}
f.Secret = value
}
return nil
}
// construct implements constructor of FileLocationClass.
func (f FileLocation) construct() FileLocationClass { return &f }
// Ensuring interfaces in compile-time for FileLocation.
var (
_ bin.Encoder = &FileLocation{}
_ bin.Decoder = &FileLocation{}
_ FileLocationClass = &FileLocation{}
)
// FileLocationClass represents FileLocation generic type.
//
// See https://core.telegram.org/type/FileLocation for reference.
//
// Example:
// g, err := e2e.DecodeFileLocation(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *e2e.FileLocationUnavailable: // fileLocationUnavailable#7c596b46
// case *e2e.FileLocation: // fileLocation#53d69076
// default: panic(v)
// }
type FileLocationClass interface {
bin.Encoder
bin.Decoder
construct() FileLocationClass
// 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
// VolumeID field of FileLocationUnavailable.
GetVolumeID() (value int64)
// LocalID field of FileLocationUnavailable.
GetLocalID() (value int)
// Secret field of FileLocationUnavailable.
GetSecret() (value int64)
// AsAvailable tries to map FileLocationClass to FileLocation.
AsAvailable() (*FileLocation, bool)
}
// AsAvailable tries to map FileLocationUnavailable to FileLocation.
func (f *FileLocationUnavailable) AsAvailable() (*FileLocation, bool) {
return nil, false
}
// AsAvailable tries to map FileLocation to FileLocation.
func (f *FileLocation) AsAvailable() (*FileLocation, bool) {
return f, true
}
// DecodeFileLocation implements binary de-serialization for FileLocationClass.
func DecodeFileLocation(buf *bin.Buffer) (FileLocationClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case FileLocationUnavailableTypeID:
// Decoding fileLocationUnavailable#7c596b46.
v := FileLocationUnavailable{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode FileLocationClass: %w", err)
}
return &v, nil
case FileLocationTypeID:
// Decoding fileLocation#53d69076.
v := FileLocation{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode FileLocationClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode FileLocationClass: %w", bin.NewUnexpectedID(id))
}
}
// FileLocation boxes the FileLocationClass providing a helper.
type FileLocationBox struct {
FileLocation FileLocationClass
}
// Decode implements bin.Decoder for FileLocationBox.
func (b *FileLocationBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode FileLocationBox to nil")
}
v, err := DecodeFileLocation(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.FileLocation = v
return nil
}
// Encode implements bin.Encode for FileLocationBox.
func (b *FileLocationBox) Encode(buf *bin.Buffer) error {
if b == nil || b.FileLocation == nil {
return fmt.Errorf("unable to encode FileLocationClass as nil")
}
return b.FileLocation.Encode(buf)
}
// FileLocationClassArray is adapter for slice of FileLocationClass.
type FileLocationClassArray []FileLocationClass
// Sort sorts slice of FileLocationClass.
func (s FileLocationClassArray) Sort(less func(a, b FileLocationClass) bool) FileLocationClassArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of FileLocationClass.
func (s FileLocationClassArray) SortStable(less func(a, b FileLocationClass) bool) FileLocationClassArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of FileLocationClass.
func (s FileLocationClassArray) Retain(keep func(x FileLocationClass) bool) FileLocationClassArray {
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 FileLocationClassArray) First() (v FileLocationClass, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s FileLocationClassArray) Last() (v FileLocationClass, 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 *FileLocationClassArray) PopFirst() (v FileLocationClass, 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 FileLocationClass
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 *FileLocationClassArray) Pop() (v FileLocationClass, 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
}
// AsFileLocationUnavailable returns copy with only FileLocationUnavailable constructors.
func (s FileLocationClassArray) AsFileLocationUnavailable() (to FileLocationUnavailableArray) {
for _, elem := range s {
value, ok := elem.(*FileLocationUnavailable)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AsFileLocation returns copy with only FileLocation constructors.
func (s FileLocationClassArray) AsFileLocation() (to FileLocationArray) {
for _, elem := range s {
value, ok := elem.(*FileLocation)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AppendOnlyAvailable appends only Available constructors to
// given slice.
func (s FileLocationClassArray) AppendOnlyAvailable(to []*FileLocation) []*FileLocation {
for _, elem := range s {
value, ok := elem.AsAvailable()
if !ok {
continue
}
to = append(to, value)
}
return to
}
// AsAvailable returns copy with only Available constructors.
func (s FileLocationClassArray) AsAvailable() (to []*FileLocation) {
return s.AppendOnlyAvailable(to)
}
// FirstAsAvailable returns first element of slice (if exists).
func (s FileLocationClassArray) FirstAsAvailable() (v *FileLocation, ok bool) {
value, ok := s.First()
if !ok {
return
}
return value.AsAvailable()
}
// LastAsAvailable returns last element of slice (if exists).
func (s FileLocationClassArray) LastAsAvailable() (v *FileLocation, ok bool) {
value, ok := s.Last()
if !ok {
return
}
return value.AsAvailable()
}
// PopFirstAsAvailable returns element of slice (if exists).
func (s *FileLocationClassArray) PopFirstAsAvailable() (v *FileLocation, ok bool) {
value, ok := s.PopFirst()
if !ok {
return
}
return value.AsAvailable()
}
// PopAsAvailable returns element of slice (if exists).
func (s *FileLocationClassArray) PopAsAvailable() (v *FileLocation, ok bool) {
value, ok := s.Pop()
if !ok {
return
}
return value.AsAvailable()
}
// FileLocationUnavailableArray is adapter for slice of FileLocationUnavailable.
type FileLocationUnavailableArray []FileLocationUnavailable
// Sort sorts slice of FileLocationUnavailable.
func (s FileLocationUnavailableArray) Sort(less func(a, b FileLocationUnavailable) bool) FileLocationUnavailableArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of FileLocationUnavailable.
func (s FileLocationUnavailableArray) SortStable(less func(a, b FileLocationUnavailable) bool) FileLocationUnavailableArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of FileLocationUnavailable.
func (s FileLocationUnavailableArray) Retain(keep func(x FileLocationUnavailable) bool) FileLocationUnavailableArray {
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 FileLocationUnavailableArray) First() (v FileLocationUnavailable, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s FileLocationUnavailableArray) Last() (v FileLocationUnavailable, 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 *FileLocationUnavailableArray) PopFirst() (v FileLocationUnavailable, 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 FileLocationUnavailable
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 *FileLocationUnavailableArray) Pop() (v FileLocationUnavailable, 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
}
// FileLocationArray is adapter for slice of FileLocation.
type FileLocationArray []FileLocation
// Sort sorts slice of FileLocation.
func (s FileLocationArray) Sort(less func(a, b FileLocation) bool) FileLocationArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of FileLocation.
func (s FileLocationArray) SortStable(less func(a, b FileLocation) bool) FileLocationArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of FileLocation.
func (s FileLocationArray) Retain(keep func(x FileLocation) bool) FileLocationArray {
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 FileLocationArray) First() (v FileLocation, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s FileLocationArray) Last() (v FileLocation, 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 *FileLocationArray) PopFirst() (v FileLocation, 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 FileLocation
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 *FileLocationArray) Pop() (v FileLocation, 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
}