Cleanup and remove dead/obsolete code.

This commit is contained in:
Nick Foster
2013-06-08 15:32:24 -04:00
parent 798d5e15c9
commit 51cb2bdf46
4 changed files with 8 additions and 70 deletions

View File

@@ -19,7 +19,7 @@
#
# Radio interface for Mode S RX.
# Handles all Gnuradio-related functionality.
# Handles all hardware- and source-related functionality
# You pass it options, it gives you data.
# It uses the pubsub interface to allow clients to subscribe to its data feeds.
@@ -31,39 +31,7 @@ import air_modes
import zmq
import threading
import time
DOWNLINK_DATA_TYPE = "dl_data"
#ZMQ message publisher.
#TODO: limit high water mark
#TODO: limit number of subscribers
#NOTE: this is obsoleted by zmq_pubsub_iface
class radio_publisher(threading.Thread):
def __init__(self, port, context, queue):
threading.Thread.__init__(self)
self._queue = queue
self._publisher = context.socket(zmq.PUB)
if port is None:
self._publisher.bind("inproc://modes-radio-pub")
else:
self._publisher.bind("tcp://*:%i" % port)
self.setDaemon(True)
self.shutdown = threading.Event()
self.finished = threading.Event()
self.start()
def run(self):
done_yet = False
while not self.shutdown.is_set() and not done_yet:
if self.shutdown.is_set(): #gives it another round after done is set
done_yet = True #so we can clean up the last of the queue
while not self._queue.empty_p():
self._publisher.send_multipart([DOWNLINK_DATA_TYPE, self._queue.delete_head().to_string()])
time.sleep(0.1) #can use time.sleep(0) to yield, but it'll suck a whole CPU
self._publisher.close()
self.finished.set()
import re
class modes_radio (gr.top_block, pubsub):
def __init__(self, options, context):
@@ -216,7 +184,6 @@ class modes_radio (gr.top_block, pubsub):
else:
#semantically detect whether it's ip.ip.ip.ip:port or filename
import re
if ':' in options.source:
try:
ip, port = re.search("(.*)\:(\d{1,5})", options.source).groups()

View File

@@ -1,5 +1,5 @@
#
# Copyright 2012 Corgan Labs
# Copyright 2012, 2013 Corgan Labs, Nick Foster
#
# This file is part of gr-air-modes
#

View File

@@ -119,7 +119,7 @@ def pr(x):
if __name__ == "__main__":
#create socket pair
context = zmq.Context(1)
sock1 = zmq_pubsub_iface(context, subaddr="inproc://sock2-pub", pubaddr=["inproc://sock1-pub"])
sock1 = zmq_pubsub_iface(context, subaddr="inproc://sock2-pub", pubaddr="inproc://sock1-pub")
sock2 = zmq_pubsub_iface(context, subaddr="inproc://sock1-pub", pubaddr=["inproc://sock2-pub", "tcp://*:5433"])
sock3 = zmq_pubsub_iface(context, subaddr="tcp://localhost:5433", pubaddr=None)
@@ -128,10 +128,10 @@ if __name__ == "__main__":
sock3.subscribe("data3", pr)
for i in range(10):
#sock1["data2"] = "HOWDY"
#sock2["data3"] = "DRAW"
sock1["data2"] = "HOWDY"
sock2["data3"] = "DRAW"
sock2["data1"] = "PARDNER"
#time.sleep(0.1)
time.sleep(0.1)
sock1.close()
sock2.close()