2017-01-12 16:47:10 -05:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"reflect"
|
2021-09-04 19:47:15 -04:00
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common/registry"
|
2017-01-12 16:47:10 -05:00
|
|
|
)
|
|
|
|
|
2017-02-13 16:11:36 -05: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 16:47:10 -05:00
|
|
|
|
2021-05-19 17:28:52 -04:00
|
|
|
var typeCreatorRegistry = make(map[reflect.Type]ConfigCreator)
|
2017-01-12 16:47:10 -05:00
|
|
|
|
2017-02-13 16:11:36 -05: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 16:47:10 -05:00
|
|
|
configType := reflect.TypeOf(config)
|
|
|
|
if _, found := typeCreatorRegistry[configType]; found {
|
2017-04-09 09:04:04 -04:00
|
|
|
return newError(configType.Name() + " is already registered").AtError()
|
2017-01-12 16:47:10 -05:00
|
|
|
}
|
|
|
|
typeCreatorRegistry[configType] = configCreator
|
2021-09-04 19:47:15 -04:00
|
|
|
|
|
|
|
registry.RegisterImplementation(config, nil)
|
2017-01-12 16:47:10 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-02-13 16:11:36 -05:00
|
|
|
// CreateObject creates an object by its config. The config type must be registered through RegisterConfig().
|
2017-01-12 16:47:10 -05:00
|
|
|
func CreateObject(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
configType := reflect.TypeOf(config)
|
|
|
|
creator, found := typeCreatorRegistry[configType]
|
|
|
|
if !found {
|
2017-04-09 09:04:04 -04:00
|
|
|
return nil, newError(configType.String() + " is not registered").AtError()
|
2017-01-12 16:47:10 -05:00
|
|
|
}
|
|
|
|
return creator(ctx, config)
|
|
|
|
}
|