1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/app/space.go

105 lines
2.1 KiB
Go
Raw Normal View History

2015-12-05 21:55:45 +00:00
package app
2016-05-18 15:12:04 +00:00
import (
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common"
2016-12-04 08:10:47 +00:00
"v2ray.com/core/common/errors"
2016-05-18 15:12:04 +00:00
)
2016-01-31 16:01:28 +00:00
type ID int
// Context of a function call from proxy to app.
2015-12-10 22:55:39 +00:00
type Context interface {
CallerTag() string
}
2016-05-18 06:05:52 +00:00
type Caller interface {
Tag() string
}
2016-05-18 15:12:04 +00:00
type Application interface {
common.Releasable
}
type ApplicationInitializer func() error
2016-10-16 14:04:30 +00:00
type ApplicationFactory interface {
Create(space Space, config interface{}) (Application, error)
AppId() ID
}
var (
2016-10-17 12:35:13 +00:00
applicationFactoryCache = make(map[string]ApplicationFactory)
2016-10-16 14:04:30 +00:00
)
func RegisterApplicationFactory(name string, factory ApplicationFactory) error {
applicationFactoryCache[name] = factory
return nil
}
2016-05-18 15:12:04 +00: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 {
2016-05-18 15:12:04 +00:00
Initialize() error
InitializeApplication(ApplicationInitializer)
2016-01-31 16:01:28 +00:00
HasApp(ID) bool
2016-05-18 15:12:04 +00:00
GetApp(ID) Application
BindApp(ID, Application)
2016-10-16 14:04:30 +00:00
BindFromConfig(name string, config interface{}) error
2016-01-31 16:01:28 +00:00
}
type spaceImpl struct {
cache map[ID]Application
appInit []ApplicationInitializer
2016-01-31 16:01:28 +00:00
}
2015-12-11 14:56:10 +00:00
2016-05-18 06:05:52 +00:00
func NewSpace() Space {
return &spaceImpl{
cache: make(map[ID]Application),
appInit: make([]ApplicationInitializer, 0, 32),
2016-05-18 15:12:04 +00:00
}
}
2016-11-27 20:39:09 +00:00
func (v *spaceImpl) InitializeApplication(f ApplicationInitializer) {
v.appInit = append(v.appInit, f)
2016-05-18 15:12:04 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *spaceImpl) Initialize() error {
for _, f := range v.appInit {
err := f()
if err != nil {
return err
}
2016-01-31 16:01:28 +00:00
}
2016-05-18 15:12:04 +00:00
return nil
2016-01-31 16:01:28 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *spaceImpl) HasApp(id ID) bool {
_, found := v.cache[id]
2016-01-31 16:01:28 +00:00
return found
}
2016-11-27 20:39:09 +00:00
func (v *spaceImpl) GetApp(id ID) Application {
obj, found := v.cache[id]
2016-01-31 16:01:28 +00:00
if !found {
return nil
}
return obj
}
2016-11-27 20:39:09 +00:00
func (v *spaceImpl) BindApp(id ID, application Application) {
v.cache[id] = application
2015-12-05 21:55:45 +00:00
}
2016-10-16 14:04:30 +00:00
2016-11-27 20:39:09 +00:00
func (v *spaceImpl) BindFromConfig(name string, config interface{}) error {
2016-10-16 14:04:30 +00:00
factory, found := applicationFactoryCache[name]
if !found {
2016-12-04 08:10:47 +00:00
return errors.New("Space: app not registered: ", name)
2016-10-16 14:04:30 +00:00
}
2016-11-27 20:39:09 +00:00
app, err := factory.Create(v, config)
2016-10-16 14:04:30 +00:00
if err != nil {
return err
}
2016-11-27 20:39:09 +00:00
v.BindApp(factory.AppId(), app)
2016-10-16 14:04:30 +00:00
return nil
}