aboutsummaryrefslogtreecommitdiff
path: root/behaviors/VerticalBar.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/VerticalBar.py')
-rw-r--r--behaviors/VerticalBar.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/behaviors/VerticalBar.py b/behaviors/VerticalBar.py
new file mode 100644
index 0000000..e1a67fe
--- /dev/null
+++ b/behaviors/VerticalBar.py
@@ -0,0 +1,30 @@
+from operationscore.Behavior import *
+class VerticalBar(Behavior):
+
+ def processResponse(self, inputs, recurs):
+
+ ret = []
+ for inputset in inputs:
+ #import pdb; pdb.set_trace()
+
+ if 'xLoc' not in inputset:
+ inputset['xLoc'] = inputset['Location'][0]
+ xLoc = inputset['xLoc']
+
+ condition = '{x} == ' + str(xLoc)
+
+ if self['Combine']:
+ inputset['Location'] += ',' + condition
+ else:
+ inputset['Location'] = condition
+
+ ret.append(inputset)
+
+ return (ret, [])
+
+ def setLastOutput(self, output):
+
+ coutput = Behavior.deepCopyPacket(output)
+ for data in coutput:
+ data['Location'] = data['xLoc']
+ return coutput