-
Notifications
You must be signed in to change notification settings - Fork 25
/
data.go
202 lines (165 loc) · 3.66 KB
/
data.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
// Copyright 2019 Gregory Petrosyan <gregory.petrosyan@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
package rapid
import (
"hash/maphash"
"math"
"math/bits"
)
type bitStream interface {
drawBits(n int) uint64
beginGroup(label string, standalone bool) int
endGroup(i int, discard bool)
}
func baseSeed() uint64 {
if flags.seed != 0 {
return flags.seed
}
return new(maphash.Hash).Sum64()
}
type randomBitStream struct {
ctx jsf64ctx
recordedBits
}
func newRandomBitStream(seed uint64, persist bool) *randomBitStream {
s := &randomBitStream{}
s.init(seed)
s.persist = persist
return s
}
func (s *randomBitStream) init(seed uint64) {
s.ctx.init(seed)
}
func (s *randomBitStream) drawBits(n int) uint64 {
assert(n >= 0)
var u uint64
if n <= 64 {
u = s.ctx.rand() & bitmask64(uint(n))
} else {
u = math.MaxUint64
}
s.record(u)
return u
}
type bufBitStream struct {
buf []uint64
recordedBits
}
func newBufBitStream(buf []uint64, persist bool) *bufBitStream {
s := &bufBitStream{
buf: buf,
}
s.persist = persist
return s
}
func (s *bufBitStream) drawBits(n int) uint64 {
assert(n >= 0)
if len(s.buf) == 0 {
panic(invalidData("overrun"))
}
u := s.buf[0] & bitmask64(uint(n))
s.record(u)
s.buf = s.buf[1:]
return u
}
type groupInfo struct {
begin int
end int
label string
standalone bool
discard bool
}
type recordedBits struct {
data []uint64
groups []groupInfo
dataLen int
persist bool
}
func (rec *recordedBits) record(u uint64) {
if rec.persist {
rec.data = append(rec.data, u)
} else {
rec.dataLen++
}
}
func (rec *recordedBits) beginGroup(label string, standalone bool) int {
if !rec.persist {
return rec.dataLen
}
rec.groups = append(rec.groups, groupInfo{
begin: len(rec.data),
end: -1,
label: label,
standalone: standalone,
})
return len(rec.groups) - 1
}
func (rec *recordedBits) endGroup(i int, discard bool) {
assertf((!rec.persist && rec.dataLen > i) || (rec.persist && len(rec.data) > rec.groups[i].begin),
"group did not use any data from bitstream; this is likely a result of Custom generator not calling any of the built-in generators")
if !rec.persist {
return
}
rec.groups[i].end = len(rec.data)
rec.groups[i].discard = discard
}
func (rec *recordedBits) prune() {
assert(rec.persist)
for i := 0; i < len(rec.groups); {
if rec.groups[i].discard {
rec.removeGroup(i) // O(n^2)
} else {
i++
}
}
for _, g := range rec.groups {
assert(g.begin != g.end)
}
}
func (rec *recordedBits) removeGroup(i int) {
g := rec.groups[i]
assert(g.end >= 0)
j := i + 1
for j < len(rec.groups) && rec.groups[j].end <= g.end {
j++
}
rec.data = append(rec.data[:g.begin], rec.data[g.end:]...)
rec.groups = append(rec.groups[:i], rec.groups[j:]...)
n := g.end - g.begin
for j := range rec.groups {
if rec.groups[j].begin >= g.end {
rec.groups[j].begin -= n
}
if rec.groups[j].end >= g.end {
rec.groups[j].end -= n
}
}
}
// "A Small Noncryptographic PRNG" by Bob Jenkins
// See http://www.pcg-random.org/posts/bob-jenkins-small-prng-passes-practrand.html for some recent analysis.
type jsf64ctx struct {
a uint64
b uint64
c uint64
d uint64
}
func (x *jsf64ctx) init(seed uint64) {
x.a = 0xf1ea5eed
x.b = seed
x.c = seed
x.d = seed
for i := 0; i < 20; i++ {
x.rand()
}
}
func (x *jsf64ctx) rand() uint64 {
e := x.a - bits.RotateLeft64(x.b, 7)
x.a = x.b ^ bits.RotateLeft64(x.c, 13)
x.b = x.c + bits.RotateLeft64(x.d, 37)
x.c = x.d + e
x.d = e + x.a
return x.d
}