2021-07-04 20:32:59 +08:00
|
|
|
package provider
|
|
|
|
|
|
|
|
import (
|
2022-05-30 21:55:09 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-07-04 20:32:59 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Vehicle Type
|
|
|
|
const (
|
|
|
|
File VehicleType = iota
|
|
|
|
HTTP
|
|
|
|
Compatible
|
|
|
|
)
|
|
|
|
|
|
|
|
// VehicleType defined
|
|
|
|
type VehicleType int
|
|
|
|
|
|
|
|
func (v VehicleType) String() string {
|
|
|
|
switch v {
|
|
|
|
case File:
|
|
|
|
return "File"
|
|
|
|
case HTTP:
|
|
|
|
return "HTTP"
|
|
|
|
case Compatible:
|
|
|
|
return "Compatible"
|
|
|
|
default:
|
|
|
|
return "Unknown"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Vehicle interface {
|
|
|
|
Read() ([]byte, error)
|
|
|
|
Path() string
|
|
|
|
Type() VehicleType
|
|
|
|
}
|
|
|
|
|
|
|
|
// Provider Type
|
|
|
|
const (
|
|
|
|
Proxy ProviderType = iota
|
|
|
|
Rule
|
|
|
|
)
|
|
|
|
|
|
|
|
// ProviderType defined
|
|
|
|
type ProviderType int
|
|
|
|
|
|
|
|
func (pt ProviderType) String() string {
|
|
|
|
switch pt {
|
|
|
|
case Proxy:
|
|
|
|
return "Proxy"
|
|
|
|
case Rule:
|
|
|
|
return "Rule"
|
|
|
|
default:
|
|
|
|
return "Unknown"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Provider interface
|
|
|
|
type Provider interface {
|
|
|
|
Name() string
|
|
|
|
VehicleType() VehicleType
|
|
|
|
Type() ProviderType
|
|
|
|
Initial() error
|
|
|
|
Update() error
|
|
|
|
}
|
|
|
|
|
|
|
|
// ProxyProvider interface
|
|
|
|
type ProxyProvider interface {
|
|
|
|
Provider
|
2022-05-30 21:55:09 +08:00
|
|
|
Proxies() []C.Proxy
|
2022-06-07 17:19:25 +08:00
|
|
|
Touch()
|
2021-07-04 20:32:59 +08:00
|
|
|
HealthCheck()
|
2022-07-20 08:53:54 +08:00
|
|
|
Version() uint32
|
2021-07-04 20:32:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rule Type
|
|
|
|
const (
|
|
|
|
Domain RuleType = iota
|
|
|
|
IPCIDR
|
|
|
|
Classical
|
|
|
|
)
|
|
|
|
|
|
|
|
// RuleType defined
|
|
|
|
type RuleType int
|
|
|
|
|
|
|
|
func (rt RuleType) String() string {
|
|
|
|
switch rt {
|
|
|
|
case Domain:
|
|
|
|
return "Domain"
|
|
|
|
case IPCIDR:
|
|
|
|
return "IPCIDR"
|
|
|
|
case Classical:
|
|
|
|
return "Classical"
|
|
|
|
default:
|
|
|
|
return "Unknown"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RuleProvider interface
|
|
|
|
type RuleProvider interface {
|
|
|
|
Provider
|
|
|
|
Behavior() RuleType
|
2022-05-30 21:55:09 +08:00
|
|
|
Match(*C.Metadata) bool
|
2021-07-04 20:32:59 +08:00
|
|
|
ShouldResolveIP() bool
|
2022-05-30 21:55:09 +08:00
|
|
|
AsRule(adaptor string) C.Rule
|
2021-07-04 20:32:59 +08:00
|
|
|
}
|