-
Notifications
You must be signed in to change notification settings - Fork 0
/
ffsdb.go
220 lines (198 loc) · 4.33 KB
/
ffsdb.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package ffsdb
import (
"bufio"
"encoding/binary"
"errors"
"fmt"
"math"
"os"
)
type Ffsdb struct {
Path string
save32Bit bool
sliceLen int
sliceLenBs int64
fd *os.File
fdAt *os.File
reader *bufio.Reader
writer *bufio.Writer
buffer []byte
isFlushed bool
}
func NewFfsdb(path string, sliceLen int, removeOld, save32bit bool) (*Ffsdb, error) {
if removeOld {
os.Remove(path)
}
floatBit := 8
if save32bit {
floatBit = 4
}
fd, err := os.OpenFile(path, os.O_CREATE|os.O_APPEND|os.O_RDWR, 0644)
if err != nil {
return &Ffsdb{}, nil
}
fdAt, err := os.OpenFile(path, os.O_WRONLY, 0644)
if err != nil {
return &Ffsdb{}, nil
}
fdb := Ffsdb{
Path: path,
save32Bit: save32bit,
sliceLen: sliceLen,
sliceLenBs: int64(sliceLen * floatBit),
fd: fd,
fdAt: fdAt,
reader: bufio.NewReaderSize(fd, sliceLen*floatBit),
writer: bufio.NewWriter(fd),
buffer: make([]byte, sliceLen*floatBit),
isFlushed: true,
}
return &fdb, nil
}
func BytesToFloat64(bytes []byte) float64 {
bits := binary.BigEndian.Uint64(bytes)
float := math.Float64frombits(bits)
return float
}
func Float64ToBytes(float float64) []byte {
bits := math.Float64bits(float)
bytes := make([]byte, 8)
binary.BigEndian.PutUint64(bytes, bits)
return bytes
}
func Float64SliceToBytes(fs []float64, bs []byte) {
bi := 0
for _, f := range fs {
fbs := Float64ToBytes(f)
for i := 0; i < 8; i++ {
bs[bi+i] = fbs[i]
}
bi += 8
}
}
func BytesToFloat64Slice(bs []byte) []float64 {
fs := make([]float64, len(bs)/8)
fbs := make([]byte, 8)
n := 0
for i := 0; i < len(bs); i += 8 {
for j := 0; j < 8; j++ {
fbs[j] = bs[i+j]
}
fs[n] = BytesToFloat64(fbs)
n++
}
return fs
}
func Bytes32ToFloat64(bytes []byte) float64 {
bits := binary.BigEndian.Uint32(bytes)
float := math.Float32frombits(bits)
return float64(float)
}
func Float64ToBytes32(float float64) []byte {
bits := math.Float32bits(float32(float))
bytes := make([]byte, 4)
binary.BigEndian.PutUint32(bytes, bits)
return bytes
}
func Float64SliceToBytes32(fs []float64, bs []byte) {
bi := 0
for _, f := range fs {
fbs := Float64ToBytes32(f)
for i := 0; i < 4; i++ {
bs[bi+i] = fbs[i]
}
bi += 4
}
}
func Bytes32ToFloat64Slice(bs []byte) []float64 {
fs := make([]float64, len(bs)/4)
fbs := make([]byte, 4)
n := 0
for i := 0; i < len(bs); i += 4 {
for j := 0; j < 4; j++ {
fbs[j] = bs[i+j]
}
fs[n] = Bytes32ToFloat64(fbs)
n++
}
return fs
}
func (fdb *Ffsdb) Close() {
fdb.fd.Close()
fdb.fdAt.Close()
}
func (fdb *Ffsdb) Rewind() {
if !fdb.isFlushed {
fdb.Flush()
}
fdb.fd.Seek(0, 0)
}
func (fdb *Ffsdb) Seek(id int64) error {
_, err := fdb.fd.Seek(id*fdb.sliceLenBs, 0)
return err
}
func (fdb *Ffsdb) ReadId(id int64) ([]float64, error) {
if !fdb.isFlushed {
fdb.Flush()
}
err := fdb.Seek(id)
if err != nil {
return []float64{}, err
}
_, err = fdb.reader.Read(fdb.buffer)
if err != nil {
return []float64{}, err
}
if fdb.save32Bit {
return Bytes32ToFloat64Slice(fdb.buffer), nil
}
return BytesToFloat64Slice(fdb.buffer), nil
}
func (fdb *Ffsdb) ReadNext() ([]float64, bool) {
if !fdb.isFlushed {
fdb.Flush()
}
_, err := fdb.reader.Read(fdb.buffer)
if err != nil {
return []float64{}, false
}
if fdb.save32Bit {
return Bytes32ToFloat64Slice(fdb.buffer), true
}
return BytesToFloat64Slice(fdb.buffer), true
}
func (fdb *Ffsdb) Add(vals []float64) error {
if len(vals) != fdb.sliceLen {
return errors.New(fmt.Sprint("vals length was ", len(vals), " expected ", fdb.sliceLen))
}
return fdb.AddUnsafe(vals)
}
func (fdb *Ffsdb) AddUnsafe(vals []float64) error {
fdb.isFlushed = false
if fdb.save32Bit {
Float64SliceToBytes32(vals, fdb.buffer)
} else {
Float64SliceToBytes(vals, fdb.buffer)
}
_, err := fdb.writer.Write(fdb.buffer)
return err
}
func (fdb *Ffsdb) Update(id int64, vals []float64) error {
if len(vals) != fdb.sliceLen {
return errors.New(fmt.Sprint("vals length was ", len(vals), " expected ", fdb.sliceLen))
}
return fdb.UpdateUnsafe(id, vals)
}
func (fdb *Ffsdb) UpdateUnsafe(id int64, vals []float64) error {
if fdb.save32Bit {
Float64SliceToBytes32(vals, fdb.buffer)
} else {
Float64SliceToBytes(vals, fdb.buffer)
}
_, err := fdb.fdAt.WriteAt(fdb.buffer, id*fdb.sliceLenBs)
return err
}
func (fdb *Ffsdb) Flush() {
fdb.writer.Flush()
fdb.isFlushed = true
}