mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
43 lines
776 B
Go
43 lines
776 B
Go
package rw
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"io"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
)
|
|
|
|
type InputStream interface {
|
|
io.Reader
|
|
io.ByteReader
|
|
}
|
|
|
|
type OutputStream interface {
|
|
io.Writer
|
|
io.ByteWriter
|
|
}
|
|
|
|
func WriteUVariant(writer io.Writer, value uint64) error {
|
|
var b [8]byte
|
|
return common.Error(writer.Write(b[:binary.PutUvarint(b[:], value)]))
|
|
}
|
|
|
|
func WriteVString(writer io.Writer, value string) error {
|
|
err := WriteUVariant(writer, uint64(len(value)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return WriteString(writer, value)
|
|
}
|
|
|
|
func ReadVString(reader InputStream) (string, error) {
|
|
length, err := binary.ReadUvarint(reader)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
value, err := ReadBytes(reader, int(length))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return string(value), nil
|
|
}
|