5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-09-19 14:59:35 +00:00
yggdrasil-map/scripts/crawler.go

201 lines
4.3 KiB
Go

package main
import (
"encoding/json"
"fmt"
"net"
"sync"
"time"
)
var waitgroup sync.WaitGroup
var visited sync.Map
var rumored sync.Map
const MAX_RETRY = 3
const N_PARALLEL_REQ = 32
var semaphore chan struct{}
func init() {
semaphore = make(chan struct{}, N_PARALLEL_REQ)
}
func dial() (net.Conn, error) {
return net.DialTimeout("unix", "/var/run/yggdrasil.sock", time.Second)
}
func getRequest(key, request string) map[string]interface{} {
return map[string]interface{}{
"keepalive": true,
"request": request,
"key": key,
}
}
func doRequest(request map[string]interface{}) map[string]interface{} {
req, err := json.Marshal(request)
if err != nil {
panic(err)
}
var res map[string]interface{}
for idx := 0; idx < MAX_RETRY; idx++ {
sock, err := dial()
if err != nil {
panic(err)
}
if _, err = sock.Write(req); err != nil {
panic(err)
}
bs := make([]byte, 65535)
n, err := sock.Read(bs)
if err != nil {
panic(bs)
}
bs = bs[:n]
if err = json.Unmarshal(bs, &res); err != nil {
panic(err)
}
// TODO parse res, check if there's an error
if res, ok := res["response"]; ok {
if _, isIn := res.(map[string]interface{})["error"]; isIn {
continue
}
}
break
}
return res
}
func getNodeInfo(key string) map[string]interface{} {
return doRequest(getRequest(key, "getNodeInfo"))
}
func getSelf(key string) map[string]interface{} {
return doRequest(getRequest(key, "debug_remoteGetSelf"))
}
func getPeers(key string) map[string]interface{} {
return doRequest(getRequest(key, "debug_remoteGetPeers"))
}
func getDHT(key string) map[string]interface{} {
return doRequest(getRequest(key, "debug_remoteGetDHT"))
}
type rumorResult struct {
key string
res map[string]interface{}
}
func doRumor(key string, out chan rumorResult) {
waitgroup.Add(1)
go func() {
defer waitgroup.Done()
semaphore<-struct{}{}
defer func() { <-semaphore }()
if _, known := rumored.LoadOrStore(key, true); known {
return
}
defer rumored.Delete(key)
if _, known := visited.Load(key); known {
return
}
results := make(map[string]interface{})
if res, ok := getNodeInfo(key)["response"]; ok {
for addr, v := range res.(map[string]interface{}) {
vm, ok := v.(map[string]interface{})
if !ok {
return
}
results["address"] = addr
results["nodeinfo"] = vm
}
}
if res, ok := getSelf(key)["response"]; ok {
for _, v := range res.(map[string]interface{}) {
vm, ok := v.(map[string]interface{})
if !ok {
return
}
if coords, ok := vm["coords"]; ok {
results["coords"] = coords
}
}
}
if res, ok := getPeers(key)["response"]; ok {
for _, v := range res.(map[string]interface{}) {
vm, ok := v.(map[string]interface{})
if !ok {
return
}
if keys, ok := vm["keys"]; ok {
results["peers"] = keys
for _, key := range keys.([]interface{}) {
doRumor(key.(string), out)
}
}
}
}
if res, ok := getDHT(key)["response"]; ok {
for _, v := range res.(map[string]interface{}) {
vm, ok := v.(map[string]interface{})
if !ok {
return
}
if keys, ok := vm["keys"]; ok {
results["dht"] = keys
for _, key := range keys.([]interface{}) {
doRumor(key.(string), out)
}
}
}
}
if len(results) > 0 {
if _, known := visited.LoadOrStore(key, true); known {
return
}
results["time"] = time.Now().Unix()
out <- rumorResult{key, results}
}
}()
}
func doPrinter() (chan rumorResult, chan struct{}) {
results := make(chan rumorResult)
done := make(chan struct{})
go func() {
defer close(done)
fmt.Println("{\"yggnodes\": {")
var notFirst bool
for result := range results {
// TODO correct output
res, err := json.Marshal(result.res)
if err != nil {
panic(err)
}
if notFirst {
fmt.Println(",")
}
fmt.Printf("\"%s\": %s", result.key, res)
notFirst = true
}
fmt.Println("\n}}")
}()
return results, done
}
func main() {
self := doRequest(map[string]interface{}{"keepalive": true, "request": "getSelf"})
res := self["response"].(map[string]interface{})["self"].(map[string]interface{})
var key string
for _, v := range res {
key = v.(map[string]interface{})["key"].(string)
}
results, done := doPrinter()
doRumor(key, results)
waitgroup.Wait()
close(results)
<-done
}