aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-find-latest-mined-sblock
blob: c3d9e33149e54cf111fb054bf61846433f10908d (plain)
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
75
76
#!/bin/bash
MINED_BLOCKS_DIR="/home/$USER/.arching-kaos/mined_blocks"
cd $MINED_BLOCKS_DIR
PROGRAM="$(basename $0)"
declare -A counters
logitnowint(){
	ak-logthis "$PROGRAM" "$1" "$2"
}
further(){
	# logitnowint "INFO" "Diving into $1"
	lookfor $1
}

lookfor(){
	echo -n $1 | grep -e '[0-9a-f]\{128\}' > /dev/null
	if [ ! $? = 0 ]
	then
		logitnowint "ERROR" "Oops!!! The argument passed, does not match the regular expression!"
	else
		counters[$CHAIN_PARENT]="$(expr ${counters[$CHAIN_PARENT]} + 1)"
		if [ ! $? = 0 ]
		then
			echo "$1, $counters[$1]"
			exit 1
		fi
		logitnowint "INFO" "Accessing file: $1"
	#	echo "$1 file:"
	#	cat "$1" | jq
		NEXT_TARGET="$(cat "$1" | jq | grep previous | tr -d ' ' | sed -e 's/previous//g; s/[",:]//g;')"
		if [ ! "$NEXT_TARGET" = "" ]
		then
			logitnowint "INFO" "Found previous: $NEXT_TARGET"
			if [ ! -f "$NEXT_TARGET" ]
			then
				logitnowint "WARNING" "Could not find $NEXT_TARGET"
			else
				further "$NEXT_TARGET"
			fi
		else

			logitnowint "WARNING" "No next target found. So long for $1"
		fi
	fi
}


ls -1 > tmplistblock
while IFS="" read -r p || [ -n "$p" ]
do
#	if [ ! "$p" = "" ] && [ ! "$p" = "tmplistblock" ]
	if [ "$(echo $p | tr -d '\n' | wc -c)" = 128 ]
	then
		logitnowint "INFO" "Investigating $p..."
		export CHAIN_PARENT="$p"
		counters[$CHAIN_PARENT]=1
		lookfor "$p"
	else
		logitnowint "WARNING" "Nothing to do with $p"
	fi
done < tmplistblock
rm tmplistblock
max=0
max_holder=0
for value in "${!counters[@]}"
do
#	echo "${value} : ${counters[${value}]}"
	if [ ${counters[${value}]} -gt $max  ]
	then
		max="${counters[${value}]}"
		max_holder="${value}"
		logitnowint "INFO" "New MAX $max on $max_holder"


	fi	
done
echo '{"latest_block":"'$max_holder'"}'