7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
181 lines
4.0 KiB
Go
Generated
181 lines
4.0 KiB
Go
Generated
// Code generated by gotdgen, DO NOT EDIT.
|
|
|
|
package tg
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"go.uber.org/multierr"
|
|
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/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{}
|
|
_ = tdjson.Encoder{}
|
|
)
|
|
|
|
// UserClassVector is a box for Vector<User>
|
|
type UserClassVector struct {
|
|
// Elements of Vector<User>
|
|
Elems []UserClass
|
|
}
|
|
|
|
// UserClassVectorTypeID is TL type id of UserClassVector.
|
|
const UserClassVectorTypeID = bin.TypeVector
|
|
|
|
// Ensuring interfaces in compile-time for UserClassVector.
|
|
var (
|
|
_ bin.Encoder = &UserClassVector{}
|
|
_ bin.Decoder = &UserClassVector{}
|
|
_ bin.BareEncoder = &UserClassVector{}
|
|
_ bin.BareDecoder = &UserClassVector{}
|
|
)
|
|
|
|
func (vec *UserClassVector) Zero() bool {
|
|
if vec == nil {
|
|
return true
|
|
}
|
|
if !(vec.Elems == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (vec *UserClassVector) String() string {
|
|
if vec == nil {
|
|
return "UserClassVector(nil)"
|
|
}
|
|
type Alias UserClassVector
|
|
return fmt.Sprintf("UserClassVector%+v", Alias(*vec))
|
|
}
|
|
|
|
// FillFrom fills UserClassVector from given interface.
|
|
func (vec *UserClassVector) FillFrom(from interface {
|
|
GetElems() (value []UserClass)
|
|
}) {
|
|
vec.Elems = from.GetElems()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*UserClassVector) TypeID() uint32 {
|
|
return UserClassVectorTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*UserClassVector) TypeName() string {
|
|
return ""
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (vec *UserClassVector) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "",
|
|
ID: UserClassVectorTypeID,
|
|
}
|
|
if vec == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "Elems",
|
|
SchemaName: "Elems",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (vec *UserClassVector) Encode(b *bin.Buffer) error {
|
|
if vec == nil {
|
|
return fmt.Errorf("can't encode Vector<User> as nil")
|
|
}
|
|
|
|
return vec.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (vec *UserClassVector) EncodeBare(b *bin.Buffer) error {
|
|
if vec == nil {
|
|
return fmt.Errorf("can't encode Vector<User> as nil")
|
|
}
|
|
b.PutVectorHeader(len(vec.Elems))
|
|
for idx, v := range vec.Elems {
|
|
if v == nil {
|
|
return fmt.Errorf("unable to encode Vector<User>: field Elems element with index %d is nil", idx)
|
|
}
|
|
if err := v.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode Vector<User>: field Elems element with index %d: %w", idx, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (vec *UserClassVector) Decode(b *bin.Buffer) error {
|
|
if vec == nil {
|
|
return fmt.Errorf("can't decode Vector<User> to nil")
|
|
}
|
|
|
|
return vec.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (vec *UserClassVector) DecodeBare(b *bin.Buffer) error {
|
|
if vec == nil {
|
|
return fmt.Errorf("can't decode Vector<User> to nil")
|
|
}
|
|
{
|
|
headerLen, err := b.VectorHeader()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode Vector<User>: field Elems: %w", err)
|
|
}
|
|
|
|
if headerLen > 0 {
|
|
vec.Elems = make([]UserClass, 0, headerLen%bin.PreallocateLimit)
|
|
}
|
|
for idx := 0; idx < headerLen; idx++ {
|
|
value, err := DecodeUser(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode Vector<User>: field Elems: %w", err)
|
|
}
|
|
vec.Elems = append(vec.Elems, value)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetElems returns value of Elems field.
|
|
func (vec *UserClassVector) GetElems() (value []UserClass) {
|
|
if vec == nil {
|
|
return
|
|
}
|
|
return vec.Elems
|
|
}
|
|
|
|
// MapElems returns field Elems wrapped in UserClassArray helper.
|
|
func (vec *UserClassVector) MapElems() (value UserClassArray) {
|
|
return UserClassArray(vec.Elems)
|
|
}
|