Bumps [github.com/shamaton/msgpack/v2](https://github.com/shamaton/msgpack) from 2.1.1 to 2.2.0. - [Release notes](https://github.com/shamaton/msgpack/releases) - [Commits](https://github.com/shamaton/msgpack/compare/v2.1.1...v2.2.0) --- updated-dependencies: - dependency-name: github.com/shamaton/msgpack/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
121 lines
2.6 KiB
Go
121 lines
2.6 KiB
Go
package ext
|
|
|
|
import (
|
|
"github.com/shamaton/msgpack/v2/internal/common"
|
|
"io"
|
|
"reflect"
|
|
)
|
|
|
|
type StreamEncoder interface {
|
|
Code() int8
|
|
Type() reflect.Type
|
|
Write(w io.Writer, value reflect.Value, buf *common.Buffer) error
|
|
}
|
|
|
|
type StreamEncoderCommon struct{}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte1Int64(w io.Writer, value int64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte2Int64(w io.Writer, value int64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte4Int64(w io.Writer, value int64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>24),
|
|
byte(value>>16),
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte8Int64(w io.Writer, value int64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>56),
|
|
byte(value>>48),
|
|
byte(value>>40),
|
|
byte(value>>32),
|
|
byte(value>>24),
|
|
byte(value>>16),
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte1Uint64(w io.Writer, value uint64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte2Uint64(w io.Writer, value uint64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte4Uint64(w io.Writer, value uint64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>24),
|
|
byte(value>>16),
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte8Uint64(w io.Writer, value uint64, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>56),
|
|
byte(value>>48),
|
|
byte(value>>40),
|
|
byte(value>>32),
|
|
byte(value>>24),
|
|
byte(value>>16),
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte1Int(w io.Writer, value int, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte2Int(w io.Writer, value int, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte4Int(w io.Writer, value int, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>24),
|
|
byte(value>>16),
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteByte4Uint32(w io.Writer, value uint32, buf *common.Buffer) error {
|
|
return buf.Write(w,
|
|
byte(value>>24),
|
|
byte(value>>16),
|
|
byte(value>>8),
|
|
byte(value),
|
|
)
|
|
}
|
|
|
|
func (c *StreamEncoderCommon) WriteBytes(w io.Writer, bs []byte, buf *common.Buffer) error {
|
|
return buf.Write(w, bs...)
|
|
}
|