summaryrefslogtreecommitdiff
path: root/datastore/interactive.py
diff options
context:
space:
mode:
authorEbus-at-dockstar <ebus@dockstar>2013-03-25 10:24:28 +0100
committerEbus-at-dockstar <ebus@dockstar>2013-03-25 10:24:43 +0100
commit862282ce99760832d3e9e5b4b1171b861105e004 (patch)
tree0e229418e391917b79d42a8bdee46fb7a8612895 /datastore/interactive.py
parent9522cdffa94f278eb5e1894600535986e22c2890 (diff)
downloadebus-alt-862282ce99760832d3e9e5b4b1171b861105e004.tar.gz
ebus-alt-862282ce99760832d3e9e5b4b1171b861105e004.zip
move old stuff away
Diffstat (limited to 'datastore/interactive.py')
-rw-r--r--datastore/interactive.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/datastore/interactive.py b/datastore/interactive.py
deleted file mode 100644
index 76a9636..0000000
--- a/datastore/interactive.py
+++ /dev/null
@@ -1,51 +0,0 @@
-from IPython import embed
-from time import time
-from stompclient import PublishSubscribeClient
-import config
-from uuid import uuid1 as uuid
-from threading import Thread, Event
-
-client = PublishSubscribeClient(config.STOMP_HOST, config.STOMP_PORT)
-listener = Thread(target=client.listen_forever, name='Frame-Receiver')
-listener.start()
-client.listening_event.wait()
-r = client.connect(config.STOMP_LOGIN, config.STOMP_PASSCODE)
-if not client.connection:
- print r
- exit(1)
-
-def put(valuemap):
- body="\n".join(map(lambda (k,v): "{0}={1}".format(k,v), valuemap.iteritems()))
- client.send(config.STOMP_QUEUE_PUT,
- body=body,
- extra_headers={"timestamp":int(time()*1000)})
-
-def get(name,query=None,timeout=5.0):
- reply=[]
- def unlock(frame,reply):
- reply.append(frame.body)
- cond.set()
-
- replyTo='/topic/reply-' + str(uuid())
- cond = Event()
- client.subscribe(replyTo, lambda frame: unlock(frame,reply))
- client.send(config.STOMP_QUEUE_GET,
- body=query,
- extra_headers={'name':name,
- 'reply-to':replyTo})
- cond.wait(timeout)
- client.unsubscribe(replyTo)
- return len(reply)>0 and reply[0] or None
-
-print """
-EXAMPLES
- put({"org.xapek.test1":"asd1234"})
- get("org.xapek.test1")
-
-"""
-
-embed()
-
-client.disconnect()
-
-