clash/rules/common/process.go

52 lines
880 B
Go
Raw Normal View History

package common
import (
"strings"
2023-11-03 13:01:45 +00:00
C "github.com/metacubex/mihomo/constant"
)
type Process struct {
2022-03-17 15:24:07 +00:00
*Base
adapter string
process string
nameOnly bool
2022-03-15 16:43:08 +00:00
}
func (ps *Process) RuleType() C.RuleType {
2022-07-06 05:44:04 +00:00
if ps.nameOnly {
return C.Process
}
return C.ProcessPath
}
func (ps *Process) Match(metadata *C.Metadata) (bool, string) {
if ps.nameOnly {
return strings.EqualFold(metadata.Process, ps.process), ps.adapter
2021-11-17 08:03:47 +00:00
}
return strings.EqualFold(metadata.ProcessPath, ps.process), ps.adapter
}
2021-03-23 17:00:21 +00:00
func (ps *Process) Adapter() string {
return ps.adapter
}
2021-03-23 17:00:21 +00:00
func (ps *Process) Payload() string {
return ps.process
}
func (ps *Process) ShouldFindProcess() bool {
return true
}
2022-03-17 15:24:07 +00:00
func NewProcess(process string, adapter string, nameOnly bool) (*Process, error) {
return &Process{
2022-03-17 15:24:07 +00:00
Base: &Base{},
adapter: adapter,
process: process,
nameOnly: nameOnly,
}, nil
}