-
Notifications
You must be signed in to change notification settings - Fork 0
/
random.go
42 lines (36 loc) · 1.26 KB
/
random.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
package swissknife
import (
"math/rand"
"time"
)
const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
const (
letterIdxBits = 6 // 6 bits to represent a letter index
letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits
)
var rndSource = rand.NewSource(time.Now().UnixNano())
// GetRandomString - superfast string generation.
// 139 ns/op 32 B/op 2 allocs/op.
// topic: https://stackoverflow.com/questions/22892120/how-to-generate-a-random-string-of-a-fixed-length-in-go
func GetRandomString(length int) string {
b := make([]byte, length)
// A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
for i, cache, remain := length-1, rndSource.Int63(), letterIdxMax; i >= 0; {
if remain == 0 {
cache, remain = rndSource.Int63(), letterIdxMax
}
if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
b[i] = letterBytes[idx]
i--
}
cache >>= letterIdxBits
remain--
}
return string(b)
}
// GetRandomInt returns non-negative pseudo-random number in the half-open interval [0,max)
func GetRandomInt(max int) int {
rand.Seed(time.Now().UnixNano())
return rand.Intn(max)
}