2016-01-17 10:20:49 -05:00
|
|
|
package router
|
2015-11-14 08:24:56 -05:00
|
|
|
|
2016-01-17 10:20:49 -05:00
|
|
|
import (
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common"
|
2016-01-17 10:20:49 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type ConfigObjectCreator func([]byte) (interface{}, error)
|
2015-11-14 08:24:56 -05:00
|
|
|
|
|
|
|
var (
|
|
|
|
configCache map[string]ConfigObjectCreator
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterRouterConfig(strategy string, creator ConfigObjectCreator) error {
|
|
|
|
// TODO: check strategy
|
|
|
|
configCache[strategy] = creator
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-17 10:20:49 -05:00
|
|
|
func CreateRouterConfig(strategy string, data []byte) (interface{}, error) {
|
2015-11-14 08:24:56 -05:00
|
|
|
creator, found := configCache[strategy]
|
|
|
|
if !found {
|
2016-08-18 02:34:21 -04:00
|
|
|
return nil, common.ErrObjectNotFound
|
2015-11-14 08:24:56 -05:00
|
|
|
}
|
2016-01-17 10:20:49 -05:00
|
|
|
return creator(data)
|
2015-11-14 08:24:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
configCache = make(map[string]ConfigObjectCreator)
|
|
|
|
}
|