mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
package registry
|
|
|
|
import (
|
|
"v2ray.com/core/app"
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/proxy"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
var (
|
|
inboundFactories = make(map[string]InboundHandlerFactory)
|
|
outboundFactories = make(map[string]OutboundHandlerFactory)
|
|
)
|
|
|
|
func RegisterInboundHandlerCreator(name string, creator InboundHandlerFactory) error {
|
|
if _, found := inboundFactories[name]; found {
|
|
return common.ErrDuplicatedName
|
|
}
|
|
inboundFactories[name] = creator
|
|
return nil
|
|
}
|
|
|
|
func MustRegisterInboundHandlerCreator(name string, creator InboundHandlerFactory) {
|
|
if err := RegisterInboundHandlerCreator(name, creator); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func RegisterOutboundHandlerCreator(name string, creator OutboundHandlerFactory) error {
|
|
if _, found := outboundFactories[name]; found {
|
|
return common.ErrDuplicatedName
|
|
}
|
|
outboundFactories[name] = creator
|
|
return nil
|
|
}
|
|
|
|
func MustRegisterOutboundHandlerCreator(name string, creator OutboundHandlerFactory) {
|
|
if err := RegisterOutboundHandlerCreator(name, creator); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func CreateInboundHandler(name string, space app.Space, rawConfig []byte, meta *proxy.InboundHandlerMeta) (proxy.InboundHandler, error) {
|
|
creator, found := inboundFactories[name]
|
|
if !found {
|
|
return nil, common.ErrObjectNotFound
|
|
}
|
|
if meta.StreamSettings == nil {
|
|
meta.StreamSettings = &internet.StreamSettings{
|
|
Type: creator.StreamCapability(),
|
|
}
|
|
} else {
|
|
meta.StreamSettings.Type &= creator.StreamCapability()
|
|
}
|
|
|
|
if len(rawConfig) > 0 {
|
|
proxyConfig, err := CreateInboundConfig(name, rawConfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return creator.Create(space, proxyConfig, meta)
|
|
}
|
|
return creator.Create(space, nil, meta)
|
|
}
|
|
|
|
func CreateOutboundHandler(name string, space app.Space, rawConfig []byte, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
|
|
creator, found := outboundFactories[name]
|
|
if !found {
|
|
return nil, common.ErrObjectNotFound
|
|
}
|
|
if meta.StreamSettings == nil {
|
|
meta.StreamSettings = &internet.StreamSettings{
|
|
Type: creator.StreamCapability(),
|
|
}
|
|
} else {
|
|
meta.StreamSettings.Type &= creator.StreamCapability()
|
|
}
|
|
|
|
if len(rawConfig) > 0 {
|
|
proxyConfig, err := CreateOutboundConfig(name, rawConfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return creator.Create(space, proxyConfig, meta)
|
|
}
|
|
|
|
return creator.Create(space, nil, meta)
|
|
}
|