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"
|
2021-01-26 02:08:22 +03:00
|
|
|
"crypto/tls"
|
2020-03-12 16:41:30 +03:00
|
|
|
"time"
|
2020-08-29 17:44:49 +03:00
|
|
|
|
2020-12-10 22:08:56 +03:00
|
|
|
"github.com/unistack-org/micro/v3/codec"
|
2020-08-29 17:44:49 +03:00
|
|
|
"github.com/unistack-org/micro/v3/logger"
|
2020-12-10 22:08:56 +03:00
|
|
|
"github.com/unistack-org/micro/v3/metadata"
|
2021-01-22 23:32:33 +03:00
|
|
|
"github.com/unistack-org/micro/v3/meter"
|
|
|
|
"github.com/unistack-org/micro/v3/tracer"
|
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 {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Meter used for metrics
|
|
|
|
Meter meter.Meter
|
|
|
|
// Tracer used for tracing
|
|
|
|
Tracer tracer.Tracer
|
|
|
|
// Context holds external options
|
|
|
|
Context context.Context
|
|
|
|
// Codec used to marshal/unmarshal
|
|
|
|
Codec codec.Codec
|
|
|
|
// Logger used for logging
|
|
|
|
Logger logger.Logger
|
|
|
|
// TLSConfig holds tls.TLSConfig options
|
|
|
|
TLSConfig *tls.Config
|
2021-02-14 11:28:50 +03:00
|
|
|
// Name specifies store name
|
2021-01-29 13:17:32 +03:00
|
|
|
Name string
|
2021-07-14 17:11:37 +03:00
|
|
|
// Namespace of the records
|
|
|
|
Namespace string
|
|
|
|
// Addrs contains store address
|
|
|
|
Addrs []string
|
|
|
|
//Wrappers store wrapper that called before actual functions
|
|
|
|
//Wrappers []Wrapper
|
2019-12-16 15:13:18 +03:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// NewOptions creates options struct
|
2020-09-05 02:11:29 +03:00
|
|
|
func NewOptions(opts ...Option) Options {
|
|
|
|
options := Options{
|
2020-09-03 15:11:05 +03:00
|
|
|
Logger: logger.DefaultLogger,
|
|
|
|
Context: context.Background(),
|
2020-12-11 00:21:53 +03:00
|
|
|
Codec: codec.DefaultCodec,
|
2021-01-22 23:32:33 +03:00
|
|
|
Tracer: tracer.DefaultTracer,
|
|
|
|
Meter: meter.DefaultMeter,
|
2020-09-03 15:11:05 +03:00
|
|
|
}
|
2020-09-05 02:11:29 +03:00
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
2020-09-03 15:11:05 +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)
|
|
|
|
|
2021-01-26 02:08:22 +03:00
|
|
|
// TLSConfig specifies a *tls.Config
|
|
|
|
func TLSConfig(t *tls.Config) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.TLSConfig = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:38:37 +03:00
|
|
|
// Context pass context to store
|
2020-10-16 09:38:57 +03:00
|
|
|
func Context(ctx context.Context) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-10 22:08:56 +03:00
|
|
|
// Codec sets the codec
|
|
|
|
func Codec(c codec.Codec) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Codec = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-29 17:44:49 +03:00
|
|
|
// Logger sets the logger
|
|
|
|
func Logger(l logger.Logger) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Logger = l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Meter sets the meter
|
|
|
|
func Meter(m meter.Meter) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Meter = m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// Name the name of the store
|
2021-01-29 14:02:54 +03:00
|
|
|
func Name(n string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Name = n
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// Namespace sets namespace of the store
|
|
|
|
func Namespace(ns string) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Namespace = ns
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 23:32:33 +03:00
|
|
|
// Tracer sets the tracer
|
|
|
|
func Tracer(t tracer.Tracer) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Tracer = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// Addrs contains the addresses or other connection information of the backing storage.
|
2020-03-12 16:41:30 +03:00
|
|
|
// For example, an etcd implementation would contain the nodes of the cluster.
|
|
|
|
// A SQL implementation could contain one or more connection strings.
|
2021-07-14 17:11:37 +03:00
|
|
|
func Addrs(addrs ...string) Option {
|
2019-12-16 17:38:51 +03:00
|
|
|
return func(o *Options) {
|
2021-07-14 17:11:37 +03:00
|
|
|
o.Addrs = addrs
|
2019-12-16 17:38:51 +03:00
|
|
|
}
|
2019-06-11 19:20:52 +03:00
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ReadOptions configures an individual Read operation
|
|
|
|
type ReadOptions struct {
|
|
|
|
// Context holds external options
|
|
|
|
Context context.Context
|
|
|
|
// Namespace holds namespace
|
|
|
|
Namespace string
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
|
2020-12-10 22:37:40 +03:00
|
|
|
// NewReadOptions fills ReadOptions struct with opts slice
|
|
|
|
func NewReadOptions(opts ...ReadOption) ReadOptions {
|
|
|
|
options := ReadOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// ReadOption sets values in ReadOptions
|
|
|
|
type ReadOption func(r *ReadOptions)
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ReadContext pass context.Context to ReadOptions
|
|
|
|
func ReadContext(ctx context.Context) ReadOption {
|
|
|
|
return func(o *ReadOptions) {
|
|
|
|
o.Context = ctx
|
2020-04-09 19:56:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ReadNamespace pass namespace to ReadOptions
|
|
|
|
func ReadNamespace(ns string) ReadOption {
|
|
|
|
return func(o *ReadOptions) {
|
|
|
|
o.Namespace = ns
|
2020-12-10 22:37:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// WriteOptions configures an individual Write operation
|
|
|
|
type WriteOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context holds external options
|
|
|
|
Context context.Context
|
|
|
|
// Metadata contains additional metadata
|
|
|
|
Metadata metadata.Metadata
|
|
|
|
// Namespace holds namespace
|
2021-01-26 02:08:22 +03:00
|
|
|
Namespace string
|
2021-03-06 19:45:13 +03:00
|
|
|
// TTL specifies key TTL
|
|
|
|
TTL time.Duration
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// NewWriteOptions fills WriteOptions struct with opts slice
|
|
|
|
func NewWriteOptions(opts ...WriteOption) WriteOptions {
|
|
|
|
options := WriteOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// WriteOption sets values in WriteOptions
|
|
|
|
type WriteOption func(w *WriteOptions)
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// WriteContext pass context.Context to wirte options
|
|
|
|
func WriteContext(ctx context.Context) WriteOption {
|
|
|
|
return func(o *WriteOptions) {
|
|
|
|
o.Context = ctx
|
2020-04-09 19:56:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// WriteMetadata add metadata.Metadata
|
|
|
|
func WriteMetadata(md metadata.Metadata) WriteOption {
|
|
|
|
return func(o *WriteOptions) {
|
|
|
|
o.Metadata = metadata.Copy(md)
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// WriteTTL is the time the record expires
|
|
|
|
func WriteTTL(d time.Duration) WriteOption {
|
|
|
|
return func(o *WriteOptions) {
|
|
|
|
o.TTL = d
|
2020-12-10 22:08:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// WriteNamespace pass namespace to write options
|
|
|
|
func WriteNamespace(ns string) WriteOption {
|
|
|
|
return func(o *WriteOptions) {
|
|
|
|
o.Namespace = ns
|
2020-12-10 22:37:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// DeleteOptions configures an individual Delete operation
|
2020-04-09 19:56:13 +03:00
|
|
|
type DeleteOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context holds external options
|
|
|
|
Context context.Context
|
|
|
|
// Namespace holds namespace
|
2021-01-26 02:08:22 +03:00
|
|
|
Namespace string
|
2020-04-09 19:56:13 +03:00
|
|
|
}
|
2020-03-12 16:41:30 +03:00
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// NewDeleteOptions fills DeleteOptions struct with opts slice
|
|
|
|
func NewDeleteOptions(opts ...DeleteOption) DeleteOptions {
|
|
|
|
options := DeleteOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// DeleteOption sets values in DeleteOptions
|
|
|
|
type DeleteOption func(d *DeleteOptions)
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// DeleteContext pass context.Context to delete options
|
|
|
|
func DeleteContext(ctx context.Context) DeleteOption {
|
|
|
|
return func(o *DeleteOptions) {
|
|
|
|
o.Context = ctx
|
2020-04-09 19:56:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// DeleteNamespace pass namespace to delete options
|
|
|
|
func DeleteNamespace(ns string) DeleteOption {
|
|
|
|
return func(o *DeleteOptions) {
|
|
|
|
o.Namespace = ns
|
2020-12-10 22:37:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// ListOptions configures an individual List operation
|
|
|
|
type ListOptions struct {
|
2021-01-26 02:08:22 +03:00
|
|
|
Context context.Context
|
2021-03-06 19:45:13 +03:00
|
|
|
Prefix string
|
|
|
|
Suffix string
|
|
|
|
Namespace string
|
|
|
|
Limit uint
|
|
|
|
Offset uint
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// NewListOptions fills ListOptions struct with opts slice
|
|
|
|
func NewListOptions(opts ...ListOption) ListOptions {
|
|
|
|
options := ListOptions{}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// ListOption sets values in ListOptions
|
|
|
|
type ListOption func(l *ListOptions)
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ListContext pass context.Context to list options
|
|
|
|
func ListContext(ctx context.Context) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Context = ctx
|
2020-04-09 19:56:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
// ListPrefix returns all keys that are prefixed with key
|
2021-07-14 17:11:37 +03:00
|
|
|
func ListPrefix(s string) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Prefix = s
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListSuffix returns all keys that end with key
|
|
|
|
func ListSuffix(s string) ListOption {
|
2021-07-14 17:11:37 +03:00
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Suffix = s
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ListLimit limits the number of returned keys
|
|
|
|
func ListLimit(n uint) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Limit = n
|
2020-03-12 16:41:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ListOffset use with Limit for pagination
|
|
|
|
func ListOffset(n uint) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Offset = n
|
2020-02-03 11:16:02 +03:00
|
|
|
}
|
|
|
|
}
|
2021-01-26 02:08:22 +03:00
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ListNamespace pass namespace to list options
|
|
|
|
func ListNamespace(ns string) ListOption {
|
|
|
|
return func(o *ListOptions) {
|
|
|
|
o.Namespace = ns
|
|
|
|
}
|
|
|
|
}
|
2021-01-26 02:08:22 +03:00
|
|
|
|
2021-02-14 11:28:50 +03:00
|
|
|
// ExistsOptions holds options for Exists method
|
2021-01-26 02:08:22 +03:00
|
|
|
type ExistsOptions struct {
|
2021-03-06 19:45:13 +03:00
|
|
|
// Context holds external options
|
|
|
|
Context context.Context
|
|
|
|
// Namespace contains namespace
|
2021-01-26 02:08:22 +03:00
|
|
|
Namespace string
|
|
|
|
}
|
|
|
|
|
2021-07-14 17:11:37 +03:00
|
|
|
// ExistsOption specifies Exists call options
|
|
|
|
type ExistsOption func(*ExistsOptions)
|
|
|
|
|
2021-02-14 11:28:50 +03:00
|
|
|
// NewExistsOptions helper for Exists method
|
2021-01-26 02:08:22 +03:00
|
|
|
func NewExistsOptions(opts ...ExistsOption) ExistsOptions {
|
|
|
|
options := ExistsOptions{
|
|
|
|
Context: context.Background(),
|
|
|
|
}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
2021-07-14 17:11:37 +03:00
|
|
|
|
|
|
|
// ExistsContext pass context.Context to exist options
|
|
|
|
func ExistsContext(ctx context.Context) ExistsOption {
|
|
|
|
return func(o *ExistsOptions) {
|
|
|
|
o.Context = ctx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistsNamespace pass namespace to exist options
|
|
|
|
func ExistsNamespace(ns string) ExistsOption {
|
|
|
|
return func(o *ExistsOptions) {
|
|
|
|
o.Namespace = ns
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WrapStore adds a store Wrapper to a list of options passed into the store
|
|
|
|
//func WrapStore(w Wrapper) Option {
|
|
|
|
// return func(o *Options) {
|
|
|
|
// o.Wrappers = append(o.Wrappers, w)
|
|
|
|
// }
|
|
|
|
//}
|