clash/rule/logic/and.go

69 lines
1.1 KiB
Go
Raw Normal View History

package logic
2022-03-17 15:24:07 +00:00
import (
2022-04-09 14:25:39 +00:00
"fmt"
2022-03-17 15:24:07 +00:00
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/rule/common"
)
type AND struct {
*common.Base
rules []C.Rule
payload string
adapter string
needIP bool
}
2022-03-15 16:43:08 +00:00
func (A *AND) ShouldFindProcess() bool {
return false
}
func NewAND(payload string, adapter string) (*AND, error) {
and := &AND{Base: &common.Base{}, payload: payload, adapter: adapter}
2022-04-09 14:25:39 +00:00
rules, err := parseRuleByPayload(payload, true)
if err != nil {
return nil, err
}
and.rules = rules
2022-04-09 14:25:39 +00:00
if len(and.rules) == 0 {
return nil, fmt.Errorf("And rule is error, may be format error or not contain least one rule")
}
for _, rule := range rules {
if rule.ShouldResolveIP() {
and.needIP = true
break
}
}
return and, nil
}
func (A *AND) RuleType() C.RuleType {
return C.AND
}
func (A *AND) Match(metadata *C.Metadata) bool {
for _, rule := range A.rules {
if !rule.Match(metadata) {
return false
}
}
return true
}
func (A *AND) Adapter() string {
return A.adapter
}
func (A *AND) Payload() string {
return A.payload
}
func (A *AND) ShouldResolveIP() bool {
return A.needIP
}