v2ray-core/app/policy/manager.go

61 lines
1.3 KiB
Go
Raw Normal View History

package policy
import (
"context"
"v2ray.com/core"
"v2ray.com/core/common"
)
// Instance is an instance of Policy manager.
type Instance struct {
2018-02-20 12:53:07 +00:00
levels map[uint32]*Policy
}
// New creates new Policy manager instance.
func New(ctx context.Context, config *Config) (*Instance, error) {
m := &Instance{
2018-02-20 12:53:07 +00:00
levels: make(map[uint32]*Policy),
}
if len(config.Level) > 0 {
for lv, p := range config.Level {
2018-02-20 12:53:07 +00:00
pp := defaultPolicy()
pp.overrideWith(p)
m.levels[lv] = pp
}
}
v := core.FromContext(ctx)
2018-02-17 22:37:09 +00:00
if v != nil {
if err := v.RegisterFeature((*core.PolicyManager)(nil), m); err != nil {
return nil, newError("unable to register PolicyManager in core").Base(err).AtError()
}
}
return m, nil
}
// ForLevel implements core.PolicyManager.
func (m *Instance) ForLevel(level uint32) core.Policy {
if p, ok := m.levels[level]; ok {
2018-02-20 12:53:07 +00:00
return p.ToCorePolicy()
}
return core.DefaultPolicy()
}
2018-04-03 09:11:54 +00:00
// Start implements common.Runnable.Start().
func (m *Instance) Start() error {
return nil
}
2018-04-03 09:11:54 +00:00
// Close implements common.Closable.Close().
2018-02-08 14:39:46 +00:00
func (m *Instance) Close() error {
return nil
}
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return New(ctx, config.(*Config))
}))
}