You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
3 years ago
|
package codec
|
||
|
|
||
|
import (
|
||
|
"encoding/binary"
|
||
|
"io"
|
||
|
|
||
|
"github.com/go-faster/errors"
|
||
|
|
||
|
"github.com/gotd/td/bin"
|
||
|
)
|
||
|
|
||
|
// Codec is MTProto transport protocol encoding abstraction.
|
||
|
type Codec interface {
|
||
|
// WriteHeader sends protocol tag if needed.
|
||
|
WriteHeader(w io.Writer) error
|
||
|
// ReadHeader reads protocol tag if needed.
|
||
|
ReadHeader(r io.Reader) error
|
||
|
// Write encode to writer message from given buffer.
|
||
|
Write(w io.Writer, b *bin.Buffer) error
|
||
|
// Read fills buffer with received message.
|
||
|
Read(r io.Reader, b *bin.Buffer) error
|
||
|
}
|
||
|
|
||
|
// TaggedCodec is codec with protocol tag.
|
||
|
type TaggedCodec interface {
|
||
|
Codec
|
||
|
// ObfuscatedTag returns protocol tag for obfuscation.
|
||
|
ObfuscatedTag() [4]byte
|
||
|
}
|
||
|
|
||
|
// readLen reads 32-bit integer and validates it as message length.
|
||
|
func readLen(r io.Reader, b *bin.Buffer) (int, error) {
|
||
|
b.ResetN(bin.Word)
|
||
|
if _, err := io.ReadFull(r, b.Buf[:bin.Word]); err != nil {
|
||
|
return 0, errors.Wrap(err, "read length")
|
||
|
}
|
||
|
n := int(binary.LittleEndian.Uint32(b.Buf[:bin.Word]))
|
||
|
|
||
|
if n <= 0 || n > maxMessageSize {
|
||
|
return 0, invalidMsgLenErr{n: n}
|
||
|
}
|
||
|
|
||
|
return n, nil
|
||
|
}
|