2020-09-08 15:58:35 -04:00
|
|
|
package d2datautils
|
2020-01-26 00:39:13 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StreamReader allows you to read data from a byte array in various formats
|
|
|
|
type StreamReader struct {
|
|
|
|
data []byte
|
|
|
|
position uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateStreamReader creates an instance of the stream reader
|
|
|
|
func CreateStreamReader(source []byte) *StreamReader {
|
|
|
|
result := &StreamReader{
|
|
|
|
data: source,
|
|
|
|
position: 0,
|
|
|
|
}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetByte returns a byte from the stream
|
|
|
|
func (v *StreamReader) GetByte() byte {
|
|
|
|
result := v.data[v.position]
|
|
|
|
v.position++
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetInt16 returns a int16 word from the stream
|
|
|
|
func (v *StreamReader) GetInt16() int16 {
|
2020-12-23 04:40:13 -05:00
|
|
|
return int16(v.GetUInt16())
|
|
|
|
}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// GetUInt16 returns a uint16 word from the stream
|
|
|
|
//nolint
|
|
|
|
func (v *StreamReader) GetUInt16() uint16 {
|
|
|
|
b := v.ReadBytes(2)
|
|
|
|
return uint16(b[0]) | uint16(b[1])<<8
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// GetInt32 returns an int32 dword from the stream
|
|
|
|
func (v *StreamReader) GetInt32() int32 {
|
|
|
|
return int32(v.GetUInt32())
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetUInt32 returns a uint32 dword from the stream
|
2020-12-23 04:40:13 -05:00
|
|
|
//nolint
|
2020-01-26 00:39:13 -05:00
|
|
|
func (v *StreamReader) GetUInt32() uint32 {
|
2020-12-23 04:40:13 -05:00
|
|
|
b := v.ReadBytes(4)
|
|
|
|
return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// GetInt64 returns a uint64 qword from the stream
|
|
|
|
func (v *StreamReader) GetInt64() int64 {
|
|
|
|
return int64(v.GetUInt64())
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// GetUInt64 returns a uint64 qword from the stream
|
|
|
|
//nolint
|
|
|
|
func (v *StreamReader) GetUInt64() uint64 {
|
|
|
|
b := v.ReadBytes(8)
|
|
|
|
return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
|
|
|
|
uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
|
|
|
|
}
|
2020-07-18 18:07:38 -04:00
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// GetPosition returns the current stream position
|
|
|
|
func (v *StreamReader) GetPosition() uint64 {
|
|
|
|
return v.position
|
|
|
|
}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// SetPosition sets the stream position with the given position
|
|
|
|
func (v *StreamReader) SetPosition(newPosition uint64) {
|
|
|
|
v.position = newPosition
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
2020-12-23 04:40:13 -05:00
|
|
|
// GetSize returns the total size of the stream in bytes
|
|
|
|
func (v *StreamReader) GetSize() uint64 {
|
|
|
|
return uint64(len(v.data))
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadByte implements io.ByteReader
|
|
|
|
func (v *StreamReader) ReadByte() (byte, error) {
|
|
|
|
return v.GetByte(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadBytes reads multiple bytes
|
2020-06-20 21:07:36 -04:00
|
|
|
func (v *StreamReader) ReadBytes(count int) []byte {
|
|
|
|
result := v.data[v.position : v.position+uint64(count)]
|
|
|
|
v.position += uint64(count)
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-06-20 21:07:36 -04:00
|
|
|
return result
|
2020-01-26 00:39:13 -05:00
|
|
|
}
|
|
|
|
|
2020-07-08 09:16:56 -04:00
|
|
|
// SkipBytes moves the stream position forward by the given amount
|
2020-01-26 00:39:13 -05:00
|
|
|
func (v *StreamReader) SkipBytes(count int) {
|
|
|
|
v.position += uint64(count)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read implements io.Reader
|
|
|
|
func (v *StreamReader) Read(p []byte) (n int, err error) {
|
|
|
|
streamLength := v.GetSize()
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
for i := 0; ; i++ {
|
|
|
|
if v.GetPosition() >= streamLength {
|
|
|
|
return i, io.EOF
|
|
|
|
}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
if i >= len(p) {
|
|
|
|
return i, nil
|
|
|
|
}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
p[i] = v.GetByte()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-08 09:16:56 -04:00
|
|
|
// EOF returns if the stream position is reached to the end of the data, or not
|
|
|
|
func (v *StreamReader) EOF() bool {
|
2020-01-26 00:39:13 -05:00
|
|
|
return v.position >= uint64(len(v.data))
|
|
|
|
}
|