update to latest micro
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				autoapprove / autoapprove (pull_request) Failing after 1m27s
				
			
		
			
				
	
				automerge / automerge (pull_request) Failing after 4s
				
			
		
			
				
	
				codeql / analyze (go) (pull_request) Failing after 4m52s
				
			
		
			
				
	
				dependabot-automerge / automerge (pull_request) Has been skipped
				
			
		
			
				
	
				prbuild / test (pull_request) Failing after 1m44s
				
			
		
			
				
	
				prbuild / lint (pull_request) Failing after 2m42s
				
			
		
		
	
	
				
					
				
			
		
			Some checks failed
		
		
	
	autoapprove / autoapprove (pull_request) Failing after 1m27s
				
			automerge / automerge (pull_request) Failing after 4s
				
			codeql / analyze (go) (pull_request) Failing after 4m52s
				
			dependabot-automerge / automerge (pull_request) Has been skipped
				
			prbuild / test (pull_request) Failing after 1m44s
				
			prbuild / lint (pull_request) Failing after 2m42s
				
			Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
		
							
								
								
									
										11
									
								
								flag.go
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								flag.go
									
									
									
									
									
								
							| @@ -11,6 +11,7 @@ import ( | |||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v4/config" | 	"go.unistack.org/micro/v4/config" | ||||||
|  | 	"go.unistack.org/micro/v4/options" | ||||||
| 	rutil "go.unistack.org/micro/v4/util/reflect" | 	rutil "go.unistack.org/micro/v4/util/reflect" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| @@ -39,7 +40,7 @@ func (c *flagConfig) Options() config.Options { | |||||||
| 	return c.opts | 	return c.opts | ||||||
| } | } | ||||||
|  |  | ||||||
| func (c *flagConfig) Init(opts ...config.Option) error { | func (c *flagConfig) Init(opts ...options.Option) error { | ||||||
| 	for _, o := range opts { | 	for _, o := range opts { | ||||||
| 		o(&c.opts) | 		o(&c.opts) | ||||||
| 	} | 	} | ||||||
| @@ -155,7 +156,7 @@ func (c *flagConfig) Init(opts ...config.Option) error { | |||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (c *flagConfig) Load(ctx context.Context, opts ...config.LoadOption) error { | func (c *flagConfig) Load(ctx context.Context, opts ...options.Option) error { | ||||||
| 	options := config.NewLoadOptions(opts...) | 	options := config.NewLoadOptions(opts...) | ||||||
| 	_ = options | 	_ = options | ||||||
|  |  | ||||||
| @@ -173,7 +174,7 @@ func (c *flagConfig) Load(ctx context.Context, opts ...config.LoadOption) error | |||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
| func (c *flagConfig) Save(ctx context.Context, opts ...config.SaveOption) error { | func (c *flagConfig) Save(ctx context.Context, opts ...options.Option) error { | ||||||
| 	if err := config.DefaultBeforeSave(ctx, c); err != nil && !c.opts.AllowFail { | 	if err := config.DefaultBeforeSave(ctx, c); err != nil && !c.opts.AllowFail { | ||||||
| 		return err | 		return err | ||||||
| 	} | 	} | ||||||
| @@ -193,7 +194,7 @@ func (c *flagConfig) Name() string { | |||||||
| 	return c.opts.Name | 	return c.opts.Name | ||||||
| } | } | ||||||
|  |  | ||||||
| func (c *flagConfig) Watch(ctx context.Context, opts ...config.WatchOption) (config.Watcher, error) { | func (c *flagConfig) Watch(ctx context.Context, opts ...options.Option) (config.Watcher, error) { | ||||||
| 	return nil, fmt.Errorf("not implemented") | 	return nil, fmt.Errorf("not implemented") | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -308,7 +309,7 @@ func (c *flagConfig) configure() { | |||||||
| 	c.name = flagSetName | 	c.name = flagSetName | ||||||
| } | } | ||||||
|  |  | ||||||
| func NewConfig(opts ...config.Option) config.Config { | func NewConfig(opts ...options.Option) config.Config { | ||||||
| 	options := config.NewOptions(opts...) | 	options := config.NewOptions(opts...) | ||||||
| 	if len(options.StructTag) == 0 { | 	if len(options.StructTag) == 0 { | ||||||
| 		options.StructTag = DefaultStructTag | 		options.StructTag = DefaultStructTag | ||||||
|   | |||||||
							
								
								
									
										7
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								go.mod
									
									
									
									
									
								
							| @@ -2,6 +2,9 @@ module go.unistack.org/micro-config-flag/v3 | |||||||
|  |  | ||||||
| go 1.18 | go 1.18 | ||||||
|  |  | ||||||
| require go.unistack.org/micro/v4 v4.0.1 | require go.unistack.org/micro/v4 v4.0.5 | ||||||
|  |  | ||||||
| require github.com/imdario/mergo v0.3.14 // indirect | require ( | ||||||
|  | 	github.com/google/uuid v1.3.0 // indirect | ||||||
|  | 	github.com/imdario/mergo v0.3.16 // indirect | ||||||
|  | ) | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								go.sum
									
									
									
									
									
								
							| @@ -1,7 +1,13 @@ | |||||||
| github.com/imdario/mergo v0.3.14 h1:fOqeC1+nCuuk6PKQdg9YmosXX7Y7mHX6R/0ZldI9iHo= | github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= | ||||||
| github.com/imdario/mergo v0.3.14/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= | github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | ||||||
|  | github.com/imdario/mergo v0.3.15 h1:M8XP7IuFNsqUx6VPK2P9OSmsYsI/YFaGil0uD21V3dM= | ||||||
|  | github.com/imdario/mergo v0.3.15/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= | ||||||
|  | github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= | ||||||
|  | github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= | ||||||
| go.unistack.org/micro/v4 v4.0.1 h1:xo1IxbVfgh8i0eY0VeYa3cbb13u5n/Mxnp3FOgWD4Jo= | go.unistack.org/micro/v4 v4.0.1 h1:xo1IxbVfgh8i0eY0VeYa3cbb13u5n/Mxnp3FOgWD4Jo= | ||||||
| go.unistack.org/micro/v4 v4.0.1/go.mod h1:p/J5UcSJjfHsWGT31uKoghQ5rUQZzQJBAFy+Z4+ZVMs= | go.unistack.org/micro/v4 v4.0.1/go.mod h1:p/J5UcSJjfHsWGT31uKoghQ5rUQZzQJBAFy+Z4+ZVMs= | ||||||
|  | go.unistack.org/micro/v4 v4.0.5 h1:uacmV8yHjCOtVfECc4w1tgp6bd3bBWrZa8X4iQLk48g= | ||||||
|  | go.unistack.org/micro/v4 v4.0.5/go.mod h1:bVEYTlPi0EsdgZZt311bIroDg9ict7ky3C87dSCCAGk= | ||||||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
| gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | ||||||
| gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | ||||||
|   | |||||||
							
								
								
									
										34
									
								
								options.go
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								options.go
									
									
									
									
									
								
							| @@ -3,61 +3,61 @@ package flag | |||||||
| import ( | import ( | ||||||
| 	"flag" | 	"flag" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro/v4/config" | 	"go.unistack.org/micro/v4/options" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| type sliceDelimKey struct{} | type sliceDelimKey struct{} | ||||||
|  |  | ||||||
| // SliceDelim set the slice delimeter | // SliceDelim set the slice delimeter | ||||||
| func SliceDelim(s string) config.Option { | func SliceDelim(s string) options.Option { | ||||||
| 	return config.SetOption(sliceDelimKey{}, s) | 	return options.ContextOption(sliceDelimKey{}, s) | ||||||
| } | } | ||||||
|  |  | ||||||
| type mapDelimKey struct{} | type mapDelimKey struct{} | ||||||
|  |  | ||||||
| // MapDelim set the map delimeter | // MapDelim set the map delimeter | ||||||
| func MapDelim(s string) config.Option { | func MapDelim(s string) options.Option { | ||||||
| 	return config.SetOption(mapDelimKey{}, s) | 	return options.ContextOption(mapDelimKey{}, s) | ||||||
| } | } | ||||||
|  |  | ||||||
| type timeFormatKey struct{} | type timeFormatKey struct{} | ||||||
|  |  | ||||||
| // TimeFormat set the time format | // TimeFormat set the time format | ||||||
| func TimeFormat(s string) config.Option { | func TimeFormat(s string) options.Option { | ||||||
| 	return config.SetOption(timeFormatKey{}, s) | 	return options.ContextOption(timeFormatKey{}, s) | ||||||
| } | } | ||||||
|  |  | ||||||
| type flagSetKey struct{} | type flagSetKey struct{} | ||||||
|  |  | ||||||
| // FlagSet set flag set name | // FlagSet set flag set name | ||||||
| func FlagSet(f *flag.FlagSet) config.Option { | func FlagSet(f *flag.FlagSet) options.Option { | ||||||
| 	return config.SetOption(flagSetKey{}, f) | 	return options.ContextOption(flagSetKey{}, f) | ||||||
| } | } | ||||||
|  |  | ||||||
| type flagSetNameKey struct{} | type flagSetNameKey struct{} | ||||||
|  |  | ||||||
| // FlagSetName set flag set name | // FlagSetName set flag set name | ||||||
| func FlagSetName(n string) config.Option { | func FlagSetName(n string) options.Option { | ||||||
| 	return config.SetOption(flagSetNameKey{}, n) | 	return options.ContextOption(flagSetNameKey{}, n) | ||||||
| } | } | ||||||
|  |  | ||||||
| type flagSetErrorHandlingKey struct{} | type flagSetErrorHandlingKey struct{} | ||||||
|  |  | ||||||
| // FlagErrorHandling set flag set error handling | // FlagErrorHandling set flag set error handling | ||||||
| func FlagErrorHandling(eh flag.ErrorHandling) config.Option { | func FlagErrorHandling(eh flag.ErrorHandling) options.Option { | ||||||
| 	return config.SetOption(flagSetErrorHandlingKey{}, eh) | 	return options.ContextOption(flagSetErrorHandlingKey{}, eh) | ||||||
| } | } | ||||||
|  |  | ||||||
| type flagSetUsageKey struct{} | type flagSetUsageKey struct{} | ||||||
|  |  | ||||||
| // FlagUsage set flag set usage func | // FlagUsage set flag set usage func | ||||||
| func FlagUsage(fn func()) config.Option { | func FlagUsage(fn func()) options.Option { | ||||||
| 	return config.SetOption(flagSetUsageKey{}, fn) | 	return options.ContextOption(flagSetUsageKey{}, fn) | ||||||
| } | } | ||||||
|  |  | ||||||
| type flagEnvKey struct{} | type flagEnvKey struct{} | ||||||
|  |  | ||||||
| // FlagEnv set flag set usage func | // FlagEnv set flag set usage func | ||||||
| func FlagEnv(n string) config.Option { | func FlagEnv(n string) options.Option { | ||||||
| 	return config.SetOption(flagEnvKey{}, n) | 	return options.ContextOption(flagEnvKey{}, n) | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user