summaryrefslogtreecommitdiffstats
path: root/Cancer/assets/bin/truth2json
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-12-30 03:05:26 +0100
committermakefu <github@syntax-fehler.de>2013-12-30 03:05:26 +0100
commit0b81bca953ec7cdf373ff97b11ebd6fb847d733f (patch)
tree63d62f6c32dd6726f823eb2af32cb2a7fab03530 /Cancer/assets/bin/truth2json
parent96151bd07330aee400fb99fd9f8f117bae42c9e5 (diff)
libkrebs is obsolete
Diffstat (limited to 'Cancer/assets/bin/truth2json')
-rwxr-xr-xCancer/assets/bin/truth2json37
1 files changed, 37 insertions, 0 deletions
diff --git a/Cancer/assets/bin/truth2json b/Cancer/assets/bin/truth2json
new file mode 100755
index 00000000..f85445b4
--- /dev/null
+++ b/Cancer/assets/bin/truth2json
@@ -0,0 +1,37 @@
+#!/usr/bin/python
+
+import sys
+
+try:
+ db=sys.argv[1]
+except:
+ db="../../db/truth"
+
+ret = {}
+
+
+if db is "-":
+ sys.stderr.write("Using stdin\n")
+ f = sys.stdin
+else:
+ sys.stderr.write("Using journal '%s'\n" % db)
+ f = open(db)
+
+for line in f:
+ lsplit = line.split()
+ date = ' '.join(lsplit[0:2])
+ cmd = lsplit[2]
+ target = lsplit[3]
+ if cmd == "create":
+ assert target not in ret, "Target '%s' already created!" %target
+ ret[target] = {}
+ elif cmd == "set":
+ key = lsplit[4]
+ value = ' '.join(lsplit[5:])
+ assert target in ret, "target '%s' not set yet!" % target
+ ret[target][key] = value
+ else:
+ raise AssertionError,"unknown command '%s'!"
+
+import json
+print json.dumps(ret,sort_keys=True,indent=4)