1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-23 17:53:05 +02:00
go-micro/util/cmd/options.go

245 lines
5.1 KiB
Go
Raw Normal View History

2016-01-01 01:16:21 +00:00
package cmd
import (
2018-03-03 11:53:52 +00:00
"context"
2021-09-24 09:08:39 +01:00
2021-10-12 12:55:53 +01:00
"go-micro.dev/v4/auth"
"go-micro.dev/v4/broker"
"go-micro.dev/v4/cache"
"go-micro.dev/v4/client"
"go-micro.dev/v4/config"
"go-micro.dev/v4/debug/profile"
"go-micro.dev/v4/debug/trace"
"go-micro.dev/v4/registry"
"go-micro.dev/v4/runtime"
"go-micro.dev/v4/selector"
"go-micro.dev/v4/server"
"go-micro.dev/v4/store"
"go-micro.dev/v4/transport"
2016-01-01 01:16:21 +00:00
)
type Options struct {
2023-04-26 00:16:34 +00:00
// Other options for implementations of the interface
// can be stored in a context
Context context.Context
Auth *auth.Auth
Selector *selector.Selector
Profile *profile.Profile
Registry *registry.Registry
Brokers map[string]func(...broker.Option) broker.Broker
2016-01-02 00:38:57 +00:00
Transport *transport.Transport
Cache *cache.Cache
Config *config.Config
2016-01-02 00:38:57 +00:00
Client *client.Client
Server *server.Server
Runtime *runtime.Runtime
2023-04-26 00:16:34 +00:00
Caches map[string]func(...cache.Option) cache.Cache
2020-01-29 15:45:11 +00:00
Tracer *trace.Tracer
2023-04-26 00:16:34 +00:00
Profiles map[string]func(...profile.Option) profile.Profile
2016-01-02 00:38:57 +00:00
2023-04-26 00:16:34 +00:00
// We need pointers to things so we can swap them out if needed.
Broker *broker.Broker
Auths map[string]func(...auth.Option) auth.Auth
Store *store.Store
Configs map[string]func(...config.Option) (config.Config, error)
Clients map[string]func(...client.Option) client.Client
2016-03-15 22:20:21 +00:00
Registries map[string]func(...registry.Option) registry.Registry
2016-01-01 01:16:21 +00:00
Selectors map[string]func(...selector.Option) selector.Selector
Servers map[string]func(...server.Option) server.Server
2016-03-15 22:25:32 +00:00
Transports map[string]func(...transport.Option) transport.Transport
Runtimes map[string]func(...runtime.Option) runtime.Runtime
2020-01-06 17:44:32 +00:00
Stores map[string]func(...store.Option) store.Store
2020-01-29 15:45:11 +00:00
Tracers map[string]func(...trace.Option) trace.Tracer
2023-04-26 00:16:34 +00:00
Version string
2023-04-26 00:16:34 +00:00
// For the Command Line itself
Name string
Description string
2016-01-01 01:16:21 +00:00
}
2022-09-30 16:27:07 +02:00
// Command line Name.
2016-01-01 01:16:21 +00:00
func Name(n string) Option {
return func(o *Options) {
o.Name = n
}
}
2022-09-30 16:27:07 +02:00
// Command line Description.
2016-01-01 01:16:21 +00:00
func Description(d string) Option {
return func(o *Options) {
o.Description = d
}
}
2022-09-30 16:27:07 +02:00
// Command line Version.
2016-01-01 01:16:21 +00:00
func Version(v string) Option {
return func(o *Options) {
o.Version = v
}
}
2016-01-02 00:38:57 +00:00
func Broker(b *broker.Broker) Option {
return func(o *Options) {
o.Broker = b
}
}
func Cache(c *cache.Cache) Option {
return func(o *Options) {
o.Cache = c
}
}
func Config(c *config.Config) Option {
return func(o *Options) {
o.Config = c
}
}
2016-01-02 00:38:57 +00:00
func Selector(s *selector.Selector) Option {
return func(o *Options) {
o.Selector = s
}
}
func Registry(r *registry.Registry) Option {
return func(o *Options) {
o.Registry = r
}
}
2020-05-11 17:09:28 +01:00
func Runtime(r *runtime.Runtime) Option {
return func(o *Options) {
o.Runtime = r
}
}
2016-01-02 00:38:57 +00:00
func Transport(t *transport.Transport) Option {
return func(o *Options) {
o.Transport = t
}
}
func Client(c *client.Client) Option {
return func(o *Options) {
o.Client = c
}
}
func Server(s *server.Server) Option {
return func(o *Options) {
o.Server = s
}
}
2020-05-01 18:05:09 +01:00
func Store(s *store.Store) Option {
return func(o *Options) {
o.Store = s
}
}
2020-01-29 15:45:11 +00:00
func Tracer(t *trace.Tracer) Option {
return func(o *Options) {
o.Tracer = t
}
}
func Auth(a *auth.Auth) Option {
return func(o *Options) {
o.Auth = a
}
}
func Profile(p *profile.Profile) Option {
return func(o *Options) {
o.Profile = p
}
}
2022-09-30 16:27:07 +02:00
// New broker func.
2016-03-15 22:12:28 +00:00
func NewBroker(name string, b func(...broker.Option) broker.Broker) Option {
2016-01-01 01:16:21 +00:00
return func(o *Options) {
o.Brokers[name] = b
}
}
2022-09-30 16:27:07 +02:00
// New cache func.
func NewCache(name string, c func(...cache.Option) cache.Cache) Option {
return func(o *Options) {
o.Caches[name] = c
}
}
2022-09-30 16:27:07 +02:00
// New client func.
func NewClient(name string, b func(...client.Option) client.Client) Option {
return func(o *Options) {
o.Clients[name] = b
}
}
2022-09-30 16:27:07 +02:00
// New registry func.
2016-03-15 22:20:21 +00:00
func NewRegistry(name string, r func(...registry.Option) registry.Registry) Option {
2016-01-01 01:16:21 +00:00
return func(o *Options) {
o.Registries[name] = r
}
}
2022-09-30 16:27:07 +02:00
// New selector func.
2016-01-02 00:38:57 +00:00
func NewSelector(name string, s func(...selector.Option) selector.Selector) Option {
2016-01-01 01:16:21 +00:00
return func(o *Options) {
o.Selectors[name] = s
}
}
2022-09-30 16:27:07 +02:00
// New server func.
func NewServer(name string, s func(...server.Option) server.Server) Option {
return func(o *Options) {
o.Servers[name] = s
}
}
2022-09-30 16:27:07 +02:00
// New transport func.
2016-03-15 22:25:32 +00:00
func NewTransport(name string, t func(...transport.Option) transport.Transport) Option {
2016-01-01 01:16:21 +00:00
return func(o *Options) {
o.Transports[name] = t
}
}
2022-09-30 16:27:07 +02:00
// New runtime func.
func NewRuntime(name string, r func(...runtime.Option) runtime.Runtime) Option {
return func(o *Options) {
o.Runtimes[name] = r
}
}
2020-01-29 15:45:11 +00:00
2022-09-30 16:27:07 +02:00
// New tracer func.
2020-01-29 15:45:11 +00:00
func NewTracer(name string, t func(...trace.Option) trace.Tracer) Option {
return func(o *Options) {
o.Tracers[name] = t
}
}
2022-09-30 16:27:07 +02:00
// New auth func.
func NewAuth(name string, t func(...auth.Option) auth.Auth) Option {
return func(o *Options) {
o.Auths[name] = t
}
}
2022-09-30 16:27:07 +02:00
// New config func.
2021-09-24 09:08:39 +01:00
func NewConfig(name string, t func(...config.Option) (config.Config, error)) Option {
return func(o *Options) {
o.Configs[name] = t
}
}
2022-09-30 16:27:07 +02:00
// New profile func.
func NewProfile(name string, t func(...profile.Option) profile.Profile) Option {
return func(o *Options) {
o.Profiles[name] = t
}
2021-09-19 17:22:28 +01:00
}