-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_file_hash_gen.go
204 lines (182 loc) · 3.96 KB
/
tl_file_hash_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
// 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{}
)
// FileHash represents TL type `fileHash#6242c773`.
//
// See https://core.telegram.org/constructor/fileHash for reference.
type FileHash struct {
// Offset field of FileHash.
Offset int
// Limit field of FileHash.
Limit int
// Hash field of FileHash.
Hash []byte
}
// FileHashTypeID is TL type id of FileHash.
const FileHashTypeID = 0x6242c773
func (f *FileHash) Zero() bool {
if f == nil {
return true
}
if !(f.Offset == 0) {
return false
}
if !(f.Limit == 0) {
return false
}
if !(f.Hash == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (f *FileHash) String() string {
if f == nil {
return "FileHash(nil)"
}
type Alias FileHash
return fmt.Sprintf("FileHash%+v", Alias(*f))
}
// FillFrom fills FileHash from given interface.
func (f *FileHash) FillFrom(from interface {
GetOffset() (value int)
GetLimit() (value int)
GetHash() (value []byte)
}) {
f.Offset = from.GetOffset()
f.Limit = from.GetLimit()
f.Hash = from.GetHash()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*FileHash) TypeID() uint32 {
return FileHashTypeID
}
// TypeName returns name of type in TL schema.
func (*FileHash) TypeName() string {
return "fileHash"
}
// TypeInfo returns info about TL type.
func (f *FileHash) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "fileHash",
ID: FileHashTypeID,
}
if f == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Offset",
SchemaName: "offset",
},
{
Name: "Limit",
SchemaName: "limit",
},
{
Name: "Hash",
SchemaName: "hash",
},
}
return typ
}
// Encode implements bin.Encoder.
func (f *FileHash) Encode(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't encode fileHash#6242c773 as nil")
}
b.PutID(FileHashTypeID)
return f.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (f *FileHash) EncodeBare(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't encode fileHash#6242c773 as nil")
}
b.PutInt(f.Offset)
b.PutInt(f.Limit)
b.PutBytes(f.Hash)
return nil
}
// GetOffset returns value of Offset field.
func (f *FileHash) GetOffset() (value int) {
return f.Offset
}
// GetLimit returns value of Limit field.
func (f *FileHash) GetLimit() (value int) {
return f.Limit
}
// GetHash returns value of Hash field.
func (f *FileHash) GetHash() (value []byte) {
return f.Hash
}
// Decode implements bin.Decoder.
func (f *FileHash) Decode(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't decode fileHash#6242c773 to nil")
}
if err := b.ConsumeID(FileHashTypeID); err != nil {
return fmt.Errorf("unable to decode fileHash#6242c773: %w", err)
}
return f.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (f *FileHash) DecodeBare(b *bin.Buffer) error {
if f == nil {
return fmt.Errorf("can't decode fileHash#6242c773 to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode fileHash#6242c773: field offset: %w", err)
}
f.Offset = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode fileHash#6242c773: field limit: %w", err)
}
f.Limit = value
}
{
value, err := b.Bytes()
if err != nil {
return fmt.Errorf("unable to decode fileHash#6242c773: field hash: %w", err)
}
f.Hash = value
}
return nil
}
// Ensuring interfaces in compile-time for FileHash.
var (
_ bin.Encoder = &FileHash{}
_ bin.Decoder = &FileHash{}
_ bin.BareEncoder = &FileHash{}
_ bin.BareDecoder = &FileHash{}
)