| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package policy
- import (
- "context"
- "v2ray.com/core"
- "v2ray.com/core/common"
- )
- // Instance is an instance of Policy manager.
- type Instance struct {
- levels map[uint32]core.Policy
- }
- // New creates new Policy manager instance.
- func New(ctx context.Context, config *Config) (*Instance, error) {
- m := &Instance{
- levels: make(map[uint32]core.Policy),
- }
- if len(config.Level) > 0 {
- for lv, p := range config.Level {
- dp := core.DefaultPolicy()
- dp.OverrideWith(p.ToCorePolicy())
- m.levels[lv] = dp
- }
- }
- v := core.FromContext(ctx)
- if v == nil {
- return nil, newError("V is not in context.")
- }
- 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 {
- return p
- }
- return core.DefaultPolicy()
- }
- // Start implements app.Application.Start().
- func (m *Instance) Start() error {
- return nil
- }
- // Close implements app.Application.Close().
- 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))
- }))
- }
|