1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-15 01:34:24 -04:00
v2fly/app/router/chinaip_gen.go

95 lines
1.7 KiB
Go
Raw Normal View History

2016-05-12 02:45:35 -04:00
// +build generate
2015-12-08 11:31:31 -05:00
package main
import (
"bufio"
"fmt"
2016-05-12 02:45:35 -04:00
"log"
2015-12-08 17:12:12 -05:00
"math"
2015-12-08 11:31:31 -05:00
"net"
2015-12-08 17:12:12 -05:00
"net/http"
2016-05-12 02:45:35 -04:00
"os"
2015-12-08 17:12:12 -05:00
"strconv"
2015-12-08 11:31:31 -05:00
"strings"
)
2015-12-08 17:12:12 -05:00
const (
apnicFile = "http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest"
)
2016-10-11 17:02:44 -04:00
type IPEntry struct {
IP []byte
Bits uint32
}
2015-12-08 11:31:31 -05:00
func main() {
2015-12-08 17:12:12 -05:00
resp, err := http.Get(apnicFile)
2015-12-08 11:31:31 -05:00
if err != nil {
panic(err)
}
2015-12-08 17:12:12 -05:00
if resp.StatusCode != 200 {
panic(fmt.Errorf("Unexpected status %d", resp.StatusCode))
}
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
2015-12-08 11:31:31 -05:00
2016-10-11 17:02:44 -04:00
ips := make([]IPEntry, 0, 8192)
2015-12-08 11:31:31 -05:00
for scanner.Scan() {
line := scanner.Text()
line = strings.TrimSpace(line)
2015-12-08 17:12:12 -05:00
parts := strings.Split(line, "|")
if len(parts) < 5 {
continue
}
if strings.ToLower(parts[1]) != "cn" || strings.ToLower(parts[2]) != "ipv4" {
continue
}
ip := parts[3]
count, err := strconv.Atoi(parts[4])
if err != nil {
continue
2015-12-08 11:31:31 -05:00
}
2016-10-11 17:02:44 -04:00
mask := uint32(math.Floor(math.Log2(float64(count)) + 0.5))
ipBytes := net.ParseIP(ip)
if len(ipBytes) == 0 {
panic("Invalid IP " + ip)
2015-12-08 11:31:31 -05:00
}
2016-10-11 17:02:44 -04:00
ips = append(ips, IPEntry{
IP: []byte(ipBytes),
Bits: mask,
})
2015-12-08 11:31:31 -05:00
}
2016-05-12 02:45:35 -04:00
file, err := os.OpenFile("chinaip_init.go", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644)
if err != nil {
log.Fatalf("Failed to generate chinaip_init.go: %v", err)
}
defer file.Close()
2016-10-12 10:11:13 -04:00
fmt.Fprintln(file, "package router")
2016-05-12 02:45:35 -04:00
2016-10-11 17:02:44 -04:00
fmt.Fprintln(file, "var chinaIPs []*IP")
2016-05-12 02:45:35 -04:00
fmt.Fprintln(file, "func init() {")
2016-10-11 17:02:44 -04:00
fmt.Fprintln(file, "chinaIPs = []*IP {")
for _, ip := range ips {
fmt.Fprintln(file, "&IP{", formatArray(ip.IP[12:16]), ",", ip.Bits, "},")
2015-12-08 11:31:31 -05:00
}
2016-05-12 02:45:35 -04:00
fmt.Fprintln(file, "}")
2016-10-11 17:02:44 -04:00
fmt.Fprintln(file, "}")
}
func formatArray(a []byte) string {
r := "[]byte{"
for idx, v := range a {
if idx > 0 {
r += ","
}
r += fmt.Sprintf("%d", v)
}
r += "}"
return r
2015-12-08 11:31:31 -05:00
}