1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/app/space.go

83 lines
1.5 KiB
Go
Raw Normal View History

2015-12-05 22:55:45 +01:00
package app
2016-05-18 08:12:04 -07:00
import (
"errors"
"github.com/v2ray/v2ray-core/common"
)
var (
2016-06-27 08:53:35 +02:00
ErrMissingApplication = errors.New("App: Failed to found one or more applications.")
2016-05-18 08:12:04 -07:00
)
2016-01-31 17:01:28 +01:00
type ID int
// Context of a function call from proxy to app.
2015-12-10 23:55:39 +01:00
type Context interface {
CallerTag() string
}
2016-05-17 23:05:52 -07:00
type Caller interface {
Tag() string
}
2016-05-18 08:12:04 -07:00
type Application interface {
common.Releasable
}
type ApplicationInitializer func() error
// 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 08:12:04 -07:00
Initialize() error
InitializeApplication(ApplicationInitializer)
2016-01-31 17:01:28 +01:00
HasApp(ID) bool
2016-05-18 08:12:04 -07:00
GetApp(ID) Application
BindApp(ID, Application)
2016-01-31 17:01:28 +01:00
}
type spaceImpl struct {
cache map[ID]Application
appInit []ApplicationInitializer
2016-01-31 17:01:28 +01:00
}
2015-12-11 14:56:10 +00:00
2016-05-17 23:05:52 -07:00
func NewSpace() Space {
return &spaceImpl{
cache: make(map[ID]Application),
appInit: make([]ApplicationInitializer, 0, 32),
2016-05-18 08:12:04 -07:00
}
}
func (this *spaceImpl) InitializeApplication(f ApplicationInitializer) {
this.appInit = append(this.appInit, f)
2016-05-18 08:12:04 -07:00
}
func (this *spaceImpl) Initialize() error {
for _, f := range this.appInit {
err := f()
if err != nil {
return err
}
2016-01-31 17:01:28 +01:00
}
2016-05-18 08:12:04 -07:00
return nil
2016-01-31 17:01:28 +01:00
}
func (this *spaceImpl) HasApp(id ID) bool {
_, found := this.cache[id]
return found
}
2016-05-18 08:12:04 -07:00
func (this *spaceImpl) GetApp(id ID) Application {
2016-01-31 17:01:28 +01:00
obj, found := this.cache[id]
if !found {
return nil
}
return obj
}
2016-05-18 08:12:04 -07:00
func (this *spaceImpl) BindApp(id ID, application Application) {
this.cache[id] = application
2015-12-05 22:55:45 +01:00
}