1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-18 19:24:21 -04:00
v2fly/app/policy/manager.go

71 lines
1.5 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 07:53:07 -05:00
levels map[uint32]*Policy
2018-04-11 18:10:14 -04:00
system *SystemPolicy
}
// New creates new Policy manager instance.
func New(ctx context.Context, config *Config) (*Instance, error) {
m := &Instance{
2018-02-20 07:53:07 -05:00
levels: make(map[uint32]*Policy),
2018-04-11 18:10:14 -04:00
system: config.System,
}
if len(config.Level) > 0 {
for lv, p := range config.Level {
2018-02-20 07:53:07 -05:00
pp := defaultPolicy()
pp.overrideWith(p)
m.levels[lv] = pp
}
}
v := core.FromContext(ctx)
2018-02-17 17:37:09 -05: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 07:53:07 -05:00
return p.ToCorePolicy()
}
return core.DefaultPolicy()
}
2018-04-19 15:33:18 -04:00
// ForSystem implements core.PolicyManager.
2018-04-11 18:10:14 -04:00
func (m *Instance) ForSystem() core.SystemPolicy {
if m.system == nil {
return core.SystemPolicy{}
}
return m.system.ToCorePolicy()
}
2018-04-03 05:11:54 -04:00
// Start implements common.Runnable.Start().
func (m *Instance) Start() error {
return nil
}
2018-04-03 05:11:54 -04:00
// Close implements common.Closable.Close().
2018-02-08 09:39:46 -05: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))
}))
}