1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-11 18:30:43 +00:00
v2fly/app/policy/manager.go

69 lines
1.4 KiB
Go
Raw Permalink Normal View History

package policy
import (
"context"
"github.com/v2fly/v2ray-core/v5/common"
"github.com/v2fly/v2ray-core/v5/features/policy"
)
// Instance is an instance of Policy manager.
type Instance struct {
2018-02-20 12:53:07 +00:00
levels map[uint32]*Policy
2018-04-11 22:10:14 +00:00
system *SystemPolicy
}
// 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),
2018-04-11 22:10:14 +00:00
system: config.System,
}
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
}
}
return m, nil
}
2018-10-12 21:57:56 +00:00
// Type implements common.HasType.
func (*Instance) Type() interface{} {
return policy.ManagerType()
}
2018-10-11 20:34:31 +00:00
// ForLevel implements policy.Manager.
func (m *Instance) ForLevel(level uint32) policy.Session {
if p, ok := m.levels[level]; ok {
2018-02-20 12:53:07 +00:00
return p.ToCorePolicy()
}
2018-10-11 20:34:31 +00:00
return policy.SessionDefault()
}
2018-10-11 20:34:31 +00:00
// ForSystem implements policy.Manager.
func (m *Instance) ForSystem() policy.System {
2018-04-11 22:10:14 +00:00
if m.system == nil {
2018-10-11 20:34:31 +00:00
return policy.System{}
2018-04-11 22:10:14 +00:00
}
return m.system.ToCorePolicy()
}
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))
}))
}