clash/rules/provider/classical_strategy.go

93 lines
2.1 KiB
Go
Raw Normal View History

2022-03-26 10:34:15 +00:00
package provider
import (
"fmt"
2022-03-26 10:34:15 +00:00
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/log"
2022-06-18 09:53:40 +00:00
"strings"
2022-03-26 10:34:15 +00:00
)
type classicalStrategy struct {
rules []C.Rule
count int
shouldResolveIP bool
shouldFindProcess bool
parse func(tp, payload, target string, params []string) (parsed C.Rule, parseErr error)
2022-03-26 10:34:15 +00:00
}
func (c *classicalStrategy) Match(metadata *C.Metadata) bool {
for _, rule := range c.rules {
if m, _ := rule.Match(metadata); m {
2022-03-26 10:34:15 +00:00
return true
}
}
return false
}
func (c *classicalStrategy) Count() int {
return c.count
}
func (c *classicalStrategy) ShouldResolveIP() bool {
return c.shouldResolveIP
}
func (c *classicalStrategy) ShouldFindProcess() bool {
return c.shouldFindProcess
}
2022-03-26 10:34:15 +00:00
func (c *classicalStrategy) OnUpdate(rules []string) {
var classicalRules []C.Rule
shouldResolveIP := false
2022-03-26 10:34:15 +00:00
for _, rawRule := range rules {
ruleType, rule, params := ruleParse(rawRule)
if ruleType == "PROCESS-NAME" {
c.shouldFindProcess = true
}
r, err := c.parse(ruleType, rule, "", params)
2022-03-26 10:34:15 +00:00
if err != nil {
log.Warnln("parse rule error:[%s]", err.Error())
2022-03-28 13:04:50 +00:00
} else {
if !shouldResolveIP {
shouldResolveIP = r.ShouldResolveIP()
2022-03-28 13:04:50 +00:00
}
2022-03-26 10:34:15 +00:00
if !c.shouldFindProcess {
c.shouldFindProcess = r.ShouldFindProcess()
}
classicalRules = append(classicalRules, r)
2022-03-26 10:34:15 +00:00
}
}
c.rules = classicalRules
c.count = len(classicalRules)
2022-03-26 10:34:15 +00:00
}
2022-06-18 09:53:40 +00:00
func ruleParse(ruleRaw string) (string, string, []string) {
item := strings.Split(ruleRaw, ",")
if len(item) == 1 {
return "", item[0], nil
} else if len(item) == 2 {
return item[0], item[1], nil
} else if len(item) > 2 {
return item[0], item[1], item[2:]
}
return "", "", nil
}
2022-12-04 05:37:14 +00:00
func NewClassicalStrategy(parse func(tp, payload, target string, params []string, subRules map[string][]C.Rule) (parsed C.Rule, parseErr error)) *classicalStrategy {
return &classicalStrategy{rules: []C.Rule{}, parse: func(tp, payload, target string, params []string) (parsed C.Rule, parseErr error) {
switch tp {
case "MATCH", "SUB-RULE":
return nil, fmt.Errorf("unsupported rule type on rule-set")
default:
return parse(tp, payload, target, params, nil)
}
}}
2022-03-26 10:34:15 +00:00
}