2015-12-05 16:55:45 -05:00
|
|
|
package app
|
|
|
|
|
2017-01-06 09:32:36 -05:00
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
2017-01-13 07:41:40 -05:00
|
|
|
"reflect"
|
2017-01-12 18:56:21 -05:00
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
"v2ray.com/core/common"
|
2017-01-06 09:32:36 -05:00
|
|
|
"v2ray.com/core/common/errors"
|
|
|
|
)
|
2016-01-31 11:01:28 -05:00
|
|
|
|
2016-05-18 11:12:04 -04:00
|
|
|
type Application interface {
|
2017-01-13 07:41:40 -05:00
|
|
|
Interface() interface{}
|
2017-02-01 15:35:40 -05:00
|
|
|
Start() error
|
|
|
|
Close()
|
2016-05-18 11:12:04 -04:00
|
|
|
}
|
|
|
|
|
2017-01-06 09:32:36 -05:00
|
|
|
type InitializationCallback func() error
|
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
func CreateAppFromConfig(ctx context.Context, config interface{}) (Application, error) {
|
|
|
|
application, err := common.CreateObject(ctx, config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2017-01-06 09:32:36 -05:00
|
|
|
}
|
2017-01-13 07:41:40 -05:00
|
|
|
switch a := application.(type) {
|
|
|
|
case Application:
|
|
|
|
return a, nil
|
|
|
|
default:
|
|
|
|
return nil, errors.New("App: Not an application.")
|
2017-01-06 09:32:36 -05:00
|
|
|
}
|
2016-10-16 10:04:30 -04:00
|
|
|
}
|
2016-05-18 11:12:04 -04:00
|
|
|
|
2015-12-11 06:01:20 -05:00
|
|
|
// A Space contains all apps that may be available in a V2Ray runtime.
|
|
|
|
// Caller must check the availability of an app by calling HasXXX before getting its instance.
|
|
|
|
type Space interface {
|
2017-01-13 07:41:40 -05:00
|
|
|
GetApplication(appInterface interface{}) Application
|
|
|
|
AddApplication(application Application) error
|
2016-05-18 11:12:04 -04:00
|
|
|
Initialize() error
|
2017-01-06 09:32:36 -05:00
|
|
|
OnInitialize(InitializationCallback)
|
2017-02-01 15:35:40 -05:00
|
|
|
Start() error
|
|
|
|
Close()
|
2016-01-31 11:01:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type spaceImpl struct {
|
2017-01-06 09:32:36 -05:00
|
|
|
initialized bool
|
2017-01-13 07:41:40 -05:00
|
|
|
cache map[reflect.Type]Application
|
2017-01-06 09:32:36 -05:00
|
|
|
appInit []InitializationCallback
|
2016-01-31 11:01:28 -05:00
|
|
|
}
|
2015-12-11 09:56:10 -05:00
|
|
|
|
2016-05-18 02:05:52 -04:00
|
|
|
func NewSpace() Space {
|
|
|
|
return &spaceImpl{
|
2017-01-13 07:41:40 -05:00
|
|
|
cache: make(map[reflect.Type]Application),
|
2017-01-06 09:32:36 -05:00
|
|
|
appInit: make([]InitializationCallback, 0, 32),
|
2016-05-18 11:12:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-06 09:32:36 -05:00
|
|
|
func (v *spaceImpl) OnInitialize(f InitializationCallback) {
|
|
|
|
if v.initialized {
|
2017-02-01 15:35:40 -05:00
|
|
|
f()
|
2017-01-06 09:32:36 -05:00
|
|
|
} else {
|
|
|
|
v.appInit = append(v.appInit, f)
|
|
|
|
}
|
2016-05-18 11:12:04 -04:00
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *spaceImpl) Initialize() error {
|
|
|
|
for _, f := range v.appInit {
|
2017-01-06 09:32:36 -05:00
|
|
|
if err := f(); err != nil {
|
2016-05-22 13:32:28 -04:00
|
|
|
return err
|
|
|
|
}
|
2016-01-31 11:01:28 -05:00
|
|
|
}
|
2017-01-06 09:34:21 -05:00
|
|
|
v.appInit = nil
|
2017-01-06 09:32:36 -05:00
|
|
|
v.initialized = true
|
2016-05-18 11:12:04 -04:00
|
|
|
return nil
|
2016-01-31 11:01:28 -05:00
|
|
|
}
|
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
func (v *spaceImpl) GetApplication(appInterface interface{}) Application {
|
2017-01-13 08:33:28 -05:00
|
|
|
if v == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2017-01-13 07:41:40 -05:00
|
|
|
appType := reflect.TypeOf(appInterface)
|
|
|
|
return v.cache[appType]
|
2016-01-31 11:01:28 -05:00
|
|
|
}
|
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
func (v *spaceImpl) AddApplication(app Application) error {
|
2017-01-13 08:33:28 -05:00
|
|
|
if v == nil {
|
|
|
|
return errors.New("App: Nil space.")
|
|
|
|
}
|
2017-01-13 07:41:40 -05:00
|
|
|
appType := reflect.TypeOf(app.Interface())
|
|
|
|
v.cache[appType] = app
|
2016-10-16 10:04:30 -04:00
|
|
|
return nil
|
|
|
|
}
|
2017-01-06 09:32:36 -05:00
|
|
|
|
2017-02-01 15:35:40 -05:00
|
|
|
func (s *spaceImpl) Start() error {
|
|
|
|
for _, app := range s.cache {
|
|
|
|
if err := app.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *spaceImpl) Close() {
|
|
|
|
for _, app := range s.cache {
|
|
|
|
app.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-12 18:56:21 -05:00
|
|
|
type contextKey int
|
|
|
|
|
|
|
|
const (
|
|
|
|
spaceKey = contextKey(0)
|
|
|
|
)
|
|
|
|
|
2017-01-13 07:41:40 -05:00
|
|
|
func AddApplicationToSpace(ctx context.Context, appConfig interface{}) error {
|
|
|
|
space := SpaceFromContext(ctx)
|
|
|
|
if space == nil {
|
|
|
|
return errors.New("App: No space in context.")
|
|
|
|
}
|
|
|
|
application, err := CreateAppFromConfig(ctx, appConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return space.AddApplication(application)
|
|
|
|
}
|
|
|
|
|
2017-01-12 18:56:21 -05:00
|
|
|
func SpaceFromContext(ctx context.Context) Space {
|
|
|
|
return ctx.Value(spaceKey).(Space)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ContextWithSpace(ctx context.Context, space Space) context.Context {
|
|
|
|
return context.WithValue(ctx, spaceKey, space)
|
|
|
|
}
|