From 9cbcf9b961c373e5ab73242503af46c8a99ef3ad Mon Sep 17 00:00:00 2001
From: Matthew McGill <mhollismcgill@gmail.com>
Date: Mon, 8 Oct 2018 17:32:11 +0000
Subject: [PATCH] thanos integration

Former-commit-id: 095729b691319fc2ada2c8fc503f1047719eacf6
---
 tools/ps_analyze.sh | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/tools/ps_analyze.sh b/tools/ps_analyze.sh
index 2d533b9ac..d139e258e 100755
--- a/tools/ps_analyze.sh
+++ b/tools/ps_analyze.sh
@@ -988,6 +988,24 @@ STRATA_PC_CONFINE=0
 STRATA_PC_CONFINE_XOR=0
 
 
+# start thanos 
+input_pipe="thanos_input"
+[ -p $input_pipe ] || mkfifo $input_pipe
+output_pipe="thanos_output"
+[ -p $output_pipe ] || mkfifo $output_pipe
+
+$SECURITY_TRANSFORMS_HOME/plugins_install/transform_step_plugins/thanos.exe $input_pipe $output_pipe &
+# test thanos (DELETE ME)
+printf "TEST" > $input_pipe
+sleep 5
+read -r cmd <$output_pipe
+if [ "$cmd" ]; then
+    printf 'Response was %s \n' "$cmd"
+fi
+printf "THANOS_DONE" > $input_pipe
+sleep 5
+
+
 #
 # copy the .so files for this exe into a working directory.
 #
-- 
GitLab