2019-06-12 09:46:20 +03:00
|
|
|
package store
|
2019-06-11 19:20:52 +03:00
|
|
|
|
|
|
|
import (
|
2019-12-16 17:38:51 +03:00
|
|
|
"context"
|
2020-03-12 16:41:30 +03:00
|
|
|
"time"
|
2019-06-11 19:20:52 +03:00
|
|
|
)
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// Options contains configuration for the Store
|
2019-12-16 15:13:18 +03:00
|
|
|
type Options struct {
|
2020-03-12 16:41:30 +03:00
|
|
|
// Nodes contains the addresses or other connection information of the backing storage.
|
|
|
|
// For example, an etcd implementation would contain the nodes of the cluster.
|
|
|
|
// A SQL implementation could contain one or more connection strings.
|
2019-12-16 15:13:18 +03:00
|
|
|
Nodes []string
|
2020-03-12 16:41:30 +03:00
|
|
|
// Namespace allows multiple isolated stores to be kept in one backend, if supported.
|
|
|
|
// For example multiple tables in a SQL store.
|
2019-12-16 15:13:18 +03:00
|
|
|
Namespace string
|
2020-03-12 16:41:30 +03:00
|
|
|
// Prefix sets a global prefix on all keys
|
2019-12-16 15:13:18 +03:00
|
|
|
Prefix string
|
2020-03-12 16:41:30 +03:00
|
|
|
// Suffix sets a global suffix on all keys
|
2020-02-03 11:16:02 +03:00
|
|
|
Suffix string
|
2020-03-12 16:41:30 +03:00
|
|
|
// Context should contain all implementation specific options, using context.WithValue.
|
2019-12-16 17:38:51 +03:00
|
|
|
Context context.Context
|
2019-12-16 15:13:18 +03:00
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// Option sets values in Options
|
2019-12-16 17:38:51 +03:00
|
|
|
type Option func(o *Options)
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// Nodes contains the addresses or other connection information of the backing storage.
|
|
|
|
// For example, an etcd implementation would contain the nodes of the cluster.
|
|
|
|
// A SQL implementation could contain one or more connection strings.
|
2019-12-16 17:38:51 +03:00
|
|
|
func Nodes(a ...string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Nodes = a
|
|
|
|
}
|
2019-06-11 19:20:52 +03:00
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// Namespace allows multiple isolated stores to be kept in one backend, if supported.
|
|
|
|
// For example multiple tables in a SQL store.
|
|
|
|
func Namespace(ns string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Namespace = ns
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prefix sets a global prefix on all keys
|
2019-12-16 17:38:51 +03:00
|
|
|
func Prefix(p string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Prefix = p
|
|
|
|
}
|
2019-06-11 19:20:52 +03:00
|
|
|
}
|
2019-11-01 17:13:21 +03:00
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// Suffix sets a global suffix on all keys
|
|
|
|
func Suffix(s string) Option {
|
2019-12-16 17:38:51 +03:00
|
|
|
return func(o *Options) {
|
2020-03-12 16:41:30 +03:00
|
|
|
o.Suffix = s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithContext sets the stores context, for any extra configuration
|
|
|
|
func WithContext(c context.Context) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Context = c
|
2019-12-16 17:38:51 +03:00
|
|
|
}
|
2019-11-01 17:13:21 +03:00
|
|
|
}
|
2020-01-09 01:23:14 +03:00
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// ReadOptions configures an individual Read operation
|
|
|
|
type ReadOptions struct {
|
|
|
|
// Prefix returns all records that are prefixed with key
|
|
|
|
Prefix bool
|
|
|
|
// Suffix returns all records that have the suffix key
|
|
|
|
Suffix bool
|
|
|
|
// Limit limits the number of returned records
|
|
|
|
Limit uint
|
|
|
|
// Offset when combined with Limit supports pagination
|
|
|
|
Offset uint
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadOption sets values in ReadOptions
|
|
|
|
type ReadOption func(r *ReadOptions)
|
|
|
|
|
|
|
|
// ReadPrefix returns all records that are prefixed with key
|
2020-01-09 01:23:14 +03:00
|
|
|
func ReadPrefix() ReadOption {
|
2020-03-12 16:41:30 +03:00
|
|
|
return func(r *ReadOptions) {
|
|
|
|
r.Prefix = true
|
2020-01-09 01:23:14 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-03 11:16:02 +03:00
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// ReadSuffix returns all records that have the suffix key
|
2020-02-03 11:16:02 +03:00
|
|
|
func ReadSuffix() ReadOption {
|
2020-03-12 16:41:30 +03:00
|
|
|
return func(r *ReadOptions) {
|
|
|
|
r.Suffix = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadLimit limits the number of responses to l
|
|
|
|
func ReadLimit(l uint) ReadOption {
|
|
|
|
return func(r *ReadOptions) {
|
|
|
|
r.Limit = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadOffset starts returning responses from o. Use in conjunction with Limit for pagination
|
|
|
|
func ReadOffset(o uint) ReadOption {
|
|
|
|
return func(r *ReadOptions) {
|
|
|
|
r.Offset = o
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteOptions configures an individual Write operation
|
|
|
|
// If Expiry and TTL are set TTL takes precedence
|
|
|
|
type WriteOptions struct {
|
|
|
|
// Expiry is the time the record expires
|
|
|
|
Expiry time.Time
|
|
|
|
// TTL is the time until the record expires
|
|
|
|
TTL time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteOption sets values in WriteOptions
|
|
|
|
type WriteOption func(w *WriteOptions)
|
|
|
|
|
|
|
|
// WriteExpiry is the time the record expires
|
|
|
|
func WriteExpiry(t time.Time) WriteOption {
|
|
|
|
return func(w *WriteOptions) {
|
|
|
|
w.Expiry = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteTTL is the time the record expires
|
|
|
|
func WriteTTL(d time.Duration) WriteOption {
|
|
|
|
return func(w *WriteOptions) {
|
|
|
|
w.TTL = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteOptions configures an individual Delete operation
|
|
|
|
type DeleteOptions struct{}
|
|
|
|
|
|
|
|
// DeleteOption sets values in DeleteOptions
|
|
|
|
type DeleteOption func(d *DeleteOptions)
|
|
|
|
|
|
|
|
// ListOptions configures an individual List operation
|
|
|
|
type ListOptions struct {
|
|
|
|
// Prefix returns all keys that are prefixed with key
|
|
|
|
Prefix string
|
|
|
|
// Suffix returns all keys that end with key
|
|
|
|
Suffix string
|
|
|
|
// Limit limits the number of returned keys
|
|
|
|
Limit uint
|
|
|
|
// Offset when combined with Limit supports pagination
|
|
|
|
Offset uint
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListOption sets values in ListOptions
|
|
|
|
type ListOption func(l *ListOptions)
|
|
|
|
|
|
|
|
// ListPrefix returns all keys that are prefixed with key
|
|
|
|
func ListPrefix(p string) ListOption {
|
|
|
|
return func(l *ListOptions) {
|
|
|
|
l.Prefix = p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListSuffix returns all keys that end with key
|
|
|
|
func ListSuffix(s string) ListOption {
|
|
|
|
return func(l *ListOptions) {
|
|
|
|
l.Suffix = s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListLimit limits the number of returned keys to l
|
|
|
|
func ListLimit(l uint) ListOption {
|
|
|
|
return func(lo *ListOptions) {
|
|
|
|
lo.Limit = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListOffset starts returning responses from o. Use in conjunction with Limit for pagination.
|
|
|
|
func ListOffset(o uint) ListOption {
|
|
|
|
return func(l *ListOptions) {
|
|
|
|
l.Offset = o
|
2020-02-03 11:16:02 +03:00
|
|
|
}
|
|
|
|
}
|