1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/v2ray.go

138 lines
3.1 KiB
Go
Raw Normal View History

2016-10-12 10:46:02 -04:00
package core
2015-09-05 11:48:38 -04:00
import (
"context"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
2016-10-17 08:35:13 -04:00
"v2ray.com/core/app/dns"
2017-02-01 15:35:40 -05:00
"v2ray.com/core/app/log"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app/proxyman"
2016-10-17 08:35:13 -04:00
v2net "v2ray.com/core/common/net"
2015-09-05 11:48:38 -04:00
)
2015-12-04 16:53:31 -05:00
// Point shell of V2Ray.
2015-09-12 16:11:54 -04:00
type Point struct {
2016-10-16 10:04:30 -04:00
space app.Space
2015-09-05 11:48:38 -04:00
}
2015-09-12 16:11:54 -04:00
// NewPoint returns a new Point server based on given configuration.
2015-09-07 06:00:46 -04:00
// The server is not started at this point.
2017-02-01 17:05:27 -05:00
func NewPoint(config *Config) (*Point, error) {
var pt = new(Point)
2015-09-12 05:51:42 -04:00
2017-02-01 17:05:27 -05:00
if err := config.Transport.Apply(); err != nil {
2016-10-14 16:21:45 -04:00
return nil, err
2016-06-01 19:49:25 -04:00
}
2016-10-16 10:04:30 -04:00
space := app.NewSpace()
ctx := app.ContextWithSpace(context.Background(), space)
2017-02-01 17:05:27 -05:00
pt.space = space
2016-05-18 02:05:52 -04:00
2017-02-01 17:05:27 -05:00
for _, appSettings := range config.App {
2017-02-01 15:35:40 -05:00
settings, err := appSettings.GetInstance()
if err != nil {
return nil, err
}
application, err := app.CreateAppFromConfig(ctx, settings)
if err != nil {
return nil, err
}
if err := space.AddApplication(application); err != nil {
return nil, err
}
}
logger := log.FromSpace(space)
if logger == nil {
l, err := app.CreateAppFromConfig(ctx, &log.Config{
ErrorLogType: log.LogType_Console,
ErrorLogLevel: log.LogLevel_Warning,
AccessLogType: log.LogType_None,
})
if err != nil {
return nil, err
}
space.AddApplication(l)
}
2017-01-06 09:32:36 -05:00
outboundHandlerManager := proxyman.OutboundHandlerManagerFromSpace(space)
if outboundHandlerManager == nil {
2017-01-13 07:41:40 -05:00
o, err := app.CreateAppFromConfig(ctx, new(proxyman.OutboundConfig))
if err != nil {
2017-01-06 09:32:36 -05:00
return nil, err
}
2017-01-13 07:41:40 -05:00
space.AddApplication(o)
outboundHandlerManager = o.(proxyman.OutboundHandlerManager)
2016-12-16 17:02:11 -05:00
}
inboundHandlerManager := proxyman.InboundHandlerManagerFromSpace(space)
if inboundHandlerManager == nil {
o, err := app.CreateAppFromConfig(ctx, new(proxyman.InboundConfig))
2017-01-13 07:41:40 -05:00
if err != nil {
return nil, err
}
space.AddApplication(o)
inboundHandlerManager = o.(proxyman.InboundHandlerManager)
2017-01-06 09:32:36 -05:00
}
2016-11-10 17:41:28 -05:00
2017-01-06 09:32:36 -05:00
dnsServer := dns.FromSpace(space)
if dnsServer == nil {
2016-12-16 10:20:12 -05:00
dnsConfig := &dns.Config{
NameServers: []*v2net.Endpoint{{
Address: v2net.NewIPOrDomain(v2net.LocalHostDomain),
}},
}
2017-01-13 07:41:40 -05:00
d, err := app.CreateAppFromConfig(ctx, dnsConfig)
if err != nil {
2016-12-16 10:20:12 -05:00
return nil, err
}
2017-01-13 07:41:40 -05:00
space.AddApplication(d)
dnsServer = d.(dns.Server)
2016-10-17 08:35:13 -04:00
}
2017-01-06 09:32:36 -05:00
disp := dispatcher.FromSpace(space)
if disp == nil {
2017-01-13 07:41:40 -05:00
d, err := app.CreateAppFromConfig(ctx, new(dispatcher.Config))
if err != nil {
2017-01-06 09:32:36 -05:00
return nil, err
}
2017-01-13 07:41:40 -05:00
space.AddApplication(d)
2017-01-13 07:53:44 -05:00
disp = d.(dispatcher.Interface)
2016-12-16 09:39:47 -05:00
}
2015-12-05 16:55:45 -05:00
2017-02-01 17:05:27 -05:00
for _, inbound := range config.Inbound {
if err := inboundHandlerManager.AddHandler(ctx, inbound); err != nil {
return nil, err
2015-10-31 19:11:41 -04:00
}
}
2017-02-01 17:05:27 -05:00
for _, outbound := range config.Outbound {
if err := outboundHandlerManager.AddHandler(ctx, outbound); err != nil {
2016-10-15 18:46:08 -04:00
return nil, err
}
2015-11-22 11:41:52 -05:00
}
2017-02-01 17:05:27 -05:00
if err := pt.space.Initialize(); err != nil {
2016-05-18 11:12:04 -04:00
return nil, err
}
2017-02-01 17:05:27 -05:00
return pt, nil
2015-09-05 11:48:38 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *Point) Close() {
2017-02-01 15:35:40 -05:00
v.space.Close()
2016-01-03 18:33:25 -05:00
}
2015-09-12 16:11:54 -04:00
// Start starts the Point server, and return any error during the process.
2015-09-07 06:00:46 -04:00
// In the case of any errors, the state of the server is unpredicatable.
2016-11-27 15:39:09 -05:00
func (v *Point) Start() error {
2017-02-01 15:35:40 -05:00
if err := v.space.Start(); err != nil {
return err
2015-10-31 19:11:41 -04:00
}
2016-10-14 16:21:45 -04:00
log.Warning("V2Ray started.")
2015-10-31 19:11:41 -04:00
return nil
2015-09-06 16:10:42 -04:00
}