-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdataview.go
102 lines (90 loc) · 2.1 KB
/
dataview.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package ofbx
import (
"bytes"
"encoding/binary"
"fmt"
"io"
)
// DataView leftover concept that knows how to present different type sof data
type DataView struct {
bytes.Reader
}
// NewDataView creates a new Dataview and the underlying bytes reader on the given string
func NewDataView(s string) *DataView {
return &DataView{
*bytes.NewReader([]byte(s)),
}
}
// BufferDataView creates a DataView from the delivered buffer
func BufferDataView(buff *bytes.Buffer) *DataView {
return &DataView{
*bytes.NewReader(buff.Bytes()),
}
}
func (dv *DataView) String() string {
ln := dv.Len()
data := make([]byte, ln)
_, err := dv.Read(data)
if err != nil && err != io.EOF {
fmt.Println(err)
}
// Todo: maybe don't do this?
dv.Seek(0, io.SeekStart)
return string(data)
}
func (dv *DataView) touint64() uint64 {
var i uint64
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}
func (dv *DataView) toint64() int64 {
var i int64
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}
func (dv *DataView) toInt32() int32 {
var i int32
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}
func (dv *DataView) touint32() uint32 {
var i uint32
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}
func (dv *DataView) toDouble() float64 {
var i float64
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}
func (dv *DataView) toFloat() float32 {
var i float32
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}
func (dv *DataView) toBool() bool {
var i bool
err := binary.Read(dv, binary.LittleEndian, &i)
if err != nil && err != io.EOF {
fmt.Println("binary read failure:", err)
}
return i
}