-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_error_gen.go
181 lines (160 loc) · 3.34 KB
/
tl_error_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
// 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{}
)
// Error represents TL type `error#c4b9f9bb`.
// Error.
//
// See https://core.telegram.org/constructor/error for reference.
type Error struct {
// Error code
Code int
// Message
Text string
}
// ErrorTypeID is TL type id of Error.
const ErrorTypeID = 0xc4b9f9bb
func (e *Error) Zero() bool {
if e == nil {
return true
}
if !(e.Code == 0) {
return false
}
if !(e.Text == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (e *Error) String() string {
if e == nil {
return "Error(nil)"
}
type Alias Error
return fmt.Sprintf("Error%+v", Alias(*e))
}
// FillFrom fills Error from given interface.
func (e *Error) FillFrom(from interface {
GetCode() (value int)
GetText() (value string)
}) {
e.Code = from.GetCode()
e.Text = from.GetText()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*Error) TypeID() uint32 {
return ErrorTypeID
}
// TypeName returns name of type in TL schema.
func (*Error) TypeName() string {
return "error"
}
// TypeInfo returns info about TL type.
func (e *Error) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "error",
ID: ErrorTypeID,
}
if e == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Code",
SchemaName: "code",
},
{
Name: "Text",
SchemaName: "text",
},
}
return typ
}
// Encode implements bin.Encoder.
func (e *Error) Encode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode error#c4b9f9bb as nil")
}
b.PutID(ErrorTypeID)
return e.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (e *Error) EncodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode error#c4b9f9bb as nil")
}
b.PutInt(e.Code)
b.PutString(e.Text)
return nil
}
// GetCode returns value of Code field.
func (e *Error) GetCode() (value int) {
return e.Code
}
// GetText returns value of Text field.
func (e *Error) GetText() (value string) {
return e.Text
}
// Decode implements bin.Decoder.
func (e *Error) Decode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode error#c4b9f9bb to nil")
}
if err := b.ConsumeID(ErrorTypeID); err != nil {
return fmt.Errorf("unable to decode error#c4b9f9bb: %w", err)
}
return e.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (e *Error) DecodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode error#c4b9f9bb to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode error#c4b9f9bb: field code: %w", err)
}
e.Code = value
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode error#c4b9f9bb: field text: %w", err)
}
e.Text = value
}
return nil
}
// Ensuring interfaces in compile-time for Error.
var (
_ bin.Encoder = &Error{}
_ bin.Decoder = &Error{}
_ bin.BareEncoder = &Error{}
_ bin.BareDecoder = &Error{}
)