-
Notifications
You must be signed in to change notification settings - Fork 377
/
dnscache.go
74 lines (65 loc) · 1.56 KB
/
dnscache.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (c) 2021 Terminus, Inc.
//
// This program is free software: you can use, redistribute, and/or modify
// it under the terms of the GNU Affero General Public License, version 3
// or later ("AGPL"), as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Package httpclient impl http client
package httpclient
import (
"net"
"sync"
"time"
)
var (
defaultDNSCache = NewDNSCache(60 * time.Second)
)
// DNSCache struct
type DNSCache struct {
// 防止 refresh & lookup 中对 DnsCache.m 的并发访问
sync.Mutex
// map[hostname][]IP
m *sync.Map
// 刷新 cache 事件间隔
refreshInterval time.Duration
}
// NewDNSCache 创建 DnsCache
func NewDNSCache(refreshInterval time.Duration) *DNSCache {
c := &DNSCache{
m: new(sync.Map),
refreshInterval: refreshInterval,
}
c.startRefresh()
return c
}
func (d *DNSCache) startRefresh() {
go func() {
for {
time.Sleep(d.refreshInterval)
d.Lock()
d.m = new(sync.Map)
d.Unlock()
}
}()
}
func (d *DNSCache) lookup(host string) ([]net.IP, error) {
d.Lock()
m := d.m
d.Unlock()
v, ok := m.Load(host)
if ok {
return v.([]net.IP), nil
}
ips, err := net.LookupIP(host)
if err != nil {
return nil, err
}
m.Store(host, ips)
return ips, nil
}