mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 03:32:33 +08:00
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
|
package provider
|
||
|
|
||
|
import (
|
||
|
C "github.com/Dreamacro/clash/constant"
|
||
|
"github.com/Dreamacro/clash/log"
|
||
|
)
|
||
|
|
||
|
type classicalStrategy struct {
|
||
|
rules []C.Rule
|
||
|
count int
|
||
|
shouldResolveIP bool
|
||
|
}
|
||
|
|
||
|
func (c *classicalStrategy) Match(metadata *C.Metadata) bool {
|
||
|
for _, rule := range c.rules {
|
||
|
if rule.Match(metadata) {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (c *classicalStrategy) Count() int {
|
||
|
return c.count
|
||
|
}
|
||
|
|
||
|
func (c *classicalStrategy) ShouldResolveIP() bool {
|
||
|
return c.shouldResolveIP
|
||
|
}
|
||
|
|
||
|
func (c *classicalStrategy) OnUpdate(rules []string) {
|
||
|
var classicalRules []C.Rule
|
||
|
shouldResolveIP := false
|
||
|
for _, rawRule := range rules {
|
||
|
ruleType, rule, params := ruleParse(rawRule)
|
||
|
r, err := parseRule(ruleType, rule, "", params)
|
||
|
if err != nil {
|
||
|
log.Warnln("parse rule error:[%s]", err.Error())
|
||
|
}
|
||
|
|
||
|
if !shouldResolveIP {
|
||
|
shouldResolveIP = shouldResolveIP || r.ShouldResolveIP()
|
||
|
}
|
||
|
|
||
|
classicalRules = append(classicalRules, r)
|
||
|
}
|
||
|
|
||
|
c.rules = classicalRules
|
||
|
}
|
||
|
|
||
|
func NewClassicalStrategy() *classicalStrategy {
|
||
|
return &classicalStrategy{rules: []C.Rule{}}
|
||
|
}
|