2016-11-02 15:35:10 +00:00
|
|
|
import select
|
|
|
|
import psycopg2
|
|
|
|
import psycopg2.extensions
|
2016-11-02 16:10:07 +00:00
|
|
|
import websocket
|
2016-11-02 15:35:10 +00:00
|
|
|
|
2016-11-02 16:10:07 +00:00
|
|
|
channels = [ "loriot", "swisscom", "ttn" ]
|
2016-11-02 15:44:33 +00:00
|
|
|
|
2016-11-02 16:10:07 +00:00
|
|
|
def to_nodered(self, data):
|
|
|
|
dev = self.devEUI(data)
|
|
|
|
text = self.payload(data)
|
2016-11-02 15:35:10 +00:00
|
|
|
|
2016-11-02 16:10:07 +00:00
|
|
|
ws = websocket.create_connection("ws://localhost:1880/")
|
|
|
|
ws.send("%s" % data)
|
|
|
|
ws.close()
|
2016-11-02 15:35:10 +00:00
|
|
|
|
2016-11-02 16:10:07 +00:00
|
|
|
def wait_for_pkg(conns):
|
|
|
|
if select.select(conns,[],[]) == ([],[],[]):
|
|
|
|
print("Select error")
|
2016-11-02 15:35:10 +00:00
|
|
|
else:
|
|
|
|
conn.poll()
|
|
|
|
while conn.notifies:
|
|
|
|
notify = conn.notifies.pop(0)
|
|
|
|
print("Got NOTIFY: {} {} {}".format(notify.pid, notify.channel, notify.payload))
|
2016-11-02 16:10:07 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
conns = []
|
|
|
|
for channel in channels:
|
|
|
|
|
|
|
|
conn = psycopg2.connect("dbname=lorawan")
|
|
|
|
conn.set_isolation_level(psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT)
|
|
|
|
|
|
|
|
curs = conn.cursor()
|
|
|
|
curs.execute("LISTEN {};".format(channel))
|
|
|
|
|
|
|
|
conns.append(conn)
|
|
|
|
print("Waiting for notifications on channel {}".format(channel))
|
|
|
|
|
|
|
|
while True:
|
|
|
|
wait_for_pkg(conns):
|