pull/432/head
Darien Raymond 2017-02-13 22:11:36 +01:00
parent 7b707275df
commit 10acab0dfe
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 10 additions and 3 deletions

View File

@ -6,13 +6,15 @@ import (
"reflect" "reflect"
) )
type creator func(ctx context.Context, config interface{}) (interface{}, error) // ConfigCreator is a function to create an object by a config.
type ConfigCreator func(ctx context.Context, config interface{}) (interface{}, error)
var ( var (
typeCreatorRegistry = make(map[reflect.Type]creator) typeCreatorRegistry = make(map[reflect.Type]ConfigCreator)
) )
func RegisterConfig(config interface{}, configCreator creator) error { // RegisterConfig registers a global config creator. The config can be nil but must have a type.
func RegisterConfig(config interface{}, configCreator ConfigCreator) error {
configType := reflect.TypeOf(config) configType := reflect.TypeOf(config)
if _, found := typeCreatorRegistry[configType]; found { if _, found := typeCreatorRegistry[configType]; found {
return errors.New("Common: " + configType.Name() + " is already registered.") return errors.New("Common: " + configType.Name() + " is already registered.")
@ -21,6 +23,7 @@ func RegisterConfig(config interface{}, configCreator creator) error {
return nil return nil
} }
// CreateObject creates an object by its config. The config type must be registered through RegisterConfig().
func CreateObject(ctx context.Context, config interface{}) (interface{}, error) { func CreateObject(ctx context.Context, config interface{}) (interface{}, error) {
configType := reflect.TypeOf(config) configType := reflect.TypeOf(config)
creator, found := typeCreatorRegistry[configType] creator, found := typeCreatorRegistry[configType]

View File

@ -1,4 +1,8 @@
// Package proxy contains all proxies used by V2Ray. // Package proxy contains all proxies used by V2Ray.
//
// To implement an inbound or outbound proxy, one needs to do the following:
// 1. Implement the interface(s) below.
// 2. Register a config creator through common.RegisterConfig.
package proxy package proxy
import ( import (