2022-01-22 22:10:45 +08:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2022-03-17 23:24:07 +08:00
|
|
|
"github.com/Dreamacro/clash/rule/common"
|
2022-01-22 22:10:45 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type NOT struct {
|
2022-03-19 22:27:22 +08:00
|
|
|
*common.Base
|
2022-01-22 22:10:45 +08:00
|
|
|
rule C.Rule
|
|
|
|
payload string
|
|
|
|
adapter string
|
|
|
|
}
|
|
|
|
|
2022-03-16 00:43:08 +08:00
|
|
|
func (not *NOT) ShouldFindProcess() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-22 22:10:45 +08:00
|
|
|
func NewNOT(payload string, adapter string) (*NOT, error) {
|
2022-05-29 19:54:11 +08:00
|
|
|
not := &NOT{Base: &common.Base{}, adapter: adapter}
|
2022-04-16 00:21:08 +08:00
|
|
|
rule, err := parseRuleByPayload(payload)
|
2022-01-22 22:10:45 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-05-29 19:54:11 +08:00
|
|
|
if len(rule) != 1 {
|
|
|
|
return nil, fmt.Errorf("not rule must contain one rule")
|
2022-04-16 00:21:08 +08:00
|
|
|
}
|
|
|
|
|
2022-05-29 19:54:11 +08:00
|
|
|
not.rule = rule[0]
|
|
|
|
not.payload = fmt.Sprintf("!(%s)", rule[0].Payload())
|
2022-01-22 22:10:45 +08:00
|
|
|
|
|
|
|
return not, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (not *NOT) RuleType() C.RuleType {
|
|
|
|
return C.NOT
|
|
|
|
}
|
|
|
|
|
|
|
|
func (not *NOT) Match(metadata *C.Metadata) bool {
|
2022-04-16 00:21:08 +08:00
|
|
|
return not.rule == nil || !not.rule.Match(metadata)
|
2022-01-22 22:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (not *NOT) Adapter() string {
|
|
|
|
return not.adapter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (not *NOT) Payload() string {
|
|
|
|
return not.payload
|
|
|
|
}
|
|
|
|
|
|
|
|
func (not *NOT) ShouldResolveIP() bool {
|
2022-04-16 00:21:08 +08:00
|
|
|
return not.rule != nil && not.rule.ShouldResolveIP()
|
2022-01-22 22:10:45 +08:00
|
|
|
}
|