test(unitproc):bkFreqWrite:Add space for future buffer processing
[BK-2020-03.git] / unitproc / bkFreqWrite
index 277396efa65b89bc1c58e0b396e22479a85f1a22..663c0302e3fa303d44a9f66eb41ef43249d64a5f 100644 (file)
@@ -1,4 +1,40 @@
 #!/bin/bash
 # Desc: Writes stdin to disk every 5 minutes
 
+yell() { echo "[$(date --iso-8601=ns)]:$0: $*" >&2; }      #o Yell, Die, Try Three-Fingered Claw technique
+die() { yell "$*"; exit 111; }     #o Ref/Attrib: https://stackoverflow.com/a/25515370
+try() { "$@" || die "cannot $*"; } #o
 
+declare -a buffer # Initialize buffer array
+scriptTTL="15";
+bufferTTL="5";
+
+magicWriteBuffer() {
+    printf "%s\n" "${buffer[@]}" | cat | cat | cat >> /dev/shm/$(date +%s)..bkFreqWrite-output1.txt;
+    printf "%s\n" "${buffer[@]}" | cat | cat | cat >> /dev/shm/$(date +%s)..bkFreqWrite-output2.txt;
+    printf "%s\n" "${buffer[@]}" | cat | cat | cat >> /dev/shm/$(date +%s)..bkFreqWrite-output3.txt;
+}
+
+bufferRound=0;
+# Run until script TTL seconds pass
+while [[ $SECONDS -lt "scriptTTL" ]]; do
+    bufferTOD="$((SECONDS + $bufferTTL))";
+    lineCount=0;
+    # Consume stdin to fill buffer until buffer time-of-death (TOD) arrives
+    while read -r line && [[ $SECONDS -lt "$bufferTOD" ]]; do
+       # Append line to buffer
+       buffer+=("$line");
+       echo "Processing line:$lineCount";
+       echo "Current line   :$line";
+       echo "buf elem count :${#buffer[@]}";
+       ((lineCount++));
+    done;
+    # Export buffer to asynchronous processing.
+    magicWriteBuffer &
+    unset buffer;
+    # Increment buffer round
+    ((bufferRound++));
+done;
+
+# Author: Steven Baltakatei Sandoval
+# License: GPLv3+