summaryrefslogtreecommitdiffstats
path: root/assets/bin/truth2json
diff options
context:
space:
mode:
authorroot <root@kremium>2011-12-07 12:42:09 +0100
committerroot <root@kremium>2011-12-07 12:44:55 +0100
commit9b77caeac2409a70010c22b12f843b1dcc29cfb7 (patch)
tree3e8dbbc3b47a6931e60716c94c4d42bbf1e03083 /assets/bin/truth2json
parentc1f839101be7d48f6e918e9e969cf0fc3d743ea4 (diff)
parentdc9f6a510182b6947a8ee58b1940dd4ce2a32fd7 (diff)
Merge branch 'master' of github.com:krebscode/painload
Conflicts: assets/bin/ass
Diffstat (limited to 'assets/bin/truth2json')
-rwxr-xr-xassets/bin/truth2json37
1 files changed, 37 insertions, 0 deletions
diff --git a/assets/bin/truth2json b/assets/bin/truth2json
new file mode 100755
index 00000000..c1aac73c
--- /dev/null
+++ b/assets/bin/truth2json
@@ -0,0 +1,37 @@
+#!/usr/bin/python
+
+import sys
+
+try:
+ db=sys.argv[1]
+except:
+ db="/krebs/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!"
+ 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)