2018-06-16 21:34:13 +08:00
|
|
|
package adapters
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
)
|
|
|
|
|
|
|
|
type URLTest struct {
|
2018-07-18 21:50:16 +08:00
|
|
|
name string
|
|
|
|
proxies []C.Proxy
|
|
|
|
url *url.URL
|
|
|
|
rawURL string
|
|
|
|
addr *C.Addr
|
|
|
|
fast C.Proxy
|
|
|
|
delay time.Duration
|
|
|
|
done chan struct{}
|
2018-06-16 21:34:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (u *URLTest) Name() string {
|
|
|
|
return u.name
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:28:38 +08:00
|
|
|
func (u *URLTest) Type() C.AdapterType {
|
|
|
|
return C.URLTest
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *URLTest) Now() string {
|
|
|
|
return u.fast.Name()
|
|
|
|
}
|
|
|
|
|
2018-06-16 21:34:13 +08:00
|
|
|
func (u *URLTest) Generator(addr *C.Addr) (adapter C.ProxyAdapter, err error) {
|
|
|
|
return u.fast.Generator(addr)
|
|
|
|
}
|
|
|
|
|
2018-06-19 20:31:36 +08:00
|
|
|
func (u *URLTest) Close() {
|
|
|
|
u.done <- struct{}{}
|
|
|
|
}
|
|
|
|
|
2018-06-16 21:34:13 +08:00
|
|
|
func (u *URLTest) loop() {
|
2018-06-19 20:31:36 +08:00
|
|
|
tick := time.NewTicker(u.delay)
|
2018-06-16 21:34:13 +08:00
|
|
|
go u.speedTest()
|
2018-06-19 20:31:36 +08:00
|
|
|
Loop:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-tick.C:
|
|
|
|
go u.speedTest()
|
|
|
|
case <-u.done:
|
|
|
|
break Loop
|
|
|
|
}
|
2018-06-16 21:34:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *URLTest) speedTest() {
|
|
|
|
wg := sync.WaitGroup{}
|
2018-07-18 21:50:16 +08:00
|
|
|
wg.Add(len(u.proxies))
|
2018-06-16 21:34:13 +08:00
|
|
|
c := make(chan interface{})
|
|
|
|
fast := selectFast(c)
|
|
|
|
timer := time.NewTimer(u.delay)
|
|
|
|
|
2018-07-18 21:50:16 +08:00
|
|
|
for _, p := range u.proxies {
|
2018-06-16 21:34:13 +08:00
|
|
|
go func(p C.Proxy) {
|
|
|
|
err := getUrl(p, u.addr, u.rawURL)
|
|
|
|
if err == nil {
|
|
|
|
c <- p
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
wg.Wait()
|
|
|
|
close(c)
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-timer.C:
|
|
|
|
// Wait for fast to return or close.
|
|
|
|
<-fast
|
|
|
|
case p, open := <-fast:
|
|
|
|
if open {
|
|
|
|
u.fast = p.(C.Proxy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getUrl(proxy C.Proxy, addr *C.Addr, rawURL string) (err error) {
|
|
|
|
instance, err := proxy.Generator(addr)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer instance.Close()
|
|
|
|
transport := &http.Transport{
|
|
|
|
Dial: func(string, string) (net.Conn, error) {
|
|
|
|
return instance.Conn(), nil
|
|
|
|
},
|
|
|
|
// from http.DefaultTransport
|
|
|
|
MaxIdleConns: 100,
|
|
|
|
IdleConnTimeout: 90 * time.Second,
|
|
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
|
|
}
|
|
|
|
client := http.Client{Transport: transport}
|
|
|
|
req, err := client.Get(rawURL)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.Body.Close()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func selectFast(in chan interface{}) chan interface{} {
|
|
|
|
out := make(chan interface{})
|
|
|
|
go func() {
|
|
|
|
p, open := <-in
|
|
|
|
if open {
|
|
|
|
out <- p
|
|
|
|
}
|
|
|
|
close(out)
|
|
|
|
for range in {
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2018-07-18 21:50:16 +08:00
|
|
|
func NewURLTest(name string, proxies []C.Proxy, rawURL string, delay time.Duration) (*URLTest, error) {
|
2018-06-16 21:34:13 +08:00
|
|
|
u, err := url.Parse(rawURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
port := u.Port()
|
|
|
|
if port == "" {
|
|
|
|
if u.Scheme == "https" {
|
|
|
|
port = "443"
|
|
|
|
} else if u.Scheme == "http" {
|
|
|
|
port = "80"
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("%s scheme not Support", rawURL)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addr := &C.Addr{
|
|
|
|
AddrType: C.AtypDomainName,
|
|
|
|
Host: u.Hostname(),
|
|
|
|
IP: nil,
|
|
|
|
Port: port,
|
|
|
|
}
|
|
|
|
|
|
|
|
urlTest := &URLTest{
|
2018-07-18 21:50:16 +08:00
|
|
|
name: name,
|
|
|
|
proxies: proxies[:],
|
|
|
|
rawURL: rawURL,
|
|
|
|
url: u,
|
|
|
|
addr: addr,
|
|
|
|
fast: proxies[0],
|
|
|
|
delay: delay,
|
|
|
|
done: make(chan struct{}),
|
2018-06-16 21:34:13 +08:00
|
|
|
}
|
|
|
|
go urlTest.loop()
|
|
|
|
return urlTest, nil
|
|
|
|
}
|