-
Notifications
You must be signed in to change notification settings - Fork 0
/
option.go
101 lines (85 loc) · 2.53 KB
/
option.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
package boltutil
import (
"os"
"time"
"go.etcd.io/bbolt"
)
type innerOption struct {
FileMode os.FileMode
DefaultCoder Coder
Options *bbolt.Options
}
// Option represents the options that can be set when opening a database.
type Option func(options *innerOption)
// WithFileMode return Option with specified FileMode
func WithFileMode(fileMode os.FileMode) Option {
return func(options *innerOption) {
options.FileMode = fileMode
}
}
// WithDefaultCoder return Option with specified DefaultCoder
func WithDefaultCoder(defaultCoder Coder) Option {
return func(options *innerOption) {
options.DefaultCoder = defaultCoder
}
}
// WithTimeout return Option with specified Timeout
func WithTimeout(timeout time.Duration) Option {
return func(options *innerOption) {
options.Options.Timeout = timeout
}
}
// WithNoGrowSync return Option with specified NoGrowSync
func WithNoGrowSync(noGrowSync bool) Option {
return func(options *innerOption) {
options.Options.NoGrowSync = noGrowSync
}
}
// WithNoFreelistSync return Option with specified NoFreelistSync
func WithNoFreelistSync(noFreelistSync bool) Option {
return func(options *innerOption) {
options.Options.NoFreelistSync = noFreelistSync
}
}
// WithFreelistType return Option with specified FreelistType
func WithFreelistType(freelistType bbolt.FreelistType) Option {
return func(options *innerOption) {
options.Options.FreelistType = freelistType
}
}
// WithReadOnly return Option with specified ReadOnly
func WithReadOnly(readOnly bool) Option {
return func(options *innerOption) {
options.Options.ReadOnly = readOnly
}
}
// WithMmapFlags return Option with specified MmapFlags
func WithMmapFlags(mmapFlags int) Option {
return func(options *innerOption) {
options.Options.MmapFlags = mmapFlags
}
}
// WithInitialMmapSize return Option with specified InitialMmapSize
func WithInitialMmapSize(initialMmapSize int) Option {
return func(options *innerOption) {
options.Options.InitialMmapSize = initialMmapSize
}
}
// WithPageSize return Option with specified PageSize
func WithPageSize(pageSize int) Option {
return func(options *innerOption) {
options.Options.PageSize = pageSize
}
}
// WithNoSync return Option with specified NoSync
func WithNoSync(noSync bool) Option {
return func(options *innerOption) {
options.Options.NoSync = noSync
}
}
// WithOpenFile return Option with specified OpenFile,
func WithOpenFile(openFile func(string, int, os.FileMode) (*os.File, error)) Option {
return func(options *innerOption) {
options.Options.OpenFile = openFile
}
}