Files
mautrix-telegram/pkg/gotd/tg/tl_secure_value_vector_gen.go
2025-06-27 20:03:37 -07:00

173 lines
3.8 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{}
)
// SecureValueVector is a box for Vector<SecureValue>
type SecureValueVector struct {
// Elements of Vector<SecureValue>
Elems []SecureValue
}
// SecureValueVectorTypeID is TL type id of SecureValueVector.
const SecureValueVectorTypeID = bin.TypeVector
// Ensuring interfaces in compile-time for SecureValueVector.
var (
_ bin.Encoder = &SecureValueVector{}
_ bin.Decoder = &SecureValueVector{}
_ bin.BareEncoder = &SecureValueVector{}
_ bin.BareDecoder = &SecureValueVector{}
)
func (vec *SecureValueVector) Zero() bool {
if vec == nil {
return true
}
if !(vec.Elems == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (vec *SecureValueVector) String() string {
if vec == nil {
return "SecureValueVector(nil)"
}
type Alias SecureValueVector
return fmt.Sprintf("SecureValueVector%+v", Alias(*vec))
}
// FillFrom fills SecureValueVector from given interface.
func (vec *SecureValueVector) FillFrom(from interface {
GetElems() (value []SecureValue)
}) {
vec.Elems = from.GetElems()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*SecureValueVector) TypeID() uint32 {
return SecureValueVectorTypeID
}
// TypeName returns name of type in TL schema.
func (*SecureValueVector) TypeName() string {
return ""
}
// TypeInfo returns info about TL type.
func (vec *SecureValueVector) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "",
ID: SecureValueVectorTypeID,
}
if vec == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Elems",
SchemaName: "Elems",
},
}
return typ
}
// Encode implements bin.Encoder.
func (vec *SecureValueVector) Encode(b *bin.Buffer) error {
if vec == nil {
return fmt.Errorf("can't encode Vector<SecureValue> as nil")
}
return vec.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (vec *SecureValueVector) EncodeBare(b *bin.Buffer) error {
if vec == nil {
return fmt.Errorf("can't encode Vector<SecureValue> as nil")
}
b.PutVectorHeader(len(vec.Elems))
for idx, v := range vec.Elems {
if err := v.Encode(b); err != nil {
return fmt.Errorf("unable to encode Vector<SecureValue>: field Elems element with index %d: %w", idx, err)
}
}
return nil
}
// Decode implements bin.Decoder.
func (vec *SecureValueVector) Decode(b *bin.Buffer) error {
if vec == nil {
return fmt.Errorf("can't decode Vector<SecureValue> to nil")
}
return vec.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (vec *SecureValueVector) DecodeBare(b *bin.Buffer) error {
if vec == nil {
return fmt.Errorf("can't decode Vector<SecureValue> to nil")
}
{
headerLen, err := b.VectorHeader()
if err != nil {
return fmt.Errorf("unable to decode Vector<SecureValue>: field Elems: %w", err)
}
if headerLen > 0 {
vec.Elems = make([]SecureValue, 0, headerLen%bin.PreallocateLimit)
}
for idx := 0; idx < headerLen; idx++ {
var value SecureValue
if err := value.Decode(b); err != nil {
return fmt.Errorf("unable to decode Vector<SecureValue>: field Elems: %w", err)
}
vec.Elems = append(vec.Elems, value)
}
}
return nil
}
// GetElems returns value of Elems field.
func (vec *SecureValueVector) GetElems() (value []SecureValue) {
if vec == nil {
return
}
return vec.Elems
}