1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-19 19:54:28 -04:00
v2fly/app/router/config_cache.go
2016-06-27 08:53:35 +02:00

32 lines
617 B
Go

package router
import (
"errors"
)
type ConfigObjectCreator func([]byte) (interface{}, error)
var (
configCache map[string]ConfigObjectCreator
ErrRouterNotFound = errors.New("Router not found.")
)
func RegisterRouterConfig(strategy string, creator ConfigObjectCreator) error {
// TODO: check strategy
configCache[strategy] = creator
return nil
}
func CreateRouterConfig(strategy string, data []byte) (interface{}, error) {
creator, found := configCache[strategy]
if !found {
return nil, ErrRouterNotFound
}
return creator(data)
}
func init() {
configCache = make(map[string]ConfigObjectCreator)
}