forked from nutsdb/nutsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
180 lines (158 loc) · 4.08 KB
/
utils.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
// Copyright 2019 The nutsdb Author. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package nutsdb
import (
"bytes"
"encoding/binary"
"errors"
"io"
"os"
"path/filepath"
"strings"
"github.com/xujiajun/utils/strconv2"
)
// Truncate changes the size of the file.
func Truncate(path string, capacity int64, f *os.File) error {
fileInfo, _ := os.Stat(path)
if fileInfo.Size() < capacity {
if err := f.Truncate(capacity); err != nil {
return err
}
}
return nil
}
func ConvertBigEndianBytesToUint64(data []byte) uint64 {
return binary.BigEndian.Uint64(data)
}
func ConvertUint64ToBigEndianBytes(value uint64) []byte {
b := make([]byte, 8)
binary.BigEndian.PutUint64(b, value)
return b
}
func MarshalInts(ints []int) ([]byte, error) {
buffer := bytes.NewBuffer([]byte{})
for _, x := range ints {
if err := binary.Write(buffer, binary.LittleEndian, int64(x)); err != nil {
return nil, err
}
}
return buffer.Bytes(), nil
}
func UnmarshalInts(data []byte) ([]int, error) {
var ints []int
buffer := bytes.NewBuffer(data)
for {
var i int64
err := binary.Read(buffer, binary.LittleEndian, &i)
if errors.Is(err, io.EOF) {
break
} else if err != nil {
return nil, err
}
ints = append(ints, int(i))
}
return ints, nil
}
func MatchForRange(pattern, bucket string, f func(bucket string) bool) (end bool, err error) {
match, err := filepath.Match(pattern, bucket)
if err != nil {
return true, err
}
if match && !f(bucket) {
return true, nil
}
return false, nil
}
// getDataPath returns the data path for the given file ID.
func getDataPath(fID int64, dir string) string {
separator := string(filepath.Separator)
return dir + separator + strconv2.Int64ToStr(fID) + DataSuffix
}
func OneOfUint16Array(value uint16, array []uint16) bool {
for _, v := range array {
if v == value {
return true
}
}
return false
}
func splitIntStringStr(str, separator string) (int, string) {
strList := strings.Split(str, separator)
firstItem, _ := strconv2.StrToInt(strList[0])
secondItem := strList[1]
return firstItem, secondItem
}
func splitStringIntStr(str, separator string) (string, int) {
strList := strings.Split(str, separator)
firstItem := strList[0]
secondItem, _ := strconv2.StrToInt(strList[1])
return firstItem, secondItem
}
func splitIntIntStr(str, separator string) (int, int) {
strList := strings.Split(str, separator)
firstItem, _ := strconv2.StrToInt(strList[0])
secondItem, _ := strconv2.StrToInt(strList[1])
return firstItem, secondItem
}
func encodeListKey(key []byte, seq uint64) []byte {
buf := make([]byte, len(key)+8)
binary.LittleEndian.PutUint64(buf[:8], seq)
copy(buf[8:], key[:])
return buf
}
func decodeListKey(buf []byte) ([]byte, uint64) {
seq := binary.LittleEndian.Uint64(buf[:8])
key := make([]byte, len(buf[8:]))
copy(key[:], buf[8:])
return key, seq
}
func splitStringFloat64Str(str, separator string) (string, float64) {
strList := strings.Split(str, separator)
firstItem := strList[0]
secondItem, _ := strconv2.StrToFloat64(strList[1])
return firstItem, secondItem
}
func getFnv32(value []byte) (uint32, error) {
_, err := fnvHash.Write(value)
if err != nil {
return 0, err
}
hash := fnvHash.Sum32()
fnvHash.Reset()
return hash, nil
}
func generateSeq(seq *HeadTailSeq, isLeft bool) uint64 {
var res uint64
if isLeft {
res = seq.Head
seq.Head--
} else {
res = seq.Tail
seq.Tail++
}
return res
}
func createNewBufferWithSize(size int) *bytes.Buffer {
buf := new(bytes.Buffer)
buf.Grow(int(size))
return buf
}
func UvarintSize(x uint64) int {
i := 0
for x >= 0x80 {
x >>= 7
i++
}
return i + 1
}