v2fly/common/type.go

32 lines
1.1 KiB
Go
Raw Normal View History

2017-01-12 21:47:10 +00:00
package common
import (
"context"
"reflect"
)
2017-02-13 21:11:36 +00:00
// ConfigCreator is a function to create an object by a config.
type ConfigCreator func(ctx context.Context, config interface{}) (interface{}, error)
2017-01-12 21:47:10 +00:00
2021-05-19 21:28:52 +00:00
var typeCreatorRegistry = make(map[reflect.Type]ConfigCreator)
2017-01-12 21:47:10 +00:00
2017-02-13 21:11:36 +00:00
// RegisterConfig registers a global config creator. The config can be nil but must have a type.
func RegisterConfig(config interface{}, configCreator ConfigCreator) error {
2017-01-12 21:47:10 +00:00
configType := reflect.TypeOf(config)
if _, found := typeCreatorRegistry[configType]; found {
2017-04-09 13:04:04 +00:00
return newError(configType.Name() + " is already registered").AtError()
2017-01-12 21:47:10 +00:00
}
typeCreatorRegistry[configType] = configCreator
return nil
}
2017-02-13 21:11:36 +00:00
// CreateObject creates an object by its config. The config type must be registered through RegisterConfig().
2017-01-12 21:47:10 +00:00
func CreateObject(ctx context.Context, config interface{}) (interface{}, error) {
configType := reflect.TypeOf(config)
creator, found := typeCreatorRegistry[configType]
if !found {
2017-04-09 13:04:04 +00:00
return nil, newError(configType.String() + " is not registered").AtError()
2017-01-12 21:47:10 +00:00
}
return creator(ctx, config)
}