Files
obitools4/pkg/obichunk/options.go
Eric Coissac d88de15cdc Refactoring codes for removing buffer size options. An some other changes...
Former-commit-id: 10b57cc1a27446ade3c444217341e9651e89cdce
2023-03-07 11:12:13 +07:00

160 lines
2.8 KiB
Go

package obichunk
type __options__ struct {
statsOn []string
categories []string
navalue string
cacheOnDisk bool
batchCount int
batchSize int
parallelWorkers int
noSingleton bool
}
type Options struct {
pointer *__options__
}
type WithOption func(Options)
func MakeOptions(setters []WithOption) Options {
o := __options__{
statsOn: make([]string, 0, 100),
categories: make([]string, 0, 100),
navalue: "NA",
cacheOnDisk: false,
batchCount: 100,
batchSize: 5000,
parallelWorkers: 4,
noSingleton: false,
}
opt := Options{&o}
for _, set := range setters {
set(opt)
}
return opt
}
func (opt Options) Categories() []string {
return opt.pointer.categories
}
func (opt Options) PopCategories() string {
if len(opt.pointer.categories) > 0 {
c := opt.pointer.categories[0]
opt.pointer.categories = opt.pointer.categories[1:]
return c
}
return ""
}
func (opt Options) StatsOn() []string {
return opt.pointer.statsOn
}
func (opt Options) NAValue() string {
return opt.pointer.navalue
}
func (opt Options) BatchCount() int {
return opt.pointer.batchCount
}
func (opt Options) BatchSize() int {
return opt.pointer.batchSize
}
func (opt Options) ParallelWorkers() int {
return opt.pointer.parallelWorkers
}
func (opt Options) SortOnDisk() bool {
return opt.pointer.cacheOnDisk
}
func (opt Options) NoSingleton() bool {
return opt.pointer.noSingleton
}
func OptionSortOnDisk() WithOption {
f := WithOption(func(opt Options) {
opt.pointer.cacheOnDisk = true
})
return f
}
func OptionSortOnMemory() WithOption {
f := WithOption(func(opt Options) {
opt.pointer.cacheOnDisk = false
})
return f
}
func OptionSubCategory(keys ...string) WithOption {
f := WithOption(func(opt Options) {
opt.pointer.categories = append(opt.pointer.categories, keys...)
})
return f
}
func OptionNAValue(na string) WithOption {
f := WithOption(func(opt Options) {
opt.pointer.navalue = na
})
return f
}
func OptionStatOn(keys ...string) WithOption {
f := WithOption(func(opt Options) {
opt.pointer.statsOn = append(opt.pointer.categories, keys...)
})
return f
}
func OptionBatchCount(number int) WithOption {
f := WithOption(func(opt Options) {
opt.pointer.batchCount = number
})
return f
}
func OptionsParallelWorkers(nworkers int) WithOption {
f := WithOption(func(opt Options) {
opt.pointer.parallelWorkers = nworkers
})
return f
}
func OptionsBatchSize(size int) WithOption {
f := WithOption(func(opt Options) {
opt.pointer.batchSize = size
})
return f
}
func OptionsNoSingleton() WithOption {
f := WithOption(func(opt Options) {
opt.pointer.noSingleton = true
})
return f
}
func OptionsWithSingleton() WithOption {
f := WithOption(func(opt Options) {
opt.pointer.noSingleton = false
})
return f
}