mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
2d1c031ce0
1.修复部分空指针问题 2.修改go.mod
54 lines
928 B
Go
54 lines
928 B
Go
package logic
|
|
|
|
import (
|
|
"fmt"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/rule/common"
|
|
)
|
|
|
|
type NOT struct {
|
|
*common.Base
|
|
rule C.Rule
|
|
payload string
|
|
adapter string
|
|
}
|
|
|
|
func (not *NOT) ShouldFindProcess() bool {
|
|
return false
|
|
}
|
|
|
|
func NewNOT(payload string, adapter string) (*NOT, error) {
|
|
not := &NOT{Base: &common.Base{}, payload: payload, adapter: adapter}
|
|
rule, err := parseRuleByPayload(payload)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(rule) < 1 {
|
|
return nil, fmt.Errorf("the parsed rule is empty")
|
|
}
|
|
|
|
not.rule = rule[0]
|
|
return not, nil
|
|
}
|
|
|
|
func (not *NOT) RuleType() C.RuleType {
|
|
return C.NOT
|
|
}
|
|
|
|
func (not *NOT) Match(metadata *C.Metadata) bool {
|
|
return !not.rule.Match(metadata)
|
|
}
|
|
|
|
func (not *NOT) Adapter() string {
|
|
return not.adapter
|
|
}
|
|
|
|
func (not *NOT) Payload() string {
|
|
return not.payload
|
|
}
|
|
|
|
func (not *NOT) ShouldResolveIP() bool {
|
|
return not.rule.ShouldResolveIP()
|
|
}
|