forked from larrabee/s3sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
60 lines (51 loc) · 1.57 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
package storage
import (
"math/rand"
"strings"
"time"
)
// StrongEtag remove "W/" prefix from ETag.
// In some cases S3 return ETag with "W/" prefix which mean that it not strong ETag.
// For easier compare we remove this prefix.
func StrongEtag(s *string) *string {
if s != nil {
etag := strings.TrimPrefix(*s, "W/")
return &etag
}
return s
}
// ErrHandlingMask is is a bitmask for storing error handling settings.
type ErrHandlingMask uint8
// Has checks if the flag is set in the bitmask.
func (f ErrHandlingMask) Has(flag ErrHandlingMask) bool { return f&flag != 0 }
// Add the flag to the bitmask.
func (f *ErrHandlingMask) Add(flag ErrHandlingMask) { *f |= flag }
const (
HandleErrNotExist ErrHandlingMask = 1 << iota
HandleErrPermission
HandleErrOther = 64
)
const letterBytes = "abcdefghijklmnopqrstuvwxyz0123456789"
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
)
func GetInsecureRandString(n int) string {
sb := strings.Builder{}
sb.Grow(n)
src := rand.NewSource(time.Now().UnixNano())
// A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
if remain == 0 {
cache, remain = src.Int63(), letterIdxMax
}
if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
sb.WriteByte(letterBytes[idx])
i--
}
cache >>= letterIdxBits
remain--
}
return sb.String()
}