diff options
author | epoch <epoch@hack.thebackupbox.net> | 2020-04-02 08:05:04 +0000 |
---|---|---|
committer | epoch <epoch@hack.thebackupbox.net> | 2020-04-02 08:05:04 +0000 |
commit | f1840729881fee95685cc8359434e9e8ffa99206 (patch) | |
tree | ef17d69c0a857acb939d0e7d3608a79fe27f7407 /share/hackvr | |
parent | 03375075a2668be21fc79c073aa990e510c2c4fb (diff) | |
download | hackvr-f1840729881fee95685cc8359434e9e8ffa99206.tar.gz hackvr-f1840729881fee95685cc8359434e9e8ffa99206.zip |
added caching to the map
Diffstat (limited to 'share/hackvr')
-rwxr-xr-x | share/hackvr/examples/anonet_map/map | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/share/hackvr/examples/anonet_map/map b/share/hackvr/examples/anonet_map/map index 13279ab..e983590 100755 --- a/share/hackvr/examples/anonet_map/map +++ b/share/hackvr/examples/anonet_map/map @@ -1,5 +1,18 @@ #!/bin/bash -paths="$(ncat --recv-only 21.41.41.1 64777 | sort | uniq)" +paths="$(ncat --recv-only 21.41.41.1 64777 | sort | uniq | tee /var/cache/hackvr/anonet_data.new)" + +MAP=/var/cache/hackvr/anonet_map.hackvr + +#see if the data actually changed before regenerating this shit... +if cmp /var/cache/hackvr/anonet_data.new /var/cache/hackvr/anonet_data.old ; then + cat $MAP + exit 0 +fi + +mv /var/cache/hackvr/anonet_data.new /var/cache/hackvr/anonet_data.old + +> $MAP + nodes=$(printf "%s\n" "$paths" | tr ' ' '\n' | sort | uniq) nodes_count="$(printf "%s\n" "$nodes" | tr ' ' '\n' | wc -l | tr -cd '0-9')" #echo $nodes @@ -45,11 +58,11 @@ for node in $nodes;do printf "<whois://whois.ano/AS* flatten\n" makelabel.sh AS$node $( echo | awk "{print $(xcoord_by_ASN $node) * 13}" ) $( echo | awk "{print $(ycoord_by_ASN $node) * 13}" ) -10 <<< $node printf "AS%s scale .1 .1 .1\n" "$node" -done +done | tee -a $MAP for i in $edges;do line_between_nodes "$i" -done +done | tee -a $MAP #for i in ${!nodes[@]};do # echo $i |