1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-17 09:56:18 -05:00
v2fly/app/router/router.go

42 lines
867 B
Go
Raw Normal View History

2015-10-28 18:18:07 -04:00
package router
import (
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app"
"v2ray.com/core/common"
"v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net"
2015-10-28 18:18:07 -04:00
)
2016-05-18 02:05:52 -04:00
const (
APP_ID = app.ID(3)
)
2015-10-28 18:18:07 -04:00
type Router interface {
2016-05-18 11:12:04 -04:00
common.Releasable
TakeDetour(v2net.Destination) (string, error)
2015-10-28 18:18:07 -04:00
}
type RouterFactory interface {
2016-05-16 03:25:34 -04:00
Create(rawConfig interface{}, space app.Space) (Router, error)
2015-10-28 18:18:07 -04:00
}
var (
routerCache = make(map[string]RouterFactory)
)
func RegisterRouter(name string, factory RouterFactory) error {
2016-08-18 02:34:21 -04:00
if _, found := routerCache[name]; found {
return common.ErrDuplicatedName
}
2015-10-28 18:18:07 -04:00
routerCache[name] = factory
return nil
}
2015-11-03 17:24:56 -05:00
2016-05-16 03:25:34 -04:00
func CreateRouter(name string, rawConfig interface{}, space app.Space) (Router, error) {
2015-11-03 17:24:56 -05:00
if factory, found := routerCache[name]; found {
2016-05-16 03:25:34 -04:00
return factory.Create(rawConfig, space)
2015-11-03 17:24:56 -05:00
}
2016-08-18 02:34:21 -04:00
log.Error("Router: not found: ", name)
return nil, common.ErrObjectNotFound
2015-11-03 17:24:56 -05:00
}